From 36499a03009607093d70450316e6bfa5f8f3c32e Mon Sep 17 00:00:00 2001 From: Luke Policinski Date: Sun, 26 Jul 2026 11:57:44 -0400 Subject: [PATCH 1/8] feature: awards --- generated/schema.graphql | 10249 +- generated/schema.ts | 4737 +- generated/types.ts | 111281 ++++++++------- hasura/enums/award-sources.sql | 7 + hasura/enums/award-tiers.sql | 9 + .../functions/leaderboard/get_leaderboard.sql | 33 +- .../seasons/calculate_season_awards.sql | 66 + ...es.sql => calculate_tournament_awards.sql} | 91 +- .../recalculate_tournament_awards.sql | 12 + .../recalculate_tournament_trophies.sql | 12 - .../tournaments/reset_tournament_match.sql | 8 +- .../tournaments/update_tournament_bracket.sql | 2 +- hasura/metadata/actions.graphql | 144 + hasura/metadata/actions.yaml | 79 + .../default/functions/functions.yaml | 2 +- ...public_recalculate_tournament_awards.yaml} | 2 +- ...hies.yaml => public_award_recipients.yaml} | 50 +- .../default/tables/public_awards.yaml | 56 + .../tables/public_e_award_sources.yaml | 12 + .../default/tables/public_e_award_tiers.yaml | 12 + .../default/tables/public_players.yaml | 4 +- .../default/tables/public_seasons.yaml | 7 + .../default/tables/public_teams.yaml | 7 + .../tables/public_tournament_awards.yaml | 25 + .../public_tournament_trophy_configs.yaml | 66 - .../default/tables/public_tournaments.yaml | 18 +- .../databases/default/tables/tables.yaml | 7 +- .../1873000000400_telemetry_reports/down.sql | 2 + .../1873000000400_telemetry_reports/up.sql | 36 + .../default/1873000000600_awards/down.sql | 185 + .../default/1873000000600_awards/up.sql | 313 + hasura/triggers/award_recipients.sql | 49 + hasura/triggers/awards.sql | 22 + hasura/triggers/seasons_awards.sql | 26 + hasura/triggers/tournaments.sql | 29 +- hasura/views/v_team_stage_results_compute.sql | 4 +- src/app.module.ts | 4 +- src/awards/awards.controller.ts | 266 + src/awards/awards.module.ts | 16 + src/awards/awards.service.ts | 592 + src/awards/trophies-legacy.controller.ts | 33 + src/demos/demo-metadata.service.ts | 6 +- src/demos/demo-parser.service.ts | 34 + src/hasura/hasura.service.ts | 8 + src/system/enums/SystemSettingName.ts | 2 + src/system/system.service.ts | 2 +- src/telemetry/telemetry.controller.ts | 9 +- src/telemetry/telemetry.module.ts | 6 + src/telemetry/telemetry.service.ts | 807 +- src/telemetry/types/TelemetryPayload.ts | 48 + src/trophies/trophies.controller.ts | 88 - src/trophies/trophies.module.ts | 13 - src/trophies/trophies.service.ts | 193 - test/awards.spec.ts | 662 + test/telemetry.spec.ts | 379 + test/tournament-edge-cases.spec.ts | 12 +- test/tournament-reset.spec.ts | 42 +- test/tournaments.spec.ts | 26 +- 58 files changed, 70018 insertions(+), 60894 deletions(-) create mode 100644 hasura/enums/award-sources.sql create mode 100644 hasura/enums/award-tiers.sql create mode 100644 hasura/functions/seasons/calculate_season_awards.sql rename hasura/functions/tournaments/{calculate_tournament_trophies.sql => calculate_tournament_awards.sql} (73%) create mode 100644 hasura/functions/tournaments/recalculate_tournament_awards.sql delete mode 100644 hasura/functions/tournaments/recalculate_tournament_trophies.sql rename hasura/metadata/databases/default/functions/{public_recalculate_tournament_trophies.yaml => public_recalculate_tournament_awards.yaml} (76%) rename hasura/metadata/databases/default/tables/{public_tournament_trophies.yaml => public_award_recipients.yaml} (61%) create mode 100644 hasura/metadata/databases/default/tables/public_awards.yaml create mode 100644 hasura/metadata/databases/default/tables/public_e_award_sources.yaml create mode 100644 hasura/metadata/databases/default/tables/public_e_award_tiers.yaml create mode 100644 hasura/metadata/databases/default/tables/public_tournament_awards.yaml delete mode 100644 hasura/metadata/databases/default/tables/public_tournament_trophy_configs.yaml create mode 100644 hasura/migrations/default/1873000000400_telemetry_reports/down.sql create mode 100644 hasura/migrations/default/1873000000400_telemetry_reports/up.sql create mode 100644 hasura/migrations/default/1873000000600_awards/down.sql create mode 100644 hasura/migrations/default/1873000000600_awards/up.sql create mode 100644 hasura/triggers/award_recipients.sql create mode 100644 hasura/triggers/awards.sql create mode 100644 hasura/triggers/seasons_awards.sql create mode 100644 src/awards/awards.controller.ts create mode 100644 src/awards/awards.module.ts create mode 100644 src/awards/awards.service.ts create mode 100644 src/awards/trophies-legacy.controller.ts create mode 100644 src/telemetry/types/TelemetryPayload.ts delete mode 100644 src/trophies/trophies.controller.ts delete mode 100644 src/trophies/trophies.module.ts delete mode 100644 src/trophies/trophies.service.ts create mode 100644 test/awards.spec.ts create mode 100644 test/telemetry.spec.ts diff --git a/generated/schema.graphql b/generated/schema.graphql index 0731d426..9534b5ca 100644 --- a/generated/schema.graphql +++ b/generated/schema.graphql @@ -40,6 +40,34 @@ type ApiKeyResponse { key: String! } +type Award { + allow_multiple: Boolean! + created_at: String! + created_by_steam_id: String + description: String + id: uuid! + image_url: String + name: String! + silhouette: Int + system_key: String + tier: String! + updated_at: String! +} + +type AwardRecipient { + award_id: uuid! + awarded_by_steam_id: String + created_at: String! + id: uuid! + note: String + placement: Int + player_steam_id: String + source: String! + team_id: uuid + tournament_id: uuid + tournament_team_id: uuid +} + """ Boolean expression to compare columns of type "Boolean". All fields are combined with logical 'AND'. """ @@ -770,6 +798,16 @@ type TimescaleStats { jobs: [TimescaleJob]! } +type TournamentAward { + award_id: uuid + custom_name: String + id: uuid! + image_url: String + placement: Int! + silhouette: Int + tournament_id: uuid! +} + type TournamentMatchResetImpact { bracket_id: uuid! depth: Int! @@ -1537,1100 +1575,2171 @@ input approve_league_season_movements_args { _league_season_id: uuid } -scalar bigint - -""" -Boolean expression to compare columns of type "bigint". All fields are combined with logical 'AND'. -""" -input bigint_array_comparison_exp { - """is the array contained in the given array value""" - _contained_in: [bigint!] - - """does the array contain the given value""" - _contains: [bigint!] - _eq: [bigint!] - _gt: [bigint!] - _gte: [bigint!] - _in: [[bigint!]!] - _is_null: Boolean - _lt: [bigint!] - _lte: [bigint!] - _neq: [bigint!] - _nin: [[bigint!]!] -} - -""" -Boolean expression to compare columns of type "bigint". All fields are combined with logical 'AND'. -""" -input bigint_comparison_exp { - _eq: bigint - _gt: bigint - _gte: bigint - _in: [bigint!] - _is_null: Boolean - _lt: bigint - _lte: bigint - _neq: bigint - _nin: [bigint!] -} - -scalar bytea - """ -Boolean expression to compare columns of type "bytea". All fields are combined with logical 'AND'. +columns and relationships of "award_recipients" """ -input bytea_comparison_exp { - _eq: bytea - _gt: bytea - _gte: bytea - _in: [bytea!] - _is_null: Boolean - _lt: bytea - _lte: bytea - _neq: bytea - _nin: [bytea!] -} +type award_recipients { + """An object relationship""" + award: awards! + award_id: uuid! -""" -columns and relationships of "clip_render_jobs" -""" -type clip_render_jobs { """An object relationship""" - clip: match_clips - clip_id: uuid + awarded_by: players + awarded_by_steam_id: bigint created_at: timestamptz! - error_message: String + id: uuid! + note: String + placement: Int + placement_tier: String """An object relationship""" - game_server_node: game_server_nodes - game_server_node_id: String - id: uuid! - k8s_job_name: String! - last_status_at: timestamptz! + player: players + player_steam_id: bigint + source: e_award_sources_enum! """An object relationship""" - match_map: match_maps! + team: teams + team_id: uuid """An object relationship""" - match_map_demo: match_map_demos - match_map_demo_id: uuid - match_map_id: uuid! - paused: Boolean! - progress: numeric - session_token: String! - sort_index: Int! - spec( - """JSON select path""" - path: String - ): jsonb! - status: String! - status_history( - """JSON select path""" - path: String - ): jsonb! + tournament: tournaments """An object relationship""" - user: players - user_steam_id: bigint + tournament_award: tournament_awards + tournament_id: uuid + + """An object relationship""" + tournament_team: tournament_teams + tournament_team_id: uuid } """ -aggregated selection of "clip_render_jobs" +aggregated selection of "award_recipients" """ -type clip_render_jobs_aggregate { - aggregate: clip_render_jobs_aggregate_fields - nodes: [clip_render_jobs!]! -} - -input clip_render_jobs_aggregate_bool_exp { - bool_and: clip_render_jobs_aggregate_bool_exp_bool_and - bool_or: clip_render_jobs_aggregate_bool_exp_bool_or - count: clip_render_jobs_aggregate_bool_exp_count -} - -input clip_render_jobs_aggregate_bool_exp_bool_and { - arguments: clip_render_jobs_select_column_clip_render_jobs_aggregate_bool_exp_bool_and_arguments_columns! - distinct: Boolean - filter: clip_render_jobs_bool_exp - predicate: Boolean_comparison_exp! +type award_recipients_aggregate { + aggregate: award_recipients_aggregate_fields + nodes: [award_recipients!]! } -input clip_render_jobs_aggregate_bool_exp_bool_or { - arguments: clip_render_jobs_select_column_clip_render_jobs_aggregate_bool_exp_bool_or_arguments_columns! - distinct: Boolean - filter: clip_render_jobs_bool_exp - predicate: Boolean_comparison_exp! +input award_recipients_aggregate_bool_exp { + count: award_recipients_aggregate_bool_exp_count } -input clip_render_jobs_aggregate_bool_exp_count { - arguments: [clip_render_jobs_select_column!] +input award_recipients_aggregate_bool_exp_count { + arguments: [award_recipients_select_column!] distinct: Boolean - filter: clip_render_jobs_bool_exp + filter: award_recipients_bool_exp predicate: Int_comparison_exp! } """ -aggregate fields of "clip_render_jobs" +aggregate fields of "award_recipients" """ -type clip_render_jobs_aggregate_fields { - avg: clip_render_jobs_avg_fields - count(columns: [clip_render_jobs_select_column!], distinct: Boolean): Int! - max: clip_render_jobs_max_fields - min: clip_render_jobs_min_fields - stddev: clip_render_jobs_stddev_fields - stddev_pop: clip_render_jobs_stddev_pop_fields - stddev_samp: clip_render_jobs_stddev_samp_fields - sum: clip_render_jobs_sum_fields - var_pop: clip_render_jobs_var_pop_fields - var_samp: clip_render_jobs_var_samp_fields - variance: clip_render_jobs_variance_fields +type award_recipients_aggregate_fields { + avg: award_recipients_avg_fields + count(columns: [award_recipients_select_column!], distinct: Boolean): Int! + max: award_recipients_max_fields + min: award_recipients_min_fields + stddev: award_recipients_stddev_fields + stddev_pop: award_recipients_stddev_pop_fields + stddev_samp: award_recipients_stddev_samp_fields + sum: award_recipients_sum_fields + var_pop: award_recipients_var_pop_fields + var_samp: award_recipients_var_samp_fields + variance: award_recipients_variance_fields } """ -order by aggregate values of table "clip_render_jobs" +order by aggregate values of table "award_recipients" """ -input clip_render_jobs_aggregate_order_by { - avg: clip_render_jobs_avg_order_by +input award_recipients_aggregate_order_by { + avg: award_recipients_avg_order_by count: order_by - max: clip_render_jobs_max_order_by - min: clip_render_jobs_min_order_by - stddev: clip_render_jobs_stddev_order_by - stddev_pop: clip_render_jobs_stddev_pop_order_by - stddev_samp: clip_render_jobs_stddev_samp_order_by - sum: clip_render_jobs_sum_order_by - var_pop: clip_render_jobs_var_pop_order_by - var_samp: clip_render_jobs_var_samp_order_by - variance: clip_render_jobs_variance_order_by -} - -"""append existing jsonb value of filtered columns with new jsonb value""" -input clip_render_jobs_append_input { - spec: jsonb - status_history: jsonb + max: award_recipients_max_order_by + min: award_recipients_min_order_by + stddev: award_recipients_stddev_order_by + stddev_pop: award_recipients_stddev_pop_order_by + stddev_samp: award_recipients_stddev_samp_order_by + sum: award_recipients_sum_order_by + var_pop: award_recipients_var_pop_order_by + var_samp: award_recipients_var_samp_order_by + variance: award_recipients_variance_order_by } """ -input type for inserting array relation for remote table "clip_render_jobs" +input type for inserting array relation for remote table "award_recipients" """ -input clip_render_jobs_arr_rel_insert_input { - data: [clip_render_jobs_insert_input!]! +input award_recipients_arr_rel_insert_input { + data: [award_recipients_insert_input!]! """upsert condition""" - on_conflict: clip_render_jobs_on_conflict + on_conflict: award_recipients_on_conflict } """aggregate avg on columns""" -type clip_render_jobs_avg_fields { - progress: Float - sort_index: Float - user_steam_id: Float +type award_recipients_avg_fields { + awarded_by_steam_id: Float + placement: Float + player_steam_id: Float } """ -order by avg() on columns of table "clip_render_jobs" +order by avg() on columns of table "award_recipients" """ -input clip_render_jobs_avg_order_by { - progress: order_by - sort_index: order_by - user_steam_id: order_by +input award_recipients_avg_order_by { + awarded_by_steam_id: order_by + placement: order_by + player_steam_id: order_by } """ -Boolean expression to filter rows from the table "clip_render_jobs". All fields are combined with a logical 'AND'. +Boolean expression to filter rows from the table "award_recipients". All fields are combined with a logical 'AND'. """ -input clip_render_jobs_bool_exp { - _and: [clip_render_jobs_bool_exp!] - _not: clip_render_jobs_bool_exp - _or: [clip_render_jobs_bool_exp!] - clip: match_clips_bool_exp - clip_id: uuid_comparison_exp +input award_recipients_bool_exp { + _and: [award_recipients_bool_exp!] + _not: award_recipients_bool_exp + _or: [award_recipients_bool_exp!] + award: awards_bool_exp + award_id: uuid_comparison_exp + awarded_by: players_bool_exp + awarded_by_steam_id: bigint_comparison_exp created_at: timestamptz_comparison_exp - error_message: String_comparison_exp - game_server_node: game_server_nodes_bool_exp - game_server_node_id: String_comparison_exp id: uuid_comparison_exp - k8s_job_name: String_comparison_exp - last_status_at: timestamptz_comparison_exp - match_map: match_maps_bool_exp - match_map_demo: match_map_demos_bool_exp - match_map_demo_id: uuid_comparison_exp - match_map_id: uuid_comparison_exp - paused: Boolean_comparison_exp - progress: numeric_comparison_exp - session_token: String_comparison_exp - sort_index: Int_comparison_exp - spec: jsonb_comparison_exp - status: String_comparison_exp - status_history: jsonb_comparison_exp - user: players_bool_exp - user_steam_id: bigint_comparison_exp + note: String_comparison_exp + placement: Int_comparison_exp + placement_tier: String_comparison_exp + player: players_bool_exp + player_steam_id: bigint_comparison_exp + source: e_award_sources_enum_comparison_exp + team: teams_bool_exp + team_id: uuid_comparison_exp + tournament: tournaments_bool_exp + tournament_award: tournament_awards_bool_exp + tournament_id: uuid_comparison_exp + tournament_team: tournament_teams_bool_exp + tournament_team_id: uuid_comparison_exp } """ -unique or primary key constraints on table "clip_render_jobs" +unique or primary key constraints on table "award_recipients" """ -enum clip_render_jobs_constraint { +enum award_recipients_constraint { """ - unique or primary key constraint on columns "id" + unique or primary key constraint on columns "tournament_id" """ - clip_render_jobs_pkey -} + award_recipients_one_mvp_per_tournament -""" -delete the field or element with specified path (for JSON arrays, negative integers count from the end) -""" -input clip_render_jobs_delete_at_path_input { - spec: [String!] - status_history: [String!] -} + """ + unique or primary key constraint on columns "id" + """ + award_recipients_pkey -""" -delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array -""" -input clip_render_jobs_delete_elem_input { - spec: Int - status_history: Int -} + """ + unique or primary key constraint on columns "player_steam_id", "placement", "tournament_team_id", "tournament_id" + """ + award_recipients_player_recipient_key -""" -delete key/value pair or string element. key/value pairs are matched based on their key value -""" -input clip_render_jobs_delete_key_input { - spec: String - status_history: String + """ + unique or primary key constraint on columns "placement", "tournament_team_id", "tournament_id", "team_id" + """ + award_recipients_team_recipient_key } """ -input type for incrementing numeric columns in table "clip_render_jobs" +input type for incrementing numeric columns in table "award_recipients" """ -input clip_render_jobs_inc_input { - progress: numeric - sort_index: Int - user_steam_id: bigint +input award_recipients_inc_input { + awarded_by_steam_id: bigint + placement: Int + player_steam_id: bigint } """ -input type for inserting data into table "clip_render_jobs" +input type for inserting data into table "award_recipients" """ -input clip_render_jobs_insert_input { - clip: match_clips_obj_rel_insert_input - clip_id: uuid +input award_recipients_insert_input { + award: awards_obj_rel_insert_input + award_id: uuid + awarded_by: players_obj_rel_insert_input + awarded_by_steam_id: bigint created_at: timestamptz - error_message: String - game_server_node: game_server_nodes_obj_rel_insert_input - game_server_node_id: String id: uuid - k8s_job_name: String - last_status_at: timestamptz - match_map: match_maps_obj_rel_insert_input - match_map_demo: match_map_demos_obj_rel_insert_input - match_map_demo_id: uuid - match_map_id: uuid - paused: Boolean - progress: numeric - session_token: String - sort_index: Int - spec: jsonb - status: String - status_history: jsonb - user: players_obj_rel_insert_input - user_steam_id: bigint + note: String + placement: Int + player: players_obj_rel_insert_input + player_steam_id: bigint + source: e_award_sources_enum + team: teams_obj_rel_insert_input + team_id: uuid + tournament: tournaments_obj_rel_insert_input + tournament_award: tournament_awards_obj_rel_insert_input + tournament_id: uuid + tournament_team: tournament_teams_obj_rel_insert_input + tournament_team_id: uuid } """aggregate max on columns""" -type clip_render_jobs_max_fields { - clip_id: uuid +type award_recipients_max_fields { + award_id: uuid + awarded_by_steam_id: bigint created_at: timestamptz - error_message: String - game_server_node_id: String id: uuid - k8s_job_name: String - last_status_at: timestamptz - match_map_demo_id: uuid - match_map_id: uuid - progress: numeric - session_token: String - sort_index: Int - status: String - user_steam_id: bigint + note: String + placement: Int + placement_tier: String + player_steam_id: bigint + team_id: uuid + tournament_id: uuid + tournament_team_id: uuid } """ -order by max() on columns of table "clip_render_jobs" +order by max() on columns of table "award_recipients" """ -input clip_render_jobs_max_order_by { - clip_id: order_by +input award_recipients_max_order_by { + award_id: order_by + awarded_by_steam_id: order_by created_at: order_by - error_message: order_by - game_server_node_id: order_by id: order_by - k8s_job_name: order_by - last_status_at: order_by - match_map_demo_id: order_by - match_map_id: order_by - progress: order_by - session_token: order_by - sort_index: order_by - status: order_by - user_steam_id: order_by + note: order_by + placement: order_by + placement_tier: order_by + player_steam_id: order_by + team_id: order_by + tournament_id: order_by + tournament_team_id: order_by } """aggregate min on columns""" -type clip_render_jobs_min_fields { - clip_id: uuid +type award_recipients_min_fields { + award_id: uuid + awarded_by_steam_id: bigint created_at: timestamptz - error_message: String - game_server_node_id: String id: uuid - k8s_job_name: String - last_status_at: timestamptz - match_map_demo_id: uuid - match_map_id: uuid - progress: numeric - session_token: String - sort_index: Int - status: String - user_steam_id: bigint + note: String + placement: Int + placement_tier: String + player_steam_id: bigint + team_id: uuid + tournament_id: uuid + tournament_team_id: uuid } """ -order by min() on columns of table "clip_render_jobs" +order by min() on columns of table "award_recipients" """ -input clip_render_jobs_min_order_by { - clip_id: order_by +input award_recipients_min_order_by { + award_id: order_by + awarded_by_steam_id: order_by created_at: order_by - error_message: order_by - game_server_node_id: order_by id: order_by - k8s_job_name: order_by - last_status_at: order_by - match_map_demo_id: order_by - match_map_id: order_by - progress: order_by - session_token: order_by - sort_index: order_by - status: order_by - user_steam_id: order_by + note: order_by + placement: order_by + placement_tier: order_by + player_steam_id: order_by + team_id: order_by + tournament_id: order_by + tournament_team_id: order_by } """ -response of any mutation on the table "clip_render_jobs" +response of any mutation on the table "award_recipients" """ -type clip_render_jobs_mutation_response { +type award_recipients_mutation_response { """number of rows affected by the mutation""" affected_rows: Int! """data from the rows affected by the mutation""" - returning: [clip_render_jobs!]! + returning: [award_recipients!]! } """ -on_conflict condition type for table "clip_render_jobs" +on_conflict condition type for table "award_recipients" """ -input clip_render_jobs_on_conflict { - constraint: clip_render_jobs_constraint! - update_columns: [clip_render_jobs_update_column!]! = [] - where: clip_render_jobs_bool_exp +input award_recipients_on_conflict { + constraint: award_recipients_constraint! + update_columns: [award_recipients_update_column!]! = [] + where: award_recipients_bool_exp } -"""Ordering options when selecting data from "clip_render_jobs".""" -input clip_render_jobs_order_by { - clip: match_clips_order_by - clip_id: order_by +"""Ordering options when selecting data from "award_recipients".""" +input award_recipients_order_by { + award: awards_order_by + award_id: order_by + awarded_by: players_order_by + awarded_by_steam_id: order_by created_at: order_by - error_message: order_by - game_server_node: game_server_nodes_order_by - game_server_node_id: order_by id: order_by - k8s_job_name: order_by - last_status_at: order_by - match_map: match_maps_order_by - match_map_demo: match_map_demos_order_by - match_map_demo_id: order_by - match_map_id: order_by - paused: order_by - progress: order_by - session_token: order_by - sort_index: order_by - spec: order_by - status: order_by - status_history: order_by - user: players_order_by - user_steam_id: order_by + note: order_by + placement: order_by + placement_tier: order_by + player: players_order_by + player_steam_id: order_by + source: order_by + team: teams_order_by + team_id: order_by + tournament: tournaments_order_by + tournament_award: tournament_awards_order_by + tournament_id: order_by + tournament_team: tournament_teams_order_by + tournament_team_id: order_by } -"""primary key columns input for table: clip_render_jobs""" -input clip_render_jobs_pk_columns_input { +"""primary key columns input for table: award_recipients""" +input award_recipients_pk_columns_input { id: uuid! } -"""prepend existing jsonb value of filtered columns with new jsonb value""" -input clip_render_jobs_prepend_input { - spec: jsonb - status_history: jsonb -} - """ -select columns of table "clip_render_jobs" +select columns of table "award_recipients" """ -enum clip_render_jobs_select_column { - """column name""" - clip_id - +enum award_recipients_select_column { """column name""" - created_at + award_id """column name""" - error_message + awarded_by_steam_id """column name""" - game_server_node_id + created_at """column name""" id """column name""" - k8s_job_name + note """column name""" - last_status_at + placement """column name""" - match_map_demo_id + placement_tier """column name""" - match_map_id + player_steam_id """column name""" - paused + source """column name""" - progress + team_id """column name""" - session_token + tournament_id """column name""" - sort_index + tournament_team_id +} - """column name""" - spec +""" +input type for updating data in table "award_recipients" +""" +input award_recipients_set_input { + award_id: uuid + awarded_by_steam_id: bigint + created_at: timestamptz + id: uuid + note: String + placement: Int + player_steam_id: bigint + source: e_award_sources_enum + team_id: uuid + tournament_id: uuid + tournament_team_id: uuid +} - """column name""" - status +"""aggregate stddev on columns""" +type award_recipients_stddev_fields { + awarded_by_steam_id: Float + placement: Float + player_steam_id: Float +} - """column name""" - status_history +""" +order by stddev() on columns of table "award_recipients" +""" +input award_recipients_stddev_order_by { + awarded_by_steam_id: order_by + placement: order_by + player_steam_id: order_by +} - """column name""" - user_steam_id +"""aggregate stddev_pop on columns""" +type award_recipients_stddev_pop_fields { + awarded_by_steam_id: Float + placement: Float + player_steam_id: Float } """ -select "clip_render_jobs_aggregate_bool_exp_bool_and_arguments_columns" columns of table "clip_render_jobs" +order by stddev_pop() on columns of table "award_recipients" """ -enum clip_render_jobs_select_column_clip_render_jobs_aggregate_bool_exp_bool_and_arguments_columns { - """column name""" - paused +input award_recipients_stddev_pop_order_by { + awarded_by_steam_id: order_by + placement: order_by + player_steam_id: order_by +} + +"""aggregate stddev_samp on columns""" +type award_recipients_stddev_samp_fields { + awarded_by_steam_id: Float + placement: Float + player_steam_id: Float } """ -select "clip_render_jobs_aggregate_bool_exp_bool_or_arguments_columns" columns of table "clip_render_jobs" +order by stddev_samp() on columns of table "award_recipients" """ -enum clip_render_jobs_select_column_clip_render_jobs_aggregate_bool_exp_bool_or_arguments_columns { - """column name""" - paused +input award_recipients_stddev_samp_order_by { + awarded_by_steam_id: order_by + placement: order_by + player_steam_id: order_by } """ -input type for updating data in table "clip_render_jobs" +Streaming cursor of the table "award_recipients" """ -input clip_render_jobs_set_input { - clip_id: uuid - created_at: timestamptz - error_message: String - game_server_node_id: String - id: uuid - k8s_job_name: String - last_status_at: timestamptz - match_map_demo_id: uuid - match_map_id: uuid - paused: Boolean - progress: numeric - session_token: String - sort_index: Int - spec: jsonb - status: String - status_history: jsonb - user_steam_id: bigint -} - -"""aggregate stddev on columns""" -type clip_render_jobs_stddev_fields { - progress: Float - sort_index: Float - user_steam_id: Float -} - -""" -order by stddev() on columns of table "clip_render_jobs" -""" -input clip_render_jobs_stddev_order_by { - progress: order_by - sort_index: order_by - user_steam_id: order_by -} - -"""aggregate stddev_pop on columns""" -type clip_render_jobs_stddev_pop_fields { - progress: Float - sort_index: Float - user_steam_id: Float -} - -""" -order by stddev_pop() on columns of table "clip_render_jobs" -""" -input clip_render_jobs_stddev_pop_order_by { - progress: order_by - sort_index: order_by - user_steam_id: order_by -} - -"""aggregate stddev_samp on columns""" -type clip_render_jobs_stddev_samp_fields { - progress: Float - sort_index: Float - user_steam_id: Float -} - -""" -order by stddev_samp() on columns of table "clip_render_jobs" -""" -input clip_render_jobs_stddev_samp_order_by { - progress: order_by - sort_index: order_by - user_steam_id: order_by -} - -""" -Streaming cursor of the table "clip_render_jobs" -""" -input clip_render_jobs_stream_cursor_input { +input award_recipients_stream_cursor_input { """Stream column input with initial value""" - initial_value: clip_render_jobs_stream_cursor_value_input! + initial_value: award_recipients_stream_cursor_value_input! """cursor ordering""" ordering: cursor_ordering } """Initial value of the column from where the streaming should start""" -input clip_render_jobs_stream_cursor_value_input { - clip_id: uuid +input award_recipients_stream_cursor_value_input { + award_id: uuid + awarded_by_steam_id: bigint created_at: timestamptz - error_message: String - game_server_node_id: String id: uuid - k8s_job_name: String - last_status_at: timestamptz - match_map_demo_id: uuid - match_map_id: uuid - paused: Boolean - progress: numeric - session_token: String - sort_index: Int - spec: jsonb - status: String - status_history: jsonb - user_steam_id: bigint + note: String + placement: Int + placement_tier: String + player_steam_id: bigint + source: e_award_sources_enum + team_id: uuid + tournament_id: uuid + tournament_team_id: uuid } """aggregate sum on columns""" -type clip_render_jobs_sum_fields { - progress: numeric - sort_index: Int - user_steam_id: bigint +type award_recipients_sum_fields { + awarded_by_steam_id: bigint + placement: Int + player_steam_id: bigint } """ -order by sum() on columns of table "clip_render_jobs" +order by sum() on columns of table "award_recipients" """ -input clip_render_jobs_sum_order_by { - progress: order_by - sort_index: order_by - user_steam_id: order_by +input award_recipients_sum_order_by { + awarded_by_steam_id: order_by + placement: order_by + player_steam_id: order_by } """ -update columns of table "clip_render_jobs" +update columns of table "award_recipients" """ -enum clip_render_jobs_update_column { - """column name""" - clip_id - +enum award_recipients_update_column { """column name""" - created_at + award_id """column name""" - error_message + awarded_by_steam_id """column name""" - game_server_node_id + created_at """column name""" id """column name""" - k8s_job_name - - """column name""" - last_status_at - - """column name""" - match_map_demo_id - - """column name""" - match_map_id - - """column name""" - paused - - """column name""" - progress + note """column name""" - session_token + placement """column name""" - sort_index + player_steam_id """column name""" - spec + source """column name""" - status + team_id """column name""" - status_history + tournament_id """column name""" - user_steam_id + tournament_team_id } -input clip_render_jobs_updates { - """append existing jsonb value of filtered columns with new jsonb value""" - _append: clip_render_jobs_append_input - - """ - delete the field or element with specified path (for JSON arrays, negative integers count from the end) - """ - _delete_at_path: clip_render_jobs_delete_at_path_input - - """ - delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array - """ - _delete_elem: clip_render_jobs_delete_elem_input - - """ - delete key/value pair or string element. key/value pairs are matched based on their key value - """ - _delete_key: clip_render_jobs_delete_key_input - +input award_recipients_updates { """increments the numeric columns with given value of the filtered values""" - _inc: clip_render_jobs_inc_input - - """prepend existing jsonb value of filtered columns with new jsonb value""" - _prepend: clip_render_jobs_prepend_input + _inc: award_recipients_inc_input """sets the columns of the filtered rows to the given values""" - _set: clip_render_jobs_set_input + _set: award_recipients_set_input """filter the rows which have to be updated""" - where: clip_render_jobs_bool_exp! + where: award_recipients_bool_exp! } """aggregate var_pop on columns""" -type clip_render_jobs_var_pop_fields { - progress: Float - sort_index: Float - user_steam_id: Float +type award_recipients_var_pop_fields { + awarded_by_steam_id: Float + placement: Float + player_steam_id: Float } """ -order by var_pop() on columns of table "clip_render_jobs" +order by var_pop() on columns of table "award_recipients" """ -input clip_render_jobs_var_pop_order_by { - progress: order_by - sort_index: order_by - user_steam_id: order_by +input award_recipients_var_pop_order_by { + awarded_by_steam_id: order_by + placement: order_by + player_steam_id: order_by } """aggregate var_samp on columns""" -type clip_render_jobs_var_samp_fields { - progress: Float - sort_index: Float - user_steam_id: Float +type award_recipients_var_samp_fields { + awarded_by_steam_id: Float + placement: Float + player_steam_id: Float } """ -order by var_samp() on columns of table "clip_render_jobs" +order by var_samp() on columns of table "award_recipients" """ -input clip_render_jobs_var_samp_order_by { - progress: order_by - sort_index: order_by - user_steam_id: order_by +input award_recipients_var_samp_order_by { + awarded_by_steam_id: order_by + placement: order_by + player_steam_id: order_by } """aggregate variance on columns""" -type clip_render_jobs_variance_fields { - progress: Float - sort_index: Float - user_steam_id: Float +type award_recipients_variance_fields { + awarded_by_steam_id: Float + placement: Float + player_steam_id: Float } """ -order by variance() on columns of table "clip_render_jobs" +order by variance() on columns of table "award_recipients" """ -input clip_render_jobs_variance_order_by { - progress: order_by - sort_index: order_by - user_steam_id: order_by -} - -input clone_league_season_args { - _league_season_id: uuid -} - -"""ordering argument of a cursor""" -enum cursor_ordering { - """ascending ordering of the cursor""" - ASC - - """descending ordering of the cursor""" - DESC +input award_recipients_variance_order_by { + awarded_by_steam_id: order_by + placement: order_by + player_steam_id: order_by } """ -columns and relationships of "custom_pages" +columns and relationships of "awards" """ -type custom_pages { +type awards { + allow_multiple: Boolean! created_at: timestamptz! - enabled: Boolean! - exposed_module: String! - icon: String + + """An object relationship""" + created_by: players + created_by_steam_id: bigint + description: String id: uuid! - is_default: Boolean! - nav_group: String - nav_order: Int! - remote_entry_url: String! - remote_scope: String! - required_role: e_player_roles_enum - slug: String! - title: String! + image_url: String + name: String! + + """An array relationship""" + recipients( + """distinct select on columns""" + distinct_on: [award_recipients_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: [award_recipients_order_by!] + + """filter the rows returned""" + where: award_recipients_bool_exp + ): [award_recipients!]! + + """An aggregate relationship""" + recipients_aggregate( + """distinct select on columns""" + distinct_on: [award_recipients_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: [award_recipients_order_by!] + + """filter the rows returned""" + where: award_recipients_bool_exp + ): award_recipients_aggregate! + silhouette: Int + system_key: String + tier: e_award_tiers_enum! + + """An array relationship""" + tournament_configs( + """distinct select on columns""" + distinct_on: [tournament_awards_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: [tournament_awards_order_by!] + + """filter the rows returned""" + where: tournament_awards_bool_exp + ): [tournament_awards!]! + + """An aggregate relationship""" + tournament_configs_aggregate( + """distinct select on columns""" + distinct_on: [tournament_awards_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: [tournament_awards_order_by!] + + """filter the rows returned""" + where: tournament_awards_bool_exp + ): tournament_awards_aggregate! updated_at: timestamptz! } """ -aggregated selection of "custom_pages" +aggregated selection of "awards" """ -type custom_pages_aggregate { - aggregate: custom_pages_aggregate_fields - nodes: [custom_pages!]! +type awards_aggregate { + aggregate: awards_aggregate_fields + nodes: [awards!]! } """ -aggregate fields of "custom_pages" +aggregate fields of "awards" """ -type custom_pages_aggregate_fields { - avg: custom_pages_avg_fields - count(columns: [custom_pages_select_column!], distinct: Boolean): Int! - max: custom_pages_max_fields - min: custom_pages_min_fields - stddev: custom_pages_stddev_fields - stddev_pop: custom_pages_stddev_pop_fields - stddev_samp: custom_pages_stddev_samp_fields - sum: custom_pages_sum_fields - var_pop: custom_pages_var_pop_fields - var_samp: custom_pages_var_samp_fields - variance: custom_pages_variance_fields +type awards_aggregate_fields { + avg: awards_avg_fields + count(columns: [awards_select_column!], distinct: Boolean): Int! + max: awards_max_fields + min: awards_min_fields + stddev: awards_stddev_fields + stddev_pop: awards_stddev_pop_fields + stddev_samp: awards_stddev_samp_fields + sum: awards_sum_fields + var_pop: awards_var_pop_fields + var_samp: awards_var_samp_fields + variance: awards_variance_fields } """aggregate avg on columns""" -type custom_pages_avg_fields { - nav_order: Float +type awards_avg_fields { + created_by_steam_id: Float + silhouette: Float } """ -Boolean expression to filter rows from the table "custom_pages". All fields are combined with a logical 'AND'. +Boolean expression to filter rows from the table "awards". All fields are combined with a logical 'AND'. """ -input custom_pages_bool_exp { - _and: [custom_pages_bool_exp!] - _not: custom_pages_bool_exp - _or: [custom_pages_bool_exp!] +input awards_bool_exp { + _and: [awards_bool_exp!] + _not: awards_bool_exp + _or: [awards_bool_exp!] + allow_multiple: Boolean_comparison_exp created_at: timestamptz_comparison_exp - enabled: Boolean_comparison_exp - exposed_module: String_comparison_exp - icon: String_comparison_exp + created_by: players_bool_exp + created_by_steam_id: bigint_comparison_exp + description: String_comparison_exp id: uuid_comparison_exp - is_default: Boolean_comparison_exp - nav_group: String_comparison_exp - nav_order: Int_comparison_exp - remote_entry_url: String_comparison_exp - remote_scope: String_comparison_exp - required_role: e_player_roles_enum_comparison_exp - slug: String_comparison_exp - title: String_comparison_exp + image_url: String_comparison_exp + name: String_comparison_exp + recipients: award_recipients_bool_exp + recipients_aggregate: award_recipients_aggregate_bool_exp + silhouette: Int_comparison_exp + system_key: String_comparison_exp + tier: e_award_tiers_enum_comparison_exp + tournament_configs: tournament_awards_bool_exp + tournament_configs_aggregate: tournament_awards_aggregate_bool_exp updated_at: timestamptz_comparison_exp } """ -unique or primary key constraints on table "custom_pages" +unique or primary key constraints on table "awards" """ -enum custom_pages_constraint { +enum awards_constraint { """ unique or primary key constraint on columns "id" """ - custom_pages_pkey - - """ - unique or primary key constraint on columns "is_default" - """ - custom_pages_single_default_idx + awards_pkey """ - unique or primary key constraint on columns "slug" + unique or primary key constraint on columns "system_key" """ - custom_pages_slug_key + awards_system_key_key } """ -input type for incrementing numeric columns in table "custom_pages" +input type for incrementing numeric columns in table "awards" """ -input custom_pages_inc_input { - nav_order: Int +input awards_inc_input { + created_by_steam_id: bigint + silhouette: Int } """ -input type for inserting data into table "custom_pages" +input type for inserting data into table "awards" """ -input custom_pages_insert_input { +input awards_insert_input { + allow_multiple: Boolean created_at: timestamptz - enabled: Boolean - exposed_module: String - icon: String + created_by: players_obj_rel_insert_input + created_by_steam_id: bigint + description: String id: uuid - is_default: Boolean - nav_group: String - nav_order: Int - remote_entry_url: String - remote_scope: String - required_role: e_player_roles_enum - slug: String - title: String + image_url: String + name: String + recipients: award_recipients_arr_rel_insert_input + silhouette: Int + system_key: String + tier: e_award_tiers_enum + tournament_configs: tournament_awards_arr_rel_insert_input updated_at: timestamptz } """aggregate max on columns""" -type custom_pages_max_fields { +type awards_max_fields { created_at: timestamptz - exposed_module: String - icon: String + created_by_steam_id: bigint + description: String id: uuid - nav_group: String - nav_order: Int - remote_entry_url: String - remote_scope: String - slug: String - title: String + image_url: String + name: String + silhouette: Int + system_key: String updated_at: timestamptz } """aggregate min on columns""" -type custom_pages_min_fields { +type awards_min_fields { created_at: timestamptz - exposed_module: String - icon: String + created_by_steam_id: bigint + description: String id: uuid - nav_group: String - nav_order: Int - remote_entry_url: String - remote_scope: String - slug: String - title: String + image_url: String + name: String + silhouette: Int + system_key: String updated_at: timestamptz } """ -response of any mutation on the table "custom_pages" +response of any mutation on the table "awards" """ -type custom_pages_mutation_response { +type awards_mutation_response { """number of rows affected by the mutation""" affected_rows: Int! """data from the rows affected by the mutation""" - returning: [custom_pages!]! + returning: [awards!]! } """ -on_conflict condition type for table "custom_pages" +input type for inserting object relation for remote table "awards" """ -input custom_pages_on_conflict { - constraint: custom_pages_constraint! - update_columns: [custom_pages_update_column!]! = [] - where: custom_pages_bool_exp +input awards_obj_rel_insert_input { + data: awards_insert_input! + + """upsert condition""" + on_conflict: awards_on_conflict } -"""Ordering options when selecting data from "custom_pages".""" -input custom_pages_order_by { +""" +on_conflict condition type for table "awards" +""" +input awards_on_conflict { + constraint: awards_constraint! + update_columns: [awards_update_column!]! = [] + where: awards_bool_exp +} + +"""Ordering options when selecting data from "awards".""" +input awards_order_by { + allow_multiple: order_by created_at: order_by - enabled: order_by - exposed_module: order_by - icon: order_by + created_by: players_order_by + created_by_steam_id: order_by + description: order_by id: order_by - is_default: order_by - nav_group: order_by - nav_order: order_by - remote_entry_url: order_by - remote_scope: order_by - required_role: order_by - slug: order_by - title: order_by + image_url: order_by + name: order_by + recipients_aggregate: award_recipients_aggregate_order_by + silhouette: order_by + system_key: order_by + tier: order_by + tournament_configs_aggregate: tournament_awards_aggregate_order_by updated_at: order_by } -"""primary key columns input for table: custom_pages""" -input custom_pages_pk_columns_input { +"""primary key columns input for table: awards""" +input awards_pk_columns_input { id: uuid! } """ -select columns of table "custom_pages" +select columns of table "awards" """ -enum custom_pages_select_column { +enum awards_select_column { """column name""" - created_at + allow_multiple """column name""" - enabled + created_at """column name""" - exposed_module + created_by_steam_id """column name""" - icon + description """column name""" id """column name""" - is_default - - """column name""" - nav_group - - """column name""" - nav_order - - """column name""" - remote_entry_url + image_url """column name""" - remote_scope + name """column name""" - required_role + silhouette """column name""" - slug + system_key """column name""" - title + tier """column name""" updated_at } """ -input type for updating data in table "custom_pages" +input type for updating data in table "awards" """ -input custom_pages_set_input { +input awards_set_input { + allow_multiple: Boolean created_at: timestamptz - enabled: Boolean - exposed_module: String - icon: String + created_by_steam_id: bigint + description: String id: uuid - is_default: Boolean - nav_group: String - nav_order: Int - remote_entry_url: String - remote_scope: String - required_role: e_player_roles_enum - slug: String - title: String + image_url: String + name: String + silhouette: Int + system_key: String + tier: e_award_tiers_enum updated_at: timestamptz } """aggregate stddev on columns""" -type custom_pages_stddev_fields { - nav_order: Float +type awards_stddev_fields { + created_by_steam_id: Float + silhouette: Float } """aggregate stddev_pop on columns""" -type custom_pages_stddev_pop_fields { - nav_order: Float +type awards_stddev_pop_fields { + created_by_steam_id: Float + silhouette: Float } """aggregate stddev_samp on columns""" -type custom_pages_stddev_samp_fields { - nav_order: Float +type awards_stddev_samp_fields { + created_by_steam_id: Float + silhouette: Float } """ -Streaming cursor of the table "custom_pages" +Streaming cursor of the table "awards" """ -input custom_pages_stream_cursor_input { +input awards_stream_cursor_input { """Stream column input with initial value""" - initial_value: custom_pages_stream_cursor_value_input! + initial_value: awards_stream_cursor_value_input! """cursor ordering""" ordering: cursor_ordering } """Initial value of the column from where the streaming should start""" -input custom_pages_stream_cursor_value_input { +input awards_stream_cursor_value_input { + allow_multiple: Boolean created_at: timestamptz - enabled: Boolean - exposed_module: String - icon: String + created_by_steam_id: bigint + description: String id: uuid - is_default: Boolean - nav_group: String - nav_order: Int - remote_entry_url: String - remote_scope: String - required_role: e_player_roles_enum - slug: String - title: String + image_url: String + name: String + silhouette: Int + system_key: String + tier: e_award_tiers_enum updated_at: timestamptz } """aggregate sum on columns""" -type custom_pages_sum_fields { - nav_order: Int +type awards_sum_fields { + created_by_steam_id: bigint + silhouette: Int } """ -update columns of table "custom_pages" +update columns of table "awards" """ -enum custom_pages_update_column { +enum awards_update_column { """column name""" - created_at + allow_multiple """column name""" - enabled + created_at """column name""" - exposed_module + created_by_steam_id + + """column name""" + description + + """column name""" + id + + """column name""" + image_url + + """column name""" + name + + """column name""" + silhouette + + """column name""" + system_key + + """column name""" + tier + + """column name""" + updated_at +} + +input awards_updates { + """increments the numeric columns with given value of the filtered values""" + _inc: awards_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: awards_set_input + + """filter the rows which have to be updated""" + where: awards_bool_exp! +} + +"""aggregate var_pop on columns""" +type awards_var_pop_fields { + created_by_steam_id: Float + silhouette: Float +} + +"""aggregate var_samp on columns""" +type awards_var_samp_fields { + created_by_steam_id: Float + silhouette: Float +} + +"""aggregate variance on columns""" +type awards_variance_fields { + created_by_steam_id: Float + silhouette: Float +} + +scalar bigint + +""" +Boolean expression to compare columns of type "bigint". All fields are combined with logical 'AND'. +""" +input bigint_array_comparison_exp { + """is the array contained in the given array value""" + _contained_in: [bigint!] + + """does the array contain the given value""" + _contains: [bigint!] + _eq: [bigint!] + _gt: [bigint!] + _gte: [bigint!] + _in: [[bigint!]!] + _is_null: Boolean + _lt: [bigint!] + _lte: [bigint!] + _neq: [bigint!] + _nin: [[bigint!]!] +} + +""" +Boolean expression to compare columns of type "bigint". All fields are combined with logical 'AND'. +""" +input bigint_comparison_exp { + _eq: bigint + _gt: bigint + _gte: bigint + _in: [bigint!] + _is_null: Boolean + _lt: bigint + _lte: bigint + _neq: bigint + _nin: [bigint!] +} + +scalar bytea + +""" +Boolean expression to compare columns of type "bytea". All fields are combined with logical 'AND'. +""" +input bytea_comparison_exp { + _eq: bytea + _gt: bytea + _gte: bytea + _in: [bytea!] + _is_null: Boolean + _lt: bytea + _lte: bytea + _neq: bytea + _nin: [bytea!] +} + +""" +columns and relationships of "clip_render_jobs" +""" +type clip_render_jobs { + """An object relationship""" + clip: match_clips + clip_id: uuid + created_at: timestamptz! + error_message: String + + """An object relationship""" + game_server_node: game_server_nodes + game_server_node_id: String + id: uuid! + k8s_job_name: String! + last_status_at: timestamptz! + + """An object relationship""" + match_map: match_maps! + + """An object relationship""" + match_map_demo: match_map_demos + match_map_demo_id: uuid + match_map_id: uuid! + paused: Boolean! + progress: numeric + session_token: String! + sort_index: Int! + spec( + """JSON select path""" + path: String + ): jsonb! + status: String! + status_history( + """JSON select path""" + path: String + ): jsonb! + + """An object relationship""" + user: players + user_steam_id: bigint +} + +""" +aggregated selection of "clip_render_jobs" +""" +type clip_render_jobs_aggregate { + aggregate: clip_render_jobs_aggregate_fields + nodes: [clip_render_jobs!]! +} + +input clip_render_jobs_aggregate_bool_exp { + bool_and: clip_render_jobs_aggregate_bool_exp_bool_and + bool_or: clip_render_jobs_aggregate_bool_exp_bool_or + count: clip_render_jobs_aggregate_bool_exp_count +} + +input clip_render_jobs_aggregate_bool_exp_bool_and { + arguments: clip_render_jobs_select_column_clip_render_jobs_aggregate_bool_exp_bool_and_arguments_columns! + distinct: Boolean + filter: clip_render_jobs_bool_exp + predicate: Boolean_comparison_exp! +} + +input clip_render_jobs_aggregate_bool_exp_bool_or { + arguments: clip_render_jobs_select_column_clip_render_jobs_aggregate_bool_exp_bool_or_arguments_columns! + distinct: Boolean + filter: clip_render_jobs_bool_exp + predicate: Boolean_comparison_exp! +} + +input clip_render_jobs_aggregate_bool_exp_count { + arguments: [clip_render_jobs_select_column!] + distinct: Boolean + filter: clip_render_jobs_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "clip_render_jobs" +""" +type clip_render_jobs_aggregate_fields { + avg: clip_render_jobs_avg_fields + count(columns: [clip_render_jobs_select_column!], distinct: Boolean): Int! + max: clip_render_jobs_max_fields + min: clip_render_jobs_min_fields + stddev: clip_render_jobs_stddev_fields + stddev_pop: clip_render_jobs_stddev_pop_fields + stddev_samp: clip_render_jobs_stddev_samp_fields + sum: clip_render_jobs_sum_fields + var_pop: clip_render_jobs_var_pop_fields + var_samp: clip_render_jobs_var_samp_fields + variance: clip_render_jobs_variance_fields +} + +""" +order by aggregate values of table "clip_render_jobs" +""" +input clip_render_jobs_aggregate_order_by { + avg: clip_render_jobs_avg_order_by + count: order_by + max: clip_render_jobs_max_order_by + min: clip_render_jobs_min_order_by + stddev: clip_render_jobs_stddev_order_by + stddev_pop: clip_render_jobs_stddev_pop_order_by + stddev_samp: clip_render_jobs_stddev_samp_order_by + sum: clip_render_jobs_sum_order_by + var_pop: clip_render_jobs_var_pop_order_by + var_samp: clip_render_jobs_var_samp_order_by + variance: clip_render_jobs_variance_order_by +} + +"""append existing jsonb value of filtered columns with new jsonb value""" +input clip_render_jobs_append_input { + spec: jsonb + status_history: jsonb +} + +""" +input type for inserting array relation for remote table "clip_render_jobs" +""" +input clip_render_jobs_arr_rel_insert_input { + data: [clip_render_jobs_insert_input!]! + + """upsert condition""" + on_conflict: clip_render_jobs_on_conflict +} + +"""aggregate avg on columns""" +type clip_render_jobs_avg_fields { + progress: Float + sort_index: Float + user_steam_id: Float +} + +""" +order by avg() on columns of table "clip_render_jobs" +""" +input clip_render_jobs_avg_order_by { + progress: order_by + sort_index: order_by + user_steam_id: order_by +} + +""" +Boolean expression to filter rows from the table "clip_render_jobs". All fields are combined with a logical 'AND'. +""" +input clip_render_jobs_bool_exp { + _and: [clip_render_jobs_bool_exp!] + _not: clip_render_jobs_bool_exp + _or: [clip_render_jobs_bool_exp!] + clip: match_clips_bool_exp + clip_id: uuid_comparison_exp + created_at: timestamptz_comparison_exp + error_message: String_comparison_exp + game_server_node: game_server_nodes_bool_exp + game_server_node_id: String_comparison_exp + id: uuid_comparison_exp + k8s_job_name: String_comparison_exp + last_status_at: timestamptz_comparison_exp + match_map: match_maps_bool_exp + match_map_demo: match_map_demos_bool_exp + match_map_demo_id: uuid_comparison_exp + match_map_id: uuid_comparison_exp + paused: Boolean_comparison_exp + progress: numeric_comparison_exp + session_token: String_comparison_exp + sort_index: Int_comparison_exp + spec: jsonb_comparison_exp + status: String_comparison_exp + status_history: jsonb_comparison_exp + user: players_bool_exp + user_steam_id: bigint_comparison_exp +} + +""" +unique or primary key constraints on table "clip_render_jobs" +""" +enum clip_render_jobs_constraint { + """ + unique or primary key constraint on columns "id" + """ + clip_render_jobs_pkey +} + +""" +delete the field or element with specified path (for JSON arrays, negative integers count from the end) +""" +input clip_render_jobs_delete_at_path_input { + spec: [String!] + status_history: [String!] +} + +""" +delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array +""" +input clip_render_jobs_delete_elem_input { + spec: Int + status_history: Int +} + +""" +delete key/value pair or string element. key/value pairs are matched based on their key value +""" +input clip_render_jobs_delete_key_input { + spec: String + status_history: String +} + +""" +input type for incrementing numeric columns in table "clip_render_jobs" +""" +input clip_render_jobs_inc_input { + progress: numeric + sort_index: Int + user_steam_id: bigint +} + +""" +input type for inserting data into table "clip_render_jobs" +""" +input clip_render_jobs_insert_input { + clip: match_clips_obj_rel_insert_input + clip_id: uuid + created_at: timestamptz + error_message: String + game_server_node: game_server_nodes_obj_rel_insert_input + game_server_node_id: String + id: uuid + k8s_job_name: String + last_status_at: timestamptz + match_map: match_maps_obj_rel_insert_input + match_map_demo: match_map_demos_obj_rel_insert_input + match_map_demo_id: uuid + match_map_id: uuid + paused: Boolean + progress: numeric + session_token: String + sort_index: Int + spec: jsonb + status: String + status_history: jsonb + user: players_obj_rel_insert_input + user_steam_id: bigint +} + +"""aggregate max on columns""" +type clip_render_jobs_max_fields { + clip_id: uuid + created_at: timestamptz + error_message: String + game_server_node_id: String + id: uuid + k8s_job_name: String + last_status_at: timestamptz + match_map_demo_id: uuid + match_map_id: uuid + progress: numeric + session_token: String + sort_index: Int + status: String + user_steam_id: bigint +} + +""" +order by max() on columns of table "clip_render_jobs" +""" +input clip_render_jobs_max_order_by { + clip_id: order_by + created_at: order_by + error_message: order_by + game_server_node_id: order_by + id: order_by + k8s_job_name: order_by + last_status_at: order_by + match_map_demo_id: order_by + match_map_id: order_by + progress: order_by + session_token: order_by + sort_index: order_by + status: order_by + user_steam_id: order_by +} + +"""aggregate min on columns""" +type clip_render_jobs_min_fields { + clip_id: uuid + created_at: timestamptz + error_message: String + game_server_node_id: String + id: uuid + k8s_job_name: String + last_status_at: timestamptz + match_map_demo_id: uuid + match_map_id: uuid + progress: numeric + session_token: String + sort_index: Int + status: String + user_steam_id: bigint +} + +""" +order by min() on columns of table "clip_render_jobs" +""" +input clip_render_jobs_min_order_by { + clip_id: order_by + created_at: order_by + error_message: order_by + game_server_node_id: order_by + id: order_by + k8s_job_name: order_by + last_status_at: order_by + match_map_demo_id: order_by + match_map_id: order_by + progress: order_by + session_token: order_by + sort_index: order_by + status: order_by + user_steam_id: order_by +} + +""" +response of any mutation on the table "clip_render_jobs" +""" +type clip_render_jobs_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [clip_render_jobs!]! +} + +""" +on_conflict condition type for table "clip_render_jobs" +""" +input clip_render_jobs_on_conflict { + constraint: clip_render_jobs_constraint! + update_columns: [clip_render_jobs_update_column!]! = [] + where: clip_render_jobs_bool_exp +} + +"""Ordering options when selecting data from "clip_render_jobs".""" +input clip_render_jobs_order_by { + clip: match_clips_order_by + clip_id: order_by + created_at: order_by + error_message: order_by + game_server_node: game_server_nodes_order_by + game_server_node_id: order_by + id: order_by + k8s_job_name: order_by + last_status_at: order_by + match_map: match_maps_order_by + match_map_demo: match_map_demos_order_by + match_map_demo_id: order_by + match_map_id: order_by + paused: order_by + progress: order_by + session_token: order_by + sort_index: order_by + spec: order_by + status: order_by + status_history: order_by + user: players_order_by + user_steam_id: order_by +} + +"""primary key columns input for table: clip_render_jobs""" +input clip_render_jobs_pk_columns_input { + id: uuid! +} + +"""prepend existing jsonb value of filtered columns with new jsonb value""" +input clip_render_jobs_prepend_input { + spec: jsonb + status_history: jsonb +} + +""" +select columns of table "clip_render_jobs" +""" +enum clip_render_jobs_select_column { + """column name""" + clip_id + + """column name""" + created_at + + """column name""" + error_message + + """column name""" + game_server_node_id + + """column name""" + id + + """column name""" + k8s_job_name + + """column name""" + last_status_at + + """column name""" + match_map_demo_id + + """column name""" + match_map_id + + """column name""" + paused + + """column name""" + progress + + """column name""" + session_token + + """column name""" + sort_index + + """column name""" + spec + + """column name""" + status + + """column name""" + status_history + + """column name""" + user_steam_id +} + +""" +select "clip_render_jobs_aggregate_bool_exp_bool_and_arguments_columns" columns of table "clip_render_jobs" +""" +enum clip_render_jobs_select_column_clip_render_jobs_aggregate_bool_exp_bool_and_arguments_columns { + """column name""" + paused +} + +""" +select "clip_render_jobs_aggregate_bool_exp_bool_or_arguments_columns" columns of table "clip_render_jobs" +""" +enum clip_render_jobs_select_column_clip_render_jobs_aggregate_bool_exp_bool_or_arguments_columns { + """column name""" + paused +} + +""" +input type for updating data in table "clip_render_jobs" +""" +input clip_render_jobs_set_input { + clip_id: uuid + created_at: timestamptz + error_message: String + game_server_node_id: String + id: uuid + k8s_job_name: String + last_status_at: timestamptz + match_map_demo_id: uuid + match_map_id: uuid + paused: Boolean + progress: numeric + session_token: String + sort_index: Int + spec: jsonb + status: String + status_history: jsonb + user_steam_id: bigint +} + +"""aggregate stddev on columns""" +type clip_render_jobs_stddev_fields { + progress: Float + sort_index: Float + user_steam_id: Float +} + +""" +order by stddev() on columns of table "clip_render_jobs" +""" +input clip_render_jobs_stddev_order_by { + progress: order_by + sort_index: order_by + user_steam_id: order_by +} + +"""aggregate stddev_pop on columns""" +type clip_render_jobs_stddev_pop_fields { + progress: Float + sort_index: Float + user_steam_id: Float +} + +""" +order by stddev_pop() on columns of table "clip_render_jobs" +""" +input clip_render_jobs_stddev_pop_order_by { + progress: order_by + sort_index: order_by + user_steam_id: order_by +} + +"""aggregate stddev_samp on columns""" +type clip_render_jobs_stddev_samp_fields { + progress: Float + sort_index: Float + user_steam_id: Float +} + +""" +order by stddev_samp() on columns of table "clip_render_jobs" +""" +input clip_render_jobs_stddev_samp_order_by { + progress: order_by + sort_index: order_by + user_steam_id: order_by +} + +""" +Streaming cursor of the table "clip_render_jobs" +""" +input clip_render_jobs_stream_cursor_input { + """Stream column input with initial value""" + initial_value: clip_render_jobs_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input clip_render_jobs_stream_cursor_value_input { + clip_id: uuid + created_at: timestamptz + error_message: String + game_server_node_id: String + id: uuid + k8s_job_name: String + last_status_at: timestamptz + match_map_demo_id: uuid + match_map_id: uuid + paused: Boolean + progress: numeric + session_token: String + sort_index: Int + spec: jsonb + status: String + status_history: jsonb + user_steam_id: bigint +} + +"""aggregate sum on columns""" +type clip_render_jobs_sum_fields { + progress: numeric + sort_index: Int + user_steam_id: bigint +} + +""" +order by sum() on columns of table "clip_render_jobs" +""" +input clip_render_jobs_sum_order_by { + progress: order_by + sort_index: order_by + user_steam_id: order_by +} + +""" +update columns of table "clip_render_jobs" +""" +enum clip_render_jobs_update_column { + """column name""" + clip_id + + """column name""" + created_at + + """column name""" + error_message + + """column name""" + game_server_node_id + + """column name""" + id + + """column name""" + k8s_job_name + + """column name""" + last_status_at + + """column name""" + match_map_demo_id + + """column name""" + match_map_id + + """column name""" + paused + + """column name""" + progress + + """column name""" + session_token + + """column name""" + sort_index + + """column name""" + spec + + """column name""" + status + + """column name""" + status_history + + """column name""" + user_steam_id +} + +input clip_render_jobs_updates { + """append existing jsonb value of filtered columns with new jsonb value""" + _append: clip_render_jobs_append_input + + """ + delete the field or element with specified path (for JSON arrays, negative integers count from the end) + """ + _delete_at_path: clip_render_jobs_delete_at_path_input + + """ + delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array + """ + _delete_elem: clip_render_jobs_delete_elem_input + + """ + delete key/value pair or string element. key/value pairs are matched based on their key value + """ + _delete_key: clip_render_jobs_delete_key_input + + """increments the numeric columns with given value of the filtered values""" + _inc: clip_render_jobs_inc_input + + """prepend existing jsonb value of filtered columns with new jsonb value""" + _prepend: clip_render_jobs_prepend_input + + """sets the columns of the filtered rows to the given values""" + _set: clip_render_jobs_set_input + + """filter the rows which have to be updated""" + where: clip_render_jobs_bool_exp! +} + +"""aggregate var_pop on columns""" +type clip_render_jobs_var_pop_fields { + progress: Float + sort_index: Float + user_steam_id: Float +} + +""" +order by var_pop() on columns of table "clip_render_jobs" +""" +input clip_render_jobs_var_pop_order_by { + progress: order_by + sort_index: order_by + user_steam_id: order_by +} + +"""aggregate var_samp on columns""" +type clip_render_jobs_var_samp_fields { + progress: Float + sort_index: Float + user_steam_id: Float +} + +""" +order by var_samp() on columns of table "clip_render_jobs" +""" +input clip_render_jobs_var_samp_order_by { + progress: order_by + sort_index: order_by + user_steam_id: order_by +} + +"""aggregate variance on columns""" +type clip_render_jobs_variance_fields { + progress: Float + sort_index: Float + user_steam_id: Float +} + +""" +order by variance() on columns of table "clip_render_jobs" +""" +input clip_render_jobs_variance_order_by { + progress: order_by + sort_index: order_by + user_steam_id: order_by +} + +input clone_league_season_args { + _league_season_id: uuid +} + +"""ordering argument of a cursor""" +enum cursor_ordering { + """ascending ordering of the cursor""" + ASC + + """descending ordering of the cursor""" + DESC +} + +""" +columns and relationships of "custom_pages" +""" +type custom_pages { + created_at: timestamptz! + deployments( + """JSON select path""" + path: String + ): jsonb! + enabled: Boolean! + exposed_module: String! + icon: String + id: uuid! + is_default: Boolean! + manifest_url: String + nav_group: String + nav_order: Int! + profile_tab_label: String + remote_entry_url: String! + remote_scope: String! + required_role: e_player_roles_enum + slug: String! + title: String! + updated_at: timestamptz! +} + +""" +aggregated selection of "custom_pages" +""" +type custom_pages_aggregate { + aggregate: custom_pages_aggregate_fields + nodes: [custom_pages!]! +} + +""" +aggregate fields of "custom_pages" +""" +type custom_pages_aggregate_fields { + avg: custom_pages_avg_fields + count(columns: [custom_pages_select_column!], distinct: Boolean): Int! + max: custom_pages_max_fields + min: custom_pages_min_fields + stddev: custom_pages_stddev_fields + stddev_pop: custom_pages_stddev_pop_fields + stddev_samp: custom_pages_stddev_samp_fields + sum: custom_pages_sum_fields + var_pop: custom_pages_var_pop_fields + var_samp: custom_pages_var_samp_fields + variance: custom_pages_variance_fields +} + +"""append existing jsonb value of filtered columns with new jsonb value""" +input custom_pages_append_input { + deployments: jsonb +} + +"""aggregate avg on columns""" +type custom_pages_avg_fields { + nav_order: Float +} + +""" +Boolean expression to filter rows from the table "custom_pages". All fields are combined with a logical 'AND'. +""" +input custom_pages_bool_exp { + _and: [custom_pages_bool_exp!] + _not: custom_pages_bool_exp + _or: [custom_pages_bool_exp!] + created_at: timestamptz_comparison_exp + deployments: jsonb_comparison_exp + enabled: Boolean_comparison_exp + exposed_module: String_comparison_exp + icon: String_comparison_exp + id: uuid_comparison_exp + is_default: Boolean_comparison_exp + manifest_url: String_comparison_exp + nav_group: String_comparison_exp + nav_order: Int_comparison_exp + profile_tab_label: String_comparison_exp + remote_entry_url: String_comparison_exp + remote_scope: String_comparison_exp + required_role: e_player_roles_enum_comparison_exp + slug: String_comparison_exp + title: String_comparison_exp + updated_at: timestamptz_comparison_exp +} + +""" +unique or primary key constraints on table "custom_pages" +""" +enum custom_pages_constraint { + """ + unique or primary key constraint on columns "id" + """ + custom_pages_pkey + + """ + unique or primary key constraint on columns "is_default" + """ + custom_pages_single_default_idx + + """ + unique or primary key constraint on columns "slug" + """ + custom_pages_slug_key +} + +""" +delete the field or element with specified path (for JSON arrays, negative integers count from the end) +""" +input custom_pages_delete_at_path_input { + deployments: [String!] +} + +""" +delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array +""" +input custom_pages_delete_elem_input { + deployments: Int +} + +""" +delete key/value pair or string element. key/value pairs are matched based on their key value +""" +input custom_pages_delete_key_input { + deployments: String +} + +""" +input type for incrementing numeric columns in table "custom_pages" +""" +input custom_pages_inc_input { + nav_order: Int +} + +""" +input type for inserting data into table "custom_pages" +""" +input custom_pages_insert_input { + created_at: timestamptz + deployments: jsonb + enabled: Boolean + exposed_module: String + icon: String + id: uuid + is_default: Boolean + manifest_url: String + nav_group: String + nav_order: Int + profile_tab_label: String + remote_entry_url: String + remote_scope: String + required_role: e_player_roles_enum + slug: String + title: String + updated_at: timestamptz +} + +"""aggregate max on columns""" +type custom_pages_max_fields { + created_at: timestamptz + exposed_module: String + icon: String + id: uuid + manifest_url: String + nav_group: String + nav_order: Int + profile_tab_label: String + remote_entry_url: String + remote_scope: String + slug: String + title: String + updated_at: timestamptz +} + +"""aggregate min on columns""" +type custom_pages_min_fields { + created_at: timestamptz + exposed_module: String + icon: String + id: uuid + manifest_url: String + nav_group: String + nav_order: Int + profile_tab_label: String + remote_entry_url: String + remote_scope: String + slug: String + title: String + updated_at: timestamptz +} + +""" +response of any mutation on the table "custom_pages" +""" +type custom_pages_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [custom_pages!]! +} + +""" +on_conflict condition type for table "custom_pages" +""" +input custom_pages_on_conflict { + constraint: custom_pages_constraint! + update_columns: [custom_pages_update_column!]! = [] + where: custom_pages_bool_exp +} + +"""Ordering options when selecting data from "custom_pages".""" +input custom_pages_order_by { + created_at: order_by + deployments: order_by + enabled: order_by + exposed_module: order_by + icon: order_by + id: order_by + is_default: order_by + manifest_url: order_by + nav_group: order_by + nav_order: order_by + profile_tab_label: order_by + remote_entry_url: order_by + remote_scope: order_by + required_role: order_by + slug: order_by + title: order_by + updated_at: order_by +} + +"""primary key columns input for table: custom_pages""" +input custom_pages_pk_columns_input { + id: uuid! +} + +"""prepend existing jsonb value of filtered columns with new jsonb value""" +input custom_pages_prepend_input { + deployments: jsonb +} + +""" +select columns of table "custom_pages" +""" +enum custom_pages_select_column { + """column name""" + created_at + + """column name""" + deployments + + """column name""" + enabled + + """column name""" + exposed_module + + """column name""" + icon + + """column name""" + id + + """column name""" + is_default + + """column name""" + manifest_url + + """column name""" + nav_group + + """column name""" + nav_order + + """column name""" + profile_tab_label + + """column name""" + remote_entry_url + + """column name""" + remote_scope + + """column name""" + required_role + + """column name""" + slug + + """column name""" + title + + """column name""" + updated_at +} + +""" +input type for updating data in table "custom_pages" +""" +input custom_pages_set_input { + created_at: timestamptz + deployments: jsonb + enabled: Boolean + exposed_module: String + icon: String + id: uuid + is_default: Boolean + manifest_url: String + nav_group: String + nav_order: Int + profile_tab_label: String + remote_entry_url: String + remote_scope: String + required_role: e_player_roles_enum + slug: String + title: String + updated_at: timestamptz +} + +"""aggregate stddev on columns""" +type custom_pages_stddev_fields { + nav_order: Float +} + +"""aggregate stddev_pop on columns""" +type custom_pages_stddev_pop_fields { + nav_order: Float +} + +"""aggregate stddev_samp on columns""" +type custom_pages_stddev_samp_fields { + nav_order: Float +} + +""" +Streaming cursor of the table "custom_pages" +""" +input custom_pages_stream_cursor_input { + """Stream column input with initial value""" + initial_value: custom_pages_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input custom_pages_stream_cursor_value_input { + created_at: timestamptz + deployments: jsonb + enabled: Boolean + exposed_module: String + icon: String + id: uuid + is_default: Boolean + manifest_url: String + nav_group: String + nav_order: Int + profile_tab_label: String + remote_entry_url: String + remote_scope: String + required_role: e_player_roles_enum + slug: String + title: String + updated_at: timestamptz +} + +"""aggregate sum on columns""" +type custom_pages_sum_fields { + nav_order: Int +} + +""" +update columns of table "custom_pages" +""" +enum custom_pages_update_column { + """column name""" + created_at + + """column name""" + deployments + + """column name""" + enabled + + """column name""" + exposed_module """column name""" icon @@ -2641,12 +3750,18 @@ enum custom_pages_update_column { """column name""" is_default + """column name""" + manifest_url + """column name""" nav_group """column name""" nav_order + """column name""" + profile_tab_label + """column name""" remote_entry_url @@ -2667,9 +3782,30 @@ enum custom_pages_update_column { } input custom_pages_updates { + """append existing jsonb value of filtered columns with new jsonb value""" + _append: custom_pages_append_input + + """ + delete the field or element with specified path (for JSON arrays, negative integers count from the end) + """ + _delete_at_path: custom_pages_delete_at_path_input + + """ + delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array + """ + _delete_elem: custom_pages_delete_elem_input + + """ + delete key/value pair or string element. key/value pairs are matched based on their key value + """ + _delete_key: custom_pages_delete_key_input + """increments the numeric columns with given value of the filtered values""" _inc: custom_pages_inc_input + """prepend existing jsonb value of filtered columns with new jsonb value""" + _prepend: custom_pages_prepend_input + """sets the columns of the filtered rows to the given values""" _set: custom_pages_set_input @@ -4870,6 +6006,357 @@ input draft_games_variance_order_by { min_elo: order_by } +""" +columns and relationships of "e_award_sources" +""" +type e_award_sources { + description: String! + value: String! +} + +""" +aggregated selection of "e_award_sources" +""" +type e_award_sources_aggregate { + aggregate: e_award_sources_aggregate_fields + nodes: [e_award_sources!]! +} + +""" +aggregate fields of "e_award_sources" +""" +type e_award_sources_aggregate_fields { + count(columns: [e_award_sources_select_column!], distinct: Boolean): Int! + max: e_award_sources_max_fields + min: e_award_sources_min_fields +} + +""" +Boolean expression to filter rows from the table "e_award_sources". All fields are combined with a logical 'AND'. +""" +input e_award_sources_bool_exp { + _and: [e_award_sources_bool_exp!] + _not: e_award_sources_bool_exp + _or: [e_award_sources_bool_exp!] + description: String_comparison_exp + value: String_comparison_exp +} + +""" +unique or primary key constraints on table "e_award_sources" +""" +enum e_award_sources_constraint { + """ + unique or primary key constraint on columns "value" + """ + e_award_sources_pkey +} + +enum e_award_sources_enum { + """Granted by hand""" + manual + + """Calculated from a tournament placement""" + tournament +} + +""" +Boolean expression to compare columns of type "e_award_sources_enum". All fields are combined with logical 'AND'. +""" +input e_award_sources_enum_comparison_exp { + _eq: e_award_sources_enum + _in: [e_award_sources_enum!] + _is_null: Boolean + _neq: e_award_sources_enum + _nin: [e_award_sources_enum!] +} + +""" +input type for inserting data into table "e_award_sources" +""" +input e_award_sources_insert_input { + description: String + value: String +} + +"""aggregate max on columns""" +type e_award_sources_max_fields { + description: String + value: String +} + +"""aggregate min on columns""" +type e_award_sources_min_fields { + description: String + value: String +} + +""" +response of any mutation on the table "e_award_sources" +""" +type e_award_sources_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [e_award_sources!]! +} + +""" +on_conflict condition type for table "e_award_sources" +""" +input e_award_sources_on_conflict { + constraint: e_award_sources_constraint! + update_columns: [e_award_sources_update_column!]! = [] + where: e_award_sources_bool_exp +} + +"""Ordering options when selecting data from "e_award_sources".""" +input e_award_sources_order_by { + description: order_by + value: order_by +} + +"""primary key columns input for table: e_award_sources""" +input e_award_sources_pk_columns_input { + value: String! +} + +""" +select columns of table "e_award_sources" +""" +enum e_award_sources_select_column { + """column name""" + description + + """column name""" + value +} + +""" +input type for updating data in table "e_award_sources" +""" +input e_award_sources_set_input { + description: String + value: String +} + +""" +Streaming cursor of the table "e_award_sources" +""" +input e_award_sources_stream_cursor_input { + """Stream column input with initial value""" + initial_value: e_award_sources_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input e_award_sources_stream_cursor_value_input { + description: String + value: String +} + +""" +update columns of table "e_award_sources" +""" +enum e_award_sources_update_column { + """column name""" + description + + """column name""" + value +} + +input e_award_sources_updates { + """sets the columns of the filtered rows to the given values""" + _set: e_award_sources_set_input + + """filter the rows which have to be updated""" + where: e_award_sources_bool_exp! +} + +""" +columns and relationships of "e_award_tiers" +""" +type e_award_tiers { + description: String! + value: String! +} + +""" +aggregated selection of "e_award_tiers" +""" +type e_award_tiers_aggregate { + aggregate: e_award_tiers_aggregate_fields + nodes: [e_award_tiers!]! +} + +""" +aggregate fields of "e_award_tiers" +""" +type e_award_tiers_aggregate_fields { + count(columns: [e_award_tiers_select_column!], distinct: Boolean): Int! + max: e_award_tiers_max_fields + min: e_award_tiers_min_fields +} + +""" +Boolean expression to filter rows from the table "e_award_tiers". All fields are combined with a logical 'AND'. +""" +input e_award_tiers_bool_exp { + _and: [e_award_tiers_bool_exp!] + _not: e_award_tiers_bool_exp + _or: [e_award_tiers_bool_exp!] + description: String_comparison_exp + value: String_comparison_exp +} + +""" +unique or primary key constraints on table "e_award_tiers" +""" +enum e_award_tiers_constraint { + """ + unique or primary key constraint on columns "value" + """ + e_award_tiers_pkey +} + +enum e_award_tiers_enum { + """Third place""" + bronze + + """First place""" + gold + + """Most valuable player""" + mvp + + """Second place""" + silver + + """Standalone award""" + special +} + +""" +Boolean expression to compare columns of type "e_award_tiers_enum". All fields are combined with logical 'AND'. +""" +input e_award_tiers_enum_comparison_exp { + _eq: e_award_tiers_enum + _in: [e_award_tiers_enum!] + _is_null: Boolean + _neq: e_award_tiers_enum + _nin: [e_award_tiers_enum!] +} + +""" +input type for inserting data into table "e_award_tiers" +""" +input e_award_tiers_insert_input { + description: String + value: String +} + +"""aggregate max on columns""" +type e_award_tiers_max_fields { + description: String + value: String +} + +"""aggregate min on columns""" +type e_award_tiers_min_fields { + description: String + value: String +} + +""" +response of any mutation on the table "e_award_tiers" +""" +type e_award_tiers_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [e_award_tiers!]! +} + +""" +on_conflict condition type for table "e_award_tiers" +""" +input e_award_tiers_on_conflict { + constraint: e_award_tiers_constraint! + update_columns: [e_award_tiers_update_column!]! = [] + where: e_award_tiers_bool_exp +} + +"""Ordering options when selecting data from "e_award_tiers".""" +input e_award_tiers_order_by { + description: order_by + value: order_by +} + +"""primary key columns input for table: e_award_tiers""" +input e_award_tiers_pk_columns_input { + value: String! +} + +""" +select columns of table "e_award_tiers" +""" +enum e_award_tiers_select_column { + """column name""" + description + + """column name""" + value +} + +""" +input type for updating data in table "e_award_tiers" +""" +input e_award_tiers_set_input { + description: String + value: String +} + +""" +Streaming cursor of the table "e_award_tiers" +""" +input e_award_tiers_stream_cursor_input { + """Stream column input with initial value""" + initial_value: e_award_tiers_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input e_award_tiers_stream_cursor_value_input { + description: String + value: String +} + +""" +update columns of table "e_award_tiers" +""" +enum e_award_tiers_update_column { + """column name""" + description + + """column name""" + value +} + +input e_award_tiers_updates { + """sets the columns of the filtered rows to the given values""" + _set: e_award_tiers_set_input + + """filter the rows which have to be updated""" + where: e_award_tiers_bool_exp! +} + """ columns and relationships of "e_check_in_settings" """ @@ -34496,6 +35983,9 @@ type mutation_root { """Create directory on game server""" createServerDirectory(dir_path: String!, node_id: String!, server_id: String): SuccessOutput + """Delete a catalog award""" + deleteAward(id: uuid!): SuccessOutput + """Delete a saved clip and its underlying S3 object""" deleteClip(clip_id: uuid!): SuccessOutput deleteMatch(match_id: String!): SuccessOutput @@ -34555,6 +36045,32 @@ type mutation_root { """ delete_api_keys_by_pk(id: uuid!): api_keys + """ + delete data from the table: "award_recipients" + """ + delete_award_recipients( + """filter the rows which have to be deleted""" + where: award_recipients_bool_exp! + ): award_recipients_mutation_response + + """ + delete single row from the table: "award_recipients" + """ + delete_award_recipients_by_pk(id: uuid!): award_recipients + + """ + delete data from the table: "awards" + """ + delete_awards( + """filter the rows which have to be deleted""" + where: awards_bool_exp! + ): awards_mutation_response + + """ + delete single row from the table: "awards" + """ + delete_awards_by_pk(id: uuid!): awards + """ delete data from the table: "clip_render_jobs" """ @@ -34633,6 +36149,32 @@ type mutation_root { """ delete_draft_games_by_pk(id: uuid!): draft_games + """ + delete data from the table: "e_award_sources" + """ + delete_e_award_sources( + """filter the rows which have to be deleted""" + where: e_award_sources_bool_exp! + ): e_award_sources_mutation_response + + """ + delete single row from the table: "e_award_sources" + """ + delete_e_award_sources_by_pk(value: String!): e_award_sources + + """ + delete data from the table: "e_award_tiers" + """ + delete_e_award_tiers( + """filter the rows which have to be deleted""" + where: e_award_tiers_bool_exp! + ): e_award_tiers_mutation_response + + """ + delete single row from the table: "e_award_tiers" + """ + delete_e_award_tiers_by_pk(value: String!): e_award_tiers + """ delete data from the table: "e_check_in_settings" """ @@ -36256,6 +37798,19 @@ type mutation_root { """ delete_teams_by_pk(id: uuid!): teams + """ + delete data from the table: "tournament_awards" + """ + delete_tournament_awards( + """filter the rows which have to be deleted""" + where: tournament_awards_bool_exp! + ): tournament_awards_mutation_response + + """ + delete single row from the table: "tournament_awards" + """ + delete_tournament_awards_by_pk(id: uuid!): tournament_awards + """ delete data from the table: "tournament_brackets" """ @@ -36386,32 +37941,6 @@ type mutation_root { """ delete_tournament_teams_by_pk(id: uuid!): tournament_teams - """ - delete data from the table: "tournament_trophies" - """ - delete_tournament_trophies( - """filter the rows which have to be deleted""" - where: tournament_trophies_bool_exp! - ): tournament_trophies_mutation_response - - """ - delete single row from the table: "tournament_trophies" - """ - delete_tournament_trophies_by_pk(id: uuid!): tournament_trophies - - """ - delete data from the table: "tournament_trophy_configs" - """ - delete_tournament_trophy_configs( - """filter the rows which have to be deleted""" - where: tournament_trophy_configs_bool_exp! - ): tournament_trophy_configs_mutation_response - - """ - delete single row from the table: "tournament_trophy_configs" - """ - delete_tournament_trophy_configs_by_pk(id: uuid!): tournament_trophy_configs - """ delete data from the table: "tournaments" """ @@ -36478,6 +38007,9 @@ type mutation_root { getLiveStreamSpecState(match_id: uuid!): LiveStreamSpecState getTestUploadLink: GetTestUploadResponse! + """Grant an award to a player or team""" + grantAward(award_id: uuid!, note: String, player_steam_id: String, team_id: uuid, tournament_id: uuid): AwardRecipient + """ insert data into the table: "_map_pool" """ @@ -36544,6 +38076,50 @@ type mutation_root { on_conflict: api_keys_on_conflict ): api_keys + """ + insert data into the table: "award_recipients" + """ + insert_award_recipients( + """the rows to be inserted""" + objects: [award_recipients_insert_input!]! + + """upsert condition""" + on_conflict: award_recipients_on_conflict + ): award_recipients_mutation_response + + """ + insert a single row into the table: "award_recipients" + """ + insert_award_recipients_one( + """the row to be inserted""" + object: award_recipients_insert_input! + + """upsert condition""" + on_conflict: award_recipients_on_conflict + ): award_recipients + + """ + insert data into the table: "awards" + """ + insert_awards( + """the rows to be inserted""" + objects: [awards_insert_input!]! + + """upsert condition""" + on_conflict: awards_on_conflict + ): awards_mutation_response + + """ + insert a single row into the table: "awards" + """ + insert_awards_one( + """the row to be inserted""" + object: awards_insert_input! + + """upsert condition""" + on_conflict: awards_on_conflict + ): awards + """ insert data into the table: "clip_render_jobs" """ @@ -36676,6 +38252,50 @@ type mutation_root { on_conflict: draft_games_on_conflict ): draft_games + """ + insert data into the table: "e_award_sources" + """ + insert_e_award_sources( + """the rows to be inserted""" + objects: [e_award_sources_insert_input!]! + + """upsert condition""" + on_conflict: e_award_sources_on_conflict + ): e_award_sources_mutation_response + + """ + insert a single row into the table: "e_award_sources" + """ + insert_e_award_sources_one( + """the row to be inserted""" + object: e_award_sources_insert_input! + + """upsert condition""" + on_conflict: e_award_sources_on_conflict + ): e_award_sources + + """ + insert data into the table: "e_award_tiers" + """ + insert_e_award_tiers( + """the rows to be inserted""" + objects: [e_award_tiers_insert_input!]! + + """upsert condition""" + on_conflict: e_award_tiers_on_conflict + ): e_award_tiers_mutation_response + + """ + insert a single row into the table: "e_award_tiers" + """ + insert_e_award_tiers_one( + """the row to be inserted""" + object: e_award_tiers_insert_input! + + """upsert condition""" + on_conflict: e_award_tiers_on_conflict + ): e_award_tiers + """ insert data into the table: "e_check_in_settings" """ @@ -39430,6 +41050,28 @@ type mutation_root { on_conflict: teams_on_conflict ): teams + """ + insert data into the table: "tournament_awards" + """ + insert_tournament_awards( + """the rows to be inserted""" + objects: [tournament_awards_insert_input!]! + + """upsert condition""" + on_conflict: tournament_awards_on_conflict + ): tournament_awards_mutation_response + + """ + insert a single row into the table: "tournament_awards" + """ + insert_tournament_awards_one( + """the row to be inserted""" + object: tournament_awards_insert_input! + + """upsert condition""" + on_conflict: tournament_awards_on_conflict + ): tournament_awards + """ insert data into the table: "tournament_brackets" """ @@ -39650,50 +41292,6 @@ type mutation_root { on_conflict: tournament_teams_on_conflict ): tournament_teams - """ - insert data into the table: "tournament_trophies" - """ - insert_tournament_trophies( - """the rows to be inserted""" - objects: [tournament_trophies_insert_input!]! - - """upsert condition""" - on_conflict: tournament_trophies_on_conflict - ): tournament_trophies_mutation_response - - """ - insert a single row into the table: "tournament_trophies" - """ - insert_tournament_trophies_one( - """the row to be inserted""" - object: tournament_trophies_insert_input! - - """upsert condition""" - on_conflict: tournament_trophies_on_conflict - ): tournament_trophies - - """ - insert data into the table: "tournament_trophy_configs" - """ - insert_tournament_trophy_configs( - """the rows to be inserted""" - objects: [tournament_trophy_configs_insert_input!]! - - """upsert condition""" - on_conflict: tournament_trophy_configs_on_conflict - ): tournament_trophy_configs_mutation_response - - """ - insert a single row into the table: "tournament_trophy_configs" - """ - insert_tournament_trophy_configs_one( - """the row to be inserted""" - object: tournament_trophy_configs_insert_input! - - """upsert condition""" - on_conflict: tournament_trophy_configs_on_conflict - ): tournament_trophy_configs - """ insert data into the table: "tournaments" """ @@ -39865,16 +41463,16 @@ type mutation_root { rebootMatchServer(match_id: uuid!): SuccessOutput """ - execute VOLATILE function "recalculate_tournament_trophies" which returns "tournament_trophies" + execute VOLATILE function "recalculate_tournament_awards" which returns "award_recipients" """ - recalculate_tournament_trophies( + recalculate_tournament_awards( """ - input parameters for function "recalculate_tournament_trophies" + input parameters for function "recalculate_tournament_awards" """ - args: recalculate_tournament_trophies_args! + args: recalculate_tournament_awards_args! """distinct select on columns""" - distinct_on: [tournament_trophies_select_column!] + distinct_on: [award_recipients_select_column!] """limit the number of rows returned""" limit: Int @@ -39883,11 +41481,11 @@ type mutation_root { offset: Int """sort the rows by one or more columns""" - order_by: [tournament_trophies_order_by!] + order_by: [award_recipients_order_by!] """filter the rows returned""" - where: tournament_trophies_bool_exp - ): [tournament_trophies!]! + where: award_recipients_bool_exp + ): [award_recipients!]! """ Wipe and rebuild all player ELO from finished matches in chronological order (admin only). Runs in the background; track via recomputePlayerEloStatus. @@ -40030,8 +41628,14 @@ type mutation_root { """ retryClipRenderBatch(match_map_id: uuid!, only_failed: Boolean): SuccessOutput retryPendingMatchImport(valve_match_id: String!): PendingMatchImportActionOutput + + """Revoke a hand-granted award""" + revokeAward(id: uuid!): SuccessOutput sanctionServerPlayer(duration: Float, reason: String, serverId: String, steam_id: String!, type: String!): SanctionResult! + """Create or update a catalog award""" + saveAward(allow_multiple: Boolean, description: String, id: uuid, name: String!, silhouette: Int, tier: String!): Award + """ Create or update a first-party news post. Caller role is verified against public.post_news_role. """ @@ -40063,6 +41667,9 @@ type mutation_root { Publish or unpublish a news post. Caller role is verified against public.post_news_role. """ setNewsPostStatus(id: uuid!, status: String!): NewsPost + + """Map a tournament placement to an award""" + setTournamentAward(award_id: uuid, custom_name: String, placement: Int!, silhouette: Int, tournament_id: uuid!): TournamentAward setupGameServer: SetupGameServeOutput skipShaders(match_id: uuid!): SuccessOutput specAutodirector(enabled: Boolean!, match_id: uuid!): SuccessOutput @@ -40200,6 +41807,74 @@ type mutation_root { updates: [api_keys_updates!]! ): [api_keys_mutation_response] + """ + update data of the table: "award_recipients" + """ + update_award_recipients( + """increments the numeric columns with given value of the filtered values""" + _inc: award_recipients_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: award_recipients_set_input + + """filter the rows which have to be updated""" + where: award_recipients_bool_exp! + ): award_recipients_mutation_response + + """ + update single row of the table: "award_recipients" + """ + update_award_recipients_by_pk( + """increments the numeric columns with given value of the filtered values""" + _inc: award_recipients_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: award_recipients_set_input + pk_columns: award_recipients_pk_columns_input! + ): award_recipients + + """ + update multiples rows of table: "award_recipients" + """ + update_award_recipients_many( + """updates to execute, in order""" + updates: [award_recipients_updates!]! + ): [award_recipients_mutation_response] + + """ + update data of the table: "awards" + """ + update_awards( + """increments the numeric columns with given value of the filtered values""" + _inc: awards_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: awards_set_input + + """filter the rows which have to be updated""" + where: awards_bool_exp! + ): awards_mutation_response + + """ + update single row of the table: "awards" + """ + update_awards_by_pk( + """increments the numeric columns with given value of the filtered values""" + _inc: awards_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: awards_set_input + pk_columns: awards_pk_columns_input! + ): awards + + """ + update multiples rows of table: "awards" + """ + update_awards_many( + """updates to execute, in order""" + updates: [awards_updates!]! + ): [awards_mutation_response] + """ update data of the table: "clip_render_jobs" """ @@ -40280,9 +41955,30 @@ type mutation_root { update data of the table: "custom_pages" """ update_custom_pages( + """append existing jsonb value of filtered columns with new jsonb value""" + _append: custom_pages_append_input + + """ + delete the field or element with specified path (for JSON arrays, negative integers count from the end) + """ + _delete_at_path: custom_pages_delete_at_path_input + + """ + delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array + """ + _delete_elem: custom_pages_delete_elem_input + + """ + delete key/value pair or string element. key/value pairs are matched based on their key value + """ + _delete_key: custom_pages_delete_key_input + """increments the numeric columns with given value of the filtered values""" _inc: custom_pages_inc_input + """prepend existing jsonb value of filtered columns with new jsonb value""" + _prepend: custom_pages_prepend_input + """sets the columns of the filtered rows to the given values""" _set: custom_pages_set_input @@ -40294,9 +41990,30 @@ type mutation_root { update single row of the table: "custom_pages" """ update_custom_pages_by_pk( + """append existing jsonb value of filtered columns with new jsonb value""" + _append: custom_pages_append_input + + """ + delete the field or element with specified path (for JSON arrays, negative integers count from the end) + """ + _delete_at_path: custom_pages_delete_at_path_input + + """ + delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array + """ + _delete_elem: custom_pages_delete_elem_input + + """ + delete key/value pair or string element. key/value pairs are matched based on their key value + """ + _delete_key: custom_pages_delete_key_input + """increments the numeric columns with given value of the filtered values""" _inc: custom_pages_inc_input + """prepend existing jsonb value of filtered columns with new jsonb value""" + _prepend: custom_pages_prepend_input + """sets the columns of the filtered rows to the given values""" _set: custom_pages_set_input pk_columns: custom_pages_pk_columns_input! @@ -40446,6 +42163,62 @@ type mutation_root { updates: [draft_games_updates!]! ): [draft_games_mutation_response] + """ + update data of the table: "e_award_sources" + """ + update_e_award_sources( + """sets the columns of the filtered rows to the given values""" + _set: e_award_sources_set_input + + """filter the rows which have to be updated""" + where: e_award_sources_bool_exp! + ): e_award_sources_mutation_response + + """ + update single row of the table: "e_award_sources" + """ + update_e_award_sources_by_pk( + """sets the columns of the filtered rows to the given values""" + _set: e_award_sources_set_input + pk_columns: e_award_sources_pk_columns_input! + ): e_award_sources + + """ + update multiples rows of table: "e_award_sources" + """ + update_e_award_sources_many( + """updates to execute, in order""" + updates: [e_award_sources_updates!]! + ): [e_award_sources_mutation_response] + + """ + update data of the table: "e_award_tiers" + """ + update_e_award_tiers( + """sets the columns of the filtered rows to the given values""" + _set: e_award_tiers_set_input + + """filter the rows which have to be updated""" + where: e_award_tiers_bool_exp! + ): e_award_tiers_mutation_response + + """ + update single row of the table: "e_award_tiers" + """ + update_e_award_tiers_by_pk( + """sets the columns of the filtered rows to the given values""" + _set: e_award_tiers_set_input + pk_columns: e_award_tiers_pk_columns_input! + ): e_award_tiers + + """ + update multiples rows of table: "e_award_tiers" + """ + update_e_award_tiers_many( + """updates to execute, in order""" + updates: [e_award_tiers_updates!]! + ): [e_award_tiers_mutation_response] + """ update data of the table: "e_check_in_settings" """ @@ -44745,6 +46518,40 @@ type mutation_root { updates: [teams_updates!]! ): [teams_mutation_response] + """ + update data of the table: "tournament_awards" + """ + update_tournament_awards( + """increments the numeric columns with given value of the filtered values""" + _inc: tournament_awards_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: tournament_awards_set_input + + """filter the rows which have to be updated""" + where: tournament_awards_bool_exp! + ): tournament_awards_mutation_response + + """ + update single row of the table: "tournament_awards" + """ + update_tournament_awards_by_pk( + """increments the numeric columns with given value of the filtered values""" + _inc: tournament_awards_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: tournament_awards_set_input + pk_columns: tournament_awards_pk_columns_input! + ): tournament_awards + + """ + update multiples rows of table: "tournament_awards" + """ + update_tournament_awards_many( + """updates to execute, in order""" + updates: [tournament_awards_updates!]! + ): [tournament_awards_mutation_response] + """ update data of the table: "tournament_brackets" """ @@ -45115,74 +46922,6 @@ type mutation_root { updates: [tournament_teams_updates!]! ): [tournament_teams_mutation_response] - """ - update data of the table: "tournament_trophies" - """ - update_tournament_trophies( - """increments the numeric columns with given value of the filtered values""" - _inc: tournament_trophies_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: tournament_trophies_set_input - - """filter the rows which have to be updated""" - where: tournament_trophies_bool_exp! - ): tournament_trophies_mutation_response - - """ - update single row of the table: "tournament_trophies" - """ - update_tournament_trophies_by_pk( - """increments the numeric columns with given value of the filtered values""" - _inc: tournament_trophies_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: tournament_trophies_set_input - pk_columns: tournament_trophies_pk_columns_input! - ): tournament_trophies - - """ - update multiples rows of table: "tournament_trophies" - """ - update_tournament_trophies_many( - """updates to execute, in order""" - updates: [tournament_trophies_updates!]! - ): [tournament_trophies_mutation_response] - - """ - update data of the table: "tournament_trophy_configs" - """ - update_tournament_trophy_configs( - """increments the numeric columns with given value of the filtered values""" - _inc: tournament_trophy_configs_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: tournament_trophy_configs_set_input - - """filter the rows which have to be updated""" - where: tournament_trophy_configs_bool_exp! - ): tournament_trophy_configs_mutation_response - - """ - update single row of the table: "tournament_trophy_configs" - """ - update_tournament_trophy_configs_by_pk( - """increments the numeric columns with given value of the filtered values""" - _inc: tournament_trophy_configs_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: tournament_trophy_configs_set_input - pk_columns: tournament_trophy_configs_pk_columns_input! - ): tournament_trophy_configs - - """ - update multiples rows of table: "tournament_trophy_configs" - """ - update_tournament_trophy_configs_many( - """updates to execute, in order""" - updates: [tournament_trophy_configs_updates!]! - ): [tournament_trophy_configs_mutation_response] - """ update data of the table: "tournaments" """ @@ -63955,6 +65694,42 @@ type players { ): player_assists_aggregate! avatar_url: String + """An array relationship""" + awards( + """distinct select on columns""" + distinct_on: [award_recipients_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: [award_recipients_order_by!] + + """filter the rows returned""" + where: award_recipients_bool_exp + ): [award_recipients!]! + + """An aggregate relationship""" + awards_aggregate( + """distinct select on columns""" + distinct_on: [award_recipients_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: [award_recipients_order_by!] + + """filter the rows returned""" + where: award_recipients_bool_exp + ): award_recipients_aggregate! + """An array relationship""" coach_lineups( """distinct select on columns""" @@ -65220,42 +66995,6 @@ type players { where: tournament_team_roster_bool_exp ): tournament_team_roster_aggregate! - """An array relationship""" - tournament_trophies( - """distinct select on columns""" - distinct_on: [tournament_trophies_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: [tournament_trophies_order_by!] - - """filter the rows returned""" - where: tournament_trophies_bool_exp - ): [tournament_trophies!]! - - """An aggregate relationship""" - tournament_trophies_aggregate( - """distinct select on columns""" - distinct_on: [tournament_trophies_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: [tournament_trophies_order_by!] - - """filter the rows returned""" - where: tournament_trophies_bool_exp - ): tournament_trophies_aggregate! - """An array relationship""" tournaments( """distinct select on columns""" @@ -65484,6 +67223,8 @@ input players_bool_exp { assited_by_players: player_assists_bool_exp assited_by_players_aggregate: player_assists_aggregate_bool_exp avatar_url: String_comparison_exp + awards: award_recipients_bool_exp + awards_aggregate: award_recipients_aggregate_bool_exp coach_lineups: match_lineups_bool_exp coach_lineups_aggregate: match_lineups_aggregate_bool_exp country: String_comparison_exp @@ -65589,8 +67330,6 @@ input players_bool_exp { tournament_organizers_aggregate: tournament_organizers_aggregate_bool_exp tournament_rosters: tournament_team_roster_bool_exp tournament_rosters_aggregate: tournament_team_roster_aggregate_bool_exp - tournament_trophies: tournament_trophies_bool_exp - tournament_trophies_aggregate: tournament_trophies_aggregate_bool_exp tournaments: tournaments_bool_exp tournaments_aggregate: tournaments_aggregate_bool_exp utility_thrown: player_utility_bool_exp @@ -65647,6 +67386,7 @@ input players_insert_input { assists: player_assists_arr_rel_insert_input assited_by_players: player_assists_arr_rel_insert_input avatar_url: String + awards: award_recipients_arr_rel_insert_input coach_lineups: match_lineups_arr_rel_insert_input country: String created_at: timestamptz @@ -65704,7 +67444,6 @@ input players_insert_input { team_members: team_roster_arr_rel_insert_input tournament_organizers: tournament_organizers_arr_rel_insert_input tournament_rosters: tournament_team_roster_arr_rel_insert_input - tournament_trophies: tournament_trophies_arr_rel_insert_input tournaments: tournaments_arr_rel_insert_input utility_thrown: player_utility_arr_rel_insert_input vac_ban_count: Int @@ -65915,6 +67654,7 @@ input players_order_by { assists_aggregate: player_assists_aggregate_order_by assited_by_players_aggregate: player_assists_aggregate_order_by avatar_url: order_by + awards_aggregate: award_recipients_aggregate_order_by coach_lineups_aggregate: match_lineups_aggregate_order_by country: order_by created_at: order_by @@ -65989,7 +67729,6 @@ input players_order_by { total_matches: order_by tournament_organizers_aggregate: tournament_organizers_aggregate_order_by tournament_rosters_aggregate: tournament_team_roster_aggregate_order_by - tournament_trophies_aggregate: tournament_trophies_aggregate_order_by tournaments_aggregate: tournaments_aggregate_order_by utility_thrown_aggregate: player_utility_aggregate_order_by vac_ban_count: order_by @@ -67029,6 +68768,94 @@ type query_root { """fetch data from the table: "api_keys" using primary key columns""" api_keys_by_pk(id: uuid!): api_keys + """ + fetch data from the table: "award_recipients" + """ + award_recipients( + """distinct select on columns""" + distinct_on: [award_recipients_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: [award_recipients_order_by!] + + """filter the rows returned""" + where: award_recipients_bool_exp + ): [award_recipients!]! + + """ + fetch aggregated fields from the table: "award_recipients" + """ + award_recipients_aggregate( + """distinct select on columns""" + distinct_on: [award_recipients_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: [award_recipients_order_by!] + + """filter the rows returned""" + where: award_recipients_bool_exp + ): award_recipients_aggregate! + + """ + fetch data from the table: "award_recipients" using primary key columns + """ + award_recipients_by_pk(id: uuid!): award_recipients + + """ + fetch data from the table: "awards" + """ + awards( + """distinct select on columns""" + distinct_on: [awards_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: [awards_order_by!] + + """filter the rows returned""" + where: awards_bool_exp + ): [awards!]! + + """ + fetch aggregated fields from the table: "awards" + """ + awards_aggregate( + """distinct select on columns""" + distinct_on: [awards_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: [awards_order_by!] + + """filter the rows returned""" + where: awards_bool_exp + ): awards_aggregate! + + """fetch data from the table: "awards" using primary key columns""" + awards_by_pk(id: uuid!): awards + """An array relationship""" clip_render_jobs( """distinct select on columns""" @@ -67282,6 +69109,92 @@ type query_root { """fetch data from the table: "draft_games" using primary key columns""" draft_games_by_pk(id: uuid!): draft_games + """ + fetch data from the table: "e_award_sources" + """ + e_award_sources( + """distinct select on columns""" + distinct_on: [e_award_sources_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_award_sources_order_by!] + + """filter the rows returned""" + where: e_award_sources_bool_exp + ): [e_award_sources!]! + + """ + fetch aggregated fields from the table: "e_award_sources" + """ + e_award_sources_aggregate( + """distinct select on columns""" + distinct_on: [e_award_sources_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_award_sources_order_by!] + + """filter the rows returned""" + where: e_award_sources_bool_exp + ): e_award_sources_aggregate! + + """fetch data from the table: "e_award_sources" using primary key columns""" + e_award_sources_by_pk(value: String!): e_award_sources + + """ + fetch data from the table: "e_award_tiers" + """ + e_award_tiers( + """distinct select on columns""" + distinct_on: [e_award_tiers_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_award_tiers_order_by!] + + """filter the rows returned""" + where: e_award_tiers_bool_exp + ): [e_award_tiers!]! + + """ + fetch aggregated fields from the table: "e_award_tiers" + """ + e_award_tiers_aggregate( + """distinct select on columns""" + distinct_on: [e_award_tiers_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_award_tiers_order_by!] + + """filter the rows returned""" + where: e_award_tiers_bool_exp + ): e_award_tiers_aggregate! + + """fetch data from the table: "e_award_tiers" using primary key columns""" + e_award_tiers_by_pk(value: String!): e_award_tiers + """ fetch data from the table: "e_check_in_settings" """ @@ -73244,6 +75157,51 @@ type query_root { teams_by_pk(id: uuid!): teams telemetryStats: TelemetryStats! + """ + fetch data from the table: "tournament_awards" + """ + tournament_awards( + """distinct select on columns""" + distinct_on: [tournament_awards_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: [tournament_awards_order_by!] + + """filter the rows returned""" + where: tournament_awards_bool_exp + ): [tournament_awards!]! + + """ + fetch aggregated fields from the table: "tournament_awards" + """ + tournament_awards_aggregate( + """distinct select on columns""" + distinct_on: [tournament_awards_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: [tournament_awards_order_by!] + + """filter the rows returned""" + where: tournament_awards_bool_exp + ): tournament_awards_aggregate! + + """ + fetch data from the table: "tournament_awards" using primary key columns + """ + tournament_awards_by_pk(id: uuid!): tournament_awards + """An array relationship""" tournament_brackets( """distinct select on columns""" @@ -73674,92 +75632,6 @@ type query_root { """ tournament_teams_by_pk(id: uuid!): tournament_teams - """An array relationship""" - tournament_trophies( - """distinct select on columns""" - distinct_on: [tournament_trophies_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: [tournament_trophies_order_by!] - - """filter the rows returned""" - where: tournament_trophies_bool_exp - ): [tournament_trophies!]! - - """An aggregate relationship""" - tournament_trophies_aggregate( - """distinct select on columns""" - distinct_on: [tournament_trophies_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: [tournament_trophies_order_by!] - - """filter the rows returned""" - where: tournament_trophies_bool_exp - ): tournament_trophies_aggregate! - - """ - fetch data from the table: "tournament_trophies" using primary key columns - """ - tournament_trophies_by_pk(id: uuid!): tournament_trophies - - """ - fetch data from the table: "tournament_trophy_configs" - """ - tournament_trophy_configs( - """distinct select on columns""" - distinct_on: [tournament_trophy_configs_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: [tournament_trophy_configs_order_by!] - - """filter the rows returned""" - where: tournament_trophy_configs_bool_exp - ): [tournament_trophy_configs!]! - - """ - fetch aggregated fields from the table: "tournament_trophy_configs" - """ - tournament_trophy_configs_aggregate( - """distinct select on columns""" - distinct_on: [tournament_trophy_configs_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: [tournament_trophy_configs_order_by!] - - """filter the rows returned""" - where: tournament_trophy_configs_bool_exp - ): tournament_trophy_configs_aggregate! - - """ - fetch data from the table: "tournament_trophy_configs" using primary key columns - """ - tournament_trophy_configs_by_pk(id: uuid!): tournament_trophy_configs - """An array relationship""" tournaments( """distinct select on columns""" @@ -75085,7 +76957,7 @@ type query_root { ): v_tournament_player_stats_aggregate! } -input recalculate_tournament_trophies_args { +input recalculate_tournament_awards_args { _tournament_id: uuid } @@ -77691,6 +79563,122 @@ type subscription_root { where: api_keys_bool_exp ): [api_keys!]! + """ + fetch data from the table: "award_recipients" + """ + award_recipients( + """distinct select on columns""" + distinct_on: [award_recipients_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: [award_recipients_order_by!] + + """filter the rows returned""" + where: award_recipients_bool_exp + ): [award_recipients!]! + + """ + fetch aggregated fields from the table: "award_recipients" + """ + award_recipients_aggregate( + """distinct select on columns""" + distinct_on: [award_recipients_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: [award_recipients_order_by!] + + """filter the rows returned""" + where: award_recipients_bool_exp + ): award_recipients_aggregate! + + """ + fetch data from the table: "award_recipients" using primary key columns + """ + award_recipients_by_pk(id: uuid!): award_recipients + + """ + fetch data from the table in a streaming manner: "award_recipients" + """ + award_recipients_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [award_recipients_stream_cursor_input]! + + """filter the rows returned""" + where: award_recipients_bool_exp + ): [award_recipients!]! + + """ + fetch data from the table: "awards" + """ + awards( + """distinct select on columns""" + distinct_on: [awards_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: [awards_order_by!] + + """filter the rows returned""" + where: awards_bool_exp + ): [awards!]! + + """ + fetch aggregated fields from the table: "awards" + """ + awards_aggregate( + """distinct select on columns""" + distinct_on: [awards_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: [awards_order_by!] + + """filter the rows returned""" + where: awards_bool_exp + ): awards_aggregate! + + """fetch data from the table: "awards" using primary key columns""" + awards_by_pk(id: uuid!): awards + + """ + fetch data from the table in a streaming manner: "awards" + """ + awards_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [awards_stream_cursor_input]! + + """filter the rows returned""" + where: awards_bool_exp + ): [awards!]! + """An array relationship""" clip_render_jobs( """distinct select on columns""" @@ -78027,6 +80015,120 @@ type subscription_root { where: draft_games_bool_exp ): [draft_games!]! + """ + fetch data from the table: "e_award_sources" + """ + e_award_sources( + """distinct select on columns""" + distinct_on: [e_award_sources_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_award_sources_order_by!] + + """filter the rows returned""" + where: e_award_sources_bool_exp + ): [e_award_sources!]! + + """ + fetch aggregated fields from the table: "e_award_sources" + """ + e_award_sources_aggregate( + """distinct select on columns""" + distinct_on: [e_award_sources_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_award_sources_order_by!] + + """filter the rows returned""" + where: e_award_sources_bool_exp + ): e_award_sources_aggregate! + + """fetch data from the table: "e_award_sources" using primary key columns""" + e_award_sources_by_pk(value: String!): e_award_sources + + """ + fetch data from the table in a streaming manner: "e_award_sources" + """ + e_award_sources_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [e_award_sources_stream_cursor_input]! + + """filter the rows returned""" + where: e_award_sources_bool_exp + ): [e_award_sources!]! + + """ + fetch data from the table: "e_award_tiers" + """ + e_award_tiers( + """distinct select on columns""" + distinct_on: [e_award_tiers_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_award_tiers_order_by!] + + """filter the rows returned""" + where: e_award_tiers_bool_exp + ): [e_award_tiers!]! + + """ + fetch aggregated fields from the table: "e_award_tiers" + """ + e_award_tiers_aggregate( + """distinct select on columns""" + distinct_on: [e_award_tiers_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_award_tiers_order_by!] + + """filter the rows returned""" + where: e_award_tiers_bool_exp + ): e_award_tiers_aggregate! + + """fetch data from the table: "e_award_tiers" using primary key columns""" + e_award_tiers_by_pk(value: String!): e_award_tiers + + """ + fetch data from the table in a streaming manner: "e_award_tiers" + """ + e_award_tiers_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [e_award_tiers_stream_cursor_input]! + + """filter the rows returned""" + where: e_award_tiers_bool_exp + ): [e_award_tiers!]! + """ fetch data from the table: "e_check_in_settings" """ @@ -85748,6 +87850,65 @@ type subscription_root { where: teams_bool_exp ): [teams!]! + """ + fetch data from the table: "tournament_awards" + """ + tournament_awards( + """distinct select on columns""" + distinct_on: [tournament_awards_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: [tournament_awards_order_by!] + + """filter the rows returned""" + where: tournament_awards_bool_exp + ): [tournament_awards!]! + + """ + fetch aggregated fields from the table: "tournament_awards" + """ + tournament_awards_aggregate( + """distinct select on columns""" + distinct_on: [tournament_awards_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: [tournament_awards_order_by!] + + """filter the rows returned""" + where: tournament_awards_bool_exp + ): tournament_awards_aggregate! + + """ + fetch data from the table: "tournament_awards" using primary key columns + """ + tournament_awards_by_pk(id: uuid!): tournament_awards + + """ + fetch data from the table in a streaming manner: "tournament_awards" + """ + tournament_awards_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [tournament_awards_stream_cursor_input]! + + """filter the rows returned""" + where: tournament_awards_bool_exp + ): [tournament_awards!]! + """An array relationship""" tournament_brackets( """distinct select on columns""" @@ -86318,120 +88479,6 @@ type subscription_root { where: tournament_teams_bool_exp ): [tournament_teams!]! - """An array relationship""" - tournament_trophies( - """distinct select on columns""" - distinct_on: [tournament_trophies_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: [tournament_trophies_order_by!] - - """filter the rows returned""" - where: tournament_trophies_bool_exp - ): [tournament_trophies!]! - - """An aggregate relationship""" - tournament_trophies_aggregate( - """distinct select on columns""" - distinct_on: [tournament_trophies_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: [tournament_trophies_order_by!] - - """filter the rows returned""" - where: tournament_trophies_bool_exp - ): tournament_trophies_aggregate! - - """ - fetch data from the table: "tournament_trophies" using primary key columns - """ - tournament_trophies_by_pk(id: uuid!): tournament_trophies - - """ - fetch data from the table in a streaming manner: "tournament_trophies" - """ - tournament_trophies_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [tournament_trophies_stream_cursor_input]! - - """filter the rows returned""" - where: tournament_trophies_bool_exp - ): [tournament_trophies!]! - - """ - fetch data from the table: "tournament_trophy_configs" - """ - tournament_trophy_configs( - """distinct select on columns""" - distinct_on: [tournament_trophy_configs_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: [tournament_trophy_configs_order_by!] - - """filter the rows returned""" - where: tournament_trophy_configs_bool_exp - ): [tournament_trophy_configs!]! - - """ - fetch aggregated fields from the table: "tournament_trophy_configs" - """ - tournament_trophy_configs_aggregate( - """distinct select on columns""" - distinct_on: [tournament_trophy_configs_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: [tournament_trophy_configs_order_by!] - - """filter the rows returned""" - where: tournament_trophy_configs_bool_exp - ): tournament_trophy_configs_aggregate! - - """ - fetch data from the table: "tournament_trophy_configs" using primary key columns - """ - tournament_trophy_configs_by_pk(id: uuid!): tournament_trophy_configs - - """ - fetch data from the table in a streaming manner: "tournament_trophy_configs" - """ - tournament_trophy_configs_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [tournament_trophy_configs_stream_cursor_input]! - - """filter the rows returned""" - where: tournament_trophy_configs_bool_exp - ): [tournament_trophy_configs!]! - """An array relationship""" tournaments( """distinct select on columns""" @@ -91763,6 +93810,42 @@ columns and relationships of "teams" type teams { avatar_url: String + """An array relationship""" + awards( + """distinct select on columns""" + distinct_on: [award_recipients_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: [award_recipients_order_by!] + + """filter the rows returned""" + where: award_recipients_bool_exp + ): [award_recipients!]! + + """An aggregate relationship""" + awards_aggregate( + """distinct select on columns""" + distinct_on: [award_recipients_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: [award_recipients_order_by!] + + """filter the rows returned""" + where: award_recipients_bool_exp + ): award_recipients_aggregate! + """ A computed field, executes function "can_change_team_role" """ @@ -92111,6 +94194,8 @@ input teams_bool_exp { _not: teams_bool_exp _or: [teams_bool_exp!] avatar_url: String_comparison_exp + awards: award_recipients_bool_exp + awards_aggregate: award_recipients_aggregate_bool_exp can_change_role: Boolean_comparison_exp can_invite: Boolean_comparison_exp can_manage_scrims: Boolean_comparison_exp @@ -92168,6 +94253,7 @@ input type for inserting data into table "teams" """ input teams_insert_input { avatar_url: String + awards: award_recipients_arr_rel_insert_input captain: players_obj_rel_insert_input captain_steam_id: bigint id: uuid @@ -92273,6 +94359,7 @@ input teams_on_conflict { """Ordering options when selecting data from "teams".""" input teams_order_by { avatar_url: order_by + awards_aggregate: award_recipients_aggregate_order_by can_change_role: order_by can_invite: order_by can_manage_scrims: order_by @@ -92428,109 +94515,584 @@ type teams_sum_fields { } """ -order by sum() on columns of table "teams" +order by sum() on columns of table "teams" +""" +input teams_sum_order_by { + captain_steam_id: order_by + owner_steam_id: order_by +} + +""" +update columns of table "teams" +""" +enum teams_update_column { + """column name""" + avatar_url + + """column name""" + captain_steam_id + + """column name""" + id + + """column name""" + is_organization + + """column name""" + name + + """column name""" + owner_steam_id + + """column name""" + short_name +} + +input teams_updates { + """increments the numeric columns with given value of the filtered values""" + _inc: teams_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: teams_set_input + + """filter the rows which have to be updated""" + where: teams_bool_exp! +} + +"""aggregate var_pop on columns""" +type teams_var_pop_fields { + captain_steam_id: Float + owner_steam_id: Float +} + +""" +order by var_pop() on columns of table "teams" +""" +input teams_var_pop_order_by { + captain_steam_id: order_by + owner_steam_id: order_by +} + +"""aggregate var_samp on columns""" +type teams_var_samp_fields { + captain_steam_id: Float + owner_steam_id: Float +} + +""" +order by var_samp() on columns of table "teams" +""" +input teams_var_samp_order_by { + captain_steam_id: order_by + owner_steam_id: order_by +} + +"""aggregate variance on columns""" +type teams_variance_fields { + captain_steam_id: Float + owner_steam_id: Float +} + +""" +order by variance() on columns of table "teams" +""" +input teams_variance_order_by { + captain_steam_id: order_by + owner_steam_id: order_by +} + +scalar timestamp + +scalar timestamptz + +""" +Boolean expression to compare columns of type "timestamptz". All fields are combined with logical 'AND'. +""" +input timestamptz_comparison_exp { + _eq: timestamptz + _gt: timestamptz + _gte: timestamptz + _in: [timestamptz!] + _is_null: Boolean + _lt: timestamptz + _lte: timestamptz + _neq: timestamptz + _nin: [timestamptz!] +} + +""" +columns and relationships of "tournament_awards" +""" +type tournament_awards { + """An object relationship""" + award: awards + award_id: uuid + created_at: timestamptz! + custom_name: String + id: uuid! + image_url: String + placement: Int! + silhouette: Int + + """An object relationship""" + tournament: tournaments! + tournament_id: uuid! + updated_at: timestamptz! +} + +""" +aggregated selection of "tournament_awards" +""" +type tournament_awards_aggregate { + aggregate: tournament_awards_aggregate_fields + nodes: [tournament_awards!]! +} + +input tournament_awards_aggregate_bool_exp { + count: tournament_awards_aggregate_bool_exp_count +} + +input tournament_awards_aggregate_bool_exp_count { + arguments: [tournament_awards_select_column!] + distinct: Boolean + filter: tournament_awards_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "tournament_awards" +""" +type tournament_awards_aggregate_fields { + avg: tournament_awards_avg_fields + count(columns: [tournament_awards_select_column!], distinct: Boolean): Int! + max: tournament_awards_max_fields + min: tournament_awards_min_fields + stddev: tournament_awards_stddev_fields + stddev_pop: tournament_awards_stddev_pop_fields + stddev_samp: tournament_awards_stddev_samp_fields + sum: tournament_awards_sum_fields + var_pop: tournament_awards_var_pop_fields + var_samp: tournament_awards_var_samp_fields + variance: tournament_awards_variance_fields +} + +""" +order by aggregate values of table "tournament_awards" +""" +input tournament_awards_aggregate_order_by { + avg: tournament_awards_avg_order_by + count: order_by + max: tournament_awards_max_order_by + min: tournament_awards_min_order_by + stddev: tournament_awards_stddev_order_by + stddev_pop: tournament_awards_stddev_pop_order_by + stddev_samp: tournament_awards_stddev_samp_order_by + sum: tournament_awards_sum_order_by + var_pop: tournament_awards_var_pop_order_by + var_samp: tournament_awards_var_samp_order_by + variance: tournament_awards_variance_order_by +} + +""" +input type for inserting array relation for remote table "tournament_awards" +""" +input tournament_awards_arr_rel_insert_input { + data: [tournament_awards_insert_input!]! + + """upsert condition""" + on_conflict: tournament_awards_on_conflict +} + +"""aggregate avg on columns""" +type tournament_awards_avg_fields { + placement: Float + silhouette: Float +} + +""" +order by avg() on columns of table "tournament_awards" +""" +input tournament_awards_avg_order_by { + placement: order_by + silhouette: order_by +} + +""" +Boolean expression to filter rows from the table "tournament_awards". All fields are combined with a logical 'AND'. +""" +input tournament_awards_bool_exp { + _and: [tournament_awards_bool_exp!] + _not: tournament_awards_bool_exp + _or: [tournament_awards_bool_exp!] + award: awards_bool_exp + award_id: uuid_comparison_exp + created_at: timestamptz_comparison_exp + custom_name: String_comparison_exp + id: uuid_comparison_exp + image_url: String_comparison_exp + placement: Int_comparison_exp + silhouette: Int_comparison_exp + tournament: tournaments_bool_exp + tournament_id: uuid_comparison_exp + updated_at: timestamptz_comparison_exp +} + +""" +unique or primary key constraints on table "tournament_awards" +""" +enum tournament_awards_constraint { + """ + unique or primary key constraint on columns "id" + """ + tournament_awards_pkey + + """ + unique or primary key constraint on columns "placement", "tournament_id" + """ + tournament_awards_tournament_id_placement_key +} + +""" +input type for incrementing numeric columns in table "tournament_awards" +""" +input tournament_awards_inc_input { + placement: Int + silhouette: Int +} + +""" +input type for inserting data into table "tournament_awards" +""" +input tournament_awards_insert_input { + award: awards_obj_rel_insert_input + award_id: uuid + created_at: timestamptz + custom_name: String + id: uuid + image_url: String + placement: Int + silhouette: Int + tournament: tournaments_obj_rel_insert_input + tournament_id: uuid + updated_at: timestamptz +} + +"""aggregate max on columns""" +type tournament_awards_max_fields { + award_id: uuid + created_at: timestamptz + custom_name: String + id: uuid + image_url: String + placement: Int + silhouette: Int + tournament_id: uuid + updated_at: timestamptz +} + +""" +order by max() on columns of table "tournament_awards" +""" +input tournament_awards_max_order_by { + award_id: order_by + created_at: order_by + custom_name: order_by + id: order_by + image_url: order_by + placement: order_by + silhouette: order_by + tournament_id: order_by + updated_at: order_by +} + +"""aggregate min on columns""" +type tournament_awards_min_fields { + award_id: uuid + created_at: timestamptz + custom_name: String + id: uuid + image_url: String + placement: Int + silhouette: Int + tournament_id: uuid + updated_at: timestamptz +} + +""" +order by min() on columns of table "tournament_awards" +""" +input tournament_awards_min_order_by { + award_id: order_by + created_at: order_by + custom_name: order_by + id: order_by + image_url: order_by + placement: order_by + silhouette: order_by + tournament_id: order_by + updated_at: order_by +} + +""" +response of any mutation on the table "tournament_awards" +""" +type tournament_awards_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [tournament_awards!]! +} + +""" +input type for inserting object relation for remote table "tournament_awards" +""" +input tournament_awards_obj_rel_insert_input { + data: tournament_awards_insert_input! + + """upsert condition""" + on_conflict: tournament_awards_on_conflict +} + +""" +on_conflict condition type for table "tournament_awards" +""" +input tournament_awards_on_conflict { + constraint: tournament_awards_constraint! + update_columns: [tournament_awards_update_column!]! = [] + where: tournament_awards_bool_exp +} + +"""Ordering options when selecting data from "tournament_awards".""" +input tournament_awards_order_by { + award: awards_order_by + award_id: order_by + created_at: order_by + custom_name: order_by + id: order_by + image_url: order_by + placement: order_by + silhouette: order_by + tournament: tournaments_order_by + tournament_id: order_by + updated_at: order_by +} + +"""primary key columns input for table: tournament_awards""" +input tournament_awards_pk_columns_input { + id: uuid! +} + +""" +select columns of table "tournament_awards" +""" +enum tournament_awards_select_column { + """column name""" + award_id + + """column name""" + created_at + + """column name""" + custom_name + + """column name""" + id + + """column name""" + image_url + + """column name""" + placement + + """column name""" + silhouette + + """column name""" + tournament_id + + """column name""" + updated_at +} + +""" +input type for updating data in table "tournament_awards" +""" +input tournament_awards_set_input { + award_id: uuid + created_at: timestamptz + custom_name: String + id: uuid + image_url: String + placement: Int + silhouette: Int + tournament_id: uuid + updated_at: timestamptz +} + +"""aggregate stddev on columns""" +type tournament_awards_stddev_fields { + placement: Float + silhouette: Float +} + +""" +order by stddev() on columns of table "tournament_awards" +""" +input tournament_awards_stddev_order_by { + placement: order_by + silhouette: order_by +} + +"""aggregate stddev_pop on columns""" +type tournament_awards_stddev_pop_fields { + placement: Float + silhouette: Float +} + +""" +order by stddev_pop() on columns of table "tournament_awards" +""" +input tournament_awards_stddev_pop_order_by { + placement: order_by + silhouette: order_by +} + +"""aggregate stddev_samp on columns""" +type tournament_awards_stddev_samp_fields { + placement: Float + silhouette: Float +} + +""" +order by stddev_samp() on columns of table "tournament_awards" +""" +input tournament_awards_stddev_samp_order_by { + placement: order_by + silhouette: order_by +} + +""" +Streaming cursor of the table "tournament_awards" +""" +input tournament_awards_stream_cursor_input { + """Stream column input with initial value""" + initial_value: tournament_awards_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input tournament_awards_stream_cursor_value_input { + award_id: uuid + created_at: timestamptz + custom_name: String + id: uuid + image_url: String + placement: Int + silhouette: Int + tournament_id: uuid + updated_at: timestamptz +} + +"""aggregate sum on columns""" +type tournament_awards_sum_fields { + placement: Int + silhouette: Int +} + +""" +order by sum() on columns of table "tournament_awards" """ -input teams_sum_order_by { - captain_steam_id: order_by - owner_steam_id: order_by +input tournament_awards_sum_order_by { + placement: order_by + silhouette: order_by } """ -update columns of table "teams" +update columns of table "tournament_awards" """ -enum teams_update_column { +enum tournament_awards_update_column { """column name""" - avatar_url + award_id """column name""" - captain_steam_id + created_at + + """column name""" + custom_name """column name""" id """column name""" - is_organization + image_url """column name""" - name + placement """column name""" - owner_steam_id + silhouette """column name""" - short_name + tournament_id + + """column name""" + updated_at } -input teams_updates { +input tournament_awards_updates { """increments the numeric columns with given value of the filtered values""" - _inc: teams_inc_input + _inc: tournament_awards_inc_input """sets the columns of the filtered rows to the given values""" - _set: teams_set_input + _set: tournament_awards_set_input """filter the rows which have to be updated""" - where: teams_bool_exp! + where: tournament_awards_bool_exp! } """aggregate var_pop on columns""" -type teams_var_pop_fields { - captain_steam_id: Float - owner_steam_id: Float +type tournament_awards_var_pop_fields { + placement: Float + silhouette: Float } """ -order by var_pop() on columns of table "teams" +order by var_pop() on columns of table "tournament_awards" """ -input teams_var_pop_order_by { - captain_steam_id: order_by - owner_steam_id: order_by +input tournament_awards_var_pop_order_by { + placement: order_by + silhouette: order_by } """aggregate var_samp on columns""" -type teams_var_samp_fields { - captain_steam_id: Float - owner_steam_id: Float +type tournament_awards_var_samp_fields { + placement: Float + silhouette: Float } """ -order by var_samp() on columns of table "teams" +order by var_samp() on columns of table "tournament_awards" """ -input teams_var_samp_order_by { - captain_steam_id: order_by - owner_steam_id: order_by +input tournament_awards_var_samp_order_by { + placement: order_by + silhouette: order_by } """aggregate variance on columns""" -type teams_variance_fields { - captain_steam_id: Float - owner_steam_id: Float -} - -""" -order by variance() on columns of table "teams" -""" -input teams_variance_order_by { - captain_steam_id: order_by - owner_steam_id: order_by +type tournament_awards_variance_fields { + placement: Float + silhouette: Float } -scalar timestamp - -scalar timestamptz - """ -Boolean expression to compare columns of type "timestamptz". All fields are combined with logical 'AND'. +order by variance() on columns of table "tournament_awards" """ -input timestamptz_comparison_exp { - _eq: timestamptz - _gt: timestamptz - _gte: timestamptz - _in: [timestamptz!] - _is_null: Boolean - _lt: timestamptz - _lte: timestamptz - _neq: timestamptz - _nin: [timestamptz!] +input tournament_awards_variance_order_by { + placement: order_by + silhouette: order_by } """ @@ -93322,473 +95884,34 @@ input tournament_brackets_var_samp_order_by { team_2_seed: order_by } -"""aggregate variance on columns""" -type tournament_brackets_variance_fields { - group: Float - match_number: Float - round: Float - team_1_seed: Float - team_2_seed: Float -} - -""" -order by variance() on columns of table "tournament_brackets" -""" -input tournament_brackets_variance_order_by { - group: order_by - match_number: order_by - round: order_by - team_1_seed: order_by - team_2_seed: order_by -} - -""" -columns and relationships of "tournament_categories" -""" -type tournament_categories { - category: e_tournament_categories_enum! - - """An object relationship""" - e_tournament_category: e_tournament_categories! - - """An object relationship""" - tournament: tournaments! - tournament_id: uuid! -} - -""" -aggregated selection of "tournament_categories" -""" -type tournament_categories_aggregate { - aggregate: tournament_categories_aggregate_fields - nodes: [tournament_categories!]! -} - -input tournament_categories_aggregate_bool_exp { - count: tournament_categories_aggregate_bool_exp_count -} - -input tournament_categories_aggregate_bool_exp_count { - arguments: [tournament_categories_select_column!] - distinct: Boolean - filter: tournament_categories_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "tournament_categories" -""" -type tournament_categories_aggregate_fields { - count(columns: [tournament_categories_select_column!], distinct: Boolean): Int! - max: tournament_categories_max_fields - min: tournament_categories_min_fields -} - -""" -order by aggregate values of table "tournament_categories" -""" -input tournament_categories_aggregate_order_by { - count: order_by - max: tournament_categories_max_order_by - min: tournament_categories_min_order_by -} - -""" -input type for inserting array relation for remote table "tournament_categories" -""" -input tournament_categories_arr_rel_insert_input { - data: [tournament_categories_insert_input!]! - - """upsert condition""" - on_conflict: tournament_categories_on_conflict -} - -""" -Boolean expression to filter rows from the table "tournament_categories". All fields are combined with a logical 'AND'. -""" -input tournament_categories_bool_exp { - _and: [tournament_categories_bool_exp!] - _not: tournament_categories_bool_exp - _or: [tournament_categories_bool_exp!] - category: e_tournament_categories_enum_comparison_exp - e_tournament_category: e_tournament_categories_bool_exp - tournament: tournaments_bool_exp - tournament_id: uuid_comparison_exp -} - -""" -unique or primary key constraints on table "tournament_categories" -""" -enum tournament_categories_constraint { - """ - unique or primary key constraint on columns "tournament_id", "category" - """ - tournament_categories_pkey -} - -""" -input type for inserting data into table "tournament_categories" -""" -input tournament_categories_insert_input { - category: e_tournament_categories_enum - e_tournament_category: e_tournament_categories_obj_rel_insert_input - tournament: tournaments_obj_rel_insert_input - tournament_id: uuid -} - -"""aggregate max on columns""" -type tournament_categories_max_fields { - tournament_id: uuid -} - -""" -order by max() on columns of table "tournament_categories" -""" -input tournament_categories_max_order_by { - tournament_id: order_by -} - -"""aggregate min on columns""" -type tournament_categories_min_fields { - tournament_id: uuid -} - -""" -order by min() on columns of table "tournament_categories" -""" -input tournament_categories_min_order_by { - tournament_id: order_by -} - -""" -response of any mutation on the table "tournament_categories" -""" -type tournament_categories_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [tournament_categories!]! -} - -""" -on_conflict condition type for table "tournament_categories" -""" -input tournament_categories_on_conflict { - constraint: tournament_categories_constraint! - update_columns: [tournament_categories_update_column!]! = [] - where: tournament_categories_bool_exp -} - -"""Ordering options when selecting data from "tournament_categories".""" -input tournament_categories_order_by { - category: order_by - e_tournament_category: e_tournament_categories_order_by - tournament: tournaments_order_by - tournament_id: order_by -} - -"""primary key columns input for table: tournament_categories""" -input tournament_categories_pk_columns_input { - category: e_tournament_categories_enum! - tournament_id: uuid! -} - -""" -select columns of table "tournament_categories" -""" -enum tournament_categories_select_column { - """column name""" - category - - """column name""" - tournament_id -} - -""" -input type for updating data in table "tournament_categories" -""" -input tournament_categories_set_input { - category: e_tournament_categories_enum - tournament_id: uuid -} - -""" -Streaming cursor of the table "tournament_categories" -""" -input tournament_categories_stream_cursor_input { - """Stream column input with initial value""" - initial_value: tournament_categories_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input tournament_categories_stream_cursor_value_input { - category: e_tournament_categories_enum - tournament_id: uuid -} - -""" -update columns of table "tournament_categories" -""" -enum tournament_categories_update_column { - """column name""" - category - - """column name""" - tournament_id -} - -input tournament_categories_updates { - """sets the columns of the filtered rows to the given values""" - _set: tournament_categories_set_input - - """filter the rows which have to be updated""" - where: tournament_categories_bool_exp! -} - -""" -columns and relationships of "tournament_organizer_teams" -""" -type tournament_organizer_teams { - created_at: timestamptz! - - """An object relationship""" - team: teams! - team_id: uuid! - - """An object relationship""" - tournament: tournaments! - tournament_id: uuid! -} - -""" -aggregated selection of "tournament_organizer_teams" -""" -type tournament_organizer_teams_aggregate { - aggregate: tournament_organizer_teams_aggregate_fields - nodes: [tournament_organizer_teams!]! -} - -input tournament_organizer_teams_aggregate_bool_exp { - count: tournament_organizer_teams_aggregate_bool_exp_count -} - -input tournament_organizer_teams_aggregate_bool_exp_count { - arguments: [tournament_organizer_teams_select_column!] - distinct: Boolean - filter: tournament_organizer_teams_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "tournament_organizer_teams" -""" -type tournament_organizer_teams_aggregate_fields { - count(columns: [tournament_organizer_teams_select_column!], distinct: Boolean): Int! - max: tournament_organizer_teams_max_fields - min: tournament_organizer_teams_min_fields -} - -""" -order by aggregate values of table "tournament_organizer_teams" -""" -input tournament_organizer_teams_aggregate_order_by { - count: order_by - max: tournament_organizer_teams_max_order_by - min: tournament_organizer_teams_min_order_by -} - -""" -input type for inserting array relation for remote table "tournament_organizer_teams" -""" -input tournament_organizer_teams_arr_rel_insert_input { - data: [tournament_organizer_teams_insert_input!]! - - """upsert condition""" - on_conflict: tournament_organizer_teams_on_conflict -} - -""" -Boolean expression to filter rows from the table "tournament_organizer_teams". All fields are combined with a logical 'AND'. -""" -input tournament_organizer_teams_bool_exp { - _and: [tournament_organizer_teams_bool_exp!] - _not: tournament_organizer_teams_bool_exp - _or: [tournament_organizer_teams_bool_exp!] - created_at: timestamptz_comparison_exp - team: teams_bool_exp - team_id: uuid_comparison_exp - tournament: tournaments_bool_exp - tournament_id: uuid_comparison_exp -} - -""" -unique or primary key constraints on table "tournament_organizer_teams" -""" -enum tournament_organizer_teams_constraint { - """ - unique or primary key constraint on columns "tournament_id", "team_id" - """ - tournament_organizer_teams_pkey -} - -""" -input type for inserting data into table "tournament_organizer_teams" -""" -input tournament_organizer_teams_insert_input { - created_at: timestamptz - team: teams_obj_rel_insert_input - team_id: uuid - tournament: tournaments_obj_rel_insert_input - tournament_id: uuid -} - -"""aggregate max on columns""" -type tournament_organizer_teams_max_fields { - created_at: timestamptz - team_id: uuid - tournament_id: uuid -} - -""" -order by max() on columns of table "tournament_organizer_teams" -""" -input tournament_organizer_teams_max_order_by { - created_at: order_by - team_id: order_by - tournament_id: order_by -} - -"""aggregate min on columns""" -type tournament_organizer_teams_min_fields { - created_at: timestamptz - team_id: uuid - tournament_id: uuid -} - -""" -order by min() on columns of table "tournament_organizer_teams" -""" -input tournament_organizer_teams_min_order_by { - created_at: order_by - team_id: order_by - tournament_id: order_by -} - -""" -response of any mutation on the table "tournament_organizer_teams" -""" -type tournament_organizer_teams_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [tournament_organizer_teams!]! -} - -""" -on_conflict condition type for table "tournament_organizer_teams" -""" -input tournament_organizer_teams_on_conflict { - constraint: tournament_organizer_teams_constraint! - update_columns: [tournament_organizer_teams_update_column!]! = [] - where: tournament_organizer_teams_bool_exp -} - -""" -Ordering options when selecting data from "tournament_organizer_teams". -""" -input tournament_organizer_teams_order_by { - created_at: order_by - team: teams_order_by - team_id: order_by - tournament: tournaments_order_by - tournament_id: order_by -} - -"""primary key columns input for table: tournament_organizer_teams""" -input tournament_organizer_teams_pk_columns_input { - team_id: uuid! - tournament_id: uuid! -} - -""" -select columns of table "tournament_organizer_teams" -""" -enum tournament_organizer_teams_select_column { - """column name""" - created_at - - """column name""" - team_id - - """column name""" - tournament_id -} - -""" -input type for updating data in table "tournament_organizer_teams" -""" -input tournament_organizer_teams_set_input { - created_at: timestamptz - team_id: uuid - tournament_id: uuid -} - -""" -Streaming cursor of the table "tournament_organizer_teams" -""" -input tournament_organizer_teams_stream_cursor_input { - """Stream column input with initial value""" - initial_value: tournament_organizer_teams_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input tournament_organizer_teams_stream_cursor_value_input { - created_at: timestamptz - team_id: uuid - tournament_id: uuid +"""aggregate variance on columns""" +type tournament_brackets_variance_fields { + group: Float + match_number: Float + round: Float + team_1_seed: Float + team_2_seed: Float } """ -update columns of table "tournament_organizer_teams" +order by variance() on columns of table "tournament_brackets" """ -enum tournament_organizer_teams_update_column { - """column name""" - created_at - - """column name""" - team_id - - """column name""" - tournament_id -} - -input tournament_organizer_teams_updates { - """sets the columns of the filtered rows to the given values""" - _set: tournament_organizer_teams_set_input - - """filter the rows which have to be updated""" - where: tournament_organizer_teams_bool_exp! +input tournament_brackets_variance_order_by { + group: order_by + match_number: order_by + round: order_by + team_1_seed: order_by + team_2_seed: order_by } """ -columns and relationships of "tournament_organizers" +columns and relationships of "tournament_categories" """ -type tournament_organizers { - """An object relationship""" - organization_team: teams - organization_team_id: uuid +type tournament_categories { + category: e_tournament_categories_enum! """An object relationship""" - organizer: players! - steam_id: bigint! + e_tournament_category: e_tournament_categories! """An object relationship""" tournament: tournaments! @@ -93796,351 +95919,207 @@ type tournament_organizers { } """ -aggregated selection of "tournament_organizers" +aggregated selection of "tournament_categories" """ -type tournament_organizers_aggregate { - aggregate: tournament_organizers_aggregate_fields - nodes: [tournament_organizers!]! +type tournament_categories_aggregate { + aggregate: tournament_categories_aggregate_fields + nodes: [tournament_categories!]! } -input tournament_organizers_aggregate_bool_exp { - count: tournament_organizers_aggregate_bool_exp_count +input tournament_categories_aggregate_bool_exp { + count: tournament_categories_aggregate_bool_exp_count } -input tournament_organizers_aggregate_bool_exp_count { - arguments: [tournament_organizers_select_column!] +input tournament_categories_aggregate_bool_exp_count { + arguments: [tournament_categories_select_column!] distinct: Boolean - filter: tournament_organizers_bool_exp + filter: tournament_categories_bool_exp predicate: Int_comparison_exp! } """ -aggregate fields of "tournament_organizers" +aggregate fields of "tournament_categories" """ -type tournament_organizers_aggregate_fields { - avg: tournament_organizers_avg_fields - count(columns: [tournament_organizers_select_column!], distinct: Boolean): Int! - max: tournament_organizers_max_fields - min: tournament_organizers_min_fields - stddev: tournament_organizers_stddev_fields - stddev_pop: tournament_organizers_stddev_pop_fields - stddev_samp: tournament_organizers_stddev_samp_fields - sum: tournament_organizers_sum_fields - var_pop: tournament_organizers_var_pop_fields - var_samp: tournament_organizers_var_samp_fields - variance: tournament_organizers_variance_fields +type tournament_categories_aggregate_fields { + count(columns: [tournament_categories_select_column!], distinct: Boolean): Int! + max: tournament_categories_max_fields + min: tournament_categories_min_fields } """ -order by aggregate values of table "tournament_organizers" +order by aggregate values of table "tournament_categories" """ -input tournament_organizers_aggregate_order_by { - avg: tournament_organizers_avg_order_by +input tournament_categories_aggregate_order_by { count: order_by - max: tournament_organizers_max_order_by - min: tournament_organizers_min_order_by - stddev: tournament_organizers_stddev_order_by - stddev_pop: tournament_organizers_stddev_pop_order_by - stddev_samp: tournament_organizers_stddev_samp_order_by - sum: tournament_organizers_sum_order_by - var_pop: tournament_organizers_var_pop_order_by - var_samp: tournament_organizers_var_samp_order_by - variance: tournament_organizers_variance_order_by + max: tournament_categories_max_order_by + min: tournament_categories_min_order_by } """ -input type for inserting array relation for remote table "tournament_organizers" +input type for inserting array relation for remote table "tournament_categories" """ -input tournament_organizers_arr_rel_insert_input { - data: [tournament_organizers_insert_input!]! +input tournament_categories_arr_rel_insert_input { + data: [tournament_categories_insert_input!]! """upsert condition""" - on_conflict: tournament_organizers_on_conflict -} - -"""aggregate avg on columns""" -type tournament_organizers_avg_fields { - steam_id: Float -} - -""" -order by avg() on columns of table "tournament_organizers" -""" -input tournament_organizers_avg_order_by { - steam_id: order_by + on_conflict: tournament_categories_on_conflict } """ -Boolean expression to filter rows from the table "tournament_organizers". All fields are combined with a logical 'AND'. +Boolean expression to filter rows from the table "tournament_categories". All fields are combined with a logical 'AND'. """ -input tournament_organizers_bool_exp { - _and: [tournament_organizers_bool_exp!] - _not: tournament_organizers_bool_exp - _or: [tournament_organizers_bool_exp!] - organization_team: teams_bool_exp - organization_team_id: uuid_comparison_exp - organizer: players_bool_exp - steam_id: bigint_comparison_exp +input tournament_categories_bool_exp { + _and: [tournament_categories_bool_exp!] + _not: tournament_categories_bool_exp + _or: [tournament_categories_bool_exp!] + category: e_tournament_categories_enum_comparison_exp + e_tournament_category: e_tournament_categories_bool_exp tournament: tournaments_bool_exp tournament_id: uuid_comparison_exp } """ -unique or primary key constraints on table "tournament_organizers" +unique or primary key constraints on table "tournament_categories" """ -enum tournament_organizers_constraint { +enum tournament_categories_constraint { """ - unique or primary key constraint on columns "steam_id", "tournament_id" + unique or primary key constraint on columns "tournament_id", "category" """ - tournament_organizers_pkey -} - -""" -input type for incrementing numeric columns in table "tournament_organizers" -""" -input tournament_organizers_inc_input { - steam_id: bigint + tournament_categories_pkey } """ -input type for inserting data into table "tournament_organizers" +input type for inserting data into table "tournament_categories" """ -input tournament_organizers_insert_input { - organization_team: teams_obj_rel_insert_input - organization_team_id: uuid - organizer: players_obj_rel_insert_input - steam_id: bigint +input tournament_categories_insert_input { + category: e_tournament_categories_enum + e_tournament_category: e_tournament_categories_obj_rel_insert_input tournament: tournaments_obj_rel_insert_input tournament_id: uuid } """aggregate max on columns""" -type tournament_organizers_max_fields { - organization_team_id: uuid - steam_id: bigint +type tournament_categories_max_fields { tournament_id: uuid } """ -order by max() on columns of table "tournament_organizers" +order by max() on columns of table "tournament_categories" """ -input tournament_organizers_max_order_by { - organization_team_id: order_by - steam_id: order_by +input tournament_categories_max_order_by { tournament_id: order_by } """aggregate min on columns""" -type tournament_organizers_min_fields { - organization_team_id: uuid - steam_id: bigint +type tournament_categories_min_fields { tournament_id: uuid } """ -order by min() on columns of table "tournament_organizers" +order by min() on columns of table "tournament_categories" """ -input tournament_organizers_min_order_by { - organization_team_id: order_by - steam_id: order_by +input tournament_categories_min_order_by { tournament_id: order_by } """ -response of any mutation on the table "tournament_organizers" +response of any mutation on the table "tournament_categories" """ -type tournament_organizers_mutation_response { +type tournament_categories_mutation_response { """number of rows affected by the mutation""" affected_rows: Int! """data from the rows affected by the mutation""" - returning: [tournament_organizers!]! + returning: [tournament_categories!]! } """ -on_conflict condition type for table "tournament_organizers" +on_conflict condition type for table "tournament_categories" """ -input tournament_organizers_on_conflict { - constraint: tournament_organizers_constraint! - update_columns: [tournament_organizers_update_column!]! = [] - where: tournament_organizers_bool_exp +input tournament_categories_on_conflict { + constraint: tournament_categories_constraint! + update_columns: [tournament_categories_update_column!]! = [] + where: tournament_categories_bool_exp } -"""Ordering options when selecting data from "tournament_organizers".""" -input tournament_organizers_order_by { - organization_team: teams_order_by - organization_team_id: order_by - organizer: players_order_by - steam_id: order_by +"""Ordering options when selecting data from "tournament_categories".""" +input tournament_categories_order_by { + category: order_by + e_tournament_category: e_tournament_categories_order_by tournament: tournaments_order_by tournament_id: order_by } -"""primary key columns input for table: tournament_organizers""" -input tournament_organizers_pk_columns_input { - steam_id: bigint! +"""primary key columns input for table: tournament_categories""" +input tournament_categories_pk_columns_input { + category: e_tournament_categories_enum! tournament_id: uuid! } """ -select columns of table "tournament_organizers" +select columns of table "tournament_categories" """ -enum tournament_organizers_select_column { - """column name""" - organization_team_id - +enum tournament_categories_select_column { """column name""" - steam_id + category """column name""" tournament_id } """ -input type for updating data in table "tournament_organizers" +input type for updating data in table "tournament_categories" """ -input tournament_organizers_set_input { - organization_team_id: uuid - steam_id: bigint +input tournament_categories_set_input { + category: e_tournament_categories_enum tournament_id: uuid } -"""aggregate stddev on columns""" -type tournament_organizers_stddev_fields { - steam_id: Float -} - -""" -order by stddev() on columns of table "tournament_organizers" -""" -input tournament_organizers_stddev_order_by { - steam_id: order_by -} - -"""aggregate stddev_pop on columns""" -type tournament_organizers_stddev_pop_fields { - steam_id: Float -} - -""" -order by stddev_pop() on columns of table "tournament_organizers" -""" -input tournament_organizers_stddev_pop_order_by { - steam_id: order_by -} - -"""aggregate stddev_samp on columns""" -type tournament_organizers_stddev_samp_fields { - steam_id: Float -} - -""" -order by stddev_samp() on columns of table "tournament_organizers" -""" -input tournament_organizers_stddev_samp_order_by { - steam_id: order_by -} - """ -Streaming cursor of the table "tournament_organizers" +Streaming cursor of the table "tournament_categories" """ -input tournament_organizers_stream_cursor_input { +input tournament_categories_stream_cursor_input { """Stream column input with initial value""" - initial_value: tournament_organizers_stream_cursor_value_input! + initial_value: tournament_categories_stream_cursor_value_input! """cursor ordering""" ordering: cursor_ordering } """Initial value of the column from where the streaming should start""" -input tournament_organizers_stream_cursor_value_input { - organization_team_id: uuid - steam_id: bigint +input tournament_categories_stream_cursor_value_input { + category: e_tournament_categories_enum tournament_id: uuid } -"""aggregate sum on columns""" -type tournament_organizers_sum_fields { - steam_id: bigint -} - -""" -order by sum() on columns of table "tournament_organizers" -""" -input tournament_organizers_sum_order_by { - steam_id: order_by -} - """ -update columns of table "tournament_organizers" +update columns of table "tournament_categories" """ -enum tournament_organizers_update_column { - """column name""" - organization_team_id - +enum tournament_categories_update_column { """column name""" - steam_id + category """column name""" tournament_id } -input tournament_organizers_updates { - """increments the numeric columns with given value of the filtered values""" - _inc: tournament_organizers_inc_input - +input tournament_categories_updates { """sets the columns of the filtered rows to the given values""" - _set: tournament_organizers_set_input + _set: tournament_categories_set_input """filter the rows which have to be updated""" - where: tournament_organizers_bool_exp! -} - -"""aggregate var_pop on columns""" -type tournament_organizers_var_pop_fields { - steam_id: Float -} - -""" -order by var_pop() on columns of table "tournament_organizers" -""" -input tournament_organizers_var_pop_order_by { - steam_id: order_by -} - -"""aggregate var_samp on columns""" -type tournament_organizers_var_samp_fields { - steam_id: Float -} - -""" -order by var_samp() on columns of table "tournament_organizers" -""" -input tournament_organizers_var_samp_order_by { - steam_id: order_by -} - -"""aggregate variance on columns""" -type tournament_organizers_variance_fields { - steam_id: Float -} - -""" -order by variance() on columns of table "tournament_organizers" -""" -input tournament_organizers_variance_order_by { - steam_id: order_by + where: tournament_categories_bool_exp! } """ -columns and relationships of "tournament_prizes" +columns and relationships of "tournament_organizer_teams" """ -type tournament_prizes { +type tournament_organizer_teams { created_at: timestamptz! - id: uuid! - order: Int! - place: String! - prize: String! + + """An object relationship""" + team: teams! + team_id: uuid! """An object relationship""" tournament: tournaments! @@ -94148,3092 +96127,2664 @@ type tournament_prizes { } """ -aggregated selection of "tournament_prizes" +aggregated selection of "tournament_organizer_teams" """ -type tournament_prizes_aggregate { - aggregate: tournament_prizes_aggregate_fields - nodes: [tournament_prizes!]! +type tournament_organizer_teams_aggregate { + aggregate: tournament_organizer_teams_aggregate_fields + nodes: [tournament_organizer_teams!]! } -input tournament_prizes_aggregate_bool_exp { - count: tournament_prizes_aggregate_bool_exp_count +input tournament_organizer_teams_aggregate_bool_exp { + count: tournament_organizer_teams_aggregate_bool_exp_count } -input tournament_prizes_aggregate_bool_exp_count { - arguments: [tournament_prizes_select_column!] +input tournament_organizer_teams_aggregate_bool_exp_count { + arguments: [tournament_organizer_teams_select_column!] distinct: Boolean - filter: tournament_prizes_bool_exp + filter: tournament_organizer_teams_bool_exp predicate: Int_comparison_exp! } """ -aggregate fields of "tournament_prizes" +aggregate fields of "tournament_organizer_teams" """ -type tournament_prizes_aggregate_fields { - avg: tournament_prizes_avg_fields - count(columns: [tournament_prizes_select_column!], distinct: Boolean): Int! - max: tournament_prizes_max_fields - min: tournament_prizes_min_fields - stddev: tournament_prizes_stddev_fields - stddev_pop: tournament_prizes_stddev_pop_fields - stddev_samp: tournament_prizes_stddev_samp_fields - sum: tournament_prizes_sum_fields - var_pop: tournament_prizes_var_pop_fields - var_samp: tournament_prizes_var_samp_fields - variance: tournament_prizes_variance_fields +type tournament_organizer_teams_aggregate_fields { + count(columns: [tournament_organizer_teams_select_column!], distinct: Boolean): Int! + max: tournament_organizer_teams_max_fields + min: tournament_organizer_teams_min_fields } """ -order by aggregate values of table "tournament_prizes" +order by aggregate values of table "tournament_organizer_teams" """ -input tournament_prizes_aggregate_order_by { - avg: tournament_prizes_avg_order_by +input tournament_organizer_teams_aggregate_order_by { count: order_by - max: tournament_prizes_max_order_by - min: tournament_prizes_min_order_by - stddev: tournament_prizes_stddev_order_by - stddev_pop: tournament_prizes_stddev_pop_order_by - stddev_samp: tournament_prizes_stddev_samp_order_by - sum: tournament_prizes_sum_order_by - var_pop: tournament_prizes_var_pop_order_by - var_samp: tournament_prizes_var_samp_order_by - variance: tournament_prizes_variance_order_by + max: tournament_organizer_teams_max_order_by + min: tournament_organizer_teams_min_order_by } """ -input type for inserting array relation for remote table "tournament_prizes" +input type for inserting array relation for remote table "tournament_organizer_teams" """ -input tournament_prizes_arr_rel_insert_input { - data: [tournament_prizes_insert_input!]! +input tournament_organizer_teams_arr_rel_insert_input { + data: [tournament_organizer_teams_insert_input!]! """upsert condition""" - on_conflict: tournament_prizes_on_conflict -} - -"""aggregate avg on columns""" -type tournament_prizes_avg_fields { - order: Float -} - -""" -order by avg() on columns of table "tournament_prizes" -""" -input tournament_prizes_avg_order_by { - order: order_by + on_conflict: tournament_organizer_teams_on_conflict } """ -Boolean expression to filter rows from the table "tournament_prizes". All fields are combined with a logical 'AND'. +Boolean expression to filter rows from the table "tournament_organizer_teams". All fields are combined with a logical 'AND'. """ -input tournament_prizes_bool_exp { - _and: [tournament_prizes_bool_exp!] - _not: tournament_prizes_bool_exp - _or: [tournament_prizes_bool_exp!] +input tournament_organizer_teams_bool_exp { + _and: [tournament_organizer_teams_bool_exp!] + _not: tournament_organizer_teams_bool_exp + _or: [tournament_organizer_teams_bool_exp!] created_at: timestamptz_comparison_exp - id: uuid_comparison_exp - order: Int_comparison_exp - place: String_comparison_exp - prize: String_comparison_exp + team: teams_bool_exp + team_id: uuid_comparison_exp tournament: tournaments_bool_exp tournament_id: uuid_comparison_exp } """ -unique or primary key constraints on table "tournament_prizes" +unique or primary key constraints on table "tournament_organizer_teams" """ -enum tournament_prizes_constraint { +enum tournament_organizer_teams_constraint { """ - unique or primary key constraint on columns "id" + unique or primary key constraint on columns "tournament_id", "team_id" """ - tournament_prizes_pkey -} - -""" -input type for incrementing numeric columns in table "tournament_prizes" -""" -input tournament_prizes_inc_input { - order: Int + tournament_organizer_teams_pkey } """ -input type for inserting data into table "tournament_prizes" +input type for inserting data into table "tournament_organizer_teams" """ -input tournament_prizes_insert_input { +input tournament_organizer_teams_insert_input { created_at: timestamptz - id: uuid - order: Int - place: String - prize: String + team: teams_obj_rel_insert_input + team_id: uuid tournament: tournaments_obj_rel_insert_input tournament_id: uuid } """aggregate max on columns""" -type tournament_prizes_max_fields { +type tournament_organizer_teams_max_fields { created_at: timestamptz - id: uuid - order: Int - place: String - prize: String + team_id: uuid tournament_id: uuid } """ -order by max() on columns of table "tournament_prizes" +order by max() on columns of table "tournament_organizer_teams" """ -input tournament_prizes_max_order_by { +input tournament_organizer_teams_max_order_by { created_at: order_by - id: order_by - order: order_by - place: order_by - prize: order_by + team_id: order_by tournament_id: order_by } """aggregate min on columns""" -type tournament_prizes_min_fields { +type tournament_organizer_teams_min_fields { created_at: timestamptz - id: uuid - order: Int - place: String - prize: String + team_id: uuid tournament_id: uuid } """ -order by min() on columns of table "tournament_prizes" +order by min() on columns of table "tournament_organizer_teams" """ -input tournament_prizes_min_order_by { +input tournament_organizer_teams_min_order_by { created_at: order_by - id: order_by - order: order_by - place: order_by - prize: order_by + team_id: order_by tournament_id: order_by } """ -response of any mutation on the table "tournament_prizes" +response of any mutation on the table "tournament_organizer_teams" """ -type tournament_prizes_mutation_response { +type tournament_organizer_teams_mutation_response { """number of rows affected by the mutation""" affected_rows: Int! """data from the rows affected by the mutation""" - returning: [tournament_prizes!]! + returning: [tournament_organizer_teams!]! +} + +""" +on_conflict condition type for table "tournament_organizer_teams" +""" +input tournament_organizer_teams_on_conflict { + constraint: tournament_organizer_teams_constraint! + update_columns: [tournament_organizer_teams_update_column!]! = [] + where: tournament_organizer_teams_bool_exp } """ -on_conflict condition type for table "tournament_prizes" +Ordering options when selecting data from "tournament_organizer_teams". """ -input tournament_prizes_on_conflict { - constraint: tournament_prizes_constraint! - update_columns: [tournament_prizes_update_column!]! = [] - where: tournament_prizes_bool_exp -} - -"""Ordering options when selecting data from "tournament_prizes".""" -input tournament_prizes_order_by { +input tournament_organizer_teams_order_by { created_at: order_by - id: order_by - order: order_by - place: order_by - prize: order_by + team: teams_order_by + team_id: order_by tournament: tournaments_order_by tournament_id: order_by } -"""primary key columns input for table: tournament_prizes""" -input tournament_prizes_pk_columns_input { - id: uuid! +"""primary key columns input for table: tournament_organizer_teams""" +input tournament_organizer_teams_pk_columns_input { + team_id: uuid! + tournament_id: uuid! } """ -select columns of table "tournament_prizes" +select columns of table "tournament_organizer_teams" """ -enum tournament_prizes_select_column { +enum tournament_organizer_teams_select_column { """column name""" created_at """column name""" - id - - """column name""" - order - - """column name""" - place - - """column name""" - prize + team_id """column name""" tournament_id } """ -input type for updating data in table "tournament_prizes" +input type for updating data in table "tournament_organizer_teams" """ -input tournament_prizes_set_input { +input tournament_organizer_teams_set_input { created_at: timestamptz - id: uuid - order: Int - place: String - prize: String + team_id: uuid tournament_id: uuid } -"""aggregate stddev on columns""" -type tournament_prizes_stddev_fields { - order: Float -} - -""" -order by stddev() on columns of table "tournament_prizes" -""" -input tournament_prizes_stddev_order_by { - order: order_by -} - -"""aggregate stddev_pop on columns""" -type tournament_prizes_stddev_pop_fields { - order: Float -} - -""" -order by stddev_pop() on columns of table "tournament_prizes" -""" -input tournament_prizes_stddev_pop_order_by { - order: order_by -} - -"""aggregate stddev_samp on columns""" -type tournament_prizes_stddev_samp_fields { - order: Float -} - -""" -order by stddev_samp() on columns of table "tournament_prizes" -""" -input tournament_prizes_stddev_samp_order_by { - order: order_by -} - """ -Streaming cursor of the table "tournament_prizes" +Streaming cursor of the table "tournament_organizer_teams" """ -input tournament_prizes_stream_cursor_input { +input tournament_organizer_teams_stream_cursor_input { """Stream column input with initial value""" - initial_value: tournament_prizes_stream_cursor_value_input! + initial_value: tournament_organizer_teams_stream_cursor_value_input! """cursor ordering""" ordering: cursor_ordering } """Initial value of the column from where the streaming should start""" -input tournament_prizes_stream_cursor_value_input { +input tournament_organizer_teams_stream_cursor_value_input { created_at: timestamptz - id: uuid - order: Int - place: String - prize: String + team_id: uuid tournament_id: uuid } -"""aggregate sum on columns""" -type tournament_prizes_sum_fields { - order: Int -} - """ -order by sum() on columns of table "tournament_prizes" -""" -input tournament_prizes_sum_order_by { - order: order_by -} - -""" -update columns of table "tournament_prizes" +update columns of table "tournament_organizer_teams" """ -enum tournament_prizes_update_column { +enum tournament_organizer_teams_update_column { """column name""" created_at """column name""" - id - - """column name""" - order - - """column name""" - place - - """column name""" - prize + team_id """column name""" tournament_id } -input tournament_prizes_updates { - """increments the numeric columns with given value of the filtered values""" - _inc: tournament_prizes_inc_input - +input tournament_organizer_teams_updates { """sets the columns of the filtered rows to the given values""" - _set: tournament_prizes_set_input + _set: tournament_organizer_teams_set_input """filter the rows which have to be updated""" - where: tournament_prizes_bool_exp! -} - -"""aggregate var_pop on columns""" -type tournament_prizes_var_pop_fields { - order: Float -} - -""" -order by var_pop() on columns of table "tournament_prizes" -""" -input tournament_prizes_var_pop_order_by { - order: order_by -} - -"""aggregate var_samp on columns""" -type tournament_prizes_var_samp_fields { - order: Float -} - -""" -order by var_samp() on columns of table "tournament_prizes" -""" -input tournament_prizes_var_samp_order_by { - order: order_by -} - -"""aggregate variance on columns""" -type tournament_prizes_variance_fields { - order: Float + where: tournament_organizer_teams_bool_exp! } """ -order by variance() on columns of table "tournament_prizes" +columns and relationships of "tournament_organizers" """ -input tournament_prizes_variance_order_by { - order: order_by -} +type tournament_organizers { + """An object relationship""" + organization_team: teams + organization_team_id: uuid -""" -columns and relationships of "tournament_stage_windows" -""" -type tournament_stage_windows { - closes_at: timestamptz - created_at: timestamptz! - default_match_at: timestamptz - id: uuid! - opens_at: timestamptz - round: Int! + """An object relationship""" + organizer: players! + steam_id: bigint! """An object relationship""" - stage: tournament_stages! - tournament_stage_id: uuid! + tournament: tournaments! + tournament_id: uuid! } """ -aggregated selection of "tournament_stage_windows" +aggregated selection of "tournament_organizers" """ -type tournament_stage_windows_aggregate { - aggregate: tournament_stage_windows_aggregate_fields - nodes: [tournament_stage_windows!]! +type tournament_organizers_aggregate { + aggregate: tournament_organizers_aggregate_fields + nodes: [tournament_organizers!]! } -input tournament_stage_windows_aggregate_bool_exp { - count: tournament_stage_windows_aggregate_bool_exp_count +input tournament_organizers_aggregate_bool_exp { + count: tournament_organizers_aggregate_bool_exp_count } -input tournament_stage_windows_aggregate_bool_exp_count { - arguments: [tournament_stage_windows_select_column!] +input tournament_organizers_aggregate_bool_exp_count { + arguments: [tournament_organizers_select_column!] distinct: Boolean - filter: tournament_stage_windows_bool_exp + filter: tournament_organizers_bool_exp predicate: Int_comparison_exp! } """ -aggregate fields of "tournament_stage_windows" +aggregate fields of "tournament_organizers" """ -type tournament_stage_windows_aggregate_fields { - avg: tournament_stage_windows_avg_fields - count(columns: [tournament_stage_windows_select_column!], distinct: Boolean): Int! - max: tournament_stage_windows_max_fields - min: tournament_stage_windows_min_fields - stddev: tournament_stage_windows_stddev_fields - stddev_pop: tournament_stage_windows_stddev_pop_fields - stddev_samp: tournament_stage_windows_stddev_samp_fields - sum: tournament_stage_windows_sum_fields - var_pop: tournament_stage_windows_var_pop_fields - var_samp: tournament_stage_windows_var_samp_fields - variance: tournament_stage_windows_variance_fields +type tournament_organizers_aggregate_fields { + avg: tournament_organizers_avg_fields + count(columns: [tournament_organizers_select_column!], distinct: Boolean): Int! + max: tournament_organizers_max_fields + min: tournament_organizers_min_fields + stddev: tournament_organizers_stddev_fields + stddev_pop: tournament_organizers_stddev_pop_fields + stddev_samp: tournament_organizers_stddev_samp_fields + sum: tournament_organizers_sum_fields + var_pop: tournament_organizers_var_pop_fields + var_samp: tournament_organizers_var_samp_fields + variance: tournament_organizers_variance_fields } """ -order by aggregate values of table "tournament_stage_windows" +order by aggregate values of table "tournament_organizers" """ -input tournament_stage_windows_aggregate_order_by { - avg: tournament_stage_windows_avg_order_by +input tournament_organizers_aggregate_order_by { + avg: tournament_organizers_avg_order_by count: order_by - max: tournament_stage_windows_max_order_by - min: tournament_stage_windows_min_order_by - stddev: tournament_stage_windows_stddev_order_by - stddev_pop: tournament_stage_windows_stddev_pop_order_by - stddev_samp: tournament_stage_windows_stddev_samp_order_by - sum: tournament_stage_windows_sum_order_by - var_pop: tournament_stage_windows_var_pop_order_by - var_samp: tournament_stage_windows_var_samp_order_by - variance: tournament_stage_windows_variance_order_by + max: tournament_organizers_max_order_by + min: tournament_organizers_min_order_by + stddev: tournament_organizers_stddev_order_by + stddev_pop: tournament_organizers_stddev_pop_order_by + stddev_samp: tournament_organizers_stddev_samp_order_by + sum: tournament_organizers_sum_order_by + var_pop: tournament_organizers_var_pop_order_by + var_samp: tournament_organizers_var_samp_order_by + variance: tournament_organizers_variance_order_by } """ -input type for inserting array relation for remote table "tournament_stage_windows" +input type for inserting array relation for remote table "tournament_organizers" """ -input tournament_stage_windows_arr_rel_insert_input { - data: [tournament_stage_windows_insert_input!]! +input tournament_organizers_arr_rel_insert_input { + data: [tournament_organizers_insert_input!]! """upsert condition""" - on_conflict: tournament_stage_windows_on_conflict + on_conflict: tournament_organizers_on_conflict } """aggregate avg on columns""" -type tournament_stage_windows_avg_fields { - round: Float +type tournament_organizers_avg_fields { + steam_id: Float } """ -order by avg() on columns of table "tournament_stage_windows" +order by avg() on columns of table "tournament_organizers" """ -input tournament_stage_windows_avg_order_by { - round: order_by +input tournament_organizers_avg_order_by { + steam_id: order_by } """ -Boolean expression to filter rows from the table "tournament_stage_windows". All fields are combined with a logical 'AND'. +Boolean expression to filter rows from the table "tournament_organizers". All fields are combined with a logical 'AND'. """ -input tournament_stage_windows_bool_exp { - _and: [tournament_stage_windows_bool_exp!] - _not: tournament_stage_windows_bool_exp - _or: [tournament_stage_windows_bool_exp!] - closes_at: timestamptz_comparison_exp - created_at: timestamptz_comparison_exp - default_match_at: timestamptz_comparison_exp - id: uuid_comparison_exp - opens_at: timestamptz_comparison_exp - round: Int_comparison_exp - stage: tournament_stages_bool_exp - tournament_stage_id: uuid_comparison_exp +input tournament_organizers_bool_exp { + _and: [tournament_organizers_bool_exp!] + _not: tournament_organizers_bool_exp + _or: [tournament_organizers_bool_exp!] + organization_team: teams_bool_exp + organization_team_id: uuid_comparison_exp + organizer: players_bool_exp + steam_id: bigint_comparison_exp + tournament: tournaments_bool_exp + tournament_id: uuid_comparison_exp } """ -unique or primary key constraints on table "tournament_stage_windows" +unique or primary key constraints on table "tournament_organizers" """ -enum tournament_stage_windows_constraint { - """ - unique or primary key constraint on columns "id" - """ - tournament_stage_windows_pkey - +enum tournament_organizers_constraint { """ - unique or primary key constraint on columns "tournament_stage_id", "round" + unique or primary key constraint on columns "steam_id", "tournament_id" """ - tournament_stage_windows_tournament_stage_id_round_key + tournament_organizers_pkey } """ -input type for incrementing numeric columns in table "tournament_stage_windows" +input type for incrementing numeric columns in table "tournament_organizers" """ -input tournament_stage_windows_inc_input { - round: Int +input tournament_organizers_inc_input { + steam_id: bigint } """ -input type for inserting data into table "tournament_stage_windows" +input type for inserting data into table "tournament_organizers" """ -input tournament_stage_windows_insert_input { - closes_at: timestamptz - created_at: timestamptz - default_match_at: timestamptz - id: uuid - opens_at: timestamptz - round: Int - stage: tournament_stages_obj_rel_insert_input - tournament_stage_id: uuid +input tournament_organizers_insert_input { + organization_team: teams_obj_rel_insert_input + organization_team_id: uuid + organizer: players_obj_rel_insert_input + steam_id: bigint + tournament: tournaments_obj_rel_insert_input + tournament_id: uuid } """aggregate max on columns""" -type tournament_stage_windows_max_fields { - closes_at: timestamptz - created_at: timestamptz - default_match_at: timestamptz - id: uuid - opens_at: timestamptz - round: Int - tournament_stage_id: uuid +type tournament_organizers_max_fields { + organization_team_id: uuid + steam_id: bigint + tournament_id: uuid } """ -order by max() on columns of table "tournament_stage_windows" +order by max() on columns of table "tournament_organizers" """ -input tournament_stage_windows_max_order_by { - closes_at: order_by - created_at: order_by - default_match_at: order_by - id: order_by - opens_at: order_by - round: order_by - tournament_stage_id: order_by +input tournament_organizers_max_order_by { + organization_team_id: order_by + steam_id: order_by + tournament_id: order_by } """aggregate min on columns""" -type tournament_stage_windows_min_fields { - closes_at: timestamptz - created_at: timestamptz - default_match_at: timestamptz - id: uuid - opens_at: timestamptz - round: Int - tournament_stage_id: uuid +type tournament_organizers_min_fields { + organization_team_id: uuid + steam_id: bigint + tournament_id: uuid } """ -order by min() on columns of table "tournament_stage_windows" +order by min() on columns of table "tournament_organizers" """ -input tournament_stage_windows_min_order_by { - closes_at: order_by - created_at: order_by - default_match_at: order_by - id: order_by - opens_at: order_by - round: order_by - tournament_stage_id: order_by +input tournament_organizers_min_order_by { + organization_team_id: order_by + steam_id: order_by + tournament_id: order_by } """ -response of any mutation on the table "tournament_stage_windows" +response of any mutation on the table "tournament_organizers" """ -type tournament_stage_windows_mutation_response { +type tournament_organizers_mutation_response { """number of rows affected by the mutation""" affected_rows: Int! """data from the rows affected by the mutation""" - returning: [tournament_stage_windows!]! + returning: [tournament_organizers!]! } """ -on_conflict condition type for table "tournament_stage_windows" +on_conflict condition type for table "tournament_organizers" """ -input tournament_stage_windows_on_conflict { - constraint: tournament_stage_windows_constraint! - update_columns: [tournament_stage_windows_update_column!]! = [] - where: tournament_stage_windows_bool_exp +input tournament_organizers_on_conflict { + constraint: tournament_organizers_constraint! + update_columns: [tournament_organizers_update_column!]! = [] + where: tournament_organizers_bool_exp } -"""Ordering options when selecting data from "tournament_stage_windows".""" -input tournament_stage_windows_order_by { - closes_at: order_by - created_at: order_by - default_match_at: order_by - id: order_by - opens_at: order_by - round: order_by - stage: tournament_stages_order_by - tournament_stage_id: order_by +"""Ordering options when selecting data from "tournament_organizers".""" +input tournament_organizers_order_by { + organization_team: teams_order_by + organization_team_id: order_by + organizer: players_order_by + steam_id: order_by + tournament: tournaments_order_by + tournament_id: order_by } -"""primary key columns input for table: tournament_stage_windows""" -input tournament_stage_windows_pk_columns_input { - id: uuid! +"""primary key columns input for table: tournament_organizers""" +input tournament_organizers_pk_columns_input { + steam_id: bigint! + tournament_id: uuid! } """ -select columns of table "tournament_stage_windows" +select columns of table "tournament_organizers" """ -enum tournament_stage_windows_select_column { - """column name""" - closes_at - - """column name""" - created_at - - """column name""" - default_match_at - - """column name""" - id - +enum tournament_organizers_select_column { """column name""" - opens_at + organization_team_id """column name""" - round + steam_id """column name""" - tournament_stage_id + tournament_id } """ -input type for updating data in table "tournament_stage_windows" +input type for updating data in table "tournament_organizers" """ -input tournament_stage_windows_set_input { - closes_at: timestamptz - created_at: timestamptz - default_match_at: timestamptz - id: uuid - opens_at: timestamptz - round: Int - tournament_stage_id: uuid +input tournament_organizers_set_input { + organization_team_id: uuid + steam_id: bigint + tournament_id: uuid } """aggregate stddev on columns""" -type tournament_stage_windows_stddev_fields { - round: Float +type tournament_organizers_stddev_fields { + steam_id: Float } """ -order by stddev() on columns of table "tournament_stage_windows" +order by stddev() on columns of table "tournament_organizers" """ -input tournament_stage_windows_stddev_order_by { - round: order_by +input tournament_organizers_stddev_order_by { + steam_id: order_by } """aggregate stddev_pop on columns""" -type tournament_stage_windows_stddev_pop_fields { - round: Float +type tournament_organizers_stddev_pop_fields { + steam_id: Float } """ -order by stddev_pop() on columns of table "tournament_stage_windows" +order by stddev_pop() on columns of table "tournament_organizers" """ -input tournament_stage_windows_stddev_pop_order_by { - round: order_by +input tournament_organizers_stddev_pop_order_by { + steam_id: order_by } """aggregate stddev_samp on columns""" -type tournament_stage_windows_stddev_samp_fields { - round: Float +type tournament_organizers_stddev_samp_fields { + steam_id: Float } """ -order by stddev_samp() on columns of table "tournament_stage_windows" +order by stddev_samp() on columns of table "tournament_organizers" """ -input tournament_stage_windows_stddev_samp_order_by { - round: order_by +input tournament_organizers_stddev_samp_order_by { + steam_id: order_by } """ -Streaming cursor of the table "tournament_stage_windows" +Streaming cursor of the table "tournament_organizers" """ -input tournament_stage_windows_stream_cursor_input { +input tournament_organizers_stream_cursor_input { """Stream column input with initial value""" - initial_value: tournament_stage_windows_stream_cursor_value_input! + initial_value: tournament_organizers_stream_cursor_value_input! """cursor ordering""" ordering: cursor_ordering } - -"""Initial value of the column from where the streaming should start""" -input tournament_stage_windows_stream_cursor_value_input { - closes_at: timestamptz - created_at: timestamptz - default_match_at: timestamptz - id: uuid - opens_at: timestamptz - round: Int - tournament_stage_id: uuid + +"""Initial value of the column from where the streaming should start""" +input tournament_organizers_stream_cursor_value_input { + organization_team_id: uuid + steam_id: bigint + tournament_id: uuid } """aggregate sum on columns""" -type tournament_stage_windows_sum_fields { - round: Int +type tournament_organizers_sum_fields { + steam_id: bigint } """ -order by sum() on columns of table "tournament_stage_windows" +order by sum() on columns of table "tournament_organizers" """ -input tournament_stage_windows_sum_order_by { - round: order_by +input tournament_organizers_sum_order_by { + steam_id: order_by } """ -update columns of table "tournament_stage_windows" +update columns of table "tournament_organizers" """ -enum tournament_stage_windows_update_column { - """column name""" - closes_at - - """column name""" - created_at - - """column name""" - default_match_at - - """column name""" - id - +enum tournament_organizers_update_column { """column name""" - opens_at + organization_team_id """column name""" - round + steam_id """column name""" - tournament_stage_id + tournament_id } -input tournament_stage_windows_updates { +input tournament_organizers_updates { """increments the numeric columns with given value of the filtered values""" - _inc: tournament_stage_windows_inc_input + _inc: tournament_organizers_inc_input """sets the columns of the filtered rows to the given values""" - _set: tournament_stage_windows_set_input + _set: tournament_organizers_set_input """filter the rows which have to be updated""" - where: tournament_stage_windows_bool_exp! + where: tournament_organizers_bool_exp! } """aggregate var_pop on columns""" -type tournament_stage_windows_var_pop_fields { - round: Float +type tournament_organizers_var_pop_fields { + steam_id: Float } """ -order by var_pop() on columns of table "tournament_stage_windows" +order by var_pop() on columns of table "tournament_organizers" """ -input tournament_stage_windows_var_pop_order_by { - round: order_by +input tournament_organizers_var_pop_order_by { + steam_id: order_by } """aggregate var_samp on columns""" -type tournament_stage_windows_var_samp_fields { - round: Float +type tournament_organizers_var_samp_fields { + steam_id: Float } """ -order by var_samp() on columns of table "tournament_stage_windows" +order by var_samp() on columns of table "tournament_organizers" """ -input tournament_stage_windows_var_samp_order_by { - round: order_by +input tournament_organizers_var_samp_order_by { + steam_id: order_by } """aggregate variance on columns""" -type tournament_stage_windows_variance_fields { - round: Float +type tournament_organizers_variance_fields { + steam_id: Float } """ -order by variance() on columns of table "tournament_stage_windows" +order by variance() on columns of table "tournament_organizers" """ -input tournament_stage_windows_variance_order_by { - round: order_by +input tournament_organizers_variance_order_by { + steam_id: order_by } """ -columns and relationships of "tournament_stages" +columns and relationships of "tournament_prizes" """ -type tournament_stages { - """An array relationship""" - brackets( - """distinct select on columns""" - distinct_on: [tournament_brackets_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: [tournament_brackets_order_by!] - - """filter the rows returned""" - where: tournament_brackets_bool_exp - ): [tournament_brackets!]! - - """An aggregate relationship""" - brackets_aggregate( - """distinct select on columns""" - distinct_on: [tournament_brackets_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: [tournament_brackets_order_by!] - - """filter the rows returned""" - where: tournament_brackets_bool_exp - ): tournament_brackets_aggregate! - decider_best_of: Int - default_best_of: Int! - - """An object relationship""" - e_tournament_stage_type: e_tournament_stage_types! - final_map_advantage: Int! - groups: Int +type tournament_prizes { + created_at: timestamptz! id: uuid! - match_options_id: uuid - max_rounds: Int - max_teams: Int! - min_teams: Int! - - """An object relationship""" - options: match_options order: Int! - - """An array relationship""" - results( - """distinct select on columns""" - distinct_on: [v_team_stage_results_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_team_stage_results_order_by!] - - """filter the rows returned""" - where: v_team_stage_results_bool_exp - ): [v_team_stage_results!]! - - """An aggregate relationship""" - results_aggregate( - """distinct select on columns""" - distinct_on: [v_team_stage_results_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_team_stage_results_order_by!] - - """filter the rows returned""" - where: v_team_stage_results_bool_exp - ): v_team_stage_results_aggregate! - settings( - """JSON select path""" - path: String - ): jsonb - swiss_no_elimination: Boolean! - third_place_match: Boolean! + place: String! + prize: String! """An object relationship""" tournament: tournaments! tournament_id: uuid! - type: e_tournament_stage_types_enum! - - """An array relationship""" - windows( - """distinct select on columns""" - distinct_on: [tournament_stage_windows_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: [tournament_stage_windows_order_by!] - - """filter the rows returned""" - where: tournament_stage_windows_bool_exp - ): [tournament_stage_windows!]! - - """An aggregate relationship""" - windows_aggregate( - """distinct select on columns""" - distinct_on: [tournament_stage_windows_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: [tournament_stage_windows_order_by!] - - """filter the rows returned""" - where: tournament_stage_windows_bool_exp - ): tournament_stage_windows_aggregate! } """ -aggregated selection of "tournament_stages" +aggregated selection of "tournament_prizes" """ -type tournament_stages_aggregate { - aggregate: tournament_stages_aggregate_fields - nodes: [tournament_stages!]! -} - -input tournament_stages_aggregate_bool_exp { - bool_and: tournament_stages_aggregate_bool_exp_bool_and - bool_or: tournament_stages_aggregate_bool_exp_bool_or - count: tournament_stages_aggregate_bool_exp_count -} - -input tournament_stages_aggregate_bool_exp_bool_and { - arguments: tournament_stages_select_column_tournament_stages_aggregate_bool_exp_bool_and_arguments_columns! - distinct: Boolean - filter: tournament_stages_bool_exp - predicate: Boolean_comparison_exp! +type tournament_prizes_aggregate { + aggregate: tournament_prizes_aggregate_fields + nodes: [tournament_prizes!]! } -input tournament_stages_aggregate_bool_exp_bool_or { - arguments: tournament_stages_select_column_tournament_stages_aggregate_bool_exp_bool_or_arguments_columns! - distinct: Boolean - filter: tournament_stages_bool_exp - predicate: Boolean_comparison_exp! +input tournament_prizes_aggregate_bool_exp { + count: tournament_prizes_aggregate_bool_exp_count } -input tournament_stages_aggregate_bool_exp_count { - arguments: [tournament_stages_select_column!] +input tournament_prizes_aggregate_bool_exp_count { + arguments: [tournament_prizes_select_column!] distinct: Boolean - filter: tournament_stages_bool_exp + filter: tournament_prizes_bool_exp predicate: Int_comparison_exp! } """ -aggregate fields of "tournament_stages" +aggregate fields of "tournament_prizes" """ -type tournament_stages_aggregate_fields { - avg: tournament_stages_avg_fields - count(columns: [tournament_stages_select_column!], distinct: Boolean): Int! - max: tournament_stages_max_fields - min: tournament_stages_min_fields - stddev: tournament_stages_stddev_fields - stddev_pop: tournament_stages_stddev_pop_fields - stddev_samp: tournament_stages_stddev_samp_fields - sum: tournament_stages_sum_fields - var_pop: tournament_stages_var_pop_fields - var_samp: tournament_stages_var_samp_fields - variance: tournament_stages_variance_fields +type tournament_prizes_aggregate_fields { + avg: tournament_prizes_avg_fields + count(columns: [tournament_prizes_select_column!], distinct: Boolean): Int! + max: tournament_prizes_max_fields + min: tournament_prizes_min_fields + stddev: tournament_prizes_stddev_fields + stddev_pop: tournament_prizes_stddev_pop_fields + stddev_samp: tournament_prizes_stddev_samp_fields + sum: tournament_prizes_sum_fields + var_pop: tournament_prizes_var_pop_fields + var_samp: tournament_prizes_var_samp_fields + variance: tournament_prizes_variance_fields } """ -order by aggregate values of table "tournament_stages" +order by aggregate values of table "tournament_prizes" """ -input tournament_stages_aggregate_order_by { - avg: tournament_stages_avg_order_by +input tournament_prizes_aggregate_order_by { + avg: tournament_prizes_avg_order_by count: order_by - max: tournament_stages_max_order_by - min: tournament_stages_min_order_by - stddev: tournament_stages_stddev_order_by - stddev_pop: tournament_stages_stddev_pop_order_by - stddev_samp: tournament_stages_stddev_samp_order_by - sum: tournament_stages_sum_order_by - var_pop: tournament_stages_var_pop_order_by - var_samp: tournament_stages_var_samp_order_by - variance: tournament_stages_variance_order_by -} - -"""append existing jsonb value of filtered columns with new jsonb value""" -input tournament_stages_append_input { - settings: jsonb + max: tournament_prizes_max_order_by + min: tournament_prizes_min_order_by + stddev: tournament_prizes_stddev_order_by + stddev_pop: tournament_prizes_stddev_pop_order_by + stddev_samp: tournament_prizes_stddev_samp_order_by + sum: tournament_prizes_sum_order_by + var_pop: tournament_prizes_var_pop_order_by + var_samp: tournament_prizes_var_samp_order_by + variance: tournament_prizes_variance_order_by } """ -input type for inserting array relation for remote table "tournament_stages" +input type for inserting array relation for remote table "tournament_prizes" """ -input tournament_stages_arr_rel_insert_input { - data: [tournament_stages_insert_input!]! +input tournament_prizes_arr_rel_insert_input { + data: [tournament_prizes_insert_input!]! """upsert condition""" - on_conflict: tournament_stages_on_conflict + on_conflict: tournament_prizes_on_conflict } """aggregate avg on columns""" -type tournament_stages_avg_fields { - decider_best_of: Float - default_best_of: Float - final_map_advantage: Float - groups: Float - max_rounds: Float - max_teams: Float - min_teams: Float +type tournament_prizes_avg_fields { order: Float } """ -order by avg() on columns of table "tournament_stages" +order by avg() on columns of table "tournament_prizes" """ -input tournament_stages_avg_order_by { - decider_best_of: order_by - default_best_of: order_by - final_map_advantage: order_by - groups: order_by - max_rounds: order_by - max_teams: order_by - min_teams: order_by +input tournament_prizes_avg_order_by { order: order_by } """ -Boolean expression to filter rows from the table "tournament_stages". All fields are combined with a logical 'AND'. +Boolean expression to filter rows from the table "tournament_prizes". All fields are combined with a logical 'AND'. """ -input tournament_stages_bool_exp { - _and: [tournament_stages_bool_exp!] - _not: tournament_stages_bool_exp - _or: [tournament_stages_bool_exp!] - brackets: tournament_brackets_bool_exp - brackets_aggregate: tournament_brackets_aggregate_bool_exp - decider_best_of: Int_comparison_exp - default_best_of: Int_comparison_exp - e_tournament_stage_type: e_tournament_stage_types_bool_exp - final_map_advantage: Int_comparison_exp - groups: Int_comparison_exp +input tournament_prizes_bool_exp { + _and: [tournament_prizes_bool_exp!] + _not: tournament_prizes_bool_exp + _or: [tournament_prizes_bool_exp!] + created_at: timestamptz_comparison_exp id: uuid_comparison_exp - match_options_id: uuid_comparison_exp - max_rounds: Int_comparison_exp - max_teams: Int_comparison_exp - min_teams: Int_comparison_exp - options: match_options_bool_exp order: Int_comparison_exp - results: v_team_stage_results_bool_exp - results_aggregate: v_team_stage_results_aggregate_bool_exp - settings: jsonb_comparison_exp - swiss_no_elimination: Boolean_comparison_exp - third_place_match: Boolean_comparison_exp + place: String_comparison_exp + prize: String_comparison_exp tournament: tournaments_bool_exp tournament_id: uuid_comparison_exp - type: e_tournament_stage_types_enum_comparison_exp - windows: tournament_stage_windows_bool_exp - windows_aggregate: tournament_stage_windows_aggregate_bool_exp } """ -unique or primary key constraints on table "tournament_stages" +unique or primary key constraints on table "tournament_prizes" """ -enum tournament_stages_constraint { +enum tournament_prizes_constraint { """ unique or primary key constraint on columns "id" """ - tournament_stages_pkey -} - -""" -delete the field or element with specified path (for JSON arrays, negative integers count from the end) -""" -input tournament_stages_delete_at_path_input { - settings: [String!] -} - -""" -delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array -""" -input tournament_stages_delete_elem_input { - settings: Int -} - -""" -delete key/value pair or string element. key/value pairs are matched based on their key value -""" -input tournament_stages_delete_key_input { - settings: String + tournament_prizes_pkey } """ -input type for incrementing numeric columns in table "tournament_stages" +input type for incrementing numeric columns in table "tournament_prizes" """ -input tournament_stages_inc_input { - decider_best_of: Int - default_best_of: Int - final_map_advantage: Int - groups: Int - max_rounds: Int - max_teams: Int - min_teams: Int +input tournament_prizes_inc_input { order: Int } """ -input type for inserting data into table "tournament_stages" +input type for inserting data into table "tournament_prizes" """ -input tournament_stages_insert_input { - brackets: tournament_brackets_arr_rel_insert_input - decider_best_of: Int - default_best_of: Int - e_tournament_stage_type: e_tournament_stage_types_obj_rel_insert_input - final_map_advantage: Int - groups: Int +input tournament_prizes_insert_input { + created_at: timestamptz id: uuid - match_options_id: uuid - max_rounds: Int - max_teams: Int - min_teams: Int - options: match_options_obj_rel_insert_input order: Int - results: v_team_stage_results_arr_rel_insert_input - settings: jsonb - swiss_no_elimination: Boolean - third_place_match: Boolean + place: String + prize: String tournament: tournaments_obj_rel_insert_input tournament_id: uuid - type: e_tournament_stage_types_enum - windows: tournament_stage_windows_arr_rel_insert_input } """aggregate max on columns""" -type tournament_stages_max_fields { - decider_best_of: Int - default_best_of: Int - final_map_advantage: Int - groups: Int +type tournament_prizes_max_fields { + created_at: timestamptz id: uuid - match_options_id: uuid - max_rounds: Int - max_teams: Int - min_teams: Int order: Int + place: String + prize: String tournament_id: uuid } """ -order by max() on columns of table "tournament_stages" +order by max() on columns of table "tournament_prizes" """ -input tournament_stages_max_order_by { - decider_best_of: order_by - default_best_of: order_by - final_map_advantage: order_by - groups: order_by +input tournament_prizes_max_order_by { + created_at: order_by id: order_by - match_options_id: order_by - max_rounds: order_by - max_teams: order_by - min_teams: order_by order: order_by + place: order_by + prize: order_by tournament_id: order_by } """aggregate min on columns""" -type tournament_stages_min_fields { - decider_best_of: Int - default_best_of: Int - final_map_advantage: Int - groups: Int +type tournament_prizes_min_fields { + created_at: timestamptz id: uuid - match_options_id: uuid - max_rounds: Int - max_teams: Int - min_teams: Int order: Int + place: String + prize: String tournament_id: uuid } """ -order by min() on columns of table "tournament_stages" +order by min() on columns of table "tournament_prizes" """ -input tournament_stages_min_order_by { - decider_best_of: order_by - default_best_of: order_by - final_map_advantage: order_by - groups: order_by +input tournament_prizes_min_order_by { + created_at: order_by id: order_by - match_options_id: order_by - max_rounds: order_by - max_teams: order_by - min_teams: order_by order: order_by + place: order_by + prize: order_by tournament_id: order_by } """ -response of any mutation on the table "tournament_stages" +response of any mutation on the table "tournament_prizes" """ -type tournament_stages_mutation_response { +type tournament_prizes_mutation_response { """number of rows affected by the mutation""" affected_rows: Int! """data from the rows affected by the mutation""" - returning: [tournament_stages!]! -} - -""" -input type for inserting object relation for remote table "tournament_stages" -""" -input tournament_stages_obj_rel_insert_input { - data: tournament_stages_insert_input! - - """upsert condition""" - on_conflict: tournament_stages_on_conflict + returning: [tournament_prizes!]! } """ -on_conflict condition type for table "tournament_stages" +on_conflict condition type for table "tournament_prizes" """ -input tournament_stages_on_conflict { - constraint: tournament_stages_constraint! - update_columns: [tournament_stages_update_column!]! = [] - where: tournament_stages_bool_exp -} - -"""Ordering options when selecting data from "tournament_stages".""" -input tournament_stages_order_by { - brackets_aggregate: tournament_brackets_aggregate_order_by - decider_best_of: order_by - default_best_of: order_by - e_tournament_stage_type: e_tournament_stage_types_order_by - final_map_advantage: order_by - groups: order_by +input tournament_prizes_on_conflict { + constraint: tournament_prizes_constraint! + update_columns: [tournament_prizes_update_column!]! = [] + where: tournament_prizes_bool_exp +} + +"""Ordering options when selecting data from "tournament_prizes".""" +input tournament_prizes_order_by { + created_at: order_by id: order_by - match_options_id: order_by - max_rounds: order_by - max_teams: order_by - min_teams: order_by - options: match_options_order_by order: order_by - results_aggregate: v_team_stage_results_aggregate_order_by - settings: order_by - swiss_no_elimination: order_by - third_place_match: order_by + place: order_by + prize: order_by tournament: tournaments_order_by tournament_id: order_by - type: order_by - windows_aggregate: tournament_stage_windows_aggregate_order_by } -"""primary key columns input for table: tournament_stages""" -input tournament_stages_pk_columns_input { +"""primary key columns input for table: tournament_prizes""" +input tournament_prizes_pk_columns_input { id: uuid! } -"""prepend existing jsonb value of filtered columns with new jsonb value""" -input tournament_stages_prepend_input { - settings: jsonb -} - """ -select columns of table "tournament_stages" +select columns of table "tournament_prizes" """ -enum tournament_stages_select_column { - """column name""" - decider_best_of - - """column name""" - default_best_of - - """column name""" - final_map_advantage - +enum tournament_prizes_select_column { """column name""" - groups + created_at """column name""" id - """column name""" - match_options_id - - """column name""" - max_rounds - - """column name""" - max_teams - - """column name""" - min_teams - """column name""" order """column name""" - settings - - """column name""" - swiss_no_elimination + place """column name""" - third_place_match + prize """column name""" tournament_id - - """column name""" - type -} - -""" -select "tournament_stages_aggregate_bool_exp_bool_and_arguments_columns" columns of table "tournament_stages" -""" -enum tournament_stages_select_column_tournament_stages_aggregate_bool_exp_bool_and_arguments_columns { - """column name""" - swiss_no_elimination - - """column name""" - third_place_match -} - -""" -select "tournament_stages_aggregate_bool_exp_bool_or_arguments_columns" columns of table "tournament_stages" -""" -enum tournament_stages_select_column_tournament_stages_aggregate_bool_exp_bool_or_arguments_columns { - """column name""" - swiss_no_elimination - - """column name""" - third_place_match } """ -input type for updating data in table "tournament_stages" +input type for updating data in table "tournament_prizes" """ -input tournament_stages_set_input { - decider_best_of: Int - default_best_of: Int - final_map_advantage: Int - groups: Int +input tournament_prizes_set_input { + created_at: timestamptz id: uuid - match_options_id: uuid - max_rounds: Int - max_teams: Int - min_teams: Int order: Int - settings: jsonb - swiss_no_elimination: Boolean - third_place_match: Boolean + place: String + prize: String tournament_id: uuid - type: e_tournament_stage_types_enum } """aggregate stddev on columns""" -type tournament_stages_stddev_fields { - decider_best_of: Float - default_best_of: Float - final_map_advantage: Float - groups: Float - max_rounds: Float - max_teams: Float - min_teams: Float +type tournament_prizes_stddev_fields { order: Float } """ -order by stddev() on columns of table "tournament_stages" +order by stddev() on columns of table "tournament_prizes" """ -input tournament_stages_stddev_order_by { - decider_best_of: order_by - default_best_of: order_by - final_map_advantage: order_by - groups: order_by - max_rounds: order_by - max_teams: order_by - min_teams: order_by +input tournament_prizes_stddev_order_by { order: order_by } """aggregate stddev_pop on columns""" -type tournament_stages_stddev_pop_fields { - decider_best_of: Float - default_best_of: Float - final_map_advantage: Float - groups: Float - max_rounds: Float - max_teams: Float - min_teams: Float +type tournament_prizes_stddev_pop_fields { order: Float } """ -order by stddev_pop() on columns of table "tournament_stages" +order by stddev_pop() on columns of table "tournament_prizes" """ -input tournament_stages_stddev_pop_order_by { - decider_best_of: order_by - default_best_of: order_by - final_map_advantage: order_by - groups: order_by - max_rounds: order_by - max_teams: order_by - min_teams: order_by +input tournament_prizes_stddev_pop_order_by { order: order_by } """aggregate stddev_samp on columns""" -type tournament_stages_stddev_samp_fields { - decider_best_of: Float - default_best_of: Float - final_map_advantage: Float - groups: Float - max_rounds: Float - max_teams: Float - min_teams: Float +type tournament_prizes_stddev_samp_fields { order: Float } """ -order by stddev_samp() on columns of table "tournament_stages" +order by stddev_samp() on columns of table "tournament_prizes" """ -input tournament_stages_stddev_samp_order_by { - decider_best_of: order_by - default_best_of: order_by - final_map_advantage: order_by - groups: order_by - max_rounds: order_by - max_teams: order_by - min_teams: order_by +input tournament_prizes_stddev_samp_order_by { order: order_by } """ -Streaming cursor of the table "tournament_stages" +Streaming cursor of the table "tournament_prizes" """ -input tournament_stages_stream_cursor_input { +input tournament_prizes_stream_cursor_input { """Stream column input with initial value""" - initial_value: tournament_stages_stream_cursor_value_input! + initial_value: tournament_prizes_stream_cursor_value_input! """cursor ordering""" ordering: cursor_ordering } """Initial value of the column from where the streaming should start""" -input tournament_stages_stream_cursor_value_input { - decider_best_of: Int - default_best_of: Int - final_map_advantage: Int - groups: Int +input tournament_prizes_stream_cursor_value_input { + created_at: timestamptz id: uuid - match_options_id: uuid - max_rounds: Int - max_teams: Int - min_teams: Int order: Int - settings: jsonb - swiss_no_elimination: Boolean - third_place_match: Boolean + place: String + prize: String tournament_id: uuid - type: e_tournament_stage_types_enum } """aggregate sum on columns""" -type tournament_stages_sum_fields { - decider_best_of: Int - default_best_of: Int - final_map_advantage: Int - groups: Int - max_rounds: Int - max_teams: Int - min_teams: Int +type tournament_prizes_sum_fields { order: Int } """ -order by sum() on columns of table "tournament_stages" +order by sum() on columns of table "tournament_prizes" """ -input tournament_stages_sum_order_by { - decider_best_of: order_by - default_best_of: order_by - final_map_advantage: order_by - groups: order_by - max_rounds: order_by - max_teams: order_by - min_teams: order_by +input tournament_prizes_sum_order_by { order: order_by } """ -update columns of table "tournament_stages" +update columns of table "tournament_prizes" """ -enum tournament_stages_update_column { - """column name""" - decider_best_of - - """column name""" - default_best_of - - """column name""" - final_map_advantage - +enum tournament_prizes_update_column { """column name""" - groups + created_at """column name""" id - """column name""" - match_options_id - - """column name""" - max_rounds - - """column name""" - max_teams - - """column name""" - min_teams - """column name""" order """column name""" - settings - - """column name""" - swiss_no_elimination + place """column name""" - third_place_match + prize """column name""" tournament_id - - """column name""" - type } -input tournament_stages_updates { - """append existing jsonb value of filtered columns with new jsonb value""" - _append: tournament_stages_append_input - - """ - delete the field or element with specified path (for JSON arrays, negative integers count from the end) - """ - _delete_at_path: tournament_stages_delete_at_path_input - - """ - delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array - """ - _delete_elem: tournament_stages_delete_elem_input - - """ - delete key/value pair or string element. key/value pairs are matched based on their key value - """ - _delete_key: tournament_stages_delete_key_input - +input tournament_prizes_updates { """increments the numeric columns with given value of the filtered values""" - _inc: tournament_stages_inc_input - - """prepend existing jsonb value of filtered columns with new jsonb value""" - _prepend: tournament_stages_prepend_input + _inc: tournament_prizes_inc_input """sets the columns of the filtered rows to the given values""" - _set: tournament_stages_set_input + _set: tournament_prizes_set_input """filter the rows which have to be updated""" - where: tournament_stages_bool_exp! + where: tournament_prizes_bool_exp! } """aggregate var_pop on columns""" -type tournament_stages_var_pop_fields { - decider_best_of: Float - default_best_of: Float - final_map_advantage: Float - groups: Float - max_rounds: Float - max_teams: Float - min_teams: Float +type tournament_prizes_var_pop_fields { order: Float } """ -order by var_pop() on columns of table "tournament_stages" +order by var_pop() on columns of table "tournament_prizes" """ -input tournament_stages_var_pop_order_by { - decider_best_of: order_by - default_best_of: order_by - final_map_advantage: order_by - groups: order_by - max_rounds: order_by - max_teams: order_by - min_teams: order_by +input tournament_prizes_var_pop_order_by { order: order_by } """aggregate var_samp on columns""" -type tournament_stages_var_samp_fields { - decider_best_of: Float - default_best_of: Float - final_map_advantage: Float - groups: Float - max_rounds: Float - max_teams: Float - min_teams: Float +type tournament_prizes_var_samp_fields { order: Float } """ -order by var_samp() on columns of table "tournament_stages" +order by var_samp() on columns of table "tournament_prizes" """ -input tournament_stages_var_samp_order_by { - decider_best_of: order_by - default_best_of: order_by - final_map_advantage: order_by - groups: order_by - max_rounds: order_by - max_teams: order_by - min_teams: order_by +input tournament_prizes_var_samp_order_by { order: order_by } """aggregate variance on columns""" -type tournament_stages_variance_fields { - decider_best_of: Float - default_best_of: Float - final_map_advantage: Float - groups: Float - max_rounds: Float - max_teams: Float - min_teams: Float +type tournament_prizes_variance_fields { order: Float } """ -order by variance() on columns of table "tournament_stages" +order by variance() on columns of table "tournament_prizes" """ -input tournament_stages_variance_order_by { - decider_best_of: order_by - default_best_of: order_by - final_map_advantage: order_by - groups: order_by - max_rounds: order_by - max_teams: order_by - min_teams: order_by +input tournament_prizes_variance_order_by { order: order_by } """ -columns and relationships of "tournament_team_invites" +columns and relationships of "tournament_stage_windows" """ -type tournament_team_invites { +type tournament_stage_windows { + closes_at: timestamptz created_at: timestamptz! + default_match_at: timestamptz id: uuid! + opens_at: timestamptz + round: Int! """An object relationship""" - invited_by: players! - invited_by_player_steam_id: bigint! - - """An object relationship""" - player: players! - steam_id: bigint! - - """An object relationship""" - team: tournament_teams! - tournament_team_id: uuid! + stage: tournament_stages! + tournament_stage_id: uuid! } """ -aggregated selection of "tournament_team_invites" +aggregated selection of "tournament_stage_windows" """ -type tournament_team_invites_aggregate { - aggregate: tournament_team_invites_aggregate_fields - nodes: [tournament_team_invites!]! +type tournament_stage_windows_aggregate { + aggregate: tournament_stage_windows_aggregate_fields + nodes: [tournament_stage_windows!]! } -input tournament_team_invites_aggregate_bool_exp { - count: tournament_team_invites_aggregate_bool_exp_count +input tournament_stage_windows_aggregate_bool_exp { + count: tournament_stage_windows_aggregate_bool_exp_count } -input tournament_team_invites_aggregate_bool_exp_count { - arguments: [tournament_team_invites_select_column!] +input tournament_stage_windows_aggregate_bool_exp_count { + arguments: [tournament_stage_windows_select_column!] distinct: Boolean - filter: tournament_team_invites_bool_exp + filter: tournament_stage_windows_bool_exp predicate: Int_comparison_exp! } """ -aggregate fields of "tournament_team_invites" +aggregate fields of "tournament_stage_windows" """ -type tournament_team_invites_aggregate_fields { - avg: tournament_team_invites_avg_fields - count(columns: [tournament_team_invites_select_column!], distinct: Boolean): Int! - max: tournament_team_invites_max_fields - min: tournament_team_invites_min_fields - stddev: tournament_team_invites_stddev_fields - stddev_pop: tournament_team_invites_stddev_pop_fields - stddev_samp: tournament_team_invites_stddev_samp_fields - sum: tournament_team_invites_sum_fields - var_pop: tournament_team_invites_var_pop_fields - var_samp: tournament_team_invites_var_samp_fields - variance: tournament_team_invites_variance_fields +type tournament_stage_windows_aggregate_fields { + avg: tournament_stage_windows_avg_fields + count(columns: [tournament_stage_windows_select_column!], distinct: Boolean): Int! + max: tournament_stage_windows_max_fields + min: tournament_stage_windows_min_fields + stddev: tournament_stage_windows_stddev_fields + stddev_pop: tournament_stage_windows_stddev_pop_fields + stddev_samp: tournament_stage_windows_stddev_samp_fields + sum: tournament_stage_windows_sum_fields + var_pop: tournament_stage_windows_var_pop_fields + var_samp: tournament_stage_windows_var_samp_fields + variance: tournament_stage_windows_variance_fields } """ -order by aggregate values of table "tournament_team_invites" +order by aggregate values of table "tournament_stage_windows" """ -input tournament_team_invites_aggregate_order_by { - avg: tournament_team_invites_avg_order_by +input tournament_stage_windows_aggregate_order_by { + avg: tournament_stage_windows_avg_order_by count: order_by - max: tournament_team_invites_max_order_by - min: tournament_team_invites_min_order_by - stddev: tournament_team_invites_stddev_order_by - stddev_pop: tournament_team_invites_stddev_pop_order_by - stddev_samp: tournament_team_invites_stddev_samp_order_by - sum: tournament_team_invites_sum_order_by - var_pop: tournament_team_invites_var_pop_order_by - var_samp: tournament_team_invites_var_samp_order_by - variance: tournament_team_invites_variance_order_by + max: tournament_stage_windows_max_order_by + min: tournament_stage_windows_min_order_by + stddev: tournament_stage_windows_stddev_order_by + stddev_pop: tournament_stage_windows_stddev_pop_order_by + stddev_samp: tournament_stage_windows_stddev_samp_order_by + sum: tournament_stage_windows_sum_order_by + var_pop: tournament_stage_windows_var_pop_order_by + var_samp: tournament_stage_windows_var_samp_order_by + variance: tournament_stage_windows_variance_order_by } """ -input type for inserting array relation for remote table "tournament_team_invites" +input type for inserting array relation for remote table "tournament_stage_windows" """ -input tournament_team_invites_arr_rel_insert_input { - data: [tournament_team_invites_insert_input!]! +input tournament_stage_windows_arr_rel_insert_input { + data: [tournament_stage_windows_insert_input!]! """upsert condition""" - on_conflict: tournament_team_invites_on_conflict + on_conflict: tournament_stage_windows_on_conflict } """aggregate avg on columns""" -type tournament_team_invites_avg_fields { - invited_by_player_steam_id: Float - steam_id: Float +type tournament_stage_windows_avg_fields { + round: Float } """ -order by avg() on columns of table "tournament_team_invites" +order by avg() on columns of table "tournament_stage_windows" """ -input tournament_team_invites_avg_order_by { - invited_by_player_steam_id: order_by - steam_id: order_by +input tournament_stage_windows_avg_order_by { + round: order_by } """ -Boolean expression to filter rows from the table "tournament_team_invites". All fields are combined with a logical 'AND'. +Boolean expression to filter rows from the table "tournament_stage_windows". All fields are combined with a logical 'AND'. """ -input tournament_team_invites_bool_exp { - _and: [tournament_team_invites_bool_exp!] - _not: tournament_team_invites_bool_exp - _or: [tournament_team_invites_bool_exp!] +input tournament_stage_windows_bool_exp { + _and: [tournament_stage_windows_bool_exp!] + _not: tournament_stage_windows_bool_exp + _or: [tournament_stage_windows_bool_exp!] + closes_at: timestamptz_comparison_exp created_at: timestamptz_comparison_exp + default_match_at: timestamptz_comparison_exp id: uuid_comparison_exp - invited_by: players_bool_exp - invited_by_player_steam_id: bigint_comparison_exp - player: players_bool_exp - steam_id: bigint_comparison_exp - team: tournament_teams_bool_exp - tournament_team_id: uuid_comparison_exp + opens_at: timestamptz_comparison_exp + round: Int_comparison_exp + stage: tournament_stages_bool_exp + tournament_stage_id: uuid_comparison_exp } """ -unique or primary key constraints on table "tournament_team_invites" +unique or primary key constraints on table "tournament_stage_windows" """ -enum tournament_team_invites_constraint { +enum tournament_stage_windows_constraint { """ unique or primary key constraint on columns "id" """ - tournament_team_invites_pkey + tournament_stage_windows_pkey """ - unique or primary key constraint on columns "steam_id", "tournament_team_id" + unique or primary key constraint on columns "tournament_stage_id", "round" """ - tournament_team_invites_steam_id_tournament_team_id_key + tournament_stage_windows_tournament_stage_id_round_key } """ -input type for incrementing numeric columns in table "tournament_team_invites" +input type for incrementing numeric columns in table "tournament_stage_windows" """ -input tournament_team_invites_inc_input { - invited_by_player_steam_id: bigint - steam_id: bigint +input tournament_stage_windows_inc_input { + round: Int } """ -input type for inserting data into table "tournament_team_invites" +input type for inserting data into table "tournament_stage_windows" """ -input tournament_team_invites_insert_input { +input tournament_stage_windows_insert_input { + closes_at: timestamptz created_at: timestamptz + default_match_at: timestamptz id: uuid - invited_by: players_obj_rel_insert_input - invited_by_player_steam_id: bigint - player: players_obj_rel_insert_input - steam_id: bigint - team: tournament_teams_obj_rel_insert_input - tournament_team_id: uuid + opens_at: timestamptz + round: Int + stage: tournament_stages_obj_rel_insert_input + tournament_stage_id: uuid } """aggregate max on columns""" -type tournament_team_invites_max_fields { +type tournament_stage_windows_max_fields { + closes_at: timestamptz created_at: timestamptz + default_match_at: timestamptz id: uuid - invited_by_player_steam_id: bigint - steam_id: bigint - tournament_team_id: uuid + opens_at: timestamptz + round: Int + tournament_stage_id: uuid } """ -order by max() on columns of table "tournament_team_invites" +order by max() on columns of table "tournament_stage_windows" """ -input tournament_team_invites_max_order_by { +input tournament_stage_windows_max_order_by { + closes_at: order_by created_at: order_by + default_match_at: order_by id: order_by - invited_by_player_steam_id: order_by - steam_id: order_by - tournament_team_id: order_by + opens_at: order_by + round: order_by + tournament_stage_id: order_by } """aggregate min on columns""" -type tournament_team_invites_min_fields { +type tournament_stage_windows_min_fields { + closes_at: timestamptz created_at: timestamptz + default_match_at: timestamptz id: uuid - invited_by_player_steam_id: bigint - steam_id: bigint - tournament_team_id: uuid + opens_at: timestamptz + round: Int + tournament_stage_id: uuid } """ -order by min() on columns of table "tournament_team_invites" +order by min() on columns of table "tournament_stage_windows" """ -input tournament_team_invites_min_order_by { +input tournament_stage_windows_min_order_by { + closes_at: order_by created_at: order_by + default_match_at: order_by id: order_by - invited_by_player_steam_id: order_by - steam_id: order_by - tournament_team_id: order_by + opens_at: order_by + round: order_by + tournament_stage_id: order_by } """ -response of any mutation on the table "tournament_team_invites" +response of any mutation on the table "tournament_stage_windows" """ -type tournament_team_invites_mutation_response { +type tournament_stage_windows_mutation_response { """number of rows affected by the mutation""" affected_rows: Int! """data from the rows affected by the mutation""" - returning: [tournament_team_invites!]! + returning: [tournament_stage_windows!]! } """ -on_conflict condition type for table "tournament_team_invites" +on_conflict condition type for table "tournament_stage_windows" """ -input tournament_team_invites_on_conflict { - constraint: tournament_team_invites_constraint! - update_columns: [tournament_team_invites_update_column!]! = [] - where: tournament_team_invites_bool_exp +input tournament_stage_windows_on_conflict { + constraint: tournament_stage_windows_constraint! + update_columns: [tournament_stage_windows_update_column!]! = [] + where: tournament_stage_windows_bool_exp } -"""Ordering options when selecting data from "tournament_team_invites".""" -input tournament_team_invites_order_by { +"""Ordering options when selecting data from "tournament_stage_windows".""" +input tournament_stage_windows_order_by { + closes_at: order_by created_at: order_by + default_match_at: order_by id: order_by - invited_by: players_order_by - invited_by_player_steam_id: order_by - player: players_order_by - steam_id: order_by - team: tournament_teams_order_by - tournament_team_id: order_by + opens_at: order_by + round: order_by + stage: tournament_stages_order_by + tournament_stage_id: order_by } -"""primary key columns input for table: tournament_team_invites""" -input tournament_team_invites_pk_columns_input { +"""primary key columns input for table: tournament_stage_windows""" +input tournament_stage_windows_pk_columns_input { id: uuid! } """ -select columns of table "tournament_team_invites" +select columns of table "tournament_stage_windows" """ -enum tournament_team_invites_select_column { +enum tournament_stage_windows_select_column { + """column name""" + closes_at + """column name""" created_at + """column name""" + default_match_at + """column name""" id """column name""" - invited_by_player_steam_id + opens_at """column name""" - steam_id + round """column name""" - tournament_team_id + tournament_stage_id } """ -input type for updating data in table "tournament_team_invites" +input type for updating data in table "tournament_stage_windows" """ -input tournament_team_invites_set_input { +input tournament_stage_windows_set_input { + closes_at: timestamptz created_at: timestamptz + default_match_at: timestamptz id: uuid - invited_by_player_steam_id: bigint - steam_id: bigint - tournament_team_id: uuid + opens_at: timestamptz + round: Int + tournament_stage_id: uuid } """aggregate stddev on columns""" -type tournament_team_invites_stddev_fields { - invited_by_player_steam_id: Float - steam_id: Float +type tournament_stage_windows_stddev_fields { + round: Float } """ -order by stddev() on columns of table "tournament_team_invites" +order by stddev() on columns of table "tournament_stage_windows" """ -input tournament_team_invites_stddev_order_by { - invited_by_player_steam_id: order_by - steam_id: order_by +input tournament_stage_windows_stddev_order_by { + round: order_by } """aggregate stddev_pop on columns""" -type tournament_team_invites_stddev_pop_fields { - invited_by_player_steam_id: Float - steam_id: Float +type tournament_stage_windows_stddev_pop_fields { + round: Float } """ -order by stddev_pop() on columns of table "tournament_team_invites" +order by stddev_pop() on columns of table "tournament_stage_windows" """ -input tournament_team_invites_stddev_pop_order_by { - invited_by_player_steam_id: order_by - steam_id: order_by +input tournament_stage_windows_stddev_pop_order_by { + round: order_by } """aggregate stddev_samp on columns""" -type tournament_team_invites_stddev_samp_fields { - invited_by_player_steam_id: Float - steam_id: Float +type tournament_stage_windows_stddev_samp_fields { + round: Float } """ -order by stddev_samp() on columns of table "tournament_team_invites" +order by stddev_samp() on columns of table "tournament_stage_windows" """ -input tournament_team_invites_stddev_samp_order_by { - invited_by_player_steam_id: order_by - steam_id: order_by +input tournament_stage_windows_stddev_samp_order_by { + round: order_by } """ -Streaming cursor of the table "tournament_team_invites" +Streaming cursor of the table "tournament_stage_windows" """ -input tournament_team_invites_stream_cursor_input { +input tournament_stage_windows_stream_cursor_input { """Stream column input with initial value""" - initial_value: tournament_team_invites_stream_cursor_value_input! + initial_value: tournament_stage_windows_stream_cursor_value_input! """cursor ordering""" ordering: cursor_ordering } """Initial value of the column from where the streaming should start""" -input tournament_team_invites_stream_cursor_value_input { +input tournament_stage_windows_stream_cursor_value_input { + closes_at: timestamptz created_at: timestamptz + default_match_at: timestamptz id: uuid - invited_by_player_steam_id: bigint - steam_id: bigint - tournament_team_id: uuid + opens_at: timestamptz + round: Int + tournament_stage_id: uuid } """aggregate sum on columns""" -type tournament_team_invites_sum_fields { - invited_by_player_steam_id: bigint - steam_id: bigint +type tournament_stage_windows_sum_fields { + round: Int } """ -order by sum() on columns of table "tournament_team_invites" +order by sum() on columns of table "tournament_stage_windows" """ -input tournament_team_invites_sum_order_by { - invited_by_player_steam_id: order_by - steam_id: order_by +input tournament_stage_windows_sum_order_by { + round: order_by } """ -update columns of table "tournament_team_invites" +update columns of table "tournament_stage_windows" """ -enum tournament_team_invites_update_column { +enum tournament_stage_windows_update_column { + """column name""" + closes_at + """column name""" created_at + """column name""" + default_match_at + """column name""" id """column name""" - invited_by_player_steam_id + opens_at """column name""" - steam_id + round """column name""" - tournament_team_id + tournament_stage_id } -input tournament_team_invites_updates { +input tournament_stage_windows_updates { """increments the numeric columns with given value of the filtered values""" - _inc: tournament_team_invites_inc_input + _inc: tournament_stage_windows_inc_input """sets the columns of the filtered rows to the given values""" - _set: tournament_team_invites_set_input + _set: tournament_stage_windows_set_input """filter the rows which have to be updated""" - where: tournament_team_invites_bool_exp! + where: tournament_stage_windows_bool_exp! } """aggregate var_pop on columns""" -type tournament_team_invites_var_pop_fields { - invited_by_player_steam_id: Float - steam_id: Float +type tournament_stage_windows_var_pop_fields { + round: Float } """ -order by var_pop() on columns of table "tournament_team_invites" +order by var_pop() on columns of table "tournament_stage_windows" """ -input tournament_team_invites_var_pop_order_by { - invited_by_player_steam_id: order_by - steam_id: order_by +input tournament_stage_windows_var_pop_order_by { + round: order_by } """aggregate var_samp on columns""" -type tournament_team_invites_var_samp_fields { - invited_by_player_steam_id: Float - steam_id: Float +type tournament_stage_windows_var_samp_fields { + round: Float } """ -order by var_samp() on columns of table "tournament_team_invites" +order by var_samp() on columns of table "tournament_stage_windows" """ -input tournament_team_invites_var_samp_order_by { - invited_by_player_steam_id: order_by - steam_id: order_by +input tournament_stage_windows_var_samp_order_by { + round: order_by } """aggregate variance on columns""" -type tournament_team_invites_variance_fields { - invited_by_player_steam_id: Float - steam_id: Float +type tournament_stage_windows_variance_fields { + round: Float } """ -order by variance() on columns of table "tournament_team_invites" +order by variance() on columns of table "tournament_stage_windows" """ -input tournament_team_invites_variance_order_by { - invited_by_player_steam_id: order_by - steam_id: order_by +input tournament_stage_windows_variance_order_by { + round: order_by } """ -columns and relationships of "tournament_team_roster" +columns and relationships of "tournament_stages" """ -type tournament_team_roster { +type tournament_stages { + """An array relationship""" + brackets( + """distinct select on columns""" + distinct_on: [tournament_brackets_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: [tournament_brackets_order_by!] + + """filter the rows returned""" + where: tournament_brackets_bool_exp + ): [tournament_brackets!]! + + """An aggregate relationship""" + brackets_aggregate( + """distinct select on columns""" + distinct_on: [tournament_brackets_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: [tournament_brackets_order_by!] + + """filter the rows returned""" + where: tournament_brackets_bool_exp + ): tournament_brackets_aggregate! + decider_best_of: Int + default_best_of: Int! + """An object relationship""" - e_team_role: e_team_roles! + e_tournament_stage_type: e_tournament_stage_types! + final_map_advantage: Int! + groups: Int + id: uuid! + match_options_id: uuid + max_rounds: Int + max_teams: Int! + min_teams: Int! """An object relationship""" - player: players! - player_steam_id: bigint! - role: e_team_roles_enum! + options: match_options + order: Int! + + """An array relationship""" + results( + """distinct select on columns""" + distinct_on: [v_team_stage_results_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_team_stage_results_order_by!] + + """filter the rows returned""" + where: v_team_stage_results_bool_exp + ): [v_team_stage_results!]! + + """An aggregate relationship""" + results_aggregate( + """distinct select on columns""" + distinct_on: [v_team_stage_results_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_team_stage_results_order_by!] + + """filter the rows returned""" + where: v_team_stage_results_bool_exp + ): v_team_stage_results_aggregate! + settings( + """JSON select path""" + path: String + ): jsonb + swiss_no_elimination: Boolean! + third_place_match: Boolean! """An object relationship""" tournament: tournaments! tournament_id: uuid! + type: e_tournament_stage_types_enum! - """An object relationship""" - tournament_team: tournament_teams! - tournament_team_id: uuid! + """An array relationship""" + windows( + """distinct select on columns""" + distinct_on: [tournament_stage_windows_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: [tournament_stage_windows_order_by!] + + """filter the rows returned""" + where: tournament_stage_windows_bool_exp + ): [tournament_stage_windows!]! + + """An aggregate relationship""" + windows_aggregate( + """distinct select on columns""" + distinct_on: [tournament_stage_windows_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: [tournament_stage_windows_order_by!] + + """filter the rows returned""" + where: tournament_stage_windows_bool_exp + ): tournament_stage_windows_aggregate! } """ -aggregated selection of "tournament_team_roster" +aggregated selection of "tournament_stages" """ -type tournament_team_roster_aggregate { - aggregate: tournament_team_roster_aggregate_fields - nodes: [tournament_team_roster!]! +type tournament_stages_aggregate { + aggregate: tournament_stages_aggregate_fields + nodes: [tournament_stages!]! } -input tournament_team_roster_aggregate_bool_exp { - count: tournament_team_roster_aggregate_bool_exp_count +input tournament_stages_aggregate_bool_exp { + bool_and: tournament_stages_aggregate_bool_exp_bool_and + bool_or: tournament_stages_aggregate_bool_exp_bool_or + count: tournament_stages_aggregate_bool_exp_count } -input tournament_team_roster_aggregate_bool_exp_count { - arguments: [tournament_team_roster_select_column!] +input tournament_stages_aggregate_bool_exp_bool_and { + arguments: tournament_stages_select_column_tournament_stages_aggregate_bool_exp_bool_and_arguments_columns! distinct: Boolean - filter: tournament_team_roster_bool_exp + filter: tournament_stages_bool_exp + predicate: Boolean_comparison_exp! +} + +input tournament_stages_aggregate_bool_exp_bool_or { + arguments: tournament_stages_select_column_tournament_stages_aggregate_bool_exp_bool_or_arguments_columns! + distinct: Boolean + filter: tournament_stages_bool_exp + predicate: Boolean_comparison_exp! +} + +input tournament_stages_aggregate_bool_exp_count { + arguments: [tournament_stages_select_column!] + distinct: Boolean + filter: tournament_stages_bool_exp predicate: Int_comparison_exp! } """ -aggregate fields of "tournament_team_roster" +aggregate fields of "tournament_stages" """ -type tournament_team_roster_aggregate_fields { - avg: tournament_team_roster_avg_fields - count(columns: [tournament_team_roster_select_column!], distinct: Boolean): Int! - max: tournament_team_roster_max_fields - min: tournament_team_roster_min_fields - stddev: tournament_team_roster_stddev_fields - stddev_pop: tournament_team_roster_stddev_pop_fields - stddev_samp: tournament_team_roster_stddev_samp_fields - sum: tournament_team_roster_sum_fields - var_pop: tournament_team_roster_var_pop_fields - var_samp: tournament_team_roster_var_samp_fields - variance: tournament_team_roster_variance_fields +type tournament_stages_aggregate_fields { + avg: tournament_stages_avg_fields + count(columns: [tournament_stages_select_column!], distinct: Boolean): Int! + max: tournament_stages_max_fields + min: tournament_stages_min_fields + stddev: tournament_stages_stddev_fields + stddev_pop: tournament_stages_stddev_pop_fields + stddev_samp: tournament_stages_stddev_samp_fields + sum: tournament_stages_sum_fields + var_pop: tournament_stages_var_pop_fields + var_samp: tournament_stages_var_samp_fields + variance: tournament_stages_variance_fields } """ -order by aggregate values of table "tournament_team_roster" +order by aggregate values of table "tournament_stages" """ -input tournament_team_roster_aggregate_order_by { - avg: tournament_team_roster_avg_order_by +input tournament_stages_aggregate_order_by { + avg: tournament_stages_avg_order_by count: order_by - max: tournament_team_roster_max_order_by - min: tournament_team_roster_min_order_by - stddev: tournament_team_roster_stddev_order_by - stddev_pop: tournament_team_roster_stddev_pop_order_by - stddev_samp: tournament_team_roster_stddev_samp_order_by - sum: tournament_team_roster_sum_order_by - var_pop: tournament_team_roster_var_pop_order_by - var_samp: tournament_team_roster_var_samp_order_by - variance: tournament_team_roster_variance_order_by + max: tournament_stages_max_order_by + min: tournament_stages_min_order_by + stddev: tournament_stages_stddev_order_by + stddev_pop: tournament_stages_stddev_pop_order_by + stddev_samp: tournament_stages_stddev_samp_order_by + sum: tournament_stages_sum_order_by + var_pop: tournament_stages_var_pop_order_by + var_samp: tournament_stages_var_samp_order_by + variance: tournament_stages_variance_order_by +} + +"""append existing jsonb value of filtered columns with new jsonb value""" +input tournament_stages_append_input { + settings: jsonb } """ -input type for inserting array relation for remote table "tournament_team_roster" +input type for inserting array relation for remote table "tournament_stages" """ -input tournament_team_roster_arr_rel_insert_input { - data: [tournament_team_roster_insert_input!]! +input tournament_stages_arr_rel_insert_input { + data: [tournament_stages_insert_input!]! """upsert condition""" - on_conflict: tournament_team_roster_on_conflict + on_conflict: tournament_stages_on_conflict +} + +"""aggregate avg on columns""" +type tournament_stages_avg_fields { + decider_best_of: Float + default_best_of: Float + final_map_advantage: Float + groups: Float + max_rounds: Float + max_teams: Float + min_teams: Float + order: Float +} + +""" +order by avg() on columns of table "tournament_stages" +""" +input tournament_stages_avg_order_by { + decider_best_of: order_by + default_best_of: order_by + final_map_advantage: order_by + groups: order_by + max_rounds: order_by + max_teams: order_by + min_teams: order_by + order: order_by +} + +""" +Boolean expression to filter rows from the table "tournament_stages". All fields are combined with a logical 'AND'. +""" +input tournament_stages_bool_exp { + _and: [tournament_stages_bool_exp!] + _not: tournament_stages_bool_exp + _or: [tournament_stages_bool_exp!] + brackets: tournament_brackets_bool_exp + brackets_aggregate: tournament_brackets_aggregate_bool_exp + decider_best_of: Int_comparison_exp + default_best_of: Int_comparison_exp + e_tournament_stage_type: e_tournament_stage_types_bool_exp + final_map_advantage: Int_comparison_exp + groups: Int_comparison_exp + id: uuid_comparison_exp + match_options_id: uuid_comparison_exp + max_rounds: Int_comparison_exp + max_teams: Int_comparison_exp + min_teams: Int_comparison_exp + options: match_options_bool_exp + order: Int_comparison_exp + results: v_team_stage_results_bool_exp + results_aggregate: v_team_stage_results_aggregate_bool_exp + settings: jsonb_comparison_exp + swiss_no_elimination: Boolean_comparison_exp + third_place_match: Boolean_comparison_exp + tournament: tournaments_bool_exp + tournament_id: uuid_comparison_exp + type: e_tournament_stage_types_enum_comparison_exp + windows: tournament_stage_windows_bool_exp + windows_aggregate: tournament_stage_windows_aggregate_bool_exp } -"""aggregate avg on columns""" -type tournament_team_roster_avg_fields { - player_steam_id: Float +""" +unique or primary key constraints on table "tournament_stages" +""" +enum tournament_stages_constraint { + """ + unique or primary key constraint on columns "id" + """ + tournament_stages_pkey } """ -order by avg() on columns of table "tournament_team_roster" +delete the field or element with specified path (for JSON arrays, negative integers count from the end) """ -input tournament_team_roster_avg_order_by { - player_steam_id: order_by +input tournament_stages_delete_at_path_input { + settings: [String!] } """ -Boolean expression to filter rows from the table "tournament_team_roster". All fields are combined with a logical 'AND'. +delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array """ -input tournament_team_roster_bool_exp { - _and: [tournament_team_roster_bool_exp!] - _not: tournament_team_roster_bool_exp - _or: [tournament_team_roster_bool_exp!] - e_team_role: e_team_roles_bool_exp - player: players_bool_exp - player_steam_id: bigint_comparison_exp - role: e_team_roles_enum_comparison_exp - tournament: tournaments_bool_exp - tournament_id: uuid_comparison_exp - tournament_team: tournament_teams_bool_exp - tournament_team_id: uuid_comparison_exp +input tournament_stages_delete_elem_input { + settings: Int } """ -unique or primary key constraints on table "tournament_team_roster" +delete key/value pair or string element. key/value pairs are matched based on their key value """ -enum tournament_team_roster_constraint { - """ - unique or primary key constraint on columns "player_steam_id", "tournament_id" - """ - tournament_roster_pkey - - """ - unique or primary key constraint on columns "player_steam_id", "tournament_id" - """ - tournament_roster_player_steam_id_tournament_id_key +input tournament_stages_delete_key_input { + settings: String } """ -input type for incrementing numeric columns in table "tournament_team_roster" +input type for incrementing numeric columns in table "tournament_stages" """ -input tournament_team_roster_inc_input { - player_steam_id: bigint +input tournament_stages_inc_input { + decider_best_of: Int + default_best_of: Int + final_map_advantage: Int + groups: Int + max_rounds: Int + max_teams: Int + min_teams: Int + order: Int } """ -input type for inserting data into table "tournament_team_roster" +input type for inserting data into table "tournament_stages" """ -input tournament_team_roster_insert_input { - e_team_role: e_team_roles_obj_rel_insert_input - player: players_obj_rel_insert_input - player_steam_id: bigint - role: e_team_roles_enum +input tournament_stages_insert_input { + brackets: tournament_brackets_arr_rel_insert_input + decider_best_of: Int + default_best_of: Int + e_tournament_stage_type: e_tournament_stage_types_obj_rel_insert_input + final_map_advantage: Int + groups: Int + id: uuid + match_options_id: uuid + max_rounds: Int + max_teams: Int + min_teams: Int + options: match_options_obj_rel_insert_input + order: Int + results: v_team_stage_results_arr_rel_insert_input + settings: jsonb + swiss_no_elimination: Boolean + third_place_match: Boolean tournament: tournaments_obj_rel_insert_input tournament_id: uuid - tournament_team: tournament_teams_obj_rel_insert_input - tournament_team_id: uuid + type: e_tournament_stage_types_enum + windows: tournament_stage_windows_arr_rel_insert_input } """aggregate max on columns""" -type tournament_team_roster_max_fields { - player_steam_id: bigint +type tournament_stages_max_fields { + decider_best_of: Int + default_best_of: Int + final_map_advantage: Int + groups: Int + id: uuid + match_options_id: uuid + max_rounds: Int + max_teams: Int + min_teams: Int + order: Int tournament_id: uuid - tournament_team_id: uuid } """ -order by max() on columns of table "tournament_team_roster" +order by max() on columns of table "tournament_stages" """ -input tournament_team_roster_max_order_by { - player_steam_id: order_by +input tournament_stages_max_order_by { + decider_best_of: order_by + default_best_of: order_by + final_map_advantage: order_by + groups: order_by + id: order_by + match_options_id: order_by + max_rounds: order_by + max_teams: order_by + min_teams: order_by + order: order_by tournament_id: order_by - tournament_team_id: order_by } """aggregate min on columns""" -type tournament_team_roster_min_fields { - player_steam_id: bigint +type tournament_stages_min_fields { + decider_best_of: Int + default_best_of: Int + final_map_advantage: Int + groups: Int + id: uuid + match_options_id: uuid + max_rounds: Int + max_teams: Int + min_teams: Int + order: Int tournament_id: uuid - tournament_team_id: uuid } """ -order by min() on columns of table "tournament_team_roster" +order by min() on columns of table "tournament_stages" """ -input tournament_team_roster_min_order_by { - player_steam_id: order_by +input tournament_stages_min_order_by { + decider_best_of: order_by + default_best_of: order_by + final_map_advantage: order_by + groups: order_by + id: order_by + match_options_id: order_by + max_rounds: order_by + max_teams: order_by + min_teams: order_by + order: order_by tournament_id: order_by - tournament_team_id: order_by } """ -response of any mutation on the table "tournament_team_roster" +response of any mutation on the table "tournament_stages" """ -type tournament_team_roster_mutation_response { +type tournament_stages_mutation_response { """number of rows affected by the mutation""" affected_rows: Int! """data from the rows affected by the mutation""" - returning: [tournament_team_roster!]! + returning: [tournament_stages!]! } """ -on_conflict condition type for table "tournament_team_roster" +input type for inserting object relation for remote table "tournament_stages" """ -input tournament_team_roster_on_conflict { - constraint: tournament_team_roster_constraint! - update_columns: [tournament_team_roster_update_column!]! = [] - where: tournament_team_roster_bool_exp +input tournament_stages_obj_rel_insert_input { + data: tournament_stages_insert_input! + + """upsert condition""" + on_conflict: tournament_stages_on_conflict } -"""Ordering options when selecting data from "tournament_team_roster".""" -input tournament_team_roster_order_by { - e_team_role: e_team_roles_order_by - player: players_order_by - player_steam_id: order_by - role: order_by +""" +on_conflict condition type for table "tournament_stages" +""" +input tournament_stages_on_conflict { + constraint: tournament_stages_constraint! + update_columns: [tournament_stages_update_column!]! = [] + where: tournament_stages_bool_exp +} + +"""Ordering options when selecting data from "tournament_stages".""" +input tournament_stages_order_by { + brackets_aggregate: tournament_brackets_aggregate_order_by + decider_best_of: order_by + default_best_of: order_by + e_tournament_stage_type: e_tournament_stage_types_order_by + final_map_advantage: order_by + groups: order_by + id: order_by + match_options_id: order_by + max_rounds: order_by + max_teams: order_by + min_teams: order_by + options: match_options_order_by + order: order_by + results_aggregate: v_team_stage_results_aggregate_order_by + settings: order_by + swiss_no_elimination: order_by + third_place_match: order_by tournament: tournaments_order_by tournament_id: order_by - tournament_team: tournament_teams_order_by - tournament_team_id: order_by + type: order_by + windows_aggregate: tournament_stage_windows_aggregate_order_by } -"""primary key columns input for table: tournament_team_roster""" -input tournament_team_roster_pk_columns_input { - player_steam_id: bigint! - tournament_id: uuid! +"""primary key columns input for table: tournament_stages""" +input tournament_stages_pk_columns_input { + id: uuid! +} + +"""prepend existing jsonb value of filtered columns with new jsonb value""" +input tournament_stages_prepend_input { + settings: jsonb } """ -select columns of table "tournament_team_roster" +select columns of table "tournament_stages" """ -enum tournament_team_roster_select_column { +enum tournament_stages_select_column { """column name""" - player_steam_id + decider_best_of """column name""" - role + default_best_of + + """column name""" + final_map_advantage + + """column name""" + groups + + """column name""" + id + + """column name""" + match_options_id + + """column name""" + max_rounds + + """column name""" + max_teams + + """column name""" + min_teams + + """column name""" + order + + """column name""" + settings + + """column name""" + swiss_no_elimination + + """column name""" + third_place_match """column name""" tournament_id """column name""" - tournament_team_id + type } """ -input type for updating data in table "tournament_team_roster" +select "tournament_stages_aggregate_bool_exp_bool_and_arguments_columns" columns of table "tournament_stages" """ -input tournament_team_roster_set_input { - player_steam_id: bigint - role: e_team_roles_enum +enum tournament_stages_select_column_tournament_stages_aggregate_bool_exp_bool_and_arguments_columns { + """column name""" + swiss_no_elimination + + """column name""" + third_place_match +} + +""" +select "tournament_stages_aggregate_bool_exp_bool_or_arguments_columns" columns of table "tournament_stages" +""" +enum tournament_stages_select_column_tournament_stages_aggregate_bool_exp_bool_or_arguments_columns { + """column name""" + swiss_no_elimination + + """column name""" + third_place_match +} + +""" +input type for updating data in table "tournament_stages" +""" +input tournament_stages_set_input { + decider_best_of: Int + default_best_of: Int + final_map_advantage: Int + groups: Int + id: uuid + match_options_id: uuid + max_rounds: Int + max_teams: Int + min_teams: Int + order: Int + settings: jsonb + swiss_no_elimination: Boolean + third_place_match: Boolean tournament_id: uuid - tournament_team_id: uuid + type: e_tournament_stage_types_enum } """aggregate stddev on columns""" -type tournament_team_roster_stddev_fields { - player_steam_id: Float +type tournament_stages_stddev_fields { + decider_best_of: Float + default_best_of: Float + final_map_advantage: Float + groups: Float + max_rounds: Float + max_teams: Float + min_teams: Float + order: Float } """ -order by stddev() on columns of table "tournament_team_roster" +order by stddev() on columns of table "tournament_stages" """ -input tournament_team_roster_stddev_order_by { - player_steam_id: order_by +input tournament_stages_stddev_order_by { + decider_best_of: order_by + default_best_of: order_by + final_map_advantage: order_by + groups: order_by + max_rounds: order_by + max_teams: order_by + min_teams: order_by + order: order_by } """aggregate stddev_pop on columns""" -type tournament_team_roster_stddev_pop_fields { - player_steam_id: Float +type tournament_stages_stddev_pop_fields { + decider_best_of: Float + default_best_of: Float + final_map_advantage: Float + groups: Float + max_rounds: Float + max_teams: Float + min_teams: Float + order: Float } """ -order by stddev_pop() on columns of table "tournament_team_roster" +order by stddev_pop() on columns of table "tournament_stages" """ -input tournament_team_roster_stddev_pop_order_by { - player_steam_id: order_by +input tournament_stages_stddev_pop_order_by { + decider_best_of: order_by + default_best_of: order_by + final_map_advantage: order_by + groups: order_by + max_rounds: order_by + max_teams: order_by + min_teams: order_by + order: order_by } """aggregate stddev_samp on columns""" -type tournament_team_roster_stddev_samp_fields { - player_steam_id: Float +type tournament_stages_stddev_samp_fields { + decider_best_of: Float + default_best_of: Float + final_map_advantage: Float + groups: Float + max_rounds: Float + max_teams: Float + min_teams: Float + order: Float } """ -order by stddev_samp() on columns of table "tournament_team_roster" +order by stddev_samp() on columns of table "tournament_stages" """ -input tournament_team_roster_stddev_samp_order_by { - player_steam_id: order_by +input tournament_stages_stddev_samp_order_by { + decider_best_of: order_by + default_best_of: order_by + final_map_advantage: order_by + groups: order_by + max_rounds: order_by + max_teams: order_by + min_teams: order_by + order: order_by } """ -Streaming cursor of the table "tournament_team_roster" +Streaming cursor of the table "tournament_stages" """ -input tournament_team_roster_stream_cursor_input { +input tournament_stages_stream_cursor_input { """Stream column input with initial value""" - initial_value: tournament_team_roster_stream_cursor_value_input! + initial_value: tournament_stages_stream_cursor_value_input! """cursor ordering""" ordering: cursor_ordering } """Initial value of the column from where the streaming should start""" -input tournament_team_roster_stream_cursor_value_input { - player_steam_id: bigint - role: e_team_roles_enum +input tournament_stages_stream_cursor_value_input { + decider_best_of: Int + default_best_of: Int + final_map_advantage: Int + groups: Int + id: uuid + match_options_id: uuid + max_rounds: Int + max_teams: Int + min_teams: Int + order: Int + settings: jsonb + swiss_no_elimination: Boolean + third_place_match: Boolean tournament_id: uuid - tournament_team_id: uuid + type: e_tournament_stage_types_enum } """aggregate sum on columns""" -type tournament_team_roster_sum_fields { - player_steam_id: bigint +type tournament_stages_sum_fields { + decider_best_of: Int + default_best_of: Int + final_map_advantage: Int + groups: Int + max_rounds: Int + max_teams: Int + min_teams: Int + order: Int } """ -order by sum() on columns of table "tournament_team_roster" +order by sum() on columns of table "tournament_stages" """ -input tournament_team_roster_sum_order_by { - player_steam_id: order_by +input tournament_stages_sum_order_by { + decider_best_of: order_by + default_best_of: order_by + final_map_advantage: order_by + groups: order_by + max_rounds: order_by + max_teams: order_by + min_teams: order_by + order: order_by } """ -update columns of table "tournament_team_roster" +update columns of table "tournament_stages" """ -enum tournament_team_roster_update_column { +enum tournament_stages_update_column { """column name""" - player_steam_id + decider_best_of """column name""" - role + default_best_of + + """column name""" + final_map_advantage + + """column name""" + groups + + """column name""" + id + + """column name""" + match_options_id + + """column name""" + max_rounds + + """column name""" + max_teams + + """column name""" + min_teams + + """column name""" + order + + """column name""" + settings + + """column name""" + swiss_no_elimination + + """column name""" + third_place_match """column name""" tournament_id """column name""" - tournament_team_id + type } -input tournament_team_roster_updates { +input tournament_stages_updates { + """append existing jsonb value of filtered columns with new jsonb value""" + _append: tournament_stages_append_input + + """ + delete the field or element with specified path (for JSON arrays, negative integers count from the end) + """ + _delete_at_path: tournament_stages_delete_at_path_input + + """ + delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array + """ + _delete_elem: tournament_stages_delete_elem_input + + """ + delete key/value pair or string element. key/value pairs are matched based on their key value + """ + _delete_key: tournament_stages_delete_key_input + """increments the numeric columns with given value of the filtered values""" - _inc: tournament_team_roster_inc_input + _inc: tournament_stages_inc_input + + """prepend existing jsonb value of filtered columns with new jsonb value""" + _prepend: tournament_stages_prepend_input """sets the columns of the filtered rows to the given values""" - _set: tournament_team_roster_set_input + _set: tournament_stages_set_input """filter the rows which have to be updated""" - where: tournament_team_roster_bool_exp! + where: tournament_stages_bool_exp! } """aggregate var_pop on columns""" -type tournament_team_roster_var_pop_fields { - player_steam_id: Float +type tournament_stages_var_pop_fields { + decider_best_of: Float + default_best_of: Float + final_map_advantage: Float + groups: Float + max_rounds: Float + max_teams: Float + min_teams: Float + order: Float } """ -order by var_pop() on columns of table "tournament_team_roster" -""" -input tournament_team_roster_var_pop_order_by { - player_steam_id: order_by +order by var_pop() on columns of table "tournament_stages" +""" +input tournament_stages_var_pop_order_by { + decider_best_of: order_by + default_best_of: order_by + final_map_advantage: order_by + groups: order_by + max_rounds: order_by + max_teams: order_by + min_teams: order_by + order: order_by } """aggregate var_samp on columns""" -type tournament_team_roster_var_samp_fields { - player_steam_id: Float +type tournament_stages_var_samp_fields { + decider_best_of: Float + default_best_of: Float + final_map_advantage: Float + groups: Float + max_rounds: Float + max_teams: Float + min_teams: Float + order: Float } """ -order by var_samp() on columns of table "tournament_team_roster" +order by var_samp() on columns of table "tournament_stages" """ -input tournament_team_roster_var_samp_order_by { - player_steam_id: order_by +input tournament_stages_var_samp_order_by { + decider_best_of: order_by + default_best_of: order_by + final_map_advantage: order_by + groups: order_by + max_rounds: order_by + max_teams: order_by + min_teams: order_by + order: order_by } """aggregate variance on columns""" -type tournament_team_roster_variance_fields { - player_steam_id: Float +type tournament_stages_variance_fields { + decider_best_of: Float + default_best_of: Float + final_map_advantage: Float + groups: Float + max_rounds: Float + max_teams: Float + min_teams: Float + order: Float } """ -order by variance() on columns of table "tournament_team_roster" +order by variance() on columns of table "tournament_stages" """ -input tournament_team_roster_variance_order_by { - player_steam_id: order_by +input tournament_stages_variance_order_by { + decider_best_of: order_by + default_best_of: order_by + final_map_advantage: order_by + groups: order_by + max_rounds: order_by + max_teams: order_by + min_teams: order_by + order: order_by } """ -columns and relationships of "tournament_teams" +columns and relationships of "tournament_team_invites" """ -type tournament_teams { - """ - A computed field, executes function "can_manage_tournament_team" - """ - can_manage: Boolean - - """An object relationship""" - captain: players - captain_steam_id: bigint +type tournament_team_invites { created_at: timestamptz! - - """An object relationship""" - creator: players! - eligible_at: timestamptz id: uuid! - """An array relationship""" - invites( - """distinct select on columns""" - distinct_on: [tournament_team_invites_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: [tournament_team_invites_order_by!] - - """filter the rows returned""" - where: tournament_team_invites_bool_exp - ): [tournament_team_invites!]! - - """An aggregate relationship""" - invites_aggregate( - """distinct select on columns""" - distinct_on: [tournament_team_invites_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: [tournament_team_invites_order_by!] - - """filter the rows returned""" - where: tournament_team_invites_bool_exp - ): tournament_team_invites_aggregate! - name: String - owner_steam_id: bigint! - """An object relationship""" - results: v_team_stage_results - - """An array relationship""" - roster( - """distinct select on columns""" - distinct_on: [tournament_team_roster_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: [tournament_team_roster_order_by!] - - """filter the rows returned""" - where: tournament_team_roster_bool_exp - ): [tournament_team_roster!]! - - """An aggregate relationship""" - roster_aggregate( - """distinct select on columns""" - distinct_on: [tournament_team_roster_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: [tournament_team_roster_order_by!] - - """filter the rows returned""" - where: tournament_team_roster_bool_exp - ): tournament_team_roster_aggregate! - seed: Int - short_name: String + invited_by: players! + invited_by_player_steam_id: bigint! """An object relationship""" - team: teams - team_id: uuid + player: players! + steam_id: bigint! """An object relationship""" - tournament: tournaments! - tournament_id: uuid! + team: tournament_teams! + tournament_team_id: uuid! } """ -aggregated selection of "tournament_teams" +aggregated selection of "tournament_team_invites" """ -type tournament_teams_aggregate { - aggregate: tournament_teams_aggregate_fields - nodes: [tournament_teams!]! +type tournament_team_invites_aggregate { + aggregate: tournament_team_invites_aggregate_fields + nodes: [tournament_team_invites!]! } -input tournament_teams_aggregate_bool_exp { - count: tournament_teams_aggregate_bool_exp_count +input tournament_team_invites_aggregate_bool_exp { + count: tournament_team_invites_aggregate_bool_exp_count } -input tournament_teams_aggregate_bool_exp_count { - arguments: [tournament_teams_select_column!] +input tournament_team_invites_aggregate_bool_exp_count { + arguments: [tournament_team_invites_select_column!] distinct: Boolean - filter: tournament_teams_bool_exp + filter: tournament_team_invites_bool_exp predicate: Int_comparison_exp! } """ -aggregate fields of "tournament_teams" +aggregate fields of "tournament_team_invites" """ -type tournament_teams_aggregate_fields { - avg: tournament_teams_avg_fields - count(columns: [tournament_teams_select_column!], distinct: Boolean): Int! - max: tournament_teams_max_fields - min: tournament_teams_min_fields - stddev: tournament_teams_stddev_fields - stddev_pop: tournament_teams_stddev_pop_fields - stddev_samp: tournament_teams_stddev_samp_fields - sum: tournament_teams_sum_fields - var_pop: tournament_teams_var_pop_fields - var_samp: tournament_teams_var_samp_fields - variance: tournament_teams_variance_fields +type tournament_team_invites_aggregate_fields { + avg: tournament_team_invites_avg_fields + count(columns: [tournament_team_invites_select_column!], distinct: Boolean): Int! + max: tournament_team_invites_max_fields + min: tournament_team_invites_min_fields + stddev: tournament_team_invites_stddev_fields + stddev_pop: tournament_team_invites_stddev_pop_fields + stddev_samp: tournament_team_invites_stddev_samp_fields + sum: tournament_team_invites_sum_fields + var_pop: tournament_team_invites_var_pop_fields + var_samp: tournament_team_invites_var_samp_fields + variance: tournament_team_invites_variance_fields } """ -order by aggregate values of table "tournament_teams" +order by aggregate values of table "tournament_team_invites" """ -input tournament_teams_aggregate_order_by { - avg: tournament_teams_avg_order_by +input tournament_team_invites_aggregate_order_by { + avg: tournament_team_invites_avg_order_by count: order_by - max: tournament_teams_max_order_by - min: tournament_teams_min_order_by - stddev: tournament_teams_stddev_order_by - stddev_pop: tournament_teams_stddev_pop_order_by - stddev_samp: tournament_teams_stddev_samp_order_by - sum: tournament_teams_sum_order_by - var_pop: tournament_teams_var_pop_order_by - var_samp: tournament_teams_var_samp_order_by - variance: tournament_teams_variance_order_by + max: tournament_team_invites_max_order_by + min: tournament_team_invites_min_order_by + stddev: tournament_team_invites_stddev_order_by + stddev_pop: tournament_team_invites_stddev_pop_order_by + stddev_samp: tournament_team_invites_stddev_samp_order_by + sum: tournament_team_invites_sum_order_by + var_pop: tournament_team_invites_var_pop_order_by + var_samp: tournament_team_invites_var_samp_order_by + variance: tournament_team_invites_variance_order_by } """ -input type for inserting array relation for remote table "tournament_teams" +input type for inserting array relation for remote table "tournament_team_invites" """ -input tournament_teams_arr_rel_insert_input { - data: [tournament_teams_insert_input!]! +input tournament_team_invites_arr_rel_insert_input { + data: [tournament_team_invites_insert_input!]! """upsert condition""" - on_conflict: tournament_teams_on_conflict + on_conflict: tournament_team_invites_on_conflict } """aggregate avg on columns""" -type tournament_teams_avg_fields { - captain_steam_id: Float - owner_steam_id: Float - seed: Float +type tournament_team_invites_avg_fields { + invited_by_player_steam_id: Float + steam_id: Float } """ -order by avg() on columns of table "tournament_teams" +order by avg() on columns of table "tournament_team_invites" """ -input tournament_teams_avg_order_by { - captain_steam_id: order_by - owner_steam_id: order_by - seed: order_by +input tournament_team_invites_avg_order_by { + invited_by_player_steam_id: order_by + steam_id: order_by } """ -Boolean expression to filter rows from the table "tournament_teams". All fields are combined with a logical 'AND'. +Boolean expression to filter rows from the table "tournament_team_invites". All fields are combined with a logical 'AND'. """ -input tournament_teams_bool_exp { - _and: [tournament_teams_bool_exp!] - _not: tournament_teams_bool_exp - _or: [tournament_teams_bool_exp!] - can_manage: Boolean_comparison_exp - captain: players_bool_exp - captain_steam_id: bigint_comparison_exp +input tournament_team_invites_bool_exp { + _and: [tournament_team_invites_bool_exp!] + _not: tournament_team_invites_bool_exp + _or: [tournament_team_invites_bool_exp!] created_at: timestamptz_comparison_exp - creator: players_bool_exp - eligible_at: timestamptz_comparison_exp id: uuid_comparison_exp - invites: tournament_team_invites_bool_exp - invites_aggregate: tournament_team_invites_aggregate_bool_exp - name: String_comparison_exp - owner_steam_id: bigint_comparison_exp - results: v_team_stage_results_bool_exp - roster: tournament_team_roster_bool_exp - roster_aggregate: tournament_team_roster_aggregate_bool_exp - seed: Int_comparison_exp - short_name: String_comparison_exp - team: teams_bool_exp - team_id: uuid_comparison_exp - tournament: tournaments_bool_exp - tournament_id: uuid_comparison_exp + invited_by: players_bool_exp + invited_by_player_steam_id: bigint_comparison_exp + player: players_bool_exp + steam_id: bigint_comparison_exp + team: tournament_teams_bool_exp + tournament_team_id: uuid_comparison_exp } """ -unique or primary key constraints on table "tournament_teams" +unique or primary key constraints on table "tournament_team_invites" """ -enum tournament_teams_constraint { - """ - unique or primary key constraint on columns "tournament_id", "owner_steam_id" - """ - tournament_teams_creator_steam_id_tournament_id_key - +enum tournament_team_invites_constraint { """ unique or primary key constraint on columns "id" """ - tournament_teams_pkey - - """ - unique or primary key constraint on columns "tournament_id", "name" - """ - tournament_teams_tournament_id_name_key - - """ - unique or primary key constraint on columns "tournament_id", "seed" - """ - tournament_teams_tournament_id_seed_key + tournament_team_invites_pkey """ - unique or primary key constraint on columns "tournament_id", "team_id" + unique or primary key constraint on columns "steam_id", "tournament_team_id" """ - tournament_teams_tournament_id_team_id_key + tournament_team_invites_steam_id_tournament_team_id_key } """ -input type for incrementing numeric columns in table "tournament_teams" +input type for incrementing numeric columns in table "tournament_team_invites" """ -input tournament_teams_inc_input { - captain_steam_id: bigint - owner_steam_id: bigint - seed: Int +input tournament_team_invites_inc_input { + invited_by_player_steam_id: bigint + steam_id: bigint } """ -input type for inserting data into table "tournament_teams" +input type for inserting data into table "tournament_team_invites" """ -input tournament_teams_insert_input { - captain: players_obj_rel_insert_input - captain_steam_id: bigint +input tournament_team_invites_insert_input { created_at: timestamptz - creator: players_obj_rel_insert_input - eligible_at: timestamptz id: uuid - invites: tournament_team_invites_arr_rel_insert_input - name: String - owner_steam_id: bigint - results: v_team_stage_results_obj_rel_insert_input - roster: tournament_team_roster_arr_rel_insert_input - seed: Int - short_name: String - team: teams_obj_rel_insert_input - team_id: uuid - tournament: tournaments_obj_rel_insert_input - tournament_id: uuid + invited_by: players_obj_rel_insert_input + invited_by_player_steam_id: bigint + player: players_obj_rel_insert_input + steam_id: bigint + team: tournament_teams_obj_rel_insert_input + tournament_team_id: uuid } """aggregate max on columns""" -type tournament_teams_max_fields { - captain_steam_id: bigint +type tournament_team_invites_max_fields { created_at: timestamptz - eligible_at: timestamptz id: uuid - name: String - owner_steam_id: bigint - seed: Int - short_name: String - team_id: uuid - tournament_id: uuid + invited_by_player_steam_id: bigint + steam_id: bigint + tournament_team_id: uuid } """ -order by max() on columns of table "tournament_teams" +order by max() on columns of table "tournament_team_invites" """ -input tournament_teams_max_order_by { - captain_steam_id: order_by +input tournament_team_invites_max_order_by { created_at: order_by - eligible_at: order_by id: order_by - name: order_by - owner_steam_id: order_by - seed: order_by - short_name: order_by - team_id: order_by - tournament_id: order_by + invited_by_player_steam_id: order_by + steam_id: order_by + tournament_team_id: order_by } """aggregate min on columns""" -type tournament_teams_min_fields { - captain_steam_id: bigint +type tournament_team_invites_min_fields { created_at: timestamptz - eligible_at: timestamptz id: uuid - name: String - owner_steam_id: bigint - seed: Int - short_name: String - team_id: uuid - tournament_id: uuid + invited_by_player_steam_id: bigint + steam_id: bigint + tournament_team_id: uuid } """ -order by min() on columns of table "tournament_teams" +order by min() on columns of table "tournament_team_invites" """ -input tournament_teams_min_order_by { - captain_steam_id: order_by +input tournament_team_invites_min_order_by { created_at: order_by - eligible_at: order_by id: order_by - name: order_by - owner_steam_id: order_by - seed: order_by - short_name: order_by - team_id: order_by - tournament_id: order_by + invited_by_player_steam_id: order_by + steam_id: order_by + tournament_team_id: order_by } """ -response of any mutation on the table "tournament_teams" +response of any mutation on the table "tournament_team_invites" """ -type tournament_teams_mutation_response { +type tournament_team_invites_mutation_response { """number of rows affected by the mutation""" affected_rows: Int! """data from the rows affected by the mutation""" - returning: [tournament_teams!]! -} - -""" -input type for inserting object relation for remote table "tournament_teams" -""" -input tournament_teams_obj_rel_insert_input { - data: tournament_teams_insert_input! - - """upsert condition""" - on_conflict: tournament_teams_on_conflict + returning: [tournament_team_invites!]! } """ -on_conflict condition type for table "tournament_teams" +on_conflict condition type for table "tournament_team_invites" """ -input tournament_teams_on_conflict { - constraint: tournament_teams_constraint! - update_columns: [tournament_teams_update_column!]! = [] - where: tournament_teams_bool_exp +input tournament_team_invites_on_conflict { + constraint: tournament_team_invites_constraint! + update_columns: [tournament_team_invites_update_column!]! = [] + where: tournament_team_invites_bool_exp } -"""Ordering options when selecting data from "tournament_teams".""" -input tournament_teams_order_by { - can_manage: order_by - captain: players_order_by - captain_steam_id: order_by +"""Ordering options when selecting data from "tournament_team_invites".""" +input tournament_team_invites_order_by { created_at: order_by - creator: players_order_by - eligible_at: order_by id: order_by - invites_aggregate: tournament_team_invites_aggregate_order_by - name: order_by - owner_steam_id: order_by - results: v_team_stage_results_order_by - roster_aggregate: tournament_team_roster_aggregate_order_by - seed: order_by - short_name: order_by - team: teams_order_by - team_id: order_by - tournament: tournaments_order_by - tournament_id: order_by + invited_by: players_order_by + invited_by_player_steam_id: order_by + player: players_order_by + steam_id: order_by + team: tournament_teams_order_by + tournament_team_id: order_by } -"""primary key columns input for table: tournament_teams""" -input tournament_teams_pk_columns_input { +"""primary key columns input for table: tournament_team_invites""" +input tournament_team_invites_pk_columns_input { id: uuid! } """ -select columns of table "tournament_teams" +select columns of table "tournament_team_invites" """ -enum tournament_teams_select_column { - """column name""" - captain_steam_id - +enum tournament_team_invites_select_column { """column name""" created_at - """column name""" - eligible_at - """column name""" id """column name""" - name - - """column name""" - owner_steam_id - - """column name""" - seed - - """column name""" - short_name + invited_by_player_steam_id """column name""" - team_id + steam_id """column name""" - tournament_id + tournament_team_id } """ -input type for updating data in table "tournament_teams" +input type for updating data in table "tournament_team_invites" """ -input tournament_teams_set_input { - captain_steam_id: bigint +input tournament_team_invites_set_input { created_at: timestamptz - eligible_at: timestamptz id: uuid - name: String - owner_steam_id: bigint - seed: Int - short_name: String - team_id: uuid - tournament_id: uuid + invited_by_player_steam_id: bigint + steam_id: bigint + tournament_team_id: uuid } """aggregate stddev on columns""" -type tournament_teams_stddev_fields { - captain_steam_id: Float - owner_steam_id: Float - seed: Float +type tournament_team_invites_stddev_fields { + invited_by_player_steam_id: Float + steam_id: Float } -""" -order by stddev() on columns of table "tournament_teams" -""" -input tournament_teams_stddev_order_by { - captain_steam_id: order_by - owner_steam_id: order_by - seed: order_by +""" +order by stddev() on columns of table "tournament_team_invites" +""" +input tournament_team_invites_stddev_order_by { + invited_by_player_steam_id: order_by + steam_id: order_by } """aggregate stddev_pop on columns""" -type tournament_teams_stddev_pop_fields { - captain_steam_id: Float - owner_steam_id: Float - seed: Float +type tournament_team_invites_stddev_pop_fields { + invited_by_player_steam_id: Float + steam_id: Float } """ -order by stddev_pop() on columns of table "tournament_teams" +order by stddev_pop() on columns of table "tournament_team_invites" """ -input tournament_teams_stddev_pop_order_by { - captain_steam_id: order_by - owner_steam_id: order_by - seed: order_by +input tournament_team_invites_stddev_pop_order_by { + invited_by_player_steam_id: order_by + steam_id: order_by } """aggregate stddev_samp on columns""" -type tournament_teams_stddev_samp_fields { - captain_steam_id: Float - owner_steam_id: Float - seed: Float +type tournament_team_invites_stddev_samp_fields { + invited_by_player_steam_id: Float + steam_id: Float } """ -order by stddev_samp() on columns of table "tournament_teams" +order by stddev_samp() on columns of table "tournament_team_invites" """ -input tournament_teams_stddev_samp_order_by { - captain_steam_id: order_by - owner_steam_id: order_by - seed: order_by +input tournament_team_invites_stddev_samp_order_by { + invited_by_player_steam_id: order_by + steam_id: order_by } """ -Streaming cursor of the table "tournament_teams" +Streaming cursor of the table "tournament_team_invites" """ -input tournament_teams_stream_cursor_input { +input tournament_team_invites_stream_cursor_input { """Stream column input with initial value""" - initial_value: tournament_teams_stream_cursor_value_input! + initial_value: tournament_team_invites_stream_cursor_value_input! """cursor ordering""" ordering: cursor_ordering } """Initial value of the column from where the streaming should start""" -input tournament_teams_stream_cursor_value_input { - captain_steam_id: bigint +input tournament_team_invites_stream_cursor_value_input { created_at: timestamptz - eligible_at: timestamptz id: uuid - name: String - owner_steam_id: bigint - seed: Int - short_name: String - team_id: uuid - tournament_id: uuid + invited_by_player_steam_id: bigint + steam_id: bigint + tournament_team_id: uuid } """aggregate sum on columns""" -type tournament_teams_sum_fields { - captain_steam_id: bigint - owner_steam_id: bigint - seed: Int +type tournament_team_invites_sum_fields { + invited_by_player_steam_id: bigint + steam_id: bigint } """ -order by sum() on columns of table "tournament_teams" +order by sum() on columns of table "tournament_team_invites" """ -input tournament_teams_sum_order_by { - captain_steam_id: order_by - owner_steam_id: order_by - seed: order_by +input tournament_team_invites_sum_order_by { + invited_by_player_steam_id: order_by + steam_id: order_by } """ -update columns of table "tournament_teams" +update columns of table "tournament_team_invites" """ -enum tournament_teams_update_column { - """column name""" - captain_steam_id - +enum tournament_team_invites_update_column { """column name""" created_at - """column name""" - eligible_at - """column name""" id """column name""" - name - - """column name""" - owner_steam_id - - """column name""" - seed - - """column name""" - short_name + invited_by_player_steam_id """column name""" - team_id + steam_id """column name""" - tournament_id + tournament_team_id } -input tournament_teams_updates { +input tournament_team_invites_updates { """increments the numeric columns with given value of the filtered values""" - _inc: tournament_teams_inc_input + _inc: tournament_team_invites_inc_input """sets the columns of the filtered rows to the given values""" - _set: tournament_teams_set_input + _set: tournament_team_invites_set_input """filter the rows which have to be updated""" - where: tournament_teams_bool_exp! + where: tournament_team_invites_bool_exp! } """aggregate var_pop on columns""" -type tournament_teams_var_pop_fields { - captain_steam_id: Float - owner_steam_id: Float - seed: Float +type tournament_team_invites_var_pop_fields { + invited_by_player_steam_id: Float + steam_id: Float } """ -order by var_pop() on columns of table "tournament_teams" +order by var_pop() on columns of table "tournament_team_invites" """ -input tournament_teams_var_pop_order_by { - captain_steam_id: order_by - owner_steam_id: order_by - seed: order_by +input tournament_team_invites_var_pop_order_by { + invited_by_player_steam_id: order_by + steam_id: order_by } """aggregate var_samp on columns""" -type tournament_teams_var_samp_fields { - captain_steam_id: Float - owner_steam_id: Float - seed: Float +type tournament_team_invites_var_samp_fields { + invited_by_player_steam_id: Float + steam_id: Float } """ -order by var_samp() on columns of table "tournament_teams" +order by var_samp() on columns of table "tournament_team_invites" """ -input tournament_teams_var_samp_order_by { - captain_steam_id: order_by - owner_steam_id: order_by - seed: order_by +input tournament_team_invites_var_samp_order_by { + invited_by_player_steam_id: order_by + steam_id: order_by } """aggregate variance on columns""" -type tournament_teams_variance_fields { - captain_steam_id: Float - owner_steam_id: Float - seed: Float +type tournament_team_invites_variance_fields { + invited_by_player_steam_id: Float + steam_id: Float } """ -order by variance() on columns of table "tournament_teams" +order by variance() on columns of table "tournament_team_invites" """ -input tournament_teams_variance_order_by { - captain_steam_id: order_by - owner_steam_id: order_by - seed: order_by +input tournament_team_invites_variance_order_by { + invited_by_player_steam_id: order_by + steam_id: order_by } """ -columns and relationships of "tournament_trophies" +columns and relationships of "tournament_team_roster" """ -type tournament_trophies { - created_at: timestamptz! - id: uuid! - manual: Boolean! - placement: Int! - placement_tier: String - +type tournament_team_roster { """An object relationship""" - player: players - player_steam_id: bigint + e_team_role: e_team_roles! """An object relationship""" - team: teams - team_id: uuid + player: players! + player_steam_id: bigint! + role: e_team_roles_enum! """An object relationship""" tournament: tournaments! @@ -97242,298 +98793,215 @@ type tournament_trophies { """An object relationship""" tournament_team: tournament_teams! tournament_team_id: uuid! - - """An object relationship""" - trophy_config: tournament_trophy_configs } """ -aggregated selection of "tournament_trophies" +aggregated selection of "tournament_team_roster" """ -type tournament_trophies_aggregate { - aggregate: tournament_trophies_aggregate_fields - nodes: [tournament_trophies!]! -} - -input tournament_trophies_aggregate_bool_exp { - bool_and: tournament_trophies_aggregate_bool_exp_bool_and - bool_or: tournament_trophies_aggregate_bool_exp_bool_or - count: tournament_trophies_aggregate_bool_exp_count -} - -input tournament_trophies_aggregate_bool_exp_bool_and { - arguments: tournament_trophies_select_column_tournament_trophies_aggregate_bool_exp_bool_and_arguments_columns! - distinct: Boolean - filter: tournament_trophies_bool_exp - predicate: Boolean_comparison_exp! +type tournament_team_roster_aggregate { + aggregate: tournament_team_roster_aggregate_fields + nodes: [tournament_team_roster!]! } -input tournament_trophies_aggregate_bool_exp_bool_or { - arguments: tournament_trophies_select_column_tournament_trophies_aggregate_bool_exp_bool_or_arguments_columns! - distinct: Boolean - filter: tournament_trophies_bool_exp - predicate: Boolean_comparison_exp! +input tournament_team_roster_aggregate_bool_exp { + count: tournament_team_roster_aggregate_bool_exp_count } -input tournament_trophies_aggregate_bool_exp_count { - arguments: [tournament_trophies_select_column!] +input tournament_team_roster_aggregate_bool_exp_count { + arguments: [tournament_team_roster_select_column!] distinct: Boolean - filter: tournament_trophies_bool_exp + filter: tournament_team_roster_bool_exp predicate: Int_comparison_exp! } """ -aggregate fields of "tournament_trophies" +aggregate fields of "tournament_team_roster" """ -type tournament_trophies_aggregate_fields { - avg: tournament_trophies_avg_fields - count(columns: [tournament_trophies_select_column!], distinct: Boolean): Int! - max: tournament_trophies_max_fields - min: tournament_trophies_min_fields - stddev: tournament_trophies_stddev_fields - stddev_pop: tournament_trophies_stddev_pop_fields - stddev_samp: tournament_trophies_stddev_samp_fields - sum: tournament_trophies_sum_fields - var_pop: tournament_trophies_var_pop_fields - var_samp: tournament_trophies_var_samp_fields - variance: tournament_trophies_variance_fields +type tournament_team_roster_aggregate_fields { + avg: tournament_team_roster_avg_fields + count(columns: [tournament_team_roster_select_column!], distinct: Boolean): Int! + max: tournament_team_roster_max_fields + min: tournament_team_roster_min_fields + stddev: tournament_team_roster_stddev_fields + stddev_pop: tournament_team_roster_stddev_pop_fields + stddev_samp: tournament_team_roster_stddev_samp_fields + sum: tournament_team_roster_sum_fields + var_pop: tournament_team_roster_var_pop_fields + var_samp: tournament_team_roster_var_samp_fields + variance: tournament_team_roster_variance_fields } """ -order by aggregate values of table "tournament_trophies" +order by aggregate values of table "tournament_team_roster" """ -input tournament_trophies_aggregate_order_by { - avg: tournament_trophies_avg_order_by +input tournament_team_roster_aggregate_order_by { + avg: tournament_team_roster_avg_order_by count: order_by - max: tournament_trophies_max_order_by - min: tournament_trophies_min_order_by - stddev: tournament_trophies_stddev_order_by - stddev_pop: tournament_trophies_stddev_pop_order_by - stddev_samp: tournament_trophies_stddev_samp_order_by - sum: tournament_trophies_sum_order_by - var_pop: tournament_trophies_var_pop_order_by - var_samp: tournament_trophies_var_samp_order_by - variance: tournament_trophies_variance_order_by + max: tournament_team_roster_max_order_by + min: tournament_team_roster_min_order_by + stddev: tournament_team_roster_stddev_order_by + stddev_pop: tournament_team_roster_stddev_pop_order_by + stddev_samp: tournament_team_roster_stddev_samp_order_by + sum: tournament_team_roster_sum_order_by + var_pop: tournament_team_roster_var_pop_order_by + var_samp: tournament_team_roster_var_samp_order_by + variance: tournament_team_roster_variance_order_by } """ -input type for inserting array relation for remote table "tournament_trophies" +input type for inserting array relation for remote table "tournament_team_roster" """ -input tournament_trophies_arr_rel_insert_input { - data: [tournament_trophies_insert_input!]! +input tournament_team_roster_arr_rel_insert_input { + data: [tournament_team_roster_insert_input!]! """upsert condition""" - on_conflict: tournament_trophies_on_conflict + on_conflict: tournament_team_roster_on_conflict } """aggregate avg on columns""" -type tournament_trophies_avg_fields { - placement: Float +type tournament_team_roster_avg_fields { player_steam_id: Float } """ -order by avg() on columns of table "tournament_trophies" +order by avg() on columns of table "tournament_team_roster" """ -input tournament_trophies_avg_order_by { - placement: order_by +input tournament_team_roster_avg_order_by { player_steam_id: order_by } """ -Boolean expression to filter rows from the table "tournament_trophies". All fields are combined with a logical 'AND'. +Boolean expression to filter rows from the table "tournament_team_roster". All fields are combined with a logical 'AND'. """ -input tournament_trophies_bool_exp { - _and: [tournament_trophies_bool_exp!] - _not: tournament_trophies_bool_exp - _or: [tournament_trophies_bool_exp!] - created_at: timestamptz_comparison_exp - id: uuid_comparison_exp - manual: Boolean_comparison_exp - placement: Int_comparison_exp - placement_tier: String_comparison_exp +input tournament_team_roster_bool_exp { + _and: [tournament_team_roster_bool_exp!] + _not: tournament_team_roster_bool_exp + _or: [tournament_team_roster_bool_exp!] + e_team_role: e_team_roles_bool_exp player: players_bool_exp player_steam_id: bigint_comparison_exp - team: teams_bool_exp - team_id: uuid_comparison_exp + role: e_team_roles_enum_comparison_exp tournament: tournaments_bool_exp tournament_id: uuid_comparison_exp tournament_team: tournament_teams_bool_exp tournament_team_id: uuid_comparison_exp - trophy_config: tournament_trophy_configs_bool_exp } """ -unique or primary key constraints on table "tournament_trophies" +unique or primary key constraints on table "tournament_team_roster" """ -enum tournament_trophies_constraint { - """ - unique or primary key constraint on columns "tournament_id" - """ - tournament_trophies_one_mvp_per_tournament - - """ - unique or primary key constraint on columns "id" - """ - tournament_trophies_pkey - +enum tournament_team_roster_constraint { """ - unique or primary key constraint on columns "player_steam_id", "placement", "tournament_team_id", "tournament_id" + unique or primary key constraint on columns "player_steam_id", "tournament_id" """ - tournament_trophies_player_recipient_key + tournament_roster_pkey """ - unique or primary key constraint on columns "placement", "tournament_team_id", "tournament_id", "team_id" + unique or primary key constraint on columns "player_steam_id", "tournament_id" """ - tournament_trophies_team_recipient_key + tournament_roster_player_steam_id_tournament_id_key } """ -input type for incrementing numeric columns in table "tournament_trophies" +input type for incrementing numeric columns in table "tournament_team_roster" """ -input tournament_trophies_inc_input { - placement: Int +input tournament_team_roster_inc_input { player_steam_id: bigint } """ -input type for inserting data into table "tournament_trophies" +input type for inserting data into table "tournament_team_roster" """ -input tournament_trophies_insert_input { - created_at: timestamptz - id: uuid - manual: Boolean - placement: Int +input tournament_team_roster_insert_input { + e_team_role: e_team_roles_obj_rel_insert_input player: players_obj_rel_insert_input player_steam_id: bigint - team: teams_obj_rel_insert_input - team_id: uuid + role: e_team_roles_enum tournament: tournaments_obj_rel_insert_input tournament_id: uuid tournament_team: tournament_teams_obj_rel_insert_input tournament_team_id: uuid - trophy_config: tournament_trophy_configs_obj_rel_insert_input } """aggregate max on columns""" -type tournament_trophies_max_fields { - created_at: timestamptz - id: uuid - placement: Int - placement_tier: String +type tournament_team_roster_max_fields { player_steam_id: bigint - team_id: uuid tournament_id: uuid tournament_team_id: uuid } """ -order by max() on columns of table "tournament_trophies" +order by max() on columns of table "tournament_team_roster" """ -input tournament_trophies_max_order_by { - created_at: order_by - id: order_by - placement: order_by - placement_tier: order_by +input tournament_team_roster_max_order_by { player_steam_id: order_by - team_id: order_by tournament_id: order_by tournament_team_id: order_by } """aggregate min on columns""" -type tournament_trophies_min_fields { - created_at: timestamptz - id: uuid - placement: Int - placement_tier: String +type tournament_team_roster_min_fields { player_steam_id: bigint - team_id: uuid tournament_id: uuid tournament_team_id: uuid } """ -order by min() on columns of table "tournament_trophies" +order by min() on columns of table "tournament_team_roster" """ -input tournament_trophies_min_order_by { - created_at: order_by - id: order_by - placement: order_by - placement_tier: order_by +input tournament_team_roster_min_order_by { player_steam_id: order_by - team_id: order_by tournament_id: order_by tournament_team_id: order_by } """ -response of any mutation on the table "tournament_trophies" +response of any mutation on the table "tournament_team_roster" """ -type tournament_trophies_mutation_response { +type tournament_team_roster_mutation_response { """number of rows affected by the mutation""" affected_rows: Int! """data from the rows affected by the mutation""" - returning: [tournament_trophies!]! + returning: [tournament_team_roster!]! } """ -on_conflict condition type for table "tournament_trophies" +on_conflict condition type for table "tournament_team_roster" """ -input tournament_trophies_on_conflict { - constraint: tournament_trophies_constraint! - update_columns: [tournament_trophies_update_column!]! = [] - where: tournament_trophies_bool_exp +input tournament_team_roster_on_conflict { + constraint: tournament_team_roster_constraint! + update_columns: [tournament_team_roster_update_column!]! = [] + where: tournament_team_roster_bool_exp } -"""Ordering options when selecting data from "tournament_trophies".""" -input tournament_trophies_order_by { - created_at: order_by - id: order_by - manual: order_by - placement: order_by - placement_tier: order_by +"""Ordering options when selecting data from "tournament_team_roster".""" +input tournament_team_roster_order_by { + e_team_role: e_team_roles_order_by player: players_order_by player_steam_id: order_by - team: teams_order_by - team_id: order_by + role: order_by tournament: tournaments_order_by tournament_id: order_by tournament_team: tournament_teams_order_by tournament_team_id: order_by - trophy_config: tournament_trophy_configs_order_by } -"""primary key columns input for table: tournament_trophies""" -input tournament_trophies_pk_columns_input { - id: uuid! +"""primary key columns input for table: tournament_team_roster""" +input tournament_team_roster_pk_columns_input { + player_steam_id: bigint! + tournament_id: uuid! } """ -select columns of table "tournament_trophies" +select columns of table "tournament_team_roster" """ -enum tournament_trophies_select_column { - """column name""" - created_at - - """column name""" - id - - """column name""" - manual - - """column name""" - placement - - """column name""" - placement_tier - +enum tournament_team_roster_select_column { """column name""" player_steam_id """column name""" - team_id + role """column name""" tournament_id @@ -97543,136 +99011,91 @@ enum tournament_trophies_select_column { } """ -select "tournament_trophies_aggregate_bool_exp_bool_and_arguments_columns" columns of table "tournament_trophies" -""" -enum tournament_trophies_select_column_tournament_trophies_aggregate_bool_exp_bool_and_arguments_columns { - """column name""" - manual -} - -""" -select "tournament_trophies_aggregate_bool_exp_bool_or_arguments_columns" columns of table "tournament_trophies" -""" -enum tournament_trophies_select_column_tournament_trophies_aggregate_bool_exp_bool_or_arguments_columns { - """column name""" - manual -} - -""" -input type for updating data in table "tournament_trophies" +input type for updating data in table "tournament_team_roster" """ -input tournament_trophies_set_input { - created_at: timestamptz - id: uuid - manual: Boolean - placement: Int +input tournament_team_roster_set_input { player_steam_id: bigint - team_id: uuid + role: e_team_roles_enum tournament_id: uuid tournament_team_id: uuid } """aggregate stddev on columns""" -type tournament_trophies_stddev_fields { - placement: Float +type tournament_team_roster_stddev_fields { player_steam_id: Float } """ -order by stddev() on columns of table "tournament_trophies" +order by stddev() on columns of table "tournament_team_roster" """ -input tournament_trophies_stddev_order_by { - placement: order_by +input tournament_team_roster_stddev_order_by { player_steam_id: order_by } """aggregate stddev_pop on columns""" -type tournament_trophies_stddev_pop_fields { - placement: Float +type tournament_team_roster_stddev_pop_fields { player_steam_id: Float } """ -order by stddev_pop() on columns of table "tournament_trophies" +order by stddev_pop() on columns of table "tournament_team_roster" """ -input tournament_trophies_stddev_pop_order_by { - placement: order_by +input tournament_team_roster_stddev_pop_order_by { player_steam_id: order_by } """aggregate stddev_samp on columns""" -type tournament_trophies_stddev_samp_fields { - placement: Float +type tournament_team_roster_stddev_samp_fields { player_steam_id: Float } """ -order by stddev_samp() on columns of table "tournament_trophies" +order by stddev_samp() on columns of table "tournament_team_roster" """ -input tournament_trophies_stddev_samp_order_by { - placement: order_by +input tournament_team_roster_stddev_samp_order_by { player_steam_id: order_by } """ -Streaming cursor of the table "tournament_trophies" +Streaming cursor of the table "tournament_team_roster" """ -input tournament_trophies_stream_cursor_input { +input tournament_team_roster_stream_cursor_input { """Stream column input with initial value""" - initial_value: tournament_trophies_stream_cursor_value_input! + initial_value: tournament_team_roster_stream_cursor_value_input! """cursor ordering""" ordering: cursor_ordering } """Initial value of the column from where the streaming should start""" -input tournament_trophies_stream_cursor_value_input { - created_at: timestamptz - id: uuid - manual: Boolean - placement: Int - placement_tier: String +input tournament_team_roster_stream_cursor_value_input { player_steam_id: bigint - team_id: uuid + role: e_team_roles_enum tournament_id: uuid tournament_team_id: uuid } """aggregate sum on columns""" -type tournament_trophies_sum_fields { - placement: Int +type tournament_team_roster_sum_fields { player_steam_id: bigint } """ -order by sum() on columns of table "tournament_trophies" +order by sum() on columns of table "tournament_team_roster" """ -input tournament_trophies_sum_order_by { - placement: order_by +input tournament_team_roster_sum_order_by { player_steam_id: order_by } """ -update columns of table "tournament_trophies" +update columns of table "tournament_team_roster" """ -enum tournament_trophies_update_column { - """column name""" - created_at - - """column name""" - id - - """column name""" - manual - - """column name""" - placement - +enum tournament_team_roster_update_column { """column name""" player_steam_id """column name""" - team_id + role """column name""" tournament_id @@ -97681,511 +99104,679 @@ enum tournament_trophies_update_column { tournament_team_id } -input tournament_trophies_updates { +input tournament_team_roster_updates { """increments the numeric columns with given value of the filtered values""" - _inc: tournament_trophies_inc_input + _inc: tournament_team_roster_inc_input """sets the columns of the filtered rows to the given values""" - _set: tournament_trophies_set_input + _set: tournament_team_roster_set_input """filter the rows which have to be updated""" - where: tournament_trophies_bool_exp! + where: tournament_team_roster_bool_exp! } """aggregate var_pop on columns""" -type tournament_trophies_var_pop_fields { - placement: Float +type tournament_team_roster_var_pop_fields { player_steam_id: Float } """ -order by var_pop() on columns of table "tournament_trophies" +order by var_pop() on columns of table "tournament_team_roster" """ -input tournament_trophies_var_pop_order_by { - placement: order_by +input tournament_team_roster_var_pop_order_by { player_steam_id: order_by } """aggregate var_samp on columns""" -type tournament_trophies_var_samp_fields { - placement: Float +type tournament_team_roster_var_samp_fields { player_steam_id: Float } """ -order by var_samp() on columns of table "tournament_trophies" +order by var_samp() on columns of table "tournament_team_roster" """ -input tournament_trophies_var_samp_order_by { - placement: order_by +input tournament_team_roster_var_samp_order_by { player_steam_id: order_by } """aggregate variance on columns""" -type tournament_trophies_variance_fields { - placement: Float +type tournament_team_roster_variance_fields { player_steam_id: Float } """ -order by variance() on columns of table "tournament_trophies" +order by variance() on columns of table "tournament_team_roster" """ -input tournament_trophies_variance_order_by { - placement: order_by +input tournament_team_roster_variance_order_by { player_steam_id: order_by } -""" -columns and relationships of "tournament_trophy_configs" -""" -type tournament_trophy_configs { - created_at: timestamptz! - custom_name: String - id: uuid! - image_url: String - placement: Int! - silhouette: Int +""" +columns and relationships of "tournament_teams" +""" +type tournament_teams { + """ + A computed field, executes function "can_manage_tournament_team" + """ + can_manage: Boolean + + """An object relationship""" + captain: players + captain_steam_id: bigint + created_at: timestamptz! + + """An object relationship""" + creator: players! + eligible_at: timestamptz + id: uuid! + + """An array relationship""" + invites( + """distinct select on columns""" + distinct_on: [tournament_team_invites_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: [tournament_team_invites_order_by!] + + """filter the rows returned""" + where: tournament_team_invites_bool_exp + ): [tournament_team_invites!]! + + """An aggregate relationship""" + invites_aggregate( + """distinct select on columns""" + distinct_on: [tournament_team_invites_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: [tournament_team_invites_order_by!] + + """filter the rows returned""" + where: tournament_team_invites_bool_exp + ): tournament_team_invites_aggregate! + name: String + owner_steam_id: bigint! + + """An object relationship""" + results: v_team_stage_results + + """An array relationship""" + roster( + """distinct select on columns""" + distinct_on: [tournament_team_roster_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: [tournament_team_roster_order_by!] + + """filter the rows returned""" + where: tournament_team_roster_bool_exp + ): [tournament_team_roster!]! + + """An aggregate relationship""" + roster_aggregate( + """distinct select on columns""" + distinct_on: [tournament_team_roster_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: [tournament_team_roster_order_by!] + + """filter the rows returned""" + where: tournament_team_roster_bool_exp + ): tournament_team_roster_aggregate! + seed: Int + short_name: String + + """An object relationship""" + team: teams + team_id: uuid """An object relationship""" tournament: tournaments! tournament_id: uuid! - updated_at: timestamptz! } """ -aggregated selection of "tournament_trophy_configs" +aggregated selection of "tournament_teams" """ -type tournament_trophy_configs_aggregate { - aggregate: tournament_trophy_configs_aggregate_fields - nodes: [tournament_trophy_configs!]! +type tournament_teams_aggregate { + aggregate: tournament_teams_aggregate_fields + nodes: [tournament_teams!]! } -input tournament_trophy_configs_aggregate_bool_exp { - count: tournament_trophy_configs_aggregate_bool_exp_count +input tournament_teams_aggregate_bool_exp { + count: tournament_teams_aggregate_bool_exp_count } -input tournament_trophy_configs_aggregate_bool_exp_count { - arguments: [tournament_trophy_configs_select_column!] +input tournament_teams_aggregate_bool_exp_count { + arguments: [tournament_teams_select_column!] distinct: Boolean - filter: tournament_trophy_configs_bool_exp + filter: tournament_teams_bool_exp predicate: Int_comparison_exp! } """ -aggregate fields of "tournament_trophy_configs" +aggregate fields of "tournament_teams" """ -type tournament_trophy_configs_aggregate_fields { - avg: tournament_trophy_configs_avg_fields - count(columns: [tournament_trophy_configs_select_column!], distinct: Boolean): Int! - max: tournament_trophy_configs_max_fields - min: tournament_trophy_configs_min_fields - stddev: tournament_trophy_configs_stddev_fields - stddev_pop: tournament_trophy_configs_stddev_pop_fields - stddev_samp: tournament_trophy_configs_stddev_samp_fields - sum: tournament_trophy_configs_sum_fields - var_pop: tournament_trophy_configs_var_pop_fields - var_samp: tournament_trophy_configs_var_samp_fields - variance: tournament_trophy_configs_variance_fields +type tournament_teams_aggregate_fields { + avg: tournament_teams_avg_fields + count(columns: [tournament_teams_select_column!], distinct: Boolean): Int! + max: tournament_teams_max_fields + min: tournament_teams_min_fields + stddev: tournament_teams_stddev_fields + stddev_pop: tournament_teams_stddev_pop_fields + stddev_samp: tournament_teams_stddev_samp_fields + sum: tournament_teams_sum_fields + var_pop: tournament_teams_var_pop_fields + var_samp: tournament_teams_var_samp_fields + variance: tournament_teams_variance_fields } """ -order by aggregate values of table "tournament_trophy_configs" +order by aggregate values of table "tournament_teams" """ -input tournament_trophy_configs_aggregate_order_by { - avg: tournament_trophy_configs_avg_order_by +input tournament_teams_aggregate_order_by { + avg: tournament_teams_avg_order_by count: order_by - max: tournament_trophy_configs_max_order_by - min: tournament_trophy_configs_min_order_by - stddev: tournament_trophy_configs_stddev_order_by - stddev_pop: tournament_trophy_configs_stddev_pop_order_by - stddev_samp: tournament_trophy_configs_stddev_samp_order_by - sum: tournament_trophy_configs_sum_order_by - var_pop: tournament_trophy_configs_var_pop_order_by - var_samp: tournament_trophy_configs_var_samp_order_by - variance: tournament_trophy_configs_variance_order_by + max: tournament_teams_max_order_by + min: tournament_teams_min_order_by + stddev: tournament_teams_stddev_order_by + stddev_pop: tournament_teams_stddev_pop_order_by + stddev_samp: tournament_teams_stddev_samp_order_by + sum: tournament_teams_sum_order_by + var_pop: tournament_teams_var_pop_order_by + var_samp: tournament_teams_var_samp_order_by + variance: tournament_teams_variance_order_by } """ -input type for inserting array relation for remote table "tournament_trophy_configs" +input type for inserting array relation for remote table "tournament_teams" """ -input tournament_trophy_configs_arr_rel_insert_input { - data: [tournament_trophy_configs_insert_input!]! +input tournament_teams_arr_rel_insert_input { + data: [tournament_teams_insert_input!]! """upsert condition""" - on_conflict: tournament_trophy_configs_on_conflict + on_conflict: tournament_teams_on_conflict } """aggregate avg on columns""" -type tournament_trophy_configs_avg_fields { - placement: Float - silhouette: Float +type tournament_teams_avg_fields { + captain_steam_id: Float + owner_steam_id: Float + seed: Float } """ -order by avg() on columns of table "tournament_trophy_configs" +order by avg() on columns of table "tournament_teams" """ -input tournament_trophy_configs_avg_order_by { - placement: order_by - silhouette: order_by +input tournament_teams_avg_order_by { + captain_steam_id: order_by + owner_steam_id: order_by + seed: order_by } """ -Boolean expression to filter rows from the table "tournament_trophy_configs". All fields are combined with a logical 'AND'. +Boolean expression to filter rows from the table "tournament_teams". All fields are combined with a logical 'AND'. """ -input tournament_trophy_configs_bool_exp { - _and: [tournament_trophy_configs_bool_exp!] - _not: tournament_trophy_configs_bool_exp - _or: [tournament_trophy_configs_bool_exp!] +input tournament_teams_bool_exp { + _and: [tournament_teams_bool_exp!] + _not: tournament_teams_bool_exp + _or: [tournament_teams_bool_exp!] + can_manage: Boolean_comparison_exp + captain: players_bool_exp + captain_steam_id: bigint_comparison_exp created_at: timestamptz_comparison_exp - custom_name: String_comparison_exp + creator: players_bool_exp + eligible_at: timestamptz_comparison_exp id: uuid_comparison_exp - image_url: String_comparison_exp - placement: Int_comparison_exp - silhouette: Int_comparison_exp + invites: tournament_team_invites_bool_exp + invites_aggregate: tournament_team_invites_aggregate_bool_exp + name: String_comparison_exp + owner_steam_id: bigint_comparison_exp + results: v_team_stage_results_bool_exp + roster: tournament_team_roster_bool_exp + roster_aggregate: tournament_team_roster_aggregate_bool_exp + seed: Int_comparison_exp + short_name: String_comparison_exp + team: teams_bool_exp + team_id: uuid_comparison_exp tournament: tournaments_bool_exp tournament_id: uuid_comparison_exp - updated_at: timestamptz_comparison_exp } """ -unique or primary key constraints on table "tournament_trophy_configs" +unique or primary key constraints on table "tournament_teams" """ -enum tournament_trophy_configs_constraint { +enum tournament_teams_constraint { + """ + unique or primary key constraint on columns "tournament_id", "owner_steam_id" + """ + tournament_teams_creator_steam_id_tournament_id_key + """ unique or primary key constraint on columns "id" """ - tournament_trophy_configs_pkey + tournament_teams_pkey """ - unique or primary key constraint on columns "placement", "tournament_id" + unique or primary key constraint on columns "tournament_id", "name" + """ + tournament_teams_tournament_id_name_key + + """ + unique or primary key constraint on columns "tournament_id", "seed" + """ + tournament_teams_tournament_id_seed_key + """ - tournament_trophy_configs_tournament_id_placement_key + unique or primary key constraint on columns "tournament_id", "team_id" + """ + tournament_teams_tournament_id_team_id_key } """ -input type for incrementing numeric columns in table "tournament_trophy_configs" +input type for incrementing numeric columns in table "tournament_teams" """ -input tournament_trophy_configs_inc_input { - placement: Int - silhouette: Int +input tournament_teams_inc_input { + captain_steam_id: bigint + owner_steam_id: bigint + seed: Int } """ -input type for inserting data into table "tournament_trophy_configs" +input type for inserting data into table "tournament_teams" """ -input tournament_trophy_configs_insert_input { +input tournament_teams_insert_input { + captain: players_obj_rel_insert_input + captain_steam_id: bigint created_at: timestamptz - custom_name: String + creator: players_obj_rel_insert_input + eligible_at: timestamptz id: uuid - image_url: String - placement: Int - silhouette: Int + invites: tournament_team_invites_arr_rel_insert_input + name: String + owner_steam_id: bigint + results: v_team_stage_results_obj_rel_insert_input + roster: tournament_team_roster_arr_rel_insert_input + seed: Int + short_name: String + team: teams_obj_rel_insert_input + team_id: uuid tournament: tournaments_obj_rel_insert_input tournament_id: uuid - updated_at: timestamptz } """aggregate max on columns""" -type tournament_trophy_configs_max_fields { +type tournament_teams_max_fields { + captain_steam_id: bigint created_at: timestamptz - custom_name: String + eligible_at: timestamptz id: uuid - image_url: String - placement: Int - silhouette: Int + name: String + owner_steam_id: bigint + seed: Int + short_name: String + team_id: uuid tournament_id: uuid - updated_at: timestamptz } """ -order by max() on columns of table "tournament_trophy_configs" +order by max() on columns of table "tournament_teams" """ -input tournament_trophy_configs_max_order_by { +input tournament_teams_max_order_by { + captain_steam_id: order_by created_at: order_by - custom_name: order_by + eligible_at: order_by id: order_by - image_url: order_by - placement: order_by - silhouette: order_by + name: order_by + owner_steam_id: order_by + seed: order_by + short_name: order_by + team_id: order_by tournament_id: order_by - updated_at: order_by } """aggregate min on columns""" -type tournament_trophy_configs_min_fields { +type tournament_teams_min_fields { + captain_steam_id: bigint created_at: timestamptz - custom_name: String + eligible_at: timestamptz id: uuid - image_url: String - placement: Int - silhouette: Int + name: String + owner_steam_id: bigint + seed: Int + short_name: String + team_id: uuid tournament_id: uuid - updated_at: timestamptz } """ -order by min() on columns of table "tournament_trophy_configs" +order by min() on columns of table "tournament_teams" """ -input tournament_trophy_configs_min_order_by { +input tournament_teams_min_order_by { + captain_steam_id: order_by created_at: order_by - custom_name: order_by + eligible_at: order_by id: order_by - image_url: order_by - placement: order_by - silhouette: order_by + name: order_by + owner_steam_id: order_by + seed: order_by + short_name: order_by + team_id: order_by tournament_id: order_by - updated_at: order_by } """ -response of any mutation on the table "tournament_trophy_configs" +response of any mutation on the table "tournament_teams" """ -type tournament_trophy_configs_mutation_response { +type tournament_teams_mutation_response { """number of rows affected by the mutation""" affected_rows: Int! """data from the rows affected by the mutation""" - returning: [tournament_trophy_configs!]! + returning: [tournament_teams!]! } """ -input type for inserting object relation for remote table "tournament_trophy_configs" +input type for inserting object relation for remote table "tournament_teams" """ -input tournament_trophy_configs_obj_rel_insert_input { - data: tournament_trophy_configs_insert_input! +input tournament_teams_obj_rel_insert_input { + data: tournament_teams_insert_input! """upsert condition""" - on_conflict: tournament_trophy_configs_on_conflict + on_conflict: tournament_teams_on_conflict } """ -on_conflict condition type for table "tournament_trophy_configs" +on_conflict condition type for table "tournament_teams" """ -input tournament_trophy_configs_on_conflict { - constraint: tournament_trophy_configs_constraint! - update_columns: [tournament_trophy_configs_update_column!]! = [] - where: tournament_trophy_configs_bool_exp +input tournament_teams_on_conflict { + constraint: tournament_teams_constraint! + update_columns: [tournament_teams_update_column!]! = [] + where: tournament_teams_bool_exp } -"""Ordering options when selecting data from "tournament_trophy_configs".""" -input tournament_trophy_configs_order_by { +"""Ordering options when selecting data from "tournament_teams".""" +input tournament_teams_order_by { + can_manage: order_by + captain: players_order_by + captain_steam_id: order_by created_at: order_by - custom_name: order_by + creator: players_order_by + eligible_at: order_by id: order_by - image_url: order_by - placement: order_by - silhouette: order_by + invites_aggregate: tournament_team_invites_aggregate_order_by + name: order_by + owner_steam_id: order_by + results: v_team_stage_results_order_by + roster_aggregate: tournament_team_roster_aggregate_order_by + seed: order_by + short_name: order_by + team: teams_order_by + team_id: order_by tournament: tournaments_order_by tournament_id: order_by - updated_at: order_by } -"""primary key columns input for table: tournament_trophy_configs""" -input tournament_trophy_configs_pk_columns_input { +"""primary key columns input for table: tournament_teams""" +input tournament_teams_pk_columns_input { id: uuid! } """ -select columns of table "tournament_trophy_configs" +select columns of table "tournament_teams" """ -enum tournament_trophy_configs_select_column { +enum tournament_teams_select_column { + """column name""" + captain_steam_id + """column name""" created_at """column name""" - custom_name + eligible_at """column name""" id """column name""" - image_url + name """column name""" - placement + owner_steam_id """column name""" - silhouette + seed """column name""" - tournament_id + short_name """column name""" - updated_at + team_id + + """column name""" + tournament_id } """ -input type for updating data in table "tournament_trophy_configs" +input type for updating data in table "tournament_teams" """ -input tournament_trophy_configs_set_input { +input tournament_teams_set_input { + captain_steam_id: bigint created_at: timestamptz - custom_name: String + eligible_at: timestamptz id: uuid - image_url: String - placement: Int - silhouette: Int + name: String + owner_steam_id: bigint + seed: Int + short_name: String + team_id: uuid tournament_id: uuid - updated_at: timestamptz } """aggregate stddev on columns""" -type tournament_trophy_configs_stddev_fields { - placement: Float - silhouette: Float +type tournament_teams_stddev_fields { + captain_steam_id: Float + owner_steam_id: Float + seed: Float } """ -order by stddev() on columns of table "tournament_trophy_configs" +order by stddev() on columns of table "tournament_teams" """ -input tournament_trophy_configs_stddev_order_by { - placement: order_by - silhouette: order_by +input tournament_teams_stddev_order_by { + captain_steam_id: order_by + owner_steam_id: order_by + seed: order_by } """aggregate stddev_pop on columns""" -type tournament_trophy_configs_stddev_pop_fields { - placement: Float - silhouette: Float +type tournament_teams_stddev_pop_fields { + captain_steam_id: Float + owner_steam_id: Float + seed: Float } """ -order by stddev_pop() on columns of table "tournament_trophy_configs" +order by stddev_pop() on columns of table "tournament_teams" """ -input tournament_trophy_configs_stddev_pop_order_by { - placement: order_by - silhouette: order_by +input tournament_teams_stddev_pop_order_by { + captain_steam_id: order_by + owner_steam_id: order_by + seed: order_by } """aggregate stddev_samp on columns""" -type tournament_trophy_configs_stddev_samp_fields { - placement: Float - silhouette: Float +type tournament_teams_stddev_samp_fields { + captain_steam_id: Float + owner_steam_id: Float + seed: Float } """ -order by stddev_samp() on columns of table "tournament_trophy_configs" +order by stddev_samp() on columns of table "tournament_teams" """ -input tournament_trophy_configs_stddev_samp_order_by { - placement: order_by - silhouette: order_by +input tournament_teams_stddev_samp_order_by { + captain_steam_id: order_by + owner_steam_id: order_by + seed: order_by } """ -Streaming cursor of the table "tournament_trophy_configs" +Streaming cursor of the table "tournament_teams" """ -input tournament_trophy_configs_stream_cursor_input { +input tournament_teams_stream_cursor_input { """Stream column input with initial value""" - initial_value: tournament_trophy_configs_stream_cursor_value_input! + initial_value: tournament_teams_stream_cursor_value_input! """cursor ordering""" ordering: cursor_ordering } """Initial value of the column from where the streaming should start""" -input tournament_trophy_configs_stream_cursor_value_input { +input tournament_teams_stream_cursor_value_input { + captain_steam_id: bigint created_at: timestamptz - custom_name: String + eligible_at: timestamptz id: uuid - image_url: String - placement: Int - silhouette: Int + name: String + owner_steam_id: bigint + seed: Int + short_name: String + team_id: uuid tournament_id: uuid - updated_at: timestamptz } """aggregate sum on columns""" -type tournament_trophy_configs_sum_fields { - placement: Int - silhouette: Int +type tournament_teams_sum_fields { + captain_steam_id: bigint + owner_steam_id: bigint + seed: Int } """ -order by sum() on columns of table "tournament_trophy_configs" +order by sum() on columns of table "tournament_teams" """ -input tournament_trophy_configs_sum_order_by { - placement: order_by - silhouette: order_by +input tournament_teams_sum_order_by { + captain_steam_id: order_by + owner_steam_id: order_by + seed: order_by } """ -update columns of table "tournament_trophy_configs" +update columns of table "tournament_teams" """ -enum tournament_trophy_configs_update_column { +enum tournament_teams_update_column { + """column name""" + captain_steam_id + """column name""" created_at """column name""" - custom_name + eligible_at """column name""" id """column name""" - image_url + name """column name""" - placement + owner_steam_id """column name""" - silhouette + seed """column name""" - tournament_id + short_name """column name""" - updated_at + team_id + + """column name""" + tournament_id } -input tournament_trophy_configs_updates { +input tournament_teams_updates { """increments the numeric columns with given value of the filtered values""" - _inc: tournament_trophy_configs_inc_input + _inc: tournament_teams_inc_input """sets the columns of the filtered rows to the given values""" - _set: tournament_trophy_configs_set_input + _set: tournament_teams_set_input """filter the rows which have to be updated""" - where: tournament_trophy_configs_bool_exp! + where: tournament_teams_bool_exp! } """aggregate var_pop on columns""" -type tournament_trophy_configs_var_pop_fields { - placement: Float - silhouette: Float +type tournament_teams_var_pop_fields { + captain_steam_id: Float + owner_steam_id: Float + seed: Float } """ -order by var_pop() on columns of table "tournament_trophy_configs" +order by var_pop() on columns of table "tournament_teams" """ -input tournament_trophy_configs_var_pop_order_by { - placement: order_by - silhouette: order_by +input tournament_teams_var_pop_order_by { + captain_steam_id: order_by + owner_steam_id: order_by + seed: order_by } """aggregate var_samp on columns""" -type tournament_trophy_configs_var_samp_fields { - placement: Float - silhouette: Float +type tournament_teams_var_samp_fields { + captain_steam_id: Float + owner_steam_id: Float + seed: Float } """ -order by var_samp() on columns of table "tournament_trophy_configs" +order by var_samp() on columns of table "tournament_teams" """ -input tournament_trophy_configs_var_samp_order_by { - placement: order_by - silhouette: order_by +input tournament_teams_var_samp_order_by { + captain_steam_id: order_by + owner_steam_id: order_by + seed: order_by } """aggregate variance on columns""" -type tournament_trophy_configs_variance_fields { - placement: Float - silhouette: Float +type tournament_teams_variance_fields { + captain_steam_id: Float + owner_steam_id: Float + seed: Float } """ -order by variance() on columns of table "tournament_trophy_configs" +order by variance() on columns of table "tournament_teams" """ -input tournament_trophy_configs_variance_order_by { - placement: order_by - silhouette: order_by +input tournament_teams_variance_order_by { + captain_steam_id: order_by + owner_steam_id: order_by + seed: order_by } """ @@ -98195,6 +99786,79 @@ type tournaments { """An object relationship""" admin: players! auto_start: Boolean! + + """An array relationship""" + award_configs( + """distinct select on columns""" + distinct_on: [tournament_awards_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: [tournament_awards_order_by!] + + """filter the rows returned""" + where: tournament_awards_bool_exp + ): [tournament_awards!]! + + """An aggregate relationship""" + award_configs_aggregate( + """distinct select on columns""" + distinct_on: [tournament_awards_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: [tournament_awards_order_by!] + + """filter the rows returned""" + where: tournament_awards_bool_exp + ): tournament_awards_aggregate! + + """An array relationship""" + awards( + """distinct select on columns""" + distinct_on: [award_recipients_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: [award_recipients_order_by!] + + """filter the rows returned""" + where: award_recipients_bool_exp + ): [award_recipients!]! + + """An aggregate relationship""" + awards_aggregate( + """distinct select on columns""" + distinct_on: [award_recipients_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: [award_recipients_order_by!] + + """filter the rows returned""" + where: award_recipients_bool_exp + ): award_recipients_aggregate! + awards_enabled: Boolean! banner: String """ @@ -98626,79 +100290,6 @@ type tournaments { """filter the rows returned""" where: tournament_teams_bool_exp ): tournament_teams_aggregate! - - """An array relationship""" - trophies( - """distinct select on columns""" - distinct_on: [tournament_trophies_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: [tournament_trophies_order_by!] - - """filter the rows returned""" - where: tournament_trophies_bool_exp - ): [tournament_trophies!]! - - """An aggregate relationship""" - trophies_aggregate( - """distinct select on columns""" - distinct_on: [tournament_trophies_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: [tournament_trophies_order_by!] - - """filter the rows returned""" - where: tournament_trophies_bool_exp - ): tournament_trophies_aggregate! - trophies_enabled: Boolean! - - """An array relationship""" - trophy_configs( - """distinct select on columns""" - distinct_on: [tournament_trophy_configs_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: [tournament_trophy_configs_order_by!] - - """filter the rows returned""" - where: tournament_trophy_configs_bool_exp - ): [tournament_trophy_configs!]! - - """An aggregate relationship""" - trophy_configs_aggregate( - """distinct select on columns""" - distinct_on: [tournament_trophy_configs_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: [tournament_trophy_configs_order_by!] - - """filter the rows returned""" - where: tournament_trophy_configs_bool_exp - ): tournament_trophy_configs_aggregate! } """ @@ -98889,6 +100480,11 @@ input tournaments_bool_exp { _or: [tournaments_bool_exp!] admin: players_bool_exp auto_start: Boolean_comparison_exp + award_configs: tournament_awards_bool_exp + award_configs_aggregate: tournament_awards_aggregate_bool_exp + awards: award_recipients_bool_exp + awards_aggregate: award_recipients_aggregate_bool_exp + awards_enabled: Boolean_comparison_exp banner: String_comparison_exp can_cancel: Boolean_comparison_exp can_close_registration: Boolean_comparison_exp @@ -98956,11 +100552,6 @@ input tournaments_bool_exp { status: e_tournament_status_enum_comparison_exp teams: tournament_teams_bool_exp teams_aggregate: tournament_teams_aggregate_bool_exp - trophies: tournament_trophies_bool_exp - trophies_aggregate: tournament_trophies_aggregate_bool_exp - trophies_enabled: Boolean_comparison_exp - trophy_configs: tournament_trophy_configs_bool_exp - trophy_configs_aggregate: tournament_trophy_configs_aggregate_bool_exp } """ @@ -98993,6 +100584,9 @@ input type for inserting data into table "tournaments" input tournaments_insert_input { admin: players_obj_rel_insert_input auto_start: Boolean + award_configs: tournament_awards_arr_rel_insert_input + awards: award_recipients_arr_rel_insert_input + awards_enabled: Boolean banner: String categories: tournament_categories_arr_rel_insert_input created_at: timestamptz @@ -99038,9 +100632,6 @@ input tournaments_insert_input { start: timestamptz status: e_tournament_status_enum teams: tournament_teams_arr_rel_insert_input - trophies: tournament_trophies_arr_rel_insert_input - trophies_enabled: Boolean - trophy_configs: tournament_trophy_configs_arr_rel_insert_input } """aggregate max on columns""" @@ -99185,6 +100776,9 @@ input tournaments_on_conflict { input tournaments_order_by { admin: players_order_by auto_start: order_by + award_configs_aggregate: tournament_awards_aggregate_order_by + awards_aggregate: award_recipients_aggregate_order_by + awards_enabled: order_by banner: order_by can_cancel: order_by can_close_registration: order_by @@ -99243,9 +100837,6 @@ input tournaments_order_by { start: order_by status: order_by teams_aggregate: tournament_teams_aggregate_order_by - trophies_aggregate: tournament_trophies_aggregate_order_by - trophies_enabled: order_by - trophy_configs_aggregate: tournament_trophy_configs_aggregate_order_by } """primary key columns input for table: tournaments""" @@ -99260,6 +100851,9 @@ enum tournaments_select_column { """column name""" auto_start + """column name""" + awards_enabled + """column name""" banner @@ -99358,9 +100952,6 @@ enum tournaments_select_column { """column name""" status - - """column name""" - trophies_enabled } """ @@ -99381,6 +100972,9 @@ enum tournaments_select_column_tournaments_aggregate_bool_exp_bool_and_arguments """column name""" auto_start + """column name""" + awards_enabled + """column name""" discord_notifications_enabled @@ -99425,9 +101019,6 @@ enum tournaments_select_column_tournaments_aggregate_bool_exp_bool_and_arguments """column name""" is_league - - """column name""" - trophies_enabled } """ @@ -99437,6 +101028,9 @@ enum tournaments_select_column_tournaments_aggregate_bool_exp_bool_or_arguments_ """column name""" auto_start + """column name""" + awards_enabled + """column name""" discord_notifications_enabled @@ -99481,9 +101075,6 @@ enum tournaments_select_column_tournaments_aggregate_bool_exp_bool_or_arguments_ """column name""" is_league - - """column name""" - trophies_enabled } """ @@ -99568,6 +101159,7 @@ input type for updating data in table "tournaments" """ input tournaments_set_input { auto_start: Boolean + awards_enabled: Boolean banner: String created_at: timestamptz description: String @@ -99601,7 +101193,6 @@ input tournaments_set_input { scheduling_mode: String start: timestamptz status: e_tournament_status_enum - trophies_enabled: Boolean } """aggregate stddev on columns""" @@ -99696,6 +101287,7 @@ input tournaments_stream_cursor_input { """Initial value of the column from where the streaming should start""" input tournaments_stream_cursor_value_input { auto_start: Boolean + awards_enabled: Boolean banner: String created_at: timestamptz description: String @@ -99729,7 +101321,6 @@ input tournaments_stream_cursor_value_input { scheduling_mode: String start: timestamptz status: e_tournament_status_enum - trophies_enabled: Boolean } """aggregate sum on columns""" @@ -99765,6 +101356,9 @@ enum tournaments_update_column { """column name""" auto_start + """column name""" + awards_enabled + """column name""" banner @@ -99863,9 +101457,6 @@ enum tournaments_update_column { """column name""" status - - """column name""" - trophies_enabled } input tournaments_updates { diff --git a/generated/schema.ts b/generated/schema.ts index c1aaad43..0f3d29fd 100644 --- a/generated/schema.ts +++ b/generated/schema.ts @@ -52,6 +52,36 @@ export interface ApiKeyResponse { __typename: 'ApiKeyResponse' } +export interface Award { + allow_multiple: Scalars['Boolean'] + created_at: Scalars['String'] + created_by_steam_id: (Scalars['String'] | null) + description: (Scalars['String'] | null) + id: Scalars['uuid'] + image_url: (Scalars['String'] | null) + name: Scalars['String'] + silhouette: (Scalars['Int'] | null) + system_key: (Scalars['String'] | null) + tier: Scalars['String'] + updated_at: Scalars['String'] + __typename: 'Award' +} + +export interface AwardRecipient { + award_id: Scalars['uuid'] + awarded_by_steam_id: (Scalars['String'] | null) + created_at: Scalars['String'] + id: Scalars['uuid'] + note: (Scalars['String'] | null) + placement: (Scalars['Int'] | null) + player_steam_id: (Scalars['String'] | null) + source: Scalars['String'] + team_id: (Scalars['uuid'] | null) + tournament_id: (Scalars['uuid'] | null) + tournament_team_id: (Scalars['uuid'] | null) + __typename: 'AwardRecipient' +} + export interface ConnectionByState { count: Scalars['Int'] state: Scalars['String'] @@ -694,6 +724,17 @@ export interface TimescaleStats { __typename: 'TimescaleStats' } +export interface TournamentAward { + award_id: (Scalars['uuid'] | null) + custom_name: (Scalars['String'] | null) + id: Scalars['uuid'] + image_url: (Scalars['String'] | null) + placement: Scalars['Int'] + silhouette: (Scalars['Int'] | null) + tournament_id: Scalars['uuid'] + __typename: 'TournamentAward' +} + export interface TournamentMatchResetImpact { bracket_id: Scalars['uuid'] depth: Scalars['Int'] @@ -1046,6 +1087,359 @@ export interface api_keys_variance_fields { } +/** columns and relationships of "award_recipients" */ +export interface award_recipients { + /** An object relationship */ + award: awards + award_id: Scalars['uuid'] + /** An object relationship */ + awarded_by: (players | null) + awarded_by_steam_id: (Scalars['bigint'] | null) + created_at: Scalars['timestamptz'] + id: Scalars['uuid'] + note: (Scalars['String'] | null) + placement: (Scalars['Int'] | null) + placement_tier: (Scalars['String'] | null) + /** An object relationship */ + player: (players | null) + player_steam_id: (Scalars['bigint'] | null) + source: e_award_sources_enum + /** An object relationship */ + team: (teams | null) + team_id: (Scalars['uuid'] | null) + /** An object relationship */ + tournament: (tournaments | null) + /** An object relationship */ + tournament_award: (tournament_awards | null) + tournament_id: (Scalars['uuid'] | null) + /** An object relationship */ + tournament_team: (tournament_teams | null) + tournament_team_id: (Scalars['uuid'] | null) + __typename: 'award_recipients' +} + + +/** aggregated selection of "award_recipients" */ +export interface award_recipients_aggregate { + aggregate: (award_recipients_aggregate_fields | null) + nodes: award_recipients[] + __typename: 'award_recipients_aggregate' +} + + +/** aggregate fields of "award_recipients" */ +export interface award_recipients_aggregate_fields { + avg: (award_recipients_avg_fields | null) + count: Scalars['Int'] + max: (award_recipients_max_fields | null) + min: (award_recipients_min_fields | null) + stddev: (award_recipients_stddev_fields | null) + stddev_pop: (award_recipients_stddev_pop_fields | null) + stddev_samp: (award_recipients_stddev_samp_fields | null) + sum: (award_recipients_sum_fields | null) + var_pop: (award_recipients_var_pop_fields | null) + var_samp: (award_recipients_var_samp_fields | null) + variance: (award_recipients_variance_fields | null) + __typename: 'award_recipients_aggregate_fields' +} + + +/** aggregate avg on columns */ +export interface award_recipients_avg_fields { + awarded_by_steam_id: (Scalars['Float'] | null) + placement: (Scalars['Float'] | null) + player_steam_id: (Scalars['Float'] | null) + __typename: 'award_recipients_avg_fields' +} + + +/** unique or primary key constraints on table "award_recipients" */ +export type award_recipients_constraint = 'award_recipients_one_mvp_per_tournament' | 'award_recipients_pkey' | 'award_recipients_player_recipient_key' | 'award_recipients_team_recipient_key' + + +/** aggregate max on columns */ +export interface award_recipients_max_fields { + award_id: (Scalars['uuid'] | null) + awarded_by_steam_id: (Scalars['bigint'] | null) + created_at: (Scalars['timestamptz'] | null) + id: (Scalars['uuid'] | null) + note: (Scalars['String'] | null) + placement: (Scalars['Int'] | null) + placement_tier: (Scalars['String'] | null) + player_steam_id: (Scalars['bigint'] | null) + team_id: (Scalars['uuid'] | null) + tournament_id: (Scalars['uuid'] | null) + tournament_team_id: (Scalars['uuid'] | null) + __typename: 'award_recipients_max_fields' +} + + +/** aggregate min on columns */ +export interface award_recipients_min_fields { + award_id: (Scalars['uuid'] | null) + awarded_by_steam_id: (Scalars['bigint'] | null) + created_at: (Scalars['timestamptz'] | null) + id: (Scalars['uuid'] | null) + note: (Scalars['String'] | null) + placement: (Scalars['Int'] | null) + placement_tier: (Scalars['String'] | null) + player_steam_id: (Scalars['bigint'] | null) + team_id: (Scalars['uuid'] | null) + tournament_id: (Scalars['uuid'] | null) + tournament_team_id: (Scalars['uuid'] | null) + __typename: 'award_recipients_min_fields' +} + + +/** response of any mutation on the table "award_recipients" */ +export interface award_recipients_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: award_recipients[] + __typename: 'award_recipients_mutation_response' +} + + +/** select columns of table "award_recipients" */ +export type award_recipients_select_column = 'award_id' | 'awarded_by_steam_id' | 'created_at' | 'id' | 'note' | 'placement' | 'placement_tier' | 'player_steam_id' | 'source' | 'team_id' | 'tournament_id' | 'tournament_team_id' + + +/** aggregate stddev on columns */ +export interface award_recipients_stddev_fields { + awarded_by_steam_id: (Scalars['Float'] | null) + placement: (Scalars['Float'] | null) + player_steam_id: (Scalars['Float'] | null) + __typename: 'award_recipients_stddev_fields' +} + + +/** aggregate stddev_pop on columns */ +export interface award_recipients_stddev_pop_fields { + awarded_by_steam_id: (Scalars['Float'] | null) + placement: (Scalars['Float'] | null) + player_steam_id: (Scalars['Float'] | null) + __typename: 'award_recipients_stddev_pop_fields' +} + + +/** aggregate stddev_samp on columns */ +export interface award_recipients_stddev_samp_fields { + awarded_by_steam_id: (Scalars['Float'] | null) + placement: (Scalars['Float'] | null) + player_steam_id: (Scalars['Float'] | null) + __typename: 'award_recipients_stddev_samp_fields' +} + + +/** aggregate sum on columns */ +export interface award_recipients_sum_fields { + awarded_by_steam_id: (Scalars['bigint'] | null) + placement: (Scalars['Int'] | null) + player_steam_id: (Scalars['bigint'] | null) + __typename: 'award_recipients_sum_fields' +} + + +/** update columns of table "award_recipients" */ +export type award_recipients_update_column = 'award_id' | 'awarded_by_steam_id' | 'created_at' | 'id' | 'note' | 'placement' | 'player_steam_id' | 'source' | 'team_id' | 'tournament_id' | 'tournament_team_id' + + +/** aggregate var_pop on columns */ +export interface award_recipients_var_pop_fields { + awarded_by_steam_id: (Scalars['Float'] | null) + placement: (Scalars['Float'] | null) + player_steam_id: (Scalars['Float'] | null) + __typename: 'award_recipients_var_pop_fields' +} + + +/** aggregate var_samp on columns */ +export interface award_recipients_var_samp_fields { + awarded_by_steam_id: (Scalars['Float'] | null) + placement: (Scalars['Float'] | null) + player_steam_id: (Scalars['Float'] | null) + __typename: 'award_recipients_var_samp_fields' +} + + +/** aggregate variance on columns */ +export interface award_recipients_variance_fields { + awarded_by_steam_id: (Scalars['Float'] | null) + placement: (Scalars['Float'] | null) + player_steam_id: (Scalars['Float'] | null) + __typename: 'award_recipients_variance_fields' +} + + +/** columns and relationships of "awards" */ +export interface awards { + allow_multiple: Scalars['Boolean'] + created_at: Scalars['timestamptz'] + /** An object relationship */ + created_by: (players | null) + created_by_steam_id: (Scalars['bigint'] | null) + description: (Scalars['String'] | null) + id: Scalars['uuid'] + image_url: (Scalars['String'] | null) + name: Scalars['String'] + /** An array relationship */ + recipients: award_recipients[] + /** An aggregate relationship */ + recipients_aggregate: award_recipients_aggregate + silhouette: (Scalars['Int'] | null) + system_key: (Scalars['String'] | null) + tier: e_award_tiers_enum + /** An array relationship */ + tournament_configs: tournament_awards[] + /** An aggregate relationship */ + tournament_configs_aggregate: tournament_awards_aggregate + updated_at: Scalars['timestamptz'] + __typename: 'awards' +} + + +/** aggregated selection of "awards" */ +export interface awards_aggregate { + aggregate: (awards_aggregate_fields | null) + nodes: awards[] + __typename: 'awards_aggregate' +} + + +/** aggregate fields of "awards" */ +export interface awards_aggregate_fields { + avg: (awards_avg_fields | null) + count: Scalars['Int'] + max: (awards_max_fields | null) + min: (awards_min_fields | null) + stddev: (awards_stddev_fields | null) + stddev_pop: (awards_stddev_pop_fields | null) + stddev_samp: (awards_stddev_samp_fields | null) + sum: (awards_sum_fields | null) + var_pop: (awards_var_pop_fields | null) + var_samp: (awards_var_samp_fields | null) + variance: (awards_variance_fields | null) + __typename: 'awards_aggregate_fields' +} + + +/** aggregate avg on columns */ +export interface awards_avg_fields { + created_by_steam_id: (Scalars['Float'] | null) + silhouette: (Scalars['Float'] | null) + __typename: 'awards_avg_fields' +} + + +/** unique or primary key constraints on table "awards" */ +export type awards_constraint = 'awards_pkey' | 'awards_system_key_key' + + +/** aggregate max on columns */ +export interface awards_max_fields { + created_at: (Scalars['timestamptz'] | null) + created_by_steam_id: (Scalars['bigint'] | null) + description: (Scalars['String'] | null) + id: (Scalars['uuid'] | null) + image_url: (Scalars['String'] | null) + name: (Scalars['String'] | null) + silhouette: (Scalars['Int'] | null) + system_key: (Scalars['String'] | null) + updated_at: (Scalars['timestamptz'] | null) + __typename: 'awards_max_fields' +} + + +/** aggregate min on columns */ +export interface awards_min_fields { + created_at: (Scalars['timestamptz'] | null) + created_by_steam_id: (Scalars['bigint'] | null) + description: (Scalars['String'] | null) + id: (Scalars['uuid'] | null) + image_url: (Scalars['String'] | null) + name: (Scalars['String'] | null) + silhouette: (Scalars['Int'] | null) + system_key: (Scalars['String'] | null) + updated_at: (Scalars['timestamptz'] | null) + __typename: 'awards_min_fields' +} + + +/** response of any mutation on the table "awards" */ +export interface awards_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: awards[] + __typename: 'awards_mutation_response' +} + + +/** select columns of table "awards" */ +export type awards_select_column = 'allow_multiple' | 'created_at' | 'created_by_steam_id' | 'description' | 'id' | 'image_url' | 'name' | 'silhouette' | 'system_key' | 'tier' | 'updated_at' + + +/** aggregate stddev on columns */ +export interface awards_stddev_fields { + created_by_steam_id: (Scalars['Float'] | null) + silhouette: (Scalars['Float'] | null) + __typename: 'awards_stddev_fields' +} + + +/** aggregate stddev_pop on columns */ +export interface awards_stddev_pop_fields { + created_by_steam_id: (Scalars['Float'] | null) + silhouette: (Scalars['Float'] | null) + __typename: 'awards_stddev_pop_fields' +} + + +/** aggregate stddev_samp on columns */ +export interface awards_stddev_samp_fields { + created_by_steam_id: (Scalars['Float'] | null) + silhouette: (Scalars['Float'] | null) + __typename: 'awards_stddev_samp_fields' +} + + +/** aggregate sum on columns */ +export interface awards_sum_fields { + created_by_steam_id: (Scalars['bigint'] | null) + silhouette: (Scalars['Int'] | null) + __typename: 'awards_sum_fields' +} + + +/** update columns of table "awards" */ +export type awards_update_column = 'allow_multiple' | 'created_at' | 'created_by_steam_id' | 'description' | 'id' | 'image_url' | 'name' | 'silhouette' | 'system_key' | 'tier' | 'updated_at' + + +/** aggregate var_pop on columns */ +export interface awards_var_pop_fields { + created_by_steam_id: (Scalars['Float'] | null) + silhouette: (Scalars['Float'] | null) + __typename: 'awards_var_pop_fields' +} + + +/** aggregate var_samp on columns */ +export interface awards_var_samp_fields { + created_by_steam_id: (Scalars['Float'] | null) + silhouette: (Scalars['Float'] | null) + __typename: 'awards_var_samp_fields' +} + + +/** aggregate variance on columns */ +export interface awards_variance_fields { + created_by_steam_id: (Scalars['Float'] | null) + silhouette: (Scalars['Float'] | null) + __typename: 'awards_variance_fields' +} + + /** columns and relationships of "clip_render_jobs" */ export interface clip_render_jobs { /** An object relationship */ @@ -1253,13 +1647,16 @@ export type cursor_ordering = 'ASC' | 'DESC' /** columns and relationships of "custom_pages" */ export interface custom_pages { created_at: Scalars['timestamptz'] + deployments: Scalars['jsonb'] enabled: Scalars['Boolean'] exposed_module: Scalars['String'] icon: (Scalars['String'] | null) id: Scalars['uuid'] is_default: Scalars['Boolean'] + manifest_url: (Scalars['String'] | null) nav_group: (Scalars['String'] | null) nav_order: Scalars['Int'] + profile_tab_label: (Scalars['String'] | null) remote_entry_url: Scalars['String'] remote_scope: Scalars['String'] required_role: (e_player_roles_enum | null) @@ -1312,8 +1709,10 @@ export interface custom_pages_max_fields { exposed_module: (Scalars['String'] | null) icon: (Scalars['String'] | null) id: (Scalars['uuid'] | null) + manifest_url: (Scalars['String'] | null) nav_group: (Scalars['String'] | null) nav_order: (Scalars['Int'] | null) + profile_tab_label: (Scalars['String'] | null) remote_entry_url: (Scalars['String'] | null) remote_scope: (Scalars['String'] | null) slug: (Scalars['String'] | null) @@ -1329,8 +1728,10 @@ export interface custom_pages_min_fields { exposed_module: (Scalars['String'] | null) icon: (Scalars['String'] | null) id: (Scalars['uuid'] | null) + manifest_url: (Scalars['String'] | null) nav_group: (Scalars['String'] | null) nav_order: (Scalars['Int'] | null) + profile_tab_label: (Scalars['String'] | null) remote_entry_url: (Scalars['String'] | null) remote_scope: (Scalars['String'] | null) slug: (Scalars['String'] | null) @@ -1351,7 +1752,7 @@ export interface custom_pages_mutation_response { /** select columns of table "custom_pages" */ -export type custom_pages_select_column = 'created_at' | 'enabled' | 'exposed_module' | 'icon' | 'id' | 'is_default' | 'nav_group' | 'nav_order' | 'remote_entry_url' | 'remote_scope' | 'required_role' | 'slug' | 'title' | 'updated_at' +export type custom_pages_select_column = 'created_at' | 'deployments' | 'enabled' | 'exposed_module' | 'icon' | 'id' | 'is_default' | 'manifest_url' | 'nav_group' | 'nav_order' | 'profile_tab_label' | 'remote_entry_url' | 'remote_scope' | 'required_role' | 'slug' | 'title' | 'updated_at' /** aggregate stddev on columns */ @@ -1383,7 +1784,7 @@ export interface custom_pages_sum_fields { /** update columns of table "custom_pages" */ -export type custom_pages_update_column = 'created_at' | 'enabled' | 'exposed_module' | 'icon' | 'id' | 'is_default' | 'nav_group' | 'nav_order' | 'remote_entry_url' | 'remote_scope' | 'required_role' | 'slug' | 'title' | 'updated_at' +export type custom_pages_update_column = 'created_at' | 'deployments' | 'enabled' | 'exposed_module' | 'icon' | 'id' | 'is_default' | 'manifest_url' | 'nav_group' | 'nav_order' | 'profile_tab_label' | 'remote_entry_url' | 'remote_scope' | 'required_role' | 'slug' | 'title' | 'updated_at' /** aggregate var_pop on columns */ @@ -2147,6 +2548,136 @@ export interface draft_games_variance_fields { } +/** columns and relationships of "e_award_sources" */ +export interface e_award_sources { + description: Scalars['String'] + value: Scalars['String'] + __typename: 'e_award_sources' +} + + +/** aggregated selection of "e_award_sources" */ +export interface e_award_sources_aggregate { + aggregate: (e_award_sources_aggregate_fields | null) + nodes: e_award_sources[] + __typename: 'e_award_sources_aggregate' +} + + +/** aggregate fields of "e_award_sources" */ +export interface e_award_sources_aggregate_fields { + count: Scalars['Int'] + max: (e_award_sources_max_fields | null) + min: (e_award_sources_min_fields | null) + __typename: 'e_award_sources_aggregate_fields' +} + + +/** unique or primary key constraints on table "e_award_sources" */ +export type e_award_sources_constraint = 'e_award_sources_pkey' + +export type e_award_sources_enum = 'manual' | 'tournament' + + +/** aggregate max on columns */ +export interface e_award_sources_max_fields { + description: (Scalars['String'] | null) + value: (Scalars['String'] | null) + __typename: 'e_award_sources_max_fields' +} + + +/** aggregate min on columns */ +export interface e_award_sources_min_fields { + description: (Scalars['String'] | null) + value: (Scalars['String'] | null) + __typename: 'e_award_sources_min_fields' +} + + +/** response of any mutation on the table "e_award_sources" */ +export interface e_award_sources_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: e_award_sources[] + __typename: 'e_award_sources_mutation_response' +} + + +/** select columns of table "e_award_sources" */ +export type e_award_sources_select_column = 'description' | 'value' + + +/** update columns of table "e_award_sources" */ +export type e_award_sources_update_column = 'description' | 'value' + + +/** columns and relationships of "e_award_tiers" */ +export interface e_award_tiers { + description: Scalars['String'] + value: Scalars['String'] + __typename: 'e_award_tiers' +} + + +/** aggregated selection of "e_award_tiers" */ +export interface e_award_tiers_aggregate { + aggregate: (e_award_tiers_aggregate_fields | null) + nodes: e_award_tiers[] + __typename: 'e_award_tiers_aggregate' +} + + +/** aggregate fields of "e_award_tiers" */ +export interface e_award_tiers_aggregate_fields { + count: Scalars['Int'] + max: (e_award_tiers_max_fields | null) + min: (e_award_tiers_min_fields | null) + __typename: 'e_award_tiers_aggregate_fields' +} + + +/** unique or primary key constraints on table "e_award_tiers" */ +export type e_award_tiers_constraint = 'e_award_tiers_pkey' + +export type e_award_tiers_enum = 'bronze' | 'gold' | 'mvp' | 'silver' | 'special' + + +/** aggregate max on columns */ +export interface e_award_tiers_max_fields { + description: (Scalars['String'] | null) + value: (Scalars['String'] | null) + __typename: 'e_award_tiers_max_fields' +} + + +/** aggregate min on columns */ +export interface e_award_tiers_min_fields { + description: (Scalars['String'] | null) + value: (Scalars['String'] | null) + __typename: 'e_award_tiers_min_fields' +} + + +/** response of any mutation on the table "e_award_tiers" */ +export interface e_award_tiers_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: e_award_tiers[] + __typename: 'e_award_tiers_mutation_response' +} + + +/** select columns of table "e_award_tiers" */ +export type e_award_tiers_select_column = 'description' | 'value' + + +/** update columns of table "e_award_tiers" */ +export type e_award_tiers_update_column = 'description' | 'value' + + /** columns and relationships of "e_check_in_settings" */ export interface e_check_in_settings { description: Scalars['String'] @@ -11512,6 +12043,8 @@ export interface mutation_root { createScheduledMatch: (CreateScheduledMatchOutput | null) /** Create directory on game server */ createServerDirectory: (SuccessOutput | null) + /** Delete a catalog award */ + deleteAward: (SuccessOutput | null) /** Delete a saved clip and its underlying S3 object */ deleteClip: (SuccessOutput | null) deleteMatch: (SuccessOutput | null) @@ -11535,6 +12068,14 @@ export interface mutation_root { delete_api_keys: (api_keys_mutation_response | null) /** delete single row from the table: "api_keys" */ delete_api_keys_by_pk: (api_keys | null) + /** delete data from the table: "award_recipients" */ + delete_award_recipients: (award_recipients_mutation_response | null) + /** delete single row from the table: "award_recipients" */ + delete_award_recipients_by_pk: (award_recipients | null) + /** delete data from the table: "awards" */ + delete_awards: (awards_mutation_response | null) + /** delete single row from the table: "awards" */ + delete_awards_by_pk: (awards | null) /** delete data from the table: "clip_render_jobs" */ delete_clip_render_jobs: (clip_render_jobs_mutation_response | null) /** delete single row from the table: "clip_render_jobs" */ @@ -11559,6 +12100,14 @@ export interface mutation_root { delete_draft_games: (draft_games_mutation_response | null) /** delete single row from the table: "draft_games" */ delete_draft_games_by_pk: (draft_games | null) + /** delete data from the table: "e_award_sources" */ + delete_e_award_sources: (e_award_sources_mutation_response | null) + /** delete single row from the table: "e_award_sources" */ + delete_e_award_sources_by_pk: (e_award_sources | null) + /** delete data from the table: "e_award_tiers" */ + delete_e_award_tiers: (e_award_tiers_mutation_response | null) + /** delete single row from the table: "e_award_tiers" */ + delete_e_award_tiers_by_pk: (e_award_tiers | null) /** delete data from the table: "e_check_in_settings" */ delete_e_check_in_settings: (e_check_in_settings_mutation_response | null) /** delete single row from the table: "e_check_in_settings" */ @@ -12057,6 +12606,10 @@ export interface mutation_root { delete_teams: (teams_mutation_response | null) /** delete single row from the table: "teams" */ delete_teams_by_pk: (teams | null) + /** delete data from the table: "tournament_awards" */ + delete_tournament_awards: (tournament_awards_mutation_response | null) + /** delete single row from the table: "tournament_awards" */ + delete_tournament_awards_by_pk: (tournament_awards | null) /** delete data from the table: "tournament_brackets" */ delete_tournament_brackets: (tournament_brackets_mutation_response | null) /** delete single row from the table: "tournament_brackets" */ @@ -12097,14 +12650,6 @@ export interface mutation_root { delete_tournament_teams: (tournament_teams_mutation_response | null) /** delete single row from the table: "tournament_teams" */ delete_tournament_teams_by_pk: (tournament_teams | null) - /** delete data from the table: "tournament_trophies" */ - delete_tournament_trophies: (tournament_trophies_mutation_response | null) - /** delete single row from the table: "tournament_trophies" */ - delete_tournament_trophies_by_pk: (tournament_trophies | null) - /** delete data from the table: "tournament_trophy_configs" */ - delete_tournament_trophy_configs: (tournament_trophy_configs_mutation_response | null) - /** delete single row from the table: "tournament_trophy_configs" */ - delete_tournament_trophy_configs_by_pk: (tournament_trophy_configs | null) /** delete data from the table: "tournaments" */ delete_tournaments: (tournaments_mutation_response | null) /** delete single row from the table: "tournaments" */ @@ -12126,6 +12671,8 @@ export interface mutation_root { /** Live pod GSI snapshot — slots, sides, alive/dead. Drives the stream-deck. */ getLiveStreamSpecState: (LiveStreamSpecState | null) getTestUploadLink: GetTestUploadResponse + /** Grant an award to a player or team */ + grantAward: (AwardRecipient | null) /** insert data into the table: "_map_pool" */ insert__map_pool: (_map_pool_mutation_response | null) /** insert a single row into the table: "_map_pool" */ @@ -12138,6 +12685,14 @@ export interface mutation_root { insert_api_keys: (api_keys_mutation_response | null) /** insert a single row into the table: "api_keys" */ insert_api_keys_one: (api_keys | null) + /** insert data into the table: "award_recipients" */ + insert_award_recipients: (award_recipients_mutation_response | null) + /** insert a single row into the table: "award_recipients" */ + insert_award_recipients_one: (award_recipients | null) + /** insert data into the table: "awards" */ + insert_awards: (awards_mutation_response | null) + /** insert a single row into the table: "awards" */ + insert_awards_one: (awards | null) /** insert data into the table: "clip_render_jobs" */ insert_clip_render_jobs: (clip_render_jobs_mutation_response | null) /** insert a single row into the table: "clip_render_jobs" */ @@ -12162,6 +12717,14 @@ export interface mutation_root { insert_draft_games: (draft_games_mutation_response | null) /** insert a single row into the table: "draft_games" */ insert_draft_games_one: (draft_games | null) + /** insert data into the table: "e_award_sources" */ + insert_e_award_sources: (e_award_sources_mutation_response | null) + /** insert a single row into the table: "e_award_sources" */ + insert_e_award_sources_one: (e_award_sources | null) + /** insert data into the table: "e_award_tiers" */ + insert_e_award_tiers: (e_award_tiers_mutation_response | null) + /** insert a single row into the table: "e_award_tiers" */ + insert_e_award_tiers_one: (e_award_tiers | null) /** insert data into the table: "e_check_in_settings" */ insert_e_check_in_settings: (e_check_in_settings_mutation_response | null) /** insert a single row into the table: "e_check_in_settings" */ @@ -12666,6 +13229,10 @@ export interface mutation_root { insert_teams: (teams_mutation_response | null) /** insert a single row into the table: "teams" */ insert_teams_one: (teams | null) + /** insert data into the table: "tournament_awards" */ + insert_tournament_awards: (tournament_awards_mutation_response | null) + /** insert a single row into the table: "tournament_awards" */ + insert_tournament_awards_one: (tournament_awards | null) /** insert data into the table: "tournament_brackets" */ insert_tournament_brackets: (tournament_brackets_mutation_response | null) /** insert a single row into the table: "tournament_brackets" */ @@ -12706,14 +13273,6 @@ export interface mutation_root { insert_tournament_teams: (tournament_teams_mutation_response | null) /** insert a single row into the table: "tournament_teams" */ insert_tournament_teams_one: (tournament_teams | null) - /** insert data into the table: "tournament_trophies" */ - insert_tournament_trophies: (tournament_trophies_mutation_response | null) - /** insert a single row into the table: "tournament_trophies" */ - insert_tournament_trophies_one: (tournament_trophies | null) - /** insert data into the table: "tournament_trophy_configs" */ - insert_tournament_trophy_configs: (tournament_trophy_configs_mutation_response | null) - /** insert a single row into the table: "tournament_trophy_configs" */ - insert_tournament_trophy_configs_one: (tournament_trophy_configs | null) /** insert data into the table: "tournaments" */ insert_tournaments: (tournaments_mutation_response | null) /** insert a single row into the table: "tournaments" */ @@ -12764,8 +13323,8 @@ export interface mutation_root { queueClipFromPreset: (CreateClipRenderOutput | null) randomizeTeams: (SuccessOutput | null) rebootMatchServer: (SuccessOutput | null) - /** execute VOLATILE function "recalculate_tournament_trophies" which returns "tournament_trophies" */ - recalculate_tournament_trophies: tournament_trophies[] + /** execute VOLATILE function "recalculate_tournament_awards" which returns "award_recipients" */ + recalculate_tournament_awards: award_recipients[] /** Wipe and rebuild all player ELO from finished matches in chronological order (admin only). Runs in the background; track via recomputePlayerEloStatus. */ recomputePlayerElo: (RecomputeEloStartedOutput | null) /** Return the progress of the ELO recompute run (admin only). */ @@ -12811,7 +13370,11 @@ export interface mutation_root { /** Delete terminal clip_render_jobs rows for a match_map (all or only failed/cancelled) and re-create them from their saved specs. */ retryClipRenderBatch: (SuccessOutput | null) retryPendingMatchImport: (PendingMatchImportActionOutput | null) + /** Revoke a hand-granted award */ + revokeAward: (SuccessOutput | null) sanctionServerPlayer: SanctionResult + /** Create or update a catalog award */ + saveAward: (Award | null) /** Create or update a first-party news post. Caller role is verified against public.post_news_role. */ saveNewsPost: (NewsPost | null) /** Scan S3 for objects not referenced in the database (admin only). Runs in the background; results land in the logs and orphanedDemosScanResult. */ @@ -12830,6 +13393,8 @@ export interface mutation_root { setMatchWinner: (SuccessOutput | null) /** Publish or unpublish a news post. Caller role is verified against public.post_news_role. */ setNewsPostStatus: (NewsPost | null) + /** Map a tournament placement to an award */ + setTournamentAward: (TournamentAward | null) setupGameServer: (SetupGameServeOutput | null) skipShaders: (SuccessOutput | null) specAutodirector: (SuccessOutput | null) @@ -12883,6 +13448,18 @@ export interface mutation_root { update_api_keys_by_pk: (api_keys | null) /** update multiples rows of table: "api_keys" */ update_api_keys_many: ((api_keys_mutation_response | null)[] | null) + /** update data of the table: "award_recipients" */ + update_award_recipients: (award_recipients_mutation_response | null) + /** update single row of the table: "award_recipients" */ + update_award_recipients_by_pk: (award_recipients | null) + /** update multiples rows of table: "award_recipients" */ + update_award_recipients_many: ((award_recipients_mutation_response | null)[] | null) + /** update data of the table: "awards" */ + update_awards: (awards_mutation_response | null) + /** update single row of the table: "awards" */ + update_awards_by_pk: (awards | null) + /** update multiples rows of table: "awards" */ + update_awards_many: ((awards_mutation_response | null)[] | null) /** update data of the table: "clip_render_jobs" */ update_clip_render_jobs: (clip_render_jobs_mutation_response | null) /** update single row of the table: "clip_render_jobs" */ @@ -12919,6 +13496,18 @@ export interface mutation_root { update_draft_games_by_pk: (draft_games | null) /** update multiples rows of table: "draft_games" */ update_draft_games_many: ((draft_games_mutation_response | null)[] | null) + /** update data of the table: "e_award_sources" */ + update_e_award_sources: (e_award_sources_mutation_response | null) + /** update single row of the table: "e_award_sources" */ + update_e_award_sources_by_pk: (e_award_sources | null) + /** update multiples rows of table: "e_award_sources" */ + update_e_award_sources_many: ((e_award_sources_mutation_response | null)[] | null) + /** update data of the table: "e_award_tiers" */ + update_e_award_tiers: (e_award_tiers_mutation_response | null) + /** update single row of the table: "e_award_tiers" */ + update_e_award_tiers_by_pk: (e_award_tiers | null) + /** update multiples rows of table: "e_award_tiers" */ + update_e_award_tiers_many: ((e_award_tiers_mutation_response | null)[] | null) /** update data of the table: "e_check_in_settings" */ update_e_check_in_settings: (e_check_in_settings_mutation_response | null) /** update single row of the table: "e_check_in_settings" */ @@ -13669,6 +14258,12 @@ export interface mutation_root { update_teams_by_pk: (teams | null) /** update multiples rows of table: "teams" */ update_teams_many: ((teams_mutation_response | null)[] | null) + /** update data of the table: "tournament_awards" */ + update_tournament_awards: (tournament_awards_mutation_response | null) + /** update single row of the table: "tournament_awards" */ + update_tournament_awards_by_pk: (tournament_awards | null) + /** update multiples rows of table: "tournament_awards" */ + update_tournament_awards_many: ((tournament_awards_mutation_response | null)[] | null) /** update data of the table: "tournament_brackets" */ update_tournament_brackets: (tournament_brackets_mutation_response | null) /** update single row of the table: "tournament_brackets" */ @@ -13729,18 +14324,6 @@ export interface mutation_root { update_tournament_teams_by_pk: (tournament_teams | null) /** update multiples rows of table: "tournament_teams" */ update_tournament_teams_many: ((tournament_teams_mutation_response | null)[] | null) - /** update data of the table: "tournament_trophies" */ - update_tournament_trophies: (tournament_trophies_mutation_response | null) - /** update single row of the table: "tournament_trophies" */ - update_tournament_trophies_by_pk: (tournament_trophies | null) - /** update multiples rows of table: "tournament_trophies" */ - update_tournament_trophies_many: ((tournament_trophies_mutation_response | null)[] | null) - /** update data of the table: "tournament_trophy_configs" */ - update_tournament_trophy_configs: (tournament_trophy_configs_mutation_response | null) - /** update single row of the table: "tournament_trophy_configs" */ - update_tournament_trophy_configs_by_pk: (tournament_trophy_configs | null) - /** update multiples rows of table: "tournament_trophy_configs" */ - update_tournament_trophy_configs_many: ((tournament_trophy_configs_mutation_response | null)[] | null) /** update data of the table: "tournaments" */ update_tournaments: (tournaments_mutation_response | null) /** update single row of the table: "tournaments" */ @@ -21153,6 +21736,10 @@ export interface players { assited_by_players_aggregate: player_assists_aggregate avatar_url: (Scalars['String'] | null) /** An array relationship */ + awards: award_recipients[] + /** An aggregate relationship */ + awards_aggregate: award_recipients_aggregate + /** An array relationship */ coach_lineups: match_lineups[] /** An aggregate relationship */ coach_lineups_aggregate: match_lineups_aggregate @@ -21338,10 +21925,6 @@ export interface players { /** An aggregate relationship */ tournament_rosters_aggregate: tournament_team_roster_aggregate /** An array relationship */ - tournament_trophies: tournament_trophies[] - /** An aggregate relationship */ - tournament_trophies_aggregate: tournament_trophies_aggregate - /** An array relationship */ tournaments: tournaments[] /** An aggregate relationship */ tournaments_aggregate: tournaments_aggregate @@ -21915,6 +22498,18 @@ export interface query_root { api_keys_aggregate: api_keys_aggregate /** fetch data from the table: "api_keys" using primary key columns */ api_keys_by_pk: (api_keys | null) + /** fetch data from the table: "award_recipients" */ + award_recipients: award_recipients[] + /** fetch aggregated fields from the table: "award_recipients" */ + award_recipients_aggregate: award_recipients_aggregate + /** fetch data from the table: "award_recipients" using primary key columns */ + award_recipients_by_pk: (award_recipients | null) + /** fetch data from the table: "awards" */ + awards: awards[] + /** fetch aggregated fields from the table: "awards" */ + awards_aggregate: awards_aggregate + /** fetch data from the table: "awards" using primary key columns */ + awards_by_pk: (awards | null) /** An array relationship */ clip_render_jobs: clip_render_jobs[] /** An aggregate relationship */ @@ -21952,6 +22547,18 @@ export interface query_root { draft_games_aggregate: draft_games_aggregate /** fetch data from the table: "draft_games" using primary key columns */ draft_games_by_pk: (draft_games | null) + /** fetch data from the table: "e_award_sources" */ + e_award_sources: e_award_sources[] + /** fetch aggregated fields from the table: "e_award_sources" */ + e_award_sources_aggregate: e_award_sources_aggregate + /** fetch data from the table: "e_award_sources" using primary key columns */ + e_award_sources_by_pk: (e_award_sources | null) + /** fetch data from the table: "e_award_tiers" */ + e_award_tiers: e_award_tiers[] + /** fetch aggregated fields from the table: "e_award_tiers" */ + e_award_tiers_aggregate: e_award_tiers_aggregate + /** fetch data from the table: "e_award_tiers" using primary key columns */ + e_award_tiers_by_pk: (e_award_tiers | null) /** fetch data from the table: "e_check_in_settings" */ e_check_in_settings: e_check_in_settings[] /** fetch aggregated fields from the table: "e_check_in_settings" */ @@ -22787,6 +23394,12 @@ export interface query_root { /** fetch data from the table: "teams" using primary key columns */ teams_by_pk: (teams | null) telemetryStats: TelemetryStats + /** fetch data from the table: "tournament_awards" */ + tournament_awards: tournament_awards[] + /** fetch aggregated fields from the table: "tournament_awards" */ + tournament_awards_aggregate: tournament_awards_aggregate + /** fetch data from the table: "tournament_awards" using primary key columns */ + tournament_awards_by_pk: (tournament_awards | null) /** An array relationship */ tournament_brackets: tournament_brackets[] /** An aggregate relationship */ @@ -22848,18 +23461,6 @@ export interface query_root { /** fetch data from the table: "tournament_teams" using primary key columns */ tournament_teams_by_pk: (tournament_teams | null) /** An array relationship */ - tournament_trophies: tournament_trophies[] - /** An aggregate relationship */ - tournament_trophies_aggregate: tournament_trophies_aggregate - /** fetch data from the table: "tournament_trophies" using primary key columns */ - tournament_trophies_by_pk: (tournament_trophies | null) - /** fetch data from the table: "tournament_trophy_configs" */ - tournament_trophy_configs: tournament_trophy_configs[] - /** fetch aggregated fields from the table: "tournament_trophy_configs" */ - tournament_trophy_configs_aggregate: tournament_trophy_configs_aggregate - /** fetch data from the table: "tournament_trophy_configs" using primary key columns */ - tournament_trophy_configs_by_pk: (tournament_trophy_configs | null) - /** An array relationship */ tournaments: tournaments[] /** An aggregate relationship */ tournaments_aggregate: tournaments_aggregate @@ -23887,6 +24488,22 @@ export interface subscription_root { api_keys_by_pk: (api_keys | null) /** fetch data from the table in a streaming manner: "api_keys" */ api_keys_stream: api_keys[] + /** fetch data from the table: "award_recipients" */ + award_recipients: award_recipients[] + /** fetch aggregated fields from the table: "award_recipients" */ + award_recipients_aggregate: award_recipients_aggregate + /** fetch data from the table: "award_recipients" using primary key columns */ + award_recipients_by_pk: (award_recipients | null) + /** fetch data from the table in a streaming manner: "award_recipients" */ + award_recipients_stream: award_recipients[] + /** fetch data from the table: "awards" */ + awards: awards[] + /** fetch aggregated fields from the table: "awards" */ + awards_aggregate: awards_aggregate + /** fetch data from the table: "awards" using primary key columns */ + awards_by_pk: (awards | null) + /** fetch data from the table in a streaming manner: "awards" */ + awards_stream: awards[] /** An array relationship */ clip_render_jobs: clip_render_jobs[] /** An aggregate relationship */ @@ -23935,6 +24552,22 @@ export interface subscription_root { draft_games_by_pk: (draft_games | null) /** fetch data from the table in a streaming manner: "draft_games" */ draft_games_stream: draft_games[] + /** fetch data from the table: "e_award_sources" */ + e_award_sources: e_award_sources[] + /** fetch aggregated fields from the table: "e_award_sources" */ + e_award_sources_aggregate: e_award_sources_aggregate + /** fetch data from the table: "e_award_sources" using primary key columns */ + e_award_sources_by_pk: (e_award_sources | null) + /** fetch data from the table in a streaming manner: "e_award_sources" */ + e_award_sources_stream: e_award_sources[] + /** fetch data from the table: "e_award_tiers" */ + e_award_tiers: e_award_tiers[] + /** fetch aggregated fields from the table: "e_award_tiers" */ + e_award_tiers_aggregate: e_award_tiers_aggregate + /** fetch data from the table: "e_award_tiers" using primary key columns */ + e_award_tiers_by_pk: (e_award_tiers | null) + /** fetch data from the table in a streaming manner: "e_award_tiers" */ + e_award_tiers_stream: e_award_tiers[] /** fetch data from the table: "e_check_in_settings" */ e_check_in_settings: e_check_in_settings[] /** fetch aggregated fields from the table: "e_check_in_settings" */ @@ -24983,6 +25616,14 @@ export interface subscription_root { teams_by_pk: (teams | null) /** fetch data from the table in a streaming manner: "teams" */ teams_stream: teams[] + /** fetch data from the table: "tournament_awards" */ + tournament_awards: tournament_awards[] + /** fetch aggregated fields from the table: "tournament_awards" */ + tournament_awards_aggregate: tournament_awards_aggregate + /** fetch data from the table: "tournament_awards" using primary key columns */ + tournament_awards_by_pk: (tournament_awards | null) + /** fetch data from the table in a streaming manner: "tournament_awards" */ + tournament_awards_stream: tournament_awards[] /** An array relationship */ tournament_brackets: tournament_brackets[] /** An aggregate relationship */ @@ -25064,22 +25705,6 @@ export interface subscription_root { /** fetch data from the table in a streaming manner: "tournament_teams" */ tournament_teams_stream: tournament_teams[] /** An array relationship */ - tournament_trophies: tournament_trophies[] - /** An aggregate relationship */ - tournament_trophies_aggregate: tournament_trophies_aggregate - /** fetch data from the table: "tournament_trophies" using primary key columns */ - tournament_trophies_by_pk: (tournament_trophies | null) - /** fetch data from the table in a streaming manner: "tournament_trophies" */ - tournament_trophies_stream: tournament_trophies[] - /** fetch data from the table: "tournament_trophy_configs" */ - tournament_trophy_configs: tournament_trophy_configs[] - /** fetch aggregated fields from the table: "tournament_trophy_configs" */ - tournament_trophy_configs_aggregate: tournament_trophy_configs_aggregate - /** fetch data from the table: "tournament_trophy_configs" using primary key columns */ - tournament_trophy_configs_by_pk: (tournament_trophy_configs | null) - /** fetch data from the table in a streaming manner: "tournament_trophy_configs" */ - tournament_trophy_configs_stream: tournament_trophy_configs[] - /** An array relationship */ tournaments: tournaments[] /** An aggregate relationship */ tournaments_aggregate: tournaments_aggregate @@ -26606,6 +27231,10 @@ export interface team_suggestions_variance_fields { /** columns and relationships of "teams" */ export interface teams { avatar_url: (Scalars['String'] | null) + /** An array relationship */ + awards: award_recipients[] + /** An aggregate relationship */ + awards_aggregate: award_recipients_aggregate /** A computed field, executes function "can_change_team_role" */ can_change_role: (Scalars['Boolean'] | null) /** A computed field, executes function "can_invite_to_team" */ @@ -26805,6 +27434,166 @@ export interface teams_variance_fields { } +/** columns and relationships of "tournament_awards" */ +export interface tournament_awards { + /** An object relationship */ + award: (awards | null) + award_id: (Scalars['uuid'] | null) + created_at: Scalars['timestamptz'] + custom_name: (Scalars['String'] | null) + id: Scalars['uuid'] + image_url: (Scalars['String'] | null) + placement: Scalars['Int'] + silhouette: (Scalars['Int'] | null) + /** An object relationship */ + tournament: tournaments + tournament_id: Scalars['uuid'] + updated_at: Scalars['timestamptz'] + __typename: 'tournament_awards' +} + + +/** aggregated selection of "tournament_awards" */ +export interface tournament_awards_aggregate { + aggregate: (tournament_awards_aggregate_fields | null) + nodes: tournament_awards[] + __typename: 'tournament_awards_aggregate' +} + + +/** aggregate fields of "tournament_awards" */ +export interface tournament_awards_aggregate_fields { + avg: (tournament_awards_avg_fields | null) + count: Scalars['Int'] + max: (tournament_awards_max_fields | null) + min: (tournament_awards_min_fields | null) + stddev: (tournament_awards_stddev_fields | null) + stddev_pop: (tournament_awards_stddev_pop_fields | null) + stddev_samp: (tournament_awards_stddev_samp_fields | null) + sum: (tournament_awards_sum_fields | null) + var_pop: (tournament_awards_var_pop_fields | null) + var_samp: (tournament_awards_var_samp_fields | null) + variance: (tournament_awards_variance_fields | null) + __typename: 'tournament_awards_aggregate_fields' +} + + +/** aggregate avg on columns */ +export interface tournament_awards_avg_fields { + placement: (Scalars['Float'] | null) + silhouette: (Scalars['Float'] | null) + __typename: 'tournament_awards_avg_fields' +} + + +/** unique or primary key constraints on table "tournament_awards" */ +export type tournament_awards_constraint = 'tournament_awards_pkey' | 'tournament_awards_tournament_id_placement_key' + + +/** aggregate max on columns */ +export interface tournament_awards_max_fields { + award_id: (Scalars['uuid'] | null) + created_at: (Scalars['timestamptz'] | null) + custom_name: (Scalars['String'] | null) + id: (Scalars['uuid'] | null) + image_url: (Scalars['String'] | null) + placement: (Scalars['Int'] | null) + silhouette: (Scalars['Int'] | null) + tournament_id: (Scalars['uuid'] | null) + updated_at: (Scalars['timestamptz'] | null) + __typename: 'tournament_awards_max_fields' +} + + +/** aggregate min on columns */ +export interface tournament_awards_min_fields { + award_id: (Scalars['uuid'] | null) + created_at: (Scalars['timestamptz'] | null) + custom_name: (Scalars['String'] | null) + id: (Scalars['uuid'] | null) + image_url: (Scalars['String'] | null) + placement: (Scalars['Int'] | null) + silhouette: (Scalars['Int'] | null) + tournament_id: (Scalars['uuid'] | null) + updated_at: (Scalars['timestamptz'] | null) + __typename: 'tournament_awards_min_fields' +} + + +/** response of any mutation on the table "tournament_awards" */ +export interface tournament_awards_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: tournament_awards[] + __typename: 'tournament_awards_mutation_response' +} + + +/** select columns of table "tournament_awards" */ +export type tournament_awards_select_column = 'award_id' | 'created_at' | 'custom_name' | 'id' | 'image_url' | 'placement' | 'silhouette' | 'tournament_id' | 'updated_at' + + +/** aggregate stddev on columns */ +export interface tournament_awards_stddev_fields { + placement: (Scalars['Float'] | null) + silhouette: (Scalars['Float'] | null) + __typename: 'tournament_awards_stddev_fields' +} + + +/** aggregate stddev_pop on columns */ +export interface tournament_awards_stddev_pop_fields { + placement: (Scalars['Float'] | null) + silhouette: (Scalars['Float'] | null) + __typename: 'tournament_awards_stddev_pop_fields' +} + + +/** aggregate stddev_samp on columns */ +export interface tournament_awards_stddev_samp_fields { + placement: (Scalars['Float'] | null) + silhouette: (Scalars['Float'] | null) + __typename: 'tournament_awards_stddev_samp_fields' +} + + +/** aggregate sum on columns */ +export interface tournament_awards_sum_fields { + placement: (Scalars['Int'] | null) + silhouette: (Scalars['Int'] | null) + __typename: 'tournament_awards_sum_fields' +} + + +/** update columns of table "tournament_awards" */ +export type tournament_awards_update_column = 'award_id' | 'created_at' | 'custom_name' | 'id' | 'image_url' | 'placement' | 'silhouette' | 'tournament_id' | 'updated_at' + + +/** aggregate var_pop on columns */ +export interface tournament_awards_var_pop_fields { + placement: (Scalars['Float'] | null) + silhouette: (Scalars['Float'] | null) + __typename: 'tournament_awards_var_pop_fields' +} + + +/** aggregate var_samp on columns */ +export interface tournament_awards_var_samp_fields { + placement: (Scalars['Float'] | null) + silhouette: (Scalars['Float'] | null) + __typename: 'tournament_awards_var_samp_fields' +} + + +/** aggregate variance on columns */ +export interface tournament_awards_variance_fields { + placement: (Scalars['Float'] | null) + silhouette: (Scalars['Float'] | null) + __typename: 'tournament_awards_variance_fields' +} + + /** columns and relationships of "tournament_brackets" */ export interface tournament_brackets { bye: Scalars['Boolean'] @@ -28311,338 +29100,20 @@ export interface tournament_teams_variance_fields { } -/** columns and relationships of "tournament_trophies" */ -export interface tournament_trophies { - created_at: Scalars['timestamptz'] - id: Scalars['uuid'] - manual: Scalars['Boolean'] - placement: Scalars['Int'] - placement_tier: (Scalars['String'] | null) - /** An object relationship */ - player: (players | null) - player_steam_id: (Scalars['bigint'] | null) - /** An object relationship */ - team: (teams | null) - team_id: (Scalars['uuid'] | null) - /** An object relationship */ - tournament: tournaments - tournament_id: Scalars['uuid'] - /** An object relationship */ - tournament_team: tournament_teams - tournament_team_id: Scalars['uuid'] - /** An object relationship */ - trophy_config: (tournament_trophy_configs | null) - __typename: 'tournament_trophies' -} - - -/** aggregated selection of "tournament_trophies" */ -export interface tournament_trophies_aggregate { - aggregate: (tournament_trophies_aggregate_fields | null) - nodes: tournament_trophies[] - __typename: 'tournament_trophies_aggregate' -} - - -/** aggregate fields of "tournament_trophies" */ -export interface tournament_trophies_aggregate_fields { - avg: (tournament_trophies_avg_fields | null) - count: Scalars['Int'] - max: (tournament_trophies_max_fields | null) - min: (tournament_trophies_min_fields | null) - stddev: (tournament_trophies_stddev_fields | null) - stddev_pop: (tournament_trophies_stddev_pop_fields | null) - stddev_samp: (tournament_trophies_stddev_samp_fields | null) - sum: (tournament_trophies_sum_fields | null) - var_pop: (tournament_trophies_var_pop_fields | null) - var_samp: (tournament_trophies_var_samp_fields | null) - variance: (tournament_trophies_variance_fields | null) - __typename: 'tournament_trophies_aggregate_fields' -} - - -/** aggregate avg on columns */ -export interface tournament_trophies_avg_fields { - placement: (Scalars['Float'] | null) - player_steam_id: (Scalars['Float'] | null) - __typename: 'tournament_trophies_avg_fields' -} - - -/** unique or primary key constraints on table "tournament_trophies" */ -export type tournament_trophies_constraint = 'tournament_trophies_one_mvp_per_tournament' | 'tournament_trophies_pkey' | 'tournament_trophies_player_recipient_key' | 'tournament_trophies_team_recipient_key' - - -/** aggregate max on columns */ -export interface tournament_trophies_max_fields { - created_at: (Scalars['timestamptz'] | null) - id: (Scalars['uuid'] | null) - placement: (Scalars['Int'] | null) - placement_tier: (Scalars['String'] | null) - player_steam_id: (Scalars['bigint'] | null) - team_id: (Scalars['uuid'] | null) - tournament_id: (Scalars['uuid'] | null) - tournament_team_id: (Scalars['uuid'] | null) - __typename: 'tournament_trophies_max_fields' -} - - -/** aggregate min on columns */ -export interface tournament_trophies_min_fields { - created_at: (Scalars['timestamptz'] | null) - id: (Scalars['uuid'] | null) - placement: (Scalars['Int'] | null) - placement_tier: (Scalars['String'] | null) - player_steam_id: (Scalars['bigint'] | null) - team_id: (Scalars['uuid'] | null) - tournament_id: (Scalars['uuid'] | null) - tournament_team_id: (Scalars['uuid'] | null) - __typename: 'tournament_trophies_min_fields' -} - - -/** response of any mutation on the table "tournament_trophies" */ -export interface tournament_trophies_mutation_response { - /** number of rows affected by the mutation */ - affected_rows: Scalars['Int'] - /** data from the rows affected by the mutation */ - returning: tournament_trophies[] - __typename: 'tournament_trophies_mutation_response' -} - - -/** select columns of table "tournament_trophies" */ -export type tournament_trophies_select_column = 'created_at' | 'id' | 'manual' | 'placement' | 'placement_tier' | 'player_steam_id' | 'team_id' | 'tournament_id' | 'tournament_team_id' - - -/** select "tournament_trophies_aggregate_bool_exp_bool_and_arguments_columns" columns of table "tournament_trophies" */ -export type tournament_trophies_select_column_tournament_trophies_aggregate_bool_exp_bool_and_arguments_columns = 'manual' - - -/** select "tournament_trophies_aggregate_bool_exp_bool_or_arguments_columns" columns of table "tournament_trophies" */ -export type tournament_trophies_select_column_tournament_trophies_aggregate_bool_exp_bool_or_arguments_columns = 'manual' - - -/** aggregate stddev on columns */ -export interface tournament_trophies_stddev_fields { - placement: (Scalars['Float'] | null) - player_steam_id: (Scalars['Float'] | null) - __typename: 'tournament_trophies_stddev_fields' -} - - -/** aggregate stddev_pop on columns */ -export interface tournament_trophies_stddev_pop_fields { - placement: (Scalars['Float'] | null) - player_steam_id: (Scalars['Float'] | null) - __typename: 'tournament_trophies_stddev_pop_fields' -} - - -/** aggregate stddev_samp on columns */ -export interface tournament_trophies_stddev_samp_fields { - placement: (Scalars['Float'] | null) - player_steam_id: (Scalars['Float'] | null) - __typename: 'tournament_trophies_stddev_samp_fields' -} - - -/** aggregate sum on columns */ -export interface tournament_trophies_sum_fields { - placement: (Scalars['Int'] | null) - player_steam_id: (Scalars['bigint'] | null) - __typename: 'tournament_trophies_sum_fields' -} - - -/** update columns of table "tournament_trophies" */ -export type tournament_trophies_update_column = 'created_at' | 'id' | 'manual' | 'placement' | 'player_steam_id' | 'team_id' | 'tournament_id' | 'tournament_team_id' - - -/** aggregate var_pop on columns */ -export interface tournament_trophies_var_pop_fields { - placement: (Scalars['Float'] | null) - player_steam_id: (Scalars['Float'] | null) - __typename: 'tournament_trophies_var_pop_fields' -} - - -/** aggregate var_samp on columns */ -export interface tournament_trophies_var_samp_fields { - placement: (Scalars['Float'] | null) - player_steam_id: (Scalars['Float'] | null) - __typename: 'tournament_trophies_var_samp_fields' -} - - -/** aggregate variance on columns */ -export interface tournament_trophies_variance_fields { - placement: (Scalars['Float'] | null) - player_steam_id: (Scalars['Float'] | null) - __typename: 'tournament_trophies_variance_fields' -} - - -/** columns and relationships of "tournament_trophy_configs" */ -export interface tournament_trophy_configs { - created_at: Scalars['timestamptz'] - custom_name: (Scalars['String'] | null) - id: Scalars['uuid'] - image_url: (Scalars['String'] | null) - placement: Scalars['Int'] - silhouette: (Scalars['Int'] | null) - /** An object relationship */ - tournament: tournaments - tournament_id: Scalars['uuid'] - updated_at: Scalars['timestamptz'] - __typename: 'tournament_trophy_configs' -} - - -/** aggregated selection of "tournament_trophy_configs" */ -export interface tournament_trophy_configs_aggregate { - aggregate: (tournament_trophy_configs_aggregate_fields | null) - nodes: tournament_trophy_configs[] - __typename: 'tournament_trophy_configs_aggregate' -} - - -/** aggregate fields of "tournament_trophy_configs" */ -export interface tournament_trophy_configs_aggregate_fields { - avg: (tournament_trophy_configs_avg_fields | null) - count: Scalars['Int'] - max: (tournament_trophy_configs_max_fields | null) - min: (tournament_trophy_configs_min_fields | null) - stddev: (tournament_trophy_configs_stddev_fields | null) - stddev_pop: (tournament_trophy_configs_stddev_pop_fields | null) - stddev_samp: (tournament_trophy_configs_stddev_samp_fields | null) - sum: (tournament_trophy_configs_sum_fields | null) - var_pop: (tournament_trophy_configs_var_pop_fields | null) - var_samp: (tournament_trophy_configs_var_samp_fields | null) - variance: (tournament_trophy_configs_variance_fields | null) - __typename: 'tournament_trophy_configs_aggregate_fields' -} - - -/** aggregate avg on columns */ -export interface tournament_trophy_configs_avg_fields { - placement: (Scalars['Float'] | null) - silhouette: (Scalars['Float'] | null) - __typename: 'tournament_trophy_configs_avg_fields' -} - - -/** unique or primary key constraints on table "tournament_trophy_configs" */ -export type tournament_trophy_configs_constraint = 'tournament_trophy_configs_pkey' | 'tournament_trophy_configs_tournament_id_placement_key' - - -/** aggregate max on columns */ -export interface tournament_trophy_configs_max_fields { - created_at: (Scalars['timestamptz'] | null) - custom_name: (Scalars['String'] | null) - id: (Scalars['uuid'] | null) - image_url: (Scalars['String'] | null) - placement: (Scalars['Int'] | null) - silhouette: (Scalars['Int'] | null) - tournament_id: (Scalars['uuid'] | null) - updated_at: (Scalars['timestamptz'] | null) - __typename: 'tournament_trophy_configs_max_fields' -} - - -/** aggregate min on columns */ -export interface tournament_trophy_configs_min_fields { - created_at: (Scalars['timestamptz'] | null) - custom_name: (Scalars['String'] | null) - id: (Scalars['uuid'] | null) - image_url: (Scalars['String'] | null) - placement: (Scalars['Int'] | null) - silhouette: (Scalars['Int'] | null) - tournament_id: (Scalars['uuid'] | null) - updated_at: (Scalars['timestamptz'] | null) - __typename: 'tournament_trophy_configs_min_fields' -} - - -/** response of any mutation on the table "tournament_trophy_configs" */ -export interface tournament_trophy_configs_mutation_response { - /** number of rows affected by the mutation */ - affected_rows: Scalars['Int'] - /** data from the rows affected by the mutation */ - returning: tournament_trophy_configs[] - __typename: 'tournament_trophy_configs_mutation_response' -} - - -/** select columns of table "tournament_trophy_configs" */ -export type tournament_trophy_configs_select_column = 'created_at' | 'custom_name' | 'id' | 'image_url' | 'placement' | 'silhouette' | 'tournament_id' | 'updated_at' - - -/** aggregate stddev on columns */ -export interface tournament_trophy_configs_stddev_fields { - placement: (Scalars['Float'] | null) - silhouette: (Scalars['Float'] | null) - __typename: 'tournament_trophy_configs_stddev_fields' -} - - -/** aggregate stddev_pop on columns */ -export interface tournament_trophy_configs_stddev_pop_fields { - placement: (Scalars['Float'] | null) - silhouette: (Scalars['Float'] | null) - __typename: 'tournament_trophy_configs_stddev_pop_fields' -} - - -/** aggregate stddev_samp on columns */ -export interface tournament_trophy_configs_stddev_samp_fields { - placement: (Scalars['Float'] | null) - silhouette: (Scalars['Float'] | null) - __typename: 'tournament_trophy_configs_stddev_samp_fields' -} - - -/** aggregate sum on columns */ -export interface tournament_trophy_configs_sum_fields { - placement: (Scalars['Int'] | null) - silhouette: (Scalars['Int'] | null) - __typename: 'tournament_trophy_configs_sum_fields' -} - - -/** update columns of table "tournament_trophy_configs" */ -export type tournament_trophy_configs_update_column = 'created_at' | 'custom_name' | 'id' | 'image_url' | 'placement' | 'silhouette' | 'tournament_id' | 'updated_at' - - -/** aggregate var_pop on columns */ -export interface tournament_trophy_configs_var_pop_fields { - placement: (Scalars['Float'] | null) - silhouette: (Scalars['Float'] | null) - __typename: 'tournament_trophy_configs_var_pop_fields' -} - - -/** aggregate var_samp on columns */ -export interface tournament_trophy_configs_var_samp_fields { - placement: (Scalars['Float'] | null) - silhouette: (Scalars['Float'] | null) - __typename: 'tournament_trophy_configs_var_samp_fields' -} - - -/** aggregate variance on columns */ -export interface tournament_trophy_configs_variance_fields { - placement: (Scalars['Float'] | null) - silhouette: (Scalars['Float'] | null) - __typename: 'tournament_trophy_configs_variance_fields' -} - - /** columns and relationships of "tournaments" */ export interface tournaments { /** An object relationship */ admin: players auto_start: Scalars['Boolean'] + /** An array relationship */ + award_configs: tournament_awards[] + /** An aggregate relationship */ + award_configs_aggregate: tournament_awards_aggregate + /** An array relationship */ + awards: award_recipients[] + /** An aggregate relationship */ + awards_aggregate: award_recipients_aggregate + awards_enabled: Scalars['Boolean'] banner: (Scalars['String'] | null) /** A computed field, executes function "can_cancel_tournament" */ can_cancel: (Scalars['Boolean'] | null) @@ -28744,15 +29215,6 @@ export interface tournaments { teams: tournament_teams[] /** An aggregate relationship */ teams_aggregate: tournament_teams_aggregate - /** An array relationship */ - trophies: tournament_trophies[] - /** An aggregate relationship */ - trophies_aggregate: tournament_trophies_aggregate - trophies_enabled: Scalars['Boolean'] - /** An array relationship */ - trophy_configs: tournament_trophy_configs[] - /** An aggregate relationship */ - trophy_configs_aggregate: tournament_trophy_configs_aggregate __typename: 'tournaments' } @@ -28864,7 +29326,7 @@ export interface tournaments_mutation_response { /** select columns of table "tournaments" */ -export type tournaments_select_column = 'auto_start' | 'banner' | 'created_at' | 'description' | 'discord_guild_id' | 'discord_notifications_enabled' | 'discord_notify_Canceled' | 'discord_notify_Finished' | 'discord_notify_Forfeit' | 'discord_notify_Live' | 'discord_notify_MapPaused' | 'discord_notify_PickingPlayers' | 'discord_notify_Scheduled' | 'discord_notify_Surrendered' | 'discord_notify_Tie' | 'discord_notify_Veto' | 'discord_notify_WaitingForCheckIn' | 'discord_notify_WaitingForServer' | 'discord_role_id' | 'discord_voice_enabled' | 'discord_webhook' | 'homepage' | 'id' | 'is_league' | 'latitude' | 'location' | 'logo' | 'longitude' | 'match_options_id' | 'name' | 'organizer_steam_id' | 'scheduling_mode' | 'start' | 'status' | 'trophies_enabled' +export type tournaments_select_column = 'auto_start' | 'awards_enabled' | 'banner' | 'created_at' | 'description' | 'discord_guild_id' | 'discord_notifications_enabled' | 'discord_notify_Canceled' | 'discord_notify_Finished' | 'discord_notify_Forfeit' | 'discord_notify_Live' | 'discord_notify_MapPaused' | 'discord_notify_PickingPlayers' | 'discord_notify_Scheduled' | 'discord_notify_Surrendered' | 'discord_notify_Tie' | 'discord_notify_Veto' | 'discord_notify_WaitingForCheckIn' | 'discord_notify_WaitingForServer' | 'discord_role_id' | 'discord_voice_enabled' | 'discord_webhook' | 'homepage' | 'id' | 'is_league' | 'latitude' | 'location' | 'logo' | 'longitude' | 'match_options_id' | 'name' | 'organizer_steam_id' | 'scheduling_mode' | 'start' | 'status' /** select "tournaments_aggregate_bool_exp_avg_arguments_columns" columns of table "tournaments" */ @@ -28872,11 +29334,11 @@ export type tournaments_select_column_tournaments_aggregate_bool_exp_avg_argumen /** select "tournaments_aggregate_bool_exp_bool_and_arguments_columns" columns of table "tournaments" */ -export type tournaments_select_column_tournaments_aggregate_bool_exp_bool_and_arguments_columns = 'auto_start' | 'discord_notifications_enabled' | 'discord_notify_Canceled' | 'discord_notify_Finished' | 'discord_notify_Forfeit' | 'discord_notify_Live' | 'discord_notify_MapPaused' | 'discord_notify_PickingPlayers' | 'discord_notify_Scheduled' | 'discord_notify_Surrendered' | 'discord_notify_Tie' | 'discord_notify_Veto' | 'discord_notify_WaitingForCheckIn' | 'discord_notify_WaitingForServer' | 'discord_voice_enabled' | 'is_league' | 'trophies_enabled' +export type tournaments_select_column_tournaments_aggregate_bool_exp_bool_and_arguments_columns = 'auto_start' | 'awards_enabled' | 'discord_notifications_enabled' | 'discord_notify_Canceled' | 'discord_notify_Finished' | 'discord_notify_Forfeit' | 'discord_notify_Live' | 'discord_notify_MapPaused' | 'discord_notify_PickingPlayers' | 'discord_notify_Scheduled' | 'discord_notify_Surrendered' | 'discord_notify_Tie' | 'discord_notify_Veto' | 'discord_notify_WaitingForCheckIn' | 'discord_notify_WaitingForServer' | 'discord_voice_enabled' | 'is_league' /** select "tournaments_aggregate_bool_exp_bool_or_arguments_columns" columns of table "tournaments" */ -export type tournaments_select_column_tournaments_aggregate_bool_exp_bool_or_arguments_columns = 'auto_start' | 'discord_notifications_enabled' | 'discord_notify_Canceled' | 'discord_notify_Finished' | 'discord_notify_Forfeit' | 'discord_notify_Live' | 'discord_notify_MapPaused' | 'discord_notify_PickingPlayers' | 'discord_notify_Scheduled' | 'discord_notify_Surrendered' | 'discord_notify_Tie' | 'discord_notify_Veto' | 'discord_notify_WaitingForCheckIn' | 'discord_notify_WaitingForServer' | 'discord_voice_enabled' | 'is_league' | 'trophies_enabled' +export type tournaments_select_column_tournaments_aggregate_bool_exp_bool_or_arguments_columns = 'auto_start' | 'awards_enabled' | 'discord_notifications_enabled' | 'discord_notify_Canceled' | 'discord_notify_Finished' | 'discord_notify_Forfeit' | 'discord_notify_Live' | 'discord_notify_MapPaused' | 'discord_notify_PickingPlayers' | 'discord_notify_Scheduled' | 'discord_notify_Surrendered' | 'discord_notify_Tie' | 'discord_notify_Veto' | 'discord_notify_WaitingForCheckIn' | 'discord_notify_WaitingForServer' | 'discord_voice_enabled' | 'is_league' /** select "tournaments_aggregate_bool_exp_corr_arguments_columns" columns of table "tournaments" */ @@ -28960,7 +29422,7 @@ export interface tournaments_sum_fields { /** update columns of table "tournaments" */ -export type tournaments_update_column = 'auto_start' | 'banner' | 'created_at' | 'description' | 'discord_guild_id' | 'discord_notifications_enabled' | 'discord_notify_Canceled' | 'discord_notify_Finished' | 'discord_notify_Forfeit' | 'discord_notify_Live' | 'discord_notify_MapPaused' | 'discord_notify_PickingPlayers' | 'discord_notify_Scheduled' | 'discord_notify_Surrendered' | 'discord_notify_Tie' | 'discord_notify_Veto' | 'discord_notify_WaitingForCheckIn' | 'discord_notify_WaitingForServer' | 'discord_role_id' | 'discord_voice_enabled' | 'discord_webhook' | 'homepage' | 'id' | 'is_league' | 'latitude' | 'location' | 'logo' | 'longitude' | 'match_options_id' | 'name' | 'organizer_steam_id' | 'scheduling_mode' | 'start' | 'status' | 'trophies_enabled' +export type tournaments_update_column = 'auto_start' | 'awards_enabled' | 'banner' | 'created_at' | 'description' | 'discord_guild_id' | 'discord_notifications_enabled' | 'discord_notify_Canceled' | 'discord_notify_Finished' | 'discord_notify_Forfeit' | 'discord_notify_Live' | 'discord_notify_MapPaused' | 'discord_notify_PickingPlayers' | 'discord_notify_Scheduled' | 'discord_notify_Surrendered' | 'discord_notify_Tie' | 'discord_notify_Veto' | 'discord_notify_WaitingForCheckIn' | 'discord_notify_WaitingForServer' | 'discord_role_id' | 'discord_voice_enabled' | 'discord_webhook' | 'homepage' | 'id' | 'is_league' | 'latitude' | 'location' | 'logo' | 'longitude' | 'match_options_id' | 'name' | 'organizer_steam_id' | 'scheduling_mode' | 'start' | 'status' /** aggregate var_pop on columns */ @@ -34994,6 +35456,38 @@ export interface ApiKeyResponseGenqlSelection{ __scalar?: boolean | number } +export interface AwardGenqlSelection{ + allow_multiple?: boolean | number + created_at?: boolean | number + created_by_steam_id?: boolean | number + description?: boolean | number + id?: boolean | number + image_url?: boolean | number + name?: boolean | number + silhouette?: boolean | number + system_key?: boolean | number + tier?: boolean | number + updated_at?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface AwardRecipientGenqlSelection{ + award_id?: boolean | number + awarded_by_steam_id?: boolean | number + created_at?: boolean | number + id?: boolean | number + note?: boolean | number + placement?: boolean | number + player_steam_id?: boolean | number + source?: boolean | number + team_id?: boolean | number + tournament_id?: boolean | number + tournament_team_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + /** Boolean expression to compare columns of type "Boolean". All fields are combined with logical 'AND'. */ export interface Boolean_comparison_exp {_eq?: (Scalars['Boolean'] | null),_gt?: (Scalars['Boolean'] | null),_gte?: (Scalars['Boolean'] | null),_in?: (Scalars['Boolean'][] | null),_is_null?: (Scalars['Boolean'] | null),_lt?: (Scalars['Boolean'] | null),_lte?: (Scalars['Boolean'] | null),_neq?: (Scalars['Boolean'] | null),_nin?: (Scalars['Boolean'][] | null)} @@ -35764,6 +36258,18 @@ export interface TimescaleStatsGenqlSelection{ __scalar?: boolean | number } +export interface TournamentAwardGenqlSelection{ + award_id?: boolean | number + custom_name?: boolean | number + id?: boolean | number + image_url?: boolean | number + placement?: boolean | number + silhouette?: boolean | number + tournament_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + export interface TournamentMatchResetImpactGenqlSelection{ bracket_id?: boolean | number depth?: boolean | number @@ -36310,6 +36816,559 @@ export interface api_keys_variance_fieldsGenqlSelection{ export interface approve_league_season_movements_args {_league_season_id?: (Scalars['uuid'] | null)} +/** columns and relationships of "award_recipients" */ +export interface award_recipientsGenqlSelection{ + /** An object relationship */ + award?: awardsGenqlSelection + award_id?: boolean | number + /** An object relationship */ + awarded_by?: playersGenqlSelection + awarded_by_steam_id?: boolean | number + created_at?: boolean | number + id?: boolean | number + note?: boolean | number + placement?: boolean | number + placement_tier?: boolean | number + /** An object relationship */ + player?: playersGenqlSelection + player_steam_id?: boolean | number + source?: boolean | number + /** An object relationship */ + team?: teamsGenqlSelection + team_id?: boolean | number + /** An object relationship */ + tournament?: tournamentsGenqlSelection + /** An object relationship */ + tournament_award?: tournament_awardsGenqlSelection + tournament_id?: boolean | number + /** An object relationship */ + tournament_team?: tournament_teamsGenqlSelection + tournament_team_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "award_recipients" */ +export interface award_recipients_aggregateGenqlSelection{ + aggregate?: award_recipients_aggregate_fieldsGenqlSelection + nodes?: award_recipientsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface award_recipients_aggregate_bool_exp {count?: (award_recipients_aggregate_bool_exp_count | null)} + +export interface award_recipients_aggregate_bool_exp_count {arguments?: (award_recipients_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (award_recipients_bool_exp | null),predicate: Int_comparison_exp} + + +/** aggregate fields of "award_recipients" */ +export interface award_recipients_aggregate_fieldsGenqlSelection{ + avg?: award_recipients_avg_fieldsGenqlSelection + count?: { __args: {columns?: (award_recipients_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: award_recipients_max_fieldsGenqlSelection + min?: award_recipients_min_fieldsGenqlSelection + stddev?: award_recipients_stddev_fieldsGenqlSelection + stddev_pop?: award_recipients_stddev_pop_fieldsGenqlSelection + stddev_samp?: award_recipients_stddev_samp_fieldsGenqlSelection + sum?: award_recipients_sum_fieldsGenqlSelection + var_pop?: award_recipients_var_pop_fieldsGenqlSelection + var_samp?: award_recipients_var_samp_fieldsGenqlSelection + variance?: award_recipients_variance_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by aggregate values of table "award_recipients" */ +export interface award_recipients_aggregate_order_by {avg?: (award_recipients_avg_order_by | null),count?: (order_by | null),max?: (award_recipients_max_order_by | null),min?: (award_recipients_min_order_by | null),stddev?: (award_recipients_stddev_order_by | null),stddev_pop?: (award_recipients_stddev_pop_order_by | null),stddev_samp?: (award_recipients_stddev_samp_order_by | null),sum?: (award_recipients_sum_order_by | null),var_pop?: (award_recipients_var_pop_order_by | null),var_samp?: (award_recipients_var_samp_order_by | null),variance?: (award_recipients_variance_order_by | null)} + + +/** input type for inserting array relation for remote table "award_recipients" */ +export interface award_recipients_arr_rel_insert_input {data: award_recipients_insert_input[], +/** upsert condition */ +on_conflict?: (award_recipients_on_conflict | null)} + + +/** aggregate avg on columns */ +export interface award_recipients_avg_fieldsGenqlSelection{ + awarded_by_steam_id?: boolean | number + placement?: boolean | number + player_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by avg() on columns of table "award_recipients" */ +export interface award_recipients_avg_order_by {awarded_by_steam_id?: (order_by | null),placement?: (order_by | null),player_steam_id?: (order_by | null)} + + +/** Boolean expression to filter rows from the table "award_recipients". All fields are combined with a logical 'AND'. */ +export interface award_recipients_bool_exp {_and?: (award_recipients_bool_exp[] | null),_not?: (award_recipients_bool_exp | null),_or?: (award_recipients_bool_exp[] | null),award?: (awards_bool_exp | null),award_id?: (uuid_comparison_exp | null),awarded_by?: (players_bool_exp | null),awarded_by_steam_id?: (bigint_comparison_exp | null),created_at?: (timestamptz_comparison_exp | null),id?: (uuid_comparison_exp | null),note?: (String_comparison_exp | null),placement?: (Int_comparison_exp | null),placement_tier?: (String_comparison_exp | null),player?: (players_bool_exp | null),player_steam_id?: (bigint_comparison_exp | null),source?: (e_award_sources_enum_comparison_exp | null),team?: (teams_bool_exp | null),team_id?: (uuid_comparison_exp | null),tournament?: (tournaments_bool_exp | null),tournament_award?: (tournament_awards_bool_exp | null),tournament_id?: (uuid_comparison_exp | null),tournament_team?: (tournament_teams_bool_exp | null),tournament_team_id?: (uuid_comparison_exp | null)} + + +/** input type for incrementing numeric columns in table "award_recipients" */ +export interface award_recipients_inc_input {awarded_by_steam_id?: (Scalars['bigint'] | null),placement?: (Scalars['Int'] | null),player_steam_id?: (Scalars['bigint'] | null)} + + +/** input type for inserting data into table "award_recipients" */ +export interface award_recipients_insert_input {award?: (awards_obj_rel_insert_input | null),award_id?: (Scalars['uuid'] | null),awarded_by?: (players_obj_rel_insert_input | null),awarded_by_steam_id?: (Scalars['bigint'] | null),created_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),note?: (Scalars['String'] | null),placement?: (Scalars['Int'] | null),player?: (players_obj_rel_insert_input | null),player_steam_id?: (Scalars['bigint'] | null),source?: (e_award_sources_enum | null),team?: (teams_obj_rel_insert_input | null),team_id?: (Scalars['uuid'] | null),tournament?: (tournaments_obj_rel_insert_input | null),tournament_award?: (tournament_awards_obj_rel_insert_input | null),tournament_id?: (Scalars['uuid'] | null),tournament_team?: (tournament_teams_obj_rel_insert_input | null),tournament_team_id?: (Scalars['uuid'] | null)} + + +/** aggregate max on columns */ +export interface award_recipients_max_fieldsGenqlSelection{ + award_id?: boolean | number + awarded_by_steam_id?: boolean | number + created_at?: boolean | number + id?: boolean | number + note?: boolean | number + placement?: boolean | number + placement_tier?: boolean | number + player_steam_id?: boolean | number + team_id?: boolean | number + tournament_id?: boolean | number + tournament_team_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by max() on columns of table "award_recipients" */ +export interface award_recipients_max_order_by {award_id?: (order_by | null),awarded_by_steam_id?: (order_by | null),created_at?: (order_by | null),id?: (order_by | null),note?: (order_by | null),placement?: (order_by | null),placement_tier?: (order_by | null),player_steam_id?: (order_by | null),team_id?: (order_by | null),tournament_id?: (order_by | null),tournament_team_id?: (order_by | null)} + + +/** aggregate min on columns */ +export interface award_recipients_min_fieldsGenqlSelection{ + award_id?: boolean | number + awarded_by_steam_id?: boolean | number + created_at?: boolean | number + id?: boolean | number + note?: boolean | number + placement?: boolean | number + placement_tier?: boolean | number + player_steam_id?: boolean | number + team_id?: boolean | number + tournament_id?: boolean | number + tournament_team_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by min() on columns of table "award_recipients" */ +export interface award_recipients_min_order_by {award_id?: (order_by | null),awarded_by_steam_id?: (order_by | null),created_at?: (order_by | null),id?: (order_by | null),note?: (order_by | null),placement?: (order_by | null),placement_tier?: (order_by | null),player_steam_id?: (order_by | null),team_id?: (order_by | null),tournament_id?: (order_by | null),tournament_team_id?: (order_by | null)} + + +/** response of any mutation on the table "award_recipients" */ +export interface award_recipients_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: award_recipientsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** on_conflict condition type for table "award_recipients" */ +export interface award_recipients_on_conflict {constraint: award_recipients_constraint,update_columns?: award_recipients_update_column[],where?: (award_recipients_bool_exp | null)} + + +/** Ordering options when selecting data from "award_recipients". */ +export interface award_recipients_order_by {award?: (awards_order_by | null),award_id?: (order_by | null),awarded_by?: (players_order_by | null),awarded_by_steam_id?: (order_by | null),created_at?: (order_by | null),id?: (order_by | null),note?: (order_by | null),placement?: (order_by | null),placement_tier?: (order_by | null),player?: (players_order_by | null),player_steam_id?: (order_by | null),source?: (order_by | null),team?: (teams_order_by | null),team_id?: (order_by | null),tournament?: (tournaments_order_by | null),tournament_award?: (tournament_awards_order_by | null),tournament_id?: (order_by | null),tournament_team?: (tournament_teams_order_by | null),tournament_team_id?: (order_by | null)} + + +/** primary key columns input for table: award_recipients */ +export interface award_recipients_pk_columns_input {id: Scalars['uuid']} + + +/** input type for updating data in table "award_recipients" */ +export interface award_recipients_set_input {award_id?: (Scalars['uuid'] | null),awarded_by_steam_id?: (Scalars['bigint'] | null),created_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),note?: (Scalars['String'] | null),placement?: (Scalars['Int'] | null),player_steam_id?: (Scalars['bigint'] | null),source?: (e_award_sources_enum | null),team_id?: (Scalars['uuid'] | null),tournament_id?: (Scalars['uuid'] | null),tournament_team_id?: (Scalars['uuid'] | null)} + + +/** aggregate stddev on columns */ +export interface award_recipients_stddev_fieldsGenqlSelection{ + awarded_by_steam_id?: boolean | number + placement?: boolean | number + player_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev() on columns of table "award_recipients" */ +export interface award_recipients_stddev_order_by {awarded_by_steam_id?: (order_by | null),placement?: (order_by | null),player_steam_id?: (order_by | null)} + + +/** aggregate stddev_pop on columns */ +export interface award_recipients_stddev_pop_fieldsGenqlSelection{ + awarded_by_steam_id?: boolean | number + placement?: boolean | number + player_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_pop() on columns of table "award_recipients" */ +export interface award_recipients_stddev_pop_order_by {awarded_by_steam_id?: (order_by | null),placement?: (order_by | null),player_steam_id?: (order_by | null)} + + +/** aggregate stddev_samp on columns */ +export interface award_recipients_stddev_samp_fieldsGenqlSelection{ + awarded_by_steam_id?: boolean | number + placement?: boolean | number + player_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_samp() on columns of table "award_recipients" */ +export interface award_recipients_stddev_samp_order_by {awarded_by_steam_id?: (order_by | null),placement?: (order_by | null),player_steam_id?: (order_by | null)} + + +/** Streaming cursor of the table "award_recipients" */ +export interface award_recipients_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: award_recipients_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface award_recipients_stream_cursor_value_input {award_id?: (Scalars['uuid'] | null),awarded_by_steam_id?: (Scalars['bigint'] | null),created_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),note?: (Scalars['String'] | null),placement?: (Scalars['Int'] | null),placement_tier?: (Scalars['String'] | null),player_steam_id?: (Scalars['bigint'] | null),source?: (e_award_sources_enum | null),team_id?: (Scalars['uuid'] | null),tournament_id?: (Scalars['uuid'] | null),tournament_team_id?: (Scalars['uuid'] | null)} + + +/** aggregate sum on columns */ +export interface award_recipients_sum_fieldsGenqlSelection{ + awarded_by_steam_id?: boolean | number + placement?: boolean | number + player_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by sum() on columns of table "award_recipients" */ +export interface award_recipients_sum_order_by {awarded_by_steam_id?: (order_by | null),placement?: (order_by | null),player_steam_id?: (order_by | null)} + +export interface award_recipients_updates { +/** increments the numeric columns with given value of the filtered values */ +_inc?: (award_recipients_inc_input | null), +/** sets the columns of the filtered rows to the given values */ +_set?: (award_recipients_set_input | null), +/** filter the rows which have to be updated */ +where: award_recipients_bool_exp} + + +/** aggregate var_pop on columns */ +export interface award_recipients_var_pop_fieldsGenqlSelection{ + awarded_by_steam_id?: boolean | number + placement?: boolean | number + player_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by var_pop() on columns of table "award_recipients" */ +export interface award_recipients_var_pop_order_by {awarded_by_steam_id?: (order_by | null),placement?: (order_by | null),player_steam_id?: (order_by | null)} + + +/** aggregate var_samp on columns */ +export interface award_recipients_var_samp_fieldsGenqlSelection{ + awarded_by_steam_id?: boolean | number + placement?: boolean | number + player_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by var_samp() on columns of table "award_recipients" */ +export interface award_recipients_var_samp_order_by {awarded_by_steam_id?: (order_by | null),placement?: (order_by | null),player_steam_id?: (order_by | null)} + + +/** aggregate variance on columns */ +export interface award_recipients_variance_fieldsGenqlSelection{ + awarded_by_steam_id?: boolean | number + placement?: boolean | number + player_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by variance() on columns of table "award_recipients" */ +export interface award_recipients_variance_order_by {awarded_by_steam_id?: (order_by | null),placement?: (order_by | null),player_steam_id?: (order_by | null)} + + +/** columns and relationships of "awards" */ +export interface awardsGenqlSelection{ + allow_multiple?: boolean | number + created_at?: boolean | number + /** An object relationship */ + created_by?: playersGenqlSelection + created_by_steam_id?: boolean | number + description?: boolean | number + id?: boolean | number + image_url?: boolean | number + name?: boolean | number + /** An array relationship */ + recipients?: (award_recipientsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (award_recipients_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?: (award_recipients_order_by[] | null), + /** filter the rows returned */ + where?: (award_recipients_bool_exp | null)} }) + /** An aggregate relationship */ + recipients_aggregate?: (award_recipients_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (award_recipients_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?: (award_recipients_order_by[] | null), + /** filter the rows returned */ + where?: (award_recipients_bool_exp | null)} }) + silhouette?: boolean | number + system_key?: boolean | number + tier?: boolean | number + /** An array relationship */ + tournament_configs?: (tournament_awardsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (tournament_awards_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?: (tournament_awards_order_by[] | null), + /** filter the rows returned */ + where?: (tournament_awards_bool_exp | null)} }) + /** An aggregate relationship */ + tournament_configs_aggregate?: (tournament_awards_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (tournament_awards_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?: (tournament_awards_order_by[] | null), + /** filter the rows returned */ + where?: (tournament_awards_bool_exp | null)} }) + updated_at?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "awards" */ +export interface awards_aggregateGenqlSelection{ + aggregate?: awards_aggregate_fieldsGenqlSelection + nodes?: awardsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate fields of "awards" */ +export interface awards_aggregate_fieldsGenqlSelection{ + avg?: awards_avg_fieldsGenqlSelection + count?: { __args: {columns?: (awards_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: awards_max_fieldsGenqlSelection + min?: awards_min_fieldsGenqlSelection + stddev?: awards_stddev_fieldsGenqlSelection + stddev_pop?: awards_stddev_pop_fieldsGenqlSelection + stddev_samp?: awards_stddev_samp_fieldsGenqlSelection + sum?: awards_sum_fieldsGenqlSelection + var_pop?: awards_var_pop_fieldsGenqlSelection + var_samp?: awards_var_samp_fieldsGenqlSelection + variance?: awards_variance_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate avg on columns */ +export interface awards_avg_fieldsGenqlSelection{ + created_by_steam_id?: boolean | number + silhouette?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Boolean expression to filter rows from the table "awards". All fields are combined with a logical 'AND'. */ +export interface awards_bool_exp {_and?: (awards_bool_exp[] | null),_not?: (awards_bool_exp | null),_or?: (awards_bool_exp[] | null),allow_multiple?: (Boolean_comparison_exp | null),created_at?: (timestamptz_comparison_exp | null),created_by?: (players_bool_exp | null),created_by_steam_id?: (bigint_comparison_exp | null),description?: (String_comparison_exp | null),id?: (uuid_comparison_exp | null),image_url?: (String_comparison_exp | null),name?: (String_comparison_exp | null),recipients?: (award_recipients_bool_exp | null),recipients_aggregate?: (award_recipients_aggregate_bool_exp | null),silhouette?: (Int_comparison_exp | null),system_key?: (String_comparison_exp | null),tier?: (e_award_tiers_enum_comparison_exp | null),tournament_configs?: (tournament_awards_bool_exp | null),tournament_configs_aggregate?: (tournament_awards_aggregate_bool_exp | null),updated_at?: (timestamptz_comparison_exp | null)} + + +/** input type for incrementing numeric columns in table "awards" */ +export interface awards_inc_input {created_by_steam_id?: (Scalars['bigint'] | null),silhouette?: (Scalars['Int'] | null)} + + +/** input type for inserting data into table "awards" */ +export interface awards_insert_input {allow_multiple?: (Scalars['Boolean'] | null),created_at?: (Scalars['timestamptz'] | null),created_by?: (players_obj_rel_insert_input | null),created_by_steam_id?: (Scalars['bigint'] | null),description?: (Scalars['String'] | null),id?: (Scalars['uuid'] | null),image_url?: (Scalars['String'] | null),name?: (Scalars['String'] | null),recipients?: (award_recipients_arr_rel_insert_input | null),silhouette?: (Scalars['Int'] | null),system_key?: (Scalars['String'] | null),tier?: (e_award_tiers_enum | null),tournament_configs?: (tournament_awards_arr_rel_insert_input | null),updated_at?: (Scalars['timestamptz'] | null)} + + +/** aggregate max on columns */ +export interface awards_max_fieldsGenqlSelection{ + created_at?: boolean | number + created_by_steam_id?: boolean | number + description?: boolean | number + id?: boolean | number + image_url?: boolean | number + name?: boolean | number + silhouette?: boolean | number + system_key?: boolean | number + updated_at?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate min on columns */ +export interface awards_min_fieldsGenqlSelection{ + created_at?: boolean | number + created_by_steam_id?: boolean | number + description?: boolean | number + id?: boolean | number + image_url?: boolean | number + name?: boolean | number + silhouette?: boolean | number + system_key?: boolean | number + updated_at?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** response of any mutation on the table "awards" */ +export interface awards_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: awardsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** input type for inserting object relation for remote table "awards" */ +export interface awards_obj_rel_insert_input {data: awards_insert_input, +/** upsert condition */ +on_conflict?: (awards_on_conflict | null)} + + +/** on_conflict condition type for table "awards" */ +export interface awards_on_conflict {constraint: awards_constraint,update_columns?: awards_update_column[],where?: (awards_bool_exp | null)} + + +/** Ordering options when selecting data from "awards". */ +export interface awards_order_by {allow_multiple?: (order_by | null),created_at?: (order_by | null),created_by?: (players_order_by | null),created_by_steam_id?: (order_by | null),description?: (order_by | null),id?: (order_by | null),image_url?: (order_by | null),name?: (order_by | null),recipients_aggregate?: (award_recipients_aggregate_order_by | null),silhouette?: (order_by | null),system_key?: (order_by | null),tier?: (order_by | null),tournament_configs_aggregate?: (tournament_awards_aggregate_order_by | null),updated_at?: (order_by | null)} + + +/** primary key columns input for table: awards */ +export interface awards_pk_columns_input {id: Scalars['uuid']} + + +/** input type for updating data in table "awards" */ +export interface awards_set_input {allow_multiple?: (Scalars['Boolean'] | null),created_at?: (Scalars['timestamptz'] | null),created_by_steam_id?: (Scalars['bigint'] | null),description?: (Scalars['String'] | null),id?: (Scalars['uuid'] | null),image_url?: (Scalars['String'] | null),name?: (Scalars['String'] | null),silhouette?: (Scalars['Int'] | null),system_key?: (Scalars['String'] | null),tier?: (e_award_tiers_enum | null),updated_at?: (Scalars['timestamptz'] | null)} + + +/** aggregate stddev on columns */ +export interface awards_stddev_fieldsGenqlSelection{ + created_by_steam_id?: boolean | number + silhouette?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate stddev_pop on columns */ +export interface awards_stddev_pop_fieldsGenqlSelection{ + created_by_steam_id?: boolean | number + silhouette?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate stddev_samp on columns */ +export interface awards_stddev_samp_fieldsGenqlSelection{ + created_by_steam_id?: boolean | number + silhouette?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Streaming cursor of the table "awards" */ +export interface awards_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: awards_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface awards_stream_cursor_value_input {allow_multiple?: (Scalars['Boolean'] | null),created_at?: (Scalars['timestamptz'] | null),created_by_steam_id?: (Scalars['bigint'] | null),description?: (Scalars['String'] | null),id?: (Scalars['uuid'] | null),image_url?: (Scalars['String'] | null),name?: (Scalars['String'] | null),silhouette?: (Scalars['Int'] | null),system_key?: (Scalars['String'] | null),tier?: (e_award_tiers_enum | null),updated_at?: (Scalars['timestamptz'] | null)} + + +/** aggregate sum on columns */ +export interface awards_sum_fieldsGenqlSelection{ + created_by_steam_id?: boolean | number + silhouette?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface awards_updates { +/** increments the numeric columns with given value of the filtered values */ +_inc?: (awards_inc_input | null), +/** sets the columns of the filtered rows to the given values */ +_set?: (awards_set_input | null), +/** filter the rows which have to be updated */ +where: awards_bool_exp} + + +/** aggregate var_pop on columns */ +export interface awards_var_pop_fieldsGenqlSelection{ + created_by_steam_id?: boolean | number + silhouette?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate var_samp on columns */ +export interface awards_var_samp_fieldsGenqlSelection{ + created_by_steam_id?: boolean | number + silhouette?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate variance on columns */ +export interface awards_variance_fieldsGenqlSelection{ + created_by_steam_id?: boolean | number + silhouette?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + /** Boolean expression to compare columns of type "bigint". All fields are combined with logical 'AND'. */ export interface bigint_array_comparison_exp { /** is the array contained in the given array value */ @@ -36665,13 +37724,18 @@ export interface clone_league_season_args {_league_season_id?: (Scalars['uuid'] /** columns and relationships of "custom_pages" */ export interface custom_pagesGenqlSelection{ created_at?: boolean | number + deployments?: { __args: { + /** JSON select path */ + path?: (Scalars['String'] | null)} } | boolean | number enabled?: boolean | number exposed_module?: boolean | number icon?: boolean | number id?: boolean | number is_default?: boolean | number + manifest_url?: boolean | number nav_group?: boolean | number nav_order?: boolean | number + profile_tab_label?: boolean | number remote_entry_url?: boolean | number remote_scope?: boolean | number required_role?: boolean | number @@ -36710,6 +37774,10 @@ export interface custom_pages_aggregate_fieldsGenqlSelection{ } +/** append existing jsonb value of filtered columns with new jsonb value */ +export interface custom_pages_append_input {deployments?: (Scalars['jsonb'] | null)} + + /** aggregate avg on columns */ export interface custom_pages_avg_fieldsGenqlSelection{ nav_order?: boolean | number @@ -36719,7 +37787,19 @@ export interface custom_pages_avg_fieldsGenqlSelection{ /** Boolean expression to filter rows from the table "custom_pages". All fields are combined with a logical 'AND'. */ -export interface custom_pages_bool_exp {_and?: (custom_pages_bool_exp[] | null),_not?: (custom_pages_bool_exp | null),_or?: (custom_pages_bool_exp[] | null),created_at?: (timestamptz_comparison_exp | null),enabled?: (Boolean_comparison_exp | null),exposed_module?: (String_comparison_exp | null),icon?: (String_comparison_exp | null),id?: (uuid_comparison_exp | null),is_default?: (Boolean_comparison_exp | null),nav_group?: (String_comparison_exp | null),nav_order?: (Int_comparison_exp | null),remote_entry_url?: (String_comparison_exp | null),remote_scope?: (String_comparison_exp | null),required_role?: (e_player_roles_enum_comparison_exp | null),slug?: (String_comparison_exp | null),title?: (String_comparison_exp | null),updated_at?: (timestamptz_comparison_exp | null)} +export interface custom_pages_bool_exp {_and?: (custom_pages_bool_exp[] | null),_not?: (custom_pages_bool_exp | null),_or?: (custom_pages_bool_exp[] | null),created_at?: (timestamptz_comparison_exp | null),deployments?: (jsonb_comparison_exp | null),enabled?: (Boolean_comparison_exp | null),exposed_module?: (String_comparison_exp | null),icon?: (String_comparison_exp | null),id?: (uuid_comparison_exp | null),is_default?: (Boolean_comparison_exp | null),manifest_url?: (String_comparison_exp | null),nav_group?: (String_comparison_exp | null),nav_order?: (Int_comparison_exp | null),profile_tab_label?: (String_comparison_exp | null),remote_entry_url?: (String_comparison_exp | null),remote_scope?: (String_comparison_exp | null),required_role?: (e_player_roles_enum_comparison_exp | null),slug?: (String_comparison_exp | null),title?: (String_comparison_exp | null),updated_at?: (timestamptz_comparison_exp | null)} + + +/** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */ +export interface custom_pages_delete_at_path_input {deployments?: (Scalars['String'][] | null)} + + +/** delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array */ +export interface custom_pages_delete_elem_input {deployments?: (Scalars['Int'] | null)} + + +/** delete key/value pair or string element. key/value pairs are matched based on their key value */ +export interface custom_pages_delete_key_input {deployments?: (Scalars['String'] | null)} /** input type for incrementing numeric columns in table "custom_pages" */ @@ -36727,7 +37807,7 @@ export interface custom_pages_inc_input {nav_order?: (Scalars['Int'] | null)} /** input type for inserting data into table "custom_pages" */ -export interface custom_pages_insert_input {created_at?: (Scalars['timestamptz'] | null),enabled?: (Scalars['Boolean'] | null),exposed_module?: (Scalars['String'] | null),icon?: (Scalars['String'] | null),id?: (Scalars['uuid'] | null),is_default?: (Scalars['Boolean'] | null),nav_group?: (Scalars['String'] | null),nav_order?: (Scalars['Int'] | null),remote_entry_url?: (Scalars['String'] | null),remote_scope?: (Scalars['String'] | null),required_role?: (e_player_roles_enum | null),slug?: (Scalars['String'] | null),title?: (Scalars['String'] | null),updated_at?: (Scalars['timestamptz'] | null)} +export interface custom_pages_insert_input {created_at?: (Scalars['timestamptz'] | null),deployments?: (Scalars['jsonb'] | null),enabled?: (Scalars['Boolean'] | null),exposed_module?: (Scalars['String'] | null),icon?: (Scalars['String'] | null),id?: (Scalars['uuid'] | null),is_default?: (Scalars['Boolean'] | null),manifest_url?: (Scalars['String'] | null),nav_group?: (Scalars['String'] | null),nav_order?: (Scalars['Int'] | null),profile_tab_label?: (Scalars['String'] | null),remote_entry_url?: (Scalars['String'] | null),remote_scope?: (Scalars['String'] | null),required_role?: (e_player_roles_enum | null),slug?: (Scalars['String'] | null),title?: (Scalars['String'] | null),updated_at?: (Scalars['timestamptz'] | null)} /** aggregate max on columns */ @@ -36736,8 +37816,10 @@ export interface custom_pages_max_fieldsGenqlSelection{ exposed_module?: boolean | number icon?: boolean | number id?: boolean | number + manifest_url?: boolean | number nav_group?: boolean | number nav_order?: boolean | number + profile_tab_label?: boolean | number remote_entry_url?: boolean | number remote_scope?: boolean | number slug?: boolean | number @@ -36754,8 +37836,10 @@ export interface custom_pages_min_fieldsGenqlSelection{ exposed_module?: boolean | number icon?: boolean | number id?: boolean | number + manifest_url?: boolean | number nav_group?: boolean | number nav_order?: boolean | number + profile_tab_label?: boolean | number remote_entry_url?: boolean | number remote_scope?: boolean | number slug?: boolean | number @@ -36782,15 +37866,19 @@ export interface custom_pages_on_conflict {constraint: custom_pages_constraint,u /** Ordering options when selecting data from "custom_pages". */ -export interface custom_pages_order_by {created_at?: (order_by | null),enabled?: (order_by | null),exposed_module?: (order_by | null),icon?: (order_by | null),id?: (order_by | null),is_default?: (order_by | null),nav_group?: (order_by | null),nav_order?: (order_by | null),remote_entry_url?: (order_by | null),remote_scope?: (order_by | null),required_role?: (order_by | null),slug?: (order_by | null),title?: (order_by | null),updated_at?: (order_by | null)} +export interface custom_pages_order_by {created_at?: (order_by | null),deployments?: (order_by | null),enabled?: (order_by | null),exposed_module?: (order_by | null),icon?: (order_by | null),id?: (order_by | null),is_default?: (order_by | null),manifest_url?: (order_by | null),nav_group?: (order_by | null),nav_order?: (order_by | null),profile_tab_label?: (order_by | null),remote_entry_url?: (order_by | null),remote_scope?: (order_by | null),required_role?: (order_by | null),slug?: (order_by | null),title?: (order_by | null),updated_at?: (order_by | null)} /** primary key columns input for table: custom_pages */ export interface custom_pages_pk_columns_input {id: Scalars['uuid']} +/** prepend existing jsonb value of filtered columns with new jsonb value */ +export interface custom_pages_prepend_input {deployments?: (Scalars['jsonb'] | null)} + + /** input type for updating data in table "custom_pages" */ -export interface custom_pages_set_input {created_at?: (Scalars['timestamptz'] | null),enabled?: (Scalars['Boolean'] | null),exposed_module?: (Scalars['String'] | null),icon?: (Scalars['String'] | null),id?: (Scalars['uuid'] | null),is_default?: (Scalars['Boolean'] | null),nav_group?: (Scalars['String'] | null),nav_order?: (Scalars['Int'] | null),remote_entry_url?: (Scalars['String'] | null),remote_scope?: (Scalars['String'] | null),required_role?: (e_player_roles_enum | null),slug?: (Scalars['String'] | null),title?: (Scalars['String'] | null),updated_at?: (Scalars['timestamptz'] | null)} +export interface custom_pages_set_input {created_at?: (Scalars['timestamptz'] | null),deployments?: (Scalars['jsonb'] | null),enabled?: (Scalars['Boolean'] | null),exposed_module?: (Scalars['String'] | null),icon?: (Scalars['String'] | null),id?: (Scalars['uuid'] | null),is_default?: (Scalars['Boolean'] | null),manifest_url?: (Scalars['String'] | null),nav_group?: (Scalars['String'] | null),nav_order?: (Scalars['Int'] | null),profile_tab_label?: (Scalars['String'] | null),remote_entry_url?: (Scalars['String'] | null),remote_scope?: (Scalars['String'] | null),required_role?: (e_player_roles_enum | null),slug?: (Scalars['String'] | null),title?: (Scalars['String'] | null),updated_at?: (Scalars['timestamptz'] | null)} /** aggregate stddev on columns */ @@ -36826,7 +37914,7 @@ ordering?: (cursor_ordering | null)} /** Initial value of the column from where the streaming should start */ -export interface custom_pages_stream_cursor_value_input {created_at?: (Scalars['timestamptz'] | null),enabled?: (Scalars['Boolean'] | null),exposed_module?: (Scalars['String'] | null),icon?: (Scalars['String'] | null),id?: (Scalars['uuid'] | null),is_default?: (Scalars['Boolean'] | null),nav_group?: (Scalars['String'] | null),nav_order?: (Scalars['Int'] | null),remote_entry_url?: (Scalars['String'] | null),remote_scope?: (Scalars['String'] | null),required_role?: (e_player_roles_enum | null),slug?: (Scalars['String'] | null),title?: (Scalars['String'] | null),updated_at?: (Scalars['timestamptz'] | null)} +export interface custom_pages_stream_cursor_value_input {created_at?: (Scalars['timestamptz'] | null),deployments?: (Scalars['jsonb'] | null),enabled?: (Scalars['Boolean'] | null),exposed_module?: (Scalars['String'] | null),icon?: (Scalars['String'] | null),id?: (Scalars['uuid'] | null),is_default?: (Scalars['Boolean'] | null),manifest_url?: (Scalars['String'] | null),nav_group?: (Scalars['String'] | null),nav_order?: (Scalars['Int'] | null),profile_tab_label?: (Scalars['String'] | null),remote_entry_url?: (Scalars['String'] | null),remote_scope?: (Scalars['String'] | null),required_role?: (e_player_roles_enum | null),slug?: (Scalars['String'] | null),title?: (Scalars['String'] | null),updated_at?: (Scalars['timestamptz'] | null)} /** aggregate sum on columns */ @@ -36837,8 +37925,18 @@ export interface custom_pages_sum_fieldsGenqlSelection{ } export interface custom_pages_updates { +/** append existing jsonb value of filtered columns with new jsonb value */ +_append?: (custom_pages_append_input | null), +/** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */ +_delete_at_path?: (custom_pages_delete_at_path_input | null), +/** delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array */ +_delete_elem?: (custom_pages_delete_elem_input | null), +/** delete key/value pair or string element. key/value pairs are matched based on their key value */ +_delete_key?: (custom_pages_delete_key_input | null), /** increments the numeric columns with given value of the filtered values */ _inc?: (custom_pages_inc_input | null), +/** prepend existing jsonb value of filtered columns with new jsonb value */ +_prepend?: (custom_pages_prepend_input | null), /** sets the columns of the filtered rows to the given values */ _set?: (custom_pages_set_input | null), /** filter the rows which have to be updated */ @@ -38007,6 +39105,212 @@ export interface draft_games_variance_fieldsGenqlSelection{ export interface draft_games_variance_order_by {capacity?: (order_by | null),current_pick_lineup?: (order_by | null),host_steam_id?: (order_by | null),max_elo?: (order_by | null),min_elo?: (order_by | null)} +/** columns and relationships of "e_award_sources" */ +export interface e_award_sourcesGenqlSelection{ + description?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "e_award_sources" */ +export interface e_award_sources_aggregateGenqlSelection{ + aggregate?: e_award_sources_aggregate_fieldsGenqlSelection + nodes?: e_award_sourcesGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate fields of "e_award_sources" */ +export interface e_award_sources_aggregate_fieldsGenqlSelection{ + count?: { __args: {columns?: (e_award_sources_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: e_award_sources_max_fieldsGenqlSelection + min?: e_award_sources_min_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Boolean expression to filter rows from the table "e_award_sources". All fields are combined with a logical 'AND'. */ +export interface e_award_sources_bool_exp {_and?: (e_award_sources_bool_exp[] | null),_not?: (e_award_sources_bool_exp | null),_or?: (e_award_sources_bool_exp[] | null),description?: (String_comparison_exp | null),value?: (String_comparison_exp | null)} + + +/** Boolean expression to compare columns of type "e_award_sources_enum". All fields are combined with logical 'AND'. */ +export interface e_award_sources_enum_comparison_exp {_eq?: (e_award_sources_enum | null),_in?: (e_award_sources_enum[] | null),_is_null?: (Scalars['Boolean'] | null),_neq?: (e_award_sources_enum | null),_nin?: (e_award_sources_enum[] | null)} + + +/** input type for inserting data into table "e_award_sources" */ +export interface e_award_sources_insert_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} + + +/** aggregate max on columns */ +export interface e_award_sources_max_fieldsGenqlSelection{ + description?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate min on columns */ +export interface e_award_sources_min_fieldsGenqlSelection{ + description?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** response of any mutation on the table "e_award_sources" */ +export interface e_award_sources_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: e_award_sourcesGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** on_conflict condition type for table "e_award_sources" */ +export interface e_award_sources_on_conflict {constraint: e_award_sources_constraint,update_columns?: e_award_sources_update_column[],where?: (e_award_sources_bool_exp | null)} + + +/** Ordering options when selecting data from "e_award_sources". */ +export interface e_award_sources_order_by {description?: (order_by | null),value?: (order_by | null)} + + +/** primary key columns input for table: e_award_sources */ +export interface e_award_sources_pk_columns_input {value: Scalars['String']} + + +/** input type for updating data in table "e_award_sources" */ +export interface e_award_sources_set_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} + + +/** Streaming cursor of the table "e_award_sources" */ +export interface e_award_sources_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: e_award_sources_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface e_award_sources_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} + +export interface e_award_sources_updates { +/** sets the columns of the filtered rows to the given values */ +_set?: (e_award_sources_set_input | null), +/** filter the rows which have to be updated */ +where: e_award_sources_bool_exp} + + +/** columns and relationships of "e_award_tiers" */ +export interface e_award_tiersGenqlSelection{ + description?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "e_award_tiers" */ +export interface e_award_tiers_aggregateGenqlSelection{ + aggregate?: e_award_tiers_aggregate_fieldsGenqlSelection + nodes?: e_award_tiersGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate fields of "e_award_tiers" */ +export interface e_award_tiers_aggregate_fieldsGenqlSelection{ + count?: { __args: {columns?: (e_award_tiers_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: e_award_tiers_max_fieldsGenqlSelection + min?: e_award_tiers_min_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Boolean expression to filter rows from the table "e_award_tiers". All fields are combined with a logical 'AND'. */ +export interface e_award_tiers_bool_exp {_and?: (e_award_tiers_bool_exp[] | null),_not?: (e_award_tiers_bool_exp | null),_or?: (e_award_tiers_bool_exp[] | null),description?: (String_comparison_exp | null),value?: (String_comparison_exp | null)} + + +/** Boolean expression to compare columns of type "e_award_tiers_enum". All fields are combined with logical 'AND'. */ +export interface e_award_tiers_enum_comparison_exp {_eq?: (e_award_tiers_enum | null),_in?: (e_award_tiers_enum[] | null),_is_null?: (Scalars['Boolean'] | null),_neq?: (e_award_tiers_enum | null),_nin?: (e_award_tiers_enum[] | null)} + + +/** input type for inserting data into table "e_award_tiers" */ +export interface e_award_tiers_insert_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} + + +/** aggregate max on columns */ +export interface e_award_tiers_max_fieldsGenqlSelection{ + description?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate min on columns */ +export interface e_award_tiers_min_fieldsGenqlSelection{ + description?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** response of any mutation on the table "e_award_tiers" */ +export interface e_award_tiers_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: e_award_tiersGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** on_conflict condition type for table "e_award_tiers" */ +export interface e_award_tiers_on_conflict {constraint: e_award_tiers_constraint,update_columns?: e_award_tiers_update_column[],where?: (e_award_tiers_bool_exp | null)} + + +/** Ordering options when selecting data from "e_award_tiers". */ +export interface e_award_tiers_order_by {description?: (order_by | null),value?: (order_by | null)} + + +/** primary key columns input for table: e_award_tiers */ +export interface e_award_tiers_pk_columns_input {value: Scalars['String']} + + +/** input type for updating data in table "e_award_tiers" */ +export interface e_award_tiers_set_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} + + +/** Streaming cursor of the table "e_award_tiers" */ +export interface e_award_tiers_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: e_award_tiers_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface e_award_tiers_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} + +export interface e_award_tiers_updates { +/** sets the columns of the filtered rows to the given values */ +_set?: (e_award_tiers_set_input | null), +/** filter the rows which have to be updated */ +where: e_award_tiers_bool_exp} + + /** columns and relationships of "e_check_in_settings" */ export interface e_check_in_settingsGenqlSelection{ description?: boolean | number @@ -54194,6 +55498,8 @@ export interface mutation_rootGenqlSelection{ createScheduledMatch?: (CreateScheduledMatchOutputGenqlSelection & { __args: {lineup_1: ScheduledLineupInput, lineup_2: ScheduledLineupInput, options: Scalars['jsonb'], scheduled_at: Scalars['String']} }) /** Create directory on game server */ createServerDirectory?: (SuccessOutputGenqlSelection & { __args: {dir_path: Scalars['String'], node_id: Scalars['String'], server_id?: (Scalars['String'] | null)} }) + /** Delete a catalog award */ + deleteAward?: (SuccessOutputGenqlSelection & { __args: {id: Scalars['uuid']} }) /** Delete a saved clip and its underlying S3 object */ deleteClip?: (SuccessOutputGenqlSelection & { __args: {clip_id: Scalars['uuid']} }) deleteMatch?: (SuccessOutputGenqlSelection & { __args: {match_id: Scalars['String']} }) @@ -54223,6 +55529,18 @@ export interface mutation_rootGenqlSelection{ where: api_keys_bool_exp} }) /** delete single row from the table: "api_keys" */ delete_api_keys_by_pk?: (api_keysGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** delete data from the table: "award_recipients" */ + delete_award_recipients?: (award_recipients_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: award_recipients_bool_exp} }) + /** delete single row from the table: "award_recipients" */ + delete_award_recipients_by_pk?: (award_recipientsGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** delete data from the table: "awards" */ + delete_awards?: (awards_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: awards_bool_exp} }) + /** delete single row from the table: "awards" */ + delete_awards_by_pk?: (awardsGenqlSelection & { __args: {id: Scalars['uuid']} }) /** delete data from the table: "clip_render_jobs" */ delete_clip_render_jobs?: (clip_render_jobs_mutation_responseGenqlSelection & { __args: { /** filter the rows which have to be deleted */ @@ -54259,6 +55577,18 @@ export interface mutation_rootGenqlSelection{ where: draft_games_bool_exp} }) /** delete single row from the table: "draft_games" */ delete_draft_games_by_pk?: (draft_gamesGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** delete data from the table: "e_award_sources" */ + delete_e_award_sources?: (e_award_sources_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: e_award_sources_bool_exp} }) + /** delete single row from the table: "e_award_sources" */ + delete_e_award_sources_by_pk?: (e_award_sourcesGenqlSelection & { __args: {value: Scalars['String']} }) + /** delete data from the table: "e_award_tiers" */ + delete_e_award_tiers?: (e_award_tiers_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: e_award_tiers_bool_exp} }) + /** delete single row from the table: "e_award_tiers" */ + delete_e_award_tiers_by_pk?: (e_award_tiersGenqlSelection & { __args: {value: Scalars['String']} }) /** delete data from the table: "e_check_in_settings" */ delete_e_check_in_settings?: (e_check_in_settings_mutation_responseGenqlSelection & { __args: { /** filter the rows which have to be deleted */ @@ -55009,6 +56339,12 @@ export interface mutation_rootGenqlSelection{ where: teams_bool_exp} }) /** delete single row from the table: "teams" */ delete_teams_by_pk?: (teamsGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** delete data from the table: "tournament_awards" */ + delete_tournament_awards?: (tournament_awards_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: tournament_awards_bool_exp} }) + /** delete single row from the table: "tournament_awards" */ + delete_tournament_awards_by_pk?: (tournament_awardsGenqlSelection & { __args: {id: Scalars['uuid']} }) /** delete data from the table: "tournament_brackets" */ delete_tournament_brackets?: (tournament_brackets_mutation_responseGenqlSelection & { __args: { /** filter the rows which have to be deleted */ @@ -55069,18 +56405,6 @@ export interface mutation_rootGenqlSelection{ where: tournament_teams_bool_exp} }) /** delete single row from the table: "tournament_teams" */ delete_tournament_teams_by_pk?: (tournament_teamsGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** delete data from the table: "tournament_trophies" */ - delete_tournament_trophies?: (tournament_trophies_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - where: tournament_trophies_bool_exp} }) - /** delete single row from the table: "tournament_trophies" */ - delete_tournament_trophies_by_pk?: (tournament_trophiesGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** delete data from the table: "tournament_trophy_configs" */ - delete_tournament_trophy_configs?: (tournament_trophy_configs_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - where: tournament_trophy_configs_bool_exp} }) - /** delete single row from the table: "tournament_trophy_configs" */ - delete_tournament_trophy_configs_by_pk?: (tournament_trophy_configsGenqlSelection & { __args: {id: Scalars['uuid']} }) /** delete data from the table: "tournaments" */ delete_tournaments?: (tournaments_mutation_responseGenqlSelection & { __args: { /** filter the rows which have to be deleted */ @@ -55114,6 +56438,8 @@ export interface mutation_rootGenqlSelection{ /** Live pod GSI snapshot — slots, sides, alive/dead. Drives the stream-deck. */ getLiveStreamSpecState?: (LiveStreamSpecStateGenqlSelection & { __args: {match_id: Scalars['uuid']} }) getTestUploadLink?: GetTestUploadResponseGenqlSelection + /** Grant an award to a player or team */ + grantAward?: (AwardRecipientGenqlSelection & { __args: {award_id: Scalars['uuid'], note?: (Scalars['String'] | null), player_steam_id?: (Scalars['String'] | null), team_id?: (Scalars['uuid'] | null), tournament_id?: (Scalars['uuid'] | null)} }) /** insert data into the table: "_map_pool" */ insert__map_pool?: (_map_pool_mutation_responseGenqlSelection & { __args: { /** the rows to be inserted */ @@ -55150,6 +56476,30 @@ export interface mutation_rootGenqlSelection{ object: api_keys_insert_input, /** upsert condition */ on_conflict?: (api_keys_on_conflict | null)} }) + /** insert data into the table: "award_recipients" */ + insert_award_recipients?: (award_recipients_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: award_recipients_insert_input[], + /** upsert condition */ + on_conflict?: (award_recipients_on_conflict | null)} }) + /** insert a single row into the table: "award_recipients" */ + insert_award_recipients_one?: (award_recipientsGenqlSelection & { __args: { + /** the row to be inserted */ + object: award_recipients_insert_input, + /** upsert condition */ + on_conflict?: (award_recipients_on_conflict | null)} }) + /** insert data into the table: "awards" */ + insert_awards?: (awards_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: awards_insert_input[], + /** upsert condition */ + on_conflict?: (awards_on_conflict | null)} }) + /** insert a single row into the table: "awards" */ + insert_awards_one?: (awardsGenqlSelection & { __args: { + /** the row to be inserted */ + object: awards_insert_input, + /** upsert condition */ + on_conflict?: (awards_on_conflict | null)} }) /** insert data into the table: "clip_render_jobs" */ insert_clip_render_jobs?: (clip_render_jobs_mutation_responseGenqlSelection & { __args: { /** the rows to be inserted */ @@ -55222,6 +56572,30 @@ export interface mutation_rootGenqlSelection{ object: draft_games_insert_input, /** upsert condition */ on_conflict?: (draft_games_on_conflict | null)} }) + /** insert data into the table: "e_award_sources" */ + insert_e_award_sources?: (e_award_sources_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: e_award_sources_insert_input[], + /** upsert condition */ + on_conflict?: (e_award_sources_on_conflict | null)} }) + /** insert a single row into the table: "e_award_sources" */ + insert_e_award_sources_one?: (e_award_sourcesGenqlSelection & { __args: { + /** the row to be inserted */ + object: e_award_sources_insert_input, + /** upsert condition */ + on_conflict?: (e_award_sources_on_conflict | null)} }) + /** insert data into the table: "e_award_tiers" */ + insert_e_award_tiers?: (e_award_tiers_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: e_award_tiers_insert_input[], + /** upsert condition */ + on_conflict?: (e_award_tiers_on_conflict | null)} }) + /** insert a single row into the table: "e_award_tiers" */ + insert_e_award_tiers_one?: (e_award_tiersGenqlSelection & { __args: { + /** the row to be inserted */ + object: e_award_tiers_insert_input, + /** upsert condition */ + on_conflict?: (e_award_tiers_on_conflict | null)} }) /** insert data into the table: "e_check_in_settings" */ insert_e_check_in_settings?: (e_check_in_settings_mutation_responseGenqlSelection & { __args: { /** the rows to be inserted */ @@ -56722,6 +58096,18 @@ export interface mutation_rootGenqlSelection{ object: teams_insert_input, /** upsert condition */ on_conflict?: (teams_on_conflict | null)} }) + /** insert data into the table: "tournament_awards" */ + insert_tournament_awards?: (tournament_awards_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: tournament_awards_insert_input[], + /** upsert condition */ + on_conflict?: (tournament_awards_on_conflict | null)} }) + /** insert a single row into the table: "tournament_awards" */ + insert_tournament_awards_one?: (tournament_awardsGenqlSelection & { __args: { + /** the row to be inserted */ + object: tournament_awards_insert_input, + /** upsert condition */ + on_conflict?: (tournament_awards_on_conflict | null)} }) /** insert data into the table: "tournament_brackets" */ insert_tournament_brackets?: (tournament_brackets_mutation_responseGenqlSelection & { __args: { /** the rows to be inserted */ @@ -56842,30 +58228,6 @@ export interface mutation_rootGenqlSelection{ object: tournament_teams_insert_input, /** upsert condition */ on_conflict?: (tournament_teams_on_conflict | null)} }) - /** insert data into the table: "tournament_trophies" */ - insert_tournament_trophies?: (tournament_trophies_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: tournament_trophies_insert_input[], - /** upsert condition */ - on_conflict?: (tournament_trophies_on_conflict | null)} }) - /** insert a single row into the table: "tournament_trophies" */ - insert_tournament_trophies_one?: (tournament_trophiesGenqlSelection & { __args: { - /** the row to be inserted */ - object: tournament_trophies_insert_input, - /** upsert condition */ - on_conflict?: (tournament_trophies_on_conflict | null)} }) - /** insert data into the table: "tournament_trophy_configs" */ - insert_tournament_trophy_configs?: (tournament_trophy_configs_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: tournament_trophy_configs_insert_input[], - /** upsert condition */ - on_conflict?: (tournament_trophy_configs_on_conflict | null)} }) - /** insert a single row into the table: "tournament_trophy_configs" */ - insert_tournament_trophy_configs_one?: (tournament_trophy_configsGenqlSelection & { __args: { - /** the row to be inserted */ - object: tournament_trophy_configs_insert_input, - /** upsert condition */ - on_conflict?: (tournament_trophy_configs_on_conflict | null)} }) /** insert data into the table: "tournaments" */ insert_tournaments?: (tournaments_mutation_responseGenqlSelection & { __args: { /** the rows to be inserted */ @@ -56960,20 +58322,20 @@ export interface mutation_rootGenqlSelection{ queueClipFromPreset?: (CreateClipRenderOutputGenqlSelection & { __args: {fps?: (Scalars['Int'] | null), match_map_id: Scalars['uuid'], preset: Scalars['String'], resolution?: (Scalars['String'] | null), target_name?: (Scalars['String'] | null), target_steam_id: Scalars['String'], title?: (Scalars['String'] | null)} }) randomizeTeams?: (SuccessOutputGenqlSelection & { __args: {match_id: Scalars['uuid']} }) rebootMatchServer?: (SuccessOutputGenqlSelection & { __args: {match_id: Scalars['uuid']} }) - /** execute VOLATILE function "recalculate_tournament_trophies" which returns "tournament_trophies" */ - recalculate_tournament_trophies?: (tournament_trophiesGenqlSelection & { __args: { - /** input parameters for function "recalculate_tournament_trophies" */ - args: recalculate_tournament_trophies_args, + /** execute VOLATILE function "recalculate_tournament_awards" which returns "award_recipients" */ + recalculate_tournament_awards?: (award_recipientsGenqlSelection & { __args: { + /** input parameters for function "recalculate_tournament_awards" */ + args: recalculate_tournament_awards_args, /** distinct select on columns */ - distinct_on?: (tournament_trophies_select_column[] | null), + distinct_on?: (award_recipients_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?: (tournament_trophies_order_by[] | null), + order_by?: (award_recipients_order_by[] | null), /** filter the rows returned */ - where?: (tournament_trophies_bool_exp | null)} }) + where?: (award_recipients_bool_exp | null)} }) /** Wipe and rebuild all player ELO from finished matches in chronological order (admin only). Runs in the background; track via recomputePlayerEloStatus. */ recomputePlayerElo?: RecomputeEloStartedOutputGenqlSelection /** Return the progress of the ELO recompute run (admin only). */ @@ -57055,7 +58417,11 @@ export interface mutation_rootGenqlSelection{ /** Delete terminal clip_render_jobs rows for a match_map (all or only failed/cancelled) and re-create them from their saved specs. */ retryClipRenderBatch?: (SuccessOutputGenqlSelection & { __args: {match_map_id: Scalars['uuid'], only_failed?: (Scalars['Boolean'] | null)} }) retryPendingMatchImport?: (PendingMatchImportActionOutputGenqlSelection & { __args: {valve_match_id: Scalars['String']} }) + /** Revoke a hand-granted award */ + revokeAward?: (SuccessOutputGenqlSelection & { __args: {id: Scalars['uuid']} }) sanctionServerPlayer?: (SanctionResultGenqlSelection & { __args: {duration?: (Scalars['Float'] | null), reason?: (Scalars['String'] | null), serverId?: (Scalars['String'] | null), steam_id: Scalars['String'], type: Scalars['String']} }) + /** Create or update a catalog award */ + saveAward?: (AwardGenqlSelection & { __args: {allow_multiple?: (Scalars['Boolean'] | null), description?: (Scalars['String'] | null), id?: (Scalars['uuid'] | null), name: Scalars['String'], silhouette?: (Scalars['Int'] | null), tier: Scalars['String']} }) /** Create or update a first-party news post. Caller role is verified against public.post_news_role. */ saveNewsPost?: (NewsPostGenqlSelection & { __args: {content_markdown: Scalars['String'], cover_image_url?: (Scalars['String'] | null), id?: (Scalars['uuid'] | null), teaser?: (Scalars['String'] | null), title: Scalars['String']} }) /** Scan S3 for objects not referenced in the database (admin only). Runs in the background; results land in the logs and orphanedDemosScanResult. */ @@ -57074,6 +58440,8 @@ export interface mutation_rootGenqlSelection{ setMatchWinner?: (SuccessOutputGenqlSelection & { __args: {match_id: Scalars['uuid'], winning_lineup_id: Scalars['uuid']} }) /** Publish or unpublish a news post. Caller role is verified against public.post_news_role. */ setNewsPostStatus?: (NewsPostGenqlSelection & { __args: {id: Scalars['uuid'], status: Scalars['String']} }) + /** Map a tournament placement to an award */ + setTournamentAward?: (TournamentAwardGenqlSelection & { __args: {award_id?: (Scalars['uuid'] | null), custom_name?: (Scalars['String'] | null), placement: Scalars['Int'], silhouette?: (Scalars['Int'] | null), tournament_id: Scalars['uuid']} }) setupGameServer?: SetupGameServeOutputGenqlSelection skipShaders?: (SuccessOutputGenqlSelection & { __args: {match_id: Scalars['uuid']} }) specAutodirector?: (SuccessOutputGenqlSelection & { __args: {enabled: Scalars['Boolean'], match_id: Scalars['uuid']} }) @@ -57159,6 +58527,42 @@ export interface mutation_rootGenqlSelection{ update_api_keys_many?: (api_keys_mutation_responseGenqlSelection & { __args: { /** updates to execute, in order */ updates: api_keys_updates[]} }) + /** update data of the table: "award_recipients" */ + update_award_recipients?: (award_recipients_mutation_responseGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (award_recipients_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (award_recipients_set_input | null), + /** filter the rows which have to be updated */ + where: award_recipients_bool_exp} }) + /** update single row of the table: "award_recipients" */ + update_award_recipients_by_pk?: (award_recipientsGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (award_recipients_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (award_recipients_set_input | null), pk_columns: award_recipients_pk_columns_input} }) + /** update multiples rows of table: "award_recipients" */ + update_award_recipients_many?: (award_recipients_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: award_recipients_updates[]} }) + /** update data of the table: "awards" */ + update_awards?: (awards_mutation_responseGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (awards_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (awards_set_input | null), + /** filter the rows which have to be updated */ + where: awards_bool_exp} }) + /** update single row of the table: "awards" */ + update_awards_by_pk?: (awardsGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (awards_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (awards_set_input | null), pk_columns: awards_pk_columns_input} }) + /** update multiples rows of table: "awards" */ + update_awards_many?: (awards_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: awards_updates[]} }) /** update data of the table: "clip_render_jobs" */ update_clip_render_jobs?: (clip_render_jobs_mutation_responseGenqlSelection & { __args: { /** append existing jsonb value of filtered columns with new jsonb value */ @@ -57199,16 +58603,36 @@ export interface mutation_rootGenqlSelection{ updates: clip_render_jobs_updates[]} }) /** update data of the table: "custom_pages" */ update_custom_pages?: (custom_pages_mutation_responseGenqlSelection & { __args: { + /** append existing jsonb value of filtered columns with new jsonb value */ + _append?: (custom_pages_append_input | null), + /** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */ + _delete_at_path?: (custom_pages_delete_at_path_input | null), + /** delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array */ + _delete_elem?: (custom_pages_delete_elem_input | null), + /** delete key/value pair or string element. key/value pairs are matched based on their key value */ + _delete_key?: (custom_pages_delete_key_input | null), /** increments the numeric columns with given value of the filtered values */ _inc?: (custom_pages_inc_input | null), + /** prepend existing jsonb value of filtered columns with new jsonb value */ + _prepend?: (custom_pages_prepend_input | null), /** sets the columns of the filtered rows to the given values */ _set?: (custom_pages_set_input | null), /** filter the rows which have to be updated */ where: custom_pages_bool_exp} }) /** update single row of the table: "custom_pages" */ update_custom_pages_by_pk?: (custom_pagesGenqlSelection & { __args: { + /** append existing jsonb value of filtered columns with new jsonb value */ + _append?: (custom_pages_append_input | null), + /** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */ + _delete_at_path?: (custom_pages_delete_at_path_input | null), + /** delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array */ + _delete_elem?: (custom_pages_delete_elem_input | null), + /** delete key/value pair or string element. key/value pairs are matched based on their key value */ + _delete_key?: (custom_pages_delete_key_input | null), /** increments the numeric columns with given value of the filtered values */ _inc?: (custom_pages_inc_input | null), + /** prepend existing jsonb value of filtered columns with new jsonb value */ + _prepend?: (custom_pages_prepend_input | null), /** sets the columns of the filtered rows to the given values */ _set?: (custom_pages_set_input | null), pk_columns: custom_pages_pk_columns_input} }) /** update multiples rows of table: "custom_pages" */ @@ -57287,6 +58711,34 @@ export interface mutation_rootGenqlSelection{ update_draft_games_many?: (draft_games_mutation_responseGenqlSelection & { __args: { /** updates to execute, in order */ updates: draft_games_updates[]} }) + /** update data of the table: "e_award_sources" */ + update_e_award_sources?: (e_award_sources_mutation_responseGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (e_award_sources_set_input | null), + /** filter the rows which have to be updated */ + where: e_award_sources_bool_exp} }) + /** update single row of the table: "e_award_sources" */ + update_e_award_sources_by_pk?: (e_award_sourcesGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (e_award_sources_set_input | null), pk_columns: e_award_sources_pk_columns_input} }) + /** update multiples rows of table: "e_award_sources" */ + update_e_award_sources_many?: (e_award_sources_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: e_award_sources_updates[]} }) + /** update data of the table: "e_award_tiers" */ + update_e_award_tiers?: (e_award_tiers_mutation_responseGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (e_award_tiers_set_input | null), + /** filter the rows which have to be updated */ + where: e_award_tiers_bool_exp} }) + /** update single row of the table: "e_award_tiers" */ + update_e_award_tiers_by_pk?: (e_award_tiersGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (e_award_tiers_set_input | null), pk_columns: e_award_tiers_pk_columns_input} }) + /** update multiples rows of table: "e_award_tiers" */ + update_e_award_tiers_many?: (e_award_tiers_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: e_award_tiers_updates[]} }) /** update data of the table: "e_check_in_settings" */ update_e_check_in_settings?: (e_check_in_settings_mutation_responseGenqlSelection & { __args: { /** sets the columns of the filtered rows to the given values */ @@ -59495,6 +60947,24 @@ export interface mutation_rootGenqlSelection{ update_teams_many?: (teams_mutation_responseGenqlSelection & { __args: { /** updates to execute, in order */ updates: teams_updates[]} }) + /** update data of the table: "tournament_awards" */ + update_tournament_awards?: (tournament_awards_mutation_responseGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (tournament_awards_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (tournament_awards_set_input | null), + /** filter the rows which have to be updated */ + where: tournament_awards_bool_exp} }) + /** update single row of the table: "tournament_awards" */ + update_tournament_awards_by_pk?: (tournament_awardsGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (tournament_awards_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (tournament_awards_set_input | null), pk_columns: tournament_awards_pk_columns_input} }) + /** update multiples rows of table: "tournament_awards" */ + update_tournament_awards_many?: (tournament_awards_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: tournament_awards_updates[]} }) /** update data of the table: "tournament_brackets" */ update_tournament_brackets?: (tournament_brackets_mutation_responseGenqlSelection & { __args: { /** increments the numeric columns with given value of the filtered values */ @@ -59687,42 +61157,6 @@ export interface mutation_rootGenqlSelection{ update_tournament_teams_many?: (tournament_teams_mutation_responseGenqlSelection & { __args: { /** updates to execute, in order */ updates: tournament_teams_updates[]} }) - /** update data of the table: "tournament_trophies" */ - update_tournament_trophies?: (tournament_trophies_mutation_responseGenqlSelection & { __args: { - /** increments the numeric columns with given value of the filtered values */ - _inc?: (tournament_trophies_inc_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (tournament_trophies_set_input | null), - /** filter the rows which have to be updated */ - where: tournament_trophies_bool_exp} }) - /** update single row of the table: "tournament_trophies" */ - update_tournament_trophies_by_pk?: (tournament_trophiesGenqlSelection & { __args: { - /** increments the numeric columns with given value of the filtered values */ - _inc?: (tournament_trophies_inc_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (tournament_trophies_set_input | null), pk_columns: tournament_trophies_pk_columns_input} }) - /** update multiples rows of table: "tournament_trophies" */ - update_tournament_trophies_many?: (tournament_trophies_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: tournament_trophies_updates[]} }) - /** update data of the table: "tournament_trophy_configs" */ - update_tournament_trophy_configs?: (tournament_trophy_configs_mutation_responseGenqlSelection & { __args: { - /** increments the numeric columns with given value of the filtered values */ - _inc?: (tournament_trophy_configs_inc_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (tournament_trophy_configs_set_input | null), - /** filter the rows which have to be updated */ - where: tournament_trophy_configs_bool_exp} }) - /** update single row of the table: "tournament_trophy_configs" */ - update_tournament_trophy_configs_by_pk?: (tournament_trophy_configsGenqlSelection & { __args: { - /** increments the numeric columns with given value of the filtered values */ - _inc?: (tournament_trophy_configs_inc_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (tournament_trophy_configs_set_input | null), pk_columns: tournament_trophy_configs_pk_columns_input} }) - /** update multiples rows of table: "tournament_trophy_configs" */ - update_tournament_trophy_configs_many?: (tournament_trophy_configs_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: tournament_trophy_configs_updates[]} }) /** update data of the table: "tournaments" */ update_tournaments?: (tournaments_mutation_responseGenqlSelection & { __args: { /** increments the numeric columns with given value of the filtered values */ @@ -69791,6 +71225,30 @@ export interface playersGenqlSelection{ where?: (player_assists_bool_exp | null)} }) avatar_url?: boolean | number /** An array relationship */ + awards?: (award_recipientsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (award_recipients_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?: (award_recipients_order_by[] | null), + /** filter the rows returned */ + where?: (award_recipients_bool_exp | null)} }) + /** An aggregate relationship */ + awards_aggregate?: (award_recipients_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (award_recipients_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?: (award_recipients_order_by[] | null), + /** filter the rows returned */ + where?: (award_recipients_bool_exp | null)} }) + /** An array relationship */ coach_lineups?: (match_lineupsGenqlSelection & { __args?: { /** distinct select on columns */ distinct_on?: (match_lineups_select_column[] | null), @@ -70620,30 +72078,6 @@ export interface playersGenqlSelection{ /** filter the rows returned */ where?: (tournament_team_roster_bool_exp | null)} }) /** An array relationship */ - tournament_trophies?: (tournament_trophiesGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (tournament_trophies_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?: (tournament_trophies_order_by[] | null), - /** filter the rows returned */ - where?: (tournament_trophies_bool_exp | null)} }) - /** An aggregate relationship */ - tournament_trophies_aggregate?: (tournament_trophies_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (tournament_trophies_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?: (tournament_trophies_order_by[] | null), - /** filter the rows returned */ - where?: (tournament_trophies_bool_exp | null)} }) - /** An array relationship */ tournaments?: (tournamentsGenqlSelection & { __args?: { /** distinct select on columns */ distinct_on?: (tournaments_select_column[] | null), @@ -70790,7 +72224,7 @@ export interface players_avg_fieldsGenqlSelection{ /** Boolean expression to filter rows from the table "players". All fields are combined with a logical 'AND'. */ -export interface players_bool_exp {_and?: (players_bool_exp[] | null),_not?: (players_bool_exp | null),_or?: (players_bool_exp[] | null),abandoned_matches?: (abandoned_matches_bool_exp | null),abandoned_matches_aggregate?: (abandoned_matches_aggregate_bool_exp | null),aim_weapon_stats?: (player_aim_weapon_stats_bool_exp | null),aim_weapon_stats_aggregate?: (player_aim_weapon_stats_aggregate_bool_exp | null),assists?: (player_assists_bool_exp | null),assists_aggregate?: (player_assists_aggregate_bool_exp | null),assited_by_players?: (player_assists_bool_exp | null),assited_by_players_aggregate?: (player_assists_aggregate_bool_exp | null),avatar_url?: (String_comparison_exp | null),coach_lineups?: (match_lineups_bool_exp | null),coach_lineups_aggregate?: (match_lineups_aggregate_bool_exp | null),country?: (String_comparison_exp | null),created_at?: (timestamptz_comparison_exp | null),current_lobby_id?: (uuid_comparison_exp | null),custom_avatar_url?: (String_comparison_exp | null),damage_dealt?: (player_damages_bool_exp | null),damage_dealt_aggregate?: (player_damages_aggregate_bool_exp | null),damage_taken?: (player_damages_bool_exp | null),damage_taken_aggregate?: (player_damages_aggregate_bool_exp | null),days_since_last_ban?: (Int_comparison_exp | null),deaths?: (player_kills_bool_exp | null),deaths_aggregate?: (player_kills_aggregate_bool_exp | null),discord_id?: (String_comparison_exp | null),draft_game_players?: (draft_game_players_bool_exp | null),draft_game_players_aggregate?: (draft_game_players_aggregate_bool_exp | null),elo?: (jsonb_comparison_exp | null),elo_history?: (v_player_elo_bool_exp | null),elo_history_aggregate?: (v_player_elo_aggregate_bool_exp | null),faceit_elo?: (Int_comparison_exp | null),faceit_nickname?: (String_comparison_exp | null),faceit_player_id?: (String_comparison_exp | null),faceit_rank_history?: (player_faceit_rank_history_bool_exp | null),faceit_rank_history_aggregate?: (player_faceit_rank_history_aggregate_bool_exp | null),faceit_skill_level?: (Int_comparison_exp | null),faceit_updated_at?: (timestamptz_comparison_exp | null),faceit_url?: (String_comparison_exp | null),flashed_by_players?: (player_flashes_bool_exp | null),flashed_by_players_aggregate?: (player_flashes_aggregate_bool_exp | null),flashed_players?: (player_flashes_bool_exp | null),flashed_players_aggregate?: (player_flashes_aggregate_bool_exp | null),friends?: (my_friends_bool_exp | null),friends_aggregate?: (my_friends_aggregate_bool_exp | null),game_ban_count?: (Int_comparison_exp | null),invited_players?: (team_invites_bool_exp | null),invited_players_aggregate?: (team_invites_aggregate_bool_exp | null),is_banned?: (Boolean_comparison_exp | null),is_gagged?: (Boolean_comparison_exp | null),is_in_another_match?: (Boolean_comparison_exp | null),is_in_draft?: (Boolean_comparison_exp | null),is_in_lobby?: (Boolean_comparison_exp | null),is_muted?: (Boolean_comparison_exp | null),kills?: (player_kills_bool_exp | null),kills_aggregate?: (player_kills_aggregate_bool_exp | null),kills_by_weapons?: (player_kills_by_weapon_bool_exp | null),kills_by_weapons_aggregate?: (player_kills_by_weapon_aggregate_bool_exp | null),language?: (String_comparison_exp | null),last_read_news_at?: (timestamptz_comparison_exp | null),last_sign_in_at?: (timestamptz_comparison_exp | null),lobby_players?: (lobby_players_bool_exp | null),lobby_players_aggregate?: (lobby_players_aggregate_bool_exp | null),losses?: (Int_comparison_exp | null),losses_competitive?: (Int_comparison_exp | null),losses_duel?: (Int_comparison_exp | null),losses_wingman?: (Int_comparison_exp | null),match_map_hltv?: (v_player_match_map_hltv_bool_exp | null),match_map_hltv_aggregate?: (v_player_match_map_hltv_aggregate_bool_exp | null),match_map_stats?: (player_match_map_stats_bool_exp | null),match_map_stats_aggregate?: (player_match_map_stats_aggregate_bool_exp | null),match_stats?: (player_match_stats_v_bool_exp | null),match_stats_aggregate?: (player_match_stats_v_aggregate_bool_exp | null),matches?: (matches_bool_exp | null),matchmaking_cooldown?: (timestamptz_comparison_exp | null),multi_kills?: (v_player_multi_kills_bool_exp | null),multi_kills_aggregate?: (v_player_multi_kills_aggregate_bool_exp | null),name?: (String_comparison_exp | null),name_registered?: (Boolean_comparison_exp | null),notifications?: (notifications_bool_exp | null),notifications_aggregate?: (notifications_aggregate_bool_exp | null),objectives?: (player_objectives_bool_exp | null),objectives_aggregate?: (player_objectives_aggregate_bool_exp | null),owned_teams?: (teams_bool_exp | null),owned_teams_aggregate?: (teams_aggregate_bool_exp | null),peak_elo?: (jsonb_comparison_exp | null),pending_match_imports?: (pending_match_import_players_bool_exp | null),pending_match_imports_aggregate?: (pending_match_import_players_aggregate_bool_exp | null),player_lineup?: (match_lineup_players_bool_exp | null),player_lineup_aggregate?: (match_lineup_players_aggregate_bool_exp | null),player_unused_utilities?: (player_unused_utility_bool_exp | null),player_unused_utilities_aggregate?: (player_unused_utility_aggregate_bool_exp | null),premier_rank?: (Int_comparison_exp | null),premier_rank_history?: (player_premier_rank_history_bool_exp | null),premier_rank_history_aggregate?: (player_premier_rank_history_aggregate_bool_exp | null),premier_rank_updated_at?: (timestamptz_comparison_exp | null),profile_url?: (String_comparison_exp | null),role?: (e_player_roles_enum_comparison_exp | null),roster_image_url?: (String_comparison_exp | null),sanctions?: (player_sanctions_bool_exp | null),sanctions_aggregate?: (player_sanctions_aggregate_bool_exp | null),season_stats?: (player_season_stats_bool_exp | null),season_stats_aggregate?: (player_season_stats_aggregate_bool_exp | null),show_match_ready_modal?: (Boolean_comparison_exp | null),stats?: (player_stats_bool_exp | null),steam_bans_checked_at?: (timestamptz_comparison_exp | null),steam_id?: (bigint_comparison_exp | null),team_invites?: (team_invites_bool_exp | null),team_invites_aggregate?: (team_invites_aggregate_bool_exp | null),team_members?: (team_roster_bool_exp | null),team_members_aggregate?: (team_roster_aggregate_bool_exp | null),teams?: (teams_bool_exp | null),total_matches?: (Int_comparison_exp | null),tournament_organizers?: (tournament_organizers_bool_exp | null),tournament_organizers_aggregate?: (tournament_organizers_aggregate_bool_exp | null),tournament_rosters?: (tournament_team_roster_bool_exp | null),tournament_rosters_aggregate?: (tournament_team_roster_aggregate_bool_exp | null),tournament_trophies?: (tournament_trophies_bool_exp | null),tournament_trophies_aggregate?: (tournament_trophies_aggregate_bool_exp | null),tournaments?: (tournaments_bool_exp | null),tournaments_aggregate?: (tournaments_aggregate_bool_exp | null),utility_thrown?: (player_utility_bool_exp | null),utility_thrown_aggregate?: (player_utility_aggregate_bool_exp | null),vac_ban_count?: (Int_comparison_exp | null),vac_banned?: (Boolean_comparison_exp | null),weapon_stats?: (player_weapon_stats_v_bool_exp | null),weapon_stats_aggregate?: (player_weapon_stats_v_aggregate_bool_exp | null),wins?: (Int_comparison_exp | null),wins_competitive?: (Int_comparison_exp | null),wins_duel?: (Int_comparison_exp | null),wins_wingman?: (Int_comparison_exp | null)} +export interface players_bool_exp {_and?: (players_bool_exp[] | null),_not?: (players_bool_exp | null),_or?: (players_bool_exp[] | null),abandoned_matches?: (abandoned_matches_bool_exp | null),abandoned_matches_aggregate?: (abandoned_matches_aggregate_bool_exp | null),aim_weapon_stats?: (player_aim_weapon_stats_bool_exp | null),aim_weapon_stats_aggregate?: (player_aim_weapon_stats_aggregate_bool_exp | null),assists?: (player_assists_bool_exp | null),assists_aggregate?: (player_assists_aggregate_bool_exp | null),assited_by_players?: (player_assists_bool_exp | null),assited_by_players_aggregate?: (player_assists_aggregate_bool_exp | null),avatar_url?: (String_comparison_exp | null),awards?: (award_recipients_bool_exp | null),awards_aggregate?: (award_recipients_aggregate_bool_exp | null),coach_lineups?: (match_lineups_bool_exp | null),coach_lineups_aggregate?: (match_lineups_aggregate_bool_exp | null),country?: (String_comparison_exp | null),created_at?: (timestamptz_comparison_exp | null),current_lobby_id?: (uuid_comparison_exp | null),custom_avatar_url?: (String_comparison_exp | null),damage_dealt?: (player_damages_bool_exp | null),damage_dealt_aggregate?: (player_damages_aggregate_bool_exp | null),damage_taken?: (player_damages_bool_exp | null),damage_taken_aggregate?: (player_damages_aggregate_bool_exp | null),days_since_last_ban?: (Int_comparison_exp | null),deaths?: (player_kills_bool_exp | null),deaths_aggregate?: (player_kills_aggregate_bool_exp | null),discord_id?: (String_comparison_exp | null),draft_game_players?: (draft_game_players_bool_exp | null),draft_game_players_aggregate?: (draft_game_players_aggregate_bool_exp | null),elo?: (jsonb_comparison_exp | null),elo_history?: (v_player_elo_bool_exp | null),elo_history_aggregate?: (v_player_elo_aggregate_bool_exp | null),faceit_elo?: (Int_comparison_exp | null),faceit_nickname?: (String_comparison_exp | null),faceit_player_id?: (String_comparison_exp | null),faceit_rank_history?: (player_faceit_rank_history_bool_exp | null),faceit_rank_history_aggregate?: (player_faceit_rank_history_aggregate_bool_exp | null),faceit_skill_level?: (Int_comparison_exp | null),faceit_updated_at?: (timestamptz_comparison_exp | null),faceit_url?: (String_comparison_exp | null),flashed_by_players?: (player_flashes_bool_exp | null),flashed_by_players_aggregate?: (player_flashes_aggregate_bool_exp | null),flashed_players?: (player_flashes_bool_exp | null),flashed_players_aggregate?: (player_flashes_aggregate_bool_exp | null),friends?: (my_friends_bool_exp | null),friends_aggregate?: (my_friends_aggregate_bool_exp | null),game_ban_count?: (Int_comparison_exp | null),invited_players?: (team_invites_bool_exp | null),invited_players_aggregate?: (team_invites_aggregate_bool_exp | null),is_banned?: (Boolean_comparison_exp | null),is_gagged?: (Boolean_comparison_exp | null),is_in_another_match?: (Boolean_comparison_exp | null),is_in_draft?: (Boolean_comparison_exp | null),is_in_lobby?: (Boolean_comparison_exp | null),is_muted?: (Boolean_comparison_exp | null),kills?: (player_kills_bool_exp | null),kills_aggregate?: (player_kills_aggregate_bool_exp | null),kills_by_weapons?: (player_kills_by_weapon_bool_exp | null),kills_by_weapons_aggregate?: (player_kills_by_weapon_aggregate_bool_exp | null),language?: (String_comparison_exp | null),last_read_news_at?: (timestamptz_comparison_exp | null),last_sign_in_at?: (timestamptz_comparison_exp | null),lobby_players?: (lobby_players_bool_exp | null),lobby_players_aggregate?: (lobby_players_aggregate_bool_exp | null),losses?: (Int_comparison_exp | null),losses_competitive?: (Int_comparison_exp | null),losses_duel?: (Int_comparison_exp | null),losses_wingman?: (Int_comparison_exp | null),match_map_hltv?: (v_player_match_map_hltv_bool_exp | null),match_map_hltv_aggregate?: (v_player_match_map_hltv_aggregate_bool_exp | null),match_map_stats?: (player_match_map_stats_bool_exp | null),match_map_stats_aggregate?: (player_match_map_stats_aggregate_bool_exp | null),match_stats?: (player_match_stats_v_bool_exp | null),match_stats_aggregate?: (player_match_stats_v_aggregate_bool_exp | null),matches?: (matches_bool_exp | null),matchmaking_cooldown?: (timestamptz_comparison_exp | null),multi_kills?: (v_player_multi_kills_bool_exp | null),multi_kills_aggregate?: (v_player_multi_kills_aggregate_bool_exp | null),name?: (String_comparison_exp | null),name_registered?: (Boolean_comparison_exp | null),notifications?: (notifications_bool_exp | null),notifications_aggregate?: (notifications_aggregate_bool_exp | null),objectives?: (player_objectives_bool_exp | null),objectives_aggregate?: (player_objectives_aggregate_bool_exp | null),owned_teams?: (teams_bool_exp | null),owned_teams_aggregate?: (teams_aggregate_bool_exp | null),peak_elo?: (jsonb_comparison_exp | null),pending_match_imports?: (pending_match_import_players_bool_exp | null),pending_match_imports_aggregate?: (pending_match_import_players_aggregate_bool_exp | null),player_lineup?: (match_lineup_players_bool_exp | null),player_lineup_aggregate?: (match_lineup_players_aggregate_bool_exp | null),player_unused_utilities?: (player_unused_utility_bool_exp | null),player_unused_utilities_aggregate?: (player_unused_utility_aggregate_bool_exp | null),premier_rank?: (Int_comparison_exp | null),premier_rank_history?: (player_premier_rank_history_bool_exp | null),premier_rank_history_aggregate?: (player_premier_rank_history_aggregate_bool_exp | null),premier_rank_updated_at?: (timestamptz_comparison_exp | null),profile_url?: (String_comparison_exp | null),role?: (e_player_roles_enum_comparison_exp | null),roster_image_url?: (String_comparison_exp | null),sanctions?: (player_sanctions_bool_exp | null),sanctions_aggregate?: (player_sanctions_aggregate_bool_exp | null),season_stats?: (player_season_stats_bool_exp | null),season_stats_aggregate?: (player_season_stats_aggregate_bool_exp | null),show_match_ready_modal?: (Boolean_comparison_exp | null),stats?: (player_stats_bool_exp | null),steam_bans_checked_at?: (timestamptz_comparison_exp | null),steam_id?: (bigint_comparison_exp | null),team_invites?: (team_invites_bool_exp | null),team_invites_aggregate?: (team_invites_aggregate_bool_exp | null),team_members?: (team_roster_bool_exp | null),team_members_aggregate?: (team_roster_aggregate_bool_exp | null),teams?: (teams_bool_exp | null),total_matches?: (Int_comparison_exp | null),tournament_organizers?: (tournament_organizers_bool_exp | null),tournament_organizers_aggregate?: (tournament_organizers_aggregate_bool_exp | null),tournament_rosters?: (tournament_team_roster_bool_exp | null),tournament_rosters_aggregate?: (tournament_team_roster_aggregate_bool_exp | null),tournaments?: (tournaments_bool_exp | null),tournaments_aggregate?: (tournaments_aggregate_bool_exp | null),utility_thrown?: (player_utility_bool_exp | null),utility_thrown_aggregate?: (player_utility_aggregate_bool_exp | null),vac_ban_count?: (Int_comparison_exp | null),vac_banned?: (Boolean_comparison_exp | null),weapon_stats?: (player_weapon_stats_v_bool_exp | null),weapon_stats_aggregate?: (player_weapon_stats_v_aggregate_bool_exp | null),wins?: (Int_comparison_exp | null),wins_competitive?: (Int_comparison_exp | null),wins_duel?: (Int_comparison_exp | null),wins_wingman?: (Int_comparison_exp | null)} /** input type for incrementing numeric columns in table "players" */ @@ -70798,7 +72232,7 @@ export interface players_inc_input {days_since_last_ban?: (Scalars['Int'] | null /** input type for inserting data into table "players" */ -export interface players_insert_input {abandoned_matches?: (abandoned_matches_arr_rel_insert_input | null),aim_weapon_stats?: (player_aim_weapon_stats_arr_rel_insert_input | null),assists?: (player_assists_arr_rel_insert_input | null),assited_by_players?: (player_assists_arr_rel_insert_input | null),avatar_url?: (Scalars['String'] | null),coach_lineups?: (match_lineups_arr_rel_insert_input | null),country?: (Scalars['String'] | null),created_at?: (Scalars['timestamptz'] | null),custom_avatar_url?: (Scalars['String'] | null),damage_dealt?: (player_damages_arr_rel_insert_input | null),damage_taken?: (player_damages_arr_rel_insert_input | null),days_since_last_ban?: (Scalars['Int'] | null),deaths?: (player_kills_arr_rel_insert_input | null),discord_id?: (Scalars['String'] | null),draft_game_players?: (draft_game_players_arr_rel_insert_input | null),elo_history?: (v_player_elo_arr_rel_insert_input | null),faceit_elo?: (Scalars['Int'] | null),faceit_nickname?: (Scalars['String'] | null),faceit_player_id?: (Scalars['String'] | null),faceit_rank_history?: (player_faceit_rank_history_arr_rel_insert_input | null),faceit_skill_level?: (Scalars['Int'] | null),faceit_updated_at?: (Scalars['timestamptz'] | null),faceit_url?: (Scalars['String'] | null),flashed_by_players?: (player_flashes_arr_rel_insert_input | null),flashed_players?: (player_flashes_arr_rel_insert_input | null),friends?: (my_friends_arr_rel_insert_input | null),game_ban_count?: (Scalars['Int'] | null),invited_players?: (team_invites_arr_rel_insert_input | null),kills?: (player_kills_arr_rel_insert_input | null),kills_by_weapons?: (player_kills_by_weapon_arr_rel_insert_input | null),language?: (Scalars['String'] | null),last_read_news_at?: (Scalars['timestamptz'] | null),last_sign_in_at?: (Scalars['timestamptz'] | null),lobby_players?: (lobby_players_arr_rel_insert_input | null),match_map_hltv?: (v_player_match_map_hltv_arr_rel_insert_input | null),match_map_stats?: (player_match_map_stats_arr_rel_insert_input | null),match_stats?: (player_match_stats_v_arr_rel_insert_input | null),multi_kills?: (v_player_multi_kills_arr_rel_insert_input | null),name?: (Scalars['String'] | null),name_registered?: (Scalars['Boolean'] | null),notifications?: (notifications_arr_rel_insert_input | null),objectives?: (player_objectives_arr_rel_insert_input | null),owned_teams?: (teams_arr_rel_insert_input | null),pending_match_imports?: (pending_match_import_players_arr_rel_insert_input | null),player_lineup?: (match_lineup_players_arr_rel_insert_input | null),player_unused_utilities?: (player_unused_utility_arr_rel_insert_input | null),premier_rank?: (Scalars['Int'] | null),premier_rank_history?: (player_premier_rank_history_arr_rel_insert_input | null),premier_rank_updated_at?: (Scalars['timestamptz'] | null),profile_url?: (Scalars['String'] | null),role?: (e_player_roles_enum | null),roster_image_url?: (Scalars['String'] | null),sanctions?: (player_sanctions_arr_rel_insert_input | null),season_stats?: (player_season_stats_arr_rel_insert_input | null),show_match_ready_modal?: (Scalars['Boolean'] | null),stats?: (player_stats_obj_rel_insert_input | null),steam_bans_checked_at?: (Scalars['timestamptz'] | null),steam_id?: (Scalars['bigint'] | null),team_invites?: (team_invites_arr_rel_insert_input | null),team_members?: (team_roster_arr_rel_insert_input | null),tournament_organizers?: (tournament_organizers_arr_rel_insert_input | null),tournament_rosters?: (tournament_team_roster_arr_rel_insert_input | null),tournament_trophies?: (tournament_trophies_arr_rel_insert_input | null),tournaments?: (tournaments_arr_rel_insert_input | null),utility_thrown?: (player_utility_arr_rel_insert_input | null),vac_ban_count?: (Scalars['Int'] | null),vac_banned?: (Scalars['Boolean'] | null),weapon_stats?: (player_weapon_stats_v_arr_rel_insert_input | null)} +export interface players_insert_input {abandoned_matches?: (abandoned_matches_arr_rel_insert_input | null),aim_weapon_stats?: (player_aim_weapon_stats_arr_rel_insert_input | null),assists?: (player_assists_arr_rel_insert_input | null),assited_by_players?: (player_assists_arr_rel_insert_input | null),avatar_url?: (Scalars['String'] | null),awards?: (award_recipients_arr_rel_insert_input | null),coach_lineups?: (match_lineups_arr_rel_insert_input | null),country?: (Scalars['String'] | null),created_at?: (Scalars['timestamptz'] | null),custom_avatar_url?: (Scalars['String'] | null),damage_dealt?: (player_damages_arr_rel_insert_input | null),damage_taken?: (player_damages_arr_rel_insert_input | null),days_since_last_ban?: (Scalars['Int'] | null),deaths?: (player_kills_arr_rel_insert_input | null),discord_id?: (Scalars['String'] | null),draft_game_players?: (draft_game_players_arr_rel_insert_input | null),elo_history?: (v_player_elo_arr_rel_insert_input | null),faceit_elo?: (Scalars['Int'] | null),faceit_nickname?: (Scalars['String'] | null),faceit_player_id?: (Scalars['String'] | null),faceit_rank_history?: (player_faceit_rank_history_arr_rel_insert_input | null),faceit_skill_level?: (Scalars['Int'] | null),faceit_updated_at?: (Scalars['timestamptz'] | null),faceit_url?: (Scalars['String'] | null),flashed_by_players?: (player_flashes_arr_rel_insert_input | null),flashed_players?: (player_flashes_arr_rel_insert_input | null),friends?: (my_friends_arr_rel_insert_input | null),game_ban_count?: (Scalars['Int'] | null),invited_players?: (team_invites_arr_rel_insert_input | null),kills?: (player_kills_arr_rel_insert_input | null),kills_by_weapons?: (player_kills_by_weapon_arr_rel_insert_input | null),language?: (Scalars['String'] | null),last_read_news_at?: (Scalars['timestamptz'] | null),last_sign_in_at?: (Scalars['timestamptz'] | null),lobby_players?: (lobby_players_arr_rel_insert_input | null),match_map_hltv?: (v_player_match_map_hltv_arr_rel_insert_input | null),match_map_stats?: (player_match_map_stats_arr_rel_insert_input | null),match_stats?: (player_match_stats_v_arr_rel_insert_input | null),multi_kills?: (v_player_multi_kills_arr_rel_insert_input | null),name?: (Scalars['String'] | null),name_registered?: (Scalars['Boolean'] | null),notifications?: (notifications_arr_rel_insert_input | null),objectives?: (player_objectives_arr_rel_insert_input | null),owned_teams?: (teams_arr_rel_insert_input | null),pending_match_imports?: (pending_match_import_players_arr_rel_insert_input | null),player_lineup?: (match_lineup_players_arr_rel_insert_input | null),player_unused_utilities?: (player_unused_utility_arr_rel_insert_input | null),premier_rank?: (Scalars['Int'] | null),premier_rank_history?: (player_premier_rank_history_arr_rel_insert_input | null),premier_rank_updated_at?: (Scalars['timestamptz'] | null),profile_url?: (Scalars['String'] | null),role?: (e_player_roles_enum | null),roster_image_url?: (Scalars['String'] | null),sanctions?: (player_sanctions_arr_rel_insert_input | null),season_stats?: (player_season_stats_arr_rel_insert_input | null),show_match_ready_modal?: (Scalars['Boolean'] | null),stats?: (player_stats_obj_rel_insert_input | null),steam_bans_checked_at?: (Scalars['timestamptz'] | null),steam_id?: (Scalars['bigint'] | null),team_invites?: (team_invites_arr_rel_insert_input | null),team_members?: (team_roster_arr_rel_insert_input | null),tournament_organizers?: (tournament_organizers_arr_rel_insert_input | null),tournament_rosters?: (tournament_team_roster_arr_rel_insert_input | null),tournaments?: (tournaments_arr_rel_insert_input | null),utility_thrown?: (player_utility_arr_rel_insert_input | null),vac_ban_count?: (Scalars['Int'] | null),vac_banned?: (Scalars['Boolean'] | null),weapon_stats?: (player_weapon_stats_v_arr_rel_insert_input | null)} /** aggregate max on columns */ @@ -70929,7 +72363,7 @@ export interface players_on_conflict {constraint: players_constraint,update_colu /** Ordering options when selecting data from "players". */ -export interface players_order_by {abandoned_matches_aggregate?: (abandoned_matches_aggregate_order_by | null),aim_weapon_stats_aggregate?: (player_aim_weapon_stats_aggregate_order_by | null),assists_aggregate?: (player_assists_aggregate_order_by | null),assited_by_players_aggregate?: (player_assists_aggregate_order_by | null),avatar_url?: (order_by | null),coach_lineups_aggregate?: (match_lineups_aggregate_order_by | null),country?: (order_by | null),created_at?: (order_by | null),current_lobby_id?: (order_by | null),custom_avatar_url?: (order_by | null),damage_dealt_aggregate?: (player_damages_aggregate_order_by | null),damage_taken_aggregate?: (player_damages_aggregate_order_by | null),days_since_last_ban?: (order_by | null),deaths_aggregate?: (player_kills_aggregate_order_by | null),discord_id?: (order_by | null),draft_game_players_aggregate?: (draft_game_players_aggregate_order_by | null),elo?: (order_by | null),elo_history_aggregate?: (v_player_elo_aggregate_order_by | null),faceit_elo?: (order_by | null),faceit_nickname?: (order_by | null),faceit_player_id?: (order_by | null),faceit_rank_history_aggregate?: (player_faceit_rank_history_aggregate_order_by | null),faceit_skill_level?: (order_by | null),faceit_updated_at?: (order_by | null),faceit_url?: (order_by | null),flashed_by_players_aggregate?: (player_flashes_aggregate_order_by | null),flashed_players_aggregate?: (player_flashes_aggregate_order_by | null),friends_aggregate?: (my_friends_aggregate_order_by | null),game_ban_count?: (order_by | null),invited_players_aggregate?: (team_invites_aggregate_order_by | null),is_banned?: (order_by | null),is_gagged?: (order_by | null),is_in_another_match?: (order_by | null),is_in_draft?: (order_by | null),is_in_lobby?: (order_by | null),is_muted?: (order_by | null),kills_aggregate?: (player_kills_aggregate_order_by | null),kills_by_weapons_aggregate?: (player_kills_by_weapon_aggregate_order_by | null),language?: (order_by | null),last_read_news_at?: (order_by | null),last_sign_in_at?: (order_by | null),lobby_players_aggregate?: (lobby_players_aggregate_order_by | null),losses?: (order_by | null),losses_competitive?: (order_by | null),losses_duel?: (order_by | null),losses_wingman?: (order_by | null),match_map_hltv_aggregate?: (v_player_match_map_hltv_aggregate_order_by | null),match_map_stats_aggregate?: (player_match_map_stats_aggregate_order_by | null),match_stats_aggregate?: (player_match_stats_v_aggregate_order_by | null),matches_aggregate?: (matches_aggregate_order_by | null),matchmaking_cooldown?: (order_by | null),multi_kills_aggregate?: (v_player_multi_kills_aggregate_order_by | null),name?: (order_by | null),name_registered?: (order_by | null),notifications_aggregate?: (notifications_aggregate_order_by | null),objectives_aggregate?: (player_objectives_aggregate_order_by | null),owned_teams_aggregate?: (teams_aggregate_order_by | null),peak_elo?: (order_by | null),pending_match_imports_aggregate?: (pending_match_import_players_aggregate_order_by | null),player_lineup_aggregate?: (match_lineup_players_aggregate_order_by | null),player_unused_utilities_aggregate?: (player_unused_utility_aggregate_order_by | null),premier_rank?: (order_by | null),premier_rank_history_aggregate?: (player_premier_rank_history_aggregate_order_by | null),premier_rank_updated_at?: (order_by | null),profile_url?: (order_by | null),role?: (order_by | null),roster_image_url?: (order_by | null),sanctions_aggregate?: (player_sanctions_aggregate_order_by | null),season_stats_aggregate?: (player_season_stats_aggregate_order_by | null),show_match_ready_modal?: (order_by | null),stats?: (player_stats_order_by | null),steam_bans_checked_at?: (order_by | null),steam_id?: (order_by | null),team_invites_aggregate?: (team_invites_aggregate_order_by | null),team_members_aggregate?: (team_roster_aggregate_order_by | null),teams_aggregate?: (teams_aggregate_order_by | null),total_matches?: (order_by | null),tournament_organizers_aggregate?: (tournament_organizers_aggregate_order_by | null),tournament_rosters_aggregate?: (tournament_team_roster_aggregate_order_by | null),tournament_trophies_aggregate?: (tournament_trophies_aggregate_order_by | null),tournaments_aggregate?: (tournaments_aggregate_order_by | null),utility_thrown_aggregate?: (player_utility_aggregate_order_by | null),vac_ban_count?: (order_by | null),vac_banned?: (order_by | null),weapon_stats_aggregate?: (player_weapon_stats_v_aggregate_order_by | null),wins?: (order_by | null),wins_competitive?: (order_by | null),wins_duel?: (order_by | null),wins_wingman?: (order_by | null)} +export interface players_order_by {abandoned_matches_aggregate?: (abandoned_matches_aggregate_order_by | null),aim_weapon_stats_aggregate?: (player_aim_weapon_stats_aggregate_order_by | null),assists_aggregate?: (player_assists_aggregate_order_by | null),assited_by_players_aggregate?: (player_assists_aggregate_order_by | null),avatar_url?: (order_by | null),awards_aggregate?: (award_recipients_aggregate_order_by | null),coach_lineups_aggregate?: (match_lineups_aggregate_order_by | null),country?: (order_by | null),created_at?: (order_by | null),current_lobby_id?: (order_by | null),custom_avatar_url?: (order_by | null),damage_dealt_aggregate?: (player_damages_aggregate_order_by | null),damage_taken_aggregate?: (player_damages_aggregate_order_by | null),days_since_last_ban?: (order_by | null),deaths_aggregate?: (player_kills_aggregate_order_by | null),discord_id?: (order_by | null),draft_game_players_aggregate?: (draft_game_players_aggregate_order_by | null),elo?: (order_by | null),elo_history_aggregate?: (v_player_elo_aggregate_order_by | null),faceit_elo?: (order_by | null),faceit_nickname?: (order_by | null),faceit_player_id?: (order_by | null),faceit_rank_history_aggregate?: (player_faceit_rank_history_aggregate_order_by | null),faceit_skill_level?: (order_by | null),faceit_updated_at?: (order_by | null),faceit_url?: (order_by | null),flashed_by_players_aggregate?: (player_flashes_aggregate_order_by | null),flashed_players_aggregate?: (player_flashes_aggregate_order_by | null),friends_aggregate?: (my_friends_aggregate_order_by | null),game_ban_count?: (order_by | null),invited_players_aggregate?: (team_invites_aggregate_order_by | null),is_banned?: (order_by | null),is_gagged?: (order_by | null),is_in_another_match?: (order_by | null),is_in_draft?: (order_by | null),is_in_lobby?: (order_by | null),is_muted?: (order_by | null),kills_aggregate?: (player_kills_aggregate_order_by | null),kills_by_weapons_aggregate?: (player_kills_by_weapon_aggregate_order_by | null),language?: (order_by | null),last_read_news_at?: (order_by | null),last_sign_in_at?: (order_by | null),lobby_players_aggregate?: (lobby_players_aggregate_order_by | null),losses?: (order_by | null),losses_competitive?: (order_by | null),losses_duel?: (order_by | null),losses_wingman?: (order_by | null),match_map_hltv_aggregate?: (v_player_match_map_hltv_aggregate_order_by | null),match_map_stats_aggregate?: (player_match_map_stats_aggregate_order_by | null),match_stats_aggregate?: (player_match_stats_v_aggregate_order_by | null),matches_aggregate?: (matches_aggregate_order_by | null),matchmaking_cooldown?: (order_by | null),multi_kills_aggregate?: (v_player_multi_kills_aggregate_order_by | null),name?: (order_by | null),name_registered?: (order_by | null),notifications_aggregate?: (notifications_aggregate_order_by | null),objectives_aggregate?: (player_objectives_aggregate_order_by | null),owned_teams_aggregate?: (teams_aggregate_order_by | null),peak_elo?: (order_by | null),pending_match_imports_aggregate?: (pending_match_import_players_aggregate_order_by | null),player_lineup_aggregate?: (match_lineup_players_aggregate_order_by | null),player_unused_utilities_aggregate?: (player_unused_utility_aggregate_order_by | null),premier_rank?: (order_by | null),premier_rank_history_aggregate?: (player_premier_rank_history_aggregate_order_by | null),premier_rank_updated_at?: (order_by | null),profile_url?: (order_by | null),role?: (order_by | null),roster_image_url?: (order_by | null),sanctions_aggregate?: (player_sanctions_aggregate_order_by | null),season_stats_aggregate?: (player_season_stats_aggregate_order_by | null),show_match_ready_modal?: (order_by | null),stats?: (player_stats_order_by | null),steam_bans_checked_at?: (order_by | null),steam_id?: (order_by | null),team_invites_aggregate?: (team_invites_aggregate_order_by | null),team_members_aggregate?: (team_roster_aggregate_order_by | null),teams_aggregate?: (teams_aggregate_order_by | null),total_matches?: (order_by | null),tournament_organizers_aggregate?: (tournament_organizers_aggregate_order_by | null),tournament_rosters_aggregate?: (tournament_team_roster_aggregate_order_by | null),tournaments_aggregate?: (tournaments_aggregate_order_by | null),utility_thrown_aggregate?: (player_utility_aggregate_order_by | null),vac_ban_count?: (order_by | null),vac_banned?: (order_by | null),weapon_stats_aggregate?: (player_weapon_stats_v_aggregate_order_by | null),wins?: (order_by | null),wins_competitive?: (order_by | null),wins_duel?: (order_by | null),wins_wingman?: (order_by | null)} /** primary key columns input for table: players */ @@ -71443,6 +72877,58 @@ export interface query_rootGenqlSelection{ where?: (api_keys_bool_exp | null)} }) /** fetch data from the table: "api_keys" using primary key columns */ api_keys_by_pk?: (api_keysGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** fetch data from the table: "award_recipients" */ + award_recipients?: (award_recipientsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (award_recipients_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?: (award_recipients_order_by[] | null), + /** filter the rows returned */ + where?: (award_recipients_bool_exp | null)} }) + /** fetch aggregated fields from the table: "award_recipients" */ + award_recipients_aggregate?: (award_recipients_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (award_recipients_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?: (award_recipients_order_by[] | null), + /** filter the rows returned */ + where?: (award_recipients_bool_exp | null)} }) + /** fetch data from the table: "award_recipients" using primary key columns */ + award_recipients_by_pk?: (award_recipientsGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** fetch data from the table: "awards" */ + awards?: (awardsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (awards_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?: (awards_order_by[] | null), + /** filter the rows returned */ + where?: (awards_bool_exp | null)} }) + /** fetch aggregated fields from the table: "awards" */ + awards_aggregate?: (awards_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (awards_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?: (awards_order_by[] | null), + /** filter the rows returned */ + where?: (awards_bool_exp | null)} }) + /** fetch data from the table: "awards" using primary key columns */ + awards_by_pk?: (awardsGenqlSelection & { __args: {id: Scalars['uuid']} }) /** An array relationship */ clip_render_jobs?: (clip_render_jobsGenqlSelection & { __args?: { /** distinct select on columns */ @@ -71600,6 +73086,58 @@ export interface query_rootGenqlSelection{ where?: (draft_games_bool_exp | null)} }) /** fetch data from the table: "draft_games" using primary key columns */ draft_games_by_pk?: (draft_gamesGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** fetch data from the table: "e_award_sources" */ + e_award_sources?: (e_award_sourcesGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_award_sources_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_award_sources_order_by[] | null), + /** filter the rows returned */ + where?: (e_award_sources_bool_exp | null)} }) + /** fetch aggregated fields from the table: "e_award_sources" */ + e_award_sources_aggregate?: (e_award_sources_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_award_sources_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_award_sources_order_by[] | null), + /** filter the rows returned */ + where?: (e_award_sources_bool_exp | null)} }) + /** fetch data from the table: "e_award_sources" using primary key columns */ + e_award_sources_by_pk?: (e_award_sourcesGenqlSelection & { __args: {value: Scalars['String']} }) + /** fetch data from the table: "e_award_tiers" */ + e_award_tiers?: (e_award_tiersGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_award_tiers_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_award_tiers_order_by[] | null), + /** filter the rows returned */ + where?: (e_award_tiers_bool_exp | null)} }) + /** fetch aggregated fields from the table: "e_award_tiers" */ + e_award_tiers_aggregate?: (e_award_tiers_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_award_tiers_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_award_tiers_order_by[] | null), + /** filter the rows returned */ + where?: (e_award_tiers_bool_exp | null)} }) + /** fetch data from the table: "e_award_tiers" using primary key columns */ + e_award_tiers_by_pk?: (e_award_tiersGenqlSelection & { __args: {value: Scalars['String']} }) /** fetch data from the table: "e_check_in_settings" */ e_check_in_settings?: (e_check_in_settingsGenqlSelection & { __args?: { /** distinct select on columns */ @@ -75151,6 +76689,32 @@ export interface query_rootGenqlSelection{ /** fetch data from the table: "teams" using primary key columns */ teams_by_pk?: (teamsGenqlSelection & { __args: {id: Scalars['uuid']} }) telemetryStats?: TelemetryStatsGenqlSelection + /** fetch data from the table: "tournament_awards" */ + tournament_awards?: (tournament_awardsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (tournament_awards_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?: (tournament_awards_order_by[] | null), + /** filter the rows returned */ + where?: (tournament_awards_bool_exp | null)} }) + /** fetch aggregated fields from the table: "tournament_awards" */ + tournament_awards_aggregate?: (tournament_awards_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (tournament_awards_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?: (tournament_awards_order_by[] | null), + /** filter the rows returned */ + where?: (tournament_awards_bool_exp | null)} }) + /** fetch data from the table: "tournament_awards" using primary key columns */ + tournament_awards_by_pk?: (tournament_awardsGenqlSelection & { __args: {id: Scalars['uuid']} }) /** An array relationship */ tournament_brackets?: (tournament_bracketsGenqlSelection & { __args?: { /** distinct select on columns */ @@ -75412,58 +76976,6 @@ export interface query_rootGenqlSelection{ /** fetch data from the table: "tournament_teams" using primary key columns */ tournament_teams_by_pk?: (tournament_teamsGenqlSelection & { __args: {id: Scalars['uuid']} }) /** An array relationship */ - tournament_trophies?: (tournament_trophiesGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (tournament_trophies_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?: (tournament_trophies_order_by[] | null), - /** filter the rows returned */ - where?: (tournament_trophies_bool_exp | null)} }) - /** An aggregate relationship */ - tournament_trophies_aggregate?: (tournament_trophies_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (tournament_trophies_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?: (tournament_trophies_order_by[] | null), - /** filter the rows returned */ - where?: (tournament_trophies_bool_exp | null)} }) - /** fetch data from the table: "tournament_trophies" using primary key columns */ - tournament_trophies_by_pk?: (tournament_trophiesGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** fetch data from the table: "tournament_trophy_configs" */ - tournament_trophy_configs?: (tournament_trophy_configsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (tournament_trophy_configs_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?: (tournament_trophy_configs_order_by[] | null), - /** filter the rows returned */ - where?: (tournament_trophy_configs_bool_exp | null)} }) - /** fetch aggregated fields from the table: "tournament_trophy_configs" */ - tournament_trophy_configs_aggregate?: (tournament_trophy_configs_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (tournament_trophy_configs_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?: (tournament_trophy_configs_order_by[] | null), - /** filter the rows returned */ - where?: (tournament_trophy_configs_bool_exp | null)} }) - /** fetch data from the table: "tournament_trophy_configs" using primary key columns */ - tournament_trophy_configs_by_pk?: (tournament_trophy_configsGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** An array relationship */ tournaments?: (tournamentsGenqlSelection & { __args?: { /** distinct select on columns */ distinct_on?: (tournaments_select_column[] | null), @@ -76263,7 +77775,7 @@ export interface query_rootGenqlSelection{ __scalar?: boolean | number } -export interface recalculate_tournament_trophies_args {_tournament_id?: (Scalars['uuid'] | null)} +export interface recalculate_tournament_awards_args {_tournament_id?: (Scalars['uuid'] | null)} export interface remove_league_team_from_season_args {_league_team_season_id?: (Scalars['uuid'] | null)} @@ -77684,6 +79196,74 @@ export interface subscription_rootGenqlSelection{ cursor: (api_keys_stream_cursor_input | null)[], /** filter the rows returned */ where?: (api_keys_bool_exp | null)} }) + /** fetch data from the table: "award_recipients" */ + award_recipients?: (award_recipientsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (award_recipients_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?: (award_recipients_order_by[] | null), + /** filter the rows returned */ + where?: (award_recipients_bool_exp | null)} }) + /** fetch aggregated fields from the table: "award_recipients" */ + award_recipients_aggregate?: (award_recipients_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (award_recipients_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?: (award_recipients_order_by[] | null), + /** filter the rows returned */ + where?: (award_recipients_bool_exp | null)} }) + /** fetch data from the table: "award_recipients" using primary key columns */ + award_recipients_by_pk?: (award_recipientsGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** fetch data from the table in a streaming manner: "award_recipients" */ + award_recipients_stream?: (award_recipientsGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (award_recipients_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (award_recipients_bool_exp | null)} }) + /** fetch data from the table: "awards" */ + awards?: (awardsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (awards_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?: (awards_order_by[] | null), + /** filter the rows returned */ + where?: (awards_bool_exp | null)} }) + /** fetch aggregated fields from the table: "awards" */ + awards_aggregate?: (awards_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (awards_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?: (awards_order_by[] | null), + /** filter the rows returned */ + where?: (awards_bool_exp | null)} }) + /** fetch data from the table: "awards" using primary key columns */ + awards_by_pk?: (awardsGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** fetch data from the table in a streaming manner: "awards" */ + awards_stream?: (awardsGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (awards_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (awards_bool_exp | null)} }) /** An array relationship */ clip_render_jobs?: (clip_render_jobsGenqlSelection & { __args?: { /** distinct select on columns */ @@ -77888,6 +79468,74 @@ export interface subscription_rootGenqlSelection{ cursor: (draft_games_stream_cursor_input | null)[], /** filter the rows returned */ where?: (draft_games_bool_exp | null)} }) + /** fetch data from the table: "e_award_sources" */ + e_award_sources?: (e_award_sourcesGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_award_sources_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_award_sources_order_by[] | null), + /** filter the rows returned */ + where?: (e_award_sources_bool_exp | null)} }) + /** fetch aggregated fields from the table: "e_award_sources" */ + e_award_sources_aggregate?: (e_award_sources_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_award_sources_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_award_sources_order_by[] | null), + /** filter the rows returned */ + where?: (e_award_sources_bool_exp | null)} }) + /** fetch data from the table: "e_award_sources" using primary key columns */ + e_award_sources_by_pk?: (e_award_sourcesGenqlSelection & { __args: {value: Scalars['String']} }) + /** fetch data from the table in a streaming manner: "e_award_sources" */ + e_award_sources_stream?: (e_award_sourcesGenqlSelection & { __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_award_sources_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (e_award_sources_bool_exp | null)} }) + /** fetch data from the table: "e_award_tiers" */ + e_award_tiers?: (e_award_tiersGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_award_tiers_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_award_tiers_order_by[] | null), + /** filter the rows returned */ + where?: (e_award_tiers_bool_exp | null)} }) + /** fetch aggregated fields from the table: "e_award_tiers" */ + e_award_tiers_aggregate?: (e_award_tiers_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_award_tiers_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_award_tiers_order_by[] | null), + /** filter the rows returned */ + where?: (e_award_tiers_bool_exp | null)} }) + /** fetch data from the table: "e_award_tiers" using primary key columns */ + e_award_tiers_by_pk?: (e_award_tiersGenqlSelection & { __args: {value: Scalars['String']} }) + /** fetch data from the table in a streaming manner: "e_award_tiers" */ + e_award_tiers_stream?: (e_award_tiersGenqlSelection & { __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_award_tiers_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (e_award_tiers_bool_exp | null)} }) /** fetch data from the table: "e_check_in_settings" */ e_check_in_settings?: (e_check_in_settingsGenqlSelection & { __args?: { /** distinct select on columns */ @@ -82438,6 +84086,40 @@ export interface subscription_rootGenqlSelection{ cursor: (teams_stream_cursor_input | null)[], /** filter the rows returned */ where?: (teams_bool_exp | null)} }) + /** fetch data from the table: "tournament_awards" */ + tournament_awards?: (tournament_awardsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (tournament_awards_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?: (tournament_awards_order_by[] | null), + /** filter the rows returned */ + where?: (tournament_awards_bool_exp | null)} }) + /** fetch aggregated fields from the table: "tournament_awards" */ + tournament_awards_aggregate?: (tournament_awards_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (tournament_awards_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?: (tournament_awards_order_by[] | null), + /** filter the rows returned */ + where?: (tournament_awards_bool_exp | null)} }) + /** fetch data from the table: "tournament_awards" using primary key columns */ + tournament_awards_by_pk?: (tournament_awardsGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** fetch data from the table in a streaming manner: "tournament_awards" */ + tournament_awards_stream?: (tournament_awardsGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (tournament_awards_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (tournament_awards_bool_exp | null)} }) /** An array relationship */ tournament_brackets?: (tournament_bracketsGenqlSelection & { __args?: { /** distinct select on columns */ @@ -82779,74 +84461,6 @@ export interface subscription_rootGenqlSelection{ /** filter the rows returned */ where?: (tournament_teams_bool_exp | null)} }) /** An array relationship */ - tournament_trophies?: (tournament_trophiesGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (tournament_trophies_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?: (tournament_trophies_order_by[] | null), - /** filter the rows returned */ - where?: (tournament_trophies_bool_exp | null)} }) - /** An aggregate relationship */ - tournament_trophies_aggregate?: (tournament_trophies_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (tournament_trophies_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?: (tournament_trophies_order_by[] | null), - /** filter the rows returned */ - where?: (tournament_trophies_bool_exp | null)} }) - /** fetch data from the table: "tournament_trophies" using primary key columns */ - tournament_trophies_by_pk?: (tournament_trophiesGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** fetch data from the table in a streaming manner: "tournament_trophies" */ - tournament_trophies_stream?: (tournament_trophiesGenqlSelection & { __args: { - /** maximum number of rows returned in a single batch */ - batch_size: Scalars['Int'], - /** cursor to stream the results returned by the query */ - cursor: (tournament_trophies_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (tournament_trophies_bool_exp | null)} }) - /** fetch data from the table: "tournament_trophy_configs" */ - tournament_trophy_configs?: (tournament_trophy_configsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (tournament_trophy_configs_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?: (tournament_trophy_configs_order_by[] | null), - /** filter the rows returned */ - where?: (tournament_trophy_configs_bool_exp | null)} }) - /** fetch aggregated fields from the table: "tournament_trophy_configs" */ - tournament_trophy_configs_aggregate?: (tournament_trophy_configs_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (tournament_trophy_configs_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?: (tournament_trophy_configs_order_by[] | null), - /** filter the rows returned */ - where?: (tournament_trophy_configs_bool_exp | null)} }) - /** fetch data from the table: "tournament_trophy_configs" using primary key columns */ - tournament_trophy_configs_by_pk?: (tournament_trophy_configsGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** fetch data from the table in a streaming manner: "tournament_trophy_configs" */ - tournament_trophy_configs_stream?: (tournament_trophy_configsGenqlSelection & { __args: { - /** maximum number of rows returned in a single batch */ - batch_size: Scalars['Int'], - /** cursor to stream the results returned by the query */ - cursor: (tournament_trophy_configs_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (tournament_trophy_configs_bool_exp | null)} }) - /** An array relationship */ tournaments?: (tournamentsGenqlSelection & { __args?: { /** distinct select on columns */ distinct_on?: (tournaments_select_column[] | null), @@ -85936,6 +87550,30 @@ export interface team_suggestions_variance_fieldsGenqlSelection{ /** columns and relationships of "teams" */ export interface teamsGenqlSelection{ avatar_url?: boolean | number + /** An array relationship */ + awards?: (award_recipientsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (award_recipients_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?: (award_recipients_order_by[] | null), + /** filter the rows returned */ + where?: (award_recipients_bool_exp | null)} }) + /** An aggregate relationship */ + awards_aggregate?: (award_recipients_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (award_recipients_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?: (award_recipients_order_by[] | null), + /** filter the rows returned */ + where?: (award_recipients_bool_exp | null)} }) /** A computed field, executes function "can_change_team_role" */ can_change_role?: boolean | number /** A computed field, executes function "can_invite_to_team" */ @@ -86158,7 +87796,7 @@ export interface teams_avg_order_by {captain_steam_id?: (order_by | null),owner_ /** Boolean expression to filter rows from the table "teams". All fields are combined with a logical 'AND'. */ -export interface teams_bool_exp {_and?: (teams_bool_exp[] | null),_not?: (teams_bool_exp | null),_or?: (teams_bool_exp[] | null),avatar_url?: (String_comparison_exp | null),can_change_role?: (Boolean_comparison_exp | null),can_invite?: (Boolean_comparison_exp | null),can_manage_scrims?: (Boolean_comparison_exp | null),can_remove?: (Boolean_comparison_exp | null),captain?: (players_bool_exp | null),captain_steam_id?: (bigint_comparison_exp | null),id?: (uuid_comparison_exp | null),invites?: (team_invites_bool_exp | null),invites_aggregate?: (team_invites_aggregate_bool_exp | null),is_organization?: (Boolean_comparison_exp | null),match_lineups?: (match_lineups_bool_exp | null),match_lineups_aggregate?: (match_lineups_aggregate_bool_exp | null),matches?: (matches_bool_exp | null),name?: (String_comparison_exp | null),owner?: (players_bool_exp | null),owner_steam_id?: (bigint_comparison_exp | null),ranks?: (v_team_ranks_bool_exp | null),reputation?: (v_team_reputation_bool_exp | null),role?: (String_comparison_exp | null),roster?: (team_roster_bool_exp | null),roster_aggregate?: (team_roster_aggregate_bool_exp | null),scrim_availability?: (team_scrim_availability_bool_exp | null),scrim_availability_aggregate?: (team_scrim_availability_aggregate_bool_exp | null),scrim_settings?: (team_scrim_settings_bool_exp | null),short_name?: (String_comparison_exp | null),tournament_teams?: (tournament_teams_bool_exp | null),tournament_teams_aggregate?: (tournament_teams_aggregate_bool_exp | null)} +export interface teams_bool_exp {_and?: (teams_bool_exp[] | null),_not?: (teams_bool_exp | null),_or?: (teams_bool_exp[] | null),avatar_url?: (String_comparison_exp | null),awards?: (award_recipients_bool_exp | null),awards_aggregate?: (award_recipients_aggregate_bool_exp | null),can_change_role?: (Boolean_comparison_exp | null),can_invite?: (Boolean_comparison_exp | null),can_manage_scrims?: (Boolean_comparison_exp | null),can_remove?: (Boolean_comparison_exp | null),captain?: (players_bool_exp | null),captain_steam_id?: (bigint_comparison_exp | null),id?: (uuid_comparison_exp | null),invites?: (team_invites_bool_exp | null),invites_aggregate?: (team_invites_aggregate_bool_exp | null),is_organization?: (Boolean_comparison_exp | null),match_lineups?: (match_lineups_bool_exp | null),match_lineups_aggregate?: (match_lineups_aggregate_bool_exp | null),matches?: (matches_bool_exp | null),name?: (String_comparison_exp | null),owner?: (players_bool_exp | null),owner_steam_id?: (bigint_comparison_exp | null),ranks?: (v_team_ranks_bool_exp | null),reputation?: (v_team_reputation_bool_exp | null),role?: (String_comparison_exp | null),roster?: (team_roster_bool_exp | null),roster_aggregate?: (team_roster_aggregate_bool_exp | null),scrim_availability?: (team_scrim_availability_bool_exp | null),scrim_availability_aggregate?: (team_scrim_availability_aggregate_bool_exp | null),scrim_settings?: (team_scrim_settings_bool_exp | null),short_name?: (String_comparison_exp | null),tournament_teams?: (tournament_teams_bool_exp | null),tournament_teams_aggregate?: (tournament_teams_aggregate_bool_exp | null)} /** input type for incrementing numeric columns in table "teams" */ @@ -86166,7 +87804,7 @@ export interface teams_inc_input {captain_steam_id?: (Scalars['bigint'] | null), /** input type for inserting data into table "teams" */ -export interface teams_insert_input {avatar_url?: (Scalars['String'] | null),captain?: (players_obj_rel_insert_input | null),captain_steam_id?: (Scalars['bigint'] | null),id?: (Scalars['uuid'] | null),invites?: (team_invites_arr_rel_insert_input | null),is_organization?: (Scalars['Boolean'] | null),match_lineups?: (match_lineups_arr_rel_insert_input | null),name?: (Scalars['String'] | null),owner?: (players_obj_rel_insert_input | null),owner_steam_id?: (Scalars['bigint'] | null),ranks?: (v_team_ranks_obj_rel_insert_input | null),reputation?: (v_team_reputation_obj_rel_insert_input | null),roster?: (team_roster_arr_rel_insert_input | null),scrim_availability?: (team_scrim_availability_arr_rel_insert_input | null),scrim_settings?: (team_scrim_settings_obj_rel_insert_input | null),short_name?: (Scalars['String'] | null),tournament_teams?: (tournament_teams_arr_rel_insert_input | null)} +export interface teams_insert_input {avatar_url?: (Scalars['String'] | null),awards?: (award_recipients_arr_rel_insert_input | null),captain?: (players_obj_rel_insert_input | null),captain_steam_id?: (Scalars['bigint'] | null),id?: (Scalars['uuid'] | null),invites?: (team_invites_arr_rel_insert_input | null),is_organization?: (Scalars['Boolean'] | null),match_lineups?: (match_lineups_arr_rel_insert_input | null),name?: (Scalars['String'] | null),owner?: (players_obj_rel_insert_input | null),owner_steam_id?: (Scalars['bigint'] | null),ranks?: (v_team_ranks_obj_rel_insert_input | null),reputation?: (v_team_reputation_obj_rel_insert_input | null),roster?: (team_roster_arr_rel_insert_input | null),scrim_availability?: (team_scrim_availability_arr_rel_insert_input | null),scrim_settings?: (team_scrim_settings_obj_rel_insert_input | null),short_name?: (Scalars['String'] | null),tournament_teams?: (tournament_teams_arr_rel_insert_input | null)} /** aggregate max on columns */ @@ -86229,7 +87867,7 @@ export interface teams_on_conflict {constraint: teams_constraint,update_columns? /** Ordering options when selecting data from "teams". */ -export interface teams_order_by {avatar_url?: (order_by | null),can_change_role?: (order_by | null),can_invite?: (order_by | null),can_manage_scrims?: (order_by | null),can_remove?: (order_by | null),captain?: (players_order_by | null),captain_steam_id?: (order_by | null),id?: (order_by | null),invites_aggregate?: (team_invites_aggregate_order_by | null),is_organization?: (order_by | null),match_lineups_aggregate?: (match_lineups_aggregate_order_by | null),matches_aggregate?: (matches_aggregate_order_by | null),name?: (order_by | null),owner?: (players_order_by | null),owner_steam_id?: (order_by | null),ranks?: (v_team_ranks_order_by | null),reputation?: (v_team_reputation_order_by | null),role?: (order_by | null),roster_aggregate?: (team_roster_aggregate_order_by | null),scrim_availability_aggregate?: (team_scrim_availability_aggregate_order_by | null),scrim_settings?: (team_scrim_settings_order_by | null),short_name?: (order_by | null),tournament_teams_aggregate?: (tournament_teams_aggregate_order_by | null)} +export interface teams_order_by {avatar_url?: (order_by | null),awards_aggregate?: (award_recipients_aggregate_order_by | null),can_change_role?: (order_by | null),can_invite?: (order_by | null),can_manage_scrims?: (order_by | null),can_remove?: (order_by | null),captain?: (players_order_by | null),captain_steam_id?: (order_by | null),id?: (order_by | null),invites_aggregate?: (team_invites_aggregate_order_by | null),is_organization?: (order_by | null),match_lineups_aggregate?: (match_lineups_aggregate_order_by | null),matches_aggregate?: (matches_aggregate_order_by | null),name?: (order_by | null),owner?: (players_order_by | null),owner_steam_id?: (order_by | null),ranks?: (v_team_ranks_order_by | null),reputation?: (v_team_reputation_order_by | null),role?: (order_by | null),roster_aggregate?: (team_roster_aggregate_order_by | null),scrim_availability_aggregate?: (team_scrim_availability_aggregate_order_by | null),scrim_settings?: (team_scrim_settings_order_by | null),short_name?: (order_by | null),tournament_teams_aggregate?: (tournament_teams_aggregate_order_by | null)} /** primary key columns input for table: teams */ @@ -86355,6 +87993,276 @@ export interface teams_variance_order_by {captain_steam_id?: (order_by | null),o export interface timestamptz_comparison_exp {_eq?: (Scalars['timestamptz'] | null),_gt?: (Scalars['timestamptz'] | null),_gte?: (Scalars['timestamptz'] | null),_in?: (Scalars['timestamptz'][] | null),_is_null?: (Scalars['Boolean'] | null),_lt?: (Scalars['timestamptz'] | null),_lte?: (Scalars['timestamptz'] | null),_neq?: (Scalars['timestamptz'] | null),_nin?: (Scalars['timestamptz'][] | null)} +/** columns and relationships of "tournament_awards" */ +export interface tournament_awardsGenqlSelection{ + /** An object relationship */ + award?: awardsGenqlSelection + award_id?: boolean | number + created_at?: boolean | number + custom_name?: boolean | number + id?: boolean | number + image_url?: boolean | number + placement?: boolean | number + silhouette?: boolean | number + /** An object relationship */ + tournament?: tournamentsGenqlSelection + tournament_id?: boolean | number + updated_at?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "tournament_awards" */ +export interface tournament_awards_aggregateGenqlSelection{ + aggregate?: tournament_awards_aggregate_fieldsGenqlSelection + nodes?: tournament_awardsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface tournament_awards_aggregate_bool_exp {count?: (tournament_awards_aggregate_bool_exp_count | null)} + +export interface tournament_awards_aggregate_bool_exp_count {arguments?: (tournament_awards_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (tournament_awards_bool_exp | null),predicate: Int_comparison_exp} + + +/** aggregate fields of "tournament_awards" */ +export interface tournament_awards_aggregate_fieldsGenqlSelection{ + avg?: tournament_awards_avg_fieldsGenqlSelection + count?: { __args: {columns?: (tournament_awards_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: tournament_awards_max_fieldsGenqlSelection + min?: tournament_awards_min_fieldsGenqlSelection + stddev?: tournament_awards_stddev_fieldsGenqlSelection + stddev_pop?: tournament_awards_stddev_pop_fieldsGenqlSelection + stddev_samp?: tournament_awards_stddev_samp_fieldsGenqlSelection + sum?: tournament_awards_sum_fieldsGenqlSelection + var_pop?: tournament_awards_var_pop_fieldsGenqlSelection + var_samp?: tournament_awards_var_samp_fieldsGenqlSelection + variance?: tournament_awards_variance_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by aggregate values of table "tournament_awards" */ +export interface tournament_awards_aggregate_order_by {avg?: (tournament_awards_avg_order_by | null),count?: (order_by | null),max?: (tournament_awards_max_order_by | null),min?: (tournament_awards_min_order_by | null),stddev?: (tournament_awards_stddev_order_by | null),stddev_pop?: (tournament_awards_stddev_pop_order_by | null),stddev_samp?: (tournament_awards_stddev_samp_order_by | null),sum?: (tournament_awards_sum_order_by | null),var_pop?: (tournament_awards_var_pop_order_by | null),var_samp?: (tournament_awards_var_samp_order_by | null),variance?: (tournament_awards_variance_order_by | null)} + + +/** input type for inserting array relation for remote table "tournament_awards" */ +export interface tournament_awards_arr_rel_insert_input {data: tournament_awards_insert_input[], +/** upsert condition */ +on_conflict?: (tournament_awards_on_conflict | null)} + + +/** aggregate avg on columns */ +export interface tournament_awards_avg_fieldsGenqlSelection{ + placement?: boolean | number + silhouette?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by avg() on columns of table "tournament_awards" */ +export interface tournament_awards_avg_order_by {placement?: (order_by | null),silhouette?: (order_by | null)} + + +/** Boolean expression to filter rows from the table "tournament_awards". All fields are combined with a logical 'AND'. */ +export interface tournament_awards_bool_exp {_and?: (tournament_awards_bool_exp[] | null),_not?: (tournament_awards_bool_exp | null),_or?: (tournament_awards_bool_exp[] | null),award?: (awards_bool_exp | null),award_id?: (uuid_comparison_exp | null),created_at?: (timestamptz_comparison_exp | null),custom_name?: (String_comparison_exp | null),id?: (uuid_comparison_exp | null),image_url?: (String_comparison_exp | null),placement?: (Int_comparison_exp | null),silhouette?: (Int_comparison_exp | null),tournament?: (tournaments_bool_exp | null),tournament_id?: (uuid_comparison_exp | null),updated_at?: (timestamptz_comparison_exp | null)} + + +/** input type for incrementing numeric columns in table "tournament_awards" */ +export interface tournament_awards_inc_input {placement?: (Scalars['Int'] | null),silhouette?: (Scalars['Int'] | null)} + + +/** input type for inserting data into table "tournament_awards" */ +export interface tournament_awards_insert_input {award?: (awards_obj_rel_insert_input | null),award_id?: (Scalars['uuid'] | null),created_at?: (Scalars['timestamptz'] | null),custom_name?: (Scalars['String'] | null),id?: (Scalars['uuid'] | null),image_url?: (Scalars['String'] | null),placement?: (Scalars['Int'] | null),silhouette?: (Scalars['Int'] | null),tournament?: (tournaments_obj_rel_insert_input | null),tournament_id?: (Scalars['uuid'] | null),updated_at?: (Scalars['timestamptz'] | null)} + + +/** aggregate max on columns */ +export interface tournament_awards_max_fieldsGenqlSelection{ + award_id?: boolean | number + created_at?: boolean | number + custom_name?: boolean | number + id?: boolean | number + image_url?: boolean | number + placement?: boolean | number + silhouette?: boolean | number + tournament_id?: boolean | number + updated_at?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by max() on columns of table "tournament_awards" */ +export interface tournament_awards_max_order_by {award_id?: (order_by | null),created_at?: (order_by | null),custom_name?: (order_by | null),id?: (order_by | null),image_url?: (order_by | null),placement?: (order_by | null),silhouette?: (order_by | null),tournament_id?: (order_by | null),updated_at?: (order_by | null)} + + +/** aggregate min on columns */ +export interface tournament_awards_min_fieldsGenqlSelection{ + award_id?: boolean | number + created_at?: boolean | number + custom_name?: boolean | number + id?: boolean | number + image_url?: boolean | number + placement?: boolean | number + silhouette?: boolean | number + tournament_id?: boolean | number + updated_at?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by min() on columns of table "tournament_awards" */ +export interface tournament_awards_min_order_by {award_id?: (order_by | null),created_at?: (order_by | null),custom_name?: (order_by | null),id?: (order_by | null),image_url?: (order_by | null),placement?: (order_by | null),silhouette?: (order_by | null),tournament_id?: (order_by | null),updated_at?: (order_by | null)} + + +/** response of any mutation on the table "tournament_awards" */ +export interface tournament_awards_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: tournament_awardsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** input type for inserting object relation for remote table "tournament_awards" */ +export interface tournament_awards_obj_rel_insert_input {data: tournament_awards_insert_input, +/** upsert condition */ +on_conflict?: (tournament_awards_on_conflict | null)} + + +/** on_conflict condition type for table "tournament_awards" */ +export interface tournament_awards_on_conflict {constraint: tournament_awards_constraint,update_columns?: tournament_awards_update_column[],where?: (tournament_awards_bool_exp | null)} + + +/** Ordering options when selecting data from "tournament_awards". */ +export interface tournament_awards_order_by {award?: (awards_order_by | null),award_id?: (order_by | null),created_at?: (order_by | null),custom_name?: (order_by | null),id?: (order_by | null),image_url?: (order_by | null),placement?: (order_by | null),silhouette?: (order_by | null),tournament?: (tournaments_order_by | null),tournament_id?: (order_by | null),updated_at?: (order_by | null)} + + +/** primary key columns input for table: tournament_awards */ +export interface tournament_awards_pk_columns_input {id: Scalars['uuid']} + + +/** input type for updating data in table "tournament_awards" */ +export interface tournament_awards_set_input {award_id?: (Scalars['uuid'] | null),created_at?: (Scalars['timestamptz'] | null),custom_name?: (Scalars['String'] | null),id?: (Scalars['uuid'] | null),image_url?: (Scalars['String'] | null),placement?: (Scalars['Int'] | null),silhouette?: (Scalars['Int'] | null),tournament_id?: (Scalars['uuid'] | null),updated_at?: (Scalars['timestamptz'] | null)} + + +/** aggregate stddev on columns */ +export interface tournament_awards_stddev_fieldsGenqlSelection{ + placement?: boolean | number + silhouette?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev() on columns of table "tournament_awards" */ +export interface tournament_awards_stddev_order_by {placement?: (order_by | null),silhouette?: (order_by | null)} + + +/** aggregate stddev_pop on columns */ +export interface tournament_awards_stddev_pop_fieldsGenqlSelection{ + placement?: boolean | number + silhouette?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_pop() on columns of table "tournament_awards" */ +export interface tournament_awards_stddev_pop_order_by {placement?: (order_by | null),silhouette?: (order_by | null)} + + +/** aggregate stddev_samp on columns */ +export interface tournament_awards_stddev_samp_fieldsGenqlSelection{ + placement?: boolean | number + silhouette?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_samp() on columns of table "tournament_awards" */ +export interface tournament_awards_stddev_samp_order_by {placement?: (order_by | null),silhouette?: (order_by | null)} + + +/** Streaming cursor of the table "tournament_awards" */ +export interface tournament_awards_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: tournament_awards_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface tournament_awards_stream_cursor_value_input {award_id?: (Scalars['uuid'] | null),created_at?: (Scalars['timestamptz'] | null),custom_name?: (Scalars['String'] | null),id?: (Scalars['uuid'] | null),image_url?: (Scalars['String'] | null),placement?: (Scalars['Int'] | null),silhouette?: (Scalars['Int'] | null),tournament_id?: (Scalars['uuid'] | null),updated_at?: (Scalars['timestamptz'] | null)} + + +/** aggregate sum on columns */ +export interface tournament_awards_sum_fieldsGenqlSelection{ + placement?: boolean | number + silhouette?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by sum() on columns of table "tournament_awards" */ +export interface tournament_awards_sum_order_by {placement?: (order_by | null),silhouette?: (order_by | null)} + +export interface tournament_awards_updates { +/** increments the numeric columns with given value of the filtered values */ +_inc?: (tournament_awards_inc_input | null), +/** sets the columns of the filtered rows to the given values */ +_set?: (tournament_awards_set_input | null), +/** filter the rows which have to be updated */ +where: tournament_awards_bool_exp} + + +/** aggregate var_pop on columns */ +export interface tournament_awards_var_pop_fieldsGenqlSelection{ + placement?: boolean | number + silhouette?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by var_pop() on columns of table "tournament_awards" */ +export interface tournament_awards_var_pop_order_by {placement?: (order_by | null),silhouette?: (order_by | null)} + + +/** aggregate var_samp on columns */ +export interface tournament_awards_var_samp_fieldsGenqlSelection{ + placement?: boolean | number + silhouette?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by var_samp() on columns of table "tournament_awards" */ +export interface tournament_awards_var_samp_order_by {placement?: (order_by | null),silhouette?: (order_by | null)} + + +/** aggregate variance on columns */ +export interface tournament_awards_variance_fieldsGenqlSelection{ + placement?: boolean | number + silhouette?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by variance() on columns of table "tournament_awards" */ +export interface tournament_awards_variance_order_by {placement?: (order_by | null),silhouette?: (order_by | null)} + + /** columns and relationships of "tournament_brackets" */ export interface tournament_bracketsGenqlSelection{ bye?: boolean | number @@ -88981,548 +90889,60 @@ export interface tournament_teams_variance_fieldsGenqlSelection{ export interface tournament_teams_variance_order_by {captain_steam_id?: (order_by | null),owner_steam_id?: (order_by | null),seed?: (order_by | null)} -/** columns and relationships of "tournament_trophies" */ -export interface tournament_trophiesGenqlSelection{ - created_at?: boolean | number - id?: boolean | number - manual?: boolean | number - placement?: boolean | number - placement_tier?: boolean | number - /** An object relationship */ - player?: playersGenqlSelection - player_steam_id?: boolean | number - /** An object relationship */ - team?: teamsGenqlSelection - team_id?: boolean | number - /** An object relationship */ - tournament?: tournamentsGenqlSelection - tournament_id?: boolean | number - /** An object relationship */ - tournament_team?: tournament_teamsGenqlSelection - tournament_team_id?: boolean | number - /** An object relationship */ - trophy_config?: tournament_trophy_configsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregated selection of "tournament_trophies" */ -export interface tournament_trophies_aggregateGenqlSelection{ - aggregate?: tournament_trophies_aggregate_fieldsGenqlSelection - nodes?: tournament_trophiesGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - -export interface tournament_trophies_aggregate_bool_exp {bool_and?: (tournament_trophies_aggregate_bool_exp_bool_and | null),bool_or?: (tournament_trophies_aggregate_bool_exp_bool_or | null),count?: (tournament_trophies_aggregate_bool_exp_count | null)} - -export interface tournament_trophies_aggregate_bool_exp_bool_and {arguments: tournament_trophies_select_column_tournament_trophies_aggregate_bool_exp_bool_and_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (tournament_trophies_bool_exp | null),predicate: Boolean_comparison_exp} - -export interface tournament_trophies_aggregate_bool_exp_bool_or {arguments: tournament_trophies_select_column_tournament_trophies_aggregate_bool_exp_bool_or_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (tournament_trophies_bool_exp | null),predicate: Boolean_comparison_exp} - -export interface tournament_trophies_aggregate_bool_exp_count {arguments?: (tournament_trophies_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (tournament_trophies_bool_exp | null),predicate: Int_comparison_exp} - - -/** aggregate fields of "tournament_trophies" */ -export interface tournament_trophies_aggregate_fieldsGenqlSelection{ - avg?: tournament_trophies_avg_fieldsGenqlSelection - count?: { __args: {columns?: (tournament_trophies_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: tournament_trophies_max_fieldsGenqlSelection - min?: tournament_trophies_min_fieldsGenqlSelection - stddev?: tournament_trophies_stddev_fieldsGenqlSelection - stddev_pop?: tournament_trophies_stddev_pop_fieldsGenqlSelection - stddev_samp?: tournament_trophies_stddev_samp_fieldsGenqlSelection - sum?: tournament_trophies_sum_fieldsGenqlSelection - var_pop?: tournament_trophies_var_pop_fieldsGenqlSelection - var_samp?: tournament_trophies_var_samp_fieldsGenqlSelection - variance?: tournament_trophies_variance_fieldsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by aggregate values of table "tournament_trophies" */ -export interface tournament_trophies_aggregate_order_by {avg?: (tournament_trophies_avg_order_by | null),count?: (order_by | null),max?: (tournament_trophies_max_order_by | null),min?: (tournament_trophies_min_order_by | null),stddev?: (tournament_trophies_stddev_order_by | null),stddev_pop?: (tournament_trophies_stddev_pop_order_by | null),stddev_samp?: (tournament_trophies_stddev_samp_order_by | null),sum?: (tournament_trophies_sum_order_by | null),var_pop?: (tournament_trophies_var_pop_order_by | null),var_samp?: (tournament_trophies_var_samp_order_by | null),variance?: (tournament_trophies_variance_order_by | null)} - - -/** input type for inserting array relation for remote table "tournament_trophies" */ -export interface tournament_trophies_arr_rel_insert_input {data: tournament_trophies_insert_input[], -/** upsert condition */ -on_conflict?: (tournament_trophies_on_conflict | null)} - - -/** aggregate avg on columns */ -export interface tournament_trophies_avg_fieldsGenqlSelection{ - placement?: boolean | number - player_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by avg() on columns of table "tournament_trophies" */ -export interface tournament_trophies_avg_order_by {placement?: (order_by | null),player_steam_id?: (order_by | null)} - - -/** Boolean expression to filter rows from the table "tournament_trophies". All fields are combined with a logical 'AND'. */ -export interface tournament_trophies_bool_exp {_and?: (tournament_trophies_bool_exp[] | null),_not?: (tournament_trophies_bool_exp | null),_or?: (tournament_trophies_bool_exp[] | null),created_at?: (timestamptz_comparison_exp | null),id?: (uuid_comparison_exp | null),manual?: (Boolean_comparison_exp | null),placement?: (Int_comparison_exp | null),placement_tier?: (String_comparison_exp | null),player?: (players_bool_exp | null),player_steam_id?: (bigint_comparison_exp | null),team?: (teams_bool_exp | null),team_id?: (uuid_comparison_exp | null),tournament?: (tournaments_bool_exp | null),tournament_id?: (uuid_comparison_exp | null),tournament_team?: (tournament_teams_bool_exp | null),tournament_team_id?: (uuid_comparison_exp | null),trophy_config?: (tournament_trophy_configs_bool_exp | null)} - - -/** input type for incrementing numeric columns in table "tournament_trophies" */ -export interface tournament_trophies_inc_input {placement?: (Scalars['Int'] | null),player_steam_id?: (Scalars['bigint'] | null)} - - -/** input type for inserting data into table "tournament_trophies" */ -export interface tournament_trophies_insert_input {created_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),manual?: (Scalars['Boolean'] | null),placement?: (Scalars['Int'] | null),player?: (players_obj_rel_insert_input | null),player_steam_id?: (Scalars['bigint'] | null),team?: (teams_obj_rel_insert_input | null),team_id?: (Scalars['uuid'] | null),tournament?: (tournaments_obj_rel_insert_input | null),tournament_id?: (Scalars['uuid'] | null),tournament_team?: (tournament_teams_obj_rel_insert_input | null),tournament_team_id?: (Scalars['uuid'] | null),trophy_config?: (tournament_trophy_configs_obj_rel_insert_input | null)} - - -/** aggregate max on columns */ -export interface tournament_trophies_max_fieldsGenqlSelection{ - created_at?: boolean | number - id?: boolean | number - placement?: boolean | number - placement_tier?: boolean | number - player_steam_id?: boolean | number - team_id?: boolean | number - tournament_id?: boolean | number - tournament_team_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by max() on columns of table "tournament_trophies" */ -export interface tournament_trophies_max_order_by {created_at?: (order_by | null),id?: (order_by | null),placement?: (order_by | null),placement_tier?: (order_by | null),player_steam_id?: (order_by | null),team_id?: (order_by | null),tournament_id?: (order_by | null),tournament_team_id?: (order_by | null)} - - -/** aggregate min on columns */ -export interface tournament_trophies_min_fieldsGenqlSelection{ - created_at?: boolean | number - id?: boolean | number - placement?: boolean | number - placement_tier?: boolean | number - player_steam_id?: boolean | number - team_id?: boolean | number - tournament_id?: boolean | number - tournament_team_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by min() on columns of table "tournament_trophies" */ -export interface tournament_trophies_min_order_by {created_at?: (order_by | null),id?: (order_by | null),placement?: (order_by | null),placement_tier?: (order_by | null),player_steam_id?: (order_by | null),team_id?: (order_by | null),tournament_id?: (order_by | null),tournament_team_id?: (order_by | null)} - - -/** response of any mutation on the table "tournament_trophies" */ -export interface tournament_trophies_mutation_responseGenqlSelection{ - /** number of rows affected by the mutation */ - affected_rows?: boolean | number - /** data from the rows affected by the mutation */ - returning?: tournament_trophiesGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** on_conflict condition type for table "tournament_trophies" */ -export interface tournament_trophies_on_conflict {constraint: tournament_trophies_constraint,update_columns?: tournament_trophies_update_column[],where?: (tournament_trophies_bool_exp | null)} - - -/** Ordering options when selecting data from "tournament_trophies". */ -export interface tournament_trophies_order_by {created_at?: (order_by | null),id?: (order_by | null),manual?: (order_by | null),placement?: (order_by | null),placement_tier?: (order_by | null),player?: (players_order_by | null),player_steam_id?: (order_by | null),team?: (teams_order_by | null),team_id?: (order_by | null),tournament?: (tournaments_order_by | null),tournament_id?: (order_by | null),tournament_team?: (tournament_teams_order_by | null),tournament_team_id?: (order_by | null),trophy_config?: (tournament_trophy_configs_order_by | null)} - - -/** primary key columns input for table: tournament_trophies */ -export interface tournament_trophies_pk_columns_input {id: Scalars['uuid']} - - -/** input type for updating data in table "tournament_trophies" */ -export interface tournament_trophies_set_input {created_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),manual?: (Scalars['Boolean'] | null),placement?: (Scalars['Int'] | null),player_steam_id?: (Scalars['bigint'] | null),team_id?: (Scalars['uuid'] | null),tournament_id?: (Scalars['uuid'] | null),tournament_team_id?: (Scalars['uuid'] | null)} - - -/** aggregate stddev on columns */ -export interface tournament_trophies_stddev_fieldsGenqlSelection{ - placement?: boolean | number - player_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev() on columns of table "tournament_trophies" */ -export interface tournament_trophies_stddev_order_by {placement?: (order_by | null),player_steam_id?: (order_by | null)} - - -/** aggregate stddev_pop on columns */ -export interface tournament_trophies_stddev_pop_fieldsGenqlSelection{ - placement?: boolean | number - player_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev_pop() on columns of table "tournament_trophies" */ -export interface tournament_trophies_stddev_pop_order_by {placement?: (order_by | null),player_steam_id?: (order_by | null)} - - -/** aggregate stddev_samp on columns */ -export interface tournament_trophies_stddev_samp_fieldsGenqlSelection{ - placement?: boolean | number - player_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev_samp() on columns of table "tournament_trophies" */ -export interface tournament_trophies_stddev_samp_order_by {placement?: (order_by | null),player_steam_id?: (order_by | null)} - - -/** Streaming cursor of the table "tournament_trophies" */ -export interface tournament_trophies_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: tournament_trophies_stream_cursor_value_input, -/** cursor ordering */ -ordering?: (cursor_ordering | null)} - - -/** Initial value of the column from where the streaming should start */ -export interface tournament_trophies_stream_cursor_value_input {created_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),manual?: (Scalars['Boolean'] | null),placement?: (Scalars['Int'] | null),placement_tier?: (Scalars['String'] | null),player_steam_id?: (Scalars['bigint'] | null),team_id?: (Scalars['uuid'] | null),tournament_id?: (Scalars['uuid'] | null),tournament_team_id?: (Scalars['uuid'] | null)} - - -/** aggregate sum on columns */ -export interface tournament_trophies_sum_fieldsGenqlSelection{ - placement?: boolean | number - player_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by sum() on columns of table "tournament_trophies" */ -export interface tournament_trophies_sum_order_by {placement?: (order_by | null),player_steam_id?: (order_by | null)} - -export interface tournament_trophies_updates { -/** increments the numeric columns with given value of the filtered values */ -_inc?: (tournament_trophies_inc_input | null), -/** sets the columns of the filtered rows to the given values */ -_set?: (tournament_trophies_set_input | null), -/** filter the rows which have to be updated */ -where: tournament_trophies_bool_exp} - - -/** aggregate var_pop on columns */ -export interface tournament_trophies_var_pop_fieldsGenqlSelection{ - placement?: boolean | number - player_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by var_pop() on columns of table "tournament_trophies" */ -export interface tournament_trophies_var_pop_order_by {placement?: (order_by | null),player_steam_id?: (order_by | null)} - - -/** aggregate var_samp on columns */ -export interface tournament_trophies_var_samp_fieldsGenqlSelection{ - placement?: boolean | number - player_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by var_samp() on columns of table "tournament_trophies" */ -export interface tournament_trophies_var_samp_order_by {placement?: (order_by | null),player_steam_id?: (order_by | null)} - - -/** aggregate variance on columns */ -export interface tournament_trophies_variance_fieldsGenqlSelection{ - placement?: boolean | number - player_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by variance() on columns of table "tournament_trophies" */ -export interface tournament_trophies_variance_order_by {placement?: (order_by | null),player_steam_id?: (order_by | null)} - - -/** columns and relationships of "tournament_trophy_configs" */ -export interface tournament_trophy_configsGenqlSelection{ - created_at?: boolean | number - custom_name?: boolean | number - id?: boolean | number - image_url?: boolean | number - placement?: boolean | number - silhouette?: boolean | number - /** An object relationship */ - tournament?: tournamentsGenqlSelection - tournament_id?: boolean | number - updated_at?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregated selection of "tournament_trophy_configs" */ -export interface tournament_trophy_configs_aggregateGenqlSelection{ - aggregate?: tournament_trophy_configs_aggregate_fieldsGenqlSelection - nodes?: tournament_trophy_configsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - -export interface tournament_trophy_configs_aggregate_bool_exp {count?: (tournament_trophy_configs_aggregate_bool_exp_count | null)} - -export interface tournament_trophy_configs_aggregate_bool_exp_count {arguments?: (tournament_trophy_configs_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (tournament_trophy_configs_bool_exp | null),predicate: Int_comparison_exp} - - -/** aggregate fields of "tournament_trophy_configs" */ -export interface tournament_trophy_configs_aggregate_fieldsGenqlSelection{ - avg?: tournament_trophy_configs_avg_fieldsGenqlSelection - count?: { __args: {columns?: (tournament_trophy_configs_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: tournament_trophy_configs_max_fieldsGenqlSelection - min?: tournament_trophy_configs_min_fieldsGenqlSelection - stddev?: tournament_trophy_configs_stddev_fieldsGenqlSelection - stddev_pop?: tournament_trophy_configs_stddev_pop_fieldsGenqlSelection - stddev_samp?: tournament_trophy_configs_stddev_samp_fieldsGenqlSelection - sum?: tournament_trophy_configs_sum_fieldsGenqlSelection - var_pop?: tournament_trophy_configs_var_pop_fieldsGenqlSelection - var_samp?: tournament_trophy_configs_var_samp_fieldsGenqlSelection - variance?: tournament_trophy_configs_variance_fieldsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by aggregate values of table "tournament_trophy_configs" */ -export interface tournament_trophy_configs_aggregate_order_by {avg?: (tournament_trophy_configs_avg_order_by | null),count?: (order_by | null),max?: (tournament_trophy_configs_max_order_by | null),min?: (tournament_trophy_configs_min_order_by | null),stddev?: (tournament_trophy_configs_stddev_order_by | null),stddev_pop?: (tournament_trophy_configs_stddev_pop_order_by | null),stddev_samp?: (tournament_trophy_configs_stddev_samp_order_by | null),sum?: (tournament_trophy_configs_sum_order_by | null),var_pop?: (tournament_trophy_configs_var_pop_order_by | null),var_samp?: (tournament_trophy_configs_var_samp_order_by | null),variance?: (tournament_trophy_configs_variance_order_by | null)} - - -/** input type for inserting array relation for remote table "tournament_trophy_configs" */ -export interface tournament_trophy_configs_arr_rel_insert_input {data: tournament_trophy_configs_insert_input[], -/** upsert condition */ -on_conflict?: (tournament_trophy_configs_on_conflict | null)} - - -/** aggregate avg on columns */ -export interface tournament_trophy_configs_avg_fieldsGenqlSelection{ - placement?: boolean | number - silhouette?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by avg() on columns of table "tournament_trophy_configs" */ -export interface tournament_trophy_configs_avg_order_by {placement?: (order_by | null),silhouette?: (order_by | null)} - - -/** Boolean expression to filter rows from the table "tournament_trophy_configs". All fields are combined with a logical 'AND'. */ -export interface tournament_trophy_configs_bool_exp {_and?: (tournament_trophy_configs_bool_exp[] | null),_not?: (tournament_trophy_configs_bool_exp | null),_or?: (tournament_trophy_configs_bool_exp[] | null),created_at?: (timestamptz_comparison_exp | null),custom_name?: (String_comparison_exp | null),id?: (uuid_comparison_exp | null),image_url?: (String_comparison_exp | null),placement?: (Int_comparison_exp | null),silhouette?: (Int_comparison_exp | null),tournament?: (tournaments_bool_exp | null),tournament_id?: (uuid_comparison_exp | null),updated_at?: (timestamptz_comparison_exp | null)} - - -/** input type for incrementing numeric columns in table "tournament_trophy_configs" */ -export interface tournament_trophy_configs_inc_input {placement?: (Scalars['Int'] | null),silhouette?: (Scalars['Int'] | null)} - - -/** input type for inserting data into table "tournament_trophy_configs" */ -export interface tournament_trophy_configs_insert_input {created_at?: (Scalars['timestamptz'] | null),custom_name?: (Scalars['String'] | null),id?: (Scalars['uuid'] | null),image_url?: (Scalars['String'] | null),placement?: (Scalars['Int'] | null),silhouette?: (Scalars['Int'] | null),tournament?: (tournaments_obj_rel_insert_input | null),tournament_id?: (Scalars['uuid'] | null),updated_at?: (Scalars['timestamptz'] | null)} - - -/** aggregate max on columns */ -export interface tournament_trophy_configs_max_fieldsGenqlSelection{ - created_at?: boolean | number - custom_name?: boolean | number - id?: boolean | number - image_url?: boolean | number - placement?: boolean | number - silhouette?: boolean | number - tournament_id?: boolean | number - updated_at?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by max() on columns of table "tournament_trophy_configs" */ -export interface tournament_trophy_configs_max_order_by {created_at?: (order_by | null),custom_name?: (order_by | null),id?: (order_by | null),image_url?: (order_by | null),placement?: (order_by | null),silhouette?: (order_by | null),tournament_id?: (order_by | null),updated_at?: (order_by | null)} - - -/** aggregate min on columns */ -export interface tournament_trophy_configs_min_fieldsGenqlSelection{ - created_at?: boolean | number - custom_name?: boolean | number - id?: boolean | number - image_url?: boolean | number - placement?: boolean | number - silhouette?: boolean | number - tournament_id?: boolean | number - updated_at?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by min() on columns of table "tournament_trophy_configs" */ -export interface tournament_trophy_configs_min_order_by {created_at?: (order_by | null),custom_name?: (order_by | null),id?: (order_by | null),image_url?: (order_by | null),placement?: (order_by | null),silhouette?: (order_by | null),tournament_id?: (order_by | null),updated_at?: (order_by | null)} - - -/** response of any mutation on the table "tournament_trophy_configs" */ -export interface tournament_trophy_configs_mutation_responseGenqlSelection{ - /** number of rows affected by the mutation */ - affected_rows?: boolean | number - /** data from the rows affected by the mutation */ - returning?: tournament_trophy_configsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** input type for inserting object relation for remote table "tournament_trophy_configs" */ -export interface tournament_trophy_configs_obj_rel_insert_input {data: tournament_trophy_configs_insert_input, -/** upsert condition */ -on_conflict?: (tournament_trophy_configs_on_conflict | null)} - - -/** on_conflict condition type for table "tournament_trophy_configs" */ -export interface tournament_trophy_configs_on_conflict {constraint: tournament_trophy_configs_constraint,update_columns?: tournament_trophy_configs_update_column[],where?: (tournament_trophy_configs_bool_exp | null)} - - -/** Ordering options when selecting data from "tournament_trophy_configs". */ -export interface tournament_trophy_configs_order_by {created_at?: (order_by | null),custom_name?: (order_by | null),id?: (order_by | null),image_url?: (order_by | null),placement?: (order_by | null),silhouette?: (order_by | null),tournament?: (tournaments_order_by | null),tournament_id?: (order_by | null),updated_at?: (order_by | null)} - - -/** primary key columns input for table: tournament_trophy_configs */ -export interface tournament_trophy_configs_pk_columns_input {id: Scalars['uuid']} - - -/** input type for updating data in table "tournament_trophy_configs" */ -export interface tournament_trophy_configs_set_input {created_at?: (Scalars['timestamptz'] | null),custom_name?: (Scalars['String'] | null),id?: (Scalars['uuid'] | null),image_url?: (Scalars['String'] | null),placement?: (Scalars['Int'] | null),silhouette?: (Scalars['Int'] | null),tournament_id?: (Scalars['uuid'] | null),updated_at?: (Scalars['timestamptz'] | null)} - - -/** aggregate stddev on columns */ -export interface tournament_trophy_configs_stddev_fieldsGenqlSelection{ - placement?: boolean | number - silhouette?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev() on columns of table "tournament_trophy_configs" */ -export interface tournament_trophy_configs_stddev_order_by {placement?: (order_by | null),silhouette?: (order_by | null)} - - -/** aggregate stddev_pop on columns */ -export interface tournament_trophy_configs_stddev_pop_fieldsGenqlSelection{ - placement?: boolean | number - silhouette?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev_pop() on columns of table "tournament_trophy_configs" */ -export interface tournament_trophy_configs_stddev_pop_order_by {placement?: (order_by | null),silhouette?: (order_by | null)} - - -/** aggregate stddev_samp on columns */ -export interface tournament_trophy_configs_stddev_samp_fieldsGenqlSelection{ - placement?: boolean | number - silhouette?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev_samp() on columns of table "tournament_trophy_configs" */ -export interface tournament_trophy_configs_stddev_samp_order_by {placement?: (order_by | null),silhouette?: (order_by | null)} - - -/** Streaming cursor of the table "tournament_trophy_configs" */ -export interface tournament_trophy_configs_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: tournament_trophy_configs_stream_cursor_value_input, -/** cursor ordering */ -ordering?: (cursor_ordering | null)} - - -/** Initial value of the column from where the streaming should start */ -export interface tournament_trophy_configs_stream_cursor_value_input {created_at?: (Scalars['timestamptz'] | null),custom_name?: (Scalars['String'] | null),id?: (Scalars['uuid'] | null),image_url?: (Scalars['String'] | null),placement?: (Scalars['Int'] | null),silhouette?: (Scalars['Int'] | null),tournament_id?: (Scalars['uuid'] | null),updated_at?: (Scalars['timestamptz'] | null)} - - -/** aggregate sum on columns */ -export interface tournament_trophy_configs_sum_fieldsGenqlSelection{ - placement?: boolean | number - silhouette?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by sum() on columns of table "tournament_trophy_configs" */ -export interface tournament_trophy_configs_sum_order_by {placement?: (order_by | null),silhouette?: (order_by | null)} - -export interface tournament_trophy_configs_updates { -/** increments the numeric columns with given value of the filtered values */ -_inc?: (tournament_trophy_configs_inc_input | null), -/** sets the columns of the filtered rows to the given values */ -_set?: (tournament_trophy_configs_set_input | null), -/** filter the rows which have to be updated */ -where: tournament_trophy_configs_bool_exp} - - -/** aggregate var_pop on columns */ -export interface tournament_trophy_configs_var_pop_fieldsGenqlSelection{ - placement?: boolean | number - silhouette?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by var_pop() on columns of table "tournament_trophy_configs" */ -export interface tournament_trophy_configs_var_pop_order_by {placement?: (order_by | null),silhouette?: (order_by | null)} - - -/** aggregate var_samp on columns */ -export interface tournament_trophy_configs_var_samp_fieldsGenqlSelection{ - placement?: boolean | number - silhouette?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by var_samp() on columns of table "tournament_trophy_configs" */ -export interface tournament_trophy_configs_var_samp_order_by {placement?: (order_by | null),silhouette?: (order_by | null)} - - -/** aggregate variance on columns */ -export interface tournament_trophy_configs_variance_fieldsGenqlSelection{ - placement?: boolean | number - silhouette?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by variance() on columns of table "tournament_trophy_configs" */ -export interface tournament_trophy_configs_variance_order_by {placement?: (order_by | null),silhouette?: (order_by | null)} - - /** columns and relationships of "tournaments" */ export interface tournamentsGenqlSelection{ /** An object relationship */ admin?: playersGenqlSelection auto_start?: boolean | number + /** An array relationship */ + award_configs?: (tournament_awardsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (tournament_awards_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?: (tournament_awards_order_by[] | null), + /** filter the rows returned */ + where?: (tournament_awards_bool_exp | null)} }) + /** An aggregate relationship */ + award_configs_aggregate?: (tournament_awards_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (tournament_awards_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?: (tournament_awards_order_by[] | null), + /** filter the rows returned */ + where?: (tournament_awards_bool_exp | null)} }) + /** An array relationship */ + awards?: (award_recipientsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (award_recipients_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?: (award_recipients_order_by[] | null), + /** filter the rows returned */ + where?: (award_recipients_bool_exp | null)} }) + /** An aggregate relationship */ + awards_aggregate?: (award_recipients_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (award_recipients_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?: (award_recipients_order_by[] | null), + /** filter the rows returned */ + where?: (award_recipients_bool_exp | null)} }) + awards_enabled?: boolean | number banner?: boolean | number /** A computed field, executes function "can_cancel_tournament" */ can_cancel?: boolean | number @@ -89804,55 +91224,6 @@ export interface tournamentsGenqlSelection{ order_by?: (tournament_teams_order_by[] | null), /** filter the rows returned */ where?: (tournament_teams_bool_exp | null)} }) - /** An array relationship */ - trophies?: (tournament_trophiesGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (tournament_trophies_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?: (tournament_trophies_order_by[] | null), - /** filter the rows returned */ - where?: (tournament_trophies_bool_exp | null)} }) - /** An aggregate relationship */ - trophies_aggregate?: (tournament_trophies_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (tournament_trophies_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?: (tournament_trophies_order_by[] | null), - /** filter the rows returned */ - where?: (tournament_trophies_bool_exp | null)} }) - trophies_enabled?: boolean | number - /** An array relationship */ - trophy_configs?: (tournament_trophy_configsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (tournament_trophy_configs_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?: (tournament_trophy_configs_order_by[] | null), - /** filter the rows returned */ - where?: (tournament_trophy_configs_bool_exp | null)} }) - /** An aggregate relationship */ - trophy_configs_aggregate?: (tournament_trophy_configs_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (tournament_trophy_configs_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?: (tournament_trophy_configs_order_by[] | null), - /** filter the rows returned */ - where?: (tournament_trophy_configs_bool_exp | null)} }) __typename?: boolean | number __scalar?: boolean | number } @@ -89942,7 +91313,7 @@ export interface tournaments_avg_order_by {latitude?: (order_by | null),longitud /** Boolean expression to filter rows from the table "tournaments". All fields are combined with a logical 'AND'. */ -export interface tournaments_bool_exp {_and?: (tournaments_bool_exp[] | null),_not?: (tournaments_bool_exp | null),_or?: (tournaments_bool_exp[] | null),admin?: (players_bool_exp | null),auto_start?: (Boolean_comparison_exp | null),banner?: (String_comparison_exp | null),can_cancel?: (Boolean_comparison_exp | null),can_close_registration?: (Boolean_comparison_exp | null),can_join?: (Boolean_comparison_exp | null),can_open_registration?: (Boolean_comparison_exp | null),can_pause?: (Boolean_comparison_exp | null),can_resume?: (Boolean_comparison_exp | null),can_setup?: (Boolean_comparison_exp | null),can_start?: (Boolean_comparison_exp | null),categories?: (tournament_categories_bool_exp | null),categories_aggregate?: (tournament_categories_aggregate_bool_exp | null),created_at?: (timestamptz_comparison_exp | null),description?: (String_comparison_exp | null),discord_guild_id?: (String_comparison_exp | null),discord_notifications_enabled?: (Boolean_comparison_exp | null),discord_notify_Canceled?: (Boolean_comparison_exp | null),discord_notify_Finished?: (Boolean_comparison_exp | null),discord_notify_Forfeit?: (Boolean_comparison_exp | null),discord_notify_Live?: (Boolean_comparison_exp | null),discord_notify_MapPaused?: (Boolean_comparison_exp | null),discord_notify_PickingPlayers?: (Boolean_comparison_exp | null),discord_notify_Scheduled?: (Boolean_comparison_exp | null),discord_notify_Surrendered?: (Boolean_comparison_exp | null),discord_notify_Tie?: (Boolean_comparison_exp | null),discord_notify_Veto?: (Boolean_comparison_exp | null),discord_notify_WaitingForCheckIn?: (Boolean_comparison_exp | null),discord_notify_WaitingForServer?: (Boolean_comparison_exp | null),discord_role_id?: (String_comparison_exp | null),discord_voice_enabled?: (Boolean_comparison_exp | null),discord_webhook?: (String_comparison_exp | null),e_tournament_status?: (e_tournament_status_bool_exp | null),has_min_teams?: (Boolean_comparison_exp | null),homepage?: (String_comparison_exp | null),id?: (uuid_comparison_exp | null),is_league?: (Boolean_comparison_exp | null),is_organizer?: (Boolean_comparison_exp | null),joined_tournament?: (Boolean_comparison_exp | null),latitude?: (float8_comparison_exp | null),league_season_division?: (league_season_divisions_bool_exp | null),location?: (String_comparison_exp | null),logo?: (String_comparison_exp | null),longitude?: (float8_comparison_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),name?: (String_comparison_exp | null),options?: (match_options_bool_exp | null),organizer_steam_id?: (bigint_comparison_exp | null),organizer_teams?: (tournament_organizer_teams_bool_exp | null),organizer_teams_aggregate?: (tournament_organizer_teams_aggregate_bool_exp | null),organizers?: (tournament_organizers_bool_exp | null),organizers_aggregate?: (tournament_organizers_aggregate_bool_exp | null),player_stats?: (v_tournament_player_stats_bool_exp | null),player_stats_aggregate?: (v_tournament_player_stats_aggregate_bool_exp | null),prizes?: (tournament_prizes_bool_exp | null),prizes_aggregate?: (tournament_prizes_aggregate_bool_exp | null),results?: (v_team_tournament_results_bool_exp | null),results_aggregate?: (v_team_tournament_results_aggregate_bool_exp | null),rosters?: (tournament_team_roster_bool_exp | null),rosters_aggregate?: (tournament_team_roster_aggregate_bool_exp | null),scheduling_mode?: (String_comparison_exp | null),stages?: (tournament_stages_bool_exp | null),stages_aggregate?: (tournament_stages_aggregate_bool_exp | null),start?: (timestamptz_comparison_exp | null),status?: (e_tournament_status_enum_comparison_exp | null),teams?: (tournament_teams_bool_exp | null),teams_aggregate?: (tournament_teams_aggregate_bool_exp | null),trophies?: (tournament_trophies_bool_exp | null),trophies_aggregate?: (tournament_trophies_aggregate_bool_exp | null),trophies_enabled?: (Boolean_comparison_exp | null),trophy_configs?: (tournament_trophy_configs_bool_exp | null),trophy_configs_aggregate?: (tournament_trophy_configs_aggregate_bool_exp | null)} +export interface tournaments_bool_exp {_and?: (tournaments_bool_exp[] | null),_not?: (tournaments_bool_exp | null),_or?: (tournaments_bool_exp[] | null),admin?: (players_bool_exp | null),auto_start?: (Boolean_comparison_exp | null),award_configs?: (tournament_awards_bool_exp | null),award_configs_aggregate?: (tournament_awards_aggregate_bool_exp | null),awards?: (award_recipients_bool_exp | null),awards_aggregate?: (award_recipients_aggregate_bool_exp | null),awards_enabled?: (Boolean_comparison_exp | null),banner?: (String_comparison_exp | null),can_cancel?: (Boolean_comparison_exp | null),can_close_registration?: (Boolean_comparison_exp | null),can_join?: (Boolean_comparison_exp | null),can_open_registration?: (Boolean_comparison_exp | null),can_pause?: (Boolean_comparison_exp | null),can_resume?: (Boolean_comparison_exp | null),can_setup?: (Boolean_comparison_exp | null),can_start?: (Boolean_comparison_exp | null),categories?: (tournament_categories_bool_exp | null),categories_aggregate?: (tournament_categories_aggregate_bool_exp | null),created_at?: (timestamptz_comparison_exp | null),description?: (String_comparison_exp | null),discord_guild_id?: (String_comparison_exp | null),discord_notifications_enabled?: (Boolean_comparison_exp | null),discord_notify_Canceled?: (Boolean_comparison_exp | null),discord_notify_Finished?: (Boolean_comparison_exp | null),discord_notify_Forfeit?: (Boolean_comparison_exp | null),discord_notify_Live?: (Boolean_comparison_exp | null),discord_notify_MapPaused?: (Boolean_comparison_exp | null),discord_notify_PickingPlayers?: (Boolean_comparison_exp | null),discord_notify_Scheduled?: (Boolean_comparison_exp | null),discord_notify_Surrendered?: (Boolean_comparison_exp | null),discord_notify_Tie?: (Boolean_comparison_exp | null),discord_notify_Veto?: (Boolean_comparison_exp | null),discord_notify_WaitingForCheckIn?: (Boolean_comparison_exp | null),discord_notify_WaitingForServer?: (Boolean_comparison_exp | null),discord_role_id?: (String_comparison_exp | null),discord_voice_enabled?: (Boolean_comparison_exp | null),discord_webhook?: (String_comparison_exp | null),e_tournament_status?: (e_tournament_status_bool_exp | null),has_min_teams?: (Boolean_comparison_exp | null),homepage?: (String_comparison_exp | null),id?: (uuid_comparison_exp | null),is_league?: (Boolean_comparison_exp | null),is_organizer?: (Boolean_comparison_exp | null),joined_tournament?: (Boolean_comparison_exp | null),latitude?: (float8_comparison_exp | null),league_season_division?: (league_season_divisions_bool_exp | null),location?: (String_comparison_exp | null),logo?: (String_comparison_exp | null),longitude?: (float8_comparison_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),name?: (String_comparison_exp | null),options?: (match_options_bool_exp | null),organizer_steam_id?: (bigint_comparison_exp | null),organizer_teams?: (tournament_organizer_teams_bool_exp | null),organizer_teams_aggregate?: (tournament_organizer_teams_aggregate_bool_exp | null),organizers?: (tournament_organizers_bool_exp | null),organizers_aggregate?: (tournament_organizers_aggregate_bool_exp | null),player_stats?: (v_tournament_player_stats_bool_exp | null),player_stats_aggregate?: (v_tournament_player_stats_aggregate_bool_exp | null),prizes?: (tournament_prizes_bool_exp | null),prizes_aggregate?: (tournament_prizes_aggregate_bool_exp | null),results?: (v_team_tournament_results_bool_exp | null),results_aggregate?: (v_team_tournament_results_aggregate_bool_exp | null),rosters?: (tournament_team_roster_bool_exp | null),rosters_aggregate?: (tournament_team_roster_aggregate_bool_exp | null),scheduling_mode?: (String_comparison_exp | null),stages?: (tournament_stages_bool_exp | null),stages_aggregate?: (tournament_stages_aggregate_bool_exp | null),start?: (timestamptz_comparison_exp | null),status?: (e_tournament_status_enum_comparison_exp | null),teams?: (tournament_teams_bool_exp | null),teams_aggregate?: (tournament_teams_aggregate_bool_exp | null)} /** input type for incrementing numeric columns in table "tournaments" */ @@ -89950,7 +91321,7 @@ export interface tournaments_inc_input {latitude?: (Scalars['float8'] | null),lo /** input type for inserting data into table "tournaments" */ -export interface tournaments_insert_input {admin?: (players_obj_rel_insert_input | null),auto_start?: (Scalars['Boolean'] | null),banner?: (Scalars['String'] | null),categories?: (tournament_categories_arr_rel_insert_input | null),created_at?: (Scalars['timestamptz'] | null),description?: (Scalars['String'] | null),discord_guild_id?: (Scalars['String'] | null),discord_notifications_enabled?: (Scalars['Boolean'] | null),discord_notify_Canceled?: (Scalars['Boolean'] | null),discord_notify_Finished?: (Scalars['Boolean'] | null),discord_notify_Forfeit?: (Scalars['Boolean'] | null),discord_notify_Live?: (Scalars['Boolean'] | null),discord_notify_MapPaused?: (Scalars['Boolean'] | null),discord_notify_PickingPlayers?: (Scalars['Boolean'] | null),discord_notify_Scheduled?: (Scalars['Boolean'] | null),discord_notify_Surrendered?: (Scalars['Boolean'] | null),discord_notify_Tie?: (Scalars['Boolean'] | null),discord_notify_Veto?: (Scalars['Boolean'] | null),discord_notify_WaitingForCheckIn?: (Scalars['Boolean'] | null),discord_notify_WaitingForServer?: (Scalars['Boolean'] | null),discord_role_id?: (Scalars['String'] | null),discord_voice_enabled?: (Scalars['Boolean'] | null),discord_webhook?: (Scalars['String'] | null),e_tournament_status?: (e_tournament_status_obj_rel_insert_input | null),homepage?: (Scalars['String'] | null),id?: (Scalars['uuid'] | null),is_league?: (Scalars['Boolean'] | null),latitude?: (Scalars['float8'] | null),league_season_division?: (league_season_divisions_obj_rel_insert_input | null),location?: (Scalars['String'] | null),logo?: (Scalars['String'] | null),longitude?: (Scalars['float8'] | null),match_options_id?: (Scalars['uuid'] | null),name?: (Scalars['String'] | null),options?: (match_options_obj_rel_insert_input | null),organizer_steam_id?: (Scalars['bigint'] | null),organizer_teams?: (tournament_organizer_teams_arr_rel_insert_input | null),organizers?: (tournament_organizers_arr_rel_insert_input | null),player_stats?: (v_tournament_player_stats_arr_rel_insert_input | null),prizes?: (tournament_prizes_arr_rel_insert_input | null),results?: (v_team_tournament_results_arr_rel_insert_input | null),rosters?: (tournament_team_roster_arr_rel_insert_input | null),scheduling_mode?: (Scalars['String'] | null),stages?: (tournament_stages_arr_rel_insert_input | null),start?: (Scalars['timestamptz'] | null),status?: (e_tournament_status_enum | null),teams?: (tournament_teams_arr_rel_insert_input | null),trophies?: (tournament_trophies_arr_rel_insert_input | null),trophies_enabled?: (Scalars['Boolean'] | null),trophy_configs?: (tournament_trophy_configs_arr_rel_insert_input | null)} +export interface tournaments_insert_input {admin?: (players_obj_rel_insert_input | null),auto_start?: (Scalars['Boolean'] | null),award_configs?: (tournament_awards_arr_rel_insert_input | null),awards?: (award_recipients_arr_rel_insert_input | null),awards_enabled?: (Scalars['Boolean'] | null),banner?: (Scalars['String'] | null),categories?: (tournament_categories_arr_rel_insert_input | null),created_at?: (Scalars['timestamptz'] | null),description?: (Scalars['String'] | null),discord_guild_id?: (Scalars['String'] | null),discord_notifications_enabled?: (Scalars['Boolean'] | null),discord_notify_Canceled?: (Scalars['Boolean'] | null),discord_notify_Finished?: (Scalars['Boolean'] | null),discord_notify_Forfeit?: (Scalars['Boolean'] | null),discord_notify_Live?: (Scalars['Boolean'] | null),discord_notify_MapPaused?: (Scalars['Boolean'] | null),discord_notify_PickingPlayers?: (Scalars['Boolean'] | null),discord_notify_Scheduled?: (Scalars['Boolean'] | null),discord_notify_Surrendered?: (Scalars['Boolean'] | null),discord_notify_Tie?: (Scalars['Boolean'] | null),discord_notify_Veto?: (Scalars['Boolean'] | null),discord_notify_WaitingForCheckIn?: (Scalars['Boolean'] | null),discord_notify_WaitingForServer?: (Scalars['Boolean'] | null),discord_role_id?: (Scalars['String'] | null),discord_voice_enabled?: (Scalars['Boolean'] | null),discord_webhook?: (Scalars['String'] | null),e_tournament_status?: (e_tournament_status_obj_rel_insert_input | null),homepage?: (Scalars['String'] | null),id?: (Scalars['uuid'] | null),is_league?: (Scalars['Boolean'] | null),latitude?: (Scalars['float8'] | null),league_season_division?: (league_season_divisions_obj_rel_insert_input | null),location?: (Scalars['String'] | null),logo?: (Scalars['String'] | null),longitude?: (Scalars['float8'] | null),match_options_id?: (Scalars['uuid'] | null),name?: (Scalars['String'] | null),options?: (match_options_obj_rel_insert_input | null),organizer_steam_id?: (Scalars['bigint'] | null),organizer_teams?: (tournament_organizer_teams_arr_rel_insert_input | null),organizers?: (tournament_organizers_arr_rel_insert_input | null),player_stats?: (v_tournament_player_stats_arr_rel_insert_input | null),prizes?: (tournament_prizes_arr_rel_insert_input | null),results?: (v_team_tournament_results_arr_rel_insert_input | null),rosters?: (tournament_team_roster_arr_rel_insert_input | null),scheduling_mode?: (Scalars['String'] | null),stages?: (tournament_stages_arr_rel_insert_input | null),start?: (Scalars['timestamptz'] | null),status?: (e_tournament_status_enum | null),teams?: (tournament_teams_arr_rel_insert_input | null)} /** aggregate max on columns */ @@ -90039,7 +91410,7 @@ export interface tournaments_on_conflict {constraint: tournaments_constraint,upd /** Ordering options when selecting data from "tournaments". */ -export interface tournaments_order_by {admin?: (players_order_by | null),auto_start?: (order_by | null),banner?: (order_by | null),can_cancel?: (order_by | null),can_close_registration?: (order_by | null),can_join?: (order_by | null),can_open_registration?: (order_by | null),can_pause?: (order_by | null),can_resume?: (order_by | null),can_setup?: (order_by | null),can_start?: (order_by | null),categories_aggregate?: (tournament_categories_aggregate_order_by | null),created_at?: (order_by | null),description?: (order_by | null),discord_guild_id?: (order_by | null),discord_notifications_enabled?: (order_by | null),discord_notify_Canceled?: (order_by | null),discord_notify_Finished?: (order_by | null),discord_notify_Forfeit?: (order_by | null),discord_notify_Live?: (order_by | null),discord_notify_MapPaused?: (order_by | null),discord_notify_PickingPlayers?: (order_by | null),discord_notify_Scheduled?: (order_by | null),discord_notify_Surrendered?: (order_by | null),discord_notify_Tie?: (order_by | null),discord_notify_Veto?: (order_by | null),discord_notify_WaitingForCheckIn?: (order_by | null),discord_notify_WaitingForServer?: (order_by | null),discord_role_id?: (order_by | null),discord_voice_enabled?: (order_by | null),discord_webhook?: (order_by | null),e_tournament_status?: (e_tournament_status_order_by | null),has_min_teams?: (order_by | null),homepage?: (order_by | null),id?: (order_by | null),is_league?: (order_by | null),is_organizer?: (order_by | null),joined_tournament?: (order_by | null),latitude?: (order_by | null),league_season_division?: (league_season_divisions_order_by | null),location?: (order_by | null),logo?: (order_by | null),longitude?: (order_by | null),match_options_id?: (order_by | null),max_players_per_lineup?: (order_by | null),min_players_per_lineup?: (order_by | null),name?: (order_by | null),options?: (match_options_order_by | null),organizer_steam_id?: (order_by | null),organizer_teams_aggregate?: (tournament_organizer_teams_aggregate_order_by | null),organizers_aggregate?: (tournament_organizers_aggregate_order_by | null),player_stats_aggregate?: (v_tournament_player_stats_aggregate_order_by | null),prizes_aggregate?: (tournament_prizes_aggregate_order_by | null),results_aggregate?: (v_team_tournament_results_aggregate_order_by | null),rosters_aggregate?: (tournament_team_roster_aggregate_order_by | null),scheduling_mode?: (order_by | null),stages_aggregate?: (tournament_stages_aggregate_order_by | null),start?: (order_by | null),status?: (order_by | null),teams_aggregate?: (tournament_teams_aggregate_order_by | null),trophies_aggregate?: (tournament_trophies_aggregate_order_by | null),trophies_enabled?: (order_by | null),trophy_configs_aggregate?: (tournament_trophy_configs_aggregate_order_by | null)} +export interface tournaments_order_by {admin?: (players_order_by | null),auto_start?: (order_by | null),award_configs_aggregate?: (tournament_awards_aggregate_order_by | null),awards_aggregate?: (award_recipients_aggregate_order_by | null),awards_enabled?: (order_by | null),banner?: (order_by | null),can_cancel?: (order_by | null),can_close_registration?: (order_by | null),can_join?: (order_by | null),can_open_registration?: (order_by | null),can_pause?: (order_by | null),can_resume?: (order_by | null),can_setup?: (order_by | null),can_start?: (order_by | null),categories_aggregate?: (tournament_categories_aggregate_order_by | null),created_at?: (order_by | null),description?: (order_by | null),discord_guild_id?: (order_by | null),discord_notifications_enabled?: (order_by | null),discord_notify_Canceled?: (order_by | null),discord_notify_Finished?: (order_by | null),discord_notify_Forfeit?: (order_by | null),discord_notify_Live?: (order_by | null),discord_notify_MapPaused?: (order_by | null),discord_notify_PickingPlayers?: (order_by | null),discord_notify_Scheduled?: (order_by | null),discord_notify_Surrendered?: (order_by | null),discord_notify_Tie?: (order_by | null),discord_notify_Veto?: (order_by | null),discord_notify_WaitingForCheckIn?: (order_by | null),discord_notify_WaitingForServer?: (order_by | null),discord_role_id?: (order_by | null),discord_voice_enabled?: (order_by | null),discord_webhook?: (order_by | null),e_tournament_status?: (e_tournament_status_order_by | null),has_min_teams?: (order_by | null),homepage?: (order_by | null),id?: (order_by | null),is_league?: (order_by | null),is_organizer?: (order_by | null),joined_tournament?: (order_by | null),latitude?: (order_by | null),league_season_division?: (league_season_divisions_order_by | null),location?: (order_by | null),logo?: (order_by | null),longitude?: (order_by | null),match_options_id?: (order_by | null),max_players_per_lineup?: (order_by | null),min_players_per_lineup?: (order_by | null),name?: (order_by | null),options?: (match_options_order_by | null),organizer_steam_id?: (order_by | null),organizer_teams_aggregate?: (tournament_organizer_teams_aggregate_order_by | null),organizers_aggregate?: (tournament_organizers_aggregate_order_by | null),player_stats_aggregate?: (v_tournament_player_stats_aggregate_order_by | null),prizes_aggregate?: (tournament_prizes_aggregate_order_by | null),results_aggregate?: (v_team_tournament_results_aggregate_order_by | null),rosters_aggregate?: (tournament_team_roster_aggregate_order_by | null),scheduling_mode?: (order_by | null),stages_aggregate?: (tournament_stages_aggregate_order_by | null),start?: (order_by | null),status?: (order_by | null),teams_aggregate?: (tournament_teams_aggregate_order_by | null)} /** primary key columns input for table: tournaments */ @@ -90047,7 +91418,7 @@ export interface tournaments_pk_columns_input {id: Scalars['uuid']} /** input type for updating data in table "tournaments" */ -export interface tournaments_set_input {auto_start?: (Scalars['Boolean'] | null),banner?: (Scalars['String'] | null),created_at?: (Scalars['timestamptz'] | null),description?: (Scalars['String'] | null),discord_guild_id?: (Scalars['String'] | null),discord_notifications_enabled?: (Scalars['Boolean'] | null),discord_notify_Canceled?: (Scalars['Boolean'] | null),discord_notify_Finished?: (Scalars['Boolean'] | null),discord_notify_Forfeit?: (Scalars['Boolean'] | null),discord_notify_Live?: (Scalars['Boolean'] | null),discord_notify_MapPaused?: (Scalars['Boolean'] | null),discord_notify_PickingPlayers?: (Scalars['Boolean'] | null),discord_notify_Scheduled?: (Scalars['Boolean'] | null),discord_notify_Surrendered?: (Scalars['Boolean'] | null),discord_notify_Tie?: (Scalars['Boolean'] | null),discord_notify_Veto?: (Scalars['Boolean'] | null),discord_notify_WaitingForCheckIn?: (Scalars['Boolean'] | null),discord_notify_WaitingForServer?: (Scalars['Boolean'] | null),discord_role_id?: (Scalars['String'] | null),discord_voice_enabled?: (Scalars['Boolean'] | null),discord_webhook?: (Scalars['String'] | null),homepage?: (Scalars['String'] | null),id?: (Scalars['uuid'] | null),is_league?: (Scalars['Boolean'] | null),latitude?: (Scalars['float8'] | null),location?: (Scalars['String'] | null),logo?: (Scalars['String'] | null),longitude?: (Scalars['float8'] | null),match_options_id?: (Scalars['uuid'] | null),name?: (Scalars['String'] | null),organizer_steam_id?: (Scalars['bigint'] | null),scheduling_mode?: (Scalars['String'] | null),start?: (Scalars['timestamptz'] | null),status?: (e_tournament_status_enum | null),trophies_enabled?: (Scalars['Boolean'] | null)} +export interface tournaments_set_input {auto_start?: (Scalars['Boolean'] | null),awards_enabled?: (Scalars['Boolean'] | null),banner?: (Scalars['String'] | null),created_at?: (Scalars['timestamptz'] | null),description?: (Scalars['String'] | null),discord_guild_id?: (Scalars['String'] | null),discord_notifications_enabled?: (Scalars['Boolean'] | null),discord_notify_Canceled?: (Scalars['Boolean'] | null),discord_notify_Finished?: (Scalars['Boolean'] | null),discord_notify_Forfeit?: (Scalars['Boolean'] | null),discord_notify_Live?: (Scalars['Boolean'] | null),discord_notify_MapPaused?: (Scalars['Boolean'] | null),discord_notify_PickingPlayers?: (Scalars['Boolean'] | null),discord_notify_Scheduled?: (Scalars['Boolean'] | null),discord_notify_Surrendered?: (Scalars['Boolean'] | null),discord_notify_Tie?: (Scalars['Boolean'] | null),discord_notify_Veto?: (Scalars['Boolean'] | null),discord_notify_WaitingForCheckIn?: (Scalars['Boolean'] | null),discord_notify_WaitingForServer?: (Scalars['Boolean'] | null),discord_role_id?: (Scalars['String'] | null),discord_voice_enabled?: (Scalars['Boolean'] | null),discord_webhook?: (Scalars['String'] | null),homepage?: (Scalars['String'] | null),id?: (Scalars['uuid'] | null),is_league?: (Scalars['Boolean'] | null),latitude?: (Scalars['float8'] | null),location?: (Scalars['String'] | null),logo?: (Scalars['String'] | null),longitude?: (Scalars['float8'] | null),match_options_id?: (Scalars['uuid'] | null),name?: (Scalars['String'] | null),organizer_steam_id?: (Scalars['bigint'] | null),scheduling_mode?: (Scalars['String'] | null),start?: (Scalars['timestamptz'] | null),status?: (e_tournament_status_enum | null)} /** aggregate stddev on columns */ @@ -90113,7 +91484,7 @@ ordering?: (cursor_ordering | null)} /** Initial value of the column from where the streaming should start */ -export interface tournaments_stream_cursor_value_input {auto_start?: (Scalars['Boolean'] | null),banner?: (Scalars['String'] | null),created_at?: (Scalars['timestamptz'] | null),description?: (Scalars['String'] | null),discord_guild_id?: (Scalars['String'] | null),discord_notifications_enabled?: (Scalars['Boolean'] | null),discord_notify_Canceled?: (Scalars['Boolean'] | null),discord_notify_Finished?: (Scalars['Boolean'] | null),discord_notify_Forfeit?: (Scalars['Boolean'] | null),discord_notify_Live?: (Scalars['Boolean'] | null),discord_notify_MapPaused?: (Scalars['Boolean'] | null),discord_notify_PickingPlayers?: (Scalars['Boolean'] | null),discord_notify_Scheduled?: (Scalars['Boolean'] | null),discord_notify_Surrendered?: (Scalars['Boolean'] | null),discord_notify_Tie?: (Scalars['Boolean'] | null),discord_notify_Veto?: (Scalars['Boolean'] | null),discord_notify_WaitingForCheckIn?: (Scalars['Boolean'] | null),discord_notify_WaitingForServer?: (Scalars['Boolean'] | null),discord_role_id?: (Scalars['String'] | null),discord_voice_enabled?: (Scalars['Boolean'] | null),discord_webhook?: (Scalars['String'] | null),homepage?: (Scalars['String'] | null),id?: (Scalars['uuid'] | null),is_league?: (Scalars['Boolean'] | null),latitude?: (Scalars['float8'] | null),location?: (Scalars['String'] | null),logo?: (Scalars['String'] | null),longitude?: (Scalars['float8'] | null),match_options_id?: (Scalars['uuid'] | null),name?: (Scalars['String'] | null),organizer_steam_id?: (Scalars['bigint'] | null),scheduling_mode?: (Scalars['String'] | null),start?: (Scalars['timestamptz'] | null),status?: (e_tournament_status_enum | null),trophies_enabled?: (Scalars['Boolean'] | null)} +export interface tournaments_stream_cursor_value_input {auto_start?: (Scalars['Boolean'] | null),awards_enabled?: (Scalars['Boolean'] | null),banner?: (Scalars['String'] | null),created_at?: (Scalars['timestamptz'] | null),description?: (Scalars['String'] | null),discord_guild_id?: (Scalars['String'] | null),discord_notifications_enabled?: (Scalars['Boolean'] | null),discord_notify_Canceled?: (Scalars['Boolean'] | null),discord_notify_Finished?: (Scalars['Boolean'] | null),discord_notify_Forfeit?: (Scalars['Boolean'] | null),discord_notify_Live?: (Scalars['Boolean'] | null),discord_notify_MapPaused?: (Scalars['Boolean'] | null),discord_notify_PickingPlayers?: (Scalars['Boolean'] | null),discord_notify_Scheduled?: (Scalars['Boolean'] | null),discord_notify_Surrendered?: (Scalars['Boolean'] | null),discord_notify_Tie?: (Scalars['Boolean'] | null),discord_notify_Veto?: (Scalars['Boolean'] | null),discord_notify_WaitingForCheckIn?: (Scalars['Boolean'] | null),discord_notify_WaitingForServer?: (Scalars['Boolean'] | null),discord_role_id?: (Scalars['String'] | null),discord_voice_enabled?: (Scalars['Boolean'] | null),discord_webhook?: (Scalars['String'] | null),homepage?: (Scalars['String'] | null),id?: (Scalars['uuid'] | null),is_league?: (Scalars['Boolean'] | null),latitude?: (Scalars['float8'] | null),location?: (Scalars['String'] | null),logo?: (Scalars['String'] | null),longitude?: (Scalars['float8'] | null),match_options_id?: (Scalars['uuid'] | null),name?: (Scalars['String'] | null),organizer_steam_id?: (Scalars['bigint'] | null),scheduling_mode?: (Scalars['String'] | null),start?: (Scalars['timestamptz'] | null),status?: (e_tournament_status_enum | null)} /** aggregate sum on columns */ @@ -97791,6 +99162,22 @@ export type SubscriptionGenqlSelection = subscription_rootGenqlSelection + const Award_possibleTypes: string[] = ['Award'] + export const isAward = (obj?: { __typename?: any } | null): obj is Award => { + if (!obj?.__typename) throw new Error('__typename is missing in "isAward"') + return Award_possibleTypes.includes(obj.__typename) + } + + + + const AwardRecipient_possibleTypes: string[] = ['AwardRecipient'] + export const isAwardRecipient = (obj?: { __typename?: any } | null): obj is AwardRecipient => { + if (!obj?.__typename) throw new Error('__typename is missing in "isAwardRecipient"') + return AwardRecipient_possibleTypes.includes(obj.__typename) + } + + + const ConnectionByState_possibleTypes: string[] = ['ConnectionByState'] export const isConnectionByState = (obj?: { __typename?: any } | null): obj is ConnectionByState => { if (!obj?.__typename) throw new Error('__typename is missing in "isConnectionByState"') @@ -98367,6 +99754,14 @@ export type SubscriptionGenqlSelection = subscription_rootGenqlSelection + const TournamentAward_possibleTypes: string[] = ['TournamentAward'] + export const isTournamentAward = (obj?: { __typename?: any } | null): obj is TournamentAward => { + if (!obj?.__typename) throw new Error('__typename is missing in "isTournamentAward"') + return TournamentAward_possibleTypes.includes(obj.__typename) + } + + + const TournamentMatchResetImpact_possibleTypes: string[] = ['TournamentMatchResetImpact'] export const isTournamentMatchResetImpact = (obj?: { __typename?: any } | null): obj is TournamentMatchResetImpact => { if (!obj?.__typename) throw new Error('__typename is missing in "isTournamentMatchResetImpact"') @@ -98655,6 +100050,230 @@ export type SubscriptionGenqlSelection = subscription_rootGenqlSelection + const award_recipients_possibleTypes: string[] = ['award_recipients'] + export const isaward_recipients = (obj?: { __typename?: any } | null): obj is award_recipients => { + if (!obj?.__typename) throw new Error('__typename is missing in "isaward_recipients"') + return award_recipients_possibleTypes.includes(obj.__typename) + } + + + + const award_recipients_aggregate_possibleTypes: string[] = ['award_recipients_aggregate'] + export const isaward_recipients_aggregate = (obj?: { __typename?: any } | null): obj is award_recipients_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "isaward_recipients_aggregate"') + return award_recipients_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const award_recipients_aggregate_fields_possibleTypes: string[] = ['award_recipients_aggregate_fields'] + export const isaward_recipients_aggregate_fields = (obj?: { __typename?: any } | null): obj is award_recipients_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isaward_recipients_aggregate_fields"') + return award_recipients_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const award_recipients_avg_fields_possibleTypes: string[] = ['award_recipients_avg_fields'] + export const isaward_recipients_avg_fields = (obj?: { __typename?: any } | null): obj is award_recipients_avg_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isaward_recipients_avg_fields"') + return award_recipients_avg_fields_possibleTypes.includes(obj.__typename) + } + + + + const award_recipients_max_fields_possibleTypes: string[] = ['award_recipients_max_fields'] + export const isaward_recipients_max_fields = (obj?: { __typename?: any } | null): obj is award_recipients_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isaward_recipients_max_fields"') + return award_recipients_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const award_recipients_min_fields_possibleTypes: string[] = ['award_recipients_min_fields'] + export const isaward_recipients_min_fields = (obj?: { __typename?: any } | null): obj is award_recipients_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isaward_recipients_min_fields"') + return award_recipients_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const award_recipients_mutation_response_possibleTypes: string[] = ['award_recipients_mutation_response'] + export const isaward_recipients_mutation_response = (obj?: { __typename?: any } | null): obj is award_recipients_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "isaward_recipients_mutation_response"') + return award_recipients_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const award_recipients_stddev_fields_possibleTypes: string[] = ['award_recipients_stddev_fields'] + export const isaward_recipients_stddev_fields = (obj?: { __typename?: any } | null): obj is award_recipients_stddev_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isaward_recipients_stddev_fields"') + return award_recipients_stddev_fields_possibleTypes.includes(obj.__typename) + } + + + + const award_recipients_stddev_pop_fields_possibleTypes: string[] = ['award_recipients_stddev_pop_fields'] + export const isaward_recipients_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is award_recipients_stddev_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isaward_recipients_stddev_pop_fields"') + return award_recipients_stddev_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const award_recipients_stddev_samp_fields_possibleTypes: string[] = ['award_recipients_stddev_samp_fields'] + export const isaward_recipients_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is award_recipients_stddev_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isaward_recipients_stddev_samp_fields"') + return award_recipients_stddev_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const award_recipients_sum_fields_possibleTypes: string[] = ['award_recipients_sum_fields'] + export const isaward_recipients_sum_fields = (obj?: { __typename?: any } | null): obj is award_recipients_sum_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isaward_recipients_sum_fields"') + return award_recipients_sum_fields_possibleTypes.includes(obj.__typename) + } + + + + const award_recipients_var_pop_fields_possibleTypes: string[] = ['award_recipients_var_pop_fields'] + export const isaward_recipients_var_pop_fields = (obj?: { __typename?: any } | null): obj is award_recipients_var_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isaward_recipients_var_pop_fields"') + return award_recipients_var_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const award_recipients_var_samp_fields_possibleTypes: string[] = ['award_recipients_var_samp_fields'] + export const isaward_recipients_var_samp_fields = (obj?: { __typename?: any } | null): obj is award_recipients_var_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isaward_recipients_var_samp_fields"') + return award_recipients_var_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const award_recipients_variance_fields_possibleTypes: string[] = ['award_recipients_variance_fields'] + export const isaward_recipients_variance_fields = (obj?: { __typename?: any } | null): obj is award_recipients_variance_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isaward_recipients_variance_fields"') + return award_recipients_variance_fields_possibleTypes.includes(obj.__typename) + } + + + + const awards_possibleTypes: string[] = ['awards'] + export const isawards = (obj?: { __typename?: any } | null): obj is awards => { + if (!obj?.__typename) throw new Error('__typename is missing in "isawards"') + return awards_possibleTypes.includes(obj.__typename) + } + + + + const awards_aggregate_possibleTypes: string[] = ['awards_aggregate'] + export const isawards_aggregate = (obj?: { __typename?: any } | null): obj is awards_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "isawards_aggregate"') + return awards_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const awards_aggregate_fields_possibleTypes: string[] = ['awards_aggregate_fields'] + export const isawards_aggregate_fields = (obj?: { __typename?: any } | null): obj is awards_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isawards_aggregate_fields"') + return awards_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const awards_avg_fields_possibleTypes: string[] = ['awards_avg_fields'] + export const isawards_avg_fields = (obj?: { __typename?: any } | null): obj is awards_avg_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isawards_avg_fields"') + return awards_avg_fields_possibleTypes.includes(obj.__typename) + } + + + + const awards_max_fields_possibleTypes: string[] = ['awards_max_fields'] + export const isawards_max_fields = (obj?: { __typename?: any } | null): obj is awards_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isawards_max_fields"') + return awards_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const awards_min_fields_possibleTypes: string[] = ['awards_min_fields'] + export const isawards_min_fields = (obj?: { __typename?: any } | null): obj is awards_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isawards_min_fields"') + return awards_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const awards_mutation_response_possibleTypes: string[] = ['awards_mutation_response'] + export const isawards_mutation_response = (obj?: { __typename?: any } | null): obj is awards_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "isawards_mutation_response"') + return awards_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const awards_stddev_fields_possibleTypes: string[] = ['awards_stddev_fields'] + export const isawards_stddev_fields = (obj?: { __typename?: any } | null): obj is awards_stddev_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isawards_stddev_fields"') + return awards_stddev_fields_possibleTypes.includes(obj.__typename) + } + + + + const awards_stddev_pop_fields_possibleTypes: string[] = ['awards_stddev_pop_fields'] + export const isawards_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is awards_stddev_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isawards_stddev_pop_fields"') + return awards_stddev_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const awards_stddev_samp_fields_possibleTypes: string[] = ['awards_stddev_samp_fields'] + export const isawards_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is awards_stddev_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isawards_stddev_samp_fields"') + return awards_stddev_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const awards_sum_fields_possibleTypes: string[] = ['awards_sum_fields'] + export const isawards_sum_fields = (obj?: { __typename?: any } | null): obj is awards_sum_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isawards_sum_fields"') + return awards_sum_fields_possibleTypes.includes(obj.__typename) + } + + + + const awards_var_pop_fields_possibleTypes: string[] = ['awards_var_pop_fields'] + export const isawards_var_pop_fields = (obj?: { __typename?: any } | null): obj is awards_var_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isawards_var_pop_fields"') + return awards_var_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const awards_var_samp_fields_possibleTypes: string[] = ['awards_var_samp_fields'] + export const isawards_var_samp_fields = (obj?: { __typename?: any } | null): obj is awards_var_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isawards_var_samp_fields"') + return awards_var_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const awards_variance_fields_possibleTypes: string[] = ['awards_variance_fields'] + export const isawards_variance_fields = (obj?: { __typename?: any } | null): obj is awards_variance_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isawards_variance_fields"') + return awards_variance_fields_possibleTypes.includes(obj.__typename) + } + + + const clip_render_jobs_possibleTypes: string[] = ['clip_render_jobs'] export const isclip_render_jobs = (obj?: { __typename?: any } | null): obj is clip_render_jobs => { if (!obj?.__typename) throw new Error('__typename is missing in "isclip_render_jobs"') @@ -99327,6 +100946,102 @@ export type SubscriptionGenqlSelection = subscription_rootGenqlSelection + const e_award_sources_possibleTypes: string[] = ['e_award_sources'] + export const ise_award_sources = (obj?: { __typename?: any } | null): obj is e_award_sources => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_award_sources"') + return e_award_sources_possibleTypes.includes(obj.__typename) + } + + + + const e_award_sources_aggregate_possibleTypes: string[] = ['e_award_sources_aggregate'] + export const ise_award_sources_aggregate = (obj?: { __typename?: any } | null): obj is e_award_sources_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_award_sources_aggregate"') + return e_award_sources_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const e_award_sources_aggregate_fields_possibleTypes: string[] = ['e_award_sources_aggregate_fields'] + export const ise_award_sources_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_award_sources_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_award_sources_aggregate_fields"') + return e_award_sources_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_award_sources_max_fields_possibleTypes: string[] = ['e_award_sources_max_fields'] + export const ise_award_sources_max_fields = (obj?: { __typename?: any } | null): obj is e_award_sources_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_award_sources_max_fields"') + return e_award_sources_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_award_sources_min_fields_possibleTypes: string[] = ['e_award_sources_min_fields'] + export const ise_award_sources_min_fields = (obj?: { __typename?: any } | null): obj is e_award_sources_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_award_sources_min_fields"') + return e_award_sources_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_award_sources_mutation_response_possibleTypes: string[] = ['e_award_sources_mutation_response'] + export const ise_award_sources_mutation_response = (obj?: { __typename?: any } | null): obj is e_award_sources_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_award_sources_mutation_response"') + return e_award_sources_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const e_award_tiers_possibleTypes: string[] = ['e_award_tiers'] + export const ise_award_tiers = (obj?: { __typename?: any } | null): obj is e_award_tiers => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_award_tiers"') + return e_award_tiers_possibleTypes.includes(obj.__typename) + } + + + + const e_award_tiers_aggregate_possibleTypes: string[] = ['e_award_tiers_aggregate'] + export const ise_award_tiers_aggregate = (obj?: { __typename?: any } | null): obj is e_award_tiers_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_award_tiers_aggregate"') + return e_award_tiers_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const e_award_tiers_aggregate_fields_possibleTypes: string[] = ['e_award_tiers_aggregate_fields'] + export const ise_award_tiers_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_award_tiers_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_award_tiers_aggregate_fields"') + return e_award_tiers_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_award_tiers_max_fields_possibleTypes: string[] = ['e_award_tiers_max_fields'] + export const ise_award_tiers_max_fields = (obj?: { __typename?: any } | null): obj is e_award_tiers_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_award_tiers_max_fields"') + return e_award_tiers_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_award_tiers_min_fields_possibleTypes: string[] = ['e_award_tiers_min_fields'] + export const ise_award_tiers_min_fields = (obj?: { __typename?: any } | null): obj is e_award_tiers_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_award_tiers_min_fields"') + return e_award_tiers_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_award_tiers_mutation_response_possibleTypes: string[] = ['e_award_tiers_mutation_response'] + export const ise_award_tiers_mutation_response = (obj?: { __typename?: any } | null): obj is e_award_tiers_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_award_tiers_mutation_response"') + return e_award_tiers_mutation_response_possibleTypes.includes(obj.__typename) + } + + + const e_check_in_settings_possibleTypes: string[] = ['e_check_in_settings'] export const ise_check_in_settings = (obj?: { __typename?: any } | null): obj is e_check_in_settings => { if (!obj?.__typename) throw new Error('__typename is missing in "ise_check_in_settings"') @@ -110335,6 +112050,118 @@ export type SubscriptionGenqlSelection = subscription_rootGenqlSelection + const tournament_awards_possibleTypes: string[] = ['tournament_awards'] + export const istournament_awards = (obj?: { __typename?: any } | null): obj is tournament_awards => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_awards"') + return tournament_awards_possibleTypes.includes(obj.__typename) + } + + + + const tournament_awards_aggregate_possibleTypes: string[] = ['tournament_awards_aggregate'] + export const istournament_awards_aggregate = (obj?: { __typename?: any } | null): obj is tournament_awards_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_awards_aggregate"') + return tournament_awards_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const tournament_awards_aggregate_fields_possibleTypes: string[] = ['tournament_awards_aggregate_fields'] + export const istournament_awards_aggregate_fields = (obj?: { __typename?: any } | null): obj is tournament_awards_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_awards_aggregate_fields"') + return tournament_awards_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_awards_avg_fields_possibleTypes: string[] = ['tournament_awards_avg_fields'] + export const istournament_awards_avg_fields = (obj?: { __typename?: any } | null): obj is tournament_awards_avg_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_awards_avg_fields"') + return tournament_awards_avg_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_awards_max_fields_possibleTypes: string[] = ['tournament_awards_max_fields'] + export const istournament_awards_max_fields = (obj?: { __typename?: any } | null): obj is tournament_awards_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_awards_max_fields"') + return tournament_awards_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_awards_min_fields_possibleTypes: string[] = ['tournament_awards_min_fields'] + export const istournament_awards_min_fields = (obj?: { __typename?: any } | null): obj is tournament_awards_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_awards_min_fields"') + return tournament_awards_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_awards_mutation_response_possibleTypes: string[] = ['tournament_awards_mutation_response'] + export const istournament_awards_mutation_response = (obj?: { __typename?: any } | null): obj is tournament_awards_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_awards_mutation_response"') + return tournament_awards_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const tournament_awards_stddev_fields_possibleTypes: string[] = ['tournament_awards_stddev_fields'] + export const istournament_awards_stddev_fields = (obj?: { __typename?: any } | null): obj is tournament_awards_stddev_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_awards_stddev_fields"') + return tournament_awards_stddev_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_awards_stddev_pop_fields_possibleTypes: string[] = ['tournament_awards_stddev_pop_fields'] + export const istournament_awards_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is tournament_awards_stddev_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_awards_stddev_pop_fields"') + return tournament_awards_stddev_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_awards_stddev_samp_fields_possibleTypes: string[] = ['tournament_awards_stddev_samp_fields'] + export const istournament_awards_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is tournament_awards_stddev_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_awards_stddev_samp_fields"') + return tournament_awards_stddev_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_awards_sum_fields_possibleTypes: string[] = ['tournament_awards_sum_fields'] + export const istournament_awards_sum_fields = (obj?: { __typename?: any } | null): obj is tournament_awards_sum_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_awards_sum_fields"') + return tournament_awards_sum_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_awards_var_pop_fields_possibleTypes: string[] = ['tournament_awards_var_pop_fields'] + export const istournament_awards_var_pop_fields = (obj?: { __typename?: any } | null): obj is tournament_awards_var_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_awards_var_pop_fields"') + return tournament_awards_var_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_awards_var_samp_fields_possibleTypes: string[] = ['tournament_awards_var_samp_fields'] + export const istournament_awards_var_samp_fields = (obj?: { __typename?: any } | null): obj is tournament_awards_var_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_awards_var_samp_fields"') + return tournament_awards_var_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_awards_variance_fields_possibleTypes: string[] = ['tournament_awards_variance_fields'] + export const istournament_awards_variance_fields = (obj?: { __typename?: any } | null): obj is tournament_awards_variance_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_awards_variance_fields"') + return tournament_awards_variance_fields_possibleTypes.includes(obj.__typename) + } + + + const tournament_brackets_possibleTypes: string[] = ['tournament_brackets'] export const istournament_brackets = (obj?: { __typename?: any } | null): obj is tournament_brackets => { if (!obj?.__typename) throw new Error('__typename is missing in "istournament_brackets"') @@ -111327,230 +113154,6 @@ export type SubscriptionGenqlSelection = subscription_rootGenqlSelection - const tournament_trophies_possibleTypes: string[] = ['tournament_trophies'] - export const istournament_trophies = (obj?: { __typename?: any } | null): obj is tournament_trophies => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_trophies"') - return tournament_trophies_possibleTypes.includes(obj.__typename) - } - - - - const tournament_trophies_aggregate_possibleTypes: string[] = ['tournament_trophies_aggregate'] - export const istournament_trophies_aggregate = (obj?: { __typename?: any } | null): obj is tournament_trophies_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_trophies_aggregate"') - return tournament_trophies_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const tournament_trophies_aggregate_fields_possibleTypes: string[] = ['tournament_trophies_aggregate_fields'] - export const istournament_trophies_aggregate_fields = (obj?: { __typename?: any } | null): obj is tournament_trophies_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_trophies_aggregate_fields"') - return tournament_trophies_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_trophies_avg_fields_possibleTypes: string[] = ['tournament_trophies_avg_fields'] - export const istournament_trophies_avg_fields = (obj?: { __typename?: any } | null): obj is tournament_trophies_avg_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_trophies_avg_fields"') - return tournament_trophies_avg_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_trophies_max_fields_possibleTypes: string[] = ['tournament_trophies_max_fields'] - export const istournament_trophies_max_fields = (obj?: { __typename?: any } | null): obj is tournament_trophies_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_trophies_max_fields"') - return tournament_trophies_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_trophies_min_fields_possibleTypes: string[] = ['tournament_trophies_min_fields'] - export const istournament_trophies_min_fields = (obj?: { __typename?: any } | null): obj is tournament_trophies_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_trophies_min_fields"') - return tournament_trophies_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_trophies_mutation_response_possibleTypes: string[] = ['tournament_trophies_mutation_response'] - export const istournament_trophies_mutation_response = (obj?: { __typename?: any } | null): obj is tournament_trophies_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_trophies_mutation_response"') - return tournament_trophies_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const tournament_trophies_stddev_fields_possibleTypes: string[] = ['tournament_trophies_stddev_fields'] - export const istournament_trophies_stddev_fields = (obj?: { __typename?: any } | null): obj is tournament_trophies_stddev_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_trophies_stddev_fields"') - return tournament_trophies_stddev_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_trophies_stddev_pop_fields_possibleTypes: string[] = ['tournament_trophies_stddev_pop_fields'] - export const istournament_trophies_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is tournament_trophies_stddev_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_trophies_stddev_pop_fields"') - return tournament_trophies_stddev_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_trophies_stddev_samp_fields_possibleTypes: string[] = ['tournament_trophies_stddev_samp_fields'] - export const istournament_trophies_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is tournament_trophies_stddev_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_trophies_stddev_samp_fields"') - return tournament_trophies_stddev_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_trophies_sum_fields_possibleTypes: string[] = ['tournament_trophies_sum_fields'] - export const istournament_trophies_sum_fields = (obj?: { __typename?: any } | null): obj is tournament_trophies_sum_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_trophies_sum_fields"') - return tournament_trophies_sum_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_trophies_var_pop_fields_possibleTypes: string[] = ['tournament_trophies_var_pop_fields'] - export const istournament_trophies_var_pop_fields = (obj?: { __typename?: any } | null): obj is tournament_trophies_var_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_trophies_var_pop_fields"') - return tournament_trophies_var_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_trophies_var_samp_fields_possibleTypes: string[] = ['tournament_trophies_var_samp_fields'] - export const istournament_trophies_var_samp_fields = (obj?: { __typename?: any } | null): obj is tournament_trophies_var_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_trophies_var_samp_fields"') - return tournament_trophies_var_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_trophies_variance_fields_possibleTypes: string[] = ['tournament_trophies_variance_fields'] - export const istournament_trophies_variance_fields = (obj?: { __typename?: any } | null): obj is tournament_trophies_variance_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_trophies_variance_fields"') - return tournament_trophies_variance_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_trophy_configs_possibleTypes: string[] = ['tournament_trophy_configs'] - export const istournament_trophy_configs = (obj?: { __typename?: any } | null): obj is tournament_trophy_configs => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_trophy_configs"') - return tournament_trophy_configs_possibleTypes.includes(obj.__typename) - } - - - - const tournament_trophy_configs_aggregate_possibleTypes: string[] = ['tournament_trophy_configs_aggregate'] - export const istournament_trophy_configs_aggregate = (obj?: { __typename?: any } | null): obj is tournament_trophy_configs_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_trophy_configs_aggregate"') - return tournament_trophy_configs_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const tournament_trophy_configs_aggregate_fields_possibleTypes: string[] = ['tournament_trophy_configs_aggregate_fields'] - export const istournament_trophy_configs_aggregate_fields = (obj?: { __typename?: any } | null): obj is tournament_trophy_configs_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_trophy_configs_aggregate_fields"') - return tournament_trophy_configs_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_trophy_configs_avg_fields_possibleTypes: string[] = ['tournament_trophy_configs_avg_fields'] - export const istournament_trophy_configs_avg_fields = (obj?: { __typename?: any } | null): obj is tournament_trophy_configs_avg_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_trophy_configs_avg_fields"') - return tournament_trophy_configs_avg_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_trophy_configs_max_fields_possibleTypes: string[] = ['tournament_trophy_configs_max_fields'] - export const istournament_trophy_configs_max_fields = (obj?: { __typename?: any } | null): obj is tournament_trophy_configs_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_trophy_configs_max_fields"') - return tournament_trophy_configs_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_trophy_configs_min_fields_possibleTypes: string[] = ['tournament_trophy_configs_min_fields'] - export const istournament_trophy_configs_min_fields = (obj?: { __typename?: any } | null): obj is tournament_trophy_configs_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_trophy_configs_min_fields"') - return tournament_trophy_configs_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_trophy_configs_mutation_response_possibleTypes: string[] = ['tournament_trophy_configs_mutation_response'] - export const istournament_trophy_configs_mutation_response = (obj?: { __typename?: any } | null): obj is tournament_trophy_configs_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_trophy_configs_mutation_response"') - return tournament_trophy_configs_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const tournament_trophy_configs_stddev_fields_possibleTypes: string[] = ['tournament_trophy_configs_stddev_fields'] - export const istournament_trophy_configs_stddev_fields = (obj?: { __typename?: any } | null): obj is tournament_trophy_configs_stddev_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_trophy_configs_stddev_fields"') - return tournament_trophy_configs_stddev_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_trophy_configs_stddev_pop_fields_possibleTypes: string[] = ['tournament_trophy_configs_stddev_pop_fields'] - export const istournament_trophy_configs_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is tournament_trophy_configs_stddev_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_trophy_configs_stddev_pop_fields"') - return tournament_trophy_configs_stddev_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_trophy_configs_stddev_samp_fields_possibleTypes: string[] = ['tournament_trophy_configs_stddev_samp_fields'] - export const istournament_trophy_configs_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is tournament_trophy_configs_stddev_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_trophy_configs_stddev_samp_fields"') - return tournament_trophy_configs_stddev_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_trophy_configs_sum_fields_possibleTypes: string[] = ['tournament_trophy_configs_sum_fields'] - export const istournament_trophy_configs_sum_fields = (obj?: { __typename?: any } | null): obj is tournament_trophy_configs_sum_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_trophy_configs_sum_fields"') - return tournament_trophy_configs_sum_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_trophy_configs_var_pop_fields_possibleTypes: string[] = ['tournament_trophy_configs_var_pop_fields'] - export const istournament_trophy_configs_var_pop_fields = (obj?: { __typename?: any } | null): obj is tournament_trophy_configs_var_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_trophy_configs_var_pop_fields"') - return tournament_trophy_configs_var_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_trophy_configs_var_samp_fields_possibleTypes: string[] = ['tournament_trophy_configs_var_samp_fields'] - export const istournament_trophy_configs_var_samp_fields = (obj?: { __typename?: any } | null): obj is tournament_trophy_configs_var_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_trophy_configs_var_samp_fields"') - return tournament_trophy_configs_var_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_trophy_configs_variance_fields_possibleTypes: string[] = ['tournament_trophy_configs_variance_fields'] - export const istournament_trophy_configs_variance_fields = (obj?: { __typename?: any } | null): obj is tournament_trophy_configs_variance_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_trophy_configs_variance_fields"') - return tournament_trophy_configs_variance_fields_possibleTypes.includes(obj.__typename) - } - - - const tournaments_possibleTypes: string[] = ['tournaments'] export const istournaments = (obj?: { __typename?: any } | null): obj is tournaments => { if (!obj?.__typename) throw new Error('__typename is missing in "istournaments"') @@ -115016,6 +116619,75 @@ export const enumApiKeysUpdateColumn = { steam_id: 'steam_id' as const } +export const enumAwardRecipientsConstraint = { + award_recipients_one_mvp_per_tournament: 'award_recipients_one_mvp_per_tournament' as const, + award_recipients_pkey: 'award_recipients_pkey' as const, + award_recipients_player_recipient_key: 'award_recipients_player_recipient_key' as const, + award_recipients_team_recipient_key: 'award_recipients_team_recipient_key' as const +} + +export const enumAwardRecipientsSelectColumn = { + award_id: 'award_id' as const, + awarded_by_steam_id: 'awarded_by_steam_id' as const, + created_at: 'created_at' as const, + id: 'id' as const, + note: 'note' as const, + placement: 'placement' as const, + placement_tier: 'placement_tier' as const, + player_steam_id: 'player_steam_id' as const, + source: 'source' as const, + team_id: 'team_id' as const, + tournament_id: 'tournament_id' as const, + tournament_team_id: 'tournament_team_id' as const +} + +export const enumAwardRecipientsUpdateColumn = { + award_id: 'award_id' as const, + awarded_by_steam_id: 'awarded_by_steam_id' as const, + created_at: 'created_at' as const, + id: 'id' as const, + note: 'note' as const, + placement: 'placement' as const, + player_steam_id: 'player_steam_id' as const, + source: 'source' as const, + team_id: 'team_id' as const, + tournament_id: 'tournament_id' as const, + tournament_team_id: 'tournament_team_id' as const +} + +export const enumAwardsConstraint = { + awards_pkey: 'awards_pkey' as const, + awards_system_key_key: 'awards_system_key_key' as const +} + +export const enumAwardsSelectColumn = { + allow_multiple: 'allow_multiple' as const, + created_at: 'created_at' as const, + created_by_steam_id: 'created_by_steam_id' as const, + description: 'description' as const, + id: 'id' as const, + image_url: 'image_url' as const, + name: 'name' as const, + silhouette: 'silhouette' as const, + system_key: 'system_key' as const, + tier: 'tier' as const, + updated_at: 'updated_at' as const +} + +export const enumAwardsUpdateColumn = { + allow_multiple: 'allow_multiple' as const, + created_at: 'created_at' as const, + created_by_steam_id: 'created_by_steam_id' as const, + description: 'description' as const, + id: 'id' as const, + image_url: 'image_url' as const, + name: 'name' as const, + silhouette: 'silhouette' as const, + system_key: 'system_key' as const, + tier: 'tier' as const, + updated_at: 'updated_at' as const +} + export const enumClipRenderJobsConstraint = { clip_render_jobs_pkey: 'clip_render_jobs_pkey' as const } @@ -115081,13 +116753,16 @@ export const enumCustomPagesConstraint = { export const enumCustomPagesSelectColumn = { created_at: 'created_at' as const, + deployments: 'deployments' as const, enabled: 'enabled' as const, exposed_module: 'exposed_module' as const, icon: 'icon' as const, id: 'id' as const, is_default: 'is_default' as const, + manifest_url: 'manifest_url' as const, nav_group: 'nav_group' as const, nav_order: 'nav_order' as const, + profile_tab_label: 'profile_tab_label' as const, remote_entry_url: 'remote_entry_url' as const, remote_scope: 'remote_scope' as const, required_role: 'required_role' as const, @@ -115098,13 +116773,16 @@ export const enumCustomPagesSelectColumn = { export const enumCustomPagesUpdateColumn = { created_at: 'created_at' as const, + deployments: 'deployments' as const, enabled: 'enabled' as const, exposed_module: 'exposed_module' as const, icon: 'icon' as const, id: 'id' as const, is_default: 'is_default' as const, + manifest_url: 'manifest_url' as const, nav_group: 'nav_group' as const, nav_order: 'nav_order' as const, + profile_tab_label: 'profile_tab_label' as const, remote_entry_url: 'remote_entry_url' as const, remote_scope: 'remote_scope' as const, required_role: 'required_role' as const, @@ -115269,6 +116947,47 @@ export const enumDraftGamesUpdateColumn = { updated_at: 'updated_at' as const } +export const enumEAwardSourcesConstraint = { + e_award_sources_pkey: 'e_award_sources_pkey' as const +} + +export const enumEAwardSourcesEnum = { + manual: 'manual' as const, + tournament: 'tournament' as const +} + +export const enumEAwardSourcesSelectColumn = { + description: 'description' as const, + value: 'value' as const +} + +export const enumEAwardSourcesUpdateColumn = { + description: 'description' as const, + value: 'value' as const +} + +export const enumEAwardTiersConstraint = { + e_award_tiers_pkey: 'e_award_tiers_pkey' as const +} + +export const enumEAwardTiersEnum = { + bronze: 'bronze' as const, + gold: 'gold' as const, + mvp: 'mvp' as const, + silver: 'silver' as const, + special: 'special' as const +} + +export const enumEAwardTiersSelectColumn = { + description: 'description' as const, + value: 'value' as const +} + +export const enumEAwardTiersUpdateColumn = { + description: 'description' as const, + value: 'value' as const +} + export const enumECheckInSettingsConstraint = { e_check_in_settings_pkey: 'e_check_in_settings_pkey' as const } @@ -119194,6 +120913,35 @@ export const enumTeamsUpdateColumn = { short_name: 'short_name' as const } +export const enumTournamentAwardsConstraint = { + tournament_awards_pkey: 'tournament_awards_pkey' as const, + tournament_awards_tournament_id_placement_key: 'tournament_awards_tournament_id_placement_key' as const +} + +export const enumTournamentAwardsSelectColumn = { + award_id: 'award_id' as const, + created_at: 'created_at' as const, + custom_name: 'custom_name' as const, + id: 'id' as const, + image_url: 'image_url' as const, + placement: 'placement' as const, + silhouette: 'silhouette' as const, + tournament_id: 'tournament_id' as const, + updated_at: 'updated_at' as const +} + +export const enumTournamentAwardsUpdateColumn = { + award_id: 'award_id' as const, + created_at: 'created_at' as const, + custom_name: 'custom_name' as const, + id: 'id' as const, + image_url: 'image_url' as const, + placement: 'placement' as const, + silhouette: 'silhouette' as const, + tournament_id: 'tournament_id' as const, + updated_at: 'updated_at' as const +} + export const enumTournamentBracketsConstraint = { touarnment_brackets_pkey: 'touarnment_brackets_pkey' as const, tournament_brackets_id_tournament_team_id_1_tournament_team_id_: 'tournament_brackets_id_tournament_team_id_1_tournament_team_id_' as const @@ -119470,71 +121218,6 @@ export const enumTournamentTeamsUpdateColumn = { tournament_id: 'tournament_id' as const } -export const enumTournamentTrophiesConstraint = { - tournament_trophies_one_mvp_per_tournament: 'tournament_trophies_one_mvp_per_tournament' as const, - tournament_trophies_pkey: 'tournament_trophies_pkey' as const, - tournament_trophies_player_recipient_key: 'tournament_trophies_player_recipient_key' as const, - tournament_trophies_team_recipient_key: 'tournament_trophies_team_recipient_key' as const -} - -export const enumTournamentTrophiesSelectColumn = { - created_at: 'created_at' as const, - id: 'id' as const, - manual: 'manual' as const, - placement: 'placement' as const, - placement_tier: 'placement_tier' as const, - player_steam_id: 'player_steam_id' as const, - team_id: 'team_id' as const, - tournament_id: 'tournament_id' as const, - tournament_team_id: 'tournament_team_id' as const -} - -export const enumTournamentTrophiesSelectColumnTournamentTrophiesAggregateBoolExpBoolAndArgumentsColumns = { - manual: 'manual' as const -} - -export const enumTournamentTrophiesSelectColumnTournamentTrophiesAggregateBoolExpBoolOrArgumentsColumns = { - manual: 'manual' as const -} - -export const enumTournamentTrophiesUpdateColumn = { - created_at: 'created_at' as const, - id: 'id' as const, - manual: 'manual' as const, - placement: 'placement' as const, - player_steam_id: 'player_steam_id' as const, - team_id: 'team_id' as const, - tournament_id: 'tournament_id' as const, - tournament_team_id: 'tournament_team_id' as const -} - -export const enumTournamentTrophyConfigsConstraint = { - tournament_trophy_configs_pkey: 'tournament_trophy_configs_pkey' as const, - tournament_trophy_configs_tournament_id_placement_key: 'tournament_trophy_configs_tournament_id_placement_key' as const -} - -export const enumTournamentTrophyConfigsSelectColumn = { - created_at: 'created_at' as const, - custom_name: 'custom_name' as const, - id: 'id' as const, - image_url: 'image_url' as const, - placement: 'placement' as const, - silhouette: 'silhouette' as const, - tournament_id: 'tournament_id' as const, - updated_at: 'updated_at' as const -} - -export const enumTournamentTrophyConfigsUpdateColumn = { - created_at: 'created_at' as const, - custom_name: 'custom_name' as const, - id: 'id' as const, - image_url: 'image_url' as const, - placement: 'placement' as const, - silhouette: 'silhouette' as const, - tournament_id: 'tournament_id' as const, - updated_at: 'updated_at' as const -} - export const enumTournamentsConstraint = { tournaments_match_options_id_key: 'tournaments_match_options_id_key' as const, tournaments_pkey: 'tournaments_pkey' as const @@ -119542,6 +121225,7 @@ export const enumTournamentsConstraint = { export const enumTournamentsSelectColumn = { auto_start: 'auto_start' as const, + awards_enabled: 'awards_enabled' as const, banner: 'banner' as const, created_at: 'created_at' as const, description: 'description' as const, @@ -119574,8 +121258,7 @@ export const enumTournamentsSelectColumn = { organizer_steam_id: 'organizer_steam_id' as const, scheduling_mode: 'scheduling_mode' as const, start: 'start' as const, - status: 'status' as const, - trophies_enabled: 'trophies_enabled' as const + status: 'status' as const } export const enumTournamentsSelectColumnTournamentsAggregateBoolExpAvgArgumentsColumns = { @@ -119585,6 +121268,7 @@ export const enumTournamentsSelectColumnTournamentsAggregateBoolExpAvgArgumentsC export const enumTournamentsSelectColumnTournamentsAggregateBoolExpBoolAndArgumentsColumns = { auto_start: 'auto_start' as const, + awards_enabled: 'awards_enabled' as const, discord_notifications_enabled: 'discord_notifications_enabled' as const, discord_notify_Canceled: 'discord_notify_Canceled' as const, discord_notify_Finished: 'discord_notify_Finished' as const, @@ -119599,12 +121283,12 @@ export const enumTournamentsSelectColumnTournamentsAggregateBoolExpBoolAndArgume discord_notify_WaitingForCheckIn: 'discord_notify_WaitingForCheckIn' as const, discord_notify_WaitingForServer: 'discord_notify_WaitingForServer' as const, discord_voice_enabled: 'discord_voice_enabled' as const, - is_league: 'is_league' as const, - trophies_enabled: 'trophies_enabled' as const + is_league: 'is_league' as const } export const enumTournamentsSelectColumnTournamentsAggregateBoolExpBoolOrArgumentsColumns = { auto_start: 'auto_start' as const, + awards_enabled: 'awards_enabled' as const, discord_notifications_enabled: 'discord_notifications_enabled' as const, discord_notify_Canceled: 'discord_notify_Canceled' as const, discord_notify_Finished: 'discord_notify_Finished' as const, @@ -119619,8 +121303,7 @@ export const enumTournamentsSelectColumnTournamentsAggregateBoolExpBoolOrArgumen discord_notify_WaitingForCheckIn: 'discord_notify_WaitingForCheckIn' as const, discord_notify_WaitingForServer: 'discord_notify_WaitingForServer' as const, discord_voice_enabled: 'discord_voice_enabled' as const, - is_league: 'is_league' as const, - trophies_enabled: 'trophies_enabled' as const + is_league: 'is_league' as const } export const enumTournamentsSelectColumnTournamentsAggregateBoolExpCorrArgumentsColumns = { @@ -119660,6 +121343,7 @@ export const enumTournamentsSelectColumnTournamentsAggregateBoolExpVarSampArgume export const enumTournamentsUpdateColumn = { auto_start: 'auto_start' as const, + awards_enabled: 'awards_enabled' as const, banner: 'banner' as const, created_at: 'created_at' as const, description: 'description' as const, @@ -119692,8 +121376,7 @@ export const enumTournamentsUpdateColumn = { organizer_steam_id: 'organizer_steam_id' as const, scheduling_mode: 'scheduling_mode' as const, start: 'start' as const, - status: 'status' as const, - trophies_enabled: 'trophies_enabled' as const + status: 'status' as const } export const enumVEventPlayerStatsSelectColumn = { diff --git a/generated/types.ts b/generated/types.ts index 7a750580..0e0efaeb 100644 --- a/generated/types.ts +++ b/generated/types.ts @@ -1,8436 +1,10243 @@ export default { "scalars": [ - 3, - 29, - 38, - 78, - 96, - 104, - 108, - 110, - 121, - 132, - 144, - 157, - 166, - 174, - 180, - 183, - 198, - 213, - 214, - 215, - 227, - 236, - 242, - 251, - 259, - 269, - 278, + 5, + 31, + 40, + 80, + 99, + 107, + 111, + 113, + 124, + 135, + 147, + 160, + 169, + 177, + 193, + 204, + 216, + 229, + 239, + 247, + 252, + 255, + 270, + 285, 286, - 303, - 314, + 287, + 299, + 308, 315, - 316, 328, - 348, - 359, - 360, - 361, - 373, + 336, + 346, + 355, + 363, + 380, + 391, + 392, 393, 405, - 406, - 407, - 419, - 431, - 432, - 441, - 445, - 451, - 452, - 462, - 466, - 472, - 473, + 425, + 436, + 437, + 438, + 450, + 470, + 482, 483, - 487, - 493, - 494, - 504, + 484, + 496, 508, - 514, - 515, - 525, + 509, + 518, + 522, + 528, 529, - 535, - 536, - 546, - 550, - 556, - 557, - 566, - 570, - 576, - 577, - 586, + 538, + 542, + 548, + 549, + 558, + 562, + 568, + 569, + 579, + 583, + 589, 590, - 596, - 597, - 607, + 600, + 604, + 610, 611, - 617, - 618, - 627, + 621, + 625, 631, - 637, - 638, - 648, + 632, + 642, + 646, 652, - 658, - 659, - 669, + 653, + 663, + 667, 673, - 679, - 680, - 690, + 674, + 683, + 687, + 693, 694, - 700, - 701, - 711, - 715, - 721, - 722, - 732, - 736, - 742, - 743, - 753, - 757, - 763, - 764, - 773, - 777, - 783, - 784, - 794, - 798, - 804, - 805, - 814, + 703, + 707, + 713, + 714, + 724, + 728, + 734, + 735, + 744, + 748, + 754, + 755, + 765, + 769, + 775, + 776, + 786, + 790, + 796, + 797, + 807, + 811, + 817, 818, - 824, - 825, - 835, + 828, + 832, + 838, 839, - 845, - 846, - 855, + 849, + 853, 859, - 865, - 866, - 876, + 860, + 870, + 874, 880, - 886, - 887, - 897, + 881, + 890, + 894, + 900, 901, - 907, - 908, - 917, + 911, + 915, 921, - 927, - 928, - 937, + 922, + 931, + 935, 941, - 947, - 948, - 957, - 961, - 967, - 968, - 977, - 981, - 987, - 988, + 942, + 952, + 956, + 962, + 963, + 972, + 976, + 982, + 983, + 993, 997, - 1001, - 1007, - 1008, + 1003, + 1004, + 1014, 1018, - 1022, - 1028, - 1029, + 1024, + 1025, + 1034, 1038, - 1042, - 1048, - 1049, + 1044, + 1045, + 1054, 1058, - 1062, - 1068, - 1069, + 1064, + 1065, + 1074, 1078, - 1082, - 1088, - 1089, + 1084, + 1085, + 1094, 1098, - 1102, - 1108, - 1109, - 1119, - 1123, - 1129, - 1130, + 1104, + 1105, + 1114, + 1118, + 1124, + 1125, + 1135, 1139, - 1143, - 1149, - 1150, + 1145, + 1146, + 1155, 1159, - 1163, - 1169, - 1170, - 1180, - 1184, - 1190, - 1191, - 1201, + 1165, + 1166, + 1175, + 1179, + 1185, + 1186, + 1195, + 1199, 1205, - 1211, - 1212, - 1222, + 1206, + 1215, + 1219, + 1225, 1226, - 1232, - 1233, - 1242, + 1236, + 1240, 1246, - 1252, - 1253, - 1262, + 1247, + 1256, + 1260, 1266, - 1272, - 1273, - 1282, + 1267, + 1276, + 1280, 1286, - 1292, - 1300, - 1304, - 1316, - 1338, + 1287, + 1297, + 1301, + 1307, + 1308, + 1318, + 1322, + 1328, + 1329, + 1339, + 1343, 1349, - 1361, + 1350, + 1359, + 1363, 1369, - 1381, + 1370, + 1379, + 1383, + 1389, + 1390, 1399, - 1410, - 1422, - 1440, - 1451, - 1463, - 1479, - 1489, - 1493, - 1503, - 1513, - 1517, - 1524, - 1534, - 1542, - 1547, - 1554, - 1563, - 1571, - 1589, - 1605, + 1403, + 1409, + 1417, + 1421, + 1433, + 1455, + 1466, + 1478, + 1486, + 1498, + 1516, + 1527, + 1539, + 1557, + 1568, + 1580, + 1596, 1606, - 1607, - 1619, - 1633, - 1647, - 1655, - 1666, - 1679, - 1687, - 1696, - 1698, - 1700, - 1714, - 1732, - 1742, + 1610, + 1620, + 1630, + 1634, + 1641, + 1651, + 1659, + 1664, + 1671, + 1680, + 1688, + 1706, + 1722, + 1723, + 1724, + 1736, 1750, - 1765, - 1776, - 1788, - 1806, + 1764, + 1772, + 1783, + 1796, + 1804, + 1813, + 1815, 1817, - 1829, - 1847, - 1858, - 1870, - 1886, - 1897, - 1901, - 1909, + 1831, + 1849, + 1859, + 1867, + 1882, + 1893, + 1905, 1923, - 1931, + 1934, 1946, - 1957, - 1969, + 1964, + 1975, 1987, - 1998, - 2010, - 2028, + 2003, + 2014, + 2018, + 2026, 2040, - 2052, - 2064, - 2073, - 2077, - 2083, - 2092, - 2096, - 2110, - 2121, - 2122, - 2123, - 2135, - 2147, - 2156, - 2160, - 2172, - 2183, - 2184, - 2185, - 2189, - 2201, + 2048, + 2063, + 2074, + 2086, + 2104, + 2115, + 2127, + 2145, + 2157, + 2169, + 2181, + 2190, + 2194, + 2200, + 2209, 2213, - 2225, - 2244, - 2259, - 2271, - 2291, + 2227, + 2238, + 2239, + 2240, + 2252, + 2264, + 2273, + 2277, + 2289, + 2300, + 2301, 2302, - 2303, - 2304, - 2316, - 2334, - 2346, - 2358, - 2379, - 2395, - 2396, - 2397, - 2409, - 2427, - 2438, - 2450, - 2466, - 2476, - 2480, - 2492, - 2504, - 2516, - 2529, - 2539, - 2547, - 2560, - 2570, - 2574, - 2589, - 2604, - 2605, - 2606, - 2618, - 2630, - 2638, - 2642, - 2654, - 2666, - 2678, - 2690, - 2698, - 2702, - 2729, - 2730, - 2731, + 2306, + 2318, + 2330, + 2342, + 2361, + 2376, + 2388, + 2408, + 2419, + 2420, + 2421, + 2433, + 2451, + 2463, + 2475, + 2496, + 2512, + 2513, + 2514, + 2526, + 2544, + 2555, + 2567, + 2583, + 2593, + 2597, + 2609, + 2621, + 2633, + 2646, + 2656, + 2664, + 2677, + 2687, + 2691, + 2706, + 2721, + 2722, + 2723, + 2735, + 2747, 2755, - 2764, - 2772, - 2790, - 2805, - 2806, + 2759, + 2771, + 2783, + 2795, 2807, + 2815, 2819, - 2827, - 2829, - 2840, - 2851, - 2863, - 2876, - 2886, - 2894, - 2904, - 2913, - 2921, + 2846, + 2847, + 2848, + 2872, + 2881, + 2889, + 2907, + 2922, + 2923, + 2924, 2936, - 2947, - 2959, - 2979, - 2990, - 2991, - 2992, - 3004, - 3020, - 3040, - 3051, - 3063, + 2944, + 2946, + 2957, + 2968, + 2980, + 2993, + 3003, + 3011, + 3021, + 3030, + 3038, + 3053, + 3064, 3076, - 3085, - 3093, + 3096, + 3107, 3108, - 3119, - 3131, - 3151, - 3162, - 3163, - 3164, - 3176, - 3206, - 3217, - 3229, - 3237, + 3109, + 3121, + 3137, + 3157, + 3168, + 3180, + 3193, + 3202, + 3210, + 3225, + 3236, 3248, - 3249, - 3250, - 3262, + 3268, + 3279, + 3280, 3281, - 3303, - 3314, - 3326, - 3342, - 3368, - 3395, - 3406, - 3418, - 3434, - 3454, - 3465, - 3477, - 3495, - 3506, - 3518, - 3546, - 3557, - 3558, - 3559, - 3560, - 3561, - 3562, - 3563, - 3564, - 3565, - 3577, - 3590, - 3600, - 3608, - 3619, - 3632, - 3640, - 3650, - 3659, - 3667, + 3293, + 3323, + 3334, + 3346, + 3354, + 3365, + 3366, + 3367, + 3379, + 3398, + 3420, + 3431, + 3443, + 3459, + 3485, + 3512, + 3523, + 3535, + 3551, + 3571, + 3582, + 3594, + 3612, + 3623, + 3635, + 3663, + 3674, + 3675, + 3676, + 3677, + 3678, + 3679, + 3680, + 3681, 3682, - 3693, - 3705, - 3723, - 3734, - 3746, - 3770, - 3792, - 3802, + 3694, + 3707, + 3717, + 3725, + 3736, + 3749, + 3757, + 3767, + 3776, + 3784, + 3799, 3810, - 3820, - 3829, - 3837, + 3822, + 3840, 3851, - 3861, - 3869, - 3879, - 3888, - 3896, - 3913, - 3925, - 3926, + 3863, + 3887, + 3909, + 3919, 3927, - 3939, - 3951, - 3959, - 3963, - 3965, - 3975, - 3985, - 3989, + 3937, + 3946, + 3954, + 3968, + 3978, + 3986, 3996, - 4006, - 4014, - 4024, - 4033, - 4041, + 4005, + 4013, + 4030, + 4042, + 4043, + 4044, 4056, - 4067, - 4079, - 4099, - 4110, - 4111, - 4112, - 4124, - 4137, - 4146, - 4154, - 4169, - 4179, - 4180, - 4181, - 4185, - 4197, - 4208, - 4220, - 4240, - 4252, - 4253, + 4068, + 4076, + 4080, + 4082, + 4092, + 4102, + 4106, + 4113, + 4123, + 4131, + 4141, + 4150, + 4158, + 4173, + 4184, + 4196, + 4216, + 4227, + 4228, + 4229, + 4241, 4254, - 4266, - 4279, - 4289, + 4263, + 4271, + 4286, + 4296, 4297, - 4307, - 4316, - 4324, - 4341, - 4353, - 4354, - 4355, - 4367, - 4375, - 4376, - 4390, - 4402, - 4403, - 4404, - 4416, - 4432, - 4442, - 4446, - 4456, - 4466, + 4298, + 4302, + 4314, + 4325, + 4337, + 4357, + 4369, + 4370, + 4371, + 4383, + 4396, + 4406, + 4414, + 4424, + 4433, + 4441, + 4458, 4470, - 4482, + 4471, + 4472, + 4484, + 4492, 4493, 4505, - 4523, - 4534, - 4546, - 4564, + 4517, + 4529, + 4549, + 4561, + 4562, + 4563, 4575, - 4587, - 4608, - 4624, + 4591, + 4601, + 4605, + 4615, 4625, - 4626, - 4638, - 4656, - 4667, - 4679, - 4697, - 4708, - 4720, - 4738, - 4750, - 4762, - 4782, - 4793, - 4794, - 4795, - 4807, - 4825, - 4837, - 4849, + 4629, + 4641, + 4652, + 4664, + 4682, + 4693, + 4705, + 4723, + 4734, + 4746, + 4767, + 4783, + 4784, + 4785, + 4797, + 4815, + 4826, + 4838, + 4856, + 4867, 4879, - 4891, - 4892, - 4893, - 4894, - 4895, - 4896, 4897, - 4898, - 4899, - 4900, - 4901, - 4913, + 4909, 4921, - 4950, 4951, - 4952, - 4953, - 4954, - 4955, - 4956, - 4957, - 4958, - 4983, - 5009, - 5052, - 5053, - 5054, + 4963, + 4964, + 4965, + 4966, + 4967, + 4968, + 4969, + 4970, + 4971, + 4972, + 4973, + 4985, + 4993, + 5022, + 5023, + 5024, + 5025, + 5026, + 5027, + 5028, + 5029, + 5030, 5055, - 5056, - 5057, - 5058, - 5059, - 5060, - 5089, - 5117, - 5142, - 5160, - 5178, - 5199, - 5219, - 5245, - 5270, - 5288, - 5324, - 5325, - 5326, - 5327, - 5328, - 5329, - 5330, - 5331, - 5332, - 5357, - 5375, - 5393, - 5421, - 5448, - 5466, - 5484, - 5510, - 5535, - 5553, - 5580, - 5581, + 5081, + 5124, + 5125, + 5126, + 5127, + 5128, + 5129, + 5130, + 5131, + 5132, + 5161, + 5189, + 5214, + 5232, + 5250, + 5271, + 5291, + 5317, + 5342, + 5360, + 5396, + 5397, + 5398, + 5399, + 5400, + 5401, + 5402, + 5403, + 5404, + 5429, + 5447, + 5465, + 5493, + 5520, + 5538, + 5556, 5582, - 5595, - 5615, - 5635, - 5665, - 5677, - 5678, - 5679, - 5680, - 5681, - 5682, - 5683, - 5684, - 5685, - 5697, - 5731, - 5732, - 5733, - 5734, - 5735, - 5736, + 5607, + 5625, + 5652, + 5653, + 5654, + 5667, + 5687, + 5707, 5737, - 5738, - 5739, - 5782, - 5783, - 5784, - 5785, - 5786, - 5787, - 5788, - 5789, - 5790 + 5749, + 5750, + 5751, + 5752, + 5753, + 5754, + 5755, + 5756, + 5757, + 5769, + 5803, + 5804, + 5805, + 5806, + 5807, + 5808, + 5809, + 5810, + 5811, + 5854, + 5855, + 5856, + 5857, + 5858, + 5859, + 5860, + 5861, + 5862 ], "types": { "ActiveConnection": { "application_name": [ - 78 + 80 ], "client_addr": [ - 78 + 80 ], "pid": [ - 38 + 40 ], "query": [ - 78 + 80 ], "query_start": [ - 4375 + 4492 ], "state": [ - 78 + 80 ], "usename": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "ActiveQuery": { "application_name": [ - 78 + 80 ], "client_addr": [ - 78 + 80 ], "duration_seconds": [ - 29 + 31 ], "pid": [ - 38 + 40 ], "query": [ - 78 + 80 ], "query_start": [ - 4375 + 4492 ], "state": [ - 78 + 80 ], "usename": [ - 78 + 80 ], "wait_event": [ - 78 + 80 ], "wait_event_type": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "ApiKeyResponse": { "key": [ - 78 + 80 + ], + "__typename": [ + 80 + ] + }, + "Award": { + "allow_multiple": [ + 5 + ], + "created_at": [ + 80 + ], + "created_by_steam_id": [ + 80 + ], + "description": [ + 80 + ], + "id": [ + 4993 + ], + "image_url": [ + 80 + ], + "name": [ + 80 + ], + "silhouette": [ + 40 + ], + "system_key": [ + 80 + ], + "tier": [ + 80 + ], + "updated_at": [ + 80 + ], + "__typename": [ + 80 + ] + }, + "AwardRecipient": { + "award_id": [ + 4993 + ], + "awarded_by_steam_id": [ + 80 + ], + "created_at": [ + 80 + ], + "id": [ + 4993 + ], + "note": [ + 80 + ], + "placement": [ + 40 + ], + "player_steam_id": [ + 80 + ], + "source": [ + 80 + ], + "team_id": [ + 4993 + ], + "tournament_id": [ + 4993 + ], + "tournament_team_id": [ + 4993 ], "__typename": [ - 78 + 80 ] }, "Boolean": {}, "Boolean_comparison_exp": { "_eq": [ - 3 + 5 ], "_gt": [ - 3 + 5 ], "_gte": [ - 3 + 5 ], "_in": [ - 3 + 5 ], "_is_null": [ - 3 + 5 ], "_lt": [ - 3 + 5 ], "_lte": [ - 3 + 5 ], "_neq": [ - 3 + 5 ], "_nin": [ - 3 + 5 ], "__typename": [ - 78 + 80 ] }, "ClipAudioInput": { "duck_game_audio": [ - 3 + 5 ], "fade_in_ms": [ - 38 + 40 ], "fade_out_ms": [ - 38 + 40 ], "track_url": [ - 78 + 80 ], "volume": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "ClipOutputInput": { "format": [ - 78 + 80 ], "fps": [ - 38 + 40 ], "resolution": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "ClipOverlayInput": { "end_ms": [ - 38 + 40 ], "payload": [ - 1700 + 1817 ], "start_ms": [ - 38 + 40 ], "type": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "ClipSegmentInput": { "end_tick": [ - 38 + 40 ], "pov_steam_id": [ - 78 + 80 ], "start_tick": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "ClipSpecInput": { "audio": [ - 5 + 7 ], "destination": [ - 78 + 80 ], "match_map_id": [ - 4921 + 4993 ], "output": [ - 6 + 8 ], "overlays": [ - 7 + 9 ], "segments": [ - 8 + 10 ], "title": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "ConnectionByState": { "count": [ - 38 + 40 ], "state": [ - 78 + 80 ], "wait_event_type": [ - 78 + 80 ], "waiting_count": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "ConnectionStats": { "active": [ - 38 + 40 ], "by_state": [ - 10 + 12 ], "idle": [ - 38 + 40 ], "idle_in_transaction": [ - 38 + 40 ], "total": [ - 38 + 40 ], "waiting": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "CpuStat": { "time": [ - 4375 + 4492 ], "total": [ - 180 + 252 ], "used": [ - 180 + 252 ], "window": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "CreateClipRenderOutput": { "job_id": [ - 4921 + 4993 ], "success": [ - 3 + 5 ], "__typename": [ - 78 + 80 ] }, "CreateDraftGameOutput": { "draftGameId": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "CreateScheduledMatchOutput": { "matchId": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "DatabaseStats": { "blks_hit": [ - 38 + 40 ], "blks_read": [ - 38 + 40 ], "cache_hit_ratio": [ - 29 + 31 ], "conflicts": [ - 38 + 40 ], "datname": [ - 78 + 80 ], "deadlocks": [ - 38 + 40 ], "numbackends": [ - 38 + 40 ], "tup_deleted": [ - 38 + 40 ], "tup_fetched": [ - 38 + 40 ], "tup_inserted": [ - 38 + 40 ], "tup_returned": [ - 38 + 40 ], "tup_updated": [ - 38 + 40 ], "xact_commit": [ - 38 + 40 ], "xact_rollback": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "DbStats": { "calls": [ - 38 + 40 ], "local_blks_hit": [ - 38 + 40 ], "local_blks_read": [ - 38 + 40 ], "max_exec_time": [ - 29 + 31 ], "mean_exec_time": [ - 29 + 31 ], "min_exec_time": [ - 29 + 31 ], "query": [ - 78 + 80 ], "queryid": [ - 78 + 80 ], "shared_blks_hit": [ - 38 + 40 ], "shared_blks_read": [ - 38 + 40 ], "total_exec_time": [ - 29 + 31 ], "total_rows": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "DedicatedSeverInfo": { "id": [ - 78 + 80 ], "lastPing": [ - 78 + 80 ], "map": [ - 78 + 80 ], "players": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "DeleteOrphansOutput": { "bytes_freed": [ - 29 + 31 ], "deleted": [ - 38 + 40 ], "remaining_orphans": [ - 38 + 40 ], "success": [ - 3 + 5 ], "__typename": [ - 78 + 80 ] }, "DiskStat": { "available": [ - 78 + 80 ], "filesystem": [ - 78 + 80 ], "mountpoint": [ - 78 + 80 ], "size": [ - 78 + 80 ], "used": [ - 78 + 80 ], "usedPercent": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "DiskStats": { "disks": [ - 20 + 22 ], "time": [ - 4375 + 4492 ], "__typename": [ - 78 + 80 ] }, "DraftGamePreviewOutput": { "accepted_count": [ - 38 + 40 ], "access": [ - 78 + 80 ], "capacity": [ - 38 + 40 ], "host_avatar_url": [ - 78 + 80 ], "host_name": [ - 78 + 80 ], "host_steam_id": [ - 78 + 80 ], "id": [ - 4921 + 4993 ], "mode": [ - 78 + 80 ], "players": [ - 23 + 25 ], "require_approval": [ - 3 + 5 ], "status": [ - 78 + 80 ], "type": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "DraftGamePreviewPlayer": { "avatar_url": [ - 78 + 80 ], "name": [ - 78 + 80 ], "status": [ - 78 + 80 ], "steam_id": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "FaceitTestOutput": { "dataApi": [ - 25 + 27 ], "downloadApi": [ - 25 + 27 ], "__typename": [ - 78 + 80 ] }, "FaceitTestResult": { "detail": [ - 78 + 80 ], "ok": [ - 3 + 5 ], "__typename": [ - 78 + 80 ] }, "FileContentResponse": { "content": [ - 78 + 80 ], "path": [ - 78 + 80 ], "size": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "FileItem": { "isDirectory": [ - 3 + 5 ], "modified": [ - 4375 + 4492 ], "name": [ - 78 + 80 ], "path": [ - 78 + 80 ], "size": [ - 180 + 252 ], "type": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "FileListResponse": { "currentPath": [ - 78 + 80 ], "items": [ - 27 + 29 ], "__typename": [ - 78 + 80 ] }, "Float": {}, "Float_comparison_exp": { "_eq": [ - 29 + 31 ], "_gt": [ - 29 + 31 ], "_gte": [ - 29 + 31 ], "_in": [ - 29 + 31 ], "_is_null": [ - 3 + 5 ], "_lt": [ - 29 + 31 ], "_lte": [ - 29 + 31 ], "_neq": [ - 29 + 31 ], "_nin": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "GetTestUploadResponse": { "error": [ - 78 + 80 ], "link": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "GpuDeviceStat": { "index": [ - 38 + 40 ], "memory_mb": [ - 38 + 40 ], "memory_used_mb": [ - 38 + 40 ], "name": [ - 78 + 80 ], "power_w": [ - 38 + 40 ], "temperature_c": [ - 38 + 40 ], "utilization_percent": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "GpuStats": { "devices": [ - 32 + 34 ], "time": [ - 4375 + 4492 ], "__typename": [ - 78 + 80 ] }, "HighlightPresetAvailability": { "best_round": [ - 3 + 5 ], "has_demo": [ - 3 + 5 ], "knife": [ - 3 + 5 ], "multikills": [ - 3 + 5 ], "recap": [ - 3 + 5 ], "__typename": [ - 78 + 80 ] }, "HypertableInfo": { "compression_enabled": [ - 3 + 5 ], "hypertable_name": [ - 78 + 80 ], "num_chunks": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "IndexIOStat": { "idx_blks_hit": [ - 38 + 40 ], "idx_blks_read": [ - 38 + 40 ], "indexname": [ - 78 + 80 ], "schemaname": [ - 78 + 80 ], "tablename": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "IndexStat": { "idx_scan": [ - 38 + 40 ], "idx_tup_fetch": [ - 38 + 40 ], "idx_tup_read": [ - 38 + 40 ], "index_size": [ - 38 + 40 ], "indexname": [ - 78 + 80 ], "schemaname": [ - 78 + 80 ], "table_size": [ - 38 + 40 ], "tablename": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "Int": {}, "Int_comparison_exp": { "_eq": [ - 38 + 40 ], "_gt": [ - 38 + 40 ], "_gte": [ - 38 + 40 ], "_in": [ - 38 + 40 ], "_is_null": [ - 3 + 5 ], "_lt": [ - 38 + 40 ], "_lte": [ - 38 + 40 ], "_neq": [ - 38 + 40 ], "_nin": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "KickResult": { "kicked": [ - 3 + 5 ], "message": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "LiveSpecGsi": { "map_name": [ - 78 + 80 ], "map_phase": [ - 78 + 80 ], "round_number": [ - 38 + 40 ], "round_phase": [ - 78 + 80 ], "spec_slots": [ - 42 + 44 ], "spectated_steam_id": [ - 78 + 80 ], "team_ct_name": [ - 78 + 80 ], "team_ct_score": [ - 38 + 40 ], "team_t_name": [ - 78 + 80 ], "team_t_score": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "LiveSpecSlot": { "alive": [ - 3 + 5 ], "health": [ - 38 + 40 ], "name": [ - 78 + 80 ], "slot": [ - 38 + 40 ], "steam_id": [ - 78 + 80 ], "team": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "LiveStreamSpecState": { "gsi": [ - 41 + 43 ], "__typename": [ - 78 + 80 ] }, "LockInfo": { "granted": [ - 3 + 5 ], "locktype": [ - 78 + 80 ], "mode": [ - 78 + 80 ], "pid": [ - 38 + 40 ], "query": [ - 78 + 80 ], "relation": [ - 78 + 80 ], "usename": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "MeResponse": { "avatar_url": [ - 78 + 80 ], "country": [ - 78 + 80 ], "discord_id": [ - 78 + 80 ], "language": [ - 78 + 80 ], "name": [ - 78 + 80 ], "player": [ - 3787 + 3904 ], "profile_url": [ - 78 + 80 ], "role": [ - 78 + 80 ], "steam_id": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "MemoryStat": { "time": [ - 4375 + 4492 ], "total": [ - 180 + 252 ], "used": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "NetworkStats": { "nics": [ - 49 + 51 ], "time": [ - 4375 + 4492 ], "__typename": [ - 78 + 80 ] }, "NewsPost": { "author_steam_id": [ - 78 + 80 ], "content_markdown": [ - 78 + 80 ], "cover_image_url": [ - 78 + 80 ], "created_at": [ - 78 + 80 ], "id": [ - 4921 + 4993 ], "published_at": [ - 78 + 80 ], "slug": [ - 78 + 80 ], "status": [ - 78 + 80 ], "teaser": [ - 78 + 80 ], "title": [ - 78 + 80 ], "updated_at": [ - 78 + 80 ], "view_count": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "NicStat": { "name": [ - 78 + 80 ], "rx": [ - 180 + 252 ], "tx": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "NodeStats": { "cpu": [ - 12 + 14 ], "disks": [ - 21 + 23 ], "gpu": [ - 33 + 35 ], "memory": [ - 46 + 48 ], "network": [ - 47 + 49 ], "node": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "OrphanObject": { "key": [ - 78 + 80 ], "size": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "OrphanScanResultOutput": { "bucket": [ - 78 + 80 ], "clip_bytes": [ - 29 + 31 ], "clip_objects": [ - 38 + 40 ], "demo_bytes": [ - 29 + 31 ], "demo_objects": [ - 38 + 40 ], "found": [ - 3 + 5 ], "orphan_bytes": [ - 29 + 31 ], "orphan_objects": [ - 38 + 40 ], "orphans": [ - 51 + 53 ], "other_bytes": [ - 29 + 31 ], "other_objects": [ - 38 + 40 ], "scanned_at": [ - 78 + 80 ], "scanning": [ - 3 + 5 ], "total_bytes": [ - 29 + 31 ], "total_objects": [ - 38 + 40 ], "tracked_bytes": [ - 29 + 31 ], "tracked_objects": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "PendingMatchImportActionOutput": { "error": [ - 78 + 80 ], "success": [ - 3 + 5 ], "__typename": [ - 78 + 80 ] }, "PodStats": { "cpu": [ - 12 + 14 ], "memory": [ - 46 + 48 ], "name": [ - 78 + 80 ], "node": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "PreviewTournamentMatchResetOutput": { "impacts": [ - 90 + 93 ], "__typename": [ - 78 + 80 ] }, "QueryDetail": { "explain_plan": [ - 78 + 80 ], "query": [ - 78 + 80 ], "queryid": [ - 78 + 80 ], "stats": [ - 57 + 59 ], "__typename": [ - 78 + 80 ] }, "QueryStat": { "cache_hit_ratio": [ - 29 + 31 ], "calls": [ - 38 + 40 ], "local_blks_hit": [ - 38 + 40 ], "local_blks_read": [ - 38 + 40 ], "max_exec_time": [ - 29 + 31 ], "mean_exec_time": [ - 29 + 31 ], "min_exec_time": [ - 29 + 31 ], "query": [ - 78 + 80 ], "queryid": [ - 78 + 80 ], "shared_blks_hit": [ - 38 + 40 ], "shared_blks_read": [ - 38 + 40 ], "stddev_exec_time": [ - 29 + 31 ], "temp_blks_written": [ - 38 + 40 ], "total_exec_time": [ - 29 + 31 ], "total_rows": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "RecomputeEloStartedOutput": { "running": [ - 3 + 5 ], "success": [ - 3 + 5 ], "__typename": [ - 78 + 80 ] }, "RecomputeEloStatusOutput": { "canceled": [ - 3 + 5 ], "completed": [ - 38 + 40 ], "current_match_id": [ - 78 + 80 ], "failed": [ - 38 + 40 ], "finished_at": [ - 78 + 80 ], "running": [ - 3 + 5 ], "started_at": [ - 78 + 80 ], "total": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "ReindexStartedOutput": { "running": [ - 3 + 5 ], "success": [ - 3 + 5 ], "__typename": [ - 78 + 80 ] }, "ReindexStatusOutput": { "canceled": [ - 3 + 5 ], "completed": [ - 38 + 40 ], "current_steam_id": [ - 78 + 80 ], "failed": [ - 38 + 40 ], "finished_at": [ - 78 + 80 ], "running": [ - 3 + 5 ], "started_at": [ - 78 + 80 ], "total": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "ReparseAllStartedOutput": { "running": [ - 3 + 5 ], "success": [ - 3 + 5 ], "__typename": [ - 78 + 80 ] }, "ReparseAllStatusOutput": { "canceled": [ - 3 + 5 ], "completed": [ - 38 + 40 ], "current_demo_id": [ - 78 + 80 ], "failed": [ - 38 + 40 ], "finished_at": [ - 78 + 80 ], "running": [ - 3 + 5 ], "started_at": [ - 78 + 80 ], "total": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "SanctionResult": { "enforced": [ - 3 + 5 ], "id": [ - 78 + 80 ], "message": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "ScanStartedOutput": { "scanning": [ - 3 + 5 ], "success": [ - 3 + 5 ], "__typename": [ - 78 + 80 ] }, "ScheduledLineupInput": { "steam_ids": [ - 78 + 80 ], "team_id": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "SeasonBackfillStatusOutput": { "canceled": [ - 3 + 5 ], "completed": [ - 38 + 40 ], "current_match_id": [ - 78 + 80 ], "failed": [ - 38 + 40 ], "finished_at": [ - 78 + 80 ], "running": [ - 3 + 5 ], "season_id": [ - 78 + 80 ], "started_at": [ - 78 + 80 ], "total": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "ServerPlayer": { "name": [ - 78 + 80 ], "steam_id": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "SetupGameServeOutput": { "gameServerId": [ - 78 + 80 ], "link": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "SteamMatchHistoryLinkOutput": { "error": [ - 78 + 80 ], "success": [ - 3 + 5 ], "__typename": [ - 78 + 80 ] }, "SteamMatchHistoryPollOutput": { "collected": [ - 38 + 40 ], "error": [ - 78 + 80 ], "success": [ - 3 + 5 ], "__typename": [ - 78 + 80 ] }, "SteamPresenceAdminStatusOutput": { "bots": [ - 73 + 75 ], "enabled": [ - 3 + 5 ], "pool": [ - 75 + 77 ], "__typename": [ - 78 + 80 ] }, "SteamPresenceBot": { "assigned": [ - 38 + 40 ], "capacity": [ - 38 + 40 ], "guardLastWrong": [ - 3 + 5 ], "guardType": [ - 78 + 80 ], "id": [ - 78 + 80 ], "needs2fa": [ - 3 + 5 ], "online": [ - 3 + 5 ], "steamId": [ - 78 + 80 ], "steamLevel": [ - 38 + 40 ], "username": [ - 78 + 80 ], "watching": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "SteamPresenceBotAssignment": { "addUrl": [ - 78 + 80 ], "enabled": [ - 3 + 5 ], "status": [ - 78 + 80 ], "steamId": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "SteamPresencePool": { "bots": [ - 38 + 40 ], "capacity": [ - 38 + 40 ], "online": [ - 38 + 40 ], "pending": [ - 38 + 40 ], "watching": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "StorageStats": { "summary": [ - 77 + 79 ], "tables": [ - 83 + 85 ], "__typename": [ - 78 + 80 ] }, "StorageSummary": { "estimated_reclaimable_space": [ - 29 + 31 ], "total_database_size": [ - 29 + 31 ], "total_indexes_size": [ - 29 + 31 ], "total_table_size": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "String": {}, "String_array_comparison_exp": { "_contained_in": [ - 78 + 80 ], "_contains": [ - 78 + 80 ], "_eq": [ - 78 + 80 ], "_gt": [ - 78 + 80 ], "_gte": [ - 78 + 80 ], "_in": [ - 78 + 80 ], "_is_null": [ - 3 + 5 ], "_lt": [ - 78 + 80 ], "_lte": [ - 78 + 80 ], "_neq": [ - 78 + 80 ], "_nin": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "String_comparison_exp": { "_eq": [ - 78 + 80 ], "_gt": [ - 78 + 80 ], "_gte": [ - 78 + 80 ], "_ilike": [ - 78 + 80 ], "_in": [ - 78 + 80 ], "_iregex": [ - 78 + 80 ], "_is_null": [ - 3 + 5 ], "_like": [ - 78 + 80 ], "_lt": [ - 78 + 80 ], "_lte": [ - 78 + 80 ], "_neq": [ - 78 + 80 ], "_nilike": [ - 78 + 80 ], "_nin": [ - 78 + 80 ], "_niregex": [ - 78 + 80 ], "_nlike": [ - 78 + 80 ], "_nregex": [ - 78 + 80 ], "_nsimilar": [ - 78 + 80 ], "_regex": [ - 78 + 80 ], "_similar": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "SuccessOutput": { "success": [ - 3 + 5 ], "__typename": [ - 78 + 80 ] }, "TableIOStat": { "cache_hit_ratio": [ - 29 + 31 ], "heap_blks_hit": [ - 38 + 40 ], "heap_blks_read": [ - 38 + 40 ], "idx_blks_hit": [ - 38 + 40 ], "idx_blks_read": [ - 38 + 40 ], "relname": [ - 78 + 80 ], "schemaname": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "TableSizeInfo": { "estimated_dead_tuple_bytes": [ - 29 + 31 ], "indexes_size": [ - 29 + 31 ], "n_dead_tup": [ - 38 + 40 ], "n_live_tup": [ - 38 + 40 ], "schemaname": [ - 78 + 80 ], "table_size": [ - 29 + 31 ], "tablename": [ - 78 + 80 ], "total_size": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "TableStat": { "idx_scan": [ - 38 + 40 ], "idx_tup_fetch": [ - 38 + 40 ], "last_analyze": [ - 4375 + 4492 ], "last_autoanalyze": [ - 4375 + 4492 ], "last_autovacuum": [ - 4375 + 4492 ], "last_vacuum": [ - 4375 + 4492 ], "n_dead_tup": [ - 38 + 40 ], "n_live_tup": [ - 38 + 40 ], "n_tup_del": [ - 38 + 40 ], "n_tup_hot_upd": [ - 38 + 40 ], "n_tup_ins": [ - 38 + 40 ], "n_tup_upd": [ - 38 + 40 ], "relname": [ - 78 + 80 ], "schemaname": [ - 78 + 80 ], "seq_scan": [ - 38 + 40 ], "seq_tup_read": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "TeamCalendarOutput": { "url": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "TelemetryStats": { "online": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "TestUploadResponse": { "error": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "TimescaleJob": { "hypertable_name": [ - 78 + 80 ], "job_id": [ - 38 + 40 ], "job_type": [ - 78 + 80 ], "last_run_status": [ - 78 + 80 ], "next_start": [ - 4375 + 4492 ], "__typename": [ - 78 + 80 ] }, "TimescaleStats": { "chunks_count": [ - 38 + 40 ], "hypertables": [ - 35 + 37 ], "jobs": [ - 88 + 90 + ], + "__typename": [ + 80 + ] + }, + "TournamentAward": { + "award_id": [ + 4993 + ], + "custom_name": [ + 80 + ], + "id": [ + 4993 + ], + "image_url": [ + 80 + ], + "placement": [ + 40 + ], + "silhouette": [ + 40 + ], + "tournament_id": [ + 4993 ], "__typename": [ - 78 + 80 ] }, "TournamentMatchResetImpact": { "bracket_id": [ - 4921 + 4993 ], "depth": [ - 38 + 40 ], "is_source": [ - 3 + 5 ], "match_id": [ - 4921 + 4993 ], "match_number": [ - 38 + 40 ], "match_status": [ - 78 + 80 ], "path": [ - 78 + 80 ], "round": [ - 38 + 40 ], "stage_type": [ - 78 + 80 ], "will_delete_match": [ - 3 + 5 ], "__typename": [ - 78 + 80 ] }, "WatchDemoOutput": { "match_map_id": [ - 78 + 80 ], "session_id": [ - 78 + 80 ], "stream_url": [ - 78 + 80 ], "success": [ - 3 + 5 ], "__typename": [ - 78 + 80 ] }, "_map_pool": { "map_id": [ - 4921 + 4993 ], "map_pool_id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "_map_pool_aggregate": { "aggregate": [ - 94 + 97 ], "nodes": [ - 92 + 95 ], "__typename": [ - 78 + 80 ] }, "_map_pool_aggregate_fields": { "count": [ - 38, + 40, { "columns": [ - 104, + 107, "[_map_pool_select_column!]" ], "distinct": [ - 3 + 5 ] } ], "max": [ - 98 + 101 ], "min": [ - 99 + 102 ], "__typename": [ - 78 + 80 ] }, "_map_pool_bool_exp": { "_and": [ - 95 + 98 ], "_not": [ - 95 + 98 ], "_or": [ - 95 + 98 ], "map_id": [ - 4923 + 4995 ], "map_pool_id": [ - 4923 + 4995 ], "__typename": [ - 78 + 80 ] }, "_map_pool_constraint": {}, "_map_pool_insert_input": { "map_id": [ - 4921 + 4993 ], "map_pool_id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "_map_pool_max_fields": { "map_id": [ - 4921 + 4993 ], "map_pool_id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "_map_pool_min_fields": { "map_id": [ - 4921 + 4993 ], "map_pool_id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "_map_pool_mutation_response": { "affected_rows": [ - 38 + 40 ], "returning": [ - 92 + 95 ], "__typename": [ - 78 + 80 ] }, "_map_pool_on_conflict": { "constraint": [ - 96 + 99 ], "update_columns": [ - 108 + 111 ], "where": [ - 95 + 98 ], "__typename": [ - 78 + 80 ] }, "_map_pool_order_by": { "map_id": [ - 2829 + 2946 ], "map_pool_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "_map_pool_pk_columns_input": { "map_id": [ - 4921 + 4993 ], "map_pool_id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "_map_pool_select_column": {}, "_map_pool_set_input": { "map_id": [ - 4921 + 4993 ], "map_pool_id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "_map_pool_stream_cursor_input": { "initial_value": [ - 107 + 110 ], "ordering": [ - 236 + 308 ], "__typename": [ - 78 + 80 ] }, "_map_pool_stream_cursor_value_input": { "map_id": [ - 4921 + 4993 ], "map_pool_id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "_map_pool_update_column": {}, "_map_pool_updates": { "_set": [ - 105 + 108 ], "where": [ - 95 + 98 ], "__typename": [ - 78 + 80 ] }, "_uuid": {}, "abandoned_matches": { "abandoned_at": [ - 4376 + 4493 ], "id": [ - 4921 + 4993 ], "steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "abandoned_matches_aggregate": { "aggregate": [ - 115 + 118 ], "nodes": [ - 111 + 114 ], "__typename": [ - 78 + 80 ] }, "abandoned_matches_aggregate_bool_exp": { "count": [ - 114 + 117 ], "__typename": [ - 78 + 80 ] }, "abandoned_matches_aggregate_bool_exp_count": { "arguments": [ - 132 + 135 ], "distinct": [ - 3 + 5 ], "filter": [ - 120 + 123 ], "predicate": [ - 39 + 41 ], "__typename": [ - 78 + 80 ] }, "abandoned_matches_aggregate_fields": { "avg": [ - 118 + 121 ], "count": [ - 38, + 40, { "columns": [ - 132, + 135, "[abandoned_matches_select_column!]" ], "distinct": [ - 3 + 5 ] } ], "max": [ - 124 + 127 ], "min": [ - 126 + 129 ], "stddev": [ - 134 + 137 ], "stddev_pop": [ - 136 + 139 ], "stddev_samp": [ - 138 + 141 ], "sum": [ - 142 + 145 ], "var_pop": [ - 146 + 149 ], "var_samp": [ - 148 + 151 ], "variance": [ - 150 + 153 ], "__typename": [ - 78 + 80 ] }, "abandoned_matches_aggregate_order_by": { "avg": [ - 119 + 122 ], "count": [ - 2829 + 2946 ], "max": [ - 125 + 128 ], "min": [ - 127 + 130 ], "stddev": [ - 135 + 138 ], "stddev_pop": [ - 137 + 140 ], "stddev_samp": [ - 139 + 142 ], "sum": [ - 143 + 146 ], "var_pop": [ - 147 + 150 ], "var_samp": [ - 149 + 152 ], "variance": [ - 151 + 154 ], "__typename": [ - 78 + 80 ] }, "abandoned_matches_arr_rel_insert_input": { "data": [ - 123 + 126 ], "on_conflict": [ - 129 + 132 ], "__typename": [ - 78 + 80 ] }, "abandoned_matches_avg_fields": { "steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "abandoned_matches_avg_order_by": { "steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "abandoned_matches_bool_exp": { "_and": [ - 120 + 123 ], "_not": [ - 120 + 123 ], "_or": [ - 120 + 123 ], "abandoned_at": [ - 4377 + 4494 ], "id": [ - 4923 + 4995 ], "steam_id": [ - 182 + 254 ], "__typename": [ - 78 + 80 ] }, "abandoned_matches_constraint": {}, "abandoned_matches_inc_input": { "steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "abandoned_matches_insert_input": { "abandoned_at": [ - 4376 + 4493 ], "id": [ - 4921 + 4993 ], "steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "abandoned_matches_max_fields": { "abandoned_at": [ - 4376 + 4493 ], "id": [ - 4921 + 4993 ], "steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "abandoned_matches_max_order_by": { "abandoned_at": [ - 2829 + 2946 ], "id": [ - 2829 + 2946 ], "steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "abandoned_matches_min_fields": { "abandoned_at": [ - 4376 + 4493 ], "id": [ - 4921 + 4993 ], "steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "abandoned_matches_min_order_by": { "abandoned_at": [ - 2829 + 2946 ], "id": [ - 2829 + 2946 ], "steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "abandoned_matches_mutation_response": { "affected_rows": [ - 38 + 40 ], "returning": [ - 111 + 114 ], "__typename": [ - 78 + 80 ] }, "abandoned_matches_on_conflict": { "constraint": [ - 121 + 124 ], "update_columns": [ - 144 + 147 ], "where": [ - 120 + 123 ], "__typename": [ - 78 + 80 ] }, "abandoned_matches_order_by": { "abandoned_at": [ - 2829 + 2946 ], "id": [ - 2829 + 2946 ], "steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "abandoned_matches_pk_columns_input": { "id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "abandoned_matches_select_column": {}, "abandoned_matches_set_input": { "abandoned_at": [ - 4376 + 4493 ], "id": [ - 4921 + 4993 ], "steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "abandoned_matches_stddev_fields": { "steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "abandoned_matches_stddev_order_by": { "steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "abandoned_matches_stddev_pop_fields": { "steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "abandoned_matches_stddev_pop_order_by": { "steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "abandoned_matches_stddev_samp_fields": { "steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "abandoned_matches_stddev_samp_order_by": { "steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "abandoned_matches_stream_cursor_input": { "initial_value": [ - 141 + 144 ], "ordering": [ - 236 + 308 ], "__typename": [ - 78 + 80 ] }, "abandoned_matches_stream_cursor_value_input": { "abandoned_at": [ - 4376 + 4493 ], "id": [ - 4921 + 4993 ], "steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "abandoned_matches_sum_fields": { "steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "abandoned_matches_sum_order_by": { "steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "abandoned_matches_update_column": {}, "abandoned_matches_updates": { "_inc": [ - 122 + 125 ], "_set": [ - 133 + 136 ], "where": [ - 120 + 123 ], "__typename": [ - 78 + 80 ] }, "abandoned_matches_var_pop_fields": { "steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "abandoned_matches_var_pop_order_by": { "steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "abandoned_matches_var_samp_fields": { "steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "abandoned_matches_var_samp_order_by": { "steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "abandoned_matches_variance_fields": { "steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "abandoned_matches_variance_order_by": { "steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "api_keys": { "created_at": [ - 4376 + 4493 ], "id": [ - 4921 + 4993 ], "label": [ - 78 + 80 ], "last_used_at": [ - 4376 + 4493 ], "steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "api_keys_aggregate": { "aggregate": [ - 154 + 157 ], "nodes": [ - 152 + 155 ], "__typename": [ - 78 + 80 ] }, "api_keys_aggregate_fields": { "avg": [ - 155 + 158 ], "count": [ - 38, + 40, { "columns": [ - 166, + 169, "[api_keys_select_column!]" ], "distinct": [ - 3 + 5 ] } ], "max": [ - 160 + 163 ], "min": [ - 161 + 164 ], "stddev": [ - 168 + 171 ], "stddev_pop": [ - 169 + 172 ], "stddev_samp": [ - 170 + 173 ], "sum": [ - 173 + 176 ], "var_pop": [ - 176 + 179 ], "var_samp": [ - 177 + 180 ], "variance": [ - 178 + 181 ], "__typename": [ - 78 + 80 ] }, "api_keys_avg_fields": { "steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "api_keys_bool_exp": { "_and": [ - 156 + 159 ], "_not": [ - 156 + 159 ], "_or": [ - 156 + 159 ], "created_at": [ - 4377 + 4494 ], "id": [ - 4923 + 4995 ], "label": [ - 80 + 82 ], "last_used_at": [ - 4377 + 4494 ], "steam_id": [ - 182 + 254 ], "__typename": [ - 78 + 80 ] }, "api_keys_constraint": {}, "api_keys_inc_input": { "steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "api_keys_insert_input": { "created_at": [ - 4376 + 4493 ], "id": [ - 4921 + 4993 ], "label": [ - 78 + 80 ], "last_used_at": [ - 4376 + 4493 ], "steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "api_keys_max_fields": { "created_at": [ - 4376 + 4493 ], "id": [ - 4921 + 4993 ], "label": [ - 78 + 80 ], "last_used_at": [ - 4376 + 4493 ], "steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "api_keys_min_fields": { "created_at": [ - 4376 + 4493 ], "id": [ - 4921 + 4993 ], "label": [ - 78 + 80 ], "last_used_at": [ - 4376 + 4493 ], "steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "api_keys_mutation_response": { "affected_rows": [ - 38 + 40 ], "returning": [ - 152 + 155 ], "__typename": [ - 78 + 80 ] }, "api_keys_on_conflict": { "constraint": [ - 157 + 160 ], "update_columns": [ - 174 + 177 ], "where": [ - 156 + 159 ], "__typename": [ - 78 + 80 ] }, "api_keys_order_by": { "created_at": [ - 2829 + 2946 ], "id": [ - 2829 + 2946 ], "label": [ - 2829 + 2946 ], "last_used_at": [ - 2829 + 2946 ], "steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "api_keys_pk_columns_input": { "id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "api_keys_select_column": {}, "api_keys_set_input": { "created_at": [ - 4376 + 4493 ], "id": [ - 4921 + 4993 ], "label": [ - 78 + 80 ], "last_used_at": [ - 4376 + 4493 ], "steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "api_keys_stddev_fields": { "steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "api_keys_stddev_pop_fields": { "steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "api_keys_stddev_samp_fields": { "steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "api_keys_stream_cursor_input": { "initial_value": [ - 172 + 175 ], "ordering": [ - 236 + 308 ], "__typename": [ - 78 + 80 ] }, "api_keys_stream_cursor_value_input": { "created_at": [ - 4376 + 4493 ], "id": [ - 4921 + 4993 ], "label": [ - 78 + 80 ], "last_used_at": [ - 4376 + 4493 ], "steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "api_keys_sum_fields": { "steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "api_keys_update_column": {}, "api_keys_updates": { "_inc": [ - 158 + 161 ], "_set": [ - 167 + 170 ], "where": [ - 156 + 159 ], "__typename": [ - 78 + 80 ] }, "api_keys_var_pop_fields": { "steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "api_keys_var_samp_fields": { "steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "api_keys_variance_fields": { "steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "approve_league_season_movements_args": { "_league_season_id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, - "bigint": {}, - "bigint_array_comparison_exp": { - "_contained_in": [ - 180 + "award_recipients": { + "award": [ + 224 ], - "_contains": [ - 180 + "award_id": [ + 4993 ], - "_eq": [ - 180 + "awarded_by": [ + 3904 ], - "_gt": [ - 180 + "awarded_by_steam_id": [ + 252 ], - "_gte": [ - 180 + "created_at": [ + 4493 ], - "_in": [ - 180 + "id": [ + 4993 ], - "_is_null": [ - 3 - ], - "_lt": [ - 180 - ], - "_lte": [ - 180 - ], - "_neq": [ - 180 - ], - "_nin": [ - 180 - ], - "__typename": [ - 78 - ] - }, - "bigint_comparison_exp": { - "_eq": [ - 180 - ], - "_gt": [ - 180 - ], - "_gte": [ - 180 - ], - "_in": [ - 180 - ], - "_is_null": [ - 3 - ], - "_lt": [ - 180 - ], - "_lte": [ - 180 - ], - "_neq": [ - 180 - ], - "_nin": [ - 180 - ], - "__typename": [ - 78 - ] - }, - "bytea": {}, - "bytea_comparison_exp": { - "_eq": [ - 183 - ], - "_gt": [ - 183 - ], - "_gte": [ - 183 - ], - "_in": [ - 183 - ], - "_is_null": [ - 3 - ], - "_lt": [ - 183 - ], - "_lte": [ - 183 - ], - "_neq": [ - 183 - ], - "_nin": [ - 183 - ], - "__typename": [ - 78 - ] - }, - "clip_render_jobs": { - "clip": [ - 2191 - ], - "clip_id": [ - 4921 - ], - "created_at": [ - 4376 - ], - "error_message": [ - 78 - ], - "game_server_node": [ - 1576 - ], - "game_server_node_id": [ - 78 - ], - "id": [ - 4921 - ], - "k8s_job_name": [ - 78 - ], - "last_status_at": [ - 4376 - ], - "match_map": [ - 2482 + "note": [ + 80 ], - "match_map_demo": [ - 2366 + "placement": [ + 40 ], - "match_map_demo_id": [ - 4921 + "placement_tier": [ + 80 ], - "match_map_id": [ - 4921 + "player": [ + 3904 ], - "paused": [ - 3 + "player_steam_id": [ + 252 ], - "progress": [ - 2827 + "source": [ + 509 ], - "session_token": [ - 78 + "team": [ + 4446 ], - "sort_index": [ - 38 + "team_id": [ + 4993 ], - "spec": [ - 1700, - { - "path": [ - 78 - ] - } + "tournament": [ + 4929 ], - "status": [ - 78 + "tournament_award": [ + 4495 ], - "status_history": [ - 1700, - { - "path": [ - 78 - ] - } + "tournament_id": [ + 4993 ], - "user": [ - 3787 + "tournament_team": [ + 4887 ], - "user_steam_id": [ - 180 + "tournament_team_id": [ + 4993 ], "__typename": [ - 78 + 80 ] }, - "clip_render_jobs_aggregate": { + "award_recipients_aggregate": { "aggregate": [ - 191 + 187 ], "nodes": [ - 185 + 183 ], "__typename": [ - 78 + 80 ] }, - "clip_render_jobs_aggregate_bool_exp": { - "bool_and": [ - 188 - ], - "bool_or": [ - 189 - ], + "award_recipients_aggregate_bool_exp": { "count": [ - 190 - ], - "__typename": [ - 78 - ] - }, - "clip_render_jobs_aggregate_bool_exp_bool_and": { - "arguments": [ - 214 - ], - "distinct": [ - 3 - ], - "filter": [ - 197 - ], - "predicate": [ - 4 - ], - "__typename": [ - 78 - ] - }, - "clip_render_jobs_aggregate_bool_exp_bool_or": { - "arguments": [ - 215 - ], - "distinct": [ - 3 - ], - "filter": [ - 197 - ], - "predicate": [ - 4 + 186 ], "__typename": [ - 78 + 80 ] }, - "clip_render_jobs_aggregate_bool_exp_count": { + "award_recipients_aggregate_bool_exp_count": { "arguments": [ - 213 + 204 ], "distinct": [ - 3 + 5 ], "filter": [ - 197 + 192 ], "predicate": [ - 39 + 41 ], "__typename": [ - 78 + 80 ] }, - "clip_render_jobs_aggregate_fields": { + "award_recipients_aggregate_fields": { "avg": [ - 195 + 190 ], "count": [ - 38, + 40, { "columns": [ - 213, - "[clip_render_jobs_select_column!]" + 204, + "[award_recipients_select_column!]" ], "distinct": [ - 3 + 5 ] } ], "max": [ - 204 + 196 ], "min": [ - 206 + 198 ], "stddev": [ - 217 + 206 ], "stddev_pop": [ - 219 + 208 ], "stddev_samp": [ - 221 + 210 ], "sum": [ - 225 + 214 ], "var_pop": [ - 229 + 218 ], "var_samp": [ - 231 + 220 ], "variance": [ - 233 + 222 ], "__typename": [ - 78 + 80 ] }, - "clip_render_jobs_aggregate_order_by": { + "award_recipients_aggregate_order_by": { "avg": [ - 196 + 191 ], "count": [ - 2829 + 2946 ], "max": [ - 205 + 197 ], "min": [ - 207 + 199 ], "stddev": [ - 218 + 207 ], "stddev_pop": [ - 220 + 209 ], "stddev_samp": [ - 222 + 211 ], "sum": [ - 226 + 215 ], "var_pop": [ - 230 + 219 ], "var_samp": [ - 232 + 221 ], "variance": [ - 234 - ], - "__typename": [ - 78 - ] - }, - "clip_render_jobs_append_input": { - "spec": [ - 1700 - ], - "status_history": [ - 1700 + 223 ], "__typename": [ - 78 + 80 ] }, - "clip_render_jobs_arr_rel_insert_input": { + "award_recipients_arr_rel_insert_input": { "data": [ - 203 + 195 ], "on_conflict": [ - 209 + 201 ], "__typename": [ - 78 + 80 ] }, - "clip_render_jobs_avg_fields": { - "progress": [ - 29 + "award_recipients_avg_fields": { + "awarded_by_steam_id": [ + 31 ], - "sort_index": [ - 29 + "placement": [ + 31 ], - "user_steam_id": [ - 29 + "player_steam_id": [ + 31 ], "__typename": [ - 78 + 80 ] }, - "clip_render_jobs_avg_order_by": { - "progress": [ - 2829 + "award_recipients_avg_order_by": { + "awarded_by_steam_id": [ + 2946 ], - "sort_index": [ - 2829 + "placement": [ + 2946 ], - "user_steam_id": [ - 2829 + "player_steam_id": [ + 2946 ], "__typename": [ - 78 + 80 ] }, - "clip_render_jobs_bool_exp": { + "award_recipients_bool_exp": { "_and": [ - 197 + 192 ], "_not": [ - 197 + 192 ], "_or": [ - 197 - ], - "clip": [ - 2200 + 192 ], - "clip_id": [ - 4923 + "award": [ + 228 ], - "created_at": [ - 4377 + "award_id": [ + 4995 ], - "error_message": [ - 80 + "awarded_by": [ + 3908 ], - "game_server_node": [ - 1588 + "awarded_by_steam_id": [ + 254 ], - "game_server_node_id": [ - 80 + "created_at": [ + 4494 ], "id": [ - 4923 - ], - "k8s_job_name": [ - 80 - ], - "last_status_at": [ - 4377 - ], - "match_map": [ - 2491 - ], - "match_map_demo": [ - 2378 + 4995 ], - "match_map_demo_id": [ - 4923 + "note": [ + 82 ], - "match_map_id": [ - 4923 + "placement": [ + 41 ], - "paused": [ - 4 + "placement_tier": [ + 82 ], - "progress": [ - 2828 + "player": [ + 3908 ], - "session_token": [ - 80 + "player_steam_id": [ + 254 ], - "sort_index": [ - 39 + "source": [ + 510 ], - "spec": [ - 1702 + "team": [ + 4457 ], - "status": [ - 80 + "team_id": [ + 4995 ], - "status_history": [ - 1702 + "tournament": [ + 4950 ], - "user": [ - 3791 + "tournament_award": [ + 4504 ], - "user_steam_id": [ - 182 + "tournament_id": [ + 4995 ], - "__typename": [ - 78 - ] - }, - "clip_render_jobs_constraint": {}, - "clip_render_jobs_delete_at_path_input": { - "spec": [ - 78 + "tournament_team": [ + 4896 ], - "status_history": [ - 78 + "tournament_team_id": [ + 4995 ], "__typename": [ - 78 + 80 ] }, - "clip_render_jobs_delete_elem_input": { - "spec": [ - 38 - ], - "status_history": [ - 38 + "award_recipients_constraint": {}, + "award_recipients_inc_input": { + "awarded_by_steam_id": [ + 252 ], - "__typename": [ - 78 - ] - }, - "clip_render_jobs_delete_key_input": { - "spec": [ - 78 + "placement": [ + 40 ], - "status_history": [ - 78 + "player_steam_id": [ + 252 ], "__typename": [ - 78 + 80 ] }, - "clip_render_jobs_inc_input": { - "progress": [ - 2827 + "award_recipients_insert_input": { + "award": [ + 235 ], - "sort_index": [ - 38 - ], - "user_steam_id": [ - 180 + "award_id": [ + 4993 ], - "__typename": [ - 78 - ] - }, - "clip_render_jobs_insert_input": { - "clip": [ - 2209 + "awarded_by": [ + 3915 ], - "clip_id": [ - 4921 + "awarded_by_steam_id": [ + 252 ], "created_at": [ - 4376 - ], - "error_message": [ - 78 - ], - "game_server_node": [ - 1600 - ], - "game_server_node_id": [ - 78 + 4493 ], "id": [ - 4921 - ], - "k8s_job_name": [ - 78 - ], - "last_status_at": [ - 4376 - ], - "match_map": [ - 2500 + 4993 ], - "match_map_demo": [ - 2390 + "note": [ + 80 ], - "match_map_demo_id": [ - 4921 + "placement": [ + 40 ], - "match_map_id": [ - 4921 + "player": [ + 3915 ], - "paused": [ - 3 + "player_steam_id": [ + 252 ], - "progress": [ - 2827 + "source": [ + 509 ], - "session_token": [ - 78 + "team": [ + 4466 ], - "sort_index": [ - 38 + "team_id": [ + 4993 ], - "spec": [ - 1700 + "tournament": [ + 4959 ], - "status": [ - 78 + "tournament_award": [ + 4513 ], - "status_history": [ - 1700 + "tournament_id": [ + 4993 ], - "user": [ - 3798 + "tournament_team": [ + 4905 ], - "user_steam_id": [ - 180 + "tournament_team_id": [ + 4993 ], "__typename": [ - 78 + 80 ] }, - "clip_render_jobs_max_fields": { - "clip_id": [ - 4921 - ], - "created_at": [ - 4376 + "award_recipients_max_fields": { + "award_id": [ + 4993 ], - "error_message": [ - 78 + "awarded_by_steam_id": [ + 252 ], - "game_server_node_id": [ - 78 + "created_at": [ + 4493 ], "id": [ - 4921 - ], - "k8s_job_name": [ - 78 - ], - "last_status_at": [ - 4376 + 4993 ], - "match_map_demo_id": [ - 4921 + "note": [ + 80 ], - "match_map_id": [ - 4921 + "placement": [ + 40 ], - "progress": [ - 2827 + "placement_tier": [ + 80 ], - "session_token": [ - 78 + "player_steam_id": [ + 252 ], - "sort_index": [ - 38 + "team_id": [ + 4993 ], - "status": [ - 78 + "tournament_id": [ + 4993 ], - "user_steam_id": [ - 180 + "tournament_team_id": [ + 4993 ], "__typename": [ - 78 + 80 ] }, - "clip_render_jobs_max_order_by": { - "clip_id": [ - 2829 + "award_recipients_max_order_by": { + "award_id": [ + 2946 ], - "created_at": [ - 2829 - ], - "error_message": [ - 2829 + "awarded_by_steam_id": [ + 2946 ], - "game_server_node_id": [ - 2829 + "created_at": [ + 2946 ], "id": [ - 2829 - ], - "k8s_job_name": [ - 2829 + 2946 ], - "last_status_at": [ - 2829 - ], - "match_map_demo_id": [ - 2829 + "note": [ + 2946 ], - "match_map_id": [ - 2829 + "placement": [ + 2946 ], - "progress": [ - 2829 + "placement_tier": [ + 2946 ], - "session_token": [ - 2829 + "player_steam_id": [ + 2946 ], - "sort_index": [ - 2829 + "team_id": [ + 2946 ], - "status": [ - 2829 + "tournament_id": [ + 2946 ], - "user_steam_id": [ - 2829 + "tournament_team_id": [ + 2946 ], "__typename": [ - 78 + 80 ] }, - "clip_render_jobs_min_fields": { - "clip_id": [ - 4921 - ], - "created_at": [ - 4376 + "award_recipients_min_fields": { + "award_id": [ + 4993 ], - "error_message": [ - 78 + "awarded_by_steam_id": [ + 252 ], - "game_server_node_id": [ - 78 + "created_at": [ + 4493 ], "id": [ - 4921 - ], - "k8s_job_name": [ - 78 - ], - "last_status_at": [ - 4376 + 4993 ], - "match_map_demo_id": [ - 4921 + "note": [ + 80 ], - "match_map_id": [ - 4921 + "placement": [ + 40 ], - "progress": [ - 2827 + "placement_tier": [ + 80 ], - "session_token": [ - 78 + "player_steam_id": [ + 252 ], - "sort_index": [ - 38 + "team_id": [ + 4993 ], - "status": [ - 78 + "tournament_id": [ + 4993 ], - "user_steam_id": [ - 180 + "tournament_team_id": [ + 4993 ], "__typename": [ - 78 + 80 ] }, - "clip_render_jobs_min_order_by": { - "clip_id": [ - 2829 - ], - "created_at": [ - 2829 + "award_recipients_min_order_by": { + "award_id": [ + 2946 ], - "error_message": [ - 2829 + "awarded_by_steam_id": [ + 2946 ], - "game_server_node_id": [ - 2829 + "created_at": [ + 2946 ], "id": [ - 2829 - ], - "k8s_job_name": [ - 2829 - ], - "last_status_at": [ - 2829 + 2946 ], - "match_map_demo_id": [ - 2829 + "note": [ + 2946 ], - "match_map_id": [ - 2829 + "placement": [ + 2946 ], - "progress": [ - 2829 + "placement_tier": [ + 2946 ], - "session_token": [ - 2829 + "player_steam_id": [ + 2946 ], - "sort_index": [ - 2829 + "team_id": [ + 2946 ], - "status": [ - 2829 + "tournament_id": [ + 2946 ], - "user_steam_id": [ - 2829 + "tournament_team_id": [ + 2946 ], "__typename": [ - 78 + 80 ] }, - "clip_render_jobs_mutation_response": { + "award_recipients_mutation_response": { "affected_rows": [ - 38 + 40 ], "returning": [ - 185 + 183 ], "__typename": [ - 78 + 80 ] }, - "clip_render_jobs_on_conflict": { + "award_recipients_on_conflict": { "constraint": [ - 198 + 193 ], "update_columns": [ - 227 + 216 ], "where": [ - 197 + 192 ], "__typename": [ - 78 + 80 ] }, - "clip_render_jobs_order_by": { - "clip": [ - 2211 - ], - "clip_id": [ - 2829 + "award_recipients_order_by": { + "award": [ + 237 ], - "created_at": [ - 2829 + "award_id": [ + 2946 ], - "error_message": [ - 2829 + "awarded_by": [ + 3917 ], - "game_server_node": [ - 1602 + "awarded_by_steam_id": [ + 2946 ], - "game_server_node_id": [ - 2829 + "created_at": [ + 2946 ], "id": [ - 2829 - ], - "k8s_job_name": [ - 2829 - ], - "last_status_at": [ - 2829 + 2946 ], - "match_map": [ - 2502 + "note": [ + 2946 ], - "match_map_demo": [ - 2392 + "placement": [ + 2946 ], - "match_map_demo_id": [ - 2829 + "placement_tier": [ + 2946 ], - "match_map_id": [ - 2829 + "player": [ + 3917 ], - "paused": [ - 2829 + "player_steam_id": [ + 2946 ], - "progress": [ - 2829 + "source": [ + 2946 ], - "session_token": [ - 2829 + "team": [ + 4468 ], - "sort_index": [ - 2829 + "team_id": [ + 2946 ], - "spec": [ - 2829 + "tournament": [ + 4961 ], - "status": [ - 2829 + "tournament_award": [ + 4515 ], - "status_history": [ - 2829 + "tournament_id": [ + 2946 ], - "user": [ - 3800 + "tournament_team": [ + 4907 ], - "user_steam_id": [ - 2829 + "tournament_team_id": [ + 2946 ], "__typename": [ - 78 + 80 ] }, - "clip_render_jobs_pk_columns_input": { + "award_recipients_pk_columns_input": { "id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, - "clip_render_jobs_prepend_input": { - "spec": [ - 1700 - ], - "status_history": [ - 1700 + "award_recipients_select_column": {}, + "award_recipients_set_input": { + "award_id": [ + 4993 ], - "__typename": [ - 78 - ] - }, - "clip_render_jobs_select_column": {}, - "clip_render_jobs_select_column_clip_render_jobs_aggregate_bool_exp_bool_and_arguments_columns": {}, - "clip_render_jobs_select_column_clip_render_jobs_aggregate_bool_exp_bool_or_arguments_columns": {}, - "clip_render_jobs_set_input": { - "clip_id": [ - 4921 + "awarded_by_steam_id": [ + 252 ], "created_at": [ - 4376 - ], - "error_message": [ - 78 - ], - "game_server_node_id": [ - 78 + 4493 ], "id": [ - 4921 - ], - "k8s_job_name": [ - 78 - ], - "last_status_at": [ - 4376 - ], - "match_map_demo_id": [ - 4921 - ], - "match_map_id": [ - 4921 - ], - "paused": [ - 3 + 4993 ], - "progress": [ - 2827 + "note": [ + 80 ], - "session_token": [ - 78 + "placement": [ + 40 ], - "sort_index": [ - 38 + "player_steam_id": [ + 252 ], - "spec": [ - 1700 + "source": [ + 509 ], - "status": [ - 78 + "team_id": [ + 4993 ], - "status_history": [ - 1700 + "tournament_id": [ + 4993 ], - "user_steam_id": [ - 180 + "tournament_team_id": [ + 4993 ], "__typename": [ - 78 + 80 ] }, - "clip_render_jobs_stddev_fields": { - "progress": [ - 29 + "award_recipients_stddev_fields": { + "awarded_by_steam_id": [ + 31 ], - "sort_index": [ - 29 + "placement": [ + 31 ], - "user_steam_id": [ - 29 + "player_steam_id": [ + 31 ], "__typename": [ - 78 + 80 ] }, - "clip_render_jobs_stddev_order_by": { - "progress": [ - 2829 + "award_recipients_stddev_order_by": { + "awarded_by_steam_id": [ + 2946 ], - "sort_index": [ - 2829 + "placement": [ + 2946 ], - "user_steam_id": [ - 2829 + "player_steam_id": [ + 2946 ], "__typename": [ - 78 + 80 ] }, - "clip_render_jobs_stddev_pop_fields": { - "progress": [ - 29 + "award_recipients_stddev_pop_fields": { + "awarded_by_steam_id": [ + 31 ], - "sort_index": [ - 29 + "placement": [ + 31 ], - "user_steam_id": [ - 29 + "player_steam_id": [ + 31 ], "__typename": [ - 78 + 80 ] }, - "clip_render_jobs_stddev_pop_order_by": { - "progress": [ - 2829 + "award_recipients_stddev_pop_order_by": { + "awarded_by_steam_id": [ + 2946 ], - "sort_index": [ - 2829 + "placement": [ + 2946 ], - "user_steam_id": [ - 2829 + "player_steam_id": [ + 2946 ], "__typename": [ - 78 + 80 ] }, - "clip_render_jobs_stddev_samp_fields": { - "progress": [ - 29 + "award_recipients_stddev_samp_fields": { + "awarded_by_steam_id": [ + 31 ], - "sort_index": [ - 29 + "placement": [ + 31 ], - "user_steam_id": [ - 29 + "player_steam_id": [ + 31 ], "__typename": [ - 78 + 80 ] }, - "clip_render_jobs_stddev_samp_order_by": { - "progress": [ - 2829 + "award_recipients_stddev_samp_order_by": { + "awarded_by_steam_id": [ + 2946 ], - "sort_index": [ - 2829 + "placement": [ + 2946 ], - "user_steam_id": [ - 2829 + "player_steam_id": [ + 2946 ], "__typename": [ - 78 + 80 ] }, - "clip_render_jobs_stream_cursor_input": { + "award_recipients_stream_cursor_input": { "initial_value": [ - 224 + 213 ], "ordering": [ - 236 + 308 ], "__typename": [ - 78 + 80 ] }, - "clip_render_jobs_stream_cursor_value_input": { - "clip_id": [ - 4921 - ], - "created_at": [ - 4376 + "award_recipients_stream_cursor_value_input": { + "award_id": [ + 4993 ], - "error_message": [ - 78 + "awarded_by_steam_id": [ + 252 ], - "game_server_node_id": [ - 78 + "created_at": [ + 4493 ], "id": [ - 4921 - ], - "k8s_job_name": [ - 78 - ], - "last_status_at": [ - 4376 - ], - "match_map_demo_id": [ - 4921 - ], - "match_map_id": [ - 4921 + 4993 ], - "paused": [ - 3 + "note": [ + 80 ], - "progress": [ - 2827 + "placement": [ + 40 ], - "session_token": [ - 78 + "placement_tier": [ + 80 ], - "sort_index": [ - 38 + "player_steam_id": [ + 252 ], - "spec": [ - 1700 + "source": [ + 509 ], - "status": [ - 78 + "team_id": [ + 4993 ], - "status_history": [ - 1700 + "tournament_id": [ + 4993 ], - "user_steam_id": [ - 180 + "tournament_team_id": [ + 4993 ], "__typename": [ - 78 + 80 ] }, - "clip_render_jobs_sum_fields": { - "progress": [ - 2827 + "award_recipients_sum_fields": { + "awarded_by_steam_id": [ + 252 ], - "sort_index": [ - 38 + "placement": [ + 40 ], - "user_steam_id": [ - 180 + "player_steam_id": [ + 252 ], "__typename": [ - 78 + 80 ] }, - "clip_render_jobs_sum_order_by": { - "progress": [ - 2829 + "award_recipients_sum_order_by": { + "awarded_by_steam_id": [ + 2946 ], - "sort_index": [ - 2829 + "placement": [ + 2946 ], - "user_steam_id": [ - 2829 + "player_steam_id": [ + 2946 ], "__typename": [ - 78 + 80 ] }, - "clip_render_jobs_update_column": {}, - "clip_render_jobs_updates": { - "_append": [ - 193 - ], - "_delete_at_path": [ - 199 - ], - "_delete_elem": [ - 200 - ], - "_delete_key": [ - 201 - ], + "award_recipients_update_column": {}, + "award_recipients_updates": { "_inc": [ - 202 - ], - "_prepend": [ - 212 + 194 ], "_set": [ - 216 + 205 ], "where": [ - 197 + 192 ], "__typename": [ - 78 + 80 ] }, - "clip_render_jobs_var_pop_fields": { - "progress": [ - 29 + "award_recipients_var_pop_fields": { + "awarded_by_steam_id": [ + 31 ], - "sort_index": [ - 29 + "placement": [ + 31 ], - "user_steam_id": [ - 29 + "player_steam_id": [ + 31 ], "__typename": [ - 78 + 80 ] }, - "clip_render_jobs_var_pop_order_by": { - "progress": [ - 2829 + "award_recipients_var_pop_order_by": { + "awarded_by_steam_id": [ + 2946 ], - "sort_index": [ - 2829 + "placement": [ + 2946 ], - "user_steam_id": [ - 2829 + "player_steam_id": [ + 2946 ], "__typename": [ - 78 + 80 ] }, - "clip_render_jobs_var_samp_fields": { - "progress": [ - 29 + "award_recipients_var_samp_fields": { + "awarded_by_steam_id": [ + 31 ], - "sort_index": [ - 29 + "placement": [ + 31 ], - "user_steam_id": [ - 29 + "player_steam_id": [ + 31 ], "__typename": [ - 78 + 80 ] }, - "clip_render_jobs_var_samp_order_by": { - "progress": [ - 2829 + "award_recipients_var_samp_order_by": { + "awarded_by_steam_id": [ + 2946 ], - "sort_index": [ - 2829 + "placement": [ + 2946 ], - "user_steam_id": [ - 2829 + "player_steam_id": [ + 2946 ], "__typename": [ - 78 + 80 ] }, - "clip_render_jobs_variance_fields": { - "progress": [ - 29 + "award_recipients_variance_fields": { + "awarded_by_steam_id": [ + 31 ], - "sort_index": [ - 29 + "placement": [ + 31 ], - "user_steam_id": [ - 29 + "player_steam_id": [ + 31 ], "__typename": [ - 78 + 80 ] }, - "clip_render_jobs_variance_order_by": { - "progress": [ - 2829 + "award_recipients_variance_order_by": { + "awarded_by_steam_id": [ + 2946 ], - "sort_index": [ - 2829 + "placement": [ + 2946 ], - "user_steam_id": [ - 2829 + "player_steam_id": [ + 2946 ], "__typename": [ - 78 + 80 ] }, - "clone_league_season_args": { - "_league_season_id": [ - 4921 + "awards": { + "allow_multiple": [ + 5 ], - "__typename": [ - 78 - ] - }, - "cursor_ordering": {}, - "custom_pages": { "created_at": [ - 4376 + 4493 ], - "enabled": [ - 3 + "created_by": [ + 3904 ], - "exposed_module": [ - 78 + "created_by_steam_id": [ + 252 ], - "icon": [ - 78 + "description": [ + 80 ], "id": [ - 4921 + 4993 ], - "is_default": [ - 3 + "image_url": [ + 80 ], - "nav_group": [ - 78 + "name": [ + 80 ], - "nav_order": [ - 38 + "recipients": [ + 183, + { + "distinct_on": [ + 204, + "[award_recipients_select_column!]" + ], + "limit": [ + 40 + ], + "offset": [ + 40 + ], + "order_by": [ + 202, + "[award_recipients_order_by!]" + ], + "where": [ + 192 + ] + } ], - "remote_entry_url": [ - 78 + "recipients_aggregate": [ + 184, + { + "distinct_on": [ + 204, + "[award_recipients_select_column!]" + ], + "limit": [ + 40 + ], + "offset": [ + 40 + ], + "order_by": [ + 202, + "[award_recipients_order_by!]" + ], + "where": [ + 192 + ] + } ], - "remote_scope": [ - 78 + "silhouette": [ + 40 ], - "required_role": [ - 948 + "system_key": [ + 80 ], - "slug": [ - 78 + "tier": [ + 529 ], - "title": [ - 78 + "tournament_configs": [ + 4495, + { + "distinct_on": [ + 4517, + "[tournament_awards_select_column!]" + ], + "limit": [ + 40 + ], + "offset": [ + 40 + ], + "order_by": [ + 4515, + "[tournament_awards_order_by!]" + ], + "where": [ + 4504 + ] + } + ], + "tournament_configs_aggregate": [ + 4496, + { + "distinct_on": [ + 4517, + "[tournament_awards_select_column!]" + ], + "limit": [ + 40 + ], + "offset": [ + 40 + ], + "order_by": [ + 4515, + "[tournament_awards_order_by!]" + ], + "where": [ + 4504 + ] + } ], "updated_at": [ - 4376 + 4493 ], "__typename": [ - 78 + 80 ] }, - "custom_pages_aggregate": { + "awards_aggregate": { "aggregate": [ - 239 + 226 ], "nodes": [ - 237 + 224 ], "__typename": [ - 78 + 80 ] }, - "custom_pages_aggregate_fields": { + "awards_aggregate_fields": { "avg": [ - 240 + 227 ], "count": [ - 38, + 40, { "columns": [ - 251, - "[custom_pages_select_column!]" + 239, + "[awards_select_column!]" ], "distinct": [ - 3 + 5 ] } ], "max": [ - 245 + 232 ], "min": [ - 246 + 233 ], "stddev": [ - 253 + 241 ], "stddev_pop": [ - 254 + 242 ], "stddev_samp": [ - 255 + 243 ], "sum": [ - 258 + 246 ], "var_pop": [ - 261 + 249 ], "var_samp": [ - 262 + 250 ], "variance": [ - 263 + 251 ], "__typename": [ - 78 + 80 ] }, - "custom_pages_avg_fields": { - "nav_order": [ - 29 + "awards_avg_fields": { + "created_by_steam_id": [ + 31 + ], + "silhouette": [ + 31 ], "__typename": [ - 78 + 80 ] }, - "custom_pages_bool_exp": { + "awards_bool_exp": { "_and": [ - 241 + 228 ], "_not": [ - 241 + 228 ], "_or": [ - 241 + 228 + ], + "allow_multiple": [ + 6 ], "created_at": [ - 4377 + 4494 ], - "enabled": [ - 4 + "created_by": [ + 3908 ], - "exposed_module": [ - 80 + "created_by_steam_id": [ + 254 ], - "icon": [ - 80 + "description": [ + 82 ], "id": [ - 4923 + 4995 ], - "is_default": [ - 4 + "image_url": [ + 82 ], - "nav_group": [ - 80 + "name": [ + 82 ], - "nav_order": [ - 39 + "recipients": [ + 192 ], - "remote_entry_url": [ - 80 + "recipients_aggregate": [ + 185 ], - "remote_scope": [ - 80 + "silhouette": [ + 41 ], - "required_role": [ - 949 + "system_key": [ + 82 ], - "slug": [ - 80 + "tier": [ + 530 ], - "title": [ - 80 + "tournament_configs": [ + 4504 + ], + "tournament_configs_aggregate": [ + 4497 ], "updated_at": [ - 4377 + 4494 ], "__typename": [ - 78 + 80 ] }, - "custom_pages_constraint": {}, - "custom_pages_inc_input": { - "nav_order": [ - 38 + "awards_constraint": {}, + "awards_inc_input": { + "created_by_steam_id": [ + 252 + ], + "silhouette": [ + 40 ], "__typename": [ - 78 + 80 ] }, - "custom_pages_insert_input": { + "awards_insert_input": { + "allow_multiple": [ + 5 + ], "created_at": [ - 4376 + 4493 ], - "enabled": [ - 3 + "created_by": [ + 3915 ], - "exposed_module": [ - 78 + "created_by_steam_id": [ + 252 ], - "icon": [ - 78 + "description": [ + 80 ], "id": [ - 4921 - ], - "is_default": [ - 3 + 4993 ], - "nav_group": [ - 78 + "image_url": [ + 80 ], - "nav_order": [ - 38 + "name": [ + 80 ], - "remote_entry_url": [ - 78 + "recipients": [ + 189 ], - "remote_scope": [ - 78 + "silhouette": [ + 40 ], - "required_role": [ - 948 + "system_key": [ + 80 ], - "slug": [ - 78 + "tier": [ + 529 ], - "title": [ - 78 + "tournament_configs": [ + 4501 ], "updated_at": [ - 4376 + 4493 ], "__typename": [ - 78 + 80 ] }, - "custom_pages_max_fields": { + "awards_max_fields": { "created_at": [ - 4376 + 4493 ], - "exposed_module": [ - 78 + "created_by_steam_id": [ + 252 ], - "icon": [ - 78 + "description": [ + 80 ], "id": [ - 4921 - ], - "nav_group": [ - 78 - ], - "nav_order": [ - 38 + 4993 ], - "remote_entry_url": [ - 78 + "image_url": [ + 80 ], - "remote_scope": [ - 78 + "name": [ + 80 ], - "slug": [ - 78 + "silhouette": [ + 40 ], - "title": [ - 78 + "system_key": [ + 80 ], "updated_at": [ - 4376 + 4493 ], "__typename": [ - 78 + 80 ] }, - "custom_pages_min_fields": { + "awards_min_fields": { "created_at": [ - 4376 + 4493 ], - "exposed_module": [ - 78 + "created_by_steam_id": [ + 252 ], - "icon": [ - 78 + "description": [ + 80 ], "id": [ - 4921 - ], - "nav_group": [ - 78 - ], - "nav_order": [ - 38 + 4993 ], - "remote_entry_url": [ - 78 + "image_url": [ + 80 ], - "remote_scope": [ - 78 + "name": [ + 80 ], - "slug": [ - 78 + "silhouette": [ + 40 ], - "title": [ - 78 + "system_key": [ + 80 ], "updated_at": [ - 4376 + 4493 ], "__typename": [ - 78 + 80 ] }, - "custom_pages_mutation_response": { + "awards_mutation_response": { "affected_rows": [ - 38 + 40 ], "returning": [ - 237 + 224 ], "__typename": [ - 78 + 80 ] }, - "custom_pages_on_conflict": { + "awards_obj_rel_insert_input": { + "data": [ + 231 + ], + "on_conflict": [ + 236 + ], + "__typename": [ + 80 + ] + }, + "awards_on_conflict": { "constraint": [ - 242 + 229 ], "update_columns": [ - 259 + 247 ], "where": [ - 241 + 228 ], "__typename": [ - 78 + 80 ] }, - "custom_pages_order_by": { + "awards_order_by": { + "allow_multiple": [ + 2946 + ], "created_at": [ - 2829 + 2946 ], - "enabled": [ - 2829 + "created_by": [ + 3917 ], - "exposed_module": [ - 2829 + "created_by_steam_id": [ + 2946 ], - "icon": [ - 2829 + "description": [ + 2946 ], "id": [ - 2829 - ], - "is_default": [ - 2829 + 2946 ], - "nav_group": [ - 2829 + "image_url": [ + 2946 ], - "nav_order": [ - 2829 + "name": [ + 2946 ], - "remote_entry_url": [ - 2829 + "recipients_aggregate": [ + 188 ], - "remote_scope": [ - 2829 + "silhouette": [ + 2946 ], - "required_role": [ - 2829 + "system_key": [ + 2946 ], - "slug": [ - 2829 + "tier": [ + 2946 ], - "title": [ - 2829 + "tournament_configs_aggregate": [ + 4500 ], "updated_at": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, - "custom_pages_pk_columns_input": { + "awards_pk_columns_input": { "id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, - "custom_pages_select_column": {}, - "custom_pages_set_input": { - "created_at": [ - 4376 + "awards_select_column": {}, + "awards_set_input": { + "allow_multiple": [ + 5 ], - "enabled": [ - 3 + "created_at": [ + 4493 ], - "exposed_module": [ - 78 + "created_by_steam_id": [ + 252 ], - "icon": [ - 78 + "description": [ + 80 ], "id": [ - 4921 - ], - "is_default": [ - 3 - ], - "nav_group": [ - 78 - ], - "nav_order": [ - 38 + 4993 ], - "remote_entry_url": [ - 78 + "image_url": [ + 80 ], - "remote_scope": [ - 78 + "name": [ + 80 ], - "required_role": [ - 948 + "silhouette": [ + 40 ], - "slug": [ - 78 + "system_key": [ + 80 ], - "title": [ - 78 + "tier": [ + 529 ], "updated_at": [ - 4376 + 4493 ], "__typename": [ - 78 + 80 ] }, - "custom_pages_stddev_fields": { - "nav_order": [ - 29 + "awards_stddev_fields": { + "created_by_steam_id": [ + 31 + ], + "silhouette": [ + 31 ], "__typename": [ - 78 + 80 ] }, - "custom_pages_stddev_pop_fields": { - "nav_order": [ - 29 + "awards_stddev_pop_fields": { + "created_by_steam_id": [ + 31 + ], + "silhouette": [ + 31 ], "__typename": [ - 78 + 80 ] }, - "custom_pages_stddev_samp_fields": { - "nav_order": [ - 29 + "awards_stddev_samp_fields": { + "created_by_steam_id": [ + 31 + ], + "silhouette": [ + 31 ], "__typename": [ - 78 + 80 ] }, - "custom_pages_stream_cursor_input": { + "awards_stream_cursor_input": { "initial_value": [ - 257 + 245 ], "ordering": [ - 236 + 308 ], "__typename": [ - 78 + 80 ] }, - "custom_pages_stream_cursor_value_input": { - "created_at": [ - 4376 + "awards_stream_cursor_value_input": { + "allow_multiple": [ + 5 ], - "enabled": [ - 3 + "created_at": [ + 4493 ], - "exposed_module": [ - 78 + "created_by_steam_id": [ + 252 ], - "icon": [ - 78 + "description": [ + 80 ], "id": [ - 4921 - ], - "is_default": [ - 3 - ], - "nav_group": [ - 78 - ], - "nav_order": [ - 38 + 4993 ], - "remote_entry_url": [ - 78 + "image_url": [ + 80 ], - "remote_scope": [ - 78 + "name": [ + 80 ], - "required_role": [ - 948 + "silhouette": [ + 40 ], - "slug": [ - 78 + "system_key": [ + 80 ], - "title": [ - 78 + "tier": [ + 529 ], "updated_at": [ - 4376 + 4493 ], "__typename": [ - 78 + 80 ] }, - "custom_pages_sum_fields": { - "nav_order": [ - 38 + "awards_sum_fields": { + "created_by_steam_id": [ + 252 + ], + "silhouette": [ + 40 ], "__typename": [ - 78 + 80 ] }, - "custom_pages_update_column": {}, - "custom_pages_updates": { + "awards_update_column": {}, + "awards_updates": { "_inc": [ - 243 + 230 ], "_set": [ - 252 + 240 ], "where": [ - 241 - ], - "__typename": [ - 78 - ] - }, - "custom_pages_var_pop_fields": { - "nav_order": [ - 29 + 228 ], "__typename": [ - 78 + 80 ] }, - "custom_pages_var_samp_fields": { - "nav_order": [ - 29 + "awards_var_pop_fields": { + "created_by_steam_id": [ + 31 ], - "__typename": [ - 78 - ] - }, - "custom_pages_variance_fields": { - "nav_order": [ - 29 + "silhouette": [ + 31 ], "__typename": [ - 78 + 80 ] }, - "db_backups": { - "created_at": [ - 4376 - ], - "id": [ - 4921 - ], - "name": [ - 78 + "awards_var_samp_fields": { + "created_by_steam_id": [ + 31 ], - "size": [ - 38 + "silhouette": [ + 31 ], "__typename": [ - 78 + 80 ] }, - "db_backups_aggregate": { - "aggregate": [ - 266 + "awards_variance_fields": { + "created_by_steam_id": [ + 31 ], - "nodes": [ - 264 + "silhouette": [ + 31 ], "__typename": [ - 78 + 80 ] }, - "db_backups_aggregate_fields": { - "avg": [ - 267 - ], - "count": [ - 38, - { - "columns": [ - 278, - "[db_backups_select_column!]" - ], - "distinct": [ - 3 - ] - } + "bigint": {}, + "bigint_array_comparison_exp": { + "_contained_in": [ + 252 ], - "max": [ - 272 + "_contains": [ + 252 ], - "min": [ - 273 + "_eq": [ + 252 ], - "stddev": [ - 280 + "_gt": [ + 252 ], - "stddev_pop": [ - 281 + "_gte": [ + 252 ], - "stddev_samp": [ - 282 + "_in": [ + 252 ], - "sum": [ - 285 + "_is_null": [ + 5 ], - "var_pop": [ - 288 + "_lt": [ + 252 ], - "var_samp": [ - 289 + "_lte": [ + 252 ], - "variance": [ - 290 + "_neq": [ + 252 ], - "__typename": [ - 78 - ] - }, - "db_backups_avg_fields": { - "size": [ - 29 + "_nin": [ + 252 ], "__typename": [ - 78 - ] - }, - "db_backups_bool_exp": { - "_and": [ - 268 - ], - "_not": [ - 268 - ], - "_or": [ - 268 - ], - "created_at": [ - 4377 - ], - "id": [ - 4923 - ], - "name": [ 80 - ], - "size": [ - 39 - ], - "__typename": [ - 78 ] }, - "db_backups_constraint": {}, - "db_backups_inc_input": { - "size": [ - 38 + "bigint_comparison_exp": { + "_eq": [ + 252 ], - "__typename": [ - 78 - ] - }, - "db_backups_insert_input": { - "created_at": [ - 4376 + "_gt": [ + 252 ], - "id": [ - 4921 + "_gte": [ + 252 ], - "name": [ - 78 + "_in": [ + 252 ], - "size": [ - 38 + "_is_null": [ + 5 ], - "__typename": [ - 78 - ] - }, - "db_backups_max_fields": { - "created_at": [ - 4376 + "_lt": [ + 252 ], - "id": [ - 4921 + "_lte": [ + 252 ], - "name": [ - 78 + "_neq": [ + 252 ], - "size": [ - 38 + "_nin": [ + 252 ], "__typename": [ - 78 + 80 ] }, - "db_backups_min_fields": { - "created_at": [ - 4376 + "bytea": {}, + "bytea_comparison_exp": { + "_eq": [ + 255 ], - "id": [ - 4921 + "_gt": [ + 255 ], - "name": [ - 78 + "_gte": [ + 255 ], - "size": [ - 38 + "_in": [ + 255 ], - "__typename": [ - 78 - ] - }, - "db_backups_mutation_response": { - "affected_rows": [ - 38 + "_is_null": [ + 5 ], - "returning": [ - 264 + "_lt": [ + 255 ], - "__typename": [ - 78 - ] - }, - "db_backups_on_conflict": { - "constraint": [ - 269 + "_lte": [ + 255 ], - "update_columns": [ - 286 + "_neq": [ + 255 ], - "where": [ - 268 + "_nin": [ + 255 ], "__typename": [ - 78 + 80 ] }, - "db_backups_order_by": { - "created_at": [ - 2829 - ], - "id": [ - 2829 - ], - "name": [ - 2829 - ], - "size": [ - 2829 + "clip_render_jobs": { + "clip": [ + 2308 ], - "__typename": [ - 78 - ] - }, - "db_backups_pk_columns_input": { - "id": [ - 4921 + "clip_id": [ + 4993 ], - "__typename": [ - 78 - ] - }, - "db_backups_select_column": {}, - "db_backups_set_input": { "created_at": [ - 4376 - ], - "id": [ - 4921 - ], - "name": [ - 78 - ], - "size": [ - 38 - ], - "__typename": [ - 78 - ] - }, - "db_backups_stddev_fields": { - "size": [ - 29 - ], - "__typename": [ - 78 - ] - }, - "db_backups_stddev_pop_fields": { - "size": [ - 29 - ], - "__typename": [ - 78 - ] - }, - "db_backups_stddev_samp_fields": { - "size": [ - 29 + 4493 ], - "__typename": [ - 78 - ] - }, - "db_backups_stream_cursor_input": { - "initial_value": [ - 284 + "error_message": [ + 80 ], - "ordering": [ - 236 + "game_server_node": [ + 1693 ], - "__typename": [ - 78 - ] - }, - "db_backups_stream_cursor_value_input": { - "created_at": [ - 4376 + "game_server_node_id": [ + 80 ], "id": [ - 4921 - ], - "name": [ - 78 - ], - "size": [ - 38 - ], - "__typename": [ - 78 - ] - }, - "db_backups_sum_fields": { - "size": [ - 38 - ], - "__typename": [ - 78 - ] - }, - "db_backups_update_column": {}, - "db_backups_updates": { - "_inc": [ - 270 - ], - "_set": [ - 279 + 4993 ], - "where": [ - 268 + "k8s_job_name": [ + 80 ], - "__typename": [ - 78 - ] - }, - "db_backups_var_pop_fields": { - "size": [ - 29 + "last_status_at": [ + 4493 ], - "__typename": [ - 78 - ] - }, - "db_backups_var_samp_fields": { - "size": [ - 29 + "match_map": [ + 2599 ], - "__typename": [ - 78 - ] - }, - "db_backups_variance_fields": { - "size": [ - 29 + "match_map_demo": [ + 2483 ], - "__typename": [ - 78 - ] - }, - "draft_game_picks": { - "auto_picked": [ - 3 + "match_map_demo_id": [ + 4993 ], - "captain": [ - 3787 + "match_map_id": [ + 4993 ], - "captain_steam_id": [ - 180 + "paused": [ + 5 ], - "created_at": [ - 4376 + "progress": [ + 2944 ], - "draft_game": [ - 381 + "session_token": [ + 80 ], - "draft_game_id": [ - 4921 + "sort_index": [ + 40 ], - "id": [ - 4921 + "spec": [ + 1817, + { + "path": [ + 80 + ] + } ], - "is_organizer": [ - 3 + "status": [ + 80 ], - "lineup": [ - 38 + "status_history": [ + 1817, + { + "path": [ + 80 + ] + } ], - "picked": [ - 3787 + "user": [ + 3904 ], - "picked_steam_id": [ - 180 + "user_steam_id": [ + 252 ], "__typename": [ - 78 + 80 ] }, - "draft_game_picks_aggregate": { + "clip_render_jobs_aggregate": { "aggregate": [ - 297 + 263 ], "nodes": [ - 291 + 257 ], "__typename": [ - 78 + 80 ] }, - "draft_game_picks_aggregate_bool_exp": { + "clip_render_jobs_aggregate_bool_exp": { "bool_and": [ - 294 + 260 ], "bool_or": [ - 295 + 261 ], "count": [ - 296 + 262 ], "__typename": [ - 78 + 80 ] }, - "draft_game_picks_aggregate_bool_exp_bool_and": { + "clip_render_jobs_aggregate_bool_exp_bool_and": { "arguments": [ - 315 + 286 ], "distinct": [ - 3 + 5 ], "filter": [ - 302 + 269 ], "predicate": [ - 4 + 6 ], "__typename": [ - 78 + 80 ] }, - "draft_game_picks_aggregate_bool_exp_bool_or": { + "clip_render_jobs_aggregate_bool_exp_bool_or": { "arguments": [ - 316 + 287 ], "distinct": [ - 3 + 5 ], "filter": [ - 302 + 269 ], "predicate": [ - 4 + 6 ], "__typename": [ - 78 + 80 ] }, - "draft_game_picks_aggregate_bool_exp_count": { + "clip_render_jobs_aggregate_bool_exp_count": { "arguments": [ - 314 + 285 ], "distinct": [ - 3 + 5 ], "filter": [ - 302 + 269 ], "predicate": [ - 39 + 41 ], "__typename": [ - 78 + 80 ] }, - "draft_game_picks_aggregate_fields": { + "clip_render_jobs_aggregate_fields": { "avg": [ - 300 + 267 ], "count": [ - 38, + 40, { "columns": [ - 314, - "[draft_game_picks_select_column!]" + 285, + "[clip_render_jobs_select_column!]" ], "distinct": [ - 3 + 5 ] } ], "max": [ - 306 + 276 ], "min": [ - 308 + 278 ], "stddev": [ - 318 + 289 ], "stddev_pop": [ - 320 + 291 ], "stddev_samp": [ - 322 + 293 ], "sum": [ - 326 + 297 ], "var_pop": [ - 330 + 301 ], "var_samp": [ - 332 + 303 ], "variance": [ - 334 + 305 ], "__typename": [ - 78 + 80 ] }, - "draft_game_picks_aggregate_order_by": { + "clip_render_jobs_aggregate_order_by": { "avg": [ - 301 + 268 ], "count": [ - 2829 + 2946 ], "max": [ - 307 + 277 ], "min": [ - 309 + 279 ], "stddev": [ - 319 + 290 ], "stddev_pop": [ - 321 + 292 ], "stddev_samp": [ - 323 + 294 ], "sum": [ - 327 + 298 ], "var_pop": [ - 331 + 302 ], "var_samp": [ - 333 + 304 ], "variance": [ - 335 + 306 ], "__typename": [ - 78 + 80 ] }, - "draft_game_picks_arr_rel_insert_input": { + "clip_render_jobs_append_input": { + "spec": [ + 1817 + ], + "status_history": [ + 1817 + ], + "__typename": [ + 80 + ] + }, + "clip_render_jobs_arr_rel_insert_input": { "data": [ - 305 + 275 ], "on_conflict": [ - 311 + 281 ], "__typename": [ - 78 + 80 ] }, - "draft_game_picks_avg_fields": { - "captain_steam_id": [ - 29 + "clip_render_jobs_avg_fields": { + "progress": [ + 31 ], - "lineup": [ - 29 + "sort_index": [ + 31 ], - "picked_steam_id": [ - 29 + "user_steam_id": [ + 31 ], "__typename": [ - 78 + 80 ] }, - "draft_game_picks_avg_order_by": { - "captain_steam_id": [ - 2829 + "clip_render_jobs_avg_order_by": { + "progress": [ + 2946 ], - "lineup": [ - 2829 + "sort_index": [ + 2946 ], - "picked_steam_id": [ - 2829 + "user_steam_id": [ + 2946 ], "__typename": [ - 78 + 80 ] }, - "draft_game_picks_bool_exp": { + "clip_render_jobs_bool_exp": { "_and": [ - 302 + 269 ], "_not": [ - 302 + 269 ], "_or": [ - 302 - ], - "auto_picked": [ - 4 + 269 ], - "captain": [ - 3791 + "clip": [ + 2317 ], - "captain_steam_id": [ - 182 + "clip_id": [ + 4995 ], "created_at": [ - 4377 + 4494 ], - "draft_game": [ - 392 + "error_message": [ + 82 ], - "draft_game_id": [ - 4923 + "game_server_node": [ + 1705 + ], + "game_server_node_id": [ + 82 ], "id": [ - 4923 + 4995 ], - "is_organizer": [ - 4 + "k8s_job_name": [ + 82 ], - "lineup": [ - 39 + "last_status_at": [ + 4494 ], - "picked": [ - 3791 + "match_map": [ + 2608 ], - "picked_steam_id": [ - 182 + "match_map_demo": [ + 2495 ], - "__typename": [ - 78 - ] - }, - "draft_game_picks_constraint": {}, - "draft_game_picks_inc_input": { - "captain_steam_id": [ - 180 + "match_map_demo_id": [ + 4995 ], - "lineup": [ - 38 + "match_map_id": [ + 4995 ], - "picked_steam_id": [ - 180 + "paused": [ + 6 ], - "__typename": [ - 78 - ] - }, - "draft_game_picks_insert_input": { - "auto_picked": [ - 3 + "progress": [ + 2945 ], - "captain": [ - 3798 + "session_token": [ + 82 ], - "captain_steam_id": [ - 180 + "sort_index": [ + 41 + ], + "spec": [ + 1819 + ], + "status": [ + 82 + ], + "status_history": [ + 1819 + ], + "user": [ + 3908 + ], + "user_steam_id": [ + 254 + ], + "__typename": [ + 80 + ] + }, + "clip_render_jobs_constraint": {}, + "clip_render_jobs_delete_at_path_input": { + "spec": [ + 80 + ], + "status_history": [ + 80 + ], + "__typename": [ + 80 + ] + }, + "clip_render_jobs_delete_elem_input": { + "spec": [ + 40 + ], + "status_history": [ + 40 + ], + "__typename": [ + 80 + ] + }, + "clip_render_jobs_delete_key_input": { + "spec": [ + 80 + ], + "status_history": [ + 80 + ], + "__typename": [ + 80 + ] + }, + "clip_render_jobs_inc_input": { + "progress": [ + 2944 + ], + "sort_index": [ + 40 + ], + "user_steam_id": [ + 252 + ], + "__typename": [ + 80 + ] + }, + "clip_render_jobs_insert_input": { + "clip": [ + 2326 + ], + "clip_id": [ + 4993 ], "created_at": [ - 4376 + 4493 ], - "draft_game": [ - 401 + "error_message": [ + 80 ], - "draft_game_id": [ - 4921 + "game_server_node": [ + 1717 + ], + "game_server_node_id": [ + 80 ], "id": [ - 4921 + 4993 ], - "lineup": [ - 38 + "k8s_job_name": [ + 80 ], - "picked": [ - 3798 + "last_status_at": [ + 4493 ], - "picked_steam_id": [ - 180 + "match_map": [ + 2617 + ], + "match_map_demo": [ + 2507 + ], + "match_map_demo_id": [ + 4993 + ], + "match_map_id": [ + 4993 + ], + "paused": [ + 5 + ], + "progress": [ + 2944 + ], + "session_token": [ + 80 + ], + "sort_index": [ + 40 + ], + "spec": [ + 1817 + ], + "status": [ + 80 + ], + "status_history": [ + 1817 + ], + "user": [ + 3915 + ], + "user_steam_id": [ + 252 ], "__typename": [ - 78 + 80 ] }, - "draft_game_picks_max_fields": { - "captain_steam_id": [ - 180 + "clip_render_jobs_max_fields": { + "clip_id": [ + 4993 ], "created_at": [ - 4376 + 4493 ], - "draft_game_id": [ - 4921 + "error_message": [ + 80 + ], + "game_server_node_id": [ + 80 ], "id": [ - 4921 + 4993 ], - "lineup": [ - 38 + "k8s_job_name": [ + 80 ], - "picked_steam_id": [ - 180 + "last_status_at": [ + 4493 + ], + "match_map_demo_id": [ + 4993 + ], + "match_map_id": [ + 4993 + ], + "progress": [ + 2944 + ], + "session_token": [ + 80 + ], + "sort_index": [ + 40 + ], + "status": [ + 80 + ], + "user_steam_id": [ + 252 ], "__typename": [ - 78 + 80 ] }, - "draft_game_picks_max_order_by": { - "captain_steam_id": [ - 2829 + "clip_render_jobs_max_order_by": { + "clip_id": [ + 2946 ], "created_at": [ - 2829 + 2946 ], - "draft_game_id": [ - 2829 + "error_message": [ + 2946 + ], + "game_server_node_id": [ + 2946 ], "id": [ - 2829 + 2946 ], - "lineup": [ - 2829 + "k8s_job_name": [ + 2946 ], - "picked_steam_id": [ - 2829 + "last_status_at": [ + 2946 + ], + "match_map_demo_id": [ + 2946 + ], + "match_map_id": [ + 2946 + ], + "progress": [ + 2946 + ], + "session_token": [ + 2946 + ], + "sort_index": [ + 2946 + ], + "status": [ + 2946 + ], + "user_steam_id": [ + 2946 ], "__typename": [ - 78 + 80 ] }, - "draft_game_picks_min_fields": { - "captain_steam_id": [ - 180 + "clip_render_jobs_min_fields": { + "clip_id": [ + 4993 ], "created_at": [ - 4376 + 4493 ], - "draft_game_id": [ - 4921 + "error_message": [ + 80 + ], + "game_server_node_id": [ + 80 ], "id": [ - 4921 + 4993 ], - "lineup": [ - 38 + "k8s_job_name": [ + 80 ], - "picked_steam_id": [ - 180 + "last_status_at": [ + 4493 + ], + "match_map_demo_id": [ + 4993 + ], + "match_map_id": [ + 4993 + ], + "progress": [ + 2944 + ], + "session_token": [ + 80 + ], + "sort_index": [ + 40 + ], + "status": [ + 80 + ], + "user_steam_id": [ + 252 ], "__typename": [ - 78 + 80 ] }, - "draft_game_picks_min_order_by": { - "captain_steam_id": [ - 2829 + "clip_render_jobs_min_order_by": { + "clip_id": [ + 2946 ], "created_at": [ - 2829 + 2946 ], - "draft_game_id": [ - 2829 + "error_message": [ + 2946 + ], + "game_server_node_id": [ + 2946 ], "id": [ - 2829 + 2946 ], - "lineup": [ - 2829 + "k8s_job_name": [ + 2946 ], - "picked_steam_id": [ - 2829 + "last_status_at": [ + 2946 + ], + "match_map_demo_id": [ + 2946 + ], + "match_map_id": [ + 2946 + ], + "progress": [ + 2946 + ], + "session_token": [ + 2946 + ], + "sort_index": [ + 2946 + ], + "status": [ + 2946 + ], + "user_steam_id": [ + 2946 ], "__typename": [ - 78 + 80 ] }, - "draft_game_picks_mutation_response": { + "clip_render_jobs_mutation_response": { "affected_rows": [ - 38 + 40 ], "returning": [ - 291 + 257 ], "__typename": [ - 78 + 80 ] }, - "draft_game_picks_on_conflict": { + "clip_render_jobs_on_conflict": { "constraint": [ - 303 + 270 ], "update_columns": [ - 328 + 299 ], "where": [ - 302 + 269 ], "__typename": [ - 78 + 80 ] }, - "draft_game_picks_order_by": { - "auto_picked": [ - 2829 - ], - "captain": [ - 3800 + "clip_render_jobs_order_by": { + "clip": [ + 2328 ], - "captain_steam_id": [ - 2829 + "clip_id": [ + 2946 ], "created_at": [ - 2829 + 2946 ], - "draft_game": [ - 403 + "error_message": [ + 2946 ], - "draft_game_id": [ - 2829 + "game_server_node": [ + 1719 + ], + "game_server_node_id": [ + 2946 ], "id": [ - 2829 + 2946 ], - "is_organizer": [ - 2829 + "k8s_job_name": [ + 2946 ], - "lineup": [ - 2829 + "last_status_at": [ + 2946 ], - "picked": [ - 3800 + "match_map": [ + 2619 ], - "picked_steam_id": [ - 2829 + "match_map_demo": [ + 2509 + ], + "match_map_demo_id": [ + 2946 + ], + "match_map_id": [ + 2946 + ], + "paused": [ + 2946 + ], + "progress": [ + 2946 + ], + "session_token": [ + 2946 + ], + "sort_index": [ + 2946 + ], + "spec": [ + 2946 + ], + "status": [ + 2946 + ], + "status_history": [ + 2946 + ], + "user": [ + 3917 + ], + "user_steam_id": [ + 2946 ], "__typename": [ - 78 + 80 ] }, - "draft_game_picks_pk_columns_input": { + "clip_render_jobs_pk_columns_input": { "id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, - "draft_game_picks_select_column": {}, - "draft_game_picks_select_column_draft_game_picks_aggregate_bool_exp_bool_and_arguments_columns": {}, - "draft_game_picks_select_column_draft_game_picks_aggregate_bool_exp_bool_or_arguments_columns": {}, - "draft_game_picks_set_input": { - "auto_picked": [ - 3 + "clip_render_jobs_prepend_input": { + "spec": [ + 1817 ], - "captain_steam_id": [ - 180 + "status_history": [ + 1817 + ], + "__typename": [ + 80 + ] + }, + "clip_render_jobs_select_column": {}, + "clip_render_jobs_select_column_clip_render_jobs_aggregate_bool_exp_bool_and_arguments_columns": {}, + "clip_render_jobs_select_column_clip_render_jobs_aggregate_bool_exp_bool_or_arguments_columns": {}, + "clip_render_jobs_set_input": { + "clip_id": [ + 4993 ], "created_at": [ - 4376 + 4493 ], - "draft_game_id": [ - 4921 + "error_message": [ + 80 + ], + "game_server_node_id": [ + 80 ], "id": [ - 4921 + 4993 ], - "lineup": [ - 38 + "k8s_job_name": [ + 80 ], - "picked_steam_id": [ - 180 + "last_status_at": [ + 4493 + ], + "match_map_demo_id": [ + 4993 + ], + "match_map_id": [ + 4993 + ], + "paused": [ + 5 + ], + "progress": [ + 2944 + ], + "session_token": [ + 80 + ], + "sort_index": [ + 40 + ], + "spec": [ + 1817 + ], + "status": [ + 80 + ], + "status_history": [ + 1817 + ], + "user_steam_id": [ + 252 ], "__typename": [ - 78 + 80 ] }, - "draft_game_picks_stddev_fields": { - "captain_steam_id": [ - 29 + "clip_render_jobs_stddev_fields": { + "progress": [ + 31 ], - "lineup": [ - 29 + "sort_index": [ + 31 ], - "picked_steam_id": [ - 29 + "user_steam_id": [ + 31 ], "__typename": [ - 78 + 80 ] }, - "draft_game_picks_stddev_order_by": { - "captain_steam_id": [ - 2829 + "clip_render_jobs_stddev_order_by": { + "progress": [ + 2946 ], - "lineup": [ - 2829 + "sort_index": [ + 2946 ], - "picked_steam_id": [ - 2829 + "user_steam_id": [ + 2946 ], "__typename": [ - 78 + 80 ] }, - "draft_game_picks_stddev_pop_fields": { - "captain_steam_id": [ - 29 + "clip_render_jobs_stddev_pop_fields": { + "progress": [ + 31 ], - "lineup": [ - 29 + "sort_index": [ + 31 ], - "picked_steam_id": [ - 29 + "user_steam_id": [ + 31 ], "__typename": [ - 78 + 80 ] }, - "draft_game_picks_stddev_pop_order_by": { - "captain_steam_id": [ - 2829 + "clip_render_jobs_stddev_pop_order_by": { + "progress": [ + 2946 ], - "lineup": [ - 2829 + "sort_index": [ + 2946 ], - "picked_steam_id": [ - 2829 + "user_steam_id": [ + 2946 ], "__typename": [ - 78 + 80 ] }, - "draft_game_picks_stddev_samp_fields": { - "captain_steam_id": [ - 29 + "clip_render_jobs_stddev_samp_fields": { + "progress": [ + 31 ], - "lineup": [ - 29 + "sort_index": [ + 31 ], - "picked_steam_id": [ - 29 + "user_steam_id": [ + 31 ], "__typename": [ - 78 + 80 ] }, - "draft_game_picks_stddev_samp_order_by": { - "captain_steam_id": [ - 2829 + "clip_render_jobs_stddev_samp_order_by": { + "progress": [ + 2946 ], - "lineup": [ - 2829 + "sort_index": [ + 2946 ], - "picked_steam_id": [ - 2829 + "user_steam_id": [ + 2946 ], "__typename": [ - 78 + 80 ] }, - "draft_game_picks_stream_cursor_input": { + "clip_render_jobs_stream_cursor_input": { "initial_value": [ - 325 + 296 ], "ordering": [ - 236 + 308 ], "__typename": [ - 78 + 80 ] }, - "draft_game_picks_stream_cursor_value_input": { - "auto_picked": [ - 3 - ], - "captain_steam_id": [ - 180 + "clip_render_jobs_stream_cursor_value_input": { + "clip_id": [ + 4993 ], "created_at": [ - 4376 + 4493 ], - "draft_game_id": [ - 4921 + "error_message": [ + 80 + ], + "game_server_node_id": [ + 80 ], "id": [ - 4921 + 4993 ], - "lineup": [ - 38 + "k8s_job_name": [ + 80 ], - "picked_steam_id": [ - 180 + "last_status_at": [ + 4493 + ], + "match_map_demo_id": [ + 4993 + ], + "match_map_id": [ + 4993 + ], + "paused": [ + 5 + ], + "progress": [ + 2944 + ], + "session_token": [ + 80 + ], + "sort_index": [ + 40 + ], + "spec": [ + 1817 + ], + "status": [ + 80 + ], + "status_history": [ + 1817 + ], + "user_steam_id": [ + 252 ], "__typename": [ - 78 + 80 ] }, - "draft_game_picks_sum_fields": { - "captain_steam_id": [ - 180 + "clip_render_jobs_sum_fields": { + "progress": [ + 2944 ], - "lineup": [ - 38 + "sort_index": [ + 40 ], - "picked_steam_id": [ - 180 + "user_steam_id": [ + 252 ], "__typename": [ - 78 + 80 ] }, - "draft_game_picks_sum_order_by": { - "captain_steam_id": [ - 2829 + "clip_render_jobs_sum_order_by": { + "progress": [ + 2946 ], - "lineup": [ - 2829 + "sort_index": [ + 2946 ], - "picked_steam_id": [ - 2829 + "user_steam_id": [ + 2946 ], "__typename": [ - 78 + 80 ] }, - "draft_game_picks_update_column": {}, - "draft_game_picks_updates": { + "clip_render_jobs_update_column": {}, + "clip_render_jobs_updates": { + "_append": [ + 265 + ], + "_delete_at_path": [ + 271 + ], + "_delete_elem": [ + 272 + ], + "_delete_key": [ + 273 + ], "_inc": [ - 304 + 274 + ], + "_prepend": [ + 284 ], "_set": [ - 317 + 288 ], "where": [ - 302 + 269 ], "__typename": [ - 78 + 80 ] }, - "draft_game_picks_var_pop_fields": { - "captain_steam_id": [ - 29 + "clip_render_jobs_var_pop_fields": { + "progress": [ + 31 ], - "lineup": [ - 29 + "sort_index": [ + 31 ], - "picked_steam_id": [ - 29 + "user_steam_id": [ + 31 ], "__typename": [ - 78 + 80 ] }, - "draft_game_picks_var_pop_order_by": { - "captain_steam_id": [ - 2829 + "clip_render_jobs_var_pop_order_by": { + "progress": [ + 2946 ], - "lineup": [ - 2829 + "sort_index": [ + 2946 ], - "picked_steam_id": [ - 2829 + "user_steam_id": [ + 2946 ], "__typename": [ - 78 + 80 ] }, - "draft_game_picks_var_samp_fields": { - "captain_steam_id": [ - 29 + "clip_render_jobs_var_samp_fields": { + "progress": [ + 31 ], - "lineup": [ - 29 + "sort_index": [ + 31 ], - "picked_steam_id": [ - 29 + "user_steam_id": [ + 31 ], "__typename": [ - 78 + 80 ] }, - "draft_game_picks_var_samp_order_by": { - "captain_steam_id": [ - 2829 + "clip_render_jobs_var_samp_order_by": { + "progress": [ + 2946 ], - "lineup": [ - 2829 + "sort_index": [ + 2946 ], - "picked_steam_id": [ - 2829 + "user_steam_id": [ + 2946 ], "__typename": [ - 78 + 80 ] }, - "draft_game_picks_variance_fields": { - "captain_steam_id": [ - 29 + "clip_render_jobs_variance_fields": { + "progress": [ + 31 ], - "lineup": [ - 29 + "sort_index": [ + 31 ], - "picked_steam_id": [ - 29 + "user_steam_id": [ + 31 ], "__typename": [ - 78 + 80 ] }, - "draft_game_picks_variance_order_by": { - "captain_steam_id": [ - 2829 + "clip_render_jobs_variance_order_by": { + "progress": [ + 2946 ], - "lineup": [ - 2829 + "sort_index": [ + 2946 ], - "picked_steam_id": [ - 2829 + "user_steam_id": [ + 2946 ], "__typename": [ - 78 + 80 ] }, - "draft_game_players": { - "draft_game": [ - 381 - ], - "draft_game_id": [ - 4921 - ], - "e_draft_game_player_status": [ - 510 - ], - "elo_snapshot": [ - 38 - ], - "is_captain": [ - 3 - ], - "is_organizer": [ - 3 - ], - "joined_at": [ - 4376 - ], - "lineup": [ - 38 + "clone_league_season_args": { + "_league_season_id": [ + 4993 ], - "pick_order": [ - 38 + "__typename": [ + 80 + ] + }, + "cursor_ordering": {}, + "custom_pages": { + "created_at": [ + 4493 ], - "player": [ - 3787 + "deployments": [ + 1817, + { + "path": [ + 80 + ] + } ], - "status": [ - 515 + "enabled": [ + 5 ], - "steam_id": [ - 180 + "exposed_module": [ + 80 ], - "__typename": [ - 78 - ] - }, - "draft_game_players_aggregate": { - "aggregate": [ - 342 + "icon": [ + 80 ], - "nodes": [ - 336 + "id": [ + 4993 ], - "__typename": [ - 78 - ] - }, - "draft_game_players_aggregate_bool_exp": { - "bool_and": [ - 339 + "is_default": [ + 5 ], - "bool_or": [ - 340 + "manifest_url": [ + 80 ], - "count": [ - 341 + "nav_group": [ + 80 ], - "__typename": [ - 78 - ] - }, - "draft_game_players_aggregate_bool_exp_bool_and": { - "arguments": [ - 360 + "nav_order": [ + 40 ], - "distinct": [ - 3 + "profile_tab_label": [ + 80 ], - "filter": [ - 347 + "remote_entry_url": [ + 80 ], - "predicate": [ - 4 + "remote_scope": [ + 80 ], - "__typename": [ - 78 - ] - }, - "draft_game_players_aggregate_bool_exp_bool_or": { - "arguments": [ - 361 + "required_role": [ + 1065 ], - "distinct": [ - 3 + "slug": [ + 80 ], - "filter": [ - 347 + "title": [ + 80 ], - "predicate": [ - 4 + "updated_at": [ + 4493 ], "__typename": [ - 78 + 80 ] }, - "draft_game_players_aggregate_bool_exp_count": { - "arguments": [ - 359 - ], - "distinct": [ - 3 - ], - "filter": [ - 347 + "custom_pages_aggregate": { + "aggregate": [ + 311 ], - "predicate": [ - 39 + "nodes": [ + 309 ], "__typename": [ - 78 + 80 ] }, - "draft_game_players_aggregate_fields": { + "custom_pages_aggregate_fields": { "avg": [ - 345 + 313 ], "count": [ - 38, + 40, { "columns": [ - 359, - "[draft_game_players_select_column!]" + 328, + "[custom_pages_select_column!]" ], "distinct": [ - 3 + 5 ] } ], "max": [ - 351 + 321 ], "min": [ - 353 + 322 ], "stddev": [ - 363 + 330 ], "stddev_pop": [ - 365 + 331 ], "stddev_samp": [ - 367 + 332 ], "sum": [ - 371 + 335 ], "var_pop": [ - 375 + 338 ], "var_samp": [ - 377 + 339 ], "variance": [ - 379 + 340 ], "__typename": [ - 78 + 80 ] }, - "draft_game_players_aggregate_order_by": { - "avg": [ - 346 - ], - "count": [ - 2829 - ], - "max": [ - 352 - ], - "min": [ - 354 - ], - "stddev": [ - 364 - ], - "stddev_pop": [ - 366 - ], - "stddev_samp": [ - 368 - ], - "sum": [ - 372 - ], - "var_pop": [ - 376 - ], - "var_samp": [ - 378 - ], - "variance": [ - 380 + "custom_pages_append_input": { + "deployments": [ + 1817 ], "__typename": [ - 78 + 80 ] }, - "draft_game_players_arr_rel_insert_input": { - "data": [ - 350 - ], - "on_conflict": [ - 356 + "custom_pages_avg_fields": { + "nav_order": [ + 31 ], "__typename": [ - 78 + 80 ] }, - "draft_game_players_avg_fields": { - "elo_snapshot": [ - 29 - ], - "lineup": [ - 29 - ], - "pick_order": [ - 29 - ], - "steam_id": [ - 29 + "custom_pages_bool_exp": { + "_and": [ + 314 ], - "__typename": [ - 78 - ] - }, - "draft_game_players_avg_order_by": { - "elo_snapshot": [ - 2829 + "_not": [ + 314 ], - "lineup": [ - 2829 + "_or": [ + 314 ], - "pick_order": [ - 2829 + "created_at": [ + 4494 ], - "steam_id": [ - 2829 + "deployments": [ + 1819 ], - "__typename": [ - 78 - ] - }, - "draft_game_players_bool_exp": { - "_and": [ - 347 + "enabled": [ + 6 ], - "_not": [ - 347 + "exposed_module": [ + 82 ], - "_or": [ - 347 + "icon": [ + 82 ], - "draft_game": [ - 392 + "id": [ + 4995 ], - "draft_game_id": [ - 4923 + "is_default": [ + 6 ], - "e_draft_game_player_status": [ - 513 + "manifest_url": [ + 82 ], - "elo_snapshot": [ - 39 + "nav_group": [ + 82 ], - "is_captain": [ - 4 + "nav_order": [ + 41 ], - "is_organizer": [ - 4 + "profile_tab_label": [ + 82 ], - "joined_at": [ - 4377 + "remote_entry_url": [ + 82 ], - "lineup": [ - 39 + "remote_scope": [ + 82 ], - "pick_order": [ - 39 + "required_role": [ + 1066 ], - "player": [ - 3791 + "slug": [ + 82 ], - "status": [ - 516 + "title": [ + 82 ], - "steam_id": [ - 182 + "updated_at": [ + 4494 ], "__typename": [ - 78 + 80 ] }, - "draft_game_players_constraint": {}, - "draft_game_players_inc_input": { - "elo_snapshot": [ - 38 + "custom_pages_constraint": {}, + "custom_pages_delete_at_path_input": { + "deployments": [ + 80 ], - "lineup": [ - 38 + "__typename": [ + 80 + ] + }, + "custom_pages_delete_elem_input": { + "deployments": [ + 40 ], - "pick_order": [ - 38 + "__typename": [ + 80 + ] + }, + "custom_pages_delete_key_input": { + "deployments": [ + 80 ], - "steam_id": [ - 180 + "__typename": [ + 80 + ] + }, + "custom_pages_inc_input": { + "nav_order": [ + 40 ], "__typename": [ - 78 + 80 ] }, - "draft_game_players_insert_input": { - "draft_game": [ - 401 + "custom_pages_insert_input": { + "created_at": [ + 4493 ], - "draft_game_id": [ - 4921 + "deployments": [ + 1817 ], - "e_draft_game_player_status": [ - 521 + "enabled": [ + 5 ], - "elo_snapshot": [ - 38 + "exposed_module": [ + 80 ], - "is_captain": [ - 3 + "icon": [ + 80 ], - "joined_at": [ - 4376 + "id": [ + 4993 ], - "lineup": [ - 38 + "is_default": [ + 5 ], - "pick_order": [ - 38 + "manifest_url": [ + 80 ], - "player": [ - 3798 + "nav_group": [ + 80 ], - "status": [ - 515 + "nav_order": [ + 40 ], - "steam_id": [ - 180 + "profile_tab_label": [ + 80 ], - "__typename": [ - 78 - ] - }, - "draft_game_players_max_fields": { - "draft_game_id": [ - 4921 + "remote_entry_url": [ + 80 ], - "elo_snapshot": [ - 38 + "remote_scope": [ + 80 ], - "joined_at": [ - 4376 + "required_role": [ + 1065 ], - "lineup": [ - 38 + "slug": [ + 80 ], - "pick_order": [ - 38 + "title": [ + 80 ], - "steam_id": [ - 180 + "updated_at": [ + 4493 ], "__typename": [ - 78 + 80 ] }, - "draft_game_players_max_order_by": { - "draft_game_id": [ - 2829 + "custom_pages_max_fields": { + "created_at": [ + 4493 ], - "elo_snapshot": [ - 2829 + "exposed_module": [ + 80 ], - "joined_at": [ - 2829 + "icon": [ + 80 ], - "lineup": [ - 2829 + "id": [ + 4993 ], - "pick_order": [ - 2829 + "manifest_url": [ + 80 ], - "steam_id": [ - 2829 + "nav_group": [ + 80 ], - "__typename": [ - 78 - ] - }, - "draft_game_players_min_fields": { - "draft_game_id": [ - 4921 + "nav_order": [ + 40 ], - "elo_snapshot": [ - 38 + "profile_tab_label": [ + 80 ], - "joined_at": [ - 4376 + "remote_entry_url": [ + 80 ], - "lineup": [ - 38 + "remote_scope": [ + 80 ], - "pick_order": [ - 38 + "slug": [ + 80 ], - "steam_id": [ - 180 + "title": [ + 80 + ], + "updated_at": [ + 4493 ], "__typename": [ - 78 + 80 ] }, - "draft_game_players_min_order_by": { - "draft_game_id": [ - 2829 + "custom_pages_min_fields": { + "created_at": [ + 4493 ], - "elo_snapshot": [ - 2829 + "exposed_module": [ + 80 ], - "joined_at": [ - 2829 + "icon": [ + 80 ], - "lineup": [ - 2829 + "id": [ + 4993 ], - "pick_order": [ - 2829 + "manifest_url": [ + 80 ], - "steam_id": [ - 2829 + "nav_group": [ + 80 + ], + "nav_order": [ + 40 + ], + "profile_tab_label": [ + 80 + ], + "remote_entry_url": [ + 80 + ], + "remote_scope": [ + 80 + ], + "slug": [ + 80 + ], + "title": [ + 80 + ], + "updated_at": [ + 4493 ], "__typename": [ - 78 + 80 ] }, - "draft_game_players_mutation_response": { + "custom_pages_mutation_response": { "affected_rows": [ - 38 + 40 ], "returning": [ - 336 + 309 ], "__typename": [ - 78 + 80 ] }, - "draft_game_players_on_conflict": { + "custom_pages_on_conflict": { "constraint": [ - 348 + 315 ], "update_columns": [ - 373 + 336 ], "where": [ - 347 + 314 ], "__typename": [ - 78 + 80 ] }, - "draft_game_players_order_by": { - "draft_game": [ - 403 + "custom_pages_order_by": { + "created_at": [ + 2946 ], - "draft_game_id": [ - 2829 + "deployments": [ + 2946 ], - "e_draft_game_player_status": [ - 523 + "enabled": [ + 2946 ], - "elo_snapshot": [ - 2829 + "exposed_module": [ + 2946 ], - "is_captain": [ - 2829 + "icon": [ + 2946 ], - "is_organizer": [ - 2829 + "id": [ + 2946 ], - "joined_at": [ - 2829 + "is_default": [ + 2946 ], - "lineup": [ - 2829 + "manifest_url": [ + 2946 ], - "pick_order": [ - 2829 + "nav_group": [ + 2946 ], - "player": [ - 3800 + "nav_order": [ + 2946 ], - "status": [ - 2829 + "profile_tab_label": [ + 2946 ], - "steam_id": [ - 2829 + "remote_entry_url": [ + 2946 + ], + "remote_scope": [ + 2946 + ], + "required_role": [ + 2946 + ], + "slug": [ + 2946 + ], + "title": [ + 2946 + ], + "updated_at": [ + 2946 ], "__typename": [ - 78 + 80 ] }, - "draft_game_players_pk_columns_input": { - "draft_game_id": [ - 4921 + "custom_pages_pk_columns_input": { + "id": [ + 4993 ], - "steam_id": [ - 180 + "__typename": [ + 80 + ] + }, + "custom_pages_prepend_input": { + "deployments": [ + 1817 ], "__typename": [ - 78 + 80 ] }, - "draft_game_players_select_column": {}, - "draft_game_players_select_column_draft_game_players_aggregate_bool_exp_bool_and_arguments_columns": {}, - "draft_game_players_select_column_draft_game_players_aggregate_bool_exp_bool_or_arguments_columns": {}, - "draft_game_players_set_input": { - "draft_game_id": [ - 4921 + "custom_pages_select_column": {}, + "custom_pages_set_input": { + "created_at": [ + 4493 ], - "elo_snapshot": [ - 38 + "deployments": [ + 1817 ], - "is_captain": [ - 3 + "enabled": [ + 5 ], - "joined_at": [ - 4376 + "exposed_module": [ + 80 ], - "lineup": [ - 38 + "icon": [ + 80 ], - "pick_order": [ - 38 + "id": [ + 4993 ], - "status": [ - 515 + "is_default": [ + 5 ], - "steam_id": [ - 180 + "manifest_url": [ + 80 ], - "__typename": [ - 78 - ] - }, - "draft_game_players_stddev_fields": { - "elo_snapshot": [ - 29 + "nav_group": [ + 80 ], - "lineup": [ - 29 + "nav_order": [ + 40 ], - "pick_order": [ - 29 + "profile_tab_label": [ + 80 ], - "steam_id": [ - 29 + "remote_entry_url": [ + 80 ], - "__typename": [ - 78 - ] - }, - "draft_game_players_stddev_order_by": { - "elo_snapshot": [ - 2829 + "remote_scope": [ + 80 ], - "lineup": [ - 2829 + "required_role": [ + 1065 ], - "pick_order": [ - 2829 + "slug": [ + 80 ], - "steam_id": [ - 2829 + "title": [ + 80 + ], + "updated_at": [ + 4493 ], "__typename": [ - 78 + 80 ] }, - "draft_game_players_stddev_pop_fields": { - "elo_snapshot": [ - 29 - ], - "lineup": [ - 29 - ], - "pick_order": [ - 29 - ], - "steam_id": [ - 29 + "custom_pages_stddev_fields": { + "nav_order": [ + 31 ], "__typename": [ - 78 + 80 ] }, - "draft_game_players_stddev_pop_order_by": { - "elo_snapshot": [ - 2829 + "custom_pages_stddev_pop_fields": { + "nav_order": [ + 31 ], - "lineup": [ - 2829 + "__typename": [ + 80 + ] + }, + "custom_pages_stddev_samp_fields": { + "nav_order": [ + 31 ], - "pick_order": [ - 2829 + "__typename": [ + 80 + ] + }, + "custom_pages_stream_cursor_input": { + "initial_value": [ + 334 ], - "steam_id": [ - 2829 + "ordering": [ + 308 ], "__typename": [ - 78 + 80 ] }, - "draft_game_players_stddev_samp_fields": { - "elo_snapshot": [ - 29 + "custom_pages_stream_cursor_value_input": { + "created_at": [ + 4493 ], - "lineup": [ - 29 + "deployments": [ + 1817 ], - "pick_order": [ - 29 + "enabled": [ + 5 ], - "steam_id": [ - 29 + "exposed_module": [ + 80 ], - "__typename": [ - 78 - ] - }, - "draft_game_players_stddev_samp_order_by": { - "elo_snapshot": [ - 2829 + "icon": [ + 80 ], - "lineup": [ - 2829 + "id": [ + 4993 ], - "pick_order": [ - 2829 + "is_default": [ + 5 ], - "steam_id": [ - 2829 + "manifest_url": [ + 80 + ], + "nav_group": [ + 80 + ], + "nav_order": [ + 40 + ], + "profile_tab_label": [ + 80 + ], + "remote_entry_url": [ + 80 + ], + "remote_scope": [ + 80 + ], + "required_role": [ + 1065 + ], + "slug": [ + 80 + ], + "title": [ + 80 + ], + "updated_at": [ + 4493 ], "__typename": [ - 78 + 80 ] }, - "draft_game_players_stream_cursor_input": { - "initial_value": [ - 370 - ], - "ordering": [ - 236 + "custom_pages_sum_fields": { + "nav_order": [ + 40 ], "__typename": [ - 78 + 80 ] }, - "draft_game_players_stream_cursor_value_input": { - "draft_game_id": [ - 4921 + "custom_pages_update_column": {}, + "custom_pages_updates": { + "_append": [ + 312 ], - "elo_snapshot": [ - 38 + "_delete_at_path": [ + 316 ], - "is_captain": [ - 3 + "_delete_elem": [ + 317 ], - "joined_at": [ - 4376 + "_delete_key": [ + 318 ], - "lineup": [ - 38 + "_inc": [ + 319 ], - "pick_order": [ - 38 + "_prepend": [ + 327 ], - "status": [ - 515 + "_set": [ + 329 ], - "steam_id": [ - 180 + "where": [ + 314 ], "__typename": [ - 78 + 80 ] }, - "draft_game_players_sum_fields": { - "elo_snapshot": [ - 38 - ], - "lineup": [ - 38 + "custom_pages_var_pop_fields": { + "nav_order": [ + 31 ], - "pick_order": [ - 38 + "__typename": [ + 80 + ] + }, + "custom_pages_var_samp_fields": { + "nav_order": [ + 31 ], - "steam_id": [ - 180 + "__typename": [ + 80 + ] + }, + "custom_pages_variance_fields": { + "nav_order": [ + 31 ], "__typename": [ - 78 + 80 ] }, - "draft_game_players_sum_order_by": { - "elo_snapshot": [ - 2829 + "db_backups": { + "created_at": [ + 4493 ], - "lineup": [ - 2829 + "id": [ + 4993 ], - "pick_order": [ - 2829 + "name": [ + 80 ], - "steam_id": [ - 2829 + "size": [ + 40 ], "__typename": [ - 78 + 80 ] }, - "draft_game_players_update_column": {}, - "draft_game_players_updates": { - "_inc": [ - 349 - ], - "_set": [ - 362 + "db_backups_aggregate": { + "aggregate": [ + 343 ], - "where": [ - 347 + "nodes": [ + 341 ], "__typename": [ - 78 + 80 ] }, - "draft_game_players_var_pop_fields": { - "elo_snapshot": [ - 29 + "db_backups_aggregate_fields": { + "avg": [ + 344 ], - "lineup": [ - 29 + "count": [ + 40, + { + "columns": [ + 355, + "[db_backups_select_column!]" + ], + "distinct": [ + 5 + ] + } ], - "pick_order": [ - 29 + "max": [ + 349 ], - "steam_id": [ - 29 + "min": [ + 350 ], - "__typename": [ - 78 - ] - }, - "draft_game_players_var_pop_order_by": { - "elo_snapshot": [ - 2829 + "stddev": [ + 357 ], - "lineup": [ - 2829 + "stddev_pop": [ + 358 ], - "pick_order": [ - 2829 + "stddev_samp": [ + 359 ], - "steam_id": [ - 2829 + "sum": [ + 362 ], - "__typename": [ - 78 - ] - }, - "draft_game_players_var_samp_fields": { - "elo_snapshot": [ - 29 + "var_pop": [ + 365 ], - "lineup": [ - 29 + "var_samp": [ + 366 ], - "pick_order": [ - 29 + "variance": [ + 367 ], - "steam_id": [ - 29 + "__typename": [ + 80 + ] + }, + "db_backups_avg_fields": { + "size": [ + 31 ], "__typename": [ - 78 + 80 ] }, - "draft_game_players_var_samp_order_by": { - "elo_snapshot": [ - 2829 + "db_backups_bool_exp": { + "_and": [ + 345 ], - "lineup": [ - 2829 + "_not": [ + 345 ], - "pick_order": [ - 2829 + "_or": [ + 345 ], - "steam_id": [ - 2829 + "created_at": [ + 4494 + ], + "id": [ + 4995 + ], + "name": [ + 82 + ], + "size": [ + 41 ], "__typename": [ - 78 + 80 ] }, - "draft_game_players_variance_fields": { - "elo_snapshot": [ - 29 + "db_backups_constraint": {}, + "db_backups_inc_input": { + "size": [ + 40 ], - "lineup": [ - 29 + "__typename": [ + 80 + ] + }, + "db_backups_insert_input": { + "created_at": [ + 4493 ], - "pick_order": [ - 29 + "id": [ + 4993 ], - "steam_id": [ - 29 + "name": [ + 80 + ], + "size": [ + 40 ], "__typename": [ - 78 + 80 ] }, - "draft_game_players_variance_order_by": { - "elo_snapshot": [ - 2829 + "db_backups_max_fields": { + "created_at": [ + 4493 ], - "lineup": [ - 2829 + "id": [ + 4993 ], - "pick_order": [ - 2829 + "name": [ + 80 ], - "steam_id": [ - 2829 + "size": [ + 40 ], "__typename": [ - 78 + 80 ] }, - "draft_games": { - "access": [ - 743 + "db_backups_min_fields": { + "created_at": [ + 4493 ], - "capacity": [ - 38 + "id": [ + 4993 ], - "captain_selection": [ - 452 + "name": [ + 80 ], - "created_at": [ - 4376 + "size": [ + 40 ], - "current_pick_lineup": [ - 38 + "__typename": [ + 80 + ] + }, + "db_backups_mutation_response": { + "affected_rows": [ + 40 ], - "draft_order": [ - 473 + "returning": [ + 341 ], - "e_draft_game_captain_selection": [ - 447 + "__typename": [ + 80 + ] + }, + "db_backups_on_conflict": { + "constraint": [ + 346 ], - "e_draft_game_draft_order": [ - 468 + "update_columns": [ + 363 ], - "e_draft_game_mode": [ - 489 + "where": [ + 345 ], - "e_draft_game_status": [ - 531 + "__typename": [ + 80 + ] + }, + "db_backups_order_by": { + "created_at": [ + 2946 ], - "e_lobby_access": [ - 738 + "id": [ + 2946 ], - "expires_at": [ - 4376 + "name": [ + 2946 ], - "host": [ - 3787 + "size": [ + 2946 ], - "host_steam_id": [ - 180 + "__typename": [ + 80 + ] + }, + "db_backups_pk_columns_input": { + "id": [ + 4993 + ], + "__typename": [ + 80 + ] + }, + "db_backups_select_column": {}, + "db_backups_set_input": { + "created_at": [ + 4493 ], "id": [ - 4921 + 4993 ], - "inner_squad": [ - 3 + "name": [ + 80 ], - "invite_code": [ - 4921 + "size": [ + 40 ], - "is_organizer": [ - 3 + "__typename": [ + 80 + ] + }, + "db_backups_stddev_fields": { + "size": [ + 31 ], - "map_pool": [ - 2143 + "__typename": [ + 80 + ] + }, + "db_backups_stddev_pop_fields": { + "size": [ + 31 ], - "map_pool_id": [ - 4921 + "__typename": [ + 80 + ] + }, + "db_backups_stddev_samp_fields": { + "size": [ + 31 ], - "match": [ - 2644 + "__typename": [ + 80 + ] + }, + "db_backups_stream_cursor_input": { + "initial_value": [ + 361 ], - "match_id": [ - 4921 + "ordering": [ + 308 ], - "match_options_id": [ - 4921 + "__typename": [ + 80 + ] + }, + "db_backups_stream_cursor_value_input": { + "created_at": [ + 4493 ], - "max_elo": [ - 38 + "id": [ + 4993 ], - "min_elo": [ - 38 + "name": [ + 80 ], - "mode": [ - 494 + "size": [ + 40 ], - "options": [ - 2524 + "__typename": [ + 80 + ] + }, + "db_backups_sum_fields": { + "size": [ + 40 ], - "pattern": [ - 1700, - { - "path": [ - 78 - ] - } + "__typename": [ + 80 + ] + }, + "db_backups_update_column": {}, + "db_backups_updates": { + "_inc": [ + 347 ], - "pick_deadline": [ - 4376 + "_set": [ + 356 ], - "picks": [ - 291, - { - "distinct_on": [ - 314, - "[draft_game_picks_select_column!]" - ], - "limit": [ - 38 - ], - "offset": [ - 38 - ], - "order_by": [ - 312, - "[draft_game_picks_order_by!]" - ], - "where": [ - 302 - ] - } + "where": [ + 345 ], - "picks_aggregate": [ - 292, - { - "distinct_on": [ - 314, - "[draft_game_picks_select_column!]" - ], - "limit": [ - 38 - ], - "offset": [ - 38 - ], - "order_by": [ - 312, - "[draft_game_picks_order_by!]" - ], - "where": [ - 302 - ] - } + "__typename": [ + 80 + ] + }, + "db_backups_var_pop_fields": { + "size": [ + 31 ], - "players": [ - 336, - { - "distinct_on": [ - 359, - "[draft_game_players_select_column!]" - ], - "limit": [ - 38 - ], - "offset": [ - 38 - ], - "order_by": [ - 357, - "[draft_game_players_order_by!]" - ], - "where": [ - 347 - ] - } + "__typename": [ + 80 + ] + }, + "db_backups_var_samp_fields": { + "size": [ + 31 ], - "players_aggregate": [ - 337, - { - "distinct_on": [ - 359, - "[draft_game_players_select_column!]" - ], - "limit": [ - 38 - ], - "offset": [ - 38 - ], - "order_by": [ - 357, - "[draft_game_players_order_by!]" - ], - "where": [ - 347 - ] - } + "__typename": [ + 80 + ] + }, + "db_backups_variance_fields": { + "size": [ + 31 ], - "regions": [ - 78 + "__typename": [ + 80 + ] + }, + "draft_game_picks": { + "auto_picked": [ + 5 ], - "require_approval": [ - 3 + "captain": [ + 3904 ], - "scheduled_at": [ - 4376 + "captain_steam_id": [ + 252 ], - "status": [ - 536 + "created_at": [ + 4493 ], - "team_1": [ - 4329 + "draft_game": [ + 458 ], - "team_1_id": [ - 4921 + "draft_game_id": [ + 4993 ], - "team_2": [ - 4329 + "id": [ + 4993 ], - "team_2_id": [ - 4921 + "is_organizer": [ + 5 ], - "type": [ - 887 + "lineup": [ + 40 ], - "updated_at": [ - 4376 + "picked": [ + 3904 + ], + "picked_steam_id": [ + 252 ], "__typename": [ - 78 + 80 ] }, - "draft_games_aggregate": { + "draft_game_picks_aggregate": { "aggregate": [ - 387 + 374 ], "nodes": [ - 381 + 368 ], "__typename": [ - 78 + 80 ] }, - "draft_games_aggregate_bool_exp": { + "draft_game_picks_aggregate_bool_exp": { "bool_and": [ - 384 + 371 ], "bool_or": [ - 385 + 372 ], "count": [ - 386 + 373 ], "__typename": [ - 78 + 80 ] }, - "draft_games_aggregate_bool_exp_bool_and": { + "draft_game_picks_aggregate_bool_exp_bool_and": { "arguments": [ - 406 + 392 ], "distinct": [ - 3 + 5 ], "filter": [ - 392 + 379 ], "predicate": [ - 4 + 6 ], "__typename": [ - 78 + 80 ] }, - "draft_games_aggregate_bool_exp_bool_or": { + "draft_game_picks_aggregate_bool_exp_bool_or": { "arguments": [ - 407 + 393 ], "distinct": [ - 3 + 5 ], "filter": [ - 392 + 379 ], "predicate": [ - 4 + 6 ], "__typename": [ - 78 + 80 ] }, - "draft_games_aggregate_bool_exp_count": { + "draft_game_picks_aggregate_bool_exp_count": { "arguments": [ - 405 + 391 ], "distinct": [ - 3 + 5 ], "filter": [ - 392 + 379 ], "predicate": [ - 39 + 41 ], "__typename": [ - 78 + 80 ] }, - "draft_games_aggregate_fields": { + "draft_game_picks_aggregate_fields": { "avg": [ - 390 + 377 ], "count": [ - 38, + 40, { "columns": [ - 405, - "[draft_games_select_column!]" + 391, + "[draft_game_picks_select_column!]" ], "distinct": [ - 3 + 5 ] } ], "max": [ - 396 + 383 ], "min": [ - 398 + 385 ], "stddev": [ - 409 + 395 ], "stddev_pop": [ - 411 + 397 ], "stddev_samp": [ - 413 + 399 ], "sum": [ - 417 + 403 ], "var_pop": [ - 421 + 407 ], "var_samp": [ - 423 + 409 ], "variance": [ - 425 + 411 ], "__typename": [ - 78 + 80 ] }, - "draft_games_aggregate_order_by": { + "draft_game_picks_aggregate_order_by": { "avg": [ - 391 + 378 ], "count": [ - 2829 + 2946 ], "max": [ - 397 + 384 ], "min": [ - 399 + 386 ], "stddev": [ - 410 + 396 ], "stddev_pop": [ - 412 + 398 ], "stddev_samp": [ - 414 + 400 ], "sum": [ - 418 + 404 ], "var_pop": [ - 422 + 408 ], "var_samp": [ - 424 + 410 ], "variance": [ - 426 + 412 ], "__typename": [ - 78 + 80 ] }, - "draft_games_arr_rel_insert_input": { + "draft_game_picks_arr_rel_insert_input": { "data": [ - 395 + 382 ], "on_conflict": [ - 402 + 388 ], "__typename": [ - 78 + 80 ] }, - "draft_games_avg_fields": { - "capacity": [ - 29 + "draft_game_picks_avg_fields": { + "captain_steam_id": [ + 31 ], - "current_pick_lineup": [ - 29 + "lineup": [ + 31 + ], + "picked_steam_id": [ + 31 + ], + "__typename": [ + 80 + ] + }, + "draft_game_picks_avg_order_by": { + "captain_steam_id": [ + 2946 + ], + "lineup": [ + 2946 + ], + "picked_steam_id": [ + 2946 + ], + "__typename": [ + 80 + ] + }, + "draft_game_picks_bool_exp": { + "_and": [ + 379 + ], + "_not": [ + 379 + ], + "_or": [ + 379 + ], + "auto_picked": [ + 6 + ], + "captain": [ + 3908 + ], + "captain_steam_id": [ + 254 + ], + "created_at": [ + 4494 + ], + "draft_game": [ + 469 + ], + "draft_game_id": [ + 4995 + ], + "id": [ + 4995 + ], + "is_organizer": [ + 6 + ], + "lineup": [ + 41 + ], + "picked": [ + 3908 + ], + "picked_steam_id": [ + 254 + ], + "__typename": [ + 80 + ] + }, + "draft_game_picks_constraint": {}, + "draft_game_picks_inc_input": { + "captain_steam_id": [ + 252 + ], + "lineup": [ + 40 + ], + "picked_steam_id": [ + 252 + ], + "__typename": [ + 80 + ] + }, + "draft_game_picks_insert_input": { + "auto_picked": [ + 5 + ], + "captain": [ + 3915 + ], + "captain_steam_id": [ + 252 + ], + "created_at": [ + 4493 + ], + "draft_game": [ + 478 + ], + "draft_game_id": [ + 4993 + ], + "id": [ + 4993 + ], + "lineup": [ + 40 + ], + "picked": [ + 3915 + ], + "picked_steam_id": [ + 252 + ], + "__typename": [ + 80 + ] + }, + "draft_game_picks_max_fields": { + "captain_steam_id": [ + 252 + ], + "created_at": [ + 4493 + ], + "draft_game_id": [ + 4993 + ], + "id": [ + 4993 + ], + "lineup": [ + 40 + ], + "picked_steam_id": [ + 252 + ], + "__typename": [ + 80 + ] + }, + "draft_game_picks_max_order_by": { + "captain_steam_id": [ + 2946 + ], + "created_at": [ + 2946 + ], + "draft_game_id": [ + 2946 + ], + "id": [ + 2946 + ], + "lineup": [ + 2946 + ], + "picked_steam_id": [ + 2946 + ], + "__typename": [ + 80 + ] + }, + "draft_game_picks_min_fields": { + "captain_steam_id": [ + 252 + ], + "created_at": [ + 4493 + ], + "draft_game_id": [ + 4993 + ], + "id": [ + 4993 + ], + "lineup": [ + 40 + ], + "picked_steam_id": [ + 252 + ], + "__typename": [ + 80 + ] + }, + "draft_game_picks_min_order_by": { + "captain_steam_id": [ + 2946 + ], + "created_at": [ + 2946 + ], + "draft_game_id": [ + 2946 + ], + "id": [ + 2946 + ], + "lineup": [ + 2946 + ], + "picked_steam_id": [ + 2946 + ], + "__typename": [ + 80 + ] + }, + "draft_game_picks_mutation_response": { + "affected_rows": [ + 40 + ], + "returning": [ + 368 + ], + "__typename": [ + 80 + ] + }, + "draft_game_picks_on_conflict": { + "constraint": [ + 380 + ], + "update_columns": [ + 405 + ], + "where": [ + 379 + ], + "__typename": [ + 80 + ] + }, + "draft_game_picks_order_by": { + "auto_picked": [ + 2946 + ], + "captain": [ + 3917 + ], + "captain_steam_id": [ + 2946 + ], + "created_at": [ + 2946 + ], + "draft_game": [ + 480 + ], + "draft_game_id": [ + 2946 + ], + "id": [ + 2946 + ], + "is_organizer": [ + 2946 + ], + "lineup": [ + 2946 + ], + "picked": [ + 3917 + ], + "picked_steam_id": [ + 2946 + ], + "__typename": [ + 80 + ] + }, + "draft_game_picks_pk_columns_input": { + "id": [ + 4993 + ], + "__typename": [ + 80 + ] + }, + "draft_game_picks_select_column": {}, + "draft_game_picks_select_column_draft_game_picks_aggregate_bool_exp_bool_and_arguments_columns": {}, + "draft_game_picks_select_column_draft_game_picks_aggregate_bool_exp_bool_or_arguments_columns": {}, + "draft_game_picks_set_input": { + "auto_picked": [ + 5 + ], + "captain_steam_id": [ + 252 + ], + "created_at": [ + 4493 + ], + "draft_game_id": [ + 4993 + ], + "id": [ + 4993 + ], + "lineup": [ + 40 + ], + "picked_steam_id": [ + 252 + ], + "__typename": [ + 80 + ] + }, + "draft_game_picks_stddev_fields": { + "captain_steam_id": [ + 31 + ], + "lineup": [ + 31 + ], + "picked_steam_id": [ + 31 + ], + "__typename": [ + 80 + ] + }, + "draft_game_picks_stddev_order_by": { + "captain_steam_id": [ + 2946 + ], + "lineup": [ + 2946 + ], + "picked_steam_id": [ + 2946 + ], + "__typename": [ + 80 + ] + }, + "draft_game_picks_stddev_pop_fields": { + "captain_steam_id": [ + 31 + ], + "lineup": [ + 31 + ], + "picked_steam_id": [ + 31 + ], + "__typename": [ + 80 + ] + }, + "draft_game_picks_stddev_pop_order_by": { + "captain_steam_id": [ + 2946 + ], + "lineup": [ + 2946 + ], + "picked_steam_id": [ + 2946 + ], + "__typename": [ + 80 + ] + }, + "draft_game_picks_stddev_samp_fields": { + "captain_steam_id": [ + 31 + ], + "lineup": [ + 31 + ], + "picked_steam_id": [ + 31 + ], + "__typename": [ + 80 + ] + }, + "draft_game_picks_stddev_samp_order_by": { + "captain_steam_id": [ + 2946 + ], + "lineup": [ + 2946 + ], + "picked_steam_id": [ + 2946 + ], + "__typename": [ + 80 + ] + }, + "draft_game_picks_stream_cursor_input": { + "initial_value": [ + 402 + ], + "ordering": [ + 308 + ], + "__typename": [ + 80 + ] + }, + "draft_game_picks_stream_cursor_value_input": { + "auto_picked": [ + 5 + ], + "captain_steam_id": [ + 252 + ], + "created_at": [ + 4493 + ], + "draft_game_id": [ + 4993 + ], + "id": [ + 4993 + ], + "lineup": [ + 40 + ], + "picked_steam_id": [ + 252 + ], + "__typename": [ + 80 + ] + }, + "draft_game_picks_sum_fields": { + "captain_steam_id": [ + 252 + ], + "lineup": [ + 40 + ], + "picked_steam_id": [ + 252 + ], + "__typename": [ + 80 + ] + }, + "draft_game_picks_sum_order_by": { + "captain_steam_id": [ + 2946 + ], + "lineup": [ + 2946 + ], + "picked_steam_id": [ + 2946 + ], + "__typename": [ + 80 + ] + }, + "draft_game_picks_update_column": {}, + "draft_game_picks_updates": { + "_inc": [ + 381 + ], + "_set": [ + 394 + ], + "where": [ + 379 + ], + "__typename": [ + 80 + ] + }, + "draft_game_picks_var_pop_fields": { + "captain_steam_id": [ + 31 + ], + "lineup": [ + 31 + ], + "picked_steam_id": [ + 31 + ], + "__typename": [ + 80 + ] + }, + "draft_game_picks_var_pop_order_by": { + "captain_steam_id": [ + 2946 + ], + "lineup": [ + 2946 + ], + "picked_steam_id": [ + 2946 + ], + "__typename": [ + 80 + ] + }, + "draft_game_picks_var_samp_fields": { + "captain_steam_id": [ + 31 + ], + "lineup": [ + 31 + ], + "picked_steam_id": [ + 31 + ], + "__typename": [ + 80 + ] + }, + "draft_game_picks_var_samp_order_by": { + "captain_steam_id": [ + 2946 + ], + "lineup": [ + 2946 + ], + "picked_steam_id": [ + 2946 + ], + "__typename": [ + 80 + ] + }, + "draft_game_picks_variance_fields": { + "captain_steam_id": [ + 31 + ], + "lineup": [ + 31 + ], + "picked_steam_id": [ + 31 + ], + "__typename": [ + 80 + ] + }, + "draft_game_picks_variance_order_by": { + "captain_steam_id": [ + 2946 + ], + "lineup": [ + 2946 + ], + "picked_steam_id": [ + 2946 + ], + "__typename": [ + 80 + ] + }, + "draft_game_players": { + "draft_game": [ + 458 + ], + "draft_game_id": [ + 4993 + ], + "e_draft_game_player_status": [ + 627 + ], + "elo_snapshot": [ + 40 + ], + "is_captain": [ + 5 + ], + "is_organizer": [ + 5 + ], + "joined_at": [ + 4493 + ], + "lineup": [ + 40 + ], + "pick_order": [ + 40 + ], + "player": [ + 3904 + ], + "status": [ + 632 + ], + "steam_id": [ + 252 + ], + "__typename": [ + 80 + ] + }, + "draft_game_players_aggregate": { + "aggregate": [ + 419 + ], + "nodes": [ + 413 + ], + "__typename": [ + 80 + ] + }, + "draft_game_players_aggregate_bool_exp": { + "bool_and": [ + 416 + ], + "bool_or": [ + 417 + ], + "count": [ + 418 + ], + "__typename": [ + 80 + ] + }, + "draft_game_players_aggregate_bool_exp_bool_and": { + "arguments": [ + 437 + ], + "distinct": [ + 5 + ], + "filter": [ + 424 + ], + "predicate": [ + 6 + ], + "__typename": [ + 80 + ] + }, + "draft_game_players_aggregate_bool_exp_bool_or": { + "arguments": [ + 438 + ], + "distinct": [ + 5 + ], + "filter": [ + 424 + ], + "predicate": [ + 6 + ], + "__typename": [ + 80 + ] + }, + "draft_game_players_aggregate_bool_exp_count": { + "arguments": [ + 436 + ], + "distinct": [ + 5 + ], + "filter": [ + 424 + ], + "predicate": [ + 41 + ], + "__typename": [ + 80 + ] + }, + "draft_game_players_aggregate_fields": { + "avg": [ + 422 + ], + "count": [ + 40, + { + "columns": [ + 436, + "[draft_game_players_select_column!]" + ], + "distinct": [ + 5 + ] + } + ], + "max": [ + 428 + ], + "min": [ + 430 + ], + "stddev": [ + 440 + ], + "stddev_pop": [ + 442 + ], + "stddev_samp": [ + 444 + ], + "sum": [ + 448 + ], + "var_pop": [ + 452 + ], + "var_samp": [ + 454 + ], + "variance": [ + 456 + ], + "__typename": [ + 80 + ] + }, + "draft_game_players_aggregate_order_by": { + "avg": [ + 423 + ], + "count": [ + 2946 + ], + "max": [ + 429 + ], + "min": [ + 431 + ], + "stddev": [ + 441 + ], + "stddev_pop": [ + 443 + ], + "stddev_samp": [ + 445 + ], + "sum": [ + 449 + ], + "var_pop": [ + 453 + ], + "var_samp": [ + 455 + ], + "variance": [ + 457 + ], + "__typename": [ + 80 + ] + }, + "draft_game_players_arr_rel_insert_input": { + "data": [ + 427 + ], + "on_conflict": [ + 433 + ], + "__typename": [ + 80 + ] + }, + "draft_game_players_avg_fields": { + "elo_snapshot": [ + 31 + ], + "lineup": [ + 31 + ], + "pick_order": [ + 31 + ], + "steam_id": [ + 31 + ], + "__typename": [ + 80 + ] + }, + "draft_game_players_avg_order_by": { + "elo_snapshot": [ + 2946 + ], + "lineup": [ + 2946 + ], + "pick_order": [ + 2946 + ], + "steam_id": [ + 2946 + ], + "__typename": [ + 80 + ] + }, + "draft_game_players_bool_exp": { + "_and": [ + 424 + ], + "_not": [ + 424 + ], + "_or": [ + 424 + ], + "draft_game": [ + 469 + ], + "draft_game_id": [ + 4995 + ], + "e_draft_game_player_status": [ + 630 + ], + "elo_snapshot": [ + 41 + ], + "is_captain": [ + 6 + ], + "is_organizer": [ + 6 + ], + "joined_at": [ + 4494 + ], + "lineup": [ + 41 + ], + "pick_order": [ + 41 + ], + "player": [ + 3908 + ], + "status": [ + 633 + ], + "steam_id": [ + 254 + ], + "__typename": [ + 80 + ] + }, + "draft_game_players_constraint": {}, + "draft_game_players_inc_input": { + "elo_snapshot": [ + 40 + ], + "lineup": [ + 40 + ], + "pick_order": [ + 40 + ], + "steam_id": [ + 252 + ], + "__typename": [ + 80 + ] + }, + "draft_game_players_insert_input": { + "draft_game": [ + 478 + ], + "draft_game_id": [ + 4993 + ], + "e_draft_game_player_status": [ + 638 + ], + "elo_snapshot": [ + 40 + ], + "is_captain": [ + 5 + ], + "joined_at": [ + 4493 + ], + "lineup": [ + 40 + ], + "pick_order": [ + 40 + ], + "player": [ + 3915 + ], + "status": [ + 632 + ], + "steam_id": [ + 252 + ], + "__typename": [ + 80 + ] + }, + "draft_game_players_max_fields": { + "draft_game_id": [ + 4993 + ], + "elo_snapshot": [ + 40 + ], + "joined_at": [ + 4493 + ], + "lineup": [ + 40 + ], + "pick_order": [ + 40 + ], + "steam_id": [ + 252 + ], + "__typename": [ + 80 + ] + }, + "draft_game_players_max_order_by": { + "draft_game_id": [ + 2946 + ], + "elo_snapshot": [ + 2946 + ], + "joined_at": [ + 2946 + ], + "lineup": [ + 2946 + ], + "pick_order": [ + 2946 + ], + "steam_id": [ + 2946 + ], + "__typename": [ + 80 + ] + }, + "draft_game_players_min_fields": { + "draft_game_id": [ + 4993 + ], + "elo_snapshot": [ + 40 + ], + "joined_at": [ + 4493 + ], + "lineup": [ + 40 + ], + "pick_order": [ + 40 + ], + "steam_id": [ + 252 + ], + "__typename": [ + 80 + ] + }, + "draft_game_players_min_order_by": { + "draft_game_id": [ + 2946 + ], + "elo_snapshot": [ + 2946 + ], + "joined_at": [ + 2946 + ], + "lineup": [ + 2946 + ], + "pick_order": [ + 2946 + ], + "steam_id": [ + 2946 + ], + "__typename": [ + 80 + ] + }, + "draft_game_players_mutation_response": { + "affected_rows": [ + 40 + ], + "returning": [ + 413 + ], + "__typename": [ + 80 + ] + }, + "draft_game_players_on_conflict": { + "constraint": [ + 425 + ], + "update_columns": [ + 450 + ], + "where": [ + 424 + ], + "__typename": [ + 80 + ] + }, + "draft_game_players_order_by": { + "draft_game": [ + 480 + ], + "draft_game_id": [ + 2946 + ], + "e_draft_game_player_status": [ + 640 + ], + "elo_snapshot": [ + 2946 + ], + "is_captain": [ + 2946 + ], + "is_organizer": [ + 2946 + ], + "joined_at": [ + 2946 + ], + "lineup": [ + 2946 + ], + "pick_order": [ + 2946 + ], + "player": [ + 3917 + ], + "status": [ + 2946 + ], + "steam_id": [ + 2946 + ], + "__typename": [ + 80 + ] + }, + "draft_game_players_pk_columns_input": { + "draft_game_id": [ + 4993 + ], + "steam_id": [ + 252 + ], + "__typename": [ + 80 + ] + }, + "draft_game_players_select_column": {}, + "draft_game_players_select_column_draft_game_players_aggregate_bool_exp_bool_and_arguments_columns": {}, + "draft_game_players_select_column_draft_game_players_aggregate_bool_exp_bool_or_arguments_columns": {}, + "draft_game_players_set_input": { + "draft_game_id": [ + 4993 + ], + "elo_snapshot": [ + 40 + ], + "is_captain": [ + 5 + ], + "joined_at": [ + 4493 + ], + "lineup": [ + 40 + ], + "pick_order": [ + 40 + ], + "status": [ + 632 + ], + "steam_id": [ + 252 + ], + "__typename": [ + 80 + ] + }, + "draft_game_players_stddev_fields": { + "elo_snapshot": [ + 31 + ], + "lineup": [ + 31 + ], + "pick_order": [ + 31 + ], + "steam_id": [ + 31 + ], + "__typename": [ + 80 + ] + }, + "draft_game_players_stddev_order_by": { + "elo_snapshot": [ + 2946 + ], + "lineup": [ + 2946 + ], + "pick_order": [ + 2946 + ], + "steam_id": [ + 2946 + ], + "__typename": [ + 80 + ] + }, + "draft_game_players_stddev_pop_fields": { + "elo_snapshot": [ + 31 + ], + "lineup": [ + 31 + ], + "pick_order": [ + 31 + ], + "steam_id": [ + 31 + ], + "__typename": [ + 80 + ] + }, + "draft_game_players_stddev_pop_order_by": { + "elo_snapshot": [ + 2946 + ], + "lineup": [ + 2946 + ], + "pick_order": [ + 2946 + ], + "steam_id": [ + 2946 + ], + "__typename": [ + 80 + ] + }, + "draft_game_players_stddev_samp_fields": { + "elo_snapshot": [ + 31 + ], + "lineup": [ + 31 + ], + "pick_order": [ + 31 + ], + "steam_id": [ + 31 + ], + "__typename": [ + 80 + ] + }, + "draft_game_players_stddev_samp_order_by": { + "elo_snapshot": [ + 2946 + ], + "lineup": [ + 2946 + ], + "pick_order": [ + 2946 + ], + "steam_id": [ + 2946 + ], + "__typename": [ + 80 + ] + }, + "draft_game_players_stream_cursor_input": { + "initial_value": [ + 447 + ], + "ordering": [ + 308 + ], + "__typename": [ + 80 + ] + }, + "draft_game_players_stream_cursor_value_input": { + "draft_game_id": [ + 4993 + ], + "elo_snapshot": [ + 40 + ], + "is_captain": [ + 5 + ], + "joined_at": [ + 4493 + ], + "lineup": [ + 40 + ], + "pick_order": [ + 40 + ], + "status": [ + 632 + ], + "steam_id": [ + 252 + ], + "__typename": [ + 80 + ] + }, + "draft_game_players_sum_fields": { + "elo_snapshot": [ + 40 + ], + "lineup": [ + 40 + ], + "pick_order": [ + 40 + ], + "steam_id": [ + 252 + ], + "__typename": [ + 80 + ] + }, + "draft_game_players_sum_order_by": { + "elo_snapshot": [ + 2946 + ], + "lineup": [ + 2946 + ], + "pick_order": [ + 2946 + ], + "steam_id": [ + 2946 + ], + "__typename": [ + 80 + ] + }, + "draft_game_players_update_column": {}, + "draft_game_players_updates": { + "_inc": [ + 426 + ], + "_set": [ + 439 + ], + "where": [ + 424 + ], + "__typename": [ + 80 + ] + }, + "draft_game_players_var_pop_fields": { + "elo_snapshot": [ + 31 + ], + "lineup": [ + 31 + ], + "pick_order": [ + 31 + ], + "steam_id": [ + 31 + ], + "__typename": [ + 80 + ] + }, + "draft_game_players_var_pop_order_by": { + "elo_snapshot": [ + 2946 + ], + "lineup": [ + 2946 + ], + "pick_order": [ + 2946 + ], + "steam_id": [ + 2946 + ], + "__typename": [ + 80 + ] + }, + "draft_game_players_var_samp_fields": { + "elo_snapshot": [ + 31 + ], + "lineup": [ + 31 + ], + "pick_order": [ + 31 + ], + "steam_id": [ + 31 + ], + "__typename": [ + 80 + ] + }, + "draft_game_players_var_samp_order_by": { + "elo_snapshot": [ + 2946 + ], + "lineup": [ + 2946 + ], + "pick_order": [ + 2946 + ], + "steam_id": [ + 2946 + ], + "__typename": [ + 80 + ] + }, + "draft_game_players_variance_fields": { + "elo_snapshot": [ + 31 + ], + "lineup": [ + 31 + ], + "pick_order": [ + 31 + ], + "steam_id": [ + 31 + ], + "__typename": [ + 80 + ] + }, + "draft_game_players_variance_order_by": { + "elo_snapshot": [ + 2946 + ], + "lineup": [ + 2946 + ], + "pick_order": [ + 2946 + ], + "steam_id": [ + 2946 + ], + "__typename": [ + 80 + ] + }, + "draft_games": { + "access": [ + 860 + ], + "capacity": [ + 40 + ], + "captain_selection": [ + 569 + ], + "created_at": [ + 4493 + ], + "current_pick_lineup": [ + 40 + ], + "draft_order": [ + 590 + ], + "e_draft_game_captain_selection": [ + 564 + ], + "e_draft_game_draft_order": [ + 585 + ], + "e_draft_game_mode": [ + 606 + ], + "e_draft_game_status": [ + 648 + ], + "e_lobby_access": [ + 855 + ], + "expires_at": [ + 4493 + ], + "host": [ + 3904 + ], + "host_steam_id": [ + 252 + ], + "id": [ + 4993 + ], + "inner_squad": [ + 5 + ], + "invite_code": [ + 4993 + ], + "is_organizer": [ + 5 + ], + "map_pool": [ + 2260 + ], + "map_pool_id": [ + 4993 + ], + "match": [ + 2761 + ], + "match_id": [ + 4993 + ], + "match_options_id": [ + 4993 + ], + "max_elo": [ + 40 + ], + "min_elo": [ + 40 + ], + "mode": [ + 611 + ], + "options": [ + 2641 + ], + "pattern": [ + 1817, + { + "path": [ + 80 + ] + } + ], + "pick_deadline": [ + 4493 + ], + "picks": [ + 368, + { + "distinct_on": [ + 391, + "[draft_game_picks_select_column!]" + ], + "limit": [ + 40 + ], + "offset": [ + 40 + ], + "order_by": [ + 389, + "[draft_game_picks_order_by!]" + ], + "where": [ + 379 + ] + } + ], + "picks_aggregate": [ + 369, + { + "distinct_on": [ + 391, + "[draft_game_picks_select_column!]" + ], + "limit": [ + 40 + ], + "offset": [ + 40 + ], + "order_by": [ + 389, + "[draft_game_picks_order_by!]" + ], + "where": [ + 379 + ] + } + ], + "players": [ + 413, + { + "distinct_on": [ + 436, + "[draft_game_players_select_column!]" + ], + "limit": [ + 40 + ], + "offset": [ + 40 + ], + "order_by": [ + 434, + "[draft_game_players_order_by!]" + ], + "where": [ + 424 + ] + } + ], + "players_aggregate": [ + 414, + { + "distinct_on": [ + 436, + "[draft_game_players_select_column!]" + ], + "limit": [ + 40 + ], + "offset": [ + 40 + ], + "order_by": [ + 434, + "[draft_game_players_order_by!]" + ], + "where": [ + 424 + ] + } + ], + "regions": [ + 80 + ], + "require_approval": [ + 5 + ], + "scheduled_at": [ + 4493 + ], + "status": [ + 653 + ], + "team_1": [ + 4446 + ], + "team_1_id": [ + 4993 + ], + "team_2": [ + 4446 + ], + "team_2_id": [ + 4993 + ], + "type": [ + 1004 + ], + "updated_at": [ + 4493 + ], + "__typename": [ + 80 + ] + }, + "draft_games_aggregate": { + "aggregate": [ + 464 + ], + "nodes": [ + 458 + ], + "__typename": [ + 80 + ] + }, + "draft_games_aggregate_bool_exp": { + "bool_and": [ + 461 + ], + "bool_or": [ + 462 + ], + "count": [ + 463 + ], + "__typename": [ + 80 + ] + }, + "draft_games_aggregate_bool_exp_bool_and": { + "arguments": [ + 483 + ], + "distinct": [ + 5 + ], + "filter": [ + 469 + ], + "predicate": [ + 6 + ], + "__typename": [ + 80 + ] + }, + "draft_games_aggregate_bool_exp_bool_or": { + "arguments": [ + 484 + ], + "distinct": [ + 5 + ], + "filter": [ + 469 + ], + "predicate": [ + 6 + ], + "__typename": [ + 80 + ] + }, + "draft_games_aggregate_bool_exp_count": { + "arguments": [ + 482 + ], + "distinct": [ + 5 + ], + "filter": [ + 469 + ], + "predicate": [ + 41 + ], + "__typename": [ + 80 + ] + }, + "draft_games_aggregate_fields": { + "avg": [ + 467 + ], + "count": [ + 40, + { + "columns": [ + 482, + "[draft_games_select_column!]" + ], + "distinct": [ + 5 + ] + } + ], + "max": [ + 473 + ], + "min": [ + 475 + ], + "stddev": [ + 486 + ], + "stddev_pop": [ + 488 + ], + "stddev_samp": [ + 490 + ], + "sum": [ + 494 + ], + "var_pop": [ + 498 + ], + "var_samp": [ + 500 + ], + "variance": [ + 502 + ], + "__typename": [ + 80 + ] + }, + "draft_games_aggregate_order_by": { + "avg": [ + 468 + ], + "count": [ + 2946 + ], + "max": [ + 474 + ], + "min": [ + 476 + ], + "stddev": [ + 487 + ], + "stddev_pop": [ + 489 + ], + "stddev_samp": [ + 491 + ], + "sum": [ + 495 + ], + "var_pop": [ + 499 + ], + "var_samp": [ + 501 + ], + "variance": [ + 503 + ], + "__typename": [ + 80 + ] + }, + "draft_games_arr_rel_insert_input": { + "data": [ + 472 + ], + "on_conflict": [ + 479 + ], + "__typename": [ + 80 + ] + }, + "draft_games_avg_fields": { + "capacity": [ + 31 + ], + "current_pick_lineup": [ + 31 ], "host_steam_id": [ - 29 + 31 ], "max_elo": [ - 29 + 31 ], "min_elo": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "draft_games_avg_order_by": { "capacity": [ - 2829 + 2946 ], "current_pick_lineup": [ - 2829 + 2946 ], "host_steam_id": [ - 2829 + 2946 ], "max_elo": [ - 2829 + 2946 ], "min_elo": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "draft_games_bool_exp": { "_and": [ - 392 + 469 ], "_not": [ - 392 + 469 ], "_or": [ - 392 + 469 ], "access": [ - 744 + 861 ], "capacity": [ - 39 + 41 ], "captain_selection": [ - 453 + 570 ], "created_at": [ - 4377 + 4494 ], "current_pick_lineup": [ - 39 + 41 ], "draft_order": [ - 474 + 591 ], "e_draft_game_captain_selection": [ - 450 + 567 ], "e_draft_game_draft_order": [ - 471 + 588 ], "e_draft_game_mode": [ - 492 + 609 ], "e_draft_game_status": [ - 534 + 651 ], "e_lobby_access": [ - 741 + 858 ], "expires_at": [ - 4377 + 4494 ], "host": [ - 3791 + 3908 ], "host_steam_id": [ - 182 + 254 ], "id": [ - 4923 + 4995 ], "inner_squad": [ - 4 + 6 ], "invite_code": [ - 4923 + 4995 ], "is_organizer": [ - 4 + 6 ], "map_pool": [ - 2146 + 2263 ], "map_pool_id": [ - 4923 + 4995 ], "match": [ - 2653 + 2770 ], "match_id": [ - 4923 + 4995 ], "match_options_id": [ - 4923 + 4995 ], "max_elo": [ - 39 + 41 ], "min_elo": [ - 39 + 41 ], "mode": [ - 495 + 612 ], "options": [ - 2528 + 2645 ], "pattern": [ - 1702 + 1819 ], "pick_deadline": [ - 4377 + 4494 ], "picks": [ - 302 + 379 ], "picks_aggregate": [ - 293 + 370 ], "players": [ - 347 + 424 ], "players_aggregate": [ - 338 + 415 ], "regions": [ - 79 + 81 ], "require_approval": [ - 4 + 6 ], "scheduled_at": [ - 4377 + 4494 ], "status": [ - 537 + 654 ], "team_1": [ - 4340 + 4457 ], "team_1_id": [ - 4923 + 4995 ], "team_2": [ - 4340 + 4457 ], "team_2_id": [ - 4923 + 4995 ], "type": [ - 888 + 1005 ], "updated_at": [ - 4377 + 4494 ], "__typename": [ - 78 + 80 ] }, "draft_games_constraint": {}, "draft_games_inc_input": { "capacity": [ - 38 + 40 ], "current_pick_lineup": [ - 38 + 40 ], "host_steam_id": [ - 180 + 252 ], "max_elo": [ - 38 + 40 ], "min_elo": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "draft_games_insert_input": { "access": [ - 743 + 860 ], "capacity": [ - 38 + 40 ], "captain_selection": [ - 452 + 569 ], "created_at": [ - 4376 + 4493 ], "current_pick_lineup": [ - 38 + 40 ], "draft_order": [ - 473 + 590 ], "e_draft_game_captain_selection": [ - 458 + 575 ], "e_draft_game_draft_order": [ - 479 + 596 ], "e_draft_game_mode": [ - 500 + 617 ], "e_draft_game_status": [ - 542 + 659 ], "e_lobby_access": [ - 749 + 866 ], "expires_at": [ - 4376 + 4493 ], "host": [ - 3798 + 3915 ], "host_steam_id": [ - 180 + 252 ], "id": [ - 4921 + 4993 ], "inner_squad": [ - 3 + 5 ], "invite_code": [ - 4921 + 4993 ], "map_pool": [ - 2152 + 2269 ], "map_pool_id": [ - 4921 + 4993 ], "match": [ - 2662 + 2779 ], "match_id": [ - 4921 + 4993 ], "match_options_id": [ - 4921 + 4993 ], "max_elo": [ - 38 + 40 ], "min_elo": [ - 38 + 40 ], "mode": [ - 494 + 611 ], "options": [ - 2535 + 2652 ], "pick_deadline": [ - 4376 + 4493 ], "picks": [ - 299 + 376 ], "players": [ - 344 + 421 ], "regions": [ - 78 + 80 ], "require_approval": [ - 3 + 5 ], "scheduled_at": [ - 4376 + 4493 ], "status": [ - 536 + 653 ], "team_1": [ - 4349 + 4466 ], "team_1_id": [ - 4921 + 4993 ], "team_2": [ - 4349 + 4466 ], "team_2_id": [ - 4921 + 4993 ], "type": [ - 887 + 1004 ], "updated_at": [ - 4376 + 4493 ], "__typename": [ - 78 + 80 ] }, "draft_games_max_fields": { "capacity": [ - 38 + 40 ], "created_at": [ - 4376 + 4493 ], "current_pick_lineup": [ - 38 + 40 ], "expires_at": [ - 4376 + 4493 ], "host_steam_id": [ - 180 + 252 ], "id": [ - 4921 + 4993 ], "invite_code": [ - 4921 + 4993 ], "map_pool_id": [ - 4921 + 4993 ], "match_id": [ - 4921 + 4993 ], "match_options_id": [ - 4921 + 4993 ], "max_elo": [ - 38 + 40 ], "min_elo": [ - 38 + 40 ], "pick_deadline": [ - 4376 + 4493 ], "regions": [ - 78 + 80 ], "scheduled_at": [ - 4376 + 4493 ], "team_1_id": [ - 4921 + 4993 ], "team_2_id": [ - 4921 + 4993 ], "updated_at": [ - 4376 + 4493 ], "__typename": [ - 78 + 80 ] }, "draft_games_max_order_by": { "capacity": [ - 2829 + 2946 ], "created_at": [ - 2829 + 2946 ], "current_pick_lineup": [ - 2829 + 2946 ], "expires_at": [ - 2829 + 2946 ], "host_steam_id": [ - 2829 + 2946 ], "id": [ - 2829 + 2946 ], "invite_code": [ - 2829 + 2946 ], "map_pool_id": [ - 2829 + 2946 ], "match_id": [ - 2829 + 2946 ], "match_options_id": [ - 2829 + 2946 ], "max_elo": [ - 2829 + 2946 ], "min_elo": [ - 2829 + 2946 ], "pick_deadline": [ - 2829 + 2946 ], "regions": [ - 2829 + 2946 ], "scheduled_at": [ - 2829 + 2946 ], "team_1_id": [ - 2829 + 2946 ], "team_2_id": [ - 2829 + 2946 ], "updated_at": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "draft_games_min_fields": { "capacity": [ - 38 + 40 ], "created_at": [ - 4376 + 4493 ], "current_pick_lineup": [ - 38 + 40 ], "expires_at": [ - 4376 + 4493 ], "host_steam_id": [ - 180 + 252 ], "id": [ - 4921 + 4993 ], "invite_code": [ - 4921 + 4993 ], "map_pool_id": [ - 4921 + 4993 ], "match_id": [ - 4921 + 4993 ], "match_options_id": [ - 4921 + 4993 ], "max_elo": [ - 38 + 40 ], "min_elo": [ - 38 + 40 ], "pick_deadline": [ - 4376 + 4493 ], "regions": [ - 78 + 80 ], "scheduled_at": [ - 4376 + 4493 ], "team_1_id": [ - 4921 + 4993 ], "team_2_id": [ - 4921 + 4993 ], "updated_at": [ - 4376 + 4493 ], "__typename": [ - 78 + 80 ] }, "draft_games_min_order_by": { "capacity": [ - 2829 + 2946 ], "created_at": [ - 2829 + 2946 ], "current_pick_lineup": [ - 2829 + 2946 ], "expires_at": [ - 2829 + 2946 ], "host_steam_id": [ - 2829 + 2946 ], "id": [ - 2829 + 2946 ], "invite_code": [ - 2829 + 2946 ], "map_pool_id": [ - 2829 + 2946 ], "match_id": [ - 2829 + 2946 ], "match_options_id": [ - 2829 + 2946 ], "max_elo": [ - 2829 + 2946 ], "min_elo": [ - 2829 + 2946 ], "pick_deadline": [ - 2829 + 2946 ], "regions": [ - 2829 + 2946 ], "scheduled_at": [ - 2829 + 2946 ], "team_1_id": [ - 2829 + 2946 ], "team_2_id": [ - 2829 + 2946 ], "updated_at": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "draft_games_mutation_response": { "affected_rows": [ - 38 + 40 ], "returning": [ - 381 + 458 ], "__typename": [ - 78 + 80 ] }, "draft_games_obj_rel_insert_input": { "data": [ - 395 + 472 ], "on_conflict": [ - 402 + 479 ], "__typename": [ - 78 + 80 ] }, "draft_games_on_conflict": { "constraint": [ - 393 + 470 ], "update_columns": [ - 419 + 496 ], "where": [ - 392 + 469 ], "__typename": [ - 78 + 80 ] }, "draft_games_order_by": { "access": [ - 2829 + 2946 ], "capacity": [ - 2829 + 2946 ], "captain_selection": [ - 2829 + 2946 ], "created_at": [ - 2829 + 2946 ], "current_pick_lineup": [ - 2829 + 2946 ], "draft_order": [ - 2829 + 2946 ], "e_draft_game_captain_selection": [ - 460 + 577 ], "e_draft_game_draft_order": [ - 481 + 598 ], "e_draft_game_mode": [ - 502 + 619 ], "e_draft_game_status": [ - 544 + 661 ], "e_lobby_access": [ - 751 + 868 ], "expires_at": [ - 2829 + 2946 ], "host": [ - 3800 + 3917 ], "host_steam_id": [ - 2829 + 2946 ], "id": [ - 2829 + 2946 ], "inner_squad": [ - 2829 + 2946 ], "invite_code": [ - 2829 + 2946 ], "is_organizer": [ - 2829 + 2946 ], "map_pool": [ - 2154 + 2271 ], "map_pool_id": [ - 2829 + 2946 ], "match": [ - 2664 + 2781 ], "match_id": [ - 2829 + 2946 ], "match_options_id": [ - 2829 + 2946 ], "max_elo": [ - 2829 + 2946 ], "min_elo": [ - 2829 + 2946 ], "mode": [ - 2829 + 2946 ], "options": [ - 2537 + 2654 ], "pattern": [ - 2829 + 2946 ], "pick_deadline": [ - 2829 + 2946 ], "picks_aggregate": [ - 298 + 375 ], "players_aggregate": [ - 343 + 420 ], "regions": [ - 2829 + 2946 ], "require_approval": [ - 2829 + 2946 ], "scheduled_at": [ - 2829 + 2946 ], "status": [ - 2829 + 2946 ], "team_1": [ - 4351 + 4468 ], "team_1_id": [ - 2829 + 2946 ], "team_2": [ - 4351 + 4468 ], "team_2_id": [ - 2829 + 2946 ], "type": [ - 2829 + 2946 ], "updated_at": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "draft_games_pk_columns_input": { "id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "draft_games_select_column": {}, @@ -8438,16366 +10245,16786 @@ export default { "draft_games_select_column_draft_games_aggregate_bool_exp_bool_or_arguments_columns": {}, "draft_games_set_input": { "access": [ - 743 + 860 ], "capacity": [ - 38 + 40 ], "captain_selection": [ - 452 + 569 ], "created_at": [ - 4376 + 4493 ], "current_pick_lineup": [ - 38 + 40 ], "draft_order": [ - 473 + 590 ], "expires_at": [ - 4376 + 4493 ], "host_steam_id": [ - 180 + 252 ], "id": [ - 4921 + 4993 ], "inner_squad": [ - 3 + 5 ], "invite_code": [ - 4921 + 4993 ], "map_pool_id": [ - 4921 + 4993 ], "match_id": [ - 4921 + 4993 ], "match_options_id": [ - 4921 + 4993 ], "max_elo": [ - 38 + 40 ], "min_elo": [ - 38 + 40 ], "mode": [ - 494 + 611 ], "pick_deadline": [ - 4376 + 4493 ], "regions": [ - 78 + 80 ], "require_approval": [ - 3 + 5 ], "scheduled_at": [ - 4376 + 4493 ], "status": [ - 536 + 653 ], "team_1_id": [ - 4921 + 4993 ], "team_2_id": [ - 4921 + 4993 ], "type": [ - 887 + 1004 ], "updated_at": [ - 4376 + 4493 ], "__typename": [ - 78 + 80 ] }, "draft_games_stddev_fields": { "capacity": [ - 29 + 31 ], "current_pick_lineup": [ - 29 + 31 ], "host_steam_id": [ - 29 + 31 ], "max_elo": [ - 29 + 31 ], "min_elo": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "draft_games_stddev_order_by": { "capacity": [ - 2829 + 2946 ], "current_pick_lineup": [ - 2829 + 2946 ], "host_steam_id": [ - 2829 + 2946 ], "max_elo": [ - 2829 + 2946 ], "min_elo": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "draft_games_stddev_pop_fields": { "capacity": [ - 29 + 31 ], "current_pick_lineup": [ - 29 + 31 ], "host_steam_id": [ - 29 + 31 ], "max_elo": [ - 29 + 31 ], "min_elo": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "draft_games_stddev_pop_order_by": { "capacity": [ - 2829 + 2946 ], "current_pick_lineup": [ - 2829 + 2946 ], "host_steam_id": [ - 2829 + 2946 ], "max_elo": [ - 2829 + 2946 ], "min_elo": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "draft_games_stddev_samp_fields": { "capacity": [ - 29 + 31 ], "current_pick_lineup": [ - 29 + 31 ], "host_steam_id": [ - 29 + 31 ], "max_elo": [ - 29 + 31 ], "min_elo": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "draft_games_stddev_samp_order_by": { "capacity": [ - 2829 + 2946 ], "current_pick_lineup": [ - 2829 + 2946 ], "host_steam_id": [ - 2829 + 2946 ], "max_elo": [ - 2829 + 2946 ], "min_elo": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "draft_games_stream_cursor_input": { "initial_value": [ - 416 + 493 ], "ordering": [ - 236 + 308 ], "__typename": [ - 78 + 80 ] }, "draft_games_stream_cursor_value_input": { "access": [ - 743 + 860 ], "capacity": [ - 38 + 40 ], "captain_selection": [ - 452 + 569 ], "created_at": [ - 4376 + 4493 ], "current_pick_lineup": [ - 38 + 40 ], "draft_order": [ - 473 + 590 ], "expires_at": [ - 4376 + 4493 ], "host_steam_id": [ - 180 + 252 ], "id": [ - 4921 + 4993 ], "inner_squad": [ - 3 + 5 ], "invite_code": [ - 4921 + 4993 ], "map_pool_id": [ - 4921 + 4993 ], "match_id": [ - 4921 + 4993 ], "match_options_id": [ - 4921 + 4993 ], "max_elo": [ - 38 + 40 ], "min_elo": [ - 38 + 40 ], "mode": [ - 494 + 611 ], "pick_deadline": [ - 4376 + 4493 ], "regions": [ - 78 + 80 ], "require_approval": [ - 3 + 5 ], "scheduled_at": [ - 4376 + 4493 ], "status": [ - 536 + 653 ], "team_1_id": [ - 4921 + 4993 ], "team_2_id": [ - 4921 + 4993 ], "type": [ - 887 + 1004 ], "updated_at": [ - 4376 + 4493 ], "__typename": [ - 78 + 80 ] }, "draft_games_sum_fields": { "capacity": [ - 38 + 40 ], "current_pick_lineup": [ - 38 + 40 ], "host_steam_id": [ - 180 + 252 ], "max_elo": [ - 38 + 40 ], "min_elo": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "draft_games_sum_order_by": { "capacity": [ - 2829 + 2946 ], "current_pick_lineup": [ - 2829 + 2946 ], "host_steam_id": [ - 2829 + 2946 ], "max_elo": [ - 2829 + 2946 ], "min_elo": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "draft_games_update_column": {}, "draft_games_updates": { "_inc": [ - 394 + 471 ], "_set": [ - 408 + 485 ], "where": [ - 392 + 469 ], "__typename": [ - 78 + 80 ] }, "draft_games_var_pop_fields": { "capacity": [ - 29 + 31 ], "current_pick_lineup": [ - 29 + 31 ], "host_steam_id": [ - 29 + 31 ], "max_elo": [ - 29 + 31 ], "min_elo": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "draft_games_var_pop_order_by": { "capacity": [ - 2829 + 2946 ], "current_pick_lineup": [ - 2829 + 2946 ], "host_steam_id": [ - 2829 + 2946 ], "max_elo": [ - 2829 + 2946 ], "min_elo": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "draft_games_var_samp_fields": { "capacity": [ - 29 + 31 ], "current_pick_lineup": [ - 29 + 31 ], "host_steam_id": [ - 29 + 31 ], "max_elo": [ - 29 + 31 ], "min_elo": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "draft_games_var_samp_order_by": { "capacity": [ - 2829 + 2946 ], "current_pick_lineup": [ - 2829 + 2946 ], "host_steam_id": [ - 2829 + 2946 ], "max_elo": [ - 2829 + 2946 ], "min_elo": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "draft_games_variance_fields": { "capacity": [ - 29 + 31 ], "current_pick_lineup": [ - 29 + 31 ], "host_steam_id": [ - 29 + 31 ], "max_elo": [ - 29 + 31 ], "min_elo": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "draft_games_variance_order_by": { "capacity": [ - 2829 + 2946 ], "current_pick_lineup": [ - 2829 + 2946 ], "host_steam_id": [ - 2829 + 2946 ], "max_elo": [ - 2829 + 2946 ], "min_elo": [ - 2829 + 2946 + ], + "__typename": [ + 80 + ] + }, + "e_award_sources": { + "description": [ + 80 + ], + "value": [ + 80 + ], + "__typename": [ + 80 + ] + }, + "e_award_sources_aggregate": { + "aggregate": [ + 506 + ], + "nodes": [ + 504 + ], + "__typename": [ + 80 + ] + }, + "e_award_sources_aggregate_fields": { + "count": [ + 40, + { + "columns": [ + 518, + "[e_award_sources_select_column!]" + ], + "distinct": [ + 5 + ] + } + ], + "max": [ + 512 + ], + "min": [ + 513 + ], + "__typename": [ + 80 + ] + }, + "e_award_sources_bool_exp": { + "_and": [ + 507 + ], + "_not": [ + 507 + ], + "_or": [ + 507 + ], + "description": [ + 82 + ], + "value": [ + 82 + ], + "__typename": [ + 80 + ] + }, + "e_award_sources_constraint": {}, + "e_award_sources_enum": {}, + "e_award_sources_enum_comparison_exp": { + "_eq": [ + 509 + ], + "_in": [ + 509 + ], + "_is_null": [ + 5 + ], + "_neq": [ + 509 + ], + "_nin": [ + 509 + ], + "__typename": [ + 80 + ] + }, + "e_award_sources_insert_input": { + "description": [ + 80 + ], + "value": [ + 80 + ], + "__typename": [ + 80 + ] + }, + "e_award_sources_max_fields": { + "description": [ + 80 + ], + "value": [ + 80 + ], + "__typename": [ + 80 + ] + }, + "e_award_sources_min_fields": { + "description": [ + 80 + ], + "value": [ + 80 + ], + "__typename": [ + 80 + ] + }, + "e_award_sources_mutation_response": { + "affected_rows": [ + 40 + ], + "returning": [ + 504 + ], + "__typename": [ + 80 + ] + }, + "e_award_sources_on_conflict": { + "constraint": [ + 508 + ], + "update_columns": [ + 522 + ], + "where": [ + 507 + ], + "__typename": [ + 80 + ] + }, + "e_award_sources_order_by": { + "description": [ + 2946 + ], + "value": [ + 2946 + ], + "__typename": [ + 80 + ] + }, + "e_award_sources_pk_columns_input": { + "value": [ + 80 + ], + "__typename": [ + 80 + ] + }, + "e_award_sources_select_column": {}, + "e_award_sources_set_input": { + "description": [ + 80 + ], + "value": [ + 80 + ], + "__typename": [ + 80 + ] + }, + "e_award_sources_stream_cursor_input": { + "initial_value": [ + 521 + ], + "ordering": [ + 308 + ], + "__typename": [ + 80 + ] + }, + "e_award_sources_stream_cursor_value_input": { + "description": [ + 80 + ], + "value": [ + 80 + ], + "__typename": [ + 80 + ] + }, + "e_award_sources_update_column": {}, + "e_award_sources_updates": { + "_set": [ + 519 + ], + "where": [ + 507 + ], + "__typename": [ + 80 + ] + }, + "e_award_tiers": { + "description": [ + 80 + ], + "value": [ + 80 + ], + "__typename": [ + 80 + ] + }, + "e_award_tiers_aggregate": { + "aggregate": [ + 526 + ], + "nodes": [ + 524 + ], + "__typename": [ + 80 + ] + }, + "e_award_tiers_aggregate_fields": { + "count": [ + 40, + { + "columns": [ + 538, + "[e_award_tiers_select_column!]" + ], + "distinct": [ + 5 + ] + } + ], + "max": [ + 532 + ], + "min": [ + 533 + ], + "__typename": [ + 80 + ] + }, + "e_award_tiers_bool_exp": { + "_and": [ + 527 + ], + "_not": [ + 527 + ], + "_or": [ + 527 + ], + "description": [ + 82 + ], + "value": [ + 82 + ], + "__typename": [ + 80 + ] + }, + "e_award_tiers_constraint": {}, + "e_award_tiers_enum": {}, + "e_award_tiers_enum_comparison_exp": { + "_eq": [ + 529 + ], + "_in": [ + 529 + ], + "_is_null": [ + 5 + ], + "_neq": [ + 529 + ], + "_nin": [ + 529 + ], + "__typename": [ + 80 + ] + }, + "e_award_tiers_insert_input": { + "description": [ + 80 + ], + "value": [ + 80 + ], + "__typename": [ + 80 + ] + }, + "e_award_tiers_max_fields": { + "description": [ + 80 + ], + "value": [ + 80 + ], + "__typename": [ + 80 + ] + }, + "e_award_tiers_min_fields": { + "description": [ + 80 + ], + "value": [ + 80 + ], + "__typename": [ + 80 + ] + }, + "e_award_tiers_mutation_response": { + "affected_rows": [ + 40 + ], + "returning": [ + 524 + ], + "__typename": [ + 80 + ] + }, + "e_award_tiers_on_conflict": { + "constraint": [ + 528 + ], + "update_columns": [ + 542 + ], + "where": [ + 527 + ], + "__typename": [ + 80 + ] + }, + "e_award_tiers_order_by": { + "description": [ + 2946 + ], + "value": [ + 2946 + ], + "__typename": [ + 80 + ] + }, + "e_award_tiers_pk_columns_input": { + "value": [ + 80 + ], + "__typename": [ + 80 + ] + }, + "e_award_tiers_select_column": {}, + "e_award_tiers_set_input": { + "description": [ + 80 + ], + "value": [ + 80 + ], + "__typename": [ + 80 + ] + }, + "e_award_tiers_stream_cursor_input": { + "initial_value": [ + 541 + ], + "ordering": [ + 308 + ], + "__typename": [ + 80 + ] + }, + "e_award_tiers_stream_cursor_value_input": { + "description": [ + 80 + ], + "value": [ + 80 ], "__typename": [ - 78 + 80 + ] + }, + "e_award_tiers_update_column": {}, + "e_award_tiers_updates": { + "_set": [ + 539 + ], + "where": [ + 527 + ], + "__typename": [ + 80 ] }, "e_check_in_settings": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_check_in_settings_aggregate": { "aggregate": [ - 429 + 546 ], "nodes": [ - 427 + 544 ], "__typename": [ - 78 + 80 ] }, "e_check_in_settings_aggregate_fields": { "count": [ - 38, + 40, { "columns": [ - 441, + 558, "[e_check_in_settings_select_column!]" ], "distinct": [ - 3 + 5 ] } ], "max": [ - 435 + 552 ], "min": [ - 436 + 553 ], "__typename": [ - 78 + 80 ] }, "e_check_in_settings_bool_exp": { "_and": [ - 430 + 547 ], "_not": [ - 430 + 547 ], "_or": [ - 430 + 547 ], "description": [ - 80 + 82 ], "value": [ - 80 + 82 ], "__typename": [ - 78 + 80 ] }, "e_check_in_settings_constraint": {}, "e_check_in_settings_enum": {}, "e_check_in_settings_enum_comparison_exp": { "_eq": [ - 432 + 549 ], "_in": [ - 432 + 549 ], "_is_null": [ - 3 + 5 ], "_neq": [ - 432 + 549 ], "_nin": [ - 432 + 549 ], "__typename": [ - 78 + 80 ] }, "e_check_in_settings_insert_input": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_check_in_settings_max_fields": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_check_in_settings_min_fields": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_check_in_settings_mutation_response": { "affected_rows": [ - 38 + 40 ], "returning": [ - 427 + 544 ], "__typename": [ - 78 + 80 ] }, "e_check_in_settings_on_conflict": { "constraint": [ - 431 + 548 ], "update_columns": [ - 445 + 562 ], "where": [ - 430 + 547 ], "__typename": [ - 78 + 80 ] }, "e_check_in_settings_order_by": { "description": [ - 2829 + 2946 ], "value": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "e_check_in_settings_pk_columns_input": { "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_check_in_settings_select_column": {}, "e_check_in_settings_set_input": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_check_in_settings_stream_cursor_input": { "initial_value": [ - 444 + 561 ], "ordering": [ - 236 + 308 ], "__typename": [ - 78 + 80 ] }, "e_check_in_settings_stream_cursor_value_input": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_check_in_settings_update_column": {}, "e_check_in_settings_updates": { "_set": [ - 442 + 559 ], "where": [ - 430 + 547 ], "__typename": [ - 78 + 80 ] }, "e_draft_game_captain_selection": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_draft_game_captain_selection_aggregate": { "aggregate": [ - 449 + 566 ], "nodes": [ - 447 + 564 ], "__typename": [ - 78 + 80 ] }, "e_draft_game_captain_selection_aggregate_fields": { "count": [ - 38, + 40, { "columns": [ - 462, + 579, "[e_draft_game_captain_selection_select_column!]" ], "distinct": [ - 3 + 5 ] } ], "max": [ - 455 + 572 ], "min": [ - 456 + 573 ], "__typename": [ - 78 + 80 ] }, "e_draft_game_captain_selection_bool_exp": { "_and": [ - 450 + 567 ], "_not": [ - 450 + 567 ], "_or": [ - 450 + 567 ], "description": [ - 80 + 82 ], "value": [ - 80 + 82 ], "__typename": [ - 78 + 80 ] }, "e_draft_game_captain_selection_constraint": {}, "e_draft_game_captain_selection_enum": {}, "e_draft_game_captain_selection_enum_comparison_exp": { "_eq": [ - 452 + 569 ], "_in": [ - 452 + 569 ], "_is_null": [ - 3 + 5 ], "_neq": [ - 452 + 569 ], "_nin": [ - 452 + 569 ], "__typename": [ - 78 + 80 ] }, "e_draft_game_captain_selection_insert_input": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_draft_game_captain_selection_max_fields": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_draft_game_captain_selection_min_fields": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_draft_game_captain_selection_mutation_response": { "affected_rows": [ - 38 + 40 ], "returning": [ - 447 + 564 ], "__typename": [ - 78 + 80 ] }, "e_draft_game_captain_selection_obj_rel_insert_input": { "data": [ - 454 + 571 ], "on_conflict": [ - 459 + 576 ], "__typename": [ - 78 + 80 ] }, "e_draft_game_captain_selection_on_conflict": { "constraint": [ - 451 + 568 ], "update_columns": [ - 466 + 583 ], "where": [ - 450 + 567 ], "__typename": [ - 78 + 80 ] }, "e_draft_game_captain_selection_order_by": { "description": [ - 2829 + 2946 ], "value": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "e_draft_game_captain_selection_pk_columns_input": { "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_draft_game_captain_selection_select_column": {}, "e_draft_game_captain_selection_set_input": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_draft_game_captain_selection_stream_cursor_input": { "initial_value": [ - 465 + 582 ], "ordering": [ - 236 + 308 ], "__typename": [ - 78 + 80 ] }, "e_draft_game_captain_selection_stream_cursor_value_input": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_draft_game_captain_selection_update_column": {}, "e_draft_game_captain_selection_updates": { "_set": [ - 463 + 580 ], "where": [ - 450 + 567 ], "__typename": [ - 78 + 80 ] }, "e_draft_game_draft_order": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_draft_game_draft_order_aggregate": { "aggregate": [ - 470 + 587 ], "nodes": [ - 468 + 585 ], "__typename": [ - 78 + 80 ] }, "e_draft_game_draft_order_aggregate_fields": { "count": [ - 38, + 40, { "columns": [ - 483, + 600, "[e_draft_game_draft_order_select_column!]" ], "distinct": [ - 3 + 5 ] } ], "max": [ - 476 + 593 ], "min": [ - 477 + 594 ], "__typename": [ - 78 + 80 ] }, "e_draft_game_draft_order_bool_exp": { "_and": [ - 471 + 588 ], "_not": [ - 471 + 588 ], "_or": [ - 471 + 588 ], "description": [ - 80 + 82 ], "value": [ - 80 + 82 ], "__typename": [ - 78 + 80 ] }, "e_draft_game_draft_order_constraint": {}, "e_draft_game_draft_order_enum": {}, "e_draft_game_draft_order_enum_comparison_exp": { "_eq": [ - 473 + 590 ], "_in": [ - 473 + 590 ], "_is_null": [ - 3 + 5 ], "_neq": [ - 473 + 590 ], "_nin": [ - 473 + 590 ], "__typename": [ - 78 + 80 ] }, "e_draft_game_draft_order_insert_input": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_draft_game_draft_order_max_fields": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_draft_game_draft_order_min_fields": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_draft_game_draft_order_mutation_response": { "affected_rows": [ - 38 + 40 ], "returning": [ - 468 + 585 ], "__typename": [ - 78 + 80 ] }, "e_draft_game_draft_order_obj_rel_insert_input": { "data": [ - 475 + 592 ], "on_conflict": [ - 480 + 597 ], "__typename": [ - 78 + 80 ] }, "e_draft_game_draft_order_on_conflict": { "constraint": [ - 472 + 589 ], "update_columns": [ - 487 + 604 ], "where": [ - 471 + 588 ], "__typename": [ - 78 + 80 ] }, "e_draft_game_draft_order_order_by": { "description": [ - 2829 + 2946 ], "value": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "e_draft_game_draft_order_pk_columns_input": { "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_draft_game_draft_order_select_column": {}, "e_draft_game_draft_order_set_input": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_draft_game_draft_order_stream_cursor_input": { "initial_value": [ - 486 + 603 ], "ordering": [ - 236 + 308 ], "__typename": [ - 78 + 80 ] }, "e_draft_game_draft_order_stream_cursor_value_input": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_draft_game_draft_order_update_column": {}, "e_draft_game_draft_order_updates": { "_set": [ - 484 + 601 ], "where": [ - 471 + 588 ], "__typename": [ - 78 + 80 ] }, "e_draft_game_mode": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_draft_game_mode_aggregate": { "aggregate": [ - 491 + 608 ], "nodes": [ - 489 + 606 ], "__typename": [ - 78 + 80 ] }, "e_draft_game_mode_aggregate_fields": { "count": [ - 38, + 40, { "columns": [ - 504, + 621, "[e_draft_game_mode_select_column!]" ], "distinct": [ - 3 + 5 ] } ], "max": [ - 497 + 614 ], "min": [ - 498 + 615 ], "__typename": [ - 78 + 80 ] }, "e_draft_game_mode_bool_exp": { "_and": [ - 492 + 609 ], "_not": [ - 492 + 609 ], "_or": [ - 492 + 609 ], "description": [ - 80 + 82 ], "value": [ - 80 + 82 ], "__typename": [ - 78 + 80 ] }, "e_draft_game_mode_constraint": {}, "e_draft_game_mode_enum": {}, "e_draft_game_mode_enum_comparison_exp": { "_eq": [ - 494 + 611 ], "_in": [ - 494 + 611 ], "_is_null": [ - 3 + 5 ], "_neq": [ - 494 + 611 ], "_nin": [ - 494 + 611 ], "__typename": [ - 78 + 80 ] }, "e_draft_game_mode_insert_input": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_draft_game_mode_max_fields": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_draft_game_mode_min_fields": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_draft_game_mode_mutation_response": { "affected_rows": [ - 38 + 40 ], "returning": [ - 489 + 606 ], "__typename": [ - 78 + 80 ] }, "e_draft_game_mode_obj_rel_insert_input": { "data": [ - 496 + 613 ], "on_conflict": [ - 501 + 618 ], "__typename": [ - 78 + 80 ] }, "e_draft_game_mode_on_conflict": { "constraint": [ - 493 + 610 ], "update_columns": [ - 508 + 625 ], "where": [ - 492 + 609 ], "__typename": [ - 78 + 80 ] }, "e_draft_game_mode_order_by": { "description": [ - 2829 + 2946 ], "value": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "e_draft_game_mode_pk_columns_input": { "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_draft_game_mode_select_column": {}, "e_draft_game_mode_set_input": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_draft_game_mode_stream_cursor_input": { "initial_value": [ - 507 + 624 ], "ordering": [ - 236 + 308 ], "__typename": [ - 78 + 80 ] }, "e_draft_game_mode_stream_cursor_value_input": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_draft_game_mode_update_column": {}, "e_draft_game_mode_updates": { "_set": [ - 505 + 622 ], "where": [ - 492 + 609 ], "__typename": [ - 78 + 80 ] }, "e_draft_game_player_status": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_draft_game_player_status_aggregate": { "aggregate": [ - 512 + 629 ], "nodes": [ - 510 + 627 ], "__typename": [ - 78 + 80 ] }, "e_draft_game_player_status_aggregate_fields": { "count": [ - 38, + 40, { "columns": [ - 525, + 642, "[e_draft_game_player_status_select_column!]" ], "distinct": [ - 3 + 5 ] } ], "max": [ - 518 + 635 ], "min": [ - 519 + 636 ], "__typename": [ - 78 + 80 ] }, "e_draft_game_player_status_bool_exp": { "_and": [ - 513 + 630 ], "_not": [ - 513 + 630 ], "_or": [ - 513 + 630 ], "description": [ - 80 + 82 ], "value": [ - 80 + 82 ], "__typename": [ - 78 + 80 ] }, "e_draft_game_player_status_constraint": {}, "e_draft_game_player_status_enum": {}, "e_draft_game_player_status_enum_comparison_exp": { "_eq": [ - 515 + 632 ], "_in": [ - 515 + 632 ], "_is_null": [ - 3 + 5 ], "_neq": [ - 515 + 632 ], "_nin": [ - 515 + 632 ], "__typename": [ - 78 + 80 ] }, "e_draft_game_player_status_insert_input": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_draft_game_player_status_max_fields": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_draft_game_player_status_min_fields": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_draft_game_player_status_mutation_response": { "affected_rows": [ - 38 + 40 ], "returning": [ - 510 + 627 ], "__typename": [ - 78 + 80 ] }, "e_draft_game_player_status_obj_rel_insert_input": { "data": [ - 517 + 634 ], "on_conflict": [ - 522 + 639 ], "__typename": [ - 78 + 80 ] }, "e_draft_game_player_status_on_conflict": { "constraint": [ - 514 + 631 ], "update_columns": [ - 529 + 646 ], "where": [ - 513 + 630 ], "__typename": [ - 78 + 80 ] }, "e_draft_game_player_status_order_by": { "description": [ - 2829 + 2946 ], "value": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "e_draft_game_player_status_pk_columns_input": { "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_draft_game_player_status_select_column": {}, "e_draft_game_player_status_set_input": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_draft_game_player_status_stream_cursor_input": { "initial_value": [ - 528 + 645 ], "ordering": [ - 236 + 308 ], "__typename": [ - 78 + 80 ] }, "e_draft_game_player_status_stream_cursor_value_input": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_draft_game_player_status_update_column": {}, "e_draft_game_player_status_updates": { "_set": [ - 526 + 643 ], "where": [ - 513 + 630 ], "__typename": [ - 78 + 80 ] }, "e_draft_game_status": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_draft_game_status_aggregate": { "aggregate": [ - 533 + 650 ], "nodes": [ - 531 + 648 ], "__typename": [ - 78 + 80 ] }, "e_draft_game_status_aggregate_fields": { "count": [ - 38, + 40, { "columns": [ - 546, + 663, "[e_draft_game_status_select_column!]" ], "distinct": [ - 3 + 5 ] } ], "max": [ - 539 + 656 ], "min": [ - 540 + 657 ], "__typename": [ - 78 + 80 ] }, "e_draft_game_status_bool_exp": { "_and": [ - 534 + 651 ], "_not": [ - 534 + 651 ], "_or": [ - 534 + 651 ], "description": [ - 80 + 82 ], "value": [ - 80 + 82 ], "__typename": [ - 78 + 80 ] }, "e_draft_game_status_constraint": {}, "e_draft_game_status_enum": {}, "e_draft_game_status_enum_comparison_exp": { "_eq": [ - 536 + 653 ], "_in": [ - 536 + 653 ], "_is_null": [ - 3 + 5 ], "_neq": [ - 536 + 653 ], "_nin": [ - 536 + 653 ], "__typename": [ - 78 + 80 ] }, "e_draft_game_status_insert_input": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_draft_game_status_max_fields": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_draft_game_status_min_fields": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_draft_game_status_mutation_response": { "affected_rows": [ - 38 + 40 ], "returning": [ - 531 + 648 ], "__typename": [ - 78 + 80 ] }, "e_draft_game_status_obj_rel_insert_input": { "data": [ - 538 + 655 ], "on_conflict": [ - 543 + 660 ], "__typename": [ - 78 + 80 ] }, "e_draft_game_status_on_conflict": { "constraint": [ - 535 + 652 ], "update_columns": [ - 550 + 667 ], "where": [ - 534 + 651 ], "__typename": [ - 78 + 80 ] }, "e_draft_game_status_order_by": { "description": [ - 2829 + 2946 ], "value": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "e_draft_game_status_pk_columns_input": { "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_draft_game_status_select_column": {}, "e_draft_game_status_set_input": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_draft_game_status_stream_cursor_input": { "initial_value": [ - 549 + 666 ], "ordering": [ - 236 + 308 ], "__typename": [ - 78 + 80 ] }, "e_draft_game_status_stream_cursor_value_input": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_draft_game_status_update_column": {}, "e_draft_game_status_updates": { "_set": [ - 547 + 664 ], "where": [ - 534 + 651 ], "__typename": [ - 78 + 80 ] }, "e_event_media_access": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_event_media_access_aggregate": { "aggregate": [ - 554 + 671 ], "nodes": [ - 552 + 669 ], "__typename": [ - 78 + 80 ] }, "e_event_media_access_aggregate_fields": { "count": [ - 38, + 40, { "columns": [ - 566, + 683, "[e_event_media_access_select_column!]" ], "distinct": [ - 3 + 5 ] } ], "max": [ - 560 + 677 ], "min": [ - 561 + 678 ], "__typename": [ - 78 + 80 ] }, "e_event_media_access_bool_exp": { "_and": [ - 555 + 672 ], "_not": [ - 555 + 672 ], "_or": [ - 555 + 672 ], "description": [ - 80 + 82 ], "value": [ - 80 + 82 ], "__typename": [ - 78 + 80 ] }, "e_event_media_access_constraint": {}, "e_event_media_access_enum": {}, "e_event_media_access_enum_comparison_exp": { "_eq": [ - 557 + 674 ], "_in": [ - 557 + 674 ], "_is_null": [ - 3 + 5 ], "_neq": [ - 557 + 674 ], "_nin": [ - 557 + 674 ], "__typename": [ - 78 + 80 ] }, "e_event_media_access_insert_input": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_event_media_access_max_fields": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_event_media_access_min_fields": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_event_media_access_mutation_response": { "affected_rows": [ - 38 + 40 ], "returning": [ - 552 + 669 ], "__typename": [ - 78 + 80 ] }, "e_event_media_access_on_conflict": { "constraint": [ - 556 + 673 ], "update_columns": [ - 570 + 687 ], "where": [ - 555 + 672 ], "__typename": [ - 78 + 80 ] }, "e_event_media_access_order_by": { "description": [ - 2829 + 2946 ], "value": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "e_event_media_access_pk_columns_input": { "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_event_media_access_select_column": {}, "e_event_media_access_set_input": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_event_media_access_stream_cursor_input": { "initial_value": [ - 569 + 686 ], "ordering": [ - 236 + 308 ], "__typename": [ - 78 + 80 ] }, "e_event_media_access_stream_cursor_value_input": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_event_media_access_update_column": {}, "e_event_media_access_updates": { "_set": [ - 567 + 684 ], "where": [ - 555 + 672 ], "__typename": [ - 78 + 80 ] }, "e_event_visibility": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_event_visibility_aggregate": { "aggregate": [ - 574 + 691 ], "nodes": [ - 572 + 689 ], "__typename": [ - 78 + 80 ] }, "e_event_visibility_aggregate_fields": { "count": [ - 38, + 40, { "columns": [ - 586, + 703, "[e_event_visibility_select_column!]" ], "distinct": [ - 3 + 5 ] } ], "max": [ - 580 + 697 ], "min": [ - 581 + 698 ], "__typename": [ - 78 + 80 ] }, "e_event_visibility_bool_exp": { "_and": [ - 575 + 692 ], "_not": [ - 575 + 692 ], "_or": [ - 575 + 692 ], "description": [ - 80 + 82 ], "value": [ - 80 + 82 ], "__typename": [ - 78 + 80 ] }, "e_event_visibility_constraint": {}, "e_event_visibility_enum": {}, "e_event_visibility_enum_comparison_exp": { "_eq": [ - 577 + 694 ], "_in": [ - 577 + 694 ], "_is_null": [ - 3 + 5 ], "_neq": [ - 577 + 694 ], "_nin": [ - 577 + 694 ], "__typename": [ - 78 + 80 ] }, "e_event_visibility_insert_input": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_event_visibility_max_fields": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_event_visibility_min_fields": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_event_visibility_mutation_response": { "affected_rows": [ - 38 + 40 ], "returning": [ - 572 + 689 ], "__typename": [ - 78 + 80 ] }, "e_event_visibility_on_conflict": { "constraint": [ - 576 + 693 ], "update_columns": [ - 590 + 707 ], "where": [ - 575 + 692 ], "__typename": [ - 78 + 80 ] }, "e_event_visibility_order_by": { "description": [ - 2829 + 2946 ], "value": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "e_event_visibility_pk_columns_input": { "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_event_visibility_select_column": {}, "e_event_visibility_set_input": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_event_visibility_stream_cursor_input": { "initial_value": [ - 589 + 706 ], "ordering": [ - 236 + 308 ], "__typename": [ - 78 + 80 ] }, "e_event_visibility_stream_cursor_value_input": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_event_visibility_update_column": {}, "e_event_visibility_updates": { "_set": [ - 587 + 704 ], "where": [ - 575 + 692 ], "__typename": [ - 78 + 80 ] }, "e_friend_status": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_friend_status_aggregate": { "aggregate": [ - 594 + 711 ], "nodes": [ - 592 + 709 ], "__typename": [ - 78 + 80 ] }, "e_friend_status_aggregate_fields": { "count": [ - 38, + 40, { "columns": [ - 607, + 724, "[e_friend_status_select_column!]" ], "distinct": [ - 3 + 5 ] } ], "max": [ - 600 + 717 ], "min": [ - 601 + 718 ], "__typename": [ - 78 + 80 ] }, "e_friend_status_bool_exp": { "_and": [ - 595 + 712 ], "_not": [ - 595 + 712 ], "_or": [ - 595 + 712 ], "description": [ - 80 + 82 ], "value": [ - 80 + 82 ], "__typename": [ - 78 + 80 ] }, "e_friend_status_constraint": {}, "e_friend_status_enum": {}, "e_friend_status_enum_comparison_exp": { "_eq": [ - 597 + 714 ], "_in": [ - 597 + 714 ], "_is_null": [ - 3 + 5 ], "_neq": [ - 597 + 714 ], "_nin": [ - 597 + 714 ], "__typename": [ - 78 + 80 ] }, "e_friend_status_insert_input": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_friend_status_max_fields": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_friend_status_min_fields": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_friend_status_mutation_response": { "affected_rows": [ - 38 + 40 ], "returning": [ - 592 + 709 ], "__typename": [ - 78 + 80 ] }, "e_friend_status_obj_rel_insert_input": { "data": [ - 599 + 716 ], "on_conflict": [ - 604 + 721 ], "__typename": [ - 78 + 80 ] }, "e_friend_status_on_conflict": { "constraint": [ - 596 + 713 ], "update_columns": [ - 611 + 728 ], "where": [ - 595 + 712 ], "__typename": [ - 78 + 80 ] }, "e_friend_status_order_by": { "description": [ - 2829 + 2946 ], "value": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "e_friend_status_pk_columns_input": { "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_friend_status_select_column": {}, "e_friend_status_set_input": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_friend_status_stream_cursor_input": { "initial_value": [ - 610 + 727 ], "ordering": [ - 236 + 308 ], "__typename": [ - 78 + 80 ] }, "e_friend_status_stream_cursor_value_input": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_friend_status_update_column": {}, "e_friend_status_updates": { "_set": [ - 608 + 725 ], "where": [ - 595 + 712 ], "__typename": [ - 78 + 80 ] }, "e_game_cfg_types": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_game_cfg_types_aggregate": { "aggregate": [ - 615 + 732 ], "nodes": [ - 613 + 730 ], "__typename": [ - 78 + 80 ] }, "e_game_cfg_types_aggregate_fields": { "count": [ - 38, + 40, { "columns": [ - 627, + 744, "[e_game_cfg_types_select_column!]" ], "distinct": [ - 3 + 5 ] } ], "max": [ - 621 + 738 ], "min": [ - 622 + 739 ], "__typename": [ - 78 + 80 ] }, "e_game_cfg_types_bool_exp": { "_and": [ - 616 + 733 ], "_not": [ - 616 + 733 ], "_or": [ - 616 + 733 ], "description": [ - 80 + 82 ], "value": [ - 80 + 82 ], "__typename": [ - 78 + 80 ] }, "e_game_cfg_types_constraint": {}, "e_game_cfg_types_enum": {}, "e_game_cfg_types_enum_comparison_exp": { "_eq": [ - 618 + 735 ], "_in": [ - 618 + 735 ], "_is_null": [ - 3 + 5 ], "_neq": [ - 618 + 735 ], "_nin": [ - 618 + 735 ], "__typename": [ - 78 + 80 ] }, "e_game_cfg_types_insert_input": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_game_cfg_types_max_fields": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_game_cfg_types_min_fields": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_game_cfg_types_mutation_response": { "affected_rows": [ - 38 + 40 ], "returning": [ - 613 + 730 ], "__typename": [ - 78 + 80 ] }, "e_game_cfg_types_on_conflict": { "constraint": [ - 617 + 734 ], "update_columns": [ - 631 + 748 ], "where": [ - 616 + 733 ], "__typename": [ - 78 + 80 ] }, "e_game_cfg_types_order_by": { "description": [ - 2829 + 2946 ], "value": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "e_game_cfg_types_pk_columns_input": { "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_game_cfg_types_select_column": {}, "e_game_cfg_types_set_input": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_game_cfg_types_stream_cursor_input": { "initial_value": [ - 630 + 747 ], "ordering": [ - 236 + 308 ], "__typename": [ - 78 + 80 ] }, "e_game_cfg_types_stream_cursor_value_input": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_game_cfg_types_update_column": {}, "e_game_cfg_types_updates": { "_set": [ - 628 + 745 ], "where": [ - 616 + 733 ], "__typename": [ - 78 + 80 ] }, "e_game_server_node_statuses": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_game_server_node_statuses_aggregate": { "aggregate": [ - 635 + 752 ], "nodes": [ - 633 + 750 ], "__typename": [ - 78 + 80 ] }, "e_game_server_node_statuses_aggregate_fields": { "count": [ - 38, + 40, { "columns": [ - 648, + 765, "[e_game_server_node_statuses_select_column!]" ], "distinct": [ - 3 + 5 ] } ], "max": [ - 641 + 758 ], "min": [ - 642 + 759 ], "__typename": [ - 78 + 80 ] }, "e_game_server_node_statuses_bool_exp": { "_and": [ - 636 + 753 ], "_not": [ - 636 + 753 ], "_or": [ - 636 + 753 ], "description": [ - 80 + 82 ], "value": [ - 80 + 82 ], "__typename": [ - 78 + 80 ] }, "e_game_server_node_statuses_constraint": {}, "e_game_server_node_statuses_enum": {}, "e_game_server_node_statuses_enum_comparison_exp": { "_eq": [ - 638 + 755 ], "_in": [ - 638 + 755 ], "_is_null": [ - 3 + 5 ], "_neq": [ - 638 + 755 ], "_nin": [ - 638 + 755 ], "__typename": [ - 78 + 80 ] }, "e_game_server_node_statuses_insert_input": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_game_server_node_statuses_max_fields": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_game_server_node_statuses_min_fields": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_game_server_node_statuses_mutation_response": { "affected_rows": [ - 38 + 40 ], "returning": [ - 633 + 750 ], "__typename": [ - 78 + 80 ] }, "e_game_server_node_statuses_obj_rel_insert_input": { "data": [ - 640 + 757 ], "on_conflict": [ - 645 + 762 ], "__typename": [ - 78 + 80 ] }, "e_game_server_node_statuses_on_conflict": { "constraint": [ - 637 + 754 ], "update_columns": [ - 652 + 769 ], "where": [ - 636 + 753 ], "__typename": [ - 78 + 80 ] }, "e_game_server_node_statuses_order_by": { "description": [ - 2829 + 2946 ], "value": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "e_game_server_node_statuses_pk_columns_input": { "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_game_server_node_statuses_select_column": {}, "e_game_server_node_statuses_set_input": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_game_server_node_statuses_stream_cursor_input": { "initial_value": [ - 651 + 768 ], "ordering": [ - 236 + 308 ], "__typename": [ - 78 + 80 ] }, "e_game_server_node_statuses_stream_cursor_value_input": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_game_server_node_statuses_update_column": {}, "e_game_server_node_statuses_updates": { "_set": [ - 649 + 766 ], "where": [ - 636 + 753 ], "__typename": [ - 78 + 80 ] }, "e_league_movement_types": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_league_movement_types_aggregate": { "aggregate": [ - 656 + 773 ], "nodes": [ - 654 + 771 ], "__typename": [ - 78 + 80 ] }, "e_league_movement_types_aggregate_fields": { "count": [ - 38, + 40, { "columns": [ - 669, + 786, "[e_league_movement_types_select_column!]" ], "distinct": [ - 3 + 5 ] } ], "max": [ - 662 + 779 ], "min": [ - 663 + 780 ], "__typename": [ - 78 + 80 ] }, "e_league_movement_types_bool_exp": { "_and": [ - 657 + 774 ], "_not": [ - 657 + 774 ], "_or": [ - 657 + 774 ], "description": [ - 80 + 82 ], "value": [ - 80 + 82 ], "__typename": [ - 78 + 80 ] }, "e_league_movement_types_constraint": {}, "e_league_movement_types_enum": {}, "e_league_movement_types_enum_comparison_exp": { "_eq": [ - 659 + 776 ], "_in": [ - 659 + 776 ], "_is_null": [ - 3 + 5 ], "_neq": [ - 659 + 776 ], "_nin": [ - 659 + 776 ], "__typename": [ - 78 + 80 ] }, "e_league_movement_types_insert_input": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_league_movement_types_max_fields": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_league_movement_types_min_fields": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_league_movement_types_mutation_response": { "affected_rows": [ - 38 + 40 ], "returning": [ - 654 + 771 ], "__typename": [ - 78 + 80 ] }, "e_league_movement_types_obj_rel_insert_input": { "data": [ - 661 + 778 ], "on_conflict": [ - 666 + 783 ], "__typename": [ - 78 + 80 ] }, "e_league_movement_types_on_conflict": { "constraint": [ - 658 + 775 ], "update_columns": [ - 673 + 790 ], "where": [ - 657 + 774 ], "__typename": [ - 78 + 80 ] }, "e_league_movement_types_order_by": { "description": [ - 2829 + 2946 ], "value": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "e_league_movement_types_pk_columns_input": { "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_league_movement_types_select_column": {}, "e_league_movement_types_set_input": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_league_movement_types_stream_cursor_input": { "initial_value": [ - 672 + 789 ], "ordering": [ - 236 + 308 ], "__typename": [ - 78 + 80 ] }, "e_league_movement_types_stream_cursor_value_input": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_league_movement_types_update_column": {}, "e_league_movement_types_updates": { "_set": [ - 670 + 787 ], "where": [ - 657 + 774 ], "__typename": [ - 78 + 80 ] }, "e_league_proposal_statuses": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_league_proposal_statuses_aggregate": { "aggregate": [ - 677 + 794 ], "nodes": [ - 675 + 792 ], "__typename": [ - 78 + 80 ] }, "e_league_proposal_statuses_aggregate_fields": { "count": [ - 38, + 40, { "columns": [ - 690, + 807, "[e_league_proposal_statuses_select_column!]" ], "distinct": [ - 3 + 5 ] } ], "max": [ - 683 + 800 ], "min": [ - 684 + 801 ], "__typename": [ - 78 + 80 ] }, "e_league_proposal_statuses_bool_exp": { "_and": [ - 678 + 795 ], "_not": [ - 678 + 795 ], "_or": [ - 678 + 795 ], "description": [ - 80 + 82 ], "value": [ - 80 + 82 ], "__typename": [ - 78 + 80 ] }, "e_league_proposal_statuses_constraint": {}, "e_league_proposal_statuses_enum": {}, "e_league_proposal_statuses_enum_comparison_exp": { "_eq": [ - 680 + 797 ], "_in": [ - 680 + 797 ], "_is_null": [ - 3 + 5 ], "_neq": [ - 680 + 797 ], "_nin": [ - 680 + 797 ], "__typename": [ - 78 + 80 ] }, "e_league_proposal_statuses_insert_input": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_league_proposal_statuses_max_fields": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_league_proposal_statuses_min_fields": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_league_proposal_statuses_mutation_response": { "affected_rows": [ - 38 + 40 ], "returning": [ - 675 + 792 ], "__typename": [ - 78 + 80 ] }, "e_league_proposal_statuses_obj_rel_insert_input": { "data": [ - 682 + 799 ], "on_conflict": [ - 687 + 804 ], "__typename": [ - 78 + 80 ] }, "e_league_proposal_statuses_on_conflict": { "constraint": [ - 679 + 796 ], "update_columns": [ - 694 + 811 ], "where": [ - 678 + 795 ], "__typename": [ - 78 + 80 ] }, "e_league_proposal_statuses_order_by": { "description": [ - 2829 + 2946 ], "value": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "e_league_proposal_statuses_pk_columns_input": { "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_league_proposal_statuses_select_column": {}, "e_league_proposal_statuses_set_input": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_league_proposal_statuses_stream_cursor_input": { "initial_value": [ - 693 + 810 ], "ordering": [ - 236 + 308 ], "__typename": [ - 78 + 80 ] }, "e_league_proposal_statuses_stream_cursor_value_input": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_league_proposal_statuses_update_column": {}, "e_league_proposal_statuses_updates": { "_set": [ - 691 + 808 ], "where": [ - 678 + 795 ], "__typename": [ - 78 + 80 ] }, "e_league_registration_statuses": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_league_registration_statuses_aggregate": { "aggregate": [ - 698 + 815 ], "nodes": [ - 696 + 813 ], "__typename": [ - 78 + 80 ] }, "e_league_registration_statuses_aggregate_fields": { "count": [ - 38, + 40, { "columns": [ - 711, + 828, "[e_league_registration_statuses_select_column!]" ], "distinct": [ - 3 + 5 ] } ], "max": [ - 704 + 821 ], "min": [ - 705 + 822 ], "__typename": [ - 78 + 80 ] }, "e_league_registration_statuses_bool_exp": { "_and": [ - 699 + 816 ], "_not": [ - 699 + 816 ], "_or": [ - 699 + 816 ], "description": [ - 80 + 82 ], "value": [ - 80 + 82 ], "__typename": [ - 78 + 80 ] }, "e_league_registration_statuses_constraint": {}, "e_league_registration_statuses_enum": {}, "e_league_registration_statuses_enum_comparison_exp": { "_eq": [ - 701 + 818 ], "_in": [ - 701 + 818 ], "_is_null": [ - 3 + 5 ], "_neq": [ - 701 + 818 ], "_nin": [ - 701 + 818 ], "__typename": [ - 78 + 80 ] }, "e_league_registration_statuses_insert_input": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_league_registration_statuses_max_fields": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_league_registration_statuses_min_fields": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_league_registration_statuses_mutation_response": { "affected_rows": [ - 38 + 40 ], "returning": [ - 696 + 813 ], "__typename": [ - 78 + 80 ] }, "e_league_registration_statuses_obj_rel_insert_input": { "data": [ - 703 + 820 ], "on_conflict": [ - 708 + 825 ], "__typename": [ - 78 + 80 ] }, "e_league_registration_statuses_on_conflict": { "constraint": [ - 700 + 817 ], "update_columns": [ - 715 + 832 ], "where": [ - 699 + 816 ], "__typename": [ - 78 + 80 ] }, "e_league_registration_statuses_order_by": { "description": [ - 2829 + 2946 ], "value": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "e_league_registration_statuses_pk_columns_input": { "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_league_registration_statuses_select_column": {}, "e_league_registration_statuses_set_input": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_league_registration_statuses_stream_cursor_input": { "initial_value": [ - 714 + 831 ], "ordering": [ - 236 + 308 ], "__typename": [ - 78 + 80 ] }, "e_league_registration_statuses_stream_cursor_value_input": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_league_registration_statuses_update_column": {}, "e_league_registration_statuses_updates": { "_set": [ - 712 + 829 ], "where": [ - 699 + 816 ], "__typename": [ - 78 + 80 ] }, "e_league_season_statuses": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_league_season_statuses_aggregate": { "aggregate": [ - 719 + 836 ], "nodes": [ - 717 + 834 ], "__typename": [ - 78 + 80 ] }, "e_league_season_statuses_aggregate_fields": { "count": [ - 38, + 40, { "columns": [ - 732, + 849, "[e_league_season_statuses_select_column!]" ], "distinct": [ - 3 + 5 ] } ], "max": [ - 725 + 842 ], "min": [ - 726 + 843 ], "__typename": [ - 78 + 80 ] }, "e_league_season_statuses_bool_exp": { "_and": [ - 720 + 837 ], "_not": [ - 720 + 837 ], "_or": [ - 720 + 837 ], "description": [ - 80 + 82 ], "value": [ - 80 + 82 ], "__typename": [ - 78 + 80 ] }, "e_league_season_statuses_constraint": {}, "e_league_season_statuses_enum": {}, "e_league_season_statuses_enum_comparison_exp": { "_eq": [ - 722 + 839 ], "_in": [ - 722 + 839 ], "_is_null": [ - 3 + 5 ], "_neq": [ - 722 + 839 ], "_nin": [ - 722 + 839 ], "__typename": [ - 78 + 80 ] }, "e_league_season_statuses_insert_input": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_league_season_statuses_max_fields": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_league_season_statuses_min_fields": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_league_season_statuses_mutation_response": { "affected_rows": [ - 38 + 40 ], "returning": [ - 717 + 834 ], "__typename": [ - 78 + 80 ] }, "e_league_season_statuses_obj_rel_insert_input": { "data": [ - 724 + 841 ], "on_conflict": [ - 729 + 846 ], "__typename": [ - 78 + 80 ] }, "e_league_season_statuses_on_conflict": { "constraint": [ - 721 + 838 ], "update_columns": [ - 736 + 853 ], "where": [ - 720 + 837 ], "__typename": [ - 78 + 80 ] }, "e_league_season_statuses_order_by": { "description": [ - 2829 + 2946 ], "value": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "e_league_season_statuses_pk_columns_input": { "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_league_season_statuses_select_column": {}, "e_league_season_statuses_set_input": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_league_season_statuses_stream_cursor_input": { "initial_value": [ - 735 + 852 ], "ordering": [ - 236 + 308 ], "__typename": [ - 78 + 80 ] }, "e_league_season_statuses_stream_cursor_value_input": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_league_season_statuses_update_column": {}, "e_league_season_statuses_updates": { "_set": [ - 733 + 850 ], "where": [ - 720 + 837 ], "__typename": [ - 78 + 80 ] }, "e_lobby_access": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_lobby_access_aggregate": { "aggregate": [ - 740 + 857 ], "nodes": [ - 738 + 855 ], "__typename": [ - 78 + 80 ] }, "e_lobby_access_aggregate_fields": { "count": [ - 38, + 40, { "columns": [ - 753, + 870, "[e_lobby_access_select_column!]" ], "distinct": [ - 3 + 5 ] } ], "max": [ - 746 + 863 ], "min": [ - 747 + 864 ], "__typename": [ - 78 + 80 ] }, "e_lobby_access_bool_exp": { "_and": [ - 741 + 858 ], "_not": [ - 741 + 858 ], "_or": [ - 741 + 858 ], "description": [ - 80 + 82 ], "value": [ - 80 + 82 ], "__typename": [ - 78 + 80 ] }, "e_lobby_access_constraint": {}, "e_lobby_access_enum": {}, "e_lobby_access_enum_comparison_exp": { "_eq": [ - 743 + 860 ], "_in": [ - 743 + 860 ], "_is_null": [ - 3 + 5 ], "_neq": [ - 743 + 860 ], "_nin": [ - 743 + 860 ], "__typename": [ - 78 + 80 ] }, "e_lobby_access_insert_input": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_lobby_access_max_fields": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_lobby_access_min_fields": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_lobby_access_mutation_response": { "affected_rows": [ - 38 + 40 ], "returning": [ - 738 + 855 ], "__typename": [ - 78 + 80 ] }, "e_lobby_access_obj_rel_insert_input": { "data": [ - 745 + 862 ], "on_conflict": [ - 750 + 867 ], "__typename": [ - 78 + 80 ] }, "e_lobby_access_on_conflict": { "constraint": [ - 742 + 859 ], "update_columns": [ - 757 + 874 ], "where": [ - 741 + 858 ], "__typename": [ - 78 + 80 ] }, "e_lobby_access_order_by": { "description": [ - 2829 + 2946 ], "value": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "e_lobby_access_pk_columns_input": { "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_lobby_access_select_column": {}, "e_lobby_access_set_input": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_lobby_access_stream_cursor_input": { "initial_value": [ - 756 + 873 ], "ordering": [ - 236 + 308 ], "__typename": [ - 78 + 80 ] }, "e_lobby_access_stream_cursor_value_input": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_lobby_access_update_column": {}, "e_lobby_access_updates": { "_set": [ - 754 + 871 ], "where": [ - 741 + 858 ], "__typename": [ - 78 + 80 ] }, "e_lobby_player_status": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_lobby_player_status_aggregate": { "aggregate": [ - 761 + 878 ], "nodes": [ - 759 + 876 ], "__typename": [ - 78 + 80 ] }, "e_lobby_player_status_aggregate_fields": { "count": [ - 38, + 40, { "columns": [ - 773, + 890, "[e_lobby_player_status_select_column!]" ], "distinct": [ - 3 + 5 ] } ], "max": [ - 767 + 884 ], "min": [ - 768 + 885 ], "__typename": [ - 78 + 80 ] }, "e_lobby_player_status_bool_exp": { "_and": [ - 762 + 879 ], "_not": [ - 762 + 879 ], "_or": [ - 762 + 879 ], "description": [ - 80 + 82 ], "value": [ - 80 + 82 ], "__typename": [ - 78 + 80 ] }, "e_lobby_player_status_constraint": {}, "e_lobby_player_status_enum": {}, "e_lobby_player_status_enum_comparison_exp": { "_eq": [ - 764 + 881 ], "_in": [ - 764 + 881 ], "_is_null": [ - 3 + 5 ], "_neq": [ - 764 + 881 ], "_nin": [ - 764 + 881 ], "__typename": [ - 78 + 80 ] }, "e_lobby_player_status_insert_input": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_lobby_player_status_max_fields": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_lobby_player_status_min_fields": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_lobby_player_status_mutation_response": { "affected_rows": [ - 38 + 40 ], "returning": [ - 759 + 876 ], "__typename": [ - 78 + 80 ] }, "e_lobby_player_status_on_conflict": { "constraint": [ - 763 + 880 ], "update_columns": [ - 777 + 894 ], "where": [ - 762 + 879 ], "__typename": [ - 78 + 80 ] }, "e_lobby_player_status_order_by": { "description": [ - 2829 + 2946 ], "value": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "e_lobby_player_status_pk_columns_input": { "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_lobby_player_status_select_column": {}, "e_lobby_player_status_set_input": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_lobby_player_status_stream_cursor_input": { "initial_value": [ - 776 + 893 ], "ordering": [ - 236 + 308 ], "__typename": [ - 78 + 80 ] }, "e_lobby_player_status_stream_cursor_value_input": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_lobby_player_status_update_column": {}, "e_lobby_player_status_updates": { "_set": [ - 774 + 891 ], "where": [ - 762 + 879 ], "__typename": [ - 78 + 80 ] }, "e_map_pool_types": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_map_pool_types_aggregate": { "aggregate": [ - 781 + 898 ], "nodes": [ - 779 + 896 ], "__typename": [ - 78 + 80 ] }, "e_map_pool_types_aggregate_fields": { "count": [ - 38, + 40, { "columns": [ - 794, + 911, "[e_map_pool_types_select_column!]" ], "distinct": [ - 3 + 5 ] } ], "max": [ - 787 + 904 ], "min": [ - 788 + 905 ], "__typename": [ - 78 + 80 ] }, "e_map_pool_types_bool_exp": { "_and": [ - 782 + 899 ], "_not": [ - 782 + 899 ], "_or": [ - 782 + 899 ], "description": [ - 80 + 82 ], "value": [ - 80 + 82 ], "__typename": [ - 78 + 80 ] }, "e_map_pool_types_constraint": {}, "e_map_pool_types_enum": {}, "e_map_pool_types_enum_comparison_exp": { "_eq": [ - 784 + 901 ], "_in": [ - 784 + 901 ], "_is_null": [ - 3 + 5 ], "_neq": [ - 784 + 901 ], "_nin": [ - 784 + 901 ], "__typename": [ - 78 + 80 ] }, "e_map_pool_types_insert_input": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_map_pool_types_max_fields": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_map_pool_types_min_fields": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_map_pool_types_mutation_response": { "affected_rows": [ - 38 + 40 ], "returning": [ - 779 + 896 ], "__typename": [ - 78 + 80 ] }, "e_map_pool_types_obj_rel_insert_input": { "data": [ - 786 + 903 ], "on_conflict": [ - 791 + 908 ], "__typename": [ - 78 + 80 ] }, "e_map_pool_types_on_conflict": { "constraint": [ - 783 + 900 ], "update_columns": [ - 798 + 915 ], "where": [ - 782 + 899 ], "__typename": [ - 78 + 80 ] }, "e_map_pool_types_order_by": { "description": [ - 2829 + 2946 ], "value": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "e_map_pool_types_pk_columns_input": { "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_map_pool_types_select_column": {}, "e_map_pool_types_set_input": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_map_pool_types_stream_cursor_input": { "initial_value": [ - 797 + 914 ], "ordering": [ - 236 + 308 ], "__typename": [ - 78 + 80 ] }, "e_map_pool_types_stream_cursor_value_input": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_map_pool_types_update_column": {}, "e_map_pool_types_updates": { "_set": [ - 795 + 912 ], "where": [ - 782 + 899 ], "__typename": [ - 78 + 80 ] }, "e_match_clip_visibility": { "description": [ - 78 + 80 ], "match_clips": [ - 2191, + 2308, { "distinct_on": [ - 2213, + 2330, "[match_clips_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2211, + 2328, "[match_clips_order_by!]" ], "where": [ - 2200 + 2317 ] } ], "match_clips_aggregate": [ - 2192, + 2309, { "distinct_on": [ - 2213, + 2330, "[match_clips_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2211, + 2328, "[match_clips_order_by!]" ], "where": [ - 2200 + 2317 ] } ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_match_clip_visibility_aggregate": { "aggregate": [ - 802 + 919 ], "nodes": [ - 800 + 917 ], "__typename": [ - 78 + 80 ] }, "e_match_clip_visibility_aggregate_fields": { "count": [ - 38, + 40, { "columns": [ - 814, + 931, "[e_match_clip_visibility_select_column!]" ], "distinct": [ - 3 + 5 ] } ], "max": [ - 808 + 925 ], "min": [ - 809 + 926 ], "__typename": [ - 78 + 80 ] }, "e_match_clip_visibility_bool_exp": { "_and": [ - 803 + 920 ], "_not": [ - 803 + 920 ], "_or": [ - 803 + 920 ], "description": [ - 80 + 82 ], "match_clips": [ - 2200 + 2317 ], "match_clips_aggregate": [ - 2193 + 2310 ], "value": [ - 80 + 82 ], "__typename": [ - 78 + 80 ] }, "e_match_clip_visibility_constraint": {}, "e_match_clip_visibility_enum": {}, "e_match_clip_visibility_enum_comparison_exp": { "_eq": [ - 805 + 922 ], "_in": [ - 805 + 922 ], "_is_null": [ - 3 + 5 ], "_neq": [ - 805 + 922 ], "_nin": [ - 805 + 922 ], "__typename": [ - 78 + 80 ] }, "e_match_clip_visibility_insert_input": { "description": [ - 78 + 80 ], "match_clips": [ - 2197 + 2314 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_match_clip_visibility_max_fields": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_match_clip_visibility_min_fields": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_match_clip_visibility_mutation_response": { "affected_rows": [ - 38 + 40 ], "returning": [ - 800 + 917 ], "__typename": [ - 78 + 80 ] }, "e_match_clip_visibility_on_conflict": { "constraint": [ - 804 + 921 ], "update_columns": [ - 818 + 935 ], "where": [ - 803 + 920 ], "__typename": [ - 78 + 80 ] }, "e_match_clip_visibility_order_by": { "description": [ - 2829 + 2946 ], "match_clips_aggregate": [ - 2196 + 2313 ], "value": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "e_match_clip_visibility_pk_columns_input": { "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_match_clip_visibility_select_column": {}, "e_match_clip_visibility_set_input": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_match_clip_visibility_stream_cursor_input": { "initial_value": [ - 817 + 934 ], "ordering": [ - 236 + 308 ], "__typename": [ - 78 + 80 ] }, "e_match_clip_visibility_stream_cursor_value_input": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_match_clip_visibility_update_column": {}, "e_match_clip_visibility_updates": { "_set": [ - 815 + 932 ], "where": [ - 803 + 920 ], "__typename": [ - 78 + 80 ] }, "e_match_map_status": { "description": [ - 78 + 80 ], "match_maps": [ - 2482, + 2599, { "distinct_on": [ - 2504, + 2621, "[match_maps_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2502, + 2619, "[match_maps_order_by!]" ], "where": [ - 2491 + 2608 ] } ], "match_maps_aggregate": [ - 2483, + 2600, { "distinct_on": [ - 2504, + 2621, "[match_maps_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2502, + 2619, "[match_maps_order_by!]" ], "where": [ - 2491 + 2608 ] } ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_match_map_status_aggregate": { "aggregate": [ - 822 + 939 ], "nodes": [ - 820 + 937 ], "__typename": [ - 78 + 80 ] }, "e_match_map_status_aggregate_fields": { "count": [ - 38, + 40, { "columns": [ - 835, + 952, "[e_match_map_status_select_column!]" ], "distinct": [ - 3 + 5 ] } ], "max": [ - 828 + 945 ], "min": [ - 829 + 946 ], "__typename": [ - 78 + 80 ] }, "e_match_map_status_bool_exp": { "_and": [ - 823 + 940 ], "_not": [ - 823 + 940 ], "_or": [ - 823 + 940 ], "description": [ - 80 + 82 ], "match_maps": [ - 2491 + 2608 ], "match_maps_aggregate": [ - 2484 + 2601 ], "value": [ - 80 + 82 ], "__typename": [ - 78 + 80 ] }, "e_match_map_status_constraint": {}, "e_match_map_status_enum": {}, "e_match_map_status_enum_comparison_exp": { "_eq": [ - 825 + 942 ], "_in": [ - 825 + 942 ], "_is_null": [ - 3 + 5 ], "_neq": [ - 825 + 942 ], "_nin": [ - 825 + 942 ], "__typename": [ - 78 + 80 ] }, "e_match_map_status_insert_input": { "description": [ - 78 + 80 ], "match_maps": [ - 2488 + 2605 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_match_map_status_max_fields": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_match_map_status_min_fields": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_match_map_status_mutation_response": { "affected_rows": [ - 38 + 40 ], "returning": [ - 820 + 937 ], "__typename": [ - 78 + 80 ] }, "e_match_map_status_obj_rel_insert_input": { "data": [ - 827 + 944 ], "on_conflict": [ - 832 + 949 ], "__typename": [ - 78 + 80 ] }, "e_match_map_status_on_conflict": { "constraint": [ - 824 + 941 ], "update_columns": [ - 839 + 956 ], "where": [ - 823 + 940 ], "__typename": [ - 78 + 80 ] }, "e_match_map_status_order_by": { "description": [ - 2829 + 2946 ], "match_maps_aggregate": [ - 2487 + 2604 ], "value": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "e_match_map_status_pk_columns_input": { "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_match_map_status_select_column": {}, "e_match_map_status_set_input": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_match_map_status_stream_cursor_input": { "initial_value": [ - 838 + 955 ], "ordering": [ - 236 + 308 ], "__typename": [ - 78 + 80 ] }, "e_match_map_status_stream_cursor_value_input": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_match_map_status_update_column": {}, "e_match_map_status_updates": { "_set": [ - 836 + 953 ], "where": [ - 823 + 940 ], "__typename": [ - 78 + 80 ] }, "e_match_mode": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_match_mode_aggregate": { "aggregate": [ - 843 + 960 ], "nodes": [ - 841 + 958 ], "__typename": [ - 78 + 80 ] }, "e_match_mode_aggregate_fields": { "count": [ - 38, + 40, { "columns": [ - 855, + 972, "[e_match_mode_select_column!]" ], "distinct": [ - 3 + 5 ] } ], "max": [ - 849 + 966 ], "min": [ - 850 + 967 ], "__typename": [ - 78 + 80 ] }, "e_match_mode_bool_exp": { "_and": [ - 844 + 961 ], "_not": [ - 844 + 961 ], "_or": [ - 844 + 961 ], "description": [ - 80 + 82 ], "value": [ - 80 + 82 ], "__typename": [ - 78 + 80 ] }, "e_match_mode_constraint": {}, "e_match_mode_enum": {}, "e_match_mode_enum_comparison_exp": { "_eq": [ - 846 + 963 ], "_in": [ - 846 + 963 ], "_is_null": [ - 3 + 5 ], "_neq": [ - 846 + 963 ], "_nin": [ - 846 + 963 ], "__typename": [ - 78 + 80 ] }, "e_match_mode_insert_input": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_match_mode_max_fields": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_match_mode_min_fields": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_match_mode_mutation_response": { "affected_rows": [ - 38 + 40 ], "returning": [ - 841 + 958 ], "__typename": [ - 78 + 80 ] }, "e_match_mode_on_conflict": { "constraint": [ - 845 + 962 ], "update_columns": [ - 859 + 976 ], "where": [ - 844 + 961 ], "__typename": [ - 78 + 80 ] }, "e_match_mode_order_by": { "description": [ - 2829 + 2946 ], "value": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "e_match_mode_pk_columns_input": { "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_match_mode_select_column": {}, "e_match_mode_set_input": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_match_mode_stream_cursor_input": { "initial_value": [ - 858 + 975 ], "ordering": [ - 236 + 308 ], "__typename": [ - 78 + 80 ] }, "e_match_mode_stream_cursor_value_input": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_match_mode_update_column": {}, "e_match_mode_updates": { "_set": [ - 856 + 973 ], "where": [ - 844 + 961 ], "__typename": [ - 78 + 80 ] }, "e_match_status": { "description": [ - 78 + 80 ], "matches": [ - 2644, + 2761, { "distinct_on": [ - 2666, + 2783, "[matches_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2664, + 2781, "[matches_order_by!]" ], "where": [ - 2653 + 2770 ] } ], "matches_aggregate": [ - 2645, + 2762, { "distinct_on": [ - 2666, + 2783, "[matches_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2664, + 2781, "[matches_order_by!]" ], "where": [ - 2653 + 2770 ] } ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_match_status_aggregate": { "aggregate": [ - 863 + 980 ], "nodes": [ - 861 + 978 ], "__typename": [ - 78 + 80 ] }, "e_match_status_aggregate_fields": { "count": [ - 38, + 40, { "columns": [ - 876, + 993, "[e_match_status_select_column!]" ], "distinct": [ - 3 + 5 ] } ], "max": [ - 869 + 986 ], "min": [ - 870 + 987 ], "__typename": [ - 78 + 80 ] }, "e_match_status_bool_exp": { "_and": [ - 864 + 981 ], "_not": [ - 864 + 981 ], "_or": [ - 864 + 981 ], "description": [ - 80 + 82 ], "matches": [ - 2653 + 2770 ], "matches_aggregate": [ - 2646 + 2763 ], "value": [ - 80 + 82 ], "__typename": [ - 78 + 80 ] }, "e_match_status_constraint": {}, "e_match_status_enum": {}, "e_match_status_enum_comparison_exp": { "_eq": [ - 866 + 983 ], "_in": [ - 866 + 983 ], "_is_null": [ - 3 + 5 ], "_neq": [ - 866 + 983 ], "_nin": [ - 866 + 983 ], "__typename": [ - 78 + 80 ] }, "e_match_status_insert_input": { "description": [ - 78 + 80 ], "matches": [ - 2650 + 2767 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_match_status_max_fields": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_match_status_min_fields": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_match_status_mutation_response": { "affected_rows": [ - 38 + 40 ], "returning": [ - 861 + 978 ], "__typename": [ - 78 + 80 ] }, "e_match_status_obj_rel_insert_input": { "data": [ - 868 + 985 ], "on_conflict": [ - 873 + 990 ], "__typename": [ - 78 + 80 ] }, "e_match_status_on_conflict": { "constraint": [ - 865 + 982 ], "update_columns": [ - 880 + 997 ], "where": [ - 864 + 981 ], "__typename": [ - 78 + 80 ] }, "e_match_status_order_by": { "description": [ - 2829 + 2946 ], "matches_aggregate": [ - 2649 + 2766 ], "value": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "e_match_status_pk_columns_input": { "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_match_status_select_column": {}, "e_match_status_set_input": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_match_status_stream_cursor_input": { "initial_value": [ - 879 + 996 ], "ordering": [ - 236 + 308 ], "__typename": [ - 78 + 80 ] }, "e_match_status_stream_cursor_value_input": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_match_status_update_column": {}, "e_match_status_updates": { "_set": [ - 877 + 994 ], "where": [ - 864 + 981 ], "__typename": [ - 78 + 80 ] }, "e_match_types": { "description": [ - 78 + 80 ], "maps": [ - 2162, + 2279, { "distinct_on": [ - 2183, + 2300, "[maps_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2181, + 2298, "[maps_order_by!]" ], "where": [ - 2171 + 2288 ] } ], "maps_aggregate": [ - 2163, + 2280, { "distinct_on": [ - 2183, + 2300, "[maps_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2181, + 2298, "[maps_order_by!]" ], "where": [ - 2171 + 2288 ] } ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_match_types_aggregate": { "aggregate": [ - 884 + 1001 ], "nodes": [ - 882 + 999 ], "__typename": [ - 78 + 80 ] }, "e_match_types_aggregate_fields": { "count": [ - 38, + 40, { "columns": [ - 897, + 1014, "[e_match_types_select_column!]" ], "distinct": [ - 3 + 5 ] } ], "max": [ - 890 + 1007 ], "min": [ - 891 + 1008 ], "__typename": [ - 78 + 80 ] }, "e_match_types_bool_exp": { "_and": [ - 885 + 1002 ], "_not": [ - 885 + 1002 ], "_or": [ - 885 + 1002 ], "description": [ - 80 + 82 ], "maps": [ - 2171 + 2288 ], "maps_aggregate": [ - 2164 + 2281 ], "value": [ - 80 + 82 ], "__typename": [ - 78 + 80 ] }, "e_match_types_constraint": {}, "e_match_types_enum": {}, "e_match_types_enum_comparison_exp": { "_eq": [ - 887 + 1004 ], "_in": [ - 887 + 1004 ], "_is_null": [ - 3 + 5 ], "_neq": [ - 887 + 1004 ], "_nin": [ - 887 + 1004 ], "__typename": [ - 78 + 80 ] }, "e_match_types_insert_input": { "description": [ - 78 + 80 ], "maps": [ - 2170 + 2287 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_match_types_max_fields": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_match_types_min_fields": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_match_types_mutation_response": { "affected_rows": [ - 38 + 40 ], "returning": [ - 882 + 999 ], "__typename": [ - 78 + 80 ] }, "e_match_types_obj_rel_insert_input": { "data": [ - 889 + 1006 ], "on_conflict": [ - 894 + 1011 ], "__typename": [ - 78 + 80 ] }, "e_match_types_on_conflict": { "constraint": [ - 886 + 1003 ], "update_columns": [ - 901 + 1018 ], "where": [ - 885 + 1002 ], "__typename": [ - 78 + 80 ] }, "e_match_types_order_by": { "description": [ - 2829 + 2946 ], "maps_aggregate": [ - 2169 + 2286 ], "value": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "e_match_types_pk_columns_input": { "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_match_types_select_column": {}, "e_match_types_set_input": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_match_types_stream_cursor_input": { "initial_value": [ - 900 + 1017 ], "ordering": [ - 236 + 308 ], "__typename": [ - 78 + 80 ] }, "e_match_types_stream_cursor_value_input": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_match_types_update_column": {}, "e_match_types_updates": { "_set": [ - 898 + 1015 ], "where": [ - 885 + 1002 ], "__typename": [ - 78 + 80 ] }, "e_notification_types": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_notification_types_aggregate": { "aggregate": [ - 905 + 1022 ], "nodes": [ - 903 + 1020 ], "__typename": [ - 78 + 80 ] }, "e_notification_types_aggregate_fields": { "count": [ - 38, + 40, { "columns": [ - 917, + 1034, "[e_notification_types_select_column!]" ], "distinct": [ - 3 + 5 ] } ], "max": [ - 911 + 1028 ], "min": [ - 912 + 1029 ], "__typename": [ - 78 + 80 ] }, "e_notification_types_bool_exp": { "_and": [ - 906 + 1023 ], "_not": [ - 906 + 1023 ], "_or": [ - 906 + 1023 ], "description": [ - 80 + 82 ], "value": [ - 80 + 82 ], "__typename": [ - 78 + 80 ] }, "e_notification_types_constraint": {}, "e_notification_types_enum": {}, "e_notification_types_enum_comparison_exp": { "_eq": [ - 908 + 1025 ], "_in": [ - 908 + 1025 ], "_is_null": [ - 3 + 5 ], "_neq": [ - 908 + 1025 ], "_nin": [ - 908 + 1025 ], "__typename": [ - 78 + 80 ] }, "e_notification_types_insert_input": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_notification_types_max_fields": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_notification_types_min_fields": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_notification_types_mutation_response": { "affected_rows": [ - 38 + 40 ], "returning": [ - 903 + 1020 ], "__typename": [ - 78 + 80 ] }, "e_notification_types_on_conflict": { "constraint": [ - 907 + 1024 ], "update_columns": [ - 921 + 1038 ], "where": [ - 906 + 1023 ], "__typename": [ - 78 + 80 ] }, "e_notification_types_order_by": { "description": [ - 2829 + 2946 ], "value": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "e_notification_types_pk_columns_input": { "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_notification_types_select_column": {}, "e_notification_types_set_input": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_notification_types_stream_cursor_input": { "initial_value": [ - 920 + 1037 ], "ordering": [ - 236 + 308 ], "__typename": [ - 78 + 80 ] }, "e_notification_types_stream_cursor_value_input": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_notification_types_update_column": {}, "e_notification_types_updates": { "_set": [ - 918 + 1035 ], "where": [ - 906 + 1023 ], "__typename": [ - 78 + 80 ] }, "e_objective_types": { "description": [ - 78 + 80 ], "player_objectives": [ - 3385, + 3502, { "distinct_on": [ - 3406, + 3523, "[player_objectives_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 3404, + 3521, "[player_objectives_order_by!]" ], "where": [ - 3394 + 3511 ] } ], "player_objectives_aggregate": [ - 3386, + 3503, { "distinct_on": [ - 3406, + 3523, "[player_objectives_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 3404, + 3521, "[player_objectives_order_by!]" ], "where": [ - 3394 + 3511 ] } ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_objective_types_aggregate": { "aggregate": [ - 925 + 1042 ], "nodes": [ - 923 + 1040 ], "__typename": [ - 78 + 80 ] }, "e_objective_types_aggregate_fields": { "count": [ - 38, + 40, { "columns": [ - 937, + 1054, "[e_objective_types_select_column!]" ], "distinct": [ - 3 + 5 ] } ], "max": [ - 931 + 1048 ], "min": [ - 932 + 1049 ], "__typename": [ - 78 + 80 ] }, "e_objective_types_bool_exp": { "_and": [ - 926 + 1043 ], "_not": [ - 926 + 1043 ], "_or": [ - 926 + 1043 ], "description": [ - 80 + 82 ], "player_objectives": [ - 3394 + 3511 ], "player_objectives_aggregate": [ - 3387 + 3504 ], "value": [ - 80 + 82 ], "__typename": [ - 78 + 80 ] }, "e_objective_types_constraint": {}, "e_objective_types_enum": {}, "e_objective_types_enum_comparison_exp": { "_eq": [ - 928 + 1045 ], "_in": [ - 928 + 1045 ], "_is_null": [ - 3 + 5 ], "_neq": [ - 928 + 1045 ], "_nin": [ - 928 + 1045 ], "__typename": [ - 78 + 80 ] }, "e_objective_types_insert_input": { "description": [ - 78 + 80 ], "player_objectives": [ - 3391 + 3508 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_objective_types_max_fields": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_objective_types_min_fields": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_objective_types_mutation_response": { "affected_rows": [ - 38 + 40 ], "returning": [ - 923 + 1040 ], "__typename": [ - 78 + 80 ] }, "e_objective_types_on_conflict": { "constraint": [ - 927 + 1044 ], "update_columns": [ - 941 + 1058 ], "where": [ - 926 + 1043 ], "__typename": [ - 78 + 80 ] }, "e_objective_types_order_by": { "description": [ - 2829 + 2946 ], "player_objectives_aggregate": [ - 3390 + 3507 ], "value": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "e_objective_types_pk_columns_input": { "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_objective_types_select_column": {}, "e_objective_types_set_input": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_objective_types_stream_cursor_input": { "initial_value": [ - 940 + 1057 ], "ordering": [ - 236 + 308 ], "__typename": [ - 78 + 80 ] }, "e_objective_types_stream_cursor_value_input": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_objective_types_update_column": {}, "e_objective_types_updates": { "_set": [ - 938 + 1055 ], "where": [ - 926 + 1043 ], "__typename": [ - 78 + 80 ] }, "e_player_roles": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_player_roles_aggregate": { "aggregate": [ - 945 + 1062 ], "nodes": [ - 943 + 1060 ], "__typename": [ - 78 + 80 ] }, "e_player_roles_aggregate_fields": { "count": [ - 38, + 40, { "columns": [ - 957, + 1074, "[e_player_roles_select_column!]" ], "distinct": [ - 3 + 5 ] } ], "max": [ - 951 + 1068 ], "min": [ - 952 + 1069 ], "__typename": [ - 78 + 80 ] }, "e_player_roles_bool_exp": { "_and": [ - 946 + 1063 ], "_not": [ - 946 + 1063 ], "_or": [ - 946 + 1063 ], "description": [ - 80 + 82 ], "value": [ - 80 + 82 ], "__typename": [ - 78 + 80 ] }, "e_player_roles_constraint": {}, "e_player_roles_enum": {}, "e_player_roles_enum_comparison_exp": { "_eq": [ - 948 + 1065 ], "_in": [ - 948 + 1065 ], "_is_null": [ - 3 + 5 ], "_neq": [ - 948 + 1065 ], "_nin": [ - 948 + 1065 ], "__typename": [ - 78 + 80 ] }, "e_player_roles_insert_input": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_player_roles_max_fields": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_player_roles_min_fields": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_player_roles_mutation_response": { "affected_rows": [ - 38 + 40 ], "returning": [ - 943 + 1060 ], "__typename": [ - 78 + 80 ] }, "e_player_roles_on_conflict": { "constraint": [ - 947 + 1064 ], "update_columns": [ - 961 + 1078 ], "where": [ - 946 + 1063 ], "__typename": [ - 78 + 80 ] }, "e_player_roles_order_by": { "description": [ - 2829 + 2946 ], "value": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "e_player_roles_pk_columns_input": { "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_player_roles_select_column": {}, "e_player_roles_set_input": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_player_roles_stream_cursor_input": { "initial_value": [ - 960 + 1077 ], "ordering": [ - 236 + 308 ], "__typename": [ - 78 + 80 ] }, "e_player_roles_stream_cursor_value_input": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_player_roles_update_column": {}, "e_player_roles_updates": { "_set": [ - 958 + 1075 ], "where": [ - 946 + 1063 ], "__typename": [ - 78 + 80 ] }, "e_plugin_runtimes": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_plugin_runtimes_aggregate": { "aggregate": [ - 965 + 1082 ], "nodes": [ - 963 + 1080 ], "__typename": [ - 78 + 80 ] }, "e_plugin_runtimes_aggregate_fields": { "count": [ - 38, + 40, { "columns": [ - 977, + 1094, "[e_plugin_runtimes_select_column!]" ], "distinct": [ - 3 + 5 ] } ], "max": [ - 971 + 1088 ], "min": [ - 972 + 1089 ], "__typename": [ - 78 + 80 ] }, "e_plugin_runtimes_bool_exp": { "_and": [ - 966 + 1083 ], "_not": [ - 966 + 1083 ], "_or": [ - 966 + 1083 ], "description": [ - 80 + 82 ], "value": [ - 80 + 82 ], "__typename": [ - 78 + 80 ] }, "e_plugin_runtimes_constraint": {}, "e_plugin_runtimes_enum": {}, "e_plugin_runtimes_enum_comparison_exp": { "_eq": [ - 968 + 1085 ], "_in": [ - 968 + 1085 ], "_is_null": [ - 3 + 5 ], "_neq": [ - 968 + 1085 ], "_nin": [ - 968 + 1085 ], "__typename": [ - 78 + 80 ] }, "e_plugin_runtimes_insert_input": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_plugin_runtimes_max_fields": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_plugin_runtimes_min_fields": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_plugin_runtimes_mutation_response": { "affected_rows": [ - 38 + 40 ], "returning": [ - 963 + 1080 ], "__typename": [ - 78 + 80 ] }, "e_plugin_runtimes_on_conflict": { "constraint": [ - 967 + 1084 ], "update_columns": [ - 981 + 1098 ], "where": [ - 966 + 1083 ], "__typename": [ - 78 + 80 ] }, "e_plugin_runtimes_order_by": { "description": [ - 2829 + 2946 ], "value": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "e_plugin_runtimes_pk_columns_input": { "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_plugin_runtimes_select_column": {}, "e_plugin_runtimes_set_input": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_plugin_runtimes_stream_cursor_input": { "initial_value": [ - 980 + 1097 ], "ordering": [ - 236 + 308 ], "__typename": [ - 78 + 80 ] }, "e_plugin_runtimes_stream_cursor_value_input": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_plugin_runtimes_update_column": {}, "e_plugin_runtimes_updates": { "_set": [ - 978 + 1095 ], "where": [ - 966 + 1083 ], "__typename": [ - 78 + 80 ] }, "e_ready_settings": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_ready_settings_aggregate": { "aggregate": [ - 985 + 1102 ], "nodes": [ - 983 + 1100 ], "__typename": [ - 78 + 80 ] }, "e_ready_settings_aggregate_fields": { "count": [ - 38, + 40, { "columns": [ - 997, + 1114, "[e_ready_settings_select_column!]" ], "distinct": [ - 3 + 5 ] } ], "max": [ - 991 + 1108 ], "min": [ - 992 + 1109 ], "__typename": [ - 78 + 80 ] }, "e_ready_settings_bool_exp": { "_and": [ - 986 + 1103 ], "_not": [ - 986 + 1103 ], "_or": [ - 986 + 1103 ], "description": [ - 80 + 82 ], "value": [ - 80 + 82 ], "__typename": [ - 78 + 80 ] }, "e_ready_settings_constraint": {}, "e_ready_settings_enum": {}, "e_ready_settings_enum_comparison_exp": { "_eq": [ - 988 + 1105 ], "_in": [ - 988 + 1105 ], "_is_null": [ - 3 + 5 ], "_neq": [ - 988 + 1105 ], "_nin": [ - 988 + 1105 ], "__typename": [ - 78 + 80 ] }, "e_ready_settings_insert_input": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_ready_settings_max_fields": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_ready_settings_min_fields": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_ready_settings_mutation_response": { "affected_rows": [ - 38 + 40 ], "returning": [ - 983 + 1100 ], "__typename": [ - 78 + 80 ] }, "e_ready_settings_on_conflict": { "constraint": [ - 987 + 1104 ], "update_columns": [ - 1001 + 1118 ], "where": [ - 986 + 1103 ], "__typename": [ - 78 + 80 ] }, "e_ready_settings_order_by": { "description": [ - 2829 + 2946 ], "value": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "e_ready_settings_pk_columns_input": { "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_ready_settings_select_column": {}, "e_ready_settings_set_input": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_ready_settings_stream_cursor_input": { "initial_value": [ - 1000 + 1117 ], "ordering": [ - 236 + 308 ], "__typename": [ - 78 + 80 ] }, "e_ready_settings_stream_cursor_value_input": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_ready_settings_update_column": {}, "e_ready_settings_updates": { "_set": [ - 998 + 1115 ], "where": [ - 986 + 1103 ], "__typename": [ - 78 + 80 ] }, "e_sanction_types": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_sanction_types_aggregate": { "aggregate": [ - 1005 + 1122 ], "nodes": [ - 1003 + 1120 ], "__typename": [ - 78 + 80 ] }, "e_sanction_types_aggregate_fields": { "count": [ - 38, + 40, { "columns": [ - 1018, + 1135, "[e_sanction_types_select_column!]" ], "distinct": [ - 3 + 5 ] } ], "max": [ - 1011 + 1128 ], "min": [ - 1012 + 1129 ], "__typename": [ - 78 + 80 ] }, "e_sanction_types_bool_exp": { "_and": [ - 1006 + 1123 ], "_not": [ - 1006 + 1123 ], "_or": [ - 1006 + 1123 ], "description": [ - 80 + 82 ], "value": [ - 80 + 82 ], "__typename": [ - 78 + 80 ] }, "e_sanction_types_constraint": {}, "e_sanction_types_enum": {}, "e_sanction_types_enum_comparison_exp": { "_eq": [ - 1008 + 1125 ], "_in": [ - 1008 + 1125 ], "_is_null": [ - 3 + 5 ], "_neq": [ - 1008 + 1125 ], "_nin": [ - 1008 + 1125 ], "__typename": [ - 78 + 80 ] }, "e_sanction_types_insert_input": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_sanction_types_max_fields": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_sanction_types_min_fields": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_sanction_types_mutation_response": { "affected_rows": [ - 38 + 40 ], "returning": [ - 1003 + 1120 ], "__typename": [ - 78 + 80 ] }, "e_sanction_types_obj_rel_insert_input": { "data": [ - 1010 + 1127 ], "on_conflict": [ - 1015 + 1132 ], "__typename": [ - 78 + 80 ] }, "e_sanction_types_on_conflict": { "constraint": [ - 1007 + 1124 ], "update_columns": [ - 1022 + 1139 ], "where": [ - 1006 + 1123 ], "__typename": [ - 78 + 80 ] }, "e_sanction_types_order_by": { "description": [ - 2829 + 2946 ], "value": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "e_sanction_types_pk_columns_input": { "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_sanction_types_select_column": {}, "e_sanction_types_set_input": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_sanction_types_stream_cursor_input": { "initial_value": [ - 1021 + 1138 ], "ordering": [ - 236 + 308 ], "__typename": [ - 78 + 80 ] }, "e_sanction_types_stream_cursor_value_input": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_sanction_types_update_column": {}, "e_sanction_types_updates": { "_set": [ - 1019 + 1136 ], "where": [ - 1006 + 1123 ], "__typename": [ - 78 + 80 ] }, "e_scrim_request_statuses": { "description": [ - 78 + 80 ], "scrim_requests": [ - 4228, + 4345, { "distinct_on": [ - 4252, + 4369, "[team_scrim_requests_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 4250, + 4367, "[team_scrim_requests_order_by!]" ], "where": [ - 4239 + 4356 ] } ], "scrim_requests_aggregate": [ - 4229, + 4346, { "distinct_on": [ - 4252, + 4369, "[team_scrim_requests_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 4250, + 4367, "[team_scrim_requests_order_by!]" ], "where": [ - 4239 + 4356 ] } ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_scrim_request_statuses_aggregate": { "aggregate": [ - 1026 + 1143 ], "nodes": [ - 1024 + 1141 ], "__typename": [ - 78 + 80 ] }, "e_scrim_request_statuses_aggregate_fields": { "count": [ - 38, + 40, { "columns": [ - 1038, + 1155, "[e_scrim_request_statuses_select_column!]" ], "distinct": [ - 3 + 5 ] } ], "max": [ - 1032 + 1149 ], "min": [ - 1033 + 1150 ], "__typename": [ - 78 + 80 ] }, "e_scrim_request_statuses_bool_exp": { "_and": [ - 1027 + 1144 ], "_not": [ - 1027 + 1144 ], "_or": [ - 1027 + 1144 ], "description": [ - 80 + 82 ], "scrim_requests": [ - 4239 + 4356 ], "scrim_requests_aggregate": [ - 4230 + 4347 ], "value": [ - 80 + 82 ], "__typename": [ - 78 + 80 ] }, "e_scrim_request_statuses_constraint": {}, "e_scrim_request_statuses_enum": {}, "e_scrim_request_statuses_enum_comparison_exp": { "_eq": [ - 1029 + 1146 ], "_in": [ - 1029 + 1146 ], "_is_null": [ - 3 + 5 ], "_neq": [ - 1029 + 1146 ], "_nin": [ - 1029 + 1146 ], "__typename": [ - 78 + 80 ] }, "e_scrim_request_statuses_insert_input": { "description": [ - 78 + 80 ], "scrim_requests": [ - 4236 + 4353 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_scrim_request_statuses_max_fields": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_scrim_request_statuses_min_fields": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_scrim_request_statuses_mutation_response": { "affected_rows": [ - 38 + 40 ], "returning": [ - 1024 + 1141 ], "__typename": [ - 78 + 80 ] }, "e_scrim_request_statuses_on_conflict": { "constraint": [ - 1028 + 1145 ], "update_columns": [ - 1042 + 1159 ], "where": [ - 1027 + 1144 ], "__typename": [ - 78 + 80 ] }, "e_scrim_request_statuses_order_by": { "description": [ - 2829 + 2946 ], "scrim_requests_aggregate": [ - 4235 + 4352 ], "value": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "e_scrim_request_statuses_pk_columns_input": { "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_scrim_request_statuses_select_column": {}, "e_scrim_request_statuses_set_input": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_scrim_request_statuses_stream_cursor_input": { "initial_value": [ - 1041 + 1158 ], "ordering": [ - 236 + 308 ], "__typename": [ - 78 + 80 ] }, "e_scrim_request_statuses_stream_cursor_value_input": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_scrim_request_statuses_update_column": {}, "e_scrim_request_statuses_updates": { "_set": [ - 1039 + 1156 ], "where": [ - 1027 + 1144 ], "__typename": [ - 78 + 80 ] }, "e_server_types": { "description": [ - 78 + 80 ], "servers": [ - 3901, + 4018, { "distinct_on": [ - 3925, + 4042, "[servers_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 3923, + 4040, "[servers_order_by!]" ], "where": [ - 3912 + 4029 ] } ], "servers_aggregate": [ - 3902, + 4019, { "distinct_on": [ - 3925, + 4042, "[servers_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 3923, + 4040, "[servers_order_by!]" ], "where": [ - 3912 + 4029 ] } ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_server_types_aggregate": { "aggregate": [ - 1046 + 1163 ], "nodes": [ - 1044 + 1161 ], "__typename": [ - 78 + 80 ] }, "e_server_types_aggregate_fields": { "count": [ - 38, + 40, { "columns": [ - 1058, + 1175, "[e_server_types_select_column!]" ], "distinct": [ - 3 + 5 ] } ], "max": [ - 1052 + 1169 ], "min": [ - 1053 + 1170 ], "__typename": [ - 78 + 80 ] }, "e_server_types_bool_exp": { "_and": [ - 1047 + 1164 ], "_not": [ - 1047 + 1164 ], "_or": [ - 1047 + 1164 ], "description": [ - 80 + 82 ], "servers": [ - 3912 + 4029 ], "servers_aggregate": [ - 3903 + 4020 ], "value": [ - 80 + 82 ], "__typename": [ - 78 + 80 ] }, "e_server_types_constraint": {}, "e_server_types_enum": {}, "e_server_types_enum_comparison_exp": { "_eq": [ - 1049 + 1166 ], "_in": [ - 1049 + 1166 ], "_is_null": [ - 3 + 5 ], "_neq": [ - 1049 + 1166 ], "_nin": [ - 1049 + 1166 ], "__typename": [ - 78 + 80 ] }, "e_server_types_insert_input": { "description": [ - 78 + 80 ], "servers": [ - 3909 + 4026 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_server_types_max_fields": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_server_types_min_fields": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_server_types_mutation_response": { "affected_rows": [ - 38 + 40 ], "returning": [ - 1044 + 1161 ], "__typename": [ - 78 + 80 ] }, "e_server_types_on_conflict": { "constraint": [ - 1048 + 1165 ], "update_columns": [ - 1062 + 1179 ], "where": [ - 1047 + 1164 ], "__typename": [ - 78 + 80 ] }, "e_server_types_order_by": { "description": [ - 2829 + 2946 ], "servers_aggregate": [ - 3908 + 4025 ], "value": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "e_server_types_pk_columns_input": { "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_server_types_select_column": {}, "e_server_types_set_input": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_server_types_stream_cursor_input": { "initial_value": [ - 1061 + 1178 ], "ordering": [ - 236 + 308 ], "__typename": [ - 78 + 80 ] }, "e_server_types_stream_cursor_value_input": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_server_types_update_column": {}, "e_server_types_updates": { "_set": [ - 1059 + 1176 ], "where": [ - 1047 + 1164 ], "__typename": [ - 78 + 80 ] }, "e_sides": { "description": [ - 78 + 80 ], "match_map_lineup_1": [ - 2482, + 2599, { "distinct_on": [ - 2504, + 2621, "[match_maps_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2502, + 2619, "[match_maps_order_by!]" ], "where": [ - 2491 + 2608 ] } ], "match_map_lineup_1_aggregate": [ - 2483, + 2600, { "distinct_on": [ - 2504, + 2621, "[match_maps_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2502, + 2619, "[match_maps_order_by!]" ], "where": [ - 2491 + 2608 ] } ], "match_map_lineup_2": [ - 2482, + 2599, { "distinct_on": [ - 2504, + 2621, "[match_maps_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2502, + 2619, "[match_maps_order_by!]" ], "where": [ - 2491 + 2608 ] } ], "match_map_lineup_2_aggregate": [ - 2483, + 2600, { "distinct_on": [ - 2504, + 2621, "[match_maps_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2502, + 2619, "[match_maps_order_by!]" ], "where": [ - 2491 + 2608 ] } ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_sides_aggregate": { "aggregate": [ - 1066 + 1183 ], "nodes": [ - 1064 + 1181 ], "__typename": [ - 78 + 80 ] }, "e_sides_aggregate_fields": { "count": [ - 38, + 40, { "columns": [ - 1078, + 1195, "[e_sides_select_column!]" ], "distinct": [ - 3 + 5 ] } ], "max": [ - 1072 + 1189 ], "min": [ - 1073 + 1190 ], "__typename": [ - 78 + 80 ] }, "e_sides_bool_exp": { "_and": [ - 1067 + 1184 ], "_not": [ - 1067 + 1184 ], "_or": [ - 1067 + 1184 ], "description": [ - 80 + 82 ], "match_map_lineup_1": [ - 2491 + 2608 ], "match_map_lineup_1_aggregate": [ - 2484 + 2601 ], "match_map_lineup_2": [ - 2491 + 2608 ], "match_map_lineup_2_aggregate": [ - 2484 + 2601 ], "value": [ - 80 + 82 ], "__typename": [ - 78 + 80 ] }, "e_sides_constraint": {}, "e_sides_enum": {}, "e_sides_enum_comparison_exp": { "_eq": [ - 1069 + 1186 ], "_in": [ - 1069 + 1186 ], "_is_null": [ - 3 + 5 ], "_neq": [ - 1069 + 1186 ], "_nin": [ - 1069 + 1186 ], "__typename": [ - 78 + 80 ] }, "e_sides_insert_input": { "description": [ - 78 + 80 ], "match_map_lineup_1": [ - 2488 + 2605 ], "match_map_lineup_2": [ - 2488 + 2605 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_sides_max_fields": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_sides_min_fields": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_sides_mutation_response": { "affected_rows": [ - 38 + 40 ], "returning": [ - 1064 + 1181 ], "__typename": [ - 78 + 80 ] }, "e_sides_on_conflict": { "constraint": [ - 1068 + 1185 ], "update_columns": [ - 1082 + 1199 ], "where": [ - 1067 + 1184 ], "__typename": [ - 78 + 80 ] }, "e_sides_order_by": { "description": [ - 2829 + 2946 ], "match_map_lineup_1_aggregate": [ - 2487 + 2604 ], "match_map_lineup_2_aggregate": [ - 2487 + 2604 ], "value": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "e_sides_pk_columns_input": { "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_sides_select_column": {}, "e_sides_set_input": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_sides_stream_cursor_input": { "initial_value": [ - 1081 + 1198 ], "ordering": [ - 236 + 308 ], "__typename": [ - 78 + 80 ] }, "e_sides_stream_cursor_value_input": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_sides_update_column": {}, "e_sides_updates": { "_set": [ - 1079 + 1196 ], "where": [ - 1067 + 1184 ], "__typename": [ - 78 + 80 ] }, "e_system_alert_types": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_system_alert_types_aggregate": { "aggregate": [ - 1086 + 1203 ], "nodes": [ - 1084 + 1201 ], "__typename": [ - 78 + 80 ] }, "e_system_alert_types_aggregate_fields": { "count": [ - 38, + 40, { "columns": [ - 1098, + 1215, "[e_system_alert_types_select_column!]" ], "distinct": [ - 3 + 5 ] } ], "max": [ - 1092 + 1209 ], "min": [ - 1093 + 1210 ], "__typename": [ - 78 + 80 ] }, "e_system_alert_types_bool_exp": { "_and": [ - 1087 + 1204 ], "_not": [ - 1087 + 1204 ], "_or": [ - 1087 + 1204 ], "description": [ - 80 + 82 ], "value": [ - 80 + 82 ], "__typename": [ - 78 + 80 ] }, "e_system_alert_types_constraint": {}, "e_system_alert_types_enum": {}, "e_system_alert_types_enum_comparison_exp": { "_eq": [ - 1089 + 1206 ], "_in": [ - 1089 + 1206 ], "_is_null": [ - 3 + 5 ], "_neq": [ - 1089 + 1206 ], "_nin": [ - 1089 + 1206 ], "__typename": [ - 78 + 80 ] }, "e_system_alert_types_insert_input": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_system_alert_types_max_fields": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_system_alert_types_min_fields": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_system_alert_types_mutation_response": { "affected_rows": [ - 38 + 40 ], "returning": [ - 1084 + 1201 ], "__typename": [ - 78 + 80 ] }, "e_system_alert_types_on_conflict": { "constraint": [ - 1088 + 1205 ], "update_columns": [ - 1102 + 1219 ], "where": [ - 1087 + 1204 ], "__typename": [ - 78 + 80 ] }, "e_system_alert_types_order_by": { "description": [ - 2829 + 2946 ], "value": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "e_system_alert_types_pk_columns_input": { "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_system_alert_types_select_column": {}, "e_system_alert_types_set_input": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_system_alert_types_stream_cursor_input": { "initial_value": [ - 1101 + 1218 ], "ordering": [ - 236 + 308 ], "__typename": [ - 78 + 80 ] }, "e_system_alert_types_stream_cursor_value_input": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_system_alert_types_update_column": {}, "e_system_alert_types_updates": { "_set": [ - 1099 + 1216 ], "where": [ - 1087 + 1204 ], "__typename": [ - 78 + 80 ] }, "e_team_roles": { "description": [ - 78 + 80 ], "team_rosters": [ - 4087, + 4204, { "distinct_on": [ - 4110, + 4227, "[team_roster_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 4108, + 4225, "[team_roster_order_by!]" ], "where": [ - 4098 + 4215 ] } ], "team_rosters_aggregate": [ - 4088, + 4205, { "distinct_on": [ - 4110, + 4227, "[team_roster_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 4108, + 4225, "[team_roster_order_by!]" ], "where": [ - 4098 + 4215 ] } ], "tournament_team_rosters": [ - 4687, + 4846, { "distinct_on": [ - 4708, + 4867, "[tournament_team_roster_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 4706, + 4865, "[tournament_team_roster_order_by!]" ], "where": [ - 4696 + 4855 ] } ], "tournament_team_rosters_aggregate": [ - 4688, + 4847, { "distinct_on": [ - 4708, + 4867, "[tournament_team_roster_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 4706, + 4865, "[tournament_team_roster_order_by!]" ], "where": [ - 4696 + 4855 ] } ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_team_roles_aggregate": { "aggregate": [ - 1106 + 1223 ], "nodes": [ - 1104 + 1221 ], "__typename": [ - 78 + 80 ] }, "e_team_roles_aggregate_fields": { "count": [ - 38, + 40, { "columns": [ - 1119, + 1236, "[e_team_roles_select_column!]" ], "distinct": [ - 3 + 5 ] } ], "max": [ - 1112 + 1229 ], "min": [ - 1113 + 1230 ], "__typename": [ - 78 + 80 ] }, "e_team_roles_bool_exp": { "_and": [ - 1107 + 1224 ], "_not": [ - 1107 + 1224 ], "_or": [ - 1107 + 1224 ], "description": [ - 80 + 82 ], "team_rosters": [ - 4098 + 4215 ], "team_rosters_aggregate": [ - 4089 + 4206 ], "tournament_team_rosters": [ - 4696 + 4855 ], "tournament_team_rosters_aggregate": [ - 4689 + 4848 ], "value": [ - 80 + 82 ], "__typename": [ - 78 + 80 ] }, "e_team_roles_constraint": {}, "e_team_roles_enum": {}, "e_team_roles_enum_comparison_exp": { "_eq": [ - 1109 + 1226 ], "_in": [ - 1109 + 1226 ], "_is_null": [ - 3 + 5 ], "_neq": [ - 1109 + 1226 ], "_nin": [ - 1109 + 1226 ], "__typename": [ - 78 + 80 ] }, "e_team_roles_insert_input": { "description": [ - 78 + 80 ], "team_rosters": [ - 4095 + 4212 ], "tournament_team_rosters": [ - 4693 + 4852 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_team_roles_max_fields": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_team_roles_min_fields": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_team_roles_mutation_response": { "affected_rows": [ - 38 + 40 ], "returning": [ - 1104 + 1221 ], "__typename": [ - 78 + 80 ] }, "e_team_roles_obj_rel_insert_input": { "data": [ - 1111 + 1228 ], "on_conflict": [ - 1116 + 1233 ], "__typename": [ - 78 + 80 ] }, "e_team_roles_on_conflict": { "constraint": [ - 1108 + 1225 ], "update_columns": [ - 1123 + 1240 ], "where": [ - 1107 + 1224 ], "__typename": [ - 78 + 80 ] }, "e_team_roles_order_by": { "description": [ - 2829 + 2946 ], "team_rosters_aggregate": [ - 4094 + 4211 ], "tournament_team_rosters_aggregate": [ - 4692 + 4851 ], "value": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "e_team_roles_pk_columns_input": { "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_team_roles_select_column": {}, "e_team_roles_set_input": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_team_roles_stream_cursor_input": { "initial_value": [ - 1122 + 1239 ], "ordering": [ - 236 + 308 ], "__typename": [ - 78 + 80 ] }, "e_team_roles_stream_cursor_value_input": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_team_roles_update_column": {}, "e_team_roles_updates": { "_set": [ - 1120 + 1237 ], "where": [ - 1107 + 1224 ], "__typename": [ - 78 + 80 ] }, "e_team_roster_statuses": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_team_roster_statuses_aggregate": { "aggregate": [ - 1127 + 1244 ], "nodes": [ - 1125 + 1242 ], "__typename": [ - 78 + 80 ] }, "e_team_roster_statuses_aggregate_fields": { "count": [ - 38, + 40, { "columns": [ - 1139, + 1256, "[e_team_roster_statuses_select_column!]" ], "distinct": [ - 3 + 5 ] } ], "max": [ - 1133 + 1250 ], "min": [ - 1134 + 1251 ], "__typename": [ - 78 + 80 ] }, "e_team_roster_statuses_bool_exp": { "_and": [ - 1128 + 1245 ], "_not": [ - 1128 + 1245 ], "_or": [ - 1128 + 1245 ], "description": [ - 80 + 82 ], "value": [ - 80 + 82 ], "__typename": [ - 78 + 80 ] }, "e_team_roster_statuses_constraint": {}, "e_team_roster_statuses_enum": {}, "e_team_roster_statuses_enum_comparison_exp": { "_eq": [ - 1130 + 1247 ], "_in": [ - 1130 + 1247 ], "_is_null": [ - 3 + 5 ], "_neq": [ - 1130 + 1247 ], "_nin": [ - 1130 + 1247 ], "__typename": [ - 78 + 80 ] }, "e_team_roster_statuses_insert_input": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_team_roster_statuses_max_fields": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_team_roster_statuses_min_fields": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_team_roster_statuses_mutation_response": { "affected_rows": [ - 38 + 40 ], "returning": [ - 1125 + 1242 ], "__typename": [ - 78 + 80 ] }, "e_team_roster_statuses_on_conflict": { "constraint": [ - 1129 + 1246 ], "update_columns": [ - 1143 + 1260 ], "where": [ - 1128 + 1245 ], "__typename": [ - 78 + 80 ] }, "e_team_roster_statuses_order_by": { "description": [ - 2829 + 2946 ], "value": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "e_team_roster_statuses_pk_columns_input": { "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_team_roster_statuses_select_column": {}, "e_team_roster_statuses_set_input": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_team_roster_statuses_stream_cursor_input": { "initial_value": [ - 1142 + 1259 ], "ordering": [ - 236 + 308 ], "__typename": [ - 78 + 80 ] }, "e_team_roster_statuses_stream_cursor_value_input": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_team_roster_statuses_update_column": {}, "e_team_roster_statuses_updates": { "_set": [ - 1140 + 1257 ], "where": [ - 1128 + 1245 ], "__typename": [ - 78 + 80 ] }, "e_timeout_settings": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_timeout_settings_aggregate": { "aggregate": [ - 1147 + 1264 ], "nodes": [ - 1145 + 1262 ], "__typename": [ - 78 + 80 ] }, "e_timeout_settings_aggregate_fields": { "count": [ - 38, + 40, { "columns": [ - 1159, + 1276, "[e_timeout_settings_select_column!]" ], "distinct": [ - 3 + 5 ] } ], "max": [ - 1153 + 1270 ], "min": [ - 1154 + 1271 ], "__typename": [ - 78 + 80 ] }, "e_timeout_settings_bool_exp": { "_and": [ - 1148 + 1265 ], "_not": [ - 1148 + 1265 ], "_or": [ - 1148 + 1265 ], "description": [ - 80 + 82 ], "value": [ - 80 + 82 ], "__typename": [ - 78 + 80 ] }, "e_timeout_settings_constraint": {}, "e_timeout_settings_enum": {}, "e_timeout_settings_enum_comparison_exp": { "_eq": [ - 1150 + 1267 ], "_in": [ - 1150 + 1267 ], "_is_null": [ - 3 + 5 ], "_neq": [ - 1150 + 1267 ], "_nin": [ - 1150 + 1267 ], "__typename": [ - 78 + 80 ] }, "e_timeout_settings_insert_input": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_timeout_settings_max_fields": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_timeout_settings_min_fields": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_timeout_settings_mutation_response": { "affected_rows": [ - 38 + 40 ], "returning": [ - 1145 + 1262 ], "__typename": [ - 78 + 80 ] }, "e_timeout_settings_on_conflict": { "constraint": [ - 1149 + 1266 ], "update_columns": [ - 1163 + 1280 ], "where": [ - 1148 + 1265 ], "__typename": [ - 78 + 80 ] }, "e_timeout_settings_order_by": { "description": [ - 2829 + 2946 ], "value": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "e_timeout_settings_pk_columns_input": { "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_timeout_settings_select_column": {}, "e_timeout_settings_set_input": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_timeout_settings_stream_cursor_input": { "initial_value": [ - 1162 + 1279 ], "ordering": [ - 236 + 308 ], "__typename": [ - 78 + 80 ] }, "e_timeout_settings_stream_cursor_value_input": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_timeout_settings_update_column": {}, "e_timeout_settings_updates": { "_set": [ - 1160 + 1277 ], "where": [ - 1148 + 1265 ], "__typename": [ - 78 + 80 ] }, "e_tournament_categories": { "description": [ - 78 + 80 ], "tournament_categories": [ - 4424, + 4583, { "distinct_on": [ - 4442, + 4601, "[tournament_categories_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 4440, + 4599, "[tournament_categories_order_by!]" ], "where": [ - 4431 + 4590 ] } ], "tournament_categories_aggregate": [ - 4425, + 4584, { "distinct_on": [ - 4442, + 4601, "[tournament_categories_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 4440, + 4599, "[tournament_categories_order_by!]" ], "where": [ - 4431 + 4590 ] } ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_tournament_categories_aggregate": { "aggregate": [ - 1167 + 1284 ], "nodes": [ - 1165 + 1282 ], "__typename": [ - 78 + 80 ] }, "e_tournament_categories_aggregate_fields": { "count": [ - 38, + 40, { "columns": [ - 1180, + 1297, "[e_tournament_categories_select_column!]" ], "distinct": [ - 3 + 5 ] } ], "max": [ - 1173 + 1290 ], "min": [ - 1174 + 1291 ], "__typename": [ - 78 + 80 ] }, "e_tournament_categories_bool_exp": { "_and": [ - 1168 + 1285 ], "_not": [ - 1168 + 1285 ], "_or": [ - 1168 + 1285 ], "description": [ - 80 + 82 ], "tournament_categories": [ - 4431 + 4590 ], "tournament_categories_aggregate": [ - 4426 + 4585 ], "value": [ - 80 + 82 ], "__typename": [ - 78 + 80 ] }, "e_tournament_categories_constraint": {}, "e_tournament_categories_enum": {}, "e_tournament_categories_enum_comparison_exp": { "_eq": [ - 1170 + 1287 ], "_in": [ - 1170 + 1287 ], "_is_null": [ - 3 + 5 ], "_neq": [ - 1170 + 1287 ], "_nin": [ - 1170 + 1287 ], "__typename": [ - 78 + 80 ] }, "e_tournament_categories_insert_input": { "description": [ - 78 + 80 ], "tournament_categories": [ - 4430 + 4589 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_tournament_categories_max_fields": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_tournament_categories_min_fields": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_tournament_categories_mutation_response": { "affected_rows": [ - 38 + 40 ], "returning": [ - 1165 + 1282 ], "__typename": [ - 78 + 80 ] }, "e_tournament_categories_obj_rel_insert_input": { "data": [ - 1172 + 1289 ], "on_conflict": [ - 1177 + 1294 ], "__typename": [ - 78 + 80 ] }, "e_tournament_categories_on_conflict": { "constraint": [ - 1169 + 1286 ], "update_columns": [ - 1184 + 1301 ], "where": [ - 1168 + 1285 ], "__typename": [ - 78 + 80 ] }, "e_tournament_categories_order_by": { "description": [ - 2829 + 2946 ], "tournament_categories_aggregate": [ - 4429 + 4588 ], "value": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "e_tournament_categories_pk_columns_input": { "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_tournament_categories_select_column": {}, "e_tournament_categories_set_input": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_tournament_categories_stream_cursor_input": { "initial_value": [ - 1183 + 1300 ], "ordering": [ - 236 + 308 ], "__typename": [ - 78 + 80 ] }, "e_tournament_categories_stream_cursor_value_input": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_tournament_categories_update_column": {}, "e_tournament_categories_updates": { "_set": [ - 1181 + 1298 ], "where": [ - 1168 + 1285 ], "__typename": [ - 78 + 80 ] }, "e_tournament_stage_types": { "description": [ - 78 + 80 ], "tournament_stages": [ - 4595, + 4754, { "distinct_on": [ - 4624, + 4783, "[tournament_stages_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 4621, + 4780, "[tournament_stages_order_by!]" ], "where": [ - 4607 + 4766 ] } ], "tournament_stages_aggregate": [ - 4596, + 4755, { "distinct_on": [ - 4624, + 4783, "[tournament_stages_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 4621, + 4780, "[tournament_stages_order_by!]" ], "where": [ - 4607 + 4766 ] } ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_tournament_stage_types_aggregate": { "aggregate": [ - 1188 + 1305 ], "nodes": [ - 1186 + 1303 ], "__typename": [ - 78 + 80 ] }, "e_tournament_stage_types_aggregate_fields": { "count": [ - 38, + 40, { "columns": [ - 1201, + 1318, "[e_tournament_stage_types_select_column!]" ], "distinct": [ - 3 + 5 ] } ], "max": [ - 1194 + 1311 ], "min": [ - 1195 + 1312 ], "__typename": [ - 78 + 80 ] }, "e_tournament_stage_types_bool_exp": { "_and": [ - 1189 + 1306 ], "_not": [ - 1189 + 1306 ], "_or": [ - 1189 + 1306 ], "description": [ - 80 + 82 ], "tournament_stages": [ - 4607 + 4766 ], "tournament_stages_aggregate": [ - 4597 + 4756 ], "value": [ - 80 + 82 ], "__typename": [ - 78 + 80 ] }, "e_tournament_stage_types_constraint": {}, "e_tournament_stage_types_enum": {}, "e_tournament_stage_types_enum_comparison_exp": { "_eq": [ - 1191 + 1308 ], "_in": [ - 1191 + 1308 ], "_is_null": [ - 3 + 5 ], "_neq": [ - 1191 + 1308 ], "_nin": [ - 1191 + 1308 ], "__typename": [ - 78 + 80 ] }, "e_tournament_stage_types_insert_input": { "description": [ - 78 + 80 ], "tournament_stages": [ - 4604 + 4763 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_tournament_stage_types_max_fields": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_tournament_stage_types_min_fields": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_tournament_stage_types_mutation_response": { "affected_rows": [ - 38 + 40 ], "returning": [ - 1186 + 1303 ], "__typename": [ - 78 + 80 ] }, "e_tournament_stage_types_obj_rel_insert_input": { "data": [ - 1193 + 1310 ], "on_conflict": [ - 1198 + 1315 ], "__typename": [ - 78 + 80 ] }, "e_tournament_stage_types_on_conflict": { "constraint": [ - 1190 + 1307 ], "update_columns": [ - 1205 + 1322 ], "where": [ - 1189 + 1306 ], "__typename": [ - 78 + 80 ] }, "e_tournament_stage_types_order_by": { "description": [ - 2829 + 2946 ], "tournament_stages_aggregate": [ - 4602 + 4761 ], "value": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "e_tournament_stage_types_pk_columns_input": { "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_tournament_stage_types_select_column": {}, "e_tournament_stage_types_set_input": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_tournament_stage_types_stream_cursor_input": { "initial_value": [ - 1204 + 1321 ], "ordering": [ - 236 + 308 ], "__typename": [ - 78 + 80 ] }, "e_tournament_stage_types_stream_cursor_value_input": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_tournament_stage_types_update_column": {}, "e_tournament_stage_types_updates": { "_set": [ - 1202 + 1319 ], "where": [ - 1189 + 1306 ], "__typename": [ - 78 + 80 ] }, "e_tournament_status": { "description": [ - 78 + 80 ], "tournaments": [ - 4857, + 4929, { "distinct_on": [ - 4891, + 4963, "[tournaments_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 4889, + 4961, "[tournaments_order_by!]" ], "where": [ - 4878 + 4950 ] } ], "tournaments_aggregate": [ - 4858, + 4930, { "distinct_on": [ - 4891, + 4963, "[tournaments_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 4889, + 4961, "[tournaments_order_by!]" ], "where": [ - 4878 + 4950 ] } ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_tournament_status_aggregate": { "aggregate": [ - 1209 + 1326 ], "nodes": [ - 1207 + 1324 ], "__typename": [ - 78 + 80 ] }, "e_tournament_status_aggregate_fields": { "count": [ - 38, + 40, { "columns": [ - 1222, + 1339, "[e_tournament_status_select_column!]" ], "distinct": [ - 3 + 5 ] } ], "max": [ - 1215 + 1332 ], "min": [ - 1216 + 1333 ], "__typename": [ - 78 + 80 ] }, "e_tournament_status_bool_exp": { "_and": [ - 1210 + 1327 ], "_not": [ - 1210 + 1327 ], "_or": [ - 1210 + 1327 ], "description": [ - 80 + 82 ], "tournaments": [ - 4878 + 4950 ], "tournaments_aggregate": [ - 4859 + 4931 ], "value": [ - 80 + 82 ], "__typename": [ - 78 + 80 ] }, "e_tournament_status_constraint": {}, "e_tournament_status_enum": {}, "e_tournament_status_enum_comparison_exp": { "_eq": [ - 1212 + 1329 ], "_in": [ - 1212 + 1329 ], "_is_null": [ - 3 + 5 ], "_neq": [ - 1212 + 1329 ], "_nin": [ - 1212 + 1329 ], "__typename": [ - 78 + 80 ] }, "e_tournament_status_insert_input": { "description": [ - 78 + 80 ], "tournaments": [ - 4875 + 4947 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_tournament_status_max_fields": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_tournament_status_min_fields": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_tournament_status_mutation_response": { "affected_rows": [ - 38 + 40 ], "returning": [ - 1207 + 1324 ], "__typename": [ - 78 + 80 ] }, "e_tournament_status_obj_rel_insert_input": { "data": [ - 1214 + 1331 ], "on_conflict": [ - 1219 + 1336 ], "__typename": [ - 78 + 80 ] }, "e_tournament_status_on_conflict": { "constraint": [ - 1211 + 1328 ], "update_columns": [ - 1226 + 1343 ], "where": [ - 1210 + 1327 ], "__typename": [ - 78 + 80 ] }, "e_tournament_status_order_by": { "description": [ - 2829 + 2946 ], "tournaments_aggregate": [ - 4874 + 4946 ], "value": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "e_tournament_status_pk_columns_input": { "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_tournament_status_select_column": {}, "e_tournament_status_set_input": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_tournament_status_stream_cursor_input": { "initial_value": [ - 1225 + 1342 ], "ordering": [ - 236 + 308 ], "__typename": [ - 78 + 80 ] }, "e_tournament_status_stream_cursor_value_input": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_tournament_status_update_column": {}, "e_tournament_status_updates": { "_set": [ - 1223 + 1340 ], "where": [ - 1210 + 1327 ], "__typename": [ - 78 + 80 ] }, "e_utility_types": { "description": [ - 78 + 80 ], "player_utilities": [ - 3713, + 3830, { "distinct_on": [ - 3734, + 3851, "[player_utility_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 3732, + 3849, "[player_utility_order_by!]" ], "where": [ - 3722 + 3839 ] } ], "player_utilities_aggregate": [ - 3714, + 3831, { "distinct_on": [ - 3734, + 3851, "[player_utility_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 3732, + 3849, "[player_utility_order_by!]" ], "where": [ - 3722 + 3839 ] } ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_utility_types_aggregate": { "aggregate": [ - 1230 + 1347 ], "nodes": [ - 1228 + 1345 ], "__typename": [ - 78 + 80 ] }, "e_utility_types_aggregate_fields": { "count": [ - 38, + 40, { "columns": [ - 1242, + 1359, "[e_utility_types_select_column!]" ], "distinct": [ - 3 + 5 ] } ], "max": [ - 1236 + 1353 ], "min": [ - 1237 + 1354 ], "__typename": [ - 78 + 80 ] }, "e_utility_types_bool_exp": { "_and": [ - 1231 + 1348 ], "_not": [ - 1231 + 1348 ], "_or": [ - 1231 + 1348 ], "description": [ - 80 + 82 ], "player_utilities": [ - 3722 + 3839 ], "player_utilities_aggregate": [ - 3715 + 3832 ], "value": [ - 80 + 82 ], "__typename": [ - 78 + 80 ] }, "e_utility_types_constraint": {}, "e_utility_types_enum": {}, "e_utility_types_enum_comparison_exp": { "_eq": [ - 1233 + 1350 ], "_in": [ - 1233 + 1350 ], "_is_null": [ - 3 + 5 ], "_neq": [ - 1233 + 1350 ], "_nin": [ - 1233 + 1350 ], "__typename": [ - 78 + 80 ] }, "e_utility_types_insert_input": { "description": [ - 78 + 80 ], "player_utilities": [ - 3719 + 3836 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_utility_types_max_fields": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_utility_types_min_fields": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_utility_types_mutation_response": { "affected_rows": [ - 38 + 40 ], "returning": [ - 1228 + 1345 ], "__typename": [ - 78 + 80 ] }, "e_utility_types_on_conflict": { "constraint": [ - 1232 + 1349 ], "update_columns": [ - 1246 + 1363 ], "where": [ - 1231 + 1348 ], "__typename": [ - 78 + 80 ] }, "e_utility_types_order_by": { "description": [ - 2829 + 2946 ], "player_utilities_aggregate": [ - 3718 + 3835 ], "value": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "e_utility_types_pk_columns_input": { "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_utility_types_select_column": {}, "e_utility_types_set_input": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_utility_types_stream_cursor_input": { "initial_value": [ - 1245 + 1362 ], "ordering": [ - 236 + 308 ], "__typename": [ - 78 + 80 ] }, "e_utility_types_stream_cursor_value_input": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_utility_types_update_column": {}, "e_utility_types_updates": { "_set": [ - 1243 + 1360 ], "where": [ - 1231 + 1348 ], "__typename": [ - 78 + 80 ] }, "e_veto_pick_types": { "description": [ - 78 + 80 ], "match_veto_picks": [ - 2458, + 2575, { "distinct_on": [ - 2476, + 2593, "[match_map_veto_picks_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2474, + 2591, "[match_map_veto_picks_order_by!]" ], "where": [ - 2465 + 2582 ] } ], "match_veto_picks_aggregate": [ - 2459, + 2576, { "distinct_on": [ - 2476, + 2593, "[match_map_veto_picks_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2474, + 2591, "[match_map_veto_picks_order_by!]" ], "where": [ - 2465 + 2582 ] } ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_veto_pick_types_aggregate": { "aggregate": [ - 1250 + 1367 ], "nodes": [ - 1248 + 1365 ], "__typename": [ - 78 + 80 ] }, "e_veto_pick_types_aggregate_fields": { "count": [ - 38, + 40, { "columns": [ - 1262, + 1379, "[e_veto_pick_types_select_column!]" ], "distinct": [ - 3 + 5 ] } ], "max": [ - 1256 + 1373 ], "min": [ - 1257 + 1374 ], "__typename": [ - 78 + 80 ] }, "e_veto_pick_types_bool_exp": { "_and": [ - 1251 + 1368 ], "_not": [ - 1251 + 1368 ], "_or": [ - 1251 + 1368 ], "description": [ - 80 + 82 ], "match_veto_picks": [ - 2465 + 2582 ], "match_veto_picks_aggregate": [ - 2460 + 2577 ], "value": [ - 80 + 82 ], "__typename": [ - 78 + 80 ] }, "e_veto_pick_types_constraint": {}, "e_veto_pick_types_enum": {}, "e_veto_pick_types_enum_comparison_exp": { "_eq": [ - 1253 + 1370 ], "_in": [ - 1253 + 1370 ], "_is_null": [ - 3 + 5 ], "_neq": [ - 1253 + 1370 ], "_nin": [ - 1253 + 1370 ], "__typename": [ - 78 + 80 ] }, "e_veto_pick_types_insert_input": { "description": [ - 78 + 80 ], "match_veto_picks": [ - 2464 + 2581 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_veto_pick_types_max_fields": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_veto_pick_types_min_fields": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_veto_pick_types_mutation_response": { "affected_rows": [ - 38 + 40 ], "returning": [ - 1248 + 1365 ], "__typename": [ - 78 + 80 ] }, "e_veto_pick_types_on_conflict": { "constraint": [ - 1252 + 1369 ], "update_columns": [ - 1266 + 1383 ], "where": [ - 1251 + 1368 ], "__typename": [ - 78 + 80 ] }, "e_veto_pick_types_order_by": { "description": [ - 2829 + 2946 ], "match_veto_picks_aggregate": [ - 2463 + 2580 ], "value": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "e_veto_pick_types_pk_columns_input": { "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_veto_pick_types_select_column": {}, "e_veto_pick_types_set_input": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_veto_pick_types_stream_cursor_input": { "initial_value": [ - 1265 + 1382 ], "ordering": [ - 236 + 308 ], "__typename": [ - 78 + 80 ] }, "e_veto_pick_types_stream_cursor_value_input": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_veto_pick_types_update_column": {}, "e_veto_pick_types_updates": { "_set": [ - 1263 + 1380 ], "where": [ - 1251 + 1368 ], "__typename": [ - 78 + 80 ] }, "e_winning_reasons": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_winning_reasons_aggregate": { "aggregate": [ - 1270 + 1387 ], "nodes": [ - 1268 + 1385 ], "__typename": [ - 78 + 80 ] }, "e_winning_reasons_aggregate_fields": { "count": [ - 38, + 40, { "columns": [ - 1282, + 1399, "[e_winning_reasons_select_column!]" ], "distinct": [ - 3 + 5 ] } ], "max": [ - 1276 + 1393 ], "min": [ - 1277 + 1394 ], "__typename": [ - 78 + 80 ] }, "e_winning_reasons_bool_exp": { "_and": [ - 1271 + 1388 ], "_not": [ - 1271 + 1388 ], "_or": [ - 1271 + 1388 ], "description": [ - 80 + 82 ], "value": [ - 80 + 82 ], "__typename": [ - 78 + 80 ] }, "e_winning_reasons_constraint": {}, "e_winning_reasons_enum": {}, "e_winning_reasons_enum_comparison_exp": { "_eq": [ - 1273 + 1390 ], "_in": [ - 1273 + 1390 ], "_is_null": [ - 3 + 5 ], "_neq": [ - 1273 + 1390 ], "_nin": [ - 1273 + 1390 ], "__typename": [ - 78 + 80 ] }, "e_winning_reasons_insert_input": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_winning_reasons_max_fields": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_winning_reasons_min_fields": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_winning_reasons_mutation_response": { "affected_rows": [ - 38 + 40 ], "returning": [ - 1268 + 1385 ], "__typename": [ - 78 + 80 ] }, "e_winning_reasons_on_conflict": { "constraint": [ - 1272 + 1389 ], "update_columns": [ - 1286 + 1403 ], "where": [ - 1271 + 1388 ], "__typename": [ - 78 + 80 ] }, "e_winning_reasons_order_by": { "description": [ - 2829 + 2946 ], "value": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "e_winning_reasons_pk_columns_input": { "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_winning_reasons_select_column": {}, "e_winning_reasons_set_input": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_winning_reasons_stream_cursor_input": { "initial_value": [ - 1285 + 1402 ], "ordering": [ - 236 + 308 ], "__typename": [ - 78 + 80 ] }, "e_winning_reasons_stream_cursor_value_input": { "description": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "e_winning_reasons_update_column": {}, "e_winning_reasons_updates": { "_set": [ - 1283 + 1400 ], "where": [ - 1271 + 1388 ], "__typename": [ - 78 + 80 ] }, "event_match_links": { "created_at": [ - 4376 + 4493 ], "event": [ - 1519 + 1636 ], "event_id": [ - 4921 + 4993 ], "match": [ - 2644 + 2761 ], "match_id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "event_match_links_aggregate": { "aggregate": [ - 1290 + 1407 ], "nodes": [ - 1288 + 1405 ], "__typename": [ - 78 + 80 ] }, "event_match_links_aggregate_fields": { "count": [ - 38, + 40, { "columns": [ - 1300, + 1417, "[event_match_links_select_column!]" ], "distinct": [ - 3 + 5 ] } ], "max": [ - 1294 + 1411 ], "min": [ - 1295 + 1412 ], "__typename": [ - 78 + 80 ] }, "event_match_links_bool_exp": { "_and": [ - 1291 + 1408 ], "_not": [ - 1291 + 1408 ], "_or": [ - 1291 + 1408 ], "created_at": [ - 4377 + 4494 ], "event": [ - 1523 + 1640 ], "event_id": [ - 4923 + 4995 ], "match": [ - 2653 + 2770 ], "match_id": [ - 4923 + 4995 ], "__typename": [ - 78 + 80 ] }, "event_match_links_constraint": {}, "event_match_links_insert_input": { "created_at": [ - 4376 + 4493 ], "event": [ - 1530 + 1647 ], "event_id": [ - 4921 + 4993 ], "match": [ - 2662 + 2779 ], "match_id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "event_match_links_max_fields": { "created_at": [ - 4376 + 4493 ], "event_id": [ - 4921 + 4993 ], "match_id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "event_match_links_min_fields": { "created_at": [ - 4376 + 4493 ], "event_id": [ - 4921 + 4993 ], "match_id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "event_match_links_mutation_response": { "affected_rows": [ - 38 + 40 ], "returning": [ - 1288 + 1405 ], "__typename": [ - 78 + 80 ] }, "event_match_links_on_conflict": { "constraint": [ - 1292 + 1409 ], "update_columns": [ - 1304 + 1421 ], "where": [ - 1291 + 1408 ], "__typename": [ - 78 + 80 ] }, "event_match_links_order_by": { "created_at": [ - 2829 + 2946 ], "event": [ - 1532 + 1649 ], "event_id": [ - 2829 + 2946 ], "match": [ - 2664 + 2781 ], "match_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "event_match_links_pk_columns_input": { "event_id": [ - 4921 + 4993 ], "match_id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "event_match_links_select_column": {}, "event_match_links_set_input": { "created_at": [ - 4376 + 4493 ], "event_id": [ - 4921 + 4993 ], "match_id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "event_match_links_stream_cursor_input": { "initial_value": [ - 1303 + 1420 ], "ordering": [ - 236 + 308 ], "__typename": [ - 78 + 80 ] }, "event_match_links_stream_cursor_value_input": { "created_at": [ - 4376 + 4493 ], "event_id": [ - 4921 + 4993 ], "match_id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "event_match_links_update_column": {}, "event_match_links_updates": { "_set": [ - 1301 + 1418 ], "where": [ - 1291 + 1408 ], "__typename": [ - 78 + 80 ] }, "event_media": { "created_at": [ - 4376 + 4493 ], "event": [ - 1519 + 1636 ], "event_id": [ - 4921 + 4993 ], "external_url": [ - 78 + 80 ], "filename": [ - 78 + 80 ], "id": [ - 4921 + 4993 ], "mime_type": [ - 78 + 80 ], "players": [ - 1328, + 1445, { "distinct_on": [ - 1349, + 1466, "[event_media_players_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 1347, + 1464, "[event_media_players_order_by!]" ], "where": [ - 1337 + 1454 ] } ], "players_aggregate": [ - 1329, + 1446, { "distinct_on": [ - 1349, + 1466, "[event_media_players_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 1347, + 1464, "[event_media_players_order_by!]" ], "where": [ - 1337 + 1454 ] } ], "size": [ - 180 + 252 ], "thumbnail_filename": [ - 78 + 80 ], "title": [ - 78 + 80 ], "uploader": [ - 3787 + 3904 ], "uploader_steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "event_media_aggregate": { "aggregate": [ - 1310 + 1427 ], "nodes": [ - 1306 + 1423 ], "__typename": [ - 78 + 80 ] }, "event_media_aggregate_bool_exp": { "count": [ - 1309 + 1426 ], "__typename": [ - 78 + 80 ] }, "event_media_aggregate_bool_exp_count": { "arguments": [ - 1369 + 1486 ], "distinct": [ - 3 + 5 ], "filter": [ - 1315 + 1432 ], "predicate": [ - 39 + 41 ], "__typename": [ - 78 + 80 ] }, "event_media_aggregate_fields": { "avg": [ - 1313 + 1430 ], "count": [ - 38, + 40, { "columns": [ - 1369, + 1486, "[event_media_select_column!]" ], "distinct": [ - 3 + 5 ] } ], "max": [ - 1319 + 1436 ], "min": [ - 1321 + 1438 ], "stddev": [ - 1371 + 1488 ], "stddev_pop": [ - 1373 + 1490 ], "stddev_samp": [ - 1375 + 1492 ], "sum": [ - 1379 + 1496 ], "var_pop": [ - 1383 + 1500 ], "var_samp": [ - 1385 + 1502 ], "variance": [ - 1387 + 1504 ], "__typename": [ - 78 + 80 ] }, "event_media_aggregate_order_by": { "avg": [ - 1314 + 1431 ], "count": [ - 2829 + 2946 ], "max": [ - 1320 + 1437 ], "min": [ - 1322 + 1439 ], "stddev": [ - 1372 + 1489 ], "stddev_pop": [ - 1374 + 1491 ], "stddev_samp": [ - 1376 + 1493 ], "sum": [ - 1380 + 1497 ], "var_pop": [ - 1384 + 1501 ], "var_samp": [ - 1386 + 1503 ], "variance": [ - 1388 + 1505 ], "__typename": [ - 78 + 80 ] }, "event_media_arr_rel_insert_input": { "data": [ - 1318 + 1435 ], "on_conflict": [ - 1325 + 1442 ], "__typename": [ - 78 + 80 ] }, "event_media_avg_fields": { "size": [ - 29 + 31 ], "uploader_steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "event_media_avg_order_by": { "size": [ - 2829 + 2946 ], "uploader_steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "event_media_bool_exp": { "_and": [ - 1315 + 1432 ], "_not": [ - 1315 + 1432 ], "_or": [ - 1315 + 1432 ], "created_at": [ - 4377 + 4494 ], "event": [ - 1523 + 1640 ], "event_id": [ - 4923 + 4995 ], "external_url": [ - 80 + 82 ], "filename": [ - 80 + 82 ], "id": [ - 4923 + 4995 ], "mime_type": [ - 80 + 82 ], "players": [ - 1337 + 1454 ], "players_aggregate": [ - 1330 + 1447 ], "size": [ - 182 + 254 ], "thumbnail_filename": [ - 80 + 82 ], "title": [ - 80 + 82 ], "uploader": [ - 3791 + 3908 ], "uploader_steam_id": [ - 182 + 254 ], "__typename": [ - 78 + 80 ] }, "event_media_constraint": {}, "event_media_inc_input": { "size": [ - 180 + 252 ], "uploader_steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "event_media_insert_input": { "created_at": [ - 4376 + 4493 ], "event": [ - 1530 + 1647 ], "event_id": [ - 4921 + 4993 ], "external_url": [ - 78 + 80 ], "filename": [ - 78 + 80 ], "id": [ - 4921 + 4993 ], "mime_type": [ - 78 + 80 ], "players": [ - 1334 + 1451 ], "size": [ - 180 + 252 ], "thumbnail_filename": [ - 78 + 80 ], "title": [ - 78 + 80 ], "uploader": [ - 3798 + 3915 ], "uploader_steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "event_media_max_fields": { "created_at": [ - 4376 + 4493 ], "event_id": [ - 4921 + 4993 ], "external_url": [ - 78 + 80 ], "filename": [ - 78 + 80 ], "id": [ - 4921 + 4993 ], "mime_type": [ - 78 + 80 ], "size": [ - 180 + 252 ], "thumbnail_filename": [ - 78 + 80 ], "title": [ - 78 + 80 ], "uploader_steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "event_media_max_order_by": { "created_at": [ - 2829 + 2946 ], "event_id": [ - 2829 + 2946 ], "external_url": [ - 2829 + 2946 ], "filename": [ - 2829 + 2946 ], "id": [ - 2829 + 2946 ], "mime_type": [ - 2829 + 2946 ], "size": [ - 2829 + 2946 ], "thumbnail_filename": [ - 2829 + 2946 ], "title": [ - 2829 + 2946 ], "uploader_steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "event_media_min_fields": { "created_at": [ - 4376 + 4493 ], "event_id": [ - 4921 + 4993 ], "external_url": [ - 78 + 80 ], "filename": [ - 78 + 80 ], "id": [ - 4921 + 4993 ], "mime_type": [ - 78 + 80 ], "size": [ - 180 + 252 ], "thumbnail_filename": [ - 78 + 80 ], "title": [ - 78 + 80 ], "uploader_steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "event_media_min_order_by": { "created_at": [ - 2829 + 2946 ], "event_id": [ - 2829 + 2946 ], "external_url": [ - 2829 + 2946 ], "filename": [ - 2829 + 2946 ], "id": [ - 2829 + 2946 ], "mime_type": [ - 2829 + 2946 ], "size": [ - 2829 + 2946 ], "thumbnail_filename": [ - 2829 + 2946 ], "title": [ - 2829 + 2946 ], "uploader_steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "event_media_mutation_response": { "affected_rows": [ - 38 + 40 ], "returning": [ - 1306 + 1423 ], "__typename": [ - 78 + 80 ] }, "event_media_obj_rel_insert_input": { "data": [ - 1318 + 1435 ], "on_conflict": [ - 1325 + 1442 ], "__typename": [ - 78 + 80 ] }, "event_media_on_conflict": { "constraint": [ - 1316 + 1433 ], "update_columns": [ - 1381 + 1498 ], "where": [ - 1315 + 1432 ], "__typename": [ - 78 + 80 ] }, "event_media_order_by": { "created_at": [ - 2829 + 2946 ], "event": [ - 1532 + 1649 ], "event_id": [ - 2829 + 2946 ], "external_url": [ - 2829 + 2946 ], "filename": [ - 2829 + 2946 ], "id": [ - 2829 + 2946 ], "mime_type": [ - 2829 + 2946 ], "players_aggregate": [ - 1333 + 1450 ], "size": [ - 2829 + 2946 ], "thumbnail_filename": [ - 2829 + 2946 ], "title": [ - 2829 + 2946 ], "uploader": [ - 3800 + 3917 ], "uploader_steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "event_media_pk_columns_input": { "id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "event_media_players": { "created_at": [ - 4376 + 4493 ], "media": [ - 1306 + 1423 ], "media_id": [ - 4921 + 4993 ], "player": [ - 3787 + 3904 ], "steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "event_media_players_aggregate": { "aggregate": [ - 1332 + 1449 ], "nodes": [ - 1328 + 1445 ], "__typename": [ - 78 + 80 ] }, "event_media_players_aggregate_bool_exp": { "count": [ - 1331 + 1448 ], "__typename": [ - 78 + 80 ] }, "event_media_players_aggregate_bool_exp_count": { "arguments": [ - 1349 + 1466 ], "distinct": [ - 3 + 5 ], "filter": [ - 1337 + 1454 ], "predicate": [ - 39 + 41 ], "__typename": [ - 78 + 80 ] }, "event_media_players_aggregate_fields": { "avg": [ - 1335 + 1452 ], "count": [ - 38, + 40, { "columns": [ - 1349, + 1466, "[event_media_players_select_column!]" ], "distinct": [ - 3 + 5 ] } ], "max": [ - 1341 + 1458 ], "min": [ - 1343 + 1460 ], "stddev": [ - 1351 + 1468 ], "stddev_pop": [ - 1353 + 1470 ], "stddev_samp": [ - 1355 + 1472 ], "sum": [ - 1359 + 1476 ], "var_pop": [ - 1363 + 1480 ], "var_samp": [ - 1365 + 1482 ], "variance": [ - 1367 + 1484 ], "__typename": [ - 78 + 80 ] }, "event_media_players_aggregate_order_by": { "avg": [ - 1336 + 1453 ], "count": [ - 2829 + 2946 ], "max": [ - 1342 + 1459 ], "min": [ - 1344 + 1461 ], "stddev": [ - 1352 + 1469 ], "stddev_pop": [ - 1354 + 1471 ], "stddev_samp": [ - 1356 + 1473 ], "sum": [ - 1360 + 1477 ], "var_pop": [ - 1364 + 1481 ], "var_samp": [ - 1366 + 1483 ], "variance": [ - 1368 + 1485 ], "__typename": [ - 78 + 80 ] }, "event_media_players_arr_rel_insert_input": { "data": [ - 1340 + 1457 ], "on_conflict": [ - 1346 + 1463 ], "__typename": [ - 78 + 80 ] }, "event_media_players_avg_fields": { "steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "event_media_players_avg_order_by": { "steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "event_media_players_bool_exp": { "_and": [ - 1337 + 1454 ], "_not": [ - 1337 + 1454 ], "_or": [ - 1337 + 1454 ], "created_at": [ - 4377 + 4494 ], "media": [ - 1315 + 1432 ], "media_id": [ - 4923 + 4995 ], "player": [ - 3791 + 3908 ], "steam_id": [ - 182 + 254 ], "__typename": [ - 78 + 80 ] }, "event_media_players_constraint": {}, "event_media_players_inc_input": { "steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "event_media_players_insert_input": { "created_at": [ - 4376 + 4493 ], "media": [ - 1324 + 1441 ], "media_id": [ - 4921 + 4993 ], "player": [ - 3798 + 3915 ], "steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "event_media_players_max_fields": { "created_at": [ - 4376 + 4493 ], "media_id": [ - 4921 + 4993 ], "steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "event_media_players_max_order_by": { "created_at": [ - 2829 + 2946 ], "media_id": [ - 2829 + 2946 ], "steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "event_media_players_min_fields": { "created_at": [ - 4376 + 4493 ], "media_id": [ - 4921 + 4993 ], "steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "event_media_players_min_order_by": { "created_at": [ - 2829 + 2946 ], "media_id": [ - 2829 + 2946 ], "steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "event_media_players_mutation_response": { "affected_rows": [ - 38 + 40 ], "returning": [ - 1328 + 1445 ], "__typename": [ - 78 + 80 ] }, "event_media_players_on_conflict": { "constraint": [ - 1338 + 1455 ], "update_columns": [ - 1361 + 1478 ], "where": [ - 1337 + 1454 ], "__typename": [ - 78 + 80 ] }, "event_media_players_order_by": { "created_at": [ - 2829 + 2946 ], "media": [ - 1326 + 1443 ], "media_id": [ - 2829 + 2946 ], "player": [ - 3800 + 3917 ], "steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "event_media_players_pk_columns_input": { "media_id": [ - 4921 + 4993 ], "steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "event_media_players_select_column": {}, "event_media_players_set_input": { "created_at": [ - 4376 + 4493 ], "media_id": [ - 4921 + 4993 ], "steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "event_media_players_stddev_fields": { "steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "event_media_players_stddev_order_by": { "steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "event_media_players_stddev_pop_fields": { "steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "event_media_players_stddev_pop_order_by": { "steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "event_media_players_stddev_samp_fields": { "steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "event_media_players_stddev_samp_order_by": { "steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "event_media_players_stream_cursor_input": { "initial_value": [ - 1358 + 1475 ], "ordering": [ - 236 + 308 ], "__typename": [ - 78 + 80 ] }, "event_media_players_stream_cursor_value_input": { "created_at": [ - 4376 + 4493 ], "media_id": [ - 4921 + 4993 ], "steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "event_media_players_sum_fields": { "steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "event_media_players_sum_order_by": { "steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "event_media_players_update_column": {}, "event_media_players_updates": { "_inc": [ - 1339 + 1456 ], "_set": [ - 1350 + 1467 ], "where": [ - 1337 + 1454 ], "__typename": [ - 78 + 80 ] }, "event_media_players_var_pop_fields": { "steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "event_media_players_var_pop_order_by": { "steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "event_media_players_var_samp_fields": { "steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "event_media_players_var_samp_order_by": { "steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "event_media_players_variance_fields": { "steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "event_media_players_variance_order_by": { "steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "event_media_select_column": {}, "event_media_set_input": { "created_at": [ - 4376 + 4493 ], "event_id": [ - 4921 + 4993 ], "external_url": [ - 78 + 80 ], "filename": [ - 78 + 80 ], "id": [ - 4921 + 4993 ], "mime_type": [ - 78 + 80 ], "size": [ - 180 + 252 ], "thumbnail_filename": [ - 78 + 80 ], "title": [ - 78 + 80 ], "uploader_steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "event_media_stddev_fields": { "size": [ - 29 + 31 ], "uploader_steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "event_media_stddev_order_by": { "size": [ - 2829 + 2946 ], "uploader_steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "event_media_stddev_pop_fields": { "size": [ - 29 + 31 ], "uploader_steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "event_media_stddev_pop_order_by": { "size": [ - 2829 + 2946 ], "uploader_steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "event_media_stddev_samp_fields": { "size": [ - 29 + 31 ], "uploader_steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "event_media_stddev_samp_order_by": { "size": [ - 2829 + 2946 ], "uploader_steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "event_media_stream_cursor_input": { "initial_value": [ - 1378 + 1495 ], "ordering": [ - 236 + 308 ], "__typename": [ - 78 + 80 ] }, "event_media_stream_cursor_value_input": { "created_at": [ - 4376 + 4493 ], "event_id": [ - 4921 + 4993 ], "external_url": [ - 78 + 80 ], "filename": [ - 78 + 80 ], "id": [ - 4921 + 4993 ], "mime_type": [ - 78 + 80 ], "size": [ - 180 + 252 ], "thumbnail_filename": [ - 78 + 80 ], "title": [ - 78 + 80 ], "uploader_steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "event_media_sum_fields": { "size": [ - 180 + 252 ], "uploader_steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "event_media_sum_order_by": { "size": [ - 2829 + 2946 ], "uploader_steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "event_media_update_column": {}, "event_media_updates": { "_inc": [ - 1317 + 1434 ], "_set": [ - 1370 + 1487 ], "where": [ - 1315 + 1432 ], "__typename": [ - 78 + 80 ] }, "event_media_var_pop_fields": { "size": [ - 29 + 31 ], "uploader_steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "event_media_var_pop_order_by": { "size": [ - 2829 + 2946 ], "uploader_steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "event_media_var_samp_fields": { "size": [ - 29 + 31 ], "uploader_steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "event_media_var_samp_order_by": { "size": [ - 2829 + 2946 ], "uploader_steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "event_media_variance_fields": { "size": [ - 29 + 31 ], "uploader_steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "event_media_variance_order_by": { "size": [ - 2829 + 2946 ], "uploader_steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "event_organizers": { "created_at": [ - 4376 + 4493 ], "event": [ - 1519 + 1636 ], "event_id": [ - 4921 + 4993 ], "organizer": [ - 3787 + 3904 ], "steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "event_organizers_aggregate": { "aggregate": [ - 1393 + 1510 ], "nodes": [ - 1389 + 1506 ], "__typename": [ - 78 + 80 ] }, "event_organizers_aggregate_bool_exp": { "count": [ - 1392 + 1509 ], "__typename": [ - 78 + 80 ] }, "event_organizers_aggregate_bool_exp_count": { "arguments": [ - 1410 + 1527 ], "distinct": [ - 3 + 5 ], "filter": [ - 1398 + 1515 ], "predicate": [ - 39 + 41 ], "__typename": [ - 78 + 80 ] }, "event_organizers_aggregate_fields": { "avg": [ - 1396 + 1513 ], "count": [ - 38, + 40, { "columns": [ - 1410, + 1527, "[event_organizers_select_column!]" ], "distinct": [ - 3 + 5 ] } ], "max": [ - 1402 + 1519 ], "min": [ - 1404 + 1521 ], "stddev": [ - 1412 + 1529 ], "stddev_pop": [ - 1414 + 1531 ], "stddev_samp": [ - 1416 + 1533 ], "sum": [ - 1420 + 1537 ], "var_pop": [ - 1424 + 1541 ], "var_samp": [ - 1426 + 1543 ], "variance": [ - 1428 + 1545 ], "__typename": [ - 78 + 80 ] }, "event_organizers_aggregate_order_by": { "avg": [ - 1397 + 1514 ], "count": [ - 2829 + 2946 ], "max": [ - 1403 + 1520 ], "min": [ - 1405 + 1522 ], "stddev": [ - 1413 + 1530 ], "stddev_pop": [ - 1415 + 1532 ], "stddev_samp": [ - 1417 + 1534 ], "sum": [ - 1421 + 1538 ], "var_pop": [ - 1425 + 1542 ], "var_samp": [ - 1427 + 1544 ], "variance": [ - 1429 + 1546 ], "__typename": [ - 78 + 80 ] }, "event_organizers_arr_rel_insert_input": { "data": [ - 1401 + 1518 ], "on_conflict": [ - 1407 + 1524 ], "__typename": [ - 78 + 80 ] }, "event_organizers_avg_fields": { "steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "event_organizers_avg_order_by": { "steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "event_organizers_bool_exp": { "_and": [ - 1398 + 1515 ], "_not": [ - 1398 + 1515 ], "_or": [ - 1398 + 1515 ], "created_at": [ - 4377 + 4494 ], "event": [ - 1523 + 1640 ], "event_id": [ - 4923 + 4995 ], "organizer": [ - 3791 + 3908 ], "steam_id": [ - 182 + 254 ], "__typename": [ - 78 + 80 ] }, "event_organizers_constraint": {}, "event_organizers_inc_input": { "steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "event_organizers_insert_input": { "created_at": [ - 4376 + 4493 ], "event": [ - 1530 + 1647 ], "event_id": [ - 4921 + 4993 ], "organizer": [ - 3798 + 3915 ], "steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "event_organizers_max_fields": { "created_at": [ - 4376 + 4493 ], "event_id": [ - 4921 + 4993 ], "steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "event_organizers_max_order_by": { "created_at": [ - 2829 + 2946 ], "event_id": [ - 2829 + 2946 ], "steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "event_organizers_min_fields": { "created_at": [ - 4376 + 4493 ], "event_id": [ - 4921 + 4993 ], "steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "event_organizers_min_order_by": { "created_at": [ - 2829 + 2946 ], "event_id": [ - 2829 + 2946 ], "steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "event_organizers_mutation_response": { "affected_rows": [ - 38 + 40 ], "returning": [ - 1389 + 1506 ], "__typename": [ - 78 + 80 ] }, "event_organizers_on_conflict": { "constraint": [ - 1399 + 1516 ], "update_columns": [ - 1422 + 1539 ], "where": [ - 1398 + 1515 ], "__typename": [ - 78 + 80 ] }, "event_organizers_order_by": { "created_at": [ - 2829 + 2946 ], "event": [ - 1532 + 1649 ], "event_id": [ - 2829 + 2946 ], "organizer": [ - 3800 + 3917 ], "steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "event_organizers_pk_columns_input": { "event_id": [ - 4921 + 4993 ], "steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "event_organizers_select_column": {}, "event_organizers_set_input": { "created_at": [ - 4376 + 4493 ], "event_id": [ - 4921 + 4993 ], "steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "event_organizers_stddev_fields": { "steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "event_organizers_stddev_order_by": { "steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "event_organizers_stddev_pop_fields": { "steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "event_organizers_stddev_pop_order_by": { "steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "event_organizers_stddev_samp_fields": { "steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "event_organizers_stddev_samp_order_by": { "steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "event_organizers_stream_cursor_input": { "initial_value": [ - 1419 + 1536 ], "ordering": [ - 236 + 308 ], "__typename": [ - 78 + 80 ] }, "event_organizers_stream_cursor_value_input": { "created_at": [ - 4376 + 4493 ], "event_id": [ - 4921 + 4993 ], "steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "event_organizers_sum_fields": { "steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "event_organizers_sum_order_by": { "steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "event_organizers_update_column": {}, "event_organizers_updates": { "_inc": [ - 1400 + 1517 ], "_set": [ - 1411 + 1528 ], "where": [ - 1398 + 1515 ], "__typename": [ - 78 + 80 ] }, "event_organizers_var_pop_fields": { "steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "event_organizers_var_pop_order_by": { "steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "event_organizers_var_samp_fields": { "steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "event_organizers_var_samp_order_by": { "steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "event_organizers_variance_fields": { "steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "event_organizers_variance_order_by": { "steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "event_players": { "created_at": [ - 4376 + 4493 ], "event": [ - 1519 + 1636 ], "event_id": [ - 4921 + 4993 ], "player": [ - 3787 + 3904 ], "steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "event_players_aggregate": { "aggregate": [ - 1434 + 1551 ], "nodes": [ - 1430 + 1547 ], "__typename": [ - 78 + 80 ] }, "event_players_aggregate_bool_exp": { "count": [ - 1433 + 1550 ], "__typename": [ - 78 + 80 ] }, "event_players_aggregate_bool_exp_count": { "arguments": [ - 1451 + 1568 ], "distinct": [ - 3 + 5 ], "filter": [ - 1439 + 1556 ], "predicate": [ - 39 + 41 ], "__typename": [ - 78 + 80 ] }, "event_players_aggregate_fields": { "avg": [ - 1437 + 1554 ], "count": [ - 38, + 40, { "columns": [ - 1451, + 1568, "[event_players_select_column!]" ], "distinct": [ - 3 + 5 ] } ], "max": [ - 1443 + 1560 ], "min": [ - 1445 + 1562 ], "stddev": [ - 1453 + 1570 ], "stddev_pop": [ - 1455 + 1572 ], "stddev_samp": [ - 1457 + 1574 ], "sum": [ - 1461 + 1578 ], "var_pop": [ - 1465 + 1582 ], "var_samp": [ - 1467 + 1584 ], "variance": [ - 1469 + 1586 ], "__typename": [ - 78 + 80 ] }, "event_players_aggregate_order_by": { "avg": [ - 1438 + 1555 ], "count": [ - 2829 + 2946 ], "max": [ - 1444 + 1561 ], "min": [ - 1446 + 1563 ], "stddev": [ - 1454 + 1571 ], "stddev_pop": [ - 1456 + 1573 ], "stddev_samp": [ - 1458 + 1575 ], "sum": [ - 1462 + 1579 ], "var_pop": [ - 1466 + 1583 ], "var_samp": [ - 1468 + 1585 ], "variance": [ - 1470 + 1587 ], "__typename": [ - 78 + 80 ] }, "event_players_arr_rel_insert_input": { "data": [ - 1442 + 1559 ], "on_conflict": [ - 1448 + 1565 ], "__typename": [ - 78 + 80 ] }, "event_players_avg_fields": { "steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "event_players_avg_order_by": { "steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "event_players_bool_exp": { "_and": [ - 1439 + 1556 ], "_not": [ - 1439 + 1556 ], "_or": [ - 1439 + 1556 ], "created_at": [ - 4377 + 4494 ], "event": [ - 1523 + 1640 ], "event_id": [ - 4923 + 4995 ], "player": [ - 3791 + 3908 ], "steam_id": [ - 182 + 254 ], "__typename": [ - 78 + 80 ] }, "event_players_constraint": {}, "event_players_inc_input": { "steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "event_players_insert_input": { "created_at": [ - 4376 + 4493 ], "event": [ - 1530 + 1647 ], "event_id": [ - 4921 + 4993 ], "player": [ - 3798 + 3915 ], "steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "event_players_max_fields": { "created_at": [ - 4376 + 4493 ], "event_id": [ - 4921 + 4993 ], "steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "event_players_max_order_by": { "created_at": [ - 2829 + 2946 ], "event_id": [ - 2829 + 2946 ], "steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "event_players_min_fields": { "created_at": [ - 4376 + 4493 ], "event_id": [ - 4921 + 4993 ], "steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "event_players_min_order_by": { "created_at": [ - 2829 + 2946 ], "event_id": [ - 2829 + 2946 ], "steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "event_players_mutation_response": { "affected_rows": [ - 38 + 40 ], "returning": [ - 1430 + 1547 ], "__typename": [ - 78 + 80 ] }, "event_players_on_conflict": { "constraint": [ - 1440 + 1557 ], "update_columns": [ - 1463 + 1580 ], "where": [ - 1439 + 1556 ], "__typename": [ - 78 + 80 ] }, "event_players_order_by": { "created_at": [ - 2829 + 2946 ], "event": [ - 1532 + 1649 ], "event_id": [ - 2829 + 2946 ], "player": [ - 3800 + 3917 ], "steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "event_players_pk_columns_input": { "event_id": [ - 4921 + 4993 ], "steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "event_players_select_column": {}, "event_players_set_input": { "created_at": [ - 4376 + 4493 ], "event_id": [ - 4921 + 4993 ], "steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "event_players_stddev_fields": { "steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "event_players_stddev_order_by": { "steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "event_players_stddev_pop_fields": { "steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "event_players_stddev_pop_order_by": { "steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "event_players_stddev_samp_fields": { "steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "event_players_stddev_samp_order_by": { "steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "event_players_stream_cursor_input": { "initial_value": [ - 1460 + 1577 ], "ordering": [ - 236 + 308 ], "__typename": [ - 78 + 80 ] }, "event_players_stream_cursor_value_input": { "created_at": [ - 4376 + 4493 ], "event_id": [ - 4921 + 4993 ], "steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "event_players_sum_fields": { "steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "event_players_sum_order_by": { "steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "event_players_update_column": {}, "event_players_updates": { "_inc": [ - 1441 + 1558 ], "_set": [ - 1452 + 1569 ], "where": [ - 1439 + 1556 ], "__typename": [ - 78 + 80 ] }, "event_players_var_pop_fields": { "steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "event_players_var_pop_order_by": { "steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "event_players_var_samp_fields": { "steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "event_players_var_samp_order_by": { "steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "event_players_variance_fields": { "steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "event_players_variance_order_by": { "steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "event_teams": { "created_at": [ - 4376 + 4493 ], "event": [ - 1519 + 1636 ], "event_id": [ - 4921 + 4993 ], "team": [ - 4329 + 4446 ], "team_id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "event_teams_aggregate": { "aggregate": [ - 1475 + 1592 ], "nodes": [ - 1471 + 1588 ], "__typename": [ - 78 + 80 ] }, "event_teams_aggregate_bool_exp": { "count": [ - 1474 + 1591 ], "__typename": [ - 78 + 80 ] }, "event_teams_aggregate_bool_exp_count": { "arguments": [ - 1489 + 1606 ], "distinct": [ - 3 + 5 ], "filter": [ - 1478 + 1595 ], "predicate": [ - 39 + 41 ], "__typename": [ - 78 + 80 ] }, "event_teams_aggregate_fields": { "count": [ - 38, + 40, { "columns": [ - 1489, + 1606, "[event_teams_select_column!]" ], "distinct": [ - 3 + 5 ] } ], "max": [ - 1481 + 1598 ], "min": [ - 1483 + 1600 ], "__typename": [ - 78 + 80 ] }, "event_teams_aggregate_order_by": { "count": [ - 2829 + 2946 ], "max": [ - 1482 + 1599 ], "min": [ - 1484 + 1601 ], "__typename": [ - 78 + 80 ] }, "event_teams_arr_rel_insert_input": { "data": [ - 1480 + 1597 ], "on_conflict": [ - 1486 + 1603 ], "__typename": [ - 78 + 80 ] }, "event_teams_bool_exp": { "_and": [ - 1478 + 1595 ], "_not": [ - 1478 + 1595 ], "_or": [ - 1478 + 1595 ], "created_at": [ - 4377 + 4494 ], "event": [ - 1523 + 1640 ], "event_id": [ - 4923 + 4995 ], "team": [ - 4340 + 4457 ], "team_id": [ - 4923 + 4995 ], "__typename": [ - 78 + 80 ] }, "event_teams_constraint": {}, "event_teams_insert_input": { "created_at": [ - 4376 + 4493 ], "event": [ - 1530 + 1647 ], "event_id": [ - 4921 + 4993 ], "team": [ - 4349 + 4466 ], "team_id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "event_teams_max_fields": { "created_at": [ - 4376 + 4493 ], "event_id": [ - 4921 + 4993 ], "team_id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "event_teams_max_order_by": { "created_at": [ - 2829 + 2946 ], "event_id": [ - 2829 + 2946 ], "team_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "event_teams_min_fields": { "created_at": [ - 4376 + 4493 ], "event_id": [ - 4921 + 4993 ], "team_id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "event_teams_min_order_by": { "created_at": [ - 2829 + 2946 ], "event_id": [ - 2829 + 2946 ], "team_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "event_teams_mutation_response": { "affected_rows": [ - 38 + 40 ], "returning": [ - 1471 + 1588 ], "__typename": [ - 78 + 80 ] }, "event_teams_on_conflict": { "constraint": [ - 1479 + 1596 ], "update_columns": [ - 1493 + 1610 ], "where": [ - 1478 + 1595 ], "__typename": [ - 78 + 80 ] }, "event_teams_order_by": { "created_at": [ - 2829 + 2946 ], "event": [ - 1532 + 1649 ], "event_id": [ - 2829 + 2946 ], "team": [ - 4351 + 4468 ], "team_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "event_teams_pk_columns_input": { "event_id": [ - 4921 + 4993 ], "team_id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "event_teams_select_column": {}, "event_teams_set_input": { "created_at": [ - 4376 + 4493 ], "event_id": [ - 4921 + 4993 ], "team_id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "event_teams_stream_cursor_input": { "initial_value": [ - 1492 + 1609 ], "ordering": [ - 236 + 308 ], "__typename": [ - 78 + 80 ] }, "event_teams_stream_cursor_value_input": { "created_at": [ - 4376 + 4493 ], "event_id": [ - 4921 + 4993 ], "team_id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "event_teams_update_column": {}, "event_teams_updates": { "_set": [ - 1490 + 1607 ], "where": [ - 1478 + 1595 ], "__typename": [ - 78 + 80 ] }, "event_tournaments": { "created_at": [ - 4376 + 4493 ], "event": [ - 1519 + 1636 ], "event_id": [ - 4921 + 4993 ], "tournament": [ - 4857 + 4929 ], "tournament_id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "event_tournaments_aggregate": { "aggregate": [ - 1499 + 1616 ], "nodes": [ - 1495 + 1612 ], "__typename": [ - 78 + 80 ] }, "event_tournaments_aggregate_bool_exp": { "count": [ - 1498 + 1615 ], "__typename": [ - 78 + 80 ] }, "event_tournaments_aggregate_bool_exp_count": { "arguments": [ - 1513 + 1630 ], "distinct": [ - 3 + 5 ], "filter": [ - 1502 + 1619 ], "predicate": [ - 39 + 41 ], "__typename": [ - 78 + 80 ] }, "event_tournaments_aggregate_fields": { "count": [ - 38, + 40, { "columns": [ - 1513, + 1630, "[event_tournaments_select_column!]" ], "distinct": [ - 3 + 5 ] } ], "max": [ - 1505 + 1622 ], "min": [ - 1507 + 1624 ], "__typename": [ - 78 + 80 ] }, "event_tournaments_aggregate_order_by": { "count": [ - 2829 + 2946 ], "max": [ - 1506 + 1623 ], "min": [ - 1508 + 1625 ], "__typename": [ - 78 + 80 ] }, "event_tournaments_arr_rel_insert_input": { "data": [ - 1504 + 1621 ], "on_conflict": [ - 1510 + 1627 ], "__typename": [ - 78 + 80 ] }, "event_tournaments_bool_exp": { "_and": [ - 1502 + 1619 ], "_not": [ - 1502 + 1619 ], "_or": [ - 1502 + 1619 ], "created_at": [ - 4377 + 4494 ], "event": [ - 1523 + 1640 ], "event_id": [ - 4923 + 4995 ], "tournament": [ - 4878 + 4950 ], "tournament_id": [ - 4923 + 4995 ], "__typename": [ - 78 + 80 ] }, "event_tournaments_constraint": {}, "event_tournaments_insert_input": { "created_at": [ - 4376 + 4493 ], "event": [ - 1530 + 1647 ], "event_id": [ - 4921 + 4993 ], "tournament": [ - 4887 + 4959 ], "tournament_id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "event_tournaments_max_fields": { "created_at": [ - 4376 + 4493 ], "event_id": [ - 4921 + 4993 ], "tournament_id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "event_tournaments_max_order_by": { "created_at": [ - 2829 + 2946 ], "event_id": [ - 2829 + 2946 ], "tournament_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "event_tournaments_min_fields": { "created_at": [ - 4376 + 4493 ], "event_id": [ - 4921 + 4993 ], "tournament_id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "event_tournaments_min_order_by": { "created_at": [ - 2829 + 2946 ], "event_id": [ - 2829 + 2946 ], "tournament_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "event_tournaments_mutation_response": { "affected_rows": [ - 38 + 40 ], "returning": [ - 1495 + 1612 ], "__typename": [ - 78 + 80 ] }, "event_tournaments_on_conflict": { "constraint": [ - 1503 + 1620 ], "update_columns": [ - 1517 + 1634 ], "where": [ - 1502 + 1619 ], "__typename": [ - 78 + 80 ] }, "event_tournaments_order_by": { "created_at": [ - 2829 + 2946 ], "event": [ - 1532 + 1649 ], "event_id": [ - 2829 + 2946 ], "tournament": [ - 4889 + 4961 ], "tournament_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "event_tournaments_pk_columns_input": { "event_id": [ - 4921 + 4993 ], "tournament_id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "event_tournaments_select_column": {}, "event_tournaments_set_input": { "created_at": [ - 4376 + 4493 ], "event_id": [ - 4921 + 4993 ], "tournament_id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "event_tournaments_stream_cursor_input": { "initial_value": [ - 1516 + 1633 ], "ordering": [ - 236 + 308 ], "__typename": [ - 78 + 80 ] }, "event_tournaments_stream_cursor_value_input": { "created_at": [ - 4376 + 4493 ], "event_id": [ - 4921 + 4993 ], "tournament_id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "event_tournaments_update_column": {}, "event_tournaments_updates": { "_set": [ - 1514 + 1631 ], "where": [ - 1502 + 1619 ], "__typename": [ - 78 + 80 ] }, "events": { "banner": [ - 1306 + 1423 ], "banner_media_id": [ - 4921 + 4993 ], "can_upload_media": [ - 3 + 5 ], "can_view": [ - 3 + 5 ], "created_at": [ - 4376 + 4493 ], "description": [ - 78 + 80 ], "ends_at": [ - 4376 + 4493 ], "hide_creator_organizer": [ - 3 + 5 ], "id": [ - 4921 + 4993 ], "is_organizer": [ - 3 + 5 ], "media": [ - 1306, + 1423, { "distinct_on": [ - 1369, + 1486, "[event_media_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 1326, + 1443, "[event_media_order_by!]" ], "where": [ - 1315 + 1432 ] } ], "media_access": [ - 557 + 674 ], "media_aggregate": [ - 1307, + 1424, { "distinct_on": [ - 1369, + 1486, "[event_media_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 1326, + 1443, "[event_media_order_by!]" ], "where": [ - 1315 + 1432 ] } ], "name": [ - 78 + 80 ], "organizer": [ - 3787 + 3904 ], "organizer_steam_id": [ - 180 + 252 ], "organizers": [ - 1389, + 1506, { "distinct_on": [ - 1410, + 1527, "[event_organizers_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 1408, + 1525, "[event_organizers_order_by!]" ], "where": [ - 1398 + 1515 ] } ], "organizers_aggregate": [ - 1390, + 1507, { "distinct_on": [ - 1410, + 1527, "[event_organizers_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 1408, + 1525, "[event_organizers_order_by!]" ], "where": [ - 1398 + 1515 ] } ], "player_stats": [ - 4924, + 4996, { "distinct_on": [ - 4950, + 5022, "[v_event_player_stats_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 4949, + 5021, "[v_event_player_stats_order_by!]" ], "where": [ - 4943 + 5015 ] } ], "player_stats_aggregate": [ - 4925, + 4997, { "distinct_on": [ - 4950, + 5022, "[v_event_player_stats_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 4949, + 5021, "[v_event_player_stats_order_by!]" ], "where": [ - 4943 + 5015 ] } ], "players": [ - 1430, + 1547, { "distinct_on": [ - 1451, + 1568, "[event_players_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 1449, + 1566, "[event_players_order_by!]" ], "where": [ - 1439 + 1556 ] } ], "players_aggregate": [ - 1431, + 1548, { "distinct_on": [ - 1451, + 1568, "[event_players_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 1449, + 1566, "[event_players_order_by!]" ], "where": [ - 1439 + 1556 ] } ], "starts_at": [ - 4376 + 4493 ], "teams": [ - 1471, + 1588, { "distinct_on": [ - 1489, + 1606, "[event_teams_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 1487, + 1604, "[event_teams_order_by!]" ], "where": [ - 1478 + 1595 ] } ], "teams_aggregate": [ - 1472, + 1589, { "distinct_on": [ - 1489, + 1606, "[event_teams_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 1487, + 1604, "[event_teams_order_by!]" ], "where": [ - 1478 + 1595 ] } ], "tournaments": [ - 1495, + 1612, { "distinct_on": [ - 1513, + 1630, "[event_tournaments_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 1511, + 1628, "[event_tournaments_order_by!]" ], "where": [ - 1502 + 1619 ] } ], "tournaments_aggregate": [ - 1496, + 1613, { "distinct_on": [ - 1513, + 1630, "[event_tournaments_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 1511, + 1628, "[event_tournaments_order_by!]" ], "where": [ - 1502 + 1619 ] } ], "visibility": [ - 577 + 694 ], "__typename": [ - 78 + 80 ] }, "events_aggregate": { "aggregate": [ - 1521 + 1638 ], "nodes": [ - 1519 + 1636 ], "__typename": [ - 78 + 80 ] }, "events_aggregate_fields": { "avg": [ - 1522 + 1639 ], "count": [ - 38, + 40, { "columns": [ - 1534, + 1651, "[events_select_column!]" ], "distinct": [ - 3 + 5 ] } ], "max": [ - 1527 + 1644 ], "min": [ - 1528 + 1645 ], "stddev": [ - 1536 + 1653 ], "stddev_pop": [ - 1537 + 1654 ], "stddev_samp": [ - 1538 + 1655 ], "sum": [ - 1541 + 1658 ], "var_pop": [ - 1544 + 1661 ], "var_samp": [ - 1545 + 1662 ], "variance": [ - 1546 + 1663 ], "__typename": [ - 78 + 80 ] }, "events_avg_fields": { "organizer_steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "events_bool_exp": { "_and": [ - 1523 + 1640 ], "_not": [ - 1523 + 1640 ], "_or": [ - 1523 + 1640 ], "banner": [ - 1315 + 1432 ], "banner_media_id": [ - 4923 + 4995 ], "can_upload_media": [ - 4 + 6 ], "can_view": [ - 4 + 6 ], "created_at": [ - 4377 + 4494 ], "description": [ - 80 + 82 ], "ends_at": [ - 4377 + 4494 ], "hide_creator_organizer": [ - 4 + 6 ], "id": [ - 4923 + 4995 ], "is_organizer": [ - 4 + 6 ], "media": [ - 1315 + 1432 ], "media_access": [ - 558 + 675 ], "media_aggregate": [ - 1308 + 1425 ], "name": [ - 80 + 82 ], "organizer": [ - 3791 + 3908 ], "organizer_steam_id": [ - 182 + 254 ], "organizers": [ - 1398 + 1515 ], "organizers_aggregate": [ - 1391 + 1508 ], "player_stats": [ - 4943 + 5015 ], "player_stats_aggregate": [ - 4926 + 4998 ], "players": [ - 1439 + 1556 ], "players_aggregate": [ - 1432 + 1549 ], "starts_at": [ - 4377 + 4494 ], "teams": [ - 1478 + 1595 ], "teams_aggregate": [ - 1473 + 1590 ], "tournaments": [ - 1502 + 1619 ], "tournaments_aggregate": [ - 1497 + 1614 ], "visibility": [ - 578 + 695 ], "__typename": [ - 78 + 80 ] }, "events_constraint": {}, "events_inc_input": { "organizer_steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "events_insert_input": { "banner": [ - 1324 + 1441 ], "banner_media_id": [ - 4921 + 4993 ], "created_at": [ - 4376 + 4493 ], "description": [ - 78 + 80 ], "ends_at": [ - 4376 + 4493 ], "hide_creator_organizer": [ - 3 + 5 ], "id": [ - 4921 + 4993 ], "media": [ - 1312 + 1429 ], "media_access": [ - 557 + 674 ], "name": [ - 78 + 80 ], "organizer": [ - 3798 + 3915 ], "organizer_steam_id": [ - 180 + 252 ], "organizers": [ - 1395 + 1512 ], "player_stats": [ - 4940 + 5012 ], "players": [ - 1436 + 1553 ], "starts_at": [ - 4376 + 4493 ], "teams": [ - 1477 + 1594 ], "tournaments": [ - 1501 + 1618 ], "visibility": [ - 577 + 694 ], "__typename": [ - 78 + 80 ] }, "events_max_fields": { "banner_media_id": [ - 4921 + 4993 ], "created_at": [ - 4376 + 4493 ], "description": [ - 78 + 80 ], "ends_at": [ - 4376 + 4493 ], "id": [ - 4921 + 4993 ], "name": [ - 78 + 80 ], "organizer_steam_id": [ - 180 + 252 ], "starts_at": [ - 4376 + 4493 ], "__typename": [ - 78 + 80 ] }, "events_min_fields": { "banner_media_id": [ - 4921 + 4993 ], "created_at": [ - 4376 + 4493 ], "description": [ - 78 + 80 ], "ends_at": [ - 4376 + 4493 ], "id": [ - 4921 + 4993 ], "name": [ - 78 + 80 ], "organizer_steam_id": [ - 180 + 252 ], "starts_at": [ - 4376 + 4493 ], "__typename": [ - 78 + 80 ] }, "events_mutation_response": { "affected_rows": [ - 38 + 40 ], "returning": [ - 1519 + 1636 ], "__typename": [ - 78 + 80 ] }, "events_obj_rel_insert_input": { "data": [ - 1526 + 1643 ], "on_conflict": [ - 1531 + 1648 ], "__typename": [ - 78 + 80 ] }, "events_on_conflict": { "constraint": [ - 1524 + 1641 ], "update_columns": [ - 1542 + 1659 ], "where": [ - 1523 + 1640 ], "__typename": [ - 78 + 80 ] }, "events_order_by": { "banner": [ - 1326 + 1443 ], "banner_media_id": [ - 2829 + 2946 ], "can_upload_media": [ - 2829 + 2946 ], "can_view": [ - 2829 + 2946 ], "created_at": [ - 2829 + 2946 ], "description": [ - 2829 + 2946 ], "ends_at": [ - 2829 + 2946 ], "hide_creator_organizer": [ - 2829 + 2946 ], "id": [ - 2829 + 2946 ], "is_organizer": [ - 2829 + 2946 ], "media_access": [ - 2829 + 2946 ], "media_aggregate": [ - 1311 + 1428 ], "name": [ - 2829 + 2946 ], "organizer": [ - 3800 + 3917 ], "organizer_steam_id": [ - 2829 + 2946 ], "organizers_aggregate": [ - 1394 + 1511 ], "player_stats_aggregate": [ - 4939 + 5011 ], "players_aggregate": [ - 1435 + 1552 ], "starts_at": [ - 2829 + 2946 ], "teams_aggregate": [ - 1476 + 1593 ], "tournaments_aggregate": [ - 1500 + 1617 ], "visibility": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "events_pk_columns_input": { "id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "events_select_column": {}, "events_set_input": { "banner_media_id": [ - 4921 + 4993 ], "created_at": [ - 4376 + 4493 ], "description": [ - 78 + 80 ], "ends_at": [ - 4376 + 4493 ], "hide_creator_organizer": [ - 3 + 5 ], "id": [ - 4921 + 4993 ], "media_access": [ - 557 + 674 ], "name": [ - 78 + 80 ], "organizer_steam_id": [ - 180 + 252 ], "starts_at": [ - 4376 + 4493 ], "visibility": [ - 577 + 694 ], "__typename": [ - 78 + 80 ] }, "events_stddev_fields": { "organizer_steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "events_stddev_pop_fields": { "organizer_steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "events_stddev_samp_fields": { "organizer_steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "events_stream_cursor_input": { "initial_value": [ - 1540 + 1657 ], "ordering": [ - 236 + 308 ], "__typename": [ - 78 + 80 ] }, "events_stream_cursor_value_input": { "banner_media_id": [ - 4921 + 4993 ], "created_at": [ - 4376 + 4493 ], "description": [ - 78 + 80 ], "ends_at": [ - 4376 + 4493 ], "hide_creator_organizer": [ - 3 + 5 ], "id": [ - 4921 + 4993 ], "media_access": [ - 557 + 674 ], "name": [ - 78 + 80 ], "organizer_steam_id": [ - 180 + 252 ], "starts_at": [ - 4376 + 4493 ], "visibility": [ - 577 + 694 ], "__typename": [ - 78 + 80 ] }, "events_sum_fields": { "organizer_steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "events_update_column": {}, "events_updates": { "_inc": [ - 1525 + 1642 ], "_set": [ - 1535 + 1652 ], "where": [ - 1523 + 1640 ], "__typename": [ - 78 + 80 ] }, "events_var_pop_fields": { "organizer_steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "events_var_samp_fields": { "organizer_steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "events_variance_fields": { "organizer_steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "float8": {}, "float8_comparison_exp": { "_eq": [ - 1547 + 1664 ], "_gt": [ - 1547 + 1664 ], "_gte": [ - 1547 + 1664 ], "_in": [ - 1547 + 1664 ], "_is_null": [ - 3 + 5 ], "_lt": [ - 1547 + 1664 ], "_lte": [ - 1547 + 1664 ], "_neq": [ - 1547 + 1664 ], "_nin": [ - 1547 + 1664 ], "__typename": [ - 78 + 80 ] }, "friends": { "e_status": [ - 592 + 709 ], "other_player_steam_id": [ - 180 + 252 ], "player_steam_id": [ - 180 + 252 ], "status": [ - 597 + 714 ], "__typename": [ - 78 + 80 ] }, "friends_aggregate": { "aggregate": [ - 1551 + 1668 ], "nodes": [ - 1549 + 1666 ], "__typename": [ - 78 + 80 ] }, "friends_aggregate_fields": { "avg": [ - 1552 + 1669 ], "count": [ - 38, + 40, { "columns": [ - 1563, + 1680, "[friends_select_column!]" ], "distinct": [ - 3 + 5 ] } ], "max": [ - 1557 + 1674 ], "min": [ - 1558 + 1675 ], "stddev": [ - 1565 + 1682 ], "stddev_pop": [ - 1566 + 1683 ], "stddev_samp": [ - 1567 + 1684 ], "sum": [ - 1570 + 1687 ], "var_pop": [ - 1573 + 1690 ], "var_samp": [ - 1574 + 1691 ], "variance": [ - 1575 + 1692 ], "__typename": [ - 78 + 80 ] }, "friends_avg_fields": { "other_player_steam_id": [ - 29 + 31 ], "player_steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "friends_bool_exp": { "_and": [ - 1553 + 1670 ], "_not": [ - 1553 + 1670 ], "_or": [ - 1553 + 1670 ], "e_status": [ - 595 + 712 ], "other_player_steam_id": [ - 182 + 254 ], "player_steam_id": [ - 182 + 254 ], "status": [ - 598 + 715 ], "__typename": [ - 78 + 80 ] }, "friends_constraint": {}, "friends_inc_input": { "other_player_steam_id": [ - 180 + 252 ], "player_steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "friends_insert_input": { "e_status": [ - 603 + 720 ], "other_player_steam_id": [ - 180 + 252 ], "player_steam_id": [ - 180 + 252 ], "status": [ - 597 + 714 ], "__typename": [ - 78 + 80 ] }, "friends_max_fields": { "other_player_steam_id": [ - 180 + 252 ], "player_steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "friends_min_fields": { "other_player_steam_id": [ - 180 + 252 ], "player_steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "friends_mutation_response": { "affected_rows": [ - 38 + 40 ], "returning": [ - 1549 + 1666 ], "__typename": [ - 78 + 80 ] }, "friends_on_conflict": { "constraint": [ - 1554 + 1671 ], "update_columns": [ - 1571 + 1688 ], "where": [ - 1553 + 1670 ], "__typename": [ - 78 + 80 ] }, "friends_order_by": { "e_status": [ - 605 + 722 ], "other_player_steam_id": [ - 2829 + 2946 ], "player_steam_id": [ - 2829 + 2946 ], "status": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "friends_pk_columns_input": { "other_player_steam_id": [ - 180 + 252 ], "player_steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "friends_select_column": {}, "friends_set_input": { "other_player_steam_id": [ - 180 + 252 ], "player_steam_id": [ - 180 + 252 ], "status": [ - 597 + 714 ], "__typename": [ - 78 + 80 ] }, "friends_stddev_fields": { "other_player_steam_id": [ - 29 + 31 ], "player_steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "friends_stddev_pop_fields": { "other_player_steam_id": [ - 29 + 31 ], "player_steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "friends_stddev_samp_fields": { "other_player_steam_id": [ - 29 + 31 ], "player_steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "friends_stream_cursor_input": { "initial_value": [ - 1569 + 1686 ], "ordering": [ - 236 + 308 ], "__typename": [ - 78 + 80 ] }, "friends_stream_cursor_value_input": { "other_player_steam_id": [ - 180 + 252 ], "player_steam_id": [ - 180 + 252 ], "status": [ - 597 + 714 ], "__typename": [ - 78 + 80 ] }, "friends_sum_fields": { "other_player_steam_id": [ - 180 + 252 ], "player_steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "friends_update_column": {}, "friends_updates": { "_inc": [ - 1555 + 1672 ], "_set": [ - 1564 + 1681 ], "where": [ - 1553 + 1670 ], "__typename": [ - 78 + 80 ] }, "friends_var_pop_fields": { "other_player_steam_id": [ - 29 + 31 ], "player_steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "friends_var_samp_fields": { "other_player_steam_id": [ - 29 + 31 ], "player_steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "friends_variance_fields": { "other_player_steam_id": [ - 29 + 31 ], "player_steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "game_server_nodes": { "available_server_count": [ - 38 + 40 ], "build_id": [ - 38 + 40 ], "cpu_cores_per_socket": [ - 38 + 40 ], "cpu_frequency_info": [ - 1700, + 1817, { "path": [ - 78 + 80 ] } ], "cpu_governor_info": [ - 1700, + 1817, { "path": [ - 78 + 80 ] } ], "cpu_sockets": [ - 38 + 40 ], "cpu_threads_per_core": [ - 38 + 40 ], "cpu_warnings": [ - 1700, + 1817, { "path": [ - 78 + 80 ] } ], "cs2_launch_options": [ - 1700, + 1817, { "path": [ - 78 + 80 ] } ], "cs2_video_settings": [ - 1700, + 1817, { "path": [ - 78 + 80 ] } ], "csgo_build_id": [ - 38 + 40 ], "demo_network_limiter": [ - 38 + 40 ], "disk_available_gb": [ - 38 + 40 ], "disk_used_percent": [ - 38 + 40 ], "e_region": [ - 3874 + 3991 ], "e_status": [ - 633 + 750 ], "enabled": [ - 3 + 5 ], "enabled_for_match_making": [ - 3 + 5 ], "end_port_range": [ - 38 + 40 ], "gpu": [ - 3 + 5 ], "gpu_demos_enabled": [ - 3 + 5 ], "gpu_info": [ - 1700, + 1817, { "path": [ - 78 + 80 ] } ], "gpu_rendering_enabled": [ - 3 + 5 ], "gpu_streaming_enabled": [ - 3 + 5 ], "id": [ - 78 + 80 ], "label": [ - 78 + 80 ], "lan_ip": [ - 1696 + 1813 ], "node_ip": [ - 1696 + 1813 ], "offline_at": [ - 4376 + 4493 ], "pin_build_id": [ - 38 + 40 ], "pin_plugin_runtime": [ - 78 + 80 ], "pin_plugin_version": [ - 78 + 80 ], "pinned_version": [ - 1627 + 1744 ], "plugin_supported": [ - 3 + 5 ], "public_ip": [ - 1696 + 1813 ], "region": [ - 78 + 80 ], "servers": [ - 3901, + 4018, { "distinct_on": [ - 3925, + 4042, "[servers_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 3923, + 4040, "[servers_order_by!]" ], "where": [ - 3912 + 4029 ] } ], "servers_aggregate": [ - 3902, + 4019, { "distinct_on": [ - 3925, + 4042, "[servers_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 3923, + 4040, "[servers_order_by!]" ], "where": [ - 3912 + 4029 ] } ], "shader_bake_progress": [ - 2827 + 2944 ], "shader_bake_progress_stage": [ - 78 + 80 ], "shader_bake_status": [ - 78 + 80 ], "shader_bake_status_history": [ - 1700, + 1817, { "path": [ - 78 + 80 ] } ], "start_port_range": [ - 38 + 40 ], "status": [ - 638 + 755 ], "supports_cpu_pinning": [ - 3 + 5 ], "supports_low_latency": [ - 3 + 5 ], "token": [ - 78 + 80 ], "total_server_count": [ - 38 + 40 ], "update_status": [ - 78 + 80 ], "version": [ - 1627 + 1744 ], "__typename": [ - 78 + 80 ] }, "game_server_nodes_aggregate": { "aggregate": [ - 1582 + 1699 ], "nodes": [ - 1576 + 1693 ], "__typename": [ - 78 + 80 ] }, "game_server_nodes_aggregate_bool_exp": { "bool_and": [ - 1579 + 1696 ], "bool_or": [ - 1580 + 1697 ], "count": [ - 1581 + 1698 ], "__typename": [ - 78 + 80 ] }, "game_server_nodes_aggregate_bool_exp_bool_and": { "arguments": [ - 1606 + 1723 ], "distinct": [ - 3 + 5 ], "filter": [ - 1588 + 1705 ], "predicate": [ - 4 + 6 ], "__typename": [ - 78 + 80 ] }, "game_server_nodes_aggregate_bool_exp_bool_or": { "arguments": [ - 1607 + 1724 ], "distinct": [ - 3 + 5 ], "filter": [ - 1588 + 1705 ], "predicate": [ - 4 + 6 ], "__typename": [ - 78 + 80 ] }, "game_server_nodes_aggregate_bool_exp_count": { "arguments": [ - 1605 + 1722 ], "distinct": [ - 3 + 5 ], "filter": [ - 1588 + 1705 ], "predicate": [ - 39 + 41 ], "__typename": [ - 78 + 80 ] }, "game_server_nodes_aggregate_fields": { "avg": [ - 1586 + 1703 ], "count": [ - 38, + 40, { "columns": [ - 1605, + 1722, "[game_server_nodes_select_column!]" ], "distinct": [ - 3 + 5 ] } ], "max": [ - 1595 + 1712 ], "min": [ - 1597 + 1714 ], "stddev": [ - 1609 + 1726 ], "stddev_pop": [ - 1611 + 1728 ], "stddev_samp": [ - 1613 + 1730 ], "sum": [ - 1617 + 1734 ], "var_pop": [ - 1621 + 1738 ], "var_samp": [ - 1623 + 1740 ], "variance": [ - 1625 + 1742 ], "__typename": [ - 78 + 80 ] }, "game_server_nodes_aggregate_order_by": { "avg": [ - 1587 + 1704 ], "count": [ - 2829 + 2946 ], "max": [ - 1596 + 1713 ], "min": [ - 1598 + 1715 ], "stddev": [ - 1610 + 1727 ], "stddev_pop": [ - 1612 + 1729 ], "stddev_samp": [ - 1614 + 1731 ], "sum": [ - 1618 + 1735 ], "var_pop": [ - 1622 + 1739 ], "var_samp": [ - 1624 + 1741 ], "variance": [ - 1626 + 1743 ], "__typename": [ - 78 + 80 ] }, "game_server_nodes_append_input": { "cpu_frequency_info": [ - 1700 + 1817 ], "cpu_governor_info": [ - 1700 + 1817 ], "cpu_warnings": [ - 1700 + 1817 ], "cs2_launch_options": [ - 1700 + 1817 ], "cs2_video_settings": [ - 1700 + 1817 ], "gpu_info": [ - 1700 + 1817 ], "shader_bake_status_history": [ - 1700 + 1817 ], "__typename": [ - 78 + 80 ] }, "game_server_nodes_arr_rel_insert_input": { "data": [ - 1594 + 1711 ], "on_conflict": [ - 1601 + 1718 ], "__typename": [ - 78 + 80 ] }, "game_server_nodes_avg_fields": { "available_server_count": [ - 38 + 40 ], "build_id": [ - 29 + 31 ], "cpu_cores_per_socket": [ - 29 + 31 ], "cpu_sockets": [ - 29 + 31 ], "cpu_threads_per_core": [ - 29 + 31 ], "csgo_build_id": [ - 29 + 31 ], "demo_network_limiter": [ - 29 + 31 ], "disk_available_gb": [ - 29 + 31 ], "disk_used_percent": [ - 29 + 31 ], "end_port_range": [ - 29 + 31 ], "pin_build_id": [ - 29 + 31 ], "shader_bake_progress": [ - 29 + 31 ], "start_port_range": [ - 29 + 31 ], "total_server_count": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "game_server_nodes_avg_order_by": { "build_id": [ - 2829 + 2946 ], "cpu_cores_per_socket": [ - 2829 + 2946 ], "cpu_sockets": [ - 2829 + 2946 ], "cpu_threads_per_core": [ - 2829 + 2946 ], "csgo_build_id": [ - 2829 + 2946 ], "demo_network_limiter": [ - 2829 + 2946 ], "disk_available_gb": [ - 2829 + 2946 ], "disk_used_percent": [ - 2829 + 2946 ], "end_port_range": [ - 2829 + 2946 ], "pin_build_id": [ - 2829 + 2946 ], "shader_bake_progress": [ - 2829 + 2946 ], "start_port_range": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "game_server_nodes_bool_exp": { "_and": [ - 1588 + 1705 ], "_not": [ - 1588 + 1705 ], "_or": [ - 1588 + 1705 ], "available_server_count": [ - 39 + 41 ], "build_id": [ - 39 + 41 ], "cpu_cores_per_socket": [ - 39 + 41 ], "cpu_frequency_info": [ - 1702 + 1819 ], "cpu_governor_info": [ - 1702 + 1819 ], "cpu_sockets": [ - 39 + 41 ], "cpu_threads_per_core": [ - 39 + 41 ], "cpu_warnings": [ - 1702 + 1819 ], "cs2_launch_options": [ - 1702 + 1819 ], "cs2_video_settings": [ - 1702 + 1819 ], "csgo_build_id": [ - 39 + 41 ], "demo_network_limiter": [ - 39 + 41 ], "disk_available_gb": [ - 39 + 41 ], "disk_used_percent": [ - 39 + 41 ], "e_region": [ - 3878 + 3995 ], "e_status": [ - 636 + 753 ], "enabled": [ - 4 + 6 ], "enabled_for_match_making": [ - 4 + 6 ], "end_port_range": [ - 39 + 41 ], "gpu": [ - 4 + 6 ], "gpu_demos_enabled": [ - 4 + 6 ], "gpu_info": [ - 1702 + 1819 ], "gpu_rendering_enabled": [ - 4 + 6 ], "gpu_streaming_enabled": [ - 4 + 6 ], "id": [ - 80 + 82 ], "label": [ - 80 + 82 ], "lan_ip": [ - 1697 + 1814 ], "node_ip": [ - 1697 + 1814 ], "offline_at": [ - 4377 + 4494 ], "pin_build_id": [ - 39 + 41 ], "pin_plugin_runtime": [ - 80 + 82 ], "pin_plugin_version": [ - 80 + 82 ], "pinned_version": [ - 1632 + 1749 ], "plugin_supported": [ - 4 + 6 ], "public_ip": [ - 1697 + 1814 ], "region": [ - 80 + 82 ], "servers": [ - 3912 + 4029 ], "servers_aggregate": [ - 3903 + 4020 ], "shader_bake_progress": [ - 2828 + 2945 ], "shader_bake_progress_stage": [ - 80 + 82 ], "shader_bake_status": [ - 80 + 82 ], "shader_bake_status_history": [ - 1702 + 1819 ], "start_port_range": [ - 39 + 41 ], "status": [ - 639 + 756 ], "supports_cpu_pinning": [ - 4 + 6 ], "supports_low_latency": [ - 4 + 6 ], "token": [ - 80 + 82 ], "total_server_count": [ - 39 + 41 ], "update_status": [ - 80 + 82 ], "version": [ - 1632 + 1749 ], "__typename": [ - 78 + 80 ] }, "game_server_nodes_constraint": {}, "game_server_nodes_delete_at_path_input": { "cpu_frequency_info": [ - 78 + 80 ], "cpu_governor_info": [ - 78 + 80 ], "cpu_warnings": [ - 78 + 80 ], "cs2_launch_options": [ - 78 + 80 ], "cs2_video_settings": [ - 78 + 80 ], "gpu_info": [ - 78 + 80 ], "shader_bake_status_history": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "game_server_nodes_delete_elem_input": { "cpu_frequency_info": [ - 38 + 40 ], "cpu_governor_info": [ - 38 + 40 ], "cpu_warnings": [ - 38 + 40 ], "cs2_launch_options": [ - 38 + 40 ], "cs2_video_settings": [ - 38 + 40 ], "gpu_info": [ - 38 + 40 ], "shader_bake_status_history": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "game_server_nodes_delete_key_input": { "cpu_frequency_info": [ - 78 + 80 ], "cpu_governor_info": [ - 78 + 80 ], "cpu_warnings": [ - 78 + 80 ], "cs2_launch_options": [ - 78 + 80 ], "cs2_video_settings": [ - 78 + 80 ], "gpu_info": [ - 78 + 80 ], "shader_bake_status_history": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "game_server_nodes_inc_input": { "build_id": [ - 38 + 40 ], "cpu_cores_per_socket": [ - 38 + 40 ], "cpu_sockets": [ - 38 + 40 ], "cpu_threads_per_core": [ - 38 + 40 ], "csgo_build_id": [ - 38 + 40 ], "demo_network_limiter": [ - 38 + 40 ], "disk_available_gb": [ - 38 + 40 ], "disk_used_percent": [ - 38 + 40 ], "end_port_range": [ - 38 + 40 ], "pin_build_id": [ - 38 + 40 ], "shader_bake_progress": [ - 2827 + 2944 ], "start_port_range": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "game_server_nodes_insert_input": { "build_id": [ - 38 + 40 ], "cpu_cores_per_socket": [ - 38 + 40 ], "cpu_frequency_info": [ - 1700 + 1817 ], "cpu_governor_info": [ - 1700 + 1817 ], "cpu_sockets": [ - 38 + 40 ], "cpu_threads_per_core": [ - 38 + 40 ], "cpu_warnings": [ - 1700 + 1817 ], "cs2_launch_options": [ - 1700 + 1817 ], "cs2_video_settings": [ - 1700 + 1817 ], "csgo_build_id": [ - 38 + 40 ], "demo_network_limiter": [ - 38 + 40 ], "disk_available_gb": [ - 38 + 40 ], "disk_used_percent": [ - 38 + 40 ], "e_region": [ - 3884 + 4001 ], "e_status": [ - 644 + 761 ], "enabled": [ - 3 + 5 ], "enabled_for_match_making": [ - 3 + 5 ], "end_port_range": [ - 38 + 40 ], "gpu": [ - 3 + 5 ], "gpu_demos_enabled": [ - 3 + 5 ], "gpu_info": [ - 1700 + 1817 ], "gpu_rendering_enabled": [ - 3 + 5 ], "gpu_streaming_enabled": [ - 3 + 5 ], "id": [ - 78 + 80 ], "label": [ - 78 + 80 ], "lan_ip": [ - 1696 + 1813 ], "node_ip": [ - 1696 + 1813 ], "offline_at": [ - 4376 + 4493 ], "pin_build_id": [ - 38 + 40 ], "pin_plugin_runtime": [ - 78 + 80 ], "pin_plugin_version": [ - 78 + 80 ], "pinned_version": [ - 1642 + 1759 ], "public_ip": [ - 1696 + 1813 ], "region": [ - 78 + 80 ], "servers": [ - 3909 + 4026 ], "shader_bake_progress": [ - 2827 + 2944 ], "shader_bake_progress_stage": [ - 78 + 80 ], "shader_bake_status": [ - 78 + 80 ], "shader_bake_status_history": [ - 1700 + 1817 ], "start_port_range": [ - 38 + 40 ], "status": [ - 638 + 755 ], "supports_cpu_pinning": [ - 3 + 5 ], "supports_low_latency": [ - 3 + 5 ], "token": [ - 78 + 80 ], "update_status": [ - 78 + 80 ], "version": [ - 1642 + 1759 ], "__typename": [ - 78 + 80 ] }, "game_server_nodes_max_fields": { "available_server_count": [ - 38 + 40 ], "build_id": [ - 38 + 40 ], "cpu_cores_per_socket": [ - 38 + 40 ], "cpu_sockets": [ - 38 + 40 ], "cpu_threads_per_core": [ - 38 + 40 ], "csgo_build_id": [ - 38 + 40 ], "demo_network_limiter": [ - 38 + 40 ], "disk_available_gb": [ - 38 + 40 ], "disk_used_percent": [ - 38 + 40 ], "end_port_range": [ - 38 + 40 ], "id": [ - 78 + 80 ], "label": [ - 78 + 80 ], "offline_at": [ - 4376 + 4493 ], "pin_build_id": [ - 38 + 40 ], "pin_plugin_runtime": [ - 78 + 80 ], "pin_plugin_version": [ - 78 + 80 ], "region": [ - 78 + 80 ], "shader_bake_progress": [ - 2827 + 2944 ], "shader_bake_progress_stage": [ - 78 + 80 ], "shader_bake_status": [ - 78 + 80 ], "start_port_range": [ - 38 + 40 ], "token": [ - 78 + 80 ], "total_server_count": [ - 38 + 40 ], "update_status": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "game_server_nodes_max_order_by": { "build_id": [ - 2829 + 2946 ], "cpu_cores_per_socket": [ - 2829 + 2946 ], "cpu_sockets": [ - 2829 + 2946 ], "cpu_threads_per_core": [ - 2829 + 2946 ], "csgo_build_id": [ - 2829 + 2946 ], "demo_network_limiter": [ - 2829 + 2946 ], "disk_available_gb": [ - 2829 + 2946 ], "disk_used_percent": [ - 2829 + 2946 ], "end_port_range": [ - 2829 + 2946 ], "id": [ - 2829 + 2946 ], "label": [ - 2829 + 2946 ], "offline_at": [ - 2829 + 2946 ], "pin_build_id": [ - 2829 + 2946 ], "pin_plugin_runtime": [ - 2829 + 2946 ], "pin_plugin_version": [ - 2829 + 2946 ], "region": [ - 2829 + 2946 ], "shader_bake_progress": [ - 2829 + 2946 ], "shader_bake_progress_stage": [ - 2829 + 2946 ], "shader_bake_status": [ - 2829 + 2946 ], "start_port_range": [ - 2829 + 2946 ], "token": [ - 2829 + 2946 ], "update_status": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "game_server_nodes_min_fields": { "available_server_count": [ - 38 + 40 ], "build_id": [ - 38 + 40 ], "cpu_cores_per_socket": [ - 38 + 40 ], "cpu_sockets": [ - 38 + 40 ], "cpu_threads_per_core": [ - 38 + 40 ], "csgo_build_id": [ - 38 + 40 ], "demo_network_limiter": [ - 38 + 40 ], "disk_available_gb": [ - 38 + 40 ], "disk_used_percent": [ - 38 + 40 ], "end_port_range": [ - 38 + 40 ], "id": [ - 78 + 80 ], "label": [ - 78 + 80 ], "offline_at": [ - 4376 + 4493 ], "pin_build_id": [ - 38 + 40 ], "pin_plugin_runtime": [ - 78 + 80 ], "pin_plugin_version": [ - 78 + 80 ], "region": [ - 78 + 80 ], "shader_bake_progress": [ - 2827 + 2944 ], "shader_bake_progress_stage": [ - 78 + 80 ], "shader_bake_status": [ - 78 + 80 ], "start_port_range": [ - 38 + 40 ], "token": [ - 78 + 80 ], "total_server_count": [ - 38 + 40 ], "update_status": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "game_server_nodes_min_order_by": { "build_id": [ - 2829 + 2946 ], "cpu_cores_per_socket": [ - 2829 + 2946 ], "cpu_sockets": [ - 2829 + 2946 ], "cpu_threads_per_core": [ - 2829 + 2946 ], "csgo_build_id": [ - 2829 + 2946 ], "demo_network_limiter": [ - 2829 + 2946 ], "disk_available_gb": [ - 2829 + 2946 ], "disk_used_percent": [ - 2829 + 2946 ], "end_port_range": [ - 2829 + 2946 ], "id": [ - 2829 + 2946 ], "label": [ - 2829 + 2946 ], "offline_at": [ - 2829 + 2946 ], "pin_build_id": [ - 2829 + 2946 ], "pin_plugin_runtime": [ - 2829 + 2946 ], "pin_plugin_version": [ - 2829 + 2946 ], "region": [ - 2829 + 2946 ], "shader_bake_progress": [ - 2829 + 2946 ], "shader_bake_progress_stage": [ - 2829 + 2946 ], "shader_bake_status": [ - 2829 + 2946 ], "start_port_range": [ - 2829 + 2946 ], "token": [ - 2829 + 2946 ], "update_status": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "game_server_nodes_mutation_response": { "affected_rows": [ - 38 + 40 ], "returning": [ - 1576 + 1693 ], "__typename": [ - 78 + 80 ] }, "game_server_nodes_obj_rel_insert_input": { "data": [ - 1594 + 1711 ], "on_conflict": [ - 1601 + 1718 ], "__typename": [ - 78 + 80 ] }, "game_server_nodes_on_conflict": { "constraint": [ - 1589 + 1706 ], "update_columns": [ - 1619 + 1736 ], "where": [ - 1588 + 1705 ], "__typename": [ - 78 + 80 ] }, "game_server_nodes_order_by": { "available_server_count": [ - 2829 + 2946 ], "build_id": [ - 2829 + 2946 ], "cpu_cores_per_socket": [ - 2829 + 2946 ], "cpu_frequency_info": [ - 2829 + 2946 ], "cpu_governor_info": [ - 2829 + 2946 ], "cpu_sockets": [ - 2829 + 2946 ], "cpu_threads_per_core": [ - 2829 + 2946 ], "cpu_warnings": [ - 2829 + 2946 ], "cs2_launch_options": [ - 2829 + 2946 ], "cs2_video_settings": [ - 2829 + 2946 ], "csgo_build_id": [ - 2829 + 2946 ], "demo_network_limiter": [ - 2829 + 2946 ], "disk_available_gb": [ - 2829 + 2946 ], "disk_used_percent": [ - 2829 + 2946 ], "e_region": [ - 3886 + 4003 ], "e_status": [ - 646 + 763 ], "enabled": [ - 2829 + 2946 ], "enabled_for_match_making": [ - 2829 + 2946 ], "end_port_range": [ - 2829 + 2946 ], "gpu": [ - 2829 + 2946 ], "gpu_demos_enabled": [ - 2829 + 2946 ], "gpu_info": [ - 2829 + 2946 ], "gpu_rendering_enabled": [ - 2829 + 2946 ], "gpu_streaming_enabled": [ - 2829 + 2946 ], "id": [ - 2829 + 2946 ], "label": [ - 2829 + 2946 ], "lan_ip": [ - 2829 + 2946 ], "node_ip": [ - 2829 + 2946 ], "offline_at": [ - 2829 + 2946 ], "pin_build_id": [ - 2829 + 2946 ], "pin_plugin_runtime": [ - 2829 + 2946 ], "pin_plugin_version": [ - 2829 + 2946 ], "pinned_version": [ - 1644 + 1761 ], "plugin_supported": [ - 2829 + 2946 ], "public_ip": [ - 2829 + 2946 ], "region": [ - 2829 + 2946 ], "servers_aggregate": [ - 3908 + 4025 ], "shader_bake_progress": [ - 2829 + 2946 ], "shader_bake_progress_stage": [ - 2829 + 2946 ], "shader_bake_status": [ - 2829 + 2946 ], "shader_bake_status_history": [ - 2829 + 2946 ], "start_port_range": [ - 2829 + 2946 ], "status": [ - 2829 + 2946 ], "supports_cpu_pinning": [ - 2829 + 2946 ], "supports_low_latency": [ - 2829 + 2946 ], "token": [ - 2829 + 2946 ], "total_server_count": [ - 2829 + 2946 ], "update_status": [ - 2829 + 2946 ], "version": [ - 1644 + 1761 ], "__typename": [ - 78 + 80 ] }, "game_server_nodes_pk_columns_input": { "id": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "game_server_nodes_prepend_input": { "cpu_frequency_info": [ - 1700 + 1817 ], "cpu_governor_info": [ - 1700 + 1817 ], "cpu_warnings": [ - 1700 + 1817 ], "cs2_launch_options": [ - 1700 + 1817 ], "cs2_video_settings": [ - 1700 + 1817 ], "gpu_info": [ - 1700 + 1817 ], "shader_bake_status_history": [ - 1700 + 1817 ], "__typename": [ - 78 + 80 ] }, "game_server_nodes_select_column": {}, @@ -24805,10756 +27032,10756 @@ export default { "game_server_nodes_select_column_game_server_nodes_aggregate_bool_exp_bool_or_arguments_columns": {}, "game_server_nodes_set_input": { "build_id": [ - 38 + 40 ], "cpu_cores_per_socket": [ - 38 + 40 ], "cpu_frequency_info": [ - 1700 + 1817 ], "cpu_governor_info": [ - 1700 + 1817 ], "cpu_sockets": [ - 38 + 40 ], "cpu_threads_per_core": [ - 38 + 40 ], "cpu_warnings": [ - 1700 + 1817 ], "cs2_launch_options": [ - 1700 + 1817 ], "cs2_video_settings": [ - 1700 + 1817 ], "csgo_build_id": [ - 38 + 40 ], "demo_network_limiter": [ - 38 + 40 ], "disk_available_gb": [ - 38 + 40 ], "disk_used_percent": [ - 38 + 40 ], "enabled": [ - 3 + 5 ], "enabled_for_match_making": [ - 3 + 5 ], "end_port_range": [ - 38 + 40 ], "gpu": [ - 3 + 5 ], "gpu_demos_enabled": [ - 3 + 5 ], "gpu_info": [ - 1700 + 1817 ], "gpu_rendering_enabled": [ - 3 + 5 ], "gpu_streaming_enabled": [ - 3 + 5 ], "id": [ - 78 + 80 ], "label": [ - 78 + 80 ], "lan_ip": [ - 1696 + 1813 ], "node_ip": [ - 1696 + 1813 ], "offline_at": [ - 4376 + 4493 ], "pin_build_id": [ - 38 + 40 ], "pin_plugin_runtime": [ - 78 + 80 ], "pin_plugin_version": [ - 78 + 80 ], "public_ip": [ - 1696 + 1813 ], "region": [ - 78 + 80 ], "shader_bake_progress": [ - 2827 + 2944 ], "shader_bake_progress_stage": [ - 78 + 80 ], "shader_bake_status": [ - 78 + 80 ], "shader_bake_status_history": [ - 1700 + 1817 ], "start_port_range": [ - 38 + 40 ], "status": [ - 638 + 755 ], "supports_cpu_pinning": [ - 3 + 5 ], "supports_low_latency": [ - 3 + 5 ], "token": [ - 78 + 80 ], "update_status": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "game_server_nodes_stddev_fields": { "available_server_count": [ - 38 + 40 ], "build_id": [ - 29 + 31 ], "cpu_cores_per_socket": [ - 29 + 31 ], "cpu_sockets": [ - 29 + 31 ], "cpu_threads_per_core": [ - 29 + 31 ], "csgo_build_id": [ - 29 + 31 ], "demo_network_limiter": [ - 29 + 31 ], "disk_available_gb": [ - 29 + 31 ], "disk_used_percent": [ - 29 + 31 ], "end_port_range": [ - 29 + 31 ], "pin_build_id": [ - 29 + 31 ], "shader_bake_progress": [ - 29 + 31 ], "start_port_range": [ - 29 + 31 ], "total_server_count": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "game_server_nodes_stddev_order_by": { "build_id": [ - 2829 + 2946 ], "cpu_cores_per_socket": [ - 2829 + 2946 ], "cpu_sockets": [ - 2829 + 2946 ], "cpu_threads_per_core": [ - 2829 + 2946 ], "csgo_build_id": [ - 2829 + 2946 ], "demo_network_limiter": [ - 2829 + 2946 ], "disk_available_gb": [ - 2829 + 2946 ], "disk_used_percent": [ - 2829 + 2946 ], "end_port_range": [ - 2829 + 2946 ], "pin_build_id": [ - 2829 + 2946 ], "shader_bake_progress": [ - 2829 + 2946 ], "start_port_range": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "game_server_nodes_stddev_pop_fields": { "available_server_count": [ - 38 + 40 ], "build_id": [ - 29 + 31 ], "cpu_cores_per_socket": [ - 29 + 31 ], "cpu_sockets": [ - 29 + 31 ], "cpu_threads_per_core": [ - 29 + 31 ], "csgo_build_id": [ - 29 + 31 ], "demo_network_limiter": [ - 29 + 31 ], "disk_available_gb": [ - 29 + 31 ], "disk_used_percent": [ - 29 + 31 ], "end_port_range": [ - 29 + 31 ], "pin_build_id": [ - 29 + 31 ], "shader_bake_progress": [ - 29 + 31 ], "start_port_range": [ - 29 + 31 ], "total_server_count": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "game_server_nodes_stddev_pop_order_by": { "build_id": [ - 2829 + 2946 ], "cpu_cores_per_socket": [ - 2829 + 2946 ], "cpu_sockets": [ - 2829 + 2946 ], "cpu_threads_per_core": [ - 2829 + 2946 ], "csgo_build_id": [ - 2829 + 2946 ], "demo_network_limiter": [ - 2829 + 2946 ], "disk_available_gb": [ - 2829 + 2946 ], "disk_used_percent": [ - 2829 + 2946 ], "end_port_range": [ - 2829 + 2946 ], "pin_build_id": [ - 2829 + 2946 ], "shader_bake_progress": [ - 2829 + 2946 ], "start_port_range": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "game_server_nodes_stddev_samp_fields": { "available_server_count": [ - 38 + 40 ], "build_id": [ - 29 + 31 ], "cpu_cores_per_socket": [ - 29 + 31 ], "cpu_sockets": [ - 29 + 31 ], "cpu_threads_per_core": [ - 29 + 31 ], "csgo_build_id": [ - 29 + 31 ], "demo_network_limiter": [ - 29 + 31 ], "disk_available_gb": [ - 29 + 31 ], "disk_used_percent": [ - 29 + 31 ], "end_port_range": [ - 29 + 31 ], "pin_build_id": [ - 29 + 31 ], "shader_bake_progress": [ - 29 + 31 ], "start_port_range": [ - 29 + 31 ], "total_server_count": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "game_server_nodes_stddev_samp_order_by": { "build_id": [ - 2829 + 2946 ], "cpu_cores_per_socket": [ - 2829 + 2946 ], "cpu_sockets": [ - 2829 + 2946 ], "cpu_threads_per_core": [ - 2829 + 2946 ], "csgo_build_id": [ - 2829 + 2946 ], "demo_network_limiter": [ - 2829 + 2946 ], "disk_available_gb": [ - 2829 + 2946 ], "disk_used_percent": [ - 2829 + 2946 ], "end_port_range": [ - 2829 + 2946 ], "pin_build_id": [ - 2829 + 2946 ], "shader_bake_progress": [ - 2829 + 2946 ], "start_port_range": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "game_server_nodes_stream_cursor_input": { "initial_value": [ - 1616 + 1733 ], "ordering": [ - 236 + 308 ], "__typename": [ - 78 + 80 ] }, "game_server_nodes_stream_cursor_value_input": { "build_id": [ - 38 + 40 ], "cpu_cores_per_socket": [ - 38 + 40 ], "cpu_frequency_info": [ - 1700 + 1817 ], "cpu_governor_info": [ - 1700 + 1817 ], "cpu_sockets": [ - 38 + 40 ], "cpu_threads_per_core": [ - 38 + 40 ], "cpu_warnings": [ - 1700 + 1817 ], "cs2_launch_options": [ - 1700 + 1817 ], "cs2_video_settings": [ - 1700 + 1817 ], "csgo_build_id": [ - 38 + 40 ], "demo_network_limiter": [ - 38 + 40 ], "disk_available_gb": [ - 38 + 40 ], "disk_used_percent": [ - 38 + 40 ], "enabled": [ - 3 + 5 ], "enabled_for_match_making": [ - 3 + 5 ], "end_port_range": [ - 38 + 40 ], "gpu": [ - 3 + 5 ], "gpu_demos_enabled": [ - 3 + 5 ], "gpu_info": [ - 1700 + 1817 ], "gpu_rendering_enabled": [ - 3 + 5 ], "gpu_streaming_enabled": [ - 3 + 5 ], "id": [ - 78 + 80 ], "label": [ - 78 + 80 ], "lan_ip": [ - 1696 + 1813 ], "node_ip": [ - 1696 + 1813 ], "offline_at": [ - 4376 + 4493 ], "pin_build_id": [ - 38 + 40 ], "pin_plugin_runtime": [ - 78 + 80 ], "pin_plugin_version": [ - 78 + 80 ], "public_ip": [ - 1696 + 1813 ], "region": [ - 78 + 80 ], "shader_bake_progress": [ - 2827 + 2944 ], "shader_bake_progress_stage": [ - 78 + 80 ], "shader_bake_status": [ - 78 + 80 ], "shader_bake_status_history": [ - 1700 + 1817 ], "start_port_range": [ - 38 + 40 ], "status": [ - 638 + 755 ], "supports_cpu_pinning": [ - 3 + 5 ], "supports_low_latency": [ - 3 + 5 ], "token": [ - 78 + 80 ], "update_status": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "game_server_nodes_sum_fields": { "available_server_count": [ - 38 + 40 ], "build_id": [ - 38 + 40 ], "cpu_cores_per_socket": [ - 38 + 40 ], "cpu_sockets": [ - 38 + 40 ], "cpu_threads_per_core": [ - 38 + 40 ], "csgo_build_id": [ - 38 + 40 ], "demo_network_limiter": [ - 38 + 40 ], "disk_available_gb": [ - 38 + 40 ], "disk_used_percent": [ - 38 + 40 ], "end_port_range": [ - 38 + 40 ], "pin_build_id": [ - 38 + 40 ], "shader_bake_progress": [ - 2827 + 2944 ], "start_port_range": [ - 38 + 40 ], "total_server_count": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "game_server_nodes_sum_order_by": { "build_id": [ - 2829 + 2946 ], "cpu_cores_per_socket": [ - 2829 + 2946 ], "cpu_sockets": [ - 2829 + 2946 ], "cpu_threads_per_core": [ - 2829 + 2946 ], "csgo_build_id": [ - 2829 + 2946 ], "demo_network_limiter": [ - 2829 + 2946 ], "disk_available_gb": [ - 2829 + 2946 ], "disk_used_percent": [ - 2829 + 2946 ], "end_port_range": [ - 2829 + 2946 ], "pin_build_id": [ - 2829 + 2946 ], "shader_bake_progress": [ - 2829 + 2946 ], "start_port_range": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "game_server_nodes_update_column": {}, "game_server_nodes_updates": { "_append": [ - 1584 + 1701 ], "_delete_at_path": [ - 1590 + 1707 ], "_delete_elem": [ - 1591 + 1708 ], "_delete_key": [ - 1592 + 1709 ], "_inc": [ - 1593 + 1710 ], "_prepend": [ - 1604 + 1721 ], "_set": [ - 1608 + 1725 ], "where": [ - 1588 + 1705 ], "__typename": [ - 78 + 80 ] }, "game_server_nodes_var_pop_fields": { "available_server_count": [ - 38 + 40 ], "build_id": [ - 29 + 31 ], "cpu_cores_per_socket": [ - 29 + 31 ], "cpu_sockets": [ - 29 + 31 ], "cpu_threads_per_core": [ - 29 + 31 ], "csgo_build_id": [ - 29 + 31 ], "demo_network_limiter": [ - 29 + 31 ], "disk_available_gb": [ - 29 + 31 ], "disk_used_percent": [ - 29 + 31 ], "end_port_range": [ - 29 + 31 ], "pin_build_id": [ - 29 + 31 ], "shader_bake_progress": [ - 29 + 31 ], "start_port_range": [ - 29 + 31 ], "total_server_count": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "game_server_nodes_var_pop_order_by": { "build_id": [ - 2829 + 2946 ], "cpu_cores_per_socket": [ - 2829 + 2946 ], "cpu_sockets": [ - 2829 + 2946 ], "cpu_threads_per_core": [ - 2829 + 2946 ], "csgo_build_id": [ - 2829 + 2946 ], "demo_network_limiter": [ - 2829 + 2946 ], "disk_available_gb": [ - 2829 + 2946 ], "disk_used_percent": [ - 2829 + 2946 ], "end_port_range": [ - 2829 + 2946 ], "pin_build_id": [ - 2829 + 2946 ], "shader_bake_progress": [ - 2829 + 2946 ], "start_port_range": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "game_server_nodes_var_samp_fields": { "available_server_count": [ - 38 + 40 ], "build_id": [ - 29 + 31 ], "cpu_cores_per_socket": [ - 29 + 31 ], "cpu_sockets": [ - 29 + 31 ], "cpu_threads_per_core": [ - 29 + 31 ], "csgo_build_id": [ - 29 + 31 ], "demo_network_limiter": [ - 29 + 31 ], "disk_available_gb": [ - 29 + 31 ], "disk_used_percent": [ - 29 + 31 ], "end_port_range": [ - 29 + 31 ], "pin_build_id": [ - 29 + 31 ], "shader_bake_progress": [ - 29 + 31 ], "start_port_range": [ - 29 + 31 ], "total_server_count": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "game_server_nodes_var_samp_order_by": { "build_id": [ - 2829 + 2946 ], "cpu_cores_per_socket": [ - 2829 + 2946 ], "cpu_sockets": [ - 2829 + 2946 ], "cpu_threads_per_core": [ - 2829 + 2946 ], "csgo_build_id": [ - 2829 + 2946 ], "demo_network_limiter": [ - 2829 + 2946 ], "disk_available_gb": [ - 2829 + 2946 ], "disk_used_percent": [ - 2829 + 2946 ], "end_port_range": [ - 2829 + 2946 ], "pin_build_id": [ - 2829 + 2946 ], "shader_bake_progress": [ - 2829 + 2946 ], "start_port_range": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "game_server_nodes_variance_fields": { "available_server_count": [ - 38 + 40 ], "build_id": [ - 29 + 31 ], "cpu_cores_per_socket": [ - 29 + 31 ], "cpu_sockets": [ - 29 + 31 ], "cpu_threads_per_core": [ - 29 + 31 ], "csgo_build_id": [ - 29 + 31 ], "demo_network_limiter": [ - 29 + 31 ], "disk_available_gb": [ - 29 + 31 ], "disk_used_percent": [ - 29 + 31 ], "end_port_range": [ - 29 + 31 ], "pin_build_id": [ - 29 + 31 ], "shader_bake_progress": [ - 29 + 31 ], "start_port_range": [ - 29 + 31 ], "total_server_count": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "game_server_nodes_variance_order_by": { "build_id": [ - 2829 + 2946 ], "cpu_cores_per_socket": [ - 2829 + 2946 ], "cpu_sockets": [ - 2829 + 2946 ], "cpu_threads_per_core": [ - 2829 + 2946 ], "csgo_build_id": [ - 2829 + 2946 ], "demo_network_limiter": [ - 2829 + 2946 ], "disk_available_gb": [ - 2829 + 2946 ], "disk_used_percent": [ - 2829 + 2946 ], "end_port_range": [ - 2829 + 2946 ], "pin_build_id": [ - 2829 + 2946 ], "shader_bake_progress": [ - 2829 + 2946 ], "start_port_range": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "game_versions": { "build_id": [ - 38 + 40 ], "current": [ - 3 + 5 ], "cvars": [ - 3 + 5 ], "description": [ - 78 + 80 ], "downloads": [ - 1700, + 1817, { "path": [ - 78 + 80 ] } ], "updated_at": [ - 4376 + 4493 ], "version": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "game_versions_aggregate": { "aggregate": [ - 1629 + 1746 ], "nodes": [ - 1627 + 1744 ], "__typename": [ - 78 + 80 ] }, "game_versions_aggregate_fields": { "avg": [ - 1631 + 1748 ], "count": [ - 38, + 40, { "columns": [ - 1647, + 1764, "[game_versions_select_column!]" ], "distinct": [ - 3 + 5 ] } ], "max": [ - 1639 + 1756 ], "min": [ - 1640 + 1757 ], "stddev": [ - 1649 + 1766 ], "stddev_pop": [ - 1650 + 1767 ], "stddev_samp": [ - 1651 + 1768 ], "sum": [ - 1654 + 1771 ], "var_pop": [ - 1657 + 1774 ], "var_samp": [ - 1658 + 1775 ], "variance": [ - 1659 + 1776 ], "__typename": [ - 78 + 80 ] }, "game_versions_append_input": { "downloads": [ - 1700 + 1817 ], "__typename": [ - 78 + 80 ] }, "game_versions_avg_fields": { "build_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "game_versions_bool_exp": { "_and": [ - 1632 + 1749 ], "_not": [ - 1632 + 1749 ], "_or": [ - 1632 + 1749 ], "build_id": [ - 39 + 41 ], "current": [ - 4 + 6 ], "cvars": [ - 4 + 6 ], "description": [ - 80 + 82 ], "downloads": [ - 1702 + 1819 ], "updated_at": [ - 4377 + 4494 ], "version": [ - 80 + 82 ], "__typename": [ - 78 + 80 ] }, "game_versions_constraint": {}, "game_versions_delete_at_path_input": { "downloads": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "game_versions_delete_elem_input": { "downloads": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "game_versions_delete_key_input": { "downloads": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "game_versions_inc_input": { "build_id": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "game_versions_insert_input": { "build_id": [ - 38 + 40 ], "current": [ - 3 + 5 ], "cvars": [ - 3 + 5 ], "description": [ - 78 + 80 ], "downloads": [ - 1700 + 1817 ], "updated_at": [ - 4376 + 4493 ], "version": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "game_versions_max_fields": { "build_id": [ - 38 + 40 ], "description": [ - 78 + 80 ], "updated_at": [ - 4376 + 4493 ], "version": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "game_versions_min_fields": { "build_id": [ - 38 + 40 ], "description": [ - 78 + 80 ], "updated_at": [ - 4376 + 4493 ], "version": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "game_versions_mutation_response": { "affected_rows": [ - 38 + 40 ], "returning": [ - 1627 + 1744 ], "__typename": [ - 78 + 80 ] }, "game_versions_obj_rel_insert_input": { "data": [ - 1638 + 1755 ], "on_conflict": [ - 1643 + 1760 ], "__typename": [ - 78 + 80 ] }, "game_versions_on_conflict": { "constraint": [ - 1633 + 1750 ], "update_columns": [ - 1655 + 1772 ], "where": [ - 1632 + 1749 ], "__typename": [ - 78 + 80 ] }, "game_versions_order_by": { "build_id": [ - 2829 + 2946 ], "current": [ - 2829 + 2946 ], "cvars": [ - 2829 + 2946 ], "description": [ - 2829 + 2946 ], "downloads": [ - 2829 + 2946 ], "updated_at": [ - 2829 + 2946 ], "version": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "game_versions_pk_columns_input": { "build_id": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "game_versions_prepend_input": { "downloads": [ - 1700 + 1817 ], "__typename": [ - 78 + 80 ] }, "game_versions_select_column": {}, "game_versions_set_input": { "build_id": [ - 38 + 40 ], "current": [ - 3 + 5 ], "cvars": [ - 3 + 5 ], "description": [ - 78 + 80 ], "downloads": [ - 1700 + 1817 ], "updated_at": [ - 4376 + 4493 ], "version": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "game_versions_stddev_fields": { "build_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "game_versions_stddev_pop_fields": { "build_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "game_versions_stddev_samp_fields": { "build_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "game_versions_stream_cursor_input": { "initial_value": [ - 1653 + 1770 ], "ordering": [ - 236 + 308 ], "__typename": [ - 78 + 80 ] }, "game_versions_stream_cursor_value_input": { "build_id": [ - 38 + 40 ], "current": [ - 3 + 5 ], "cvars": [ - 3 + 5 ], "description": [ - 78 + 80 ], "downloads": [ - 1700 + 1817 ], "updated_at": [ - 4376 + 4493 ], "version": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "game_versions_sum_fields": { "build_id": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "game_versions_update_column": {}, "game_versions_updates": { "_append": [ - 1630 + 1747 ], "_delete_at_path": [ - 1634 + 1751 ], "_delete_elem": [ - 1635 + 1752 ], "_delete_key": [ - 1636 + 1753 ], "_inc": [ - 1637 + 1754 ], "_prepend": [ - 1646 + 1763 ], "_set": [ - 1648 + 1765 ], "where": [ - 1632 + 1749 ], "__typename": [ - 78 + 80 ] }, "game_versions_var_pop_fields": { "build_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "game_versions_var_samp_fields": { "build_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "game_versions_variance_fields": { "build_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "gamedata_signature_validations": { "branch": [ - 78 + 80 ], "build_id": [ - 38 + 40 ], "game_version": [ - 1627 + 1744 ], "id": [ - 4921 + 4993 ], "results": [ - 1700, + 1817, { "path": [ - 78 + 80 ] } ], "status": [ - 78 + 80 ], "validated_at": [ - 4376 + 4493 ], "__typename": [ - 78 + 80 ] }, "gamedata_signature_validations_aggregate": { "aggregate": [ - 1662 + 1779 ], "nodes": [ - 1660 + 1777 ], "__typename": [ - 78 + 80 ] }, "gamedata_signature_validations_aggregate_fields": { "avg": [ - 1664 + 1781 ], "count": [ - 38, + 40, { "columns": [ - 1679, + 1796, "[gamedata_signature_validations_select_column!]" ], "distinct": [ - 3 + 5 ] } ], "max": [ - 1672 + 1789 ], "min": [ - 1673 + 1790 ], "stddev": [ - 1681 + 1798 ], "stddev_pop": [ - 1682 + 1799 ], "stddev_samp": [ - 1683 + 1800 ], "sum": [ - 1686 + 1803 ], "var_pop": [ - 1689 + 1806 ], "var_samp": [ - 1690 + 1807 ], "variance": [ - 1691 + 1808 ], "__typename": [ - 78 + 80 ] }, "gamedata_signature_validations_append_input": { "results": [ - 1700 + 1817 ], "__typename": [ - 78 + 80 ] }, "gamedata_signature_validations_avg_fields": { "build_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "gamedata_signature_validations_bool_exp": { "_and": [ - 1665 + 1782 ], "_not": [ - 1665 + 1782 ], "_or": [ - 1665 + 1782 ], "branch": [ - 80 + 82 ], "build_id": [ - 39 + 41 ], "game_version": [ - 1632 + 1749 ], "id": [ - 4923 + 4995 ], "results": [ - 1702 + 1819 ], "status": [ - 80 + 82 ], "validated_at": [ - 4377 + 4494 ], "__typename": [ - 78 + 80 ] }, "gamedata_signature_validations_constraint": {}, "gamedata_signature_validations_delete_at_path_input": { "results": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "gamedata_signature_validations_delete_elem_input": { "results": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "gamedata_signature_validations_delete_key_input": { "results": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "gamedata_signature_validations_inc_input": { "build_id": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "gamedata_signature_validations_insert_input": { "branch": [ - 78 + 80 ], "build_id": [ - 38 + 40 ], "game_version": [ - 1642 + 1759 ], "id": [ - 4921 + 4993 ], "results": [ - 1700 + 1817 ], "status": [ - 78 + 80 ], "validated_at": [ - 4376 + 4493 ], "__typename": [ - 78 + 80 ] }, "gamedata_signature_validations_max_fields": { "branch": [ - 78 + 80 ], "build_id": [ - 38 + 40 ], "id": [ - 4921 + 4993 ], "status": [ - 78 + 80 ], "validated_at": [ - 4376 + 4493 ], "__typename": [ - 78 + 80 ] }, "gamedata_signature_validations_min_fields": { "branch": [ - 78 + 80 ], "build_id": [ - 38 + 40 ], "id": [ - 4921 + 4993 ], "status": [ - 78 + 80 ], "validated_at": [ - 4376 + 4493 ], "__typename": [ - 78 + 80 ] }, "gamedata_signature_validations_mutation_response": { "affected_rows": [ - 38 + 40 ], "returning": [ - 1660 + 1777 ], "__typename": [ - 78 + 80 ] }, "gamedata_signature_validations_on_conflict": { "constraint": [ - 1666 + 1783 ], "update_columns": [ - 1687 + 1804 ], "where": [ - 1665 + 1782 ], "__typename": [ - 78 + 80 ] }, "gamedata_signature_validations_order_by": { "branch": [ - 2829 + 2946 ], "build_id": [ - 2829 + 2946 ], "game_version": [ - 1644 + 1761 ], "id": [ - 2829 + 2946 ], "results": [ - 2829 + 2946 ], "status": [ - 2829 + 2946 ], "validated_at": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "gamedata_signature_validations_pk_columns_input": { "id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "gamedata_signature_validations_prepend_input": { "results": [ - 1700 + 1817 ], "__typename": [ - 78 + 80 ] }, "gamedata_signature_validations_select_column": {}, "gamedata_signature_validations_set_input": { "branch": [ - 78 + 80 ], "build_id": [ - 38 + 40 ], "id": [ - 4921 + 4993 ], "results": [ - 1700 + 1817 ], "status": [ - 78 + 80 ], "validated_at": [ - 4376 + 4493 ], "__typename": [ - 78 + 80 ] }, "gamedata_signature_validations_stddev_fields": { "build_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "gamedata_signature_validations_stddev_pop_fields": { "build_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "gamedata_signature_validations_stddev_samp_fields": { "build_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "gamedata_signature_validations_stream_cursor_input": { "initial_value": [ - 1685 + 1802 ], "ordering": [ - 236 + 308 ], "__typename": [ - 78 + 80 ] }, "gamedata_signature_validations_stream_cursor_value_input": { "branch": [ - 78 + 80 ], "build_id": [ - 38 + 40 ], "id": [ - 4921 + 4993 ], "results": [ - 1700 + 1817 ], "status": [ - 78 + 80 ], "validated_at": [ - 4376 + 4493 ], "__typename": [ - 78 + 80 ] }, "gamedata_signature_validations_sum_fields": { "build_id": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "gamedata_signature_validations_update_column": {}, "gamedata_signature_validations_updates": { "_append": [ - 1663 + 1780 ], "_delete_at_path": [ - 1667 + 1784 ], "_delete_elem": [ - 1668 + 1785 ], "_delete_key": [ - 1669 + 1786 ], "_inc": [ - 1670 + 1787 ], "_prepend": [ - 1678 + 1795 ], "_set": [ - 1680 + 1797 ], "where": [ - 1665 + 1782 ], "__typename": [ - 78 + 80 ] }, "gamedata_signature_validations_var_pop_fields": { "build_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "gamedata_signature_validations_var_samp_fields": { "build_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "gamedata_signature_validations_variance_fields": { "build_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "get_event_leaderboard_args": { "_category": [ - 78 + 80 ], "_event_id": [ - 4921 + 4993 ], "_match_type": [ - 78 + 80 ], "_min_rounds": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "get_leaderboard_args": { "_category": [ - 78 + 80 ], "_exclude_tournaments": [ - 3 + 5 ], "_match_type": [ - 78 + 80 ], "_role": [ - 78 + 80 ], "_season_id": [ - 4921 + 4993 ], "_window_days": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "get_league_season_leaderboard_args": { "_category": [ - 78 + 80 ], "_league_season_id": [ - 4921 + 4993 ], "_role": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "get_player_leaderboard_rank_args": { "_category": [ - 78 + 80 ], "_exclude_tournaments": [ - 3 + 5 ], "_match_type": [ - 78 + 80 ], "_player_steam_id": [ - 78 + 80 ], "_season_id": [ - 4921 + 4993 ], "_window_days": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "inet": {}, "inet_comparison_exp": { "_eq": [ - 1696 + 1813 ], "_gt": [ - 1696 + 1813 ], "_gte": [ - 1696 + 1813 ], "_in": [ - 1696 + 1813 ], "_is_null": [ - 3 + 5 ], "_lt": [ - 1696 + 1813 ], "_lte": [ - 1696 + 1813 ], "_neq": [ - 1696 + 1813 ], "_nin": [ - 1696 + 1813 ], "__typename": [ - 78 + 80 ] }, "json": {}, "json_comparison_exp": { "_eq": [ - 1698 + 1815 ], "_gt": [ - 1698 + 1815 ], "_gte": [ - 1698 + 1815 ], "_in": [ - 1698 + 1815 ], "_is_null": [ - 3 + 5 ], "_lt": [ - 1698 + 1815 ], "_lte": [ - 1698 + 1815 ], "_neq": [ - 1698 + 1815 ], "_nin": [ - 1698 + 1815 ], "__typename": [ - 78 + 80 ] }, "jsonb": {}, "jsonb_cast_exp": { "String": [ - 80 + 82 ], "__typename": [ - 78 + 80 ] }, "jsonb_comparison_exp": { "_cast": [ - 1701 + 1818 ], "_contained_in": [ - 1700 + 1817 ], "_contains": [ - 1700 + 1817 ], "_eq": [ - 1700 + 1817 ], "_gt": [ - 1700 + 1817 ], "_gte": [ - 1700 + 1817 ], "_has_key": [ - 78 + 80 ], "_has_keys_all": [ - 78 + 80 ], "_has_keys_any": [ - 78 + 80 ], "_in": [ - 1700 + 1817 ], "_is_null": [ - 3 + 5 ], "_lt": [ - 1700 + 1817 ], "_lte": [ - 1700 + 1817 ], "_neq": [ - 1700 + 1817 ], "_nin": [ - 1700 + 1817 ], "__typename": [ - 78 + 80 ] }, "leaderboard_entries": { "matches_played": [ - 38 + 40 ], "player_avatar_url": [ - 78 + 80 ], "player_country": [ - 78 + 80 ], "player_name": [ - 78 + 80 ], "player_steam_id": [ - 78 + 80 ], "secondary_value": [ - 1547 + 1664 ], "tertiary_value": [ - 1547 + 1664 ], "value": [ - 1547 + 1664 ], "__typename": [ - 78 + 80 ] }, "leaderboard_entries_aggregate": { "aggregate": [ - 1705 + 1822 ], "nodes": [ - 1703 + 1820 ], "__typename": [ - 78 + 80 ] }, "leaderboard_entries_aggregate_fields": { "avg": [ - 1706 + 1823 ], "count": [ - 38, + 40, { "columns": [ - 1714, + 1831, "[leaderboard_entries_select_column!]" ], "distinct": [ - 3 + 5 ] } ], "max": [ - 1710 + 1827 ], "min": [ - 1711 + 1828 ], "stddev": [ - 1716 + 1833 ], "stddev_pop": [ - 1717 + 1834 ], "stddev_samp": [ - 1718 + 1835 ], "sum": [ - 1721 + 1838 ], "var_pop": [ - 1723 + 1840 ], "var_samp": [ - 1724 + 1841 ], "variance": [ - 1725 + 1842 ], "__typename": [ - 78 + 80 ] }, "leaderboard_entries_avg_fields": { "matches_played": [ - 29 + 31 ], "secondary_value": [ - 29 + 31 ], "tertiary_value": [ - 29 + 31 ], "value": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "leaderboard_entries_bool_exp": { "_and": [ - 1707 + 1824 ], "_not": [ - 1707 + 1824 ], "_or": [ - 1707 + 1824 ], "matches_played": [ - 39 + 41 ], "player_avatar_url": [ - 80 + 82 ], "player_country": [ - 80 + 82 ], "player_name": [ - 80 + 82 ], "player_steam_id": [ - 80 + 82 ], "secondary_value": [ - 1548 + 1665 ], "tertiary_value": [ - 1548 + 1665 ], "value": [ - 1548 + 1665 ], "__typename": [ - 78 + 80 ] }, "leaderboard_entries_inc_input": { "matches_played": [ - 38 + 40 ], "secondary_value": [ - 1547 + 1664 ], "tertiary_value": [ - 1547 + 1664 ], "value": [ - 1547 + 1664 ], "__typename": [ - 78 + 80 ] }, "leaderboard_entries_insert_input": { "matches_played": [ - 38 + 40 ], "player_avatar_url": [ - 78 + 80 ], "player_country": [ - 78 + 80 ], "player_name": [ - 78 + 80 ], "player_steam_id": [ - 78 + 80 ], "secondary_value": [ - 1547 + 1664 ], "tertiary_value": [ - 1547 + 1664 ], "value": [ - 1547 + 1664 ], "__typename": [ - 78 + 80 ] }, "leaderboard_entries_max_fields": { "matches_played": [ - 38 + 40 ], "player_avatar_url": [ - 78 + 80 ], "player_country": [ - 78 + 80 ], "player_name": [ - 78 + 80 ], "player_steam_id": [ - 78 + 80 ], "secondary_value": [ - 1547 + 1664 ], "tertiary_value": [ - 1547 + 1664 ], "value": [ - 1547 + 1664 ], "__typename": [ - 78 + 80 ] }, "leaderboard_entries_min_fields": { "matches_played": [ - 38 + 40 ], "player_avatar_url": [ - 78 + 80 ], "player_country": [ - 78 + 80 ], "player_name": [ - 78 + 80 ], "player_steam_id": [ - 78 + 80 ], "secondary_value": [ - 1547 + 1664 ], "tertiary_value": [ - 1547 + 1664 ], "value": [ - 1547 + 1664 ], "__typename": [ - 78 + 80 ] }, "leaderboard_entries_mutation_response": { "affected_rows": [ - 38 + 40 ], "returning": [ - 1703 + 1820 ], "__typename": [ - 78 + 80 ] }, "leaderboard_entries_order_by": { "matches_played": [ - 2829 + 2946 ], "player_avatar_url": [ - 2829 + 2946 ], "player_country": [ - 2829 + 2946 ], "player_name": [ - 2829 + 2946 ], "player_steam_id": [ - 2829 + 2946 ], "secondary_value": [ - 2829 + 2946 ], "tertiary_value": [ - 2829 + 2946 ], "value": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "leaderboard_entries_select_column": {}, "leaderboard_entries_set_input": { "matches_played": [ - 38 + 40 ], "player_avatar_url": [ - 78 + 80 ], "player_country": [ - 78 + 80 ], "player_name": [ - 78 + 80 ], "player_steam_id": [ - 78 + 80 ], "secondary_value": [ - 1547 + 1664 ], "tertiary_value": [ - 1547 + 1664 ], "value": [ - 1547 + 1664 ], "__typename": [ - 78 + 80 ] }, "leaderboard_entries_stddev_fields": { "matches_played": [ - 29 + 31 ], "secondary_value": [ - 29 + 31 ], "tertiary_value": [ - 29 + 31 ], "value": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "leaderboard_entries_stddev_pop_fields": { "matches_played": [ - 29 + 31 ], "secondary_value": [ - 29 + 31 ], "tertiary_value": [ - 29 + 31 ], "value": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "leaderboard_entries_stddev_samp_fields": { "matches_played": [ - 29 + 31 ], "secondary_value": [ - 29 + 31 ], "tertiary_value": [ - 29 + 31 ], "value": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "leaderboard_entries_stream_cursor_input": { "initial_value": [ - 1720 + 1837 ], "ordering": [ - 236 + 308 ], "__typename": [ - 78 + 80 ] }, "leaderboard_entries_stream_cursor_value_input": { "matches_played": [ - 38 + 40 ], "player_avatar_url": [ - 78 + 80 ], "player_country": [ - 78 + 80 ], "player_name": [ - 78 + 80 ], "player_steam_id": [ - 78 + 80 ], "secondary_value": [ - 1547 + 1664 ], "tertiary_value": [ - 1547 + 1664 ], "value": [ - 1547 + 1664 ], "__typename": [ - 78 + 80 ] }, "leaderboard_entries_sum_fields": { "matches_played": [ - 38 + 40 ], "secondary_value": [ - 1547 + 1664 ], "tertiary_value": [ - 1547 + 1664 ], "value": [ - 1547 + 1664 ], "__typename": [ - 78 + 80 ] }, "leaderboard_entries_updates": { "_inc": [ - 1708 + 1825 ], "_set": [ - 1715 + 1832 ], "where": [ - 1707 + 1824 ], "__typename": [ - 78 + 80 ] }, "leaderboard_entries_var_pop_fields": { "matches_played": [ - 29 + 31 ], "secondary_value": [ - 29 + 31 ], "tertiary_value": [ - 29 + 31 ], "value": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "leaderboard_entries_var_samp_fields": { "matches_played": [ - 29 + 31 ], "secondary_value": [ - 29 + 31 ], "tertiary_value": [ - 29 + 31 ], "value": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "leaderboard_entries_variance_fields": { "matches_played": [ - 29 + 31 ], "secondary_value": [ - 29 + 31 ], "tertiary_value": [ - 29 + 31 ], "value": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "league_award_forfeit_args": { "_tournament_bracket_id": [ - 4921 + 4993 ], "_winning_tournament_team_id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "league_divisions": { "created_at": [ - 4376 + 4493 ], "id": [ - 4921 + 4993 ], "name": [ - 78 + 80 ], "season_divisions": [ - 1878, + 1995, { "distinct_on": [ - 1897, + 2014, "[league_season_divisions_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 1895, + 2012, "[league_season_divisions_order_by!]" ], "where": [ - 1885 + 2002 ] } ], "season_divisions_aggregate": [ - 1879, + 1996, { "distinct_on": [ - 1897, + 2014, "[league_season_divisions_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 1895, + 2012, "[league_season_divisions_order_by!]" ], "where": [ - 1885 + 2002 ] } ], "tier": [ - 3965 + 4082 ], "__typename": [ - 78 + 80 ] }, "league_divisions_aggregate": { "aggregate": [ - 1729 + 1846 ], "nodes": [ - 1727 + 1844 ], "__typename": [ - 78 + 80 ] }, "league_divisions_aggregate_fields": { "avg": [ - 1730 + 1847 ], "count": [ - 38, + 40, { "columns": [ - 1742, + 1859, "[league_divisions_select_column!]" ], "distinct": [ - 3 + 5 ] } ], "max": [ - 1735 + 1852 ], "min": [ - 1736 + 1853 ], "stddev": [ - 1744 + 1861 ], "stddev_pop": [ - 1745 + 1862 ], "stddev_samp": [ - 1746 + 1863 ], "sum": [ - 1749 + 1866 ], "var_pop": [ - 1752 + 1869 ], "var_samp": [ - 1753 + 1870 ], "variance": [ - 1754 + 1871 ], "__typename": [ - 78 + 80 ] }, "league_divisions_avg_fields": { "tier": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "league_divisions_bool_exp": { "_and": [ - 1731 + 1848 ], "_not": [ - 1731 + 1848 ], "_or": [ - 1731 + 1848 ], "created_at": [ - 4377 + 4494 ], "id": [ - 4923 + 4995 ], "name": [ - 80 + 82 ], "season_divisions": [ - 1885 + 2002 ], "season_divisions_aggregate": [ - 1880 + 1997 ], "tier": [ - 3966 + 4083 ], "__typename": [ - 78 + 80 ] }, "league_divisions_constraint": {}, "league_divisions_inc_input": { "tier": [ - 3965 + 4082 ], "__typename": [ - 78 + 80 ] }, "league_divisions_insert_input": { "created_at": [ - 4376 + 4493 ], "id": [ - 4921 + 4993 ], "name": [ - 78 + 80 ], "season_divisions": [ - 1884 + 2001 ], "tier": [ - 3965 + 4082 ], "__typename": [ - 78 + 80 ] }, "league_divisions_max_fields": { "created_at": [ - 4376 + 4493 ], "id": [ - 4921 + 4993 ], "name": [ - 78 + 80 ], "tier": [ - 3965 + 4082 ], "__typename": [ - 78 + 80 ] }, "league_divisions_min_fields": { "created_at": [ - 4376 + 4493 ], "id": [ - 4921 + 4993 ], "name": [ - 78 + 80 ], "tier": [ - 3965 + 4082 ], "__typename": [ - 78 + 80 ] }, "league_divisions_mutation_response": { "affected_rows": [ - 38 + 40 ], "returning": [ - 1727 + 1844 ], "__typename": [ - 78 + 80 ] }, "league_divisions_obj_rel_insert_input": { "data": [ - 1734 + 1851 ], "on_conflict": [ - 1739 + 1856 ], "__typename": [ - 78 + 80 ] }, "league_divisions_on_conflict": { "constraint": [ - 1732 + 1849 ], "update_columns": [ - 1750 + 1867 ], "where": [ - 1731 + 1848 ], "__typename": [ - 78 + 80 ] }, "league_divisions_order_by": { "created_at": [ - 2829 + 2946 ], "id": [ - 2829 + 2946 ], "name": [ - 2829 + 2946 ], "season_divisions_aggregate": [ - 1883 + 2000 ], "tier": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "league_divisions_pk_columns_input": { "id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "league_divisions_select_column": {}, "league_divisions_set_input": { "created_at": [ - 4376 + 4493 ], "id": [ - 4921 + 4993 ], "name": [ - 78 + 80 ], "tier": [ - 3965 + 4082 ], "__typename": [ - 78 + 80 ] }, "league_divisions_stddev_fields": { "tier": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "league_divisions_stddev_pop_fields": { "tier": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "league_divisions_stddev_samp_fields": { "tier": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "league_divisions_stream_cursor_input": { "initial_value": [ - 1748 + 1865 ], "ordering": [ - 236 + 308 ], "__typename": [ - 78 + 80 ] }, "league_divisions_stream_cursor_value_input": { "created_at": [ - 4376 + 4493 ], "id": [ - 4921 + 4993 ], "name": [ - 78 + 80 ], "tier": [ - 3965 + 4082 ], "__typename": [ - 78 + 80 ] }, "league_divisions_sum_fields": { "tier": [ - 3965 + 4082 ], "__typename": [ - 78 + 80 ] }, "league_divisions_update_column": {}, "league_divisions_updates": { "_inc": [ - 1733 + 1850 ], "_set": [ - 1743 + 1860 ], "where": [ - 1731 + 1848 ], "__typename": [ - 78 + 80 ] }, "league_divisions_var_pop_fields": { "tier": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "league_divisions_var_samp_fields": { "tier": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "league_divisions_variance_fields": { "tier": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "league_match_weeks": { "closes_at": [ - 4376 + 4493 ], "created_at": [ - 4376 + 4493 ], "default_match_at": [ - 4376 + 4493 ], "id": [ - 4921 + 4993 ], "league_season_id": [ - 4921 + 4993 ], "opens_at": [ - 4376 + 4493 ], "season": [ - 1903 + 2020 ], "week_number": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "league_match_weeks_aggregate": { "aggregate": [ - 1759 + 1876 ], "nodes": [ - 1755 + 1872 ], "__typename": [ - 78 + 80 ] }, "league_match_weeks_aggregate_bool_exp": { "count": [ - 1758 + 1875 ], "__typename": [ - 78 + 80 ] }, "league_match_weeks_aggregate_bool_exp_count": { "arguments": [ - 1776 + 1893 ], "distinct": [ - 3 + 5 ], "filter": [ - 1764 + 1881 ], "predicate": [ - 39 + 41 ], "__typename": [ - 78 + 80 ] }, "league_match_weeks_aggregate_fields": { "avg": [ - 1762 + 1879 ], "count": [ - 38, + 40, { "columns": [ - 1776, + 1893, "[league_match_weeks_select_column!]" ], "distinct": [ - 3 + 5 ] } ], "max": [ - 1768 + 1885 ], "min": [ - 1770 + 1887 ], "stddev": [ - 1778 + 1895 ], "stddev_pop": [ - 1780 + 1897 ], "stddev_samp": [ - 1782 + 1899 ], "sum": [ - 1786 + 1903 ], "var_pop": [ - 1790 + 1907 ], "var_samp": [ - 1792 + 1909 ], "variance": [ - 1794 + 1911 ], "__typename": [ - 78 + 80 ] }, "league_match_weeks_aggregate_order_by": { "avg": [ - 1763 + 1880 ], "count": [ - 2829 + 2946 ], "max": [ - 1769 + 1886 ], "min": [ - 1771 + 1888 ], "stddev": [ - 1779 + 1896 ], "stddev_pop": [ - 1781 + 1898 ], "stddev_samp": [ - 1783 + 1900 ], "sum": [ - 1787 + 1904 ], "var_pop": [ - 1791 + 1908 ], "var_samp": [ - 1793 + 1910 ], "variance": [ - 1795 + 1912 ], "__typename": [ - 78 + 80 ] }, "league_match_weeks_arr_rel_insert_input": { "data": [ - 1767 + 1884 ], "on_conflict": [ - 1773 + 1890 ], "__typename": [ - 78 + 80 ] }, "league_match_weeks_avg_fields": { "week_number": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "league_match_weeks_avg_order_by": { "week_number": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "league_match_weeks_bool_exp": { "_and": [ - 1764 + 1881 ], "_not": [ - 1764 + 1881 ], "_or": [ - 1764 + 1881 ], "closes_at": [ - 4377 + 4494 ], "created_at": [ - 4377 + 4494 ], "default_match_at": [ - 4377 + 4494 ], "id": [ - 4923 + 4995 ], "league_season_id": [ - 4923 + 4995 ], "opens_at": [ - 4377 + 4494 ], "season": [ - 1908 + 2025 ], "week_number": [ - 39 + 41 ], "__typename": [ - 78 + 80 ] }, "league_match_weeks_constraint": {}, "league_match_weeks_inc_input": { "week_number": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "league_match_weeks_insert_input": { "closes_at": [ - 4376 + 4493 ], "created_at": [ - 4376 + 4493 ], "default_match_at": [ - 4376 + 4493 ], "id": [ - 4921 + 4993 ], "league_season_id": [ - 4921 + 4993 ], "opens_at": [ - 4376 + 4493 ], "season": [ - 1918 + 2035 ], "week_number": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "league_match_weeks_max_fields": { "closes_at": [ - 4376 + 4493 ], "created_at": [ - 4376 + 4493 ], "default_match_at": [ - 4376 + 4493 ], "id": [ - 4921 + 4993 ], "league_season_id": [ - 4921 + 4993 ], "opens_at": [ - 4376 + 4493 ], "week_number": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "league_match_weeks_max_order_by": { "closes_at": [ - 2829 + 2946 ], "created_at": [ - 2829 + 2946 ], "default_match_at": [ - 2829 + 2946 ], "id": [ - 2829 + 2946 ], "league_season_id": [ - 2829 + 2946 ], "opens_at": [ - 2829 + 2946 ], "week_number": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "league_match_weeks_min_fields": { "closes_at": [ - 4376 + 4493 ], "created_at": [ - 4376 + 4493 ], "default_match_at": [ - 4376 + 4493 ], "id": [ - 4921 + 4993 ], "league_season_id": [ - 4921 + 4993 ], "opens_at": [ - 4376 + 4493 ], "week_number": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "league_match_weeks_min_order_by": { "closes_at": [ - 2829 + 2946 ], "created_at": [ - 2829 + 2946 ], "default_match_at": [ - 2829 + 2946 ], "id": [ - 2829 + 2946 ], "league_season_id": [ - 2829 + 2946 ], "opens_at": [ - 2829 + 2946 ], "week_number": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "league_match_weeks_mutation_response": { "affected_rows": [ - 38 + 40 ], "returning": [ - 1755 + 1872 ], "__typename": [ - 78 + 80 ] }, "league_match_weeks_on_conflict": { "constraint": [ - 1765 + 1882 ], "update_columns": [ - 1788 + 1905 ], "where": [ - 1764 + 1881 ], "__typename": [ - 78 + 80 ] }, "league_match_weeks_order_by": { "closes_at": [ - 2829 + 2946 ], "created_at": [ - 2829 + 2946 ], "default_match_at": [ - 2829 + 2946 ], "id": [ - 2829 + 2946 ], "league_season_id": [ - 2829 + 2946 ], "opens_at": [ - 2829 + 2946 ], "season": [ - 1920 + 2037 ], "week_number": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "league_match_weeks_pk_columns_input": { "id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "league_match_weeks_select_column": {}, "league_match_weeks_set_input": { "closes_at": [ - 4376 + 4493 ], "created_at": [ - 4376 + 4493 ], "default_match_at": [ - 4376 + 4493 ], "id": [ - 4921 + 4993 ], "league_season_id": [ - 4921 + 4993 ], "opens_at": [ - 4376 + 4493 ], "week_number": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "league_match_weeks_stddev_fields": { "week_number": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "league_match_weeks_stddev_order_by": { "week_number": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "league_match_weeks_stddev_pop_fields": { "week_number": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "league_match_weeks_stddev_pop_order_by": { "week_number": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "league_match_weeks_stddev_samp_fields": { "week_number": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "league_match_weeks_stddev_samp_order_by": { "week_number": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "league_match_weeks_stream_cursor_input": { "initial_value": [ - 1785 + 1902 ], "ordering": [ - 236 + 308 ], "__typename": [ - 78 + 80 ] }, "league_match_weeks_stream_cursor_value_input": { "closes_at": [ - 4376 + 4493 ], "created_at": [ - 4376 + 4493 ], "default_match_at": [ - 4376 + 4493 ], "id": [ - 4921 + 4993 ], "league_season_id": [ - 4921 + 4993 ], "opens_at": [ - 4376 + 4493 ], "week_number": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "league_match_weeks_sum_fields": { "week_number": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "league_match_weeks_sum_order_by": { "week_number": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "league_match_weeks_update_column": {}, "league_match_weeks_updates": { "_inc": [ - 1766 + 1883 ], "_set": [ - 1777 + 1894 ], "where": [ - 1764 + 1881 ], "__typename": [ - 78 + 80 ] }, "league_match_weeks_var_pop_fields": { "week_number": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "league_match_weeks_var_pop_order_by": { "week_number": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "league_match_weeks_var_samp_fields": { "week_number": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "league_match_weeks_var_samp_order_by": { "week_number": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "league_match_weeks_variance_fields": { "week_number": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "league_match_weeks_variance_order_by": { "week_number": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "league_relegation_playoffs": { "created_at": [ - 4376 + 4493 ], "higher_division": [ - 1727 + 1844 ], "higher_division_id": [ - 4921 + 4993 ], "higher_slots": [ - 38 + 40 ], "id": [ - 4921 + 4993 ], "league_season_id": [ - 4921 + 4993 ], "lower_division": [ - 1727 + 1844 ], "lower_division_id": [ - 4921 + 4993 ], "resolved_at": [ - 4376 + 4493 ], "season": [ - 1903 + 2020 ], "tournament": [ - 4857 + 4929 ], "tournament_id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "league_relegation_playoffs_aggregate": { "aggregate": [ - 1800 + 1917 ], "nodes": [ - 1796 + 1913 ], "__typename": [ - 78 + 80 ] }, "league_relegation_playoffs_aggregate_bool_exp": { "count": [ - 1799 + 1916 ], "__typename": [ - 78 + 80 ] }, "league_relegation_playoffs_aggregate_bool_exp_count": { "arguments": [ - 1817 + 1934 ], "distinct": [ - 3 + 5 ], "filter": [ - 1805 + 1922 ], "predicate": [ - 39 + 41 ], "__typename": [ - 78 + 80 ] }, "league_relegation_playoffs_aggregate_fields": { "avg": [ - 1803 + 1920 ], "count": [ - 38, + 40, { "columns": [ - 1817, + 1934, "[league_relegation_playoffs_select_column!]" ], "distinct": [ - 3 + 5 ] } ], "max": [ - 1809 + 1926 ], "min": [ - 1811 + 1928 ], "stddev": [ - 1819 + 1936 ], "stddev_pop": [ - 1821 + 1938 ], "stddev_samp": [ - 1823 + 1940 ], "sum": [ - 1827 + 1944 ], "var_pop": [ - 1831 + 1948 ], "var_samp": [ - 1833 + 1950 ], "variance": [ - 1835 + 1952 ], "__typename": [ - 78 + 80 ] }, "league_relegation_playoffs_aggregate_order_by": { "avg": [ - 1804 + 1921 ], "count": [ - 2829 + 2946 ], "max": [ - 1810 + 1927 ], "min": [ - 1812 + 1929 ], "stddev": [ - 1820 + 1937 ], "stddev_pop": [ - 1822 + 1939 ], "stddev_samp": [ - 1824 + 1941 ], "sum": [ - 1828 + 1945 ], "var_pop": [ - 1832 + 1949 ], "var_samp": [ - 1834 + 1951 ], "variance": [ - 1836 + 1953 ], "__typename": [ - 78 + 80 ] }, "league_relegation_playoffs_arr_rel_insert_input": { "data": [ - 1808 + 1925 ], "on_conflict": [ - 1814 + 1931 ], "__typename": [ - 78 + 80 ] }, "league_relegation_playoffs_avg_fields": { "higher_slots": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "league_relegation_playoffs_avg_order_by": { "higher_slots": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "league_relegation_playoffs_bool_exp": { "_and": [ - 1805 + 1922 ], "_not": [ - 1805 + 1922 ], "_or": [ - 1805 + 1922 ], "created_at": [ - 4377 + 4494 ], "higher_division": [ - 1731 + 1848 ], "higher_division_id": [ - 4923 + 4995 ], "higher_slots": [ - 39 + 41 ], "id": [ - 4923 + 4995 ], "league_season_id": [ - 4923 + 4995 ], "lower_division": [ - 1731 + 1848 ], "lower_division_id": [ - 4923 + 4995 ], "resolved_at": [ - 4377 + 4494 ], "season": [ - 1908 + 2025 ], "tournament": [ - 4878 + 4950 ], "tournament_id": [ - 4923 + 4995 ], "__typename": [ - 78 + 80 ] }, "league_relegation_playoffs_constraint": {}, "league_relegation_playoffs_inc_input": { "higher_slots": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "league_relegation_playoffs_insert_input": { "created_at": [ - 4376 + 4493 ], "higher_division": [ - 1738 + 1855 ], "higher_division_id": [ - 4921 + 4993 ], "higher_slots": [ - 38 + 40 ], "id": [ - 4921 + 4993 ], "league_season_id": [ - 4921 + 4993 ], "lower_division": [ - 1738 + 1855 ], "lower_division_id": [ - 4921 + 4993 ], "resolved_at": [ - 4376 + 4493 ], "season": [ - 1918 + 2035 ], "tournament": [ - 4887 + 4959 ], "tournament_id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "league_relegation_playoffs_max_fields": { "created_at": [ - 4376 + 4493 ], "higher_division_id": [ - 4921 + 4993 ], "higher_slots": [ - 38 + 40 ], "id": [ - 4921 + 4993 ], "league_season_id": [ - 4921 + 4993 ], "lower_division_id": [ - 4921 + 4993 ], "resolved_at": [ - 4376 + 4493 ], "tournament_id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "league_relegation_playoffs_max_order_by": { "created_at": [ - 2829 + 2946 ], "higher_division_id": [ - 2829 + 2946 ], "higher_slots": [ - 2829 + 2946 ], "id": [ - 2829 + 2946 ], "league_season_id": [ - 2829 + 2946 ], "lower_division_id": [ - 2829 + 2946 ], "resolved_at": [ - 2829 + 2946 ], "tournament_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "league_relegation_playoffs_min_fields": { "created_at": [ - 4376 + 4493 ], "higher_division_id": [ - 4921 + 4993 ], "higher_slots": [ - 38 + 40 ], "id": [ - 4921 + 4993 ], "league_season_id": [ - 4921 + 4993 ], "lower_division_id": [ - 4921 + 4993 ], "resolved_at": [ - 4376 + 4493 ], "tournament_id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "league_relegation_playoffs_min_order_by": { "created_at": [ - 2829 + 2946 ], "higher_division_id": [ - 2829 + 2946 ], "higher_slots": [ - 2829 + 2946 ], "id": [ - 2829 + 2946 ], "league_season_id": [ - 2829 + 2946 ], "lower_division_id": [ - 2829 + 2946 ], "resolved_at": [ - 2829 + 2946 ], "tournament_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "league_relegation_playoffs_mutation_response": { "affected_rows": [ - 38 + 40 ], "returning": [ - 1796 + 1913 ], "__typename": [ - 78 + 80 ] }, "league_relegation_playoffs_on_conflict": { "constraint": [ - 1806 + 1923 ], "update_columns": [ - 1829 + 1946 ], "where": [ - 1805 + 1922 ], "__typename": [ - 78 + 80 ] }, "league_relegation_playoffs_order_by": { "created_at": [ - 2829 + 2946 ], "higher_division": [ - 1740 + 1857 ], "higher_division_id": [ - 2829 + 2946 ], "higher_slots": [ - 2829 + 2946 ], "id": [ - 2829 + 2946 ], "league_season_id": [ - 2829 + 2946 ], "lower_division": [ - 1740 + 1857 ], "lower_division_id": [ - 2829 + 2946 ], "resolved_at": [ - 2829 + 2946 ], "season": [ - 1920 + 2037 ], "tournament": [ - 4889 + 4961 ], "tournament_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "league_relegation_playoffs_pk_columns_input": { "id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "league_relegation_playoffs_select_column": {}, "league_relegation_playoffs_set_input": { "created_at": [ - 4376 + 4493 ], "higher_division_id": [ - 4921 + 4993 ], "higher_slots": [ - 38 + 40 ], "id": [ - 4921 + 4993 ], "league_season_id": [ - 4921 + 4993 ], "lower_division_id": [ - 4921 + 4993 ], "resolved_at": [ - 4376 + 4493 ], "tournament_id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "league_relegation_playoffs_stddev_fields": { "higher_slots": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "league_relegation_playoffs_stddev_order_by": { "higher_slots": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "league_relegation_playoffs_stddev_pop_fields": { "higher_slots": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "league_relegation_playoffs_stddev_pop_order_by": { "higher_slots": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "league_relegation_playoffs_stddev_samp_fields": { "higher_slots": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "league_relegation_playoffs_stddev_samp_order_by": { "higher_slots": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "league_relegation_playoffs_stream_cursor_input": { "initial_value": [ - 1826 + 1943 ], "ordering": [ - 236 + 308 ], "__typename": [ - 78 + 80 ] }, "league_relegation_playoffs_stream_cursor_value_input": { "created_at": [ - 4376 + 4493 ], "higher_division_id": [ - 4921 + 4993 ], "higher_slots": [ - 38 + 40 ], "id": [ - 4921 + 4993 ], "league_season_id": [ - 4921 + 4993 ], "lower_division_id": [ - 4921 + 4993 ], "resolved_at": [ - 4376 + 4493 ], "tournament_id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "league_relegation_playoffs_sum_fields": { "higher_slots": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "league_relegation_playoffs_sum_order_by": { "higher_slots": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "league_relegation_playoffs_update_column": {}, "league_relegation_playoffs_updates": { "_inc": [ - 1807 + 1924 ], "_set": [ - 1818 + 1935 ], "where": [ - 1805 + 1922 ], "__typename": [ - 78 + 80 ] }, "league_relegation_playoffs_var_pop_fields": { "higher_slots": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "league_relegation_playoffs_var_pop_order_by": { "higher_slots": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "league_relegation_playoffs_var_samp_fields": { "higher_slots": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "league_relegation_playoffs_var_samp_order_by": { "higher_slots": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "league_relegation_playoffs_variance_fields": { "higher_slots": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "league_relegation_playoffs_variance_order_by": { "higher_slots": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "league_scheduling_proposals": { "bracket": [ - 4378 + 4537 ], "created_at": [ - 4376 + 4493 ], "e_proposal_status": [ - 675 + 792 ], "id": [ - 4921 + 4993 ], "message": [ - 78 + 80 ], "proposed_by": [ - 3787 + 3904 ], "proposed_by_league_team_season_id": [ - 4921 + 4993 ], "proposed_by_steam_id": [ - 180 + 252 ], "proposed_time": [ - 4376 + 4493 ], "responded_by": [ - 3787 + 3904 ], "responded_by_steam_id": [ - 180 + 252 ], "status": [ - 680 + 797 ], "team_season": [ - 2018 + 2135 ], "tournament_bracket_id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "league_scheduling_proposals_aggregate": { "aggregate": [ - 1841 + 1958 ], "nodes": [ - 1837 + 1954 ], "__typename": [ - 78 + 80 ] }, "league_scheduling_proposals_aggregate_bool_exp": { "count": [ - 1840 + 1957 ], "__typename": [ - 78 + 80 ] }, "league_scheduling_proposals_aggregate_bool_exp_count": { "arguments": [ - 1858 + 1975 ], "distinct": [ - 3 + 5 ], "filter": [ - 1846 + 1963 ], "predicate": [ - 39 + 41 ], "__typename": [ - 78 + 80 ] }, "league_scheduling_proposals_aggregate_fields": { "avg": [ - 1844 + 1961 ], "count": [ - 38, + 40, { "columns": [ - 1858, + 1975, "[league_scheduling_proposals_select_column!]" ], "distinct": [ - 3 + 5 ] } ], "max": [ - 1850 + 1967 ], "min": [ - 1852 + 1969 ], "stddev": [ - 1860 + 1977 ], "stddev_pop": [ - 1862 + 1979 ], "stddev_samp": [ - 1864 + 1981 ], "sum": [ - 1868 + 1985 ], "var_pop": [ - 1872 + 1989 ], "var_samp": [ - 1874 + 1991 ], "variance": [ - 1876 + 1993 ], "__typename": [ - 78 + 80 ] }, "league_scheduling_proposals_aggregate_order_by": { "avg": [ - 1845 + 1962 ], "count": [ - 2829 + 2946 ], "max": [ - 1851 + 1968 ], "min": [ - 1853 + 1970 ], "stddev": [ - 1861 + 1978 ], "stddev_pop": [ - 1863 + 1980 ], "stddev_samp": [ - 1865 + 1982 ], "sum": [ - 1869 + 1986 ], "var_pop": [ - 1873 + 1990 ], "var_samp": [ - 1875 + 1992 ], "variance": [ - 1877 + 1994 ], "__typename": [ - 78 + 80 ] }, "league_scheduling_proposals_arr_rel_insert_input": { "data": [ - 1849 + 1966 ], "on_conflict": [ - 1855 + 1972 ], "__typename": [ - 78 + 80 ] }, "league_scheduling_proposals_avg_fields": { "proposed_by_steam_id": [ - 29 + 31 ], "responded_by_steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "league_scheduling_proposals_avg_order_by": { "proposed_by_steam_id": [ - 2829 + 2946 ], "responded_by_steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "league_scheduling_proposals_bool_exp": { "_and": [ - 1846 + 1963 ], "_not": [ - 1846 + 1963 ], "_or": [ - 1846 + 1963 ], "bracket": [ - 4389 + 4548 ], "created_at": [ - 4377 + 4494 ], "e_proposal_status": [ - 678 + 795 ], "id": [ - 4923 + 4995 ], "message": [ - 80 + 82 ], "proposed_by": [ - 3791 + 3908 ], "proposed_by_league_team_season_id": [ - 4923 + 4995 ], "proposed_by_steam_id": [ - 182 + 254 ], "proposed_time": [ - 4377 + 4494 ], "responded_by": [ - 3791 + 3908 ], "responded_by_steam_id": [ - 182 + 254 ], "status": [ - 681 + 798 ], "team_season": [ - 2027 + 2144 ], "tournament_bracket_id": [ - 4923 + 4995 ], "__typename": [ - 78 + 80 ] }, "league_scheduling_proposals_constraint": {}, "league_scheduling_proposals_inc_input": { "proposed_by_steam_id": [ - 180 + 252 ], "responded_by_steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "league_scheduling_proposals_insert_input": { "bracket": [ - 4398 + 4557 ], "created_at": [ - 4376 + 4493 ], "e_proposal_status": [ - 686 + 803 ], "id": [ - 4921 + 4993 ], "message": [ - 78 + 80 ], "proposed_by": [ - 3798 + 3915 ], "proposed_by_league_team_season_id": [ - 4921 + 4993 ], "proposed_by_steam_id": [ - 180 + 252 ], "proposed_time": [ - 4376 + 4493 ], "responded_by": [ - 3798 + 3915 ], "responded_by_steam_id": [ - 180 + 252 ], "status": [ - 680 + 797 ], "team_season": [ - 2036 + 2153 ], "tournament_bracket_id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "league_scheduling_proposals_max_fields": { "created_at": [ - 4376 + 4493 ], "id": [ - 4921 + 4993 ], "message": [ - 78 + 80 ], "proposed_by_league_team_season_id": [ - 4921 + 4993 ], "proposed_by_steam_id": [ - 180 + 252 ], "proposed_time": [ - 4376 + 4493 ], "responded_by_steam_id": [ - 180 + 252 ], "tournament_bracket_id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "league_scheduling_proposals_max_order_by": { "created_at": [ - 2829 + 2946 ], "id": [ - 2829 + 2946 ], "message": [ - 2829 + 2946 ], "proposed_by_league_team_season_id": [ - 2829 + 2946 ], "proposed_by_steam_id": [ - 2829 + 2946 ], "proposed_time": [ - 2829 + 2946 ], "responded_by_steam_id": [ - 2829 + 2946 ], "tournament_bracket_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "league_scheduling_proposals_min_fields": { "created_at": [ - 4376 + 4493 ], "id": [ - 4921 + 4993 ], "message": [ - 78 + 80 ], "proposed_by_league_team_season_id": [ - 4921 + 4993 ], "proposed_by_steam_id": [ - 180 + 252 ], "proposed_time": [ - 4376 + 4493 ], "responded_by_steam_id": [ - 180 + 252 ], "tournament_bracket_id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "league_scheduling_proposals_min_order_by": { "created_at": [ - 2829 + 2946 ], "id": [ - 2829 + 2946 ], "message": [ - 2829 + 2946 ], "proposed_by_league_team_season_id": [ - 2829 + 2946 ], "proposed_by_steam_id": [ - 2829 + 2946 ], "proposed_time": [ - 2829 + 2946 ], "responded_by_steam_id": [ - 2829 + 2946 ], "tournament_bracket_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "league_scheduling_proposals_mutation_response": { "affected_rows": [ - 38 + 40 ], "returning": [ - 1837 + 1954 ], "__typename": [ - 78 + 80 ] }, "league_scheduling_proposals_on_conflict": { "constraint": [ - 1847 + 1964 ], "update_columns": [ - 1870 + 1987 ], "where": [ - 1846 + 1963 ], "__typename": [ - 78 + 80 ] }, "league_scheduling_proposals_order_by": { "bracket": [ - 4400 + 4559 ], "created_at": [ - 2829 + 2946 ], "e_proposal_status": [ - 688 + 805 ], "id": [ - 2829 + 2946 ], "message": [ - 2829 + 2946 ], "proposed_by": [ - 3800 + 3917 ], "proposed_by_league_team_season_id": [ - 2829 + 2946 ], "proposed_by_steam_id": [ - 2829 + 2946 ], "proposed_time": [ - 2829 + 2946 ], "responded_by": [ - 3800 + 3917 ], "responded_by_steam_id": [ - 2829 + 2946 ], "status": [ - 2829 + 2946 ], "team_season": [ - 2038 + 2155 ], "tournament_bracket_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "league_scheduling_proposals_pk_columns_input": { "id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "league_scheduling_proposals_select_column": {}, "league_scheduling_proposals_set_input": { "created_at": [ - 4376 + 4493 ], "id": [ - 4921 + 4993 ], "message": [ - 78 + 80 ], "proposed_by_league_team_season_id": [ - 4921 + 4993 ], "proposed_by_steam_id": [ - 180 + 252 ], "proposed_time": [ - 4376 + 4493 ], "responded_by_steam_id": [ - 180 + 252 ], "status": [ - 680 + 797 ], "tournament_bracket_id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "league_scheduling_proposals_stddev_fields": { "proposed_by_steam_id": [ - 29 + 31 ], "responded_by_steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "league_scheduling_proposals_stddev_order_by": { "proposed_by_steam_id": [ - 2829 + 2946 ], "responded_by_steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "league_scheduling_proposals_stddev_pop_fields": { "proposed_by_steam_id": [ - 29 + 31 ], "responded_by_steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "league_scheduling_proposals_stddev_pop_order_by": { "proposed_by_steam_id": [ - 2829 + 2946 ], "responded_by_steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "league_scheduling_proposals_stddev_samp_fields": { "proposed_by_steam_id": [ - 29 + 31 ], "responded_by_steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "league_scheduling_proposals_stddev_samp_order_by": { "proposed_by_steam_id": [ - 2829 + 2946 ], "responded_by_steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "league_scheduling_proposals_stream_cursor_input": { "initial_value": [ - 1867 + 1984 ], "ordering": [ - 236 + 308 ], "__typename": [ - 78 + 80 ] }, "league_scheduling_proposals_stream_cursor_value_input": { "created_at": [ - 4376 + 4493 ], "id": [ - 4921 + 4993 ], "message": [ - 78 + 80 ], "proposed_by_league_team_season_id": [ - 4921 + 4993 ], "proposed_by_steam_id": [ - 180 + 252 ], "proposed_time": [ - 4376 + 4493 ], "responded_by_steam_id": [ - 180 + 252 ], "status": [ - 680 + 797 ], "tournament_bracket_id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "league_scheduling_proposals_sum_fields": { "proposed_by_steam_id": [ - 180 + 252 ], "responded_by_steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "league_scheduling_proposals_sum_order_by": { "proposed_by_steam_id": [ - 2829 + 2946 ], "responded_by_steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "league_scheduling_proposals_update_column": {}, "league_scheduling_proposals_updates": { "_inc": [ - 1848 + 1965 ], "_set": [ - 1859 + 1976 ], "where": [ - 1846 + 1963 ], "__typename": [ - 78 + 80 ] }, "league_scheduling_proposals_var_pop_fields": { "proposed_by_steam_id": [ - 29 + 31 ], "responded_by_steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "league_scheduling_proposals_var_pop_order_by": { "proposed_by_steam_id": [ - 2829 + 2946 ], "responded_by_steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "league_scheduling_proposals_var_samp_fields": { "proposed_by_steam_id": [ - 29 + 31 ], "responded_by_steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "league_scheduling_proposals_var_samp_order_by": { "proposed_by_steam_id": [ - 2829 + 2946 ], "responded_by_steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "league_scheduling_proposals_variance_fields": { "proposed_by_steam_id": [ - 29 + 31 ], "responded_by_steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "league_scheduling_proposals_variance_order_by": { "proposed_by_steam_id": [ - 2829 + 2946 ], "responded_by_steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "league_season_divisions": { "created_at": [ - 4376 + 4493 ], "division": [ - 1727 + 1844 ], "id": [ - 4921 + 4993 ], "league_division_id": [ - 4921 + 4993 ], "league_season_id": [ - 4921 + 4993 ], "season": [ - 1903 + 2020 ], "standings": [ - 4993, + 5065, { "distinct_on": [ - 5009, + 5081, "[v_league_division_standings_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 5008, + 5080, "[v_league_division_standings_order_by!]" ], "where": [ - 5002 + 5074 ] } ], "standings_aggregate": [ - 4994, + 5066, { "distinct_on": [ - 5009, + 5081, "[v_league_division_standings_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 5008, + 5080, "[v_league_division_standings_order_by!]" ], "where": [ - 5002 + 5074 ] } ], "tournament": [ - 4857 + 4929 ], "tournament_id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "league_season_divisions_aggregate": { "aggregate": [ - 1882 + 1999 ], "nodes": [ - 1878 + 1995 ], "__typename": [ - 78 + 80 ] }, "league_season_divisions_aggregate_bool_exp": { "count": [ - 1881 + 1998 ], "__typename": [ - 78 + 80 ] }, "league_season_divisions_aggregate_bool_exp_count": { "arguments": [ - 1897 + 2014 ], "distinct": [ - 3 + 5 ], "filter": [ - 1885 + 2002 ], "predicate": [ - 39 + 41 ], "__typename": [ - 78 + 80 ] }, "league_season_divisions_aggregate_fields": { "count": [ - 38, + 40, { "columns": [ - 1897, + 2014, "[league_season_divisions_select_column!]" ], "distinct": [ - 3 + 5 ] } ], "max": [ - 1888 + 2005 ], "min": [ - 1890 + 2007 ], "__typename": [ - 78 + 80 ] }, "league_season_divisions_aggregate_order_by": { "count": [ - 2829 + 2946 ], "max": [ - 1889 + 2006 ], "min": [ - 1891 + 2008 ], "__typename": [ - 78 + 80 ] }, "league_season_divisions_arr_rel_insert_input": { "data": [ - 1887 + 2004 ], "on_conflict": [ - 1894 + 2011 ], "__typename": [ - 78 + 80 ] }, "league_season_divisions_bool_exp": { "_and": [ - 1885 + 2002 ], "_not": [ - 1885 + 2002 ], "_or": [ - 1885 + 2002 ], "created_at": [ - 4377 + 4494 ], "division": [ - 1731 + 1848 ], "id": [ - 4923 + 4995 ], "league_division_id": [ - 4923 + 4995 ], "league_season_id": [ - 4923 + 4995 ], "season": [ - 1908 + 2025 ], "standings": [ - 5002 + 5074 ], "standings_aggregate": [ - 4995 + 5067 ], "tournament": [ - 4878 + 4950 ], "tournament_id": [ - 4923 + 4995 ], "__typename": [ - 78 + 80 ] }, "league_season_divisions_constraint": {}, "league_season_divisions_insert_input": { "created_at": [ - 4376 + 4493 ], "division": [ - 1738 + 1855 ], "id": [ - 4921 + 4993 ], "league_division_id": [ - 4921 + 4993 ], "league_season_id": [ - 4921 + 4993 ], "season": [ - 1918 + 2035 ], "standings": [ - 4999 + 5071 ], "tournament": [ - 4887 + 4959 ], "tournament_id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "league_season_divisions_max_fields": { "created_at": [ - 4376 + 4493 ], "id": [ - 4921 + 4993 ], "league_division_id": [ - 4921 + 4993 ], "league_season_id": [ - 4921 + 4993 ], "tournament_id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "league_season_divisions_max_order_by": { "created_at": [ - 2829 + 2946 ], "id": [ - 2829 + 2946 ], "league_division_id": [ - 2829 + 2946 ], "league_season_id": [ - 2829 + 2946 ], "tournament_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "league_season_divisions_min_fields": { "created_at": [ - 4376 + 4493 ], "id": [ - 4921 + 4993 ], "league_division_id": [ - 4921 + 4993 ], "league_season_id": [ - 4921 + 4993 ], "tournament_id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "league_season_divisions_min_order_by": { "created_at": [ - 2829 + 2946 ], "id": [ - 2829 + 2946 ], "league_division_id": [ - 2829 + 2946 ], "league_season_id": [ - 2829 + 2946 ], "tournament_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "league_season_divisions_mutation_response": { "affected_rows": [ - 38 + 40 ], "returning": [ - 1878 + 1995 ], "__typename": [ - 78 + 80 ] }, "league_season_divisions_obj_rel_insert_input": { "data": [ - 1887 + 2004 ], "on_conflict": [ - 1894 + 2011 ], "__typename": [ - 78 + 80 ] }, "league_season_divisions_on_conflict": { "constraint": [ - 1886 + 2003 ], "update_columns": [ - 1901 + 2018 ], "where": [ - 1885 + 2002 ], "__typename": [ - 78 + 80 ] }, "league_season_divisions_order_by": { "created_at": [ - 2829 + 2946 ], "division": [ - 1740 + 1857 ], "id": [ - 2829 + 2946 ], "league_division_id": [ - 2829 + 2946 ], "league_season_id": [ - 2829 + 2946 ], "season": [ - 1920 + 2037 ], "standings_aggregate": [ - 4998 + 5070 ], "tournament": [ - 4889 + 4961 ], "tournament_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "league_season_divisions_pk_columns_input": { "id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "league_season_divisions_select_column": {}, "league_season_divisions_set_input": { "created_at": [ - 4376 + 4493 ], "id": [ - 4921 + 4993 ], "league_division_id": [ - 4921 + 4993 ], "league_season_id": [ - 4921 + 4993 ], "tournament_id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "league_season_divisions_stream_cursor_input": { "initial_value": [ - 1900 + 2017 ], "ordering": [ - 236 + 308 ], "__typename": [ - 78 + 80 ] }, "league_season_divisions_stream_cursor_value_input": { "created_at": [ - 4376 + 4493 ], "id": [ - 4921 + 4993 ], "league_division_id": [ - 4921 + 4993 ], "league_season_id": [ - 4921 + 4993 ], "tournament_id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "league_season_divisions_update_column": {}, "league_season_divisions_updates": { "_set": [ - 1898 + 2015 ], "where": [ - 1885 + 2002 ], "__typename": [ - 78 + 80 ] }, "league_seasons": { "auto_regular_season_format": [ - 3 + 5 ], "can_register": [ - 3 + 5 ], "created_at": [ - 4376 + 4493 ], "created_by_steam_id": [ - 180 + 252 ], "default_best_of": [ - 38 + 40 ], "direct_promote_count": [ - 38 + 40 ], "direct_relegate_count": [ - 38 + 40 ], "e_league_season_status": [ - 717 + 834 ], "games_per_week": [ - 38 + 40 ], "id": [ - 4921 + 4993 ], "is_league_admin": [ - 3 + 5 ], "is_roster_locked": [ - 3 + 5 ], "match_options_id": [ - 4921 + 4993 ], "match_weeks": [ - 1755, + 1872, { "distinct_on": [ - 1776, + 1893, "[league_match_weeks_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 1774, + 1891, "[league_match_weeks_order_by!]" ], "where": [ - 1764 + 1881 ] } ], "match_weeks_aggregate": [ - 1756, + 1873, { "distinct_on": [ - 1776, + 1893, "[league_match_weeks_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 1774, + 1891, "[league_match_weeks_order_by!]" ], "where": [ - 1764 + 1881 ] } ], "match_weeks_count": [ - 38 + 40 ], "max_roster_size": [ - 38 + 40 ], "min_roster_size": [ - 38 + 40 ], "movements": [ - 1936, + 2053, { "distinct_on": [ - 1957, + 2074, "[league_team_movements_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 1955, + 2072, "[league_team_movements_order_by!]" ], "where": [ - 1945 + 2062 ] } ], "movements_aggregate": [ - 1937, + 2054, { "distinct_on": [ - 1957, + 2074, "[league_team_movements_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 1955, + 2072, "[league_team_movements_order_by!]" ], "where": [ - 1945 + 2062 ] } ], "my_registration": [ - 2018, + 2135, { "distinct_on": [ - 2040, + 2157, "[league_team_seasons_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2038, + 2155, "[league_team_seasons_order_by!]" ], "where": [ - 2027 + 2144 ] } ], "name": [ - 78 + 80 ], "options": [ - 2524 + 2641 ], "player_stats": [ - 5026, + 5098, { "distinct_on": [ - 5052, + 5124, "[v_league_season_player_stats_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 5051, + 5123, "[v_league_season_player_stats_order_by!]" ], "where": [ - 5045 + 5117 ] } ], "player_stats_aggregate": [ - 5027, + 5099, { "distinct_on": [ - 5052, + 5124, "[v_league_season_player_stats_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 5051, + 5123, "[v_league_season_player_stats_order_by!]" ], "where": [ - 5045 + 5117 ] } ], "playoff_best_of": [ - 38 + 40 ], "playoff_round_best_of": [ - 1700, + 1817, { "path": [ - 78 + 80 ] } ], "playoff_seats": [ - 38 + 40 ], "playoff_stage_type": [ - 1191 + 1308 ], "playoff_third_place_match": [ - 3 + 5 ], "promote_count": [ - 38 + 40 ], "regular_season_stage_type": [ - 1191 + 1308 ], "relegate_count": [ - 38 + 40 ], "relegation_down_count": [ - 38 + 40 ], "relegation_playoffs": [ - 1796, + 1913, { "distinct_on": [ - 1817, + 1934, "[league_relegation_playoffs_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 1815, + 1932, "[league_relegation_playoffs_order_by!]" ], "where": [ - 1805 + 1922 ] } ], "relegation_playoffs_aggregate": [ - 1797, + 1914, { "distinct_on": [ - 1817, + 1934, "[league_relegation_playoffs_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 1815, + 1932, "[league_relegation_playoffs_order_by!]" ], "where": [ - 1805 + 1922 ] } ], "relegation_up_count": [ - 38 + 40 ], "roster_lock_at": [ - 4376 + 4493 ], "season_divisions": [ - 1878, + 1995, { "distinct_on": [ - 1897, + 2014, "[league_season_divisions_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 1895, + 2012, "[league_season_divisions_order_by!]" ], "where": [ - 1885 + 2002 ] } ], "season_divisions_aggregate": [ - 1879, + 1996, { "distinct_on": [ - 1897, + 2014, "[league_season_divisions_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 1895, + 2012, "[league_season_divisions_order_by!]" ], "where": [ - 1885 + 2002 ] } ], "season_number": [ - 38 + 40 ], "signup_closes_at": [ - 4376 + 4493 ], "signup_opens_at": [ - 4376 + 4493 ], "standings": [ - 4993, + 5065, { "distinct_on": [ - 5009, + 5081, "[v_league_division_standings_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 5008, + 5080, "[v_league_division_standings_order_by!]" ], "where": [ - 5002 + 5074 ] } ], "standings_aggregate": [ - 4994, + 5066, { "distinct_on": [ - 5009, + 5081, "[v_league_division_standings_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 5008, + 5080, "[v_league_division_standings_order_by!]" ], "where": [ - 5002 + 5074 ] } ], "starts_at": [ - 4376 + 4493 ], "status": [ - 722 + 839 ], "team_seasons": [ - 2018, + 2135, { "distinct_on": [ - 2040, + 2157, "[league_team_seasons_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2038, + 2155, "[league_team_seasons_order_by!]" ], "where": [ - 2027 + 2144 ] } ], "team_seasons_aggregate": [ - 2019, + 2136, { "distinct_on": [ - 2040, + 2157, "[league_team_seasons_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2038, + 2155, "[league_team_seasons_order_by!]" ], "where": [ - 2027 + 2144 ] } ], "week_best_of": [ - 1700, + 1817, { "path": [ - 78 + 80 ] } ], "__typename": [ - 78 + 80 ] }, "league_seasons_aggregate": { "aggregate": [ - 1905 + 2022 ], "nodes": [ - 1903 + 2020 ], "__typename": [ - 78 + 80 ] }, "league_seasons_aggregate_fields": { "avg": [ - 1907 + 2024 ], "count": [ - 38, + 40, { "columns": [ - 1923, + 2040, "[league_seasons_select_column!]" ], "distinct": [ - 3 + 5 ] } ], "max": [ - 1915 + 2032 ], "min": [ - 1916 + 2033 ], "stddev": [ - 1925 + 2042 ], "stddev_pop": [ - 1926 + 2043 ], "stddev_samp": [ - 1927 + 2044 ], "sum": [ - 1930 + 2047 ], "var_pop": [ - 1933 + 2050 ], "var_samp": [ - 1934 + 2051 ], "variance": [ - 1935 + 2052 ], "__typename": [ - 78 + 80 ] }, "league_seasons_append_input": { "playoff_round_best_of": [ - 1700 + 1817 ], "week_best_of": [ - 1700 + 1817 ], "__typename": [ - 78 + 80 ] }, "league_seasons_avg_fields": { "created_by_steam_id": [ - 29 + 31 ], "default_best_of": [ - 29 + 31 ], "direct_promote_count": [ - 29 + 31 ], "direct_relegate_count": [ - 29 + 31 ], "games_per_week": [ - 29 + 31 ], "match_weeks_count": [ - 29 + 31 ], "max_roster_size": [ - 29 + 31 ], "min_roster_size": [ - 29 + 31 ], "playoff_best_of": [ - 29 + 31 ], "playoff_seats": [ - 29 + 31 ], "promote_count": [ - 29 + 31 ], "relegate_count": [ - 29 + 31 ], "relegation_down_count": [ - 29 + 31 ], "relegation_up_count": [ - 29 + 31 ], "season_number": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "league_seasons_bool_exp": { "_and": [ - 1908 + 2025 ], "_not": [ - 1908 + 2025 ], "_or": [ - 1908 + 2025 ], "auto_regular_season_format": [ - 4 + 6 ], "can_register": [ - 4 + 6 ], "created_at": [ - 4377 + 4494 ], "created_by_steam_id": [ - 182 + 254 ], "default_best_of": [ - 39 + 41 ], "direct_promote_count": [ - 39 + 41 ], "direct_relegate_count": [ - 39 + 41 ], "e_league_season_status": [ - 720 + 837 ], "games_per_week": [ - 39 + 41 ], "id": [ - 4923 + 4995 ], "is_league_admin": [ - 4 + 6 ], "is_roster_locked": [ - 4 + 6 ], "match_options_id": [ - 4923 + 4995 ], "match_weeks": [ - 1764 + 1881 ], "match_weeks_aggregate": [ - 1757 + 1874 ], "match_weeks_count": [ - 39 + 41 ], "max_roster_size": [ - 39 + 41 ], "min_roster_size": [ - 39 + 41 ], "movements": [ - 1945 + 2062 ], "movements_aggregate": [ - 1938 + 2055 ], "my_registration": [ - 2027 + 2144 ], "name": [ - 80 + 82 ], "options": [ - 2528 + 2645 ], "player_stats": [ - 5045 + 5117 ], "player_stats_aggregate": [ - 5028 + 5100 ], "playoff_best_of": [ - 39 + 41 ], "playoff_round_best_of": [ - 1702 + 1819 ], "playoff_seats": [ - 39 + 41 ], "playoff_stage_type": [ - 1192 + 1309 ], "playoff_third_place_match": [ - 4 + 6 ], "promote_count": [ - 39 + 41 ], "regular_season_stage_type": [ - 1192 + 1309 ], "relegate_count": [ - 39 + 41 ], "relegation_down_count": [ - 39 + 41 ], "relegation_playoffs": [ - 1805 + 1922 ], "relegation_playoffs_aggregate": [ - 1798 + 1915 ], "relegation_up_count": [ - 39 + 41 ], "roster_lock_at": [ - 4377 + 4494 ], "season_divisions": [ - 1885 + 2002 ], "season_divisions_aggregate": [ - 1880 + 1997 ], "season_number": [ - 39 + 41 ], "signup_closes_at": [ - 4377 + 4494 ], "signup_opens_at": [ - 4377 + 4494 ], "standings": [ - 5002 + 5074 ], "standings_aggregate": [ - 4995 + 5067 ], "starts_at": [ - 4377 + 4494 ], "status": [ - 723 + 840 ], "team_seasons": [ - 2027 + 2144 ], "team_seasons_aggregate": [ - 2020 + 2137 ], "week_best_of": [ - 1702 + 1819 ], "__typename": [ - 78 + 80 ] }, "league_seasons_constraint": {}, "league_seasons_delete_at_path_input": { "playoff_round_best_of": [ - 78 + 80 ], "week_best_of": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "league_seasons_delete_elem_input": { "playoff_round_best_of": [ - 38 + 40 ], "week_best_of": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "league_seasons_delete_key_input": { "playoff_round_best_of": [ - 78 + 80 ], "week_best_of": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "league_seasons_inc_input": { "created_by_steam_id": [ - 180 + 252 ], "default_best_of": [ - 38 + 40 ], "direct_promote_count": [ - 38 + 40 ], "direct_relegate_count": [ - 38 + 40 ], "games_per_week": [ - 38 + 40 ], "match_weeks_count": [ - 38 + 40 ], "max_roster_size": [ - 38 + 40 ], "min_roster_size": [ - 38 + 40 ], "playoff_best_of": [ - 38 + 40 ], "playoff_seats": [ - 38 + 40 ], "promote_count": [ - 38 + 40 ], "relegate_count": [ - 38 + 40 ], "relegation_down_count": [ - 38 + 40 ], "relegation_up_count": [ - 38 + 40 ], "season_number": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "league_seasons_insert_input": { "auto_regular_season_format": [ - 3 + 5 ], "created_at": [ - 4376 + 4493 ], "created_by_steam_id": [ - 180 + 252 ], "default_best_of": [ - 38 + 40 ], "direct_promote_count": [ - 38 + 40 ], "direct_relegate_count": [ - 38 + 40 ], "e_league_season_status": [ - 728 + 845 ], "games_per_week": [ - 38 + 40 ], "id": [ - 4921 + 4993 ], "match_options_id": [ - 4921 + 4993 ], "match_weeks": [ - 1761 + 1878 ], "match_weeks_count": [ - 38 + 40 ], "max_roster_size": [ - 38 + 40 ], "min_roster_size": [ - 38 + 40 ], "movements": [ - 1942 + 2059 ], "name": [ - 78 + 80 ], "options": [ - 2535 + 2652 ], "player_stats": [ - 5042 + 5114 ], "playoff_best_of": [ - 38 + 40 ], "playoff_round_best_of": [ - 1700 + 1817 ], "playoff_seats": [ - 38 + 40 ], "playoff_stage_type": [ - 1191 + 1308 ], "playoff_third_place_match": [ - 3 + 5 ], "promote_count": [ - 38 + 40 ], "regular_season_stage_type": [ - 1191 + 1308 ], "relegate_count": [ - 38 + 40 ], "relegation_down_count": [ - 38 + 40 ], "relegation_playoffs": [ - 1802 + 1919 ], "relegation_up_count": [ - 38 + 40 ], "roster_lock_at": [ - 4376 + 4493 ], "season_divisions": [ - 1884 + 2001 ], "season_number": [ - 38 + 40 ], "signup_closes_at": [ - 4376 + 4493 ], "signup_opens_at": [ - 4376 + 4493 ], "standings": [ - 4999 + 5071 ], "starts_at": [ - 4376 + 4493 ], "status": [ - 722 + 839 ], "team_seasons": [ - 2024 + 2141 ], "week_best_of": [ - 1700 + 1817 ], "__typename": [ - 78 + 80 ] }, "league_seasons_max_fields": { "created_at": [ - 4376 + 4493 ], "created_by_steam_id": [ - 180 + 252 ], "default_best_of": [ - 38 + 40 ], "direct_promote_count": [ - 38 + 40 ], "direct_relegate_count": [ - 38 + 40 ], "games_per_week": [ - 38 + 40 ], "id": [ - 4921 + 4993 ], "match_options_id": [ - 4921 + 4993 ], "match_weeks_count": [ - 38 + 40 ], "max_roster_size": [ - 38 + 40 ], "min_roster_size": [ - 38 + 40 ], "name": [ - 78 + 80 ], "playoff_best_of": [ - 38 + 40 ], "playoff_seats": [ - 38 + 40 ], "promote_count": [ - 38 + 40 ], "relegate_count": [ - 38 + 40 ], "relegation_down_count": [ - 38 + 40 ], "relegation_up_count": [ - 38 + 40 ], "roster_lock_at": [ - 4376 + 4493 ], "season_number": [ - 38 + 40 ], "signup_closes_at": [ - 4376 + 4493 ], "signup_opens_at": [ - 4376 + 4493 ], "starts_at": [ - 4376 + 4493 ], "__typename": [ - 78 + 80 ] }, "league_seasons_min_fields": { "created_at": [ - 4376 + 4493 ], "created_by_steam_id": [ - 180 + 252 ], "default_best_of": [ - 38 + 40 ], "direct_promote_count": [ - 38 + 40 ], "direct_relegate_count": [ - 38 + 40 ], "games_per_week": [ - 38 + 40 ], "id": [ - 4921 + 4993 ], "match_options_id": [ - 4921 + 4993 ], "match_weeks_count": [ - 38 + 40 ], "max_roster_size": [ - 38 + 40 ], "min_roster_size": [ - 38 + 40 ], "name": [ - 78 + 80 ], "playoff_best_of": [ - 38 + 40 ], "playoff_seats": [ - 38 + 40 ], "promote_count": [ - 38 + 40 ], "relegate_count": [ - 38 + 40 ], "relegation_down_count": [ - 38 + 40 ], "relegation_up_count": [ - 38 + 40 ], "roster_lock_at": [ - 4376 + 4493 ], "season_number": [ - 38 + 40 ], "signup_closes_at": [ - 4376 + 4493 ], "signup_opens_at": [ - 4376 + 4493 ], "starts_at": [ - 4376 + 4493 ], "__typename": [ - 78 + 80 ] }, "league_seasons_mutation_response": { "affected_rows": [ - 38 + 40 ], "returning": [ - 1903 + 2020 ], "__typename": [ - 78 + 80 ] }, "league_seasons_obj_rel_insert_input": { "data": [ - 1914 + 2031 ], "on_conflict": [ - 1919 + 2036 ], "__typename": [ - 78 + 80 ] }, "league_seasons_on_conflict": { "constraint": [ - 1909 + 2026 ], "update_columns": [ - 1931 + 2048 ], "where": [ - 1908 + 2025 ], "__typename": [ - 78 + 80 ] }, "league_seasons_order_by": { "auto_regular_season_format": [ - 2829 + 2946 ], "can_register": [ - 2829 + 2946 ], "created_at": [ - 2829 + 2946 ], "created_by_steam_id": [ - 2829 + 2946 ], "default_best_of": [ - 2829 + 2946 ], "direct_promote_count": [ - 2829 + 2946 ], "direct_relegate_count": [ - 2829 + 2946 ], "e_league_season_status": [ - 730 + 847 ], "games_per_week": [ - 2829 + 2946 ], "id": [ - 2829 + 2946 ], "is_league_admin": [ - 2829 + 2946 ], "is_roster_locked": [ - 2829 + 2946 ], "match_options_id": [ - 2829 + 2946 ], "match_weeks_aggregate": [ - 1760 + 1877 ], "match_weeks_count": [ - 2829 + 2946 ], "max_roster_size": [ - 2829 + 2946 ], "min_roster_size": [ - 2829 + 2946 ], "movements_aggregate": [ - 1941 + 2058 ], "my_registration_aggregate": [ - 2023 + 2140 ], "name": [ - 2829 + 2946 ], "options": [ - 2537 + 2654 ], "player_stats_aggregate": [ - 5041 + 5113 ], "playoff_best_of": [ - 2829 + 2946 ], "playoff_round_best_of": [ - 2829 + 2946 ], "playoff_seats": [ - 2829 + 2946 ], "playoff_stage_type": [ - 2829 + 2946 ], "playoff_third_place_match": [ - 2829 + 2946 ], "promote_count": [ - 2829 + 2946 ], "regular_season_stage_type": [ - 2829 + 2946 ], "relegate_count": [ - 2829 + 2946 ], "relegation_down_count": [ - 2829 + 2946 ], "relegation_playoffs_aggregate": [ - 1801 + 1918 ], "relegation_up_count": [ - 2829 + 2946 ], "roster_lock_at": [ - 2829 + 2946 ], "season_divisions_aggregate": [ - 1883 + 2000 ], "season_number": [ - 2829 + 2946 ], "signup_closes_at": [ - 2829 + 2946 ], "signup_opens_at": [ - 2829 + 2946 ], "standings_aggregate": [ - 4998 + 5070 ], "starts_at": [ - 2829 + 2946 ], "status": [ - 2829 + 2946 ], "team_seasons_aggregate": [ - 2023 + 2140 ], "week_best_of": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "league_seasons_pk_columns_input": { "id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "league_seasons_prepend_input": { "playoff_round_best_of": [ - 1700 + 1817 ], "week_best_of": [ - 1700 + 1817 ], "__typename": [ - 78 + 80 ] }, "league_seasons_select_column": {}, "league_seasons_set_input": { "auto_regular_season_format": [ - 3 + 5 ], "created_at": [ - 4376 + 4493 ], "created_by_steam_id": [ - 180 + 252 ], "default_best_of": [ - 38 + 40 ], "direct_promote_count": [ - 38 + 40 ], "direct_relegate_count": [ - 38 + 40 ], "games_per_week": [ - 38 + 40 ], "id": [ - 4921 + 4993 ], "match_options_id": [ - 4921 + 4993 ], "match_weeks_count": [ - 38 + 40 ], "max_roster_size": [ - 38 + 40 ], "min_roster_size": [ - 38 + 40 ], "name": [ - 78 + 80 ], "playoff_best_of": [ - 38 + 40 ], "playoff_round_best_of": [ - 1700 + 1817 ], "playoff_seats": [ - 38 + 40 ], "playoff_stage_type": [ - 1191 + 1308 ], "playoff_third_place_match": [ - 3 + 5 ], "promote_count": [ - 38 + 40 ], "regular_season_stage_type": [ - 1191 + 1308 ], "relegate_count": [ - 38 + 40 ], "relegation_down_count": [ - 38 + 40 ], "relegation_up_count": [ - 38 + 40 ], "roster_lock_at": [ - 4376 + 4493 ], "season_number": [ - 38 + 40 ], "signup_closes_at": [ - 4376 + 4493 ], "signup_opens_at": [ - 4376 + 4493 ], "starts_at": [ - 4376 + 4493 ], "status": [ - 722 + 839 ], "week_best_of": [ - 1700 + 1817 ], "__typename": [ - 78 + 80 ] }, "league_seasons_stddev_fields": { "created_by_steam_id": [ - 29 + 31 ], "default_best_of": [ - 29 + 31 ], "direct_promote_count": [ - 29 + 31 ], "direct_relegate_count": [ - 29 + 31 ], "games_per_week": [ - 29 + 31 ], "match_weeks_count": [ - 29 + 31 ], "max_roster_size": [ - 29 + 31 ], "min_roster_size": [ - 29 + 31 ], "playoff_best_of": [ - 29 + 31 ], "playoff_seats": [ - 29 + 31 ], "promote_count": [ - 29 + 31 ], "relegate_count": [ - 29 + 31 ], "relegation_down_count": [ - 29 + 31 ], "relegation_up_count": [ - 29 + 31 ], "season_number": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "league_seasons_stddev_pop_fields": { "created_by_steam_id": [ - 29 + 31 ], "default_best_of": [ - 29 + 31 ], "direct_promote_count": [ - 29 + 31 ], "direct_relegate_count": [ - 29 + 31 ], "games_per_week": [ - 29 + 31 ], "match_weeks_count": [ - 29 + 31 ], "max_roster_size": [ - 29 + 31 ], "min_roster_size": [ - 29 + 31 ], "playoff_best_of": [ - 29 + 31 ], "playoff_seats": [ - 29 + 31 ], "promote_count": [ - 29 + 31 ], "relegate_count": [ - 29 + 31 ], "relegation_down_count": [ - 29 + 31 ], "relegation_up_count": [ - 29 + 31 ], "season_number": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "league_seasons_stddev_samp_fields": { "created_by_steam_id": [ - 29 + 31 ], "default_best_of": [ - 29 + 31 ], "direct_promote_count": [ - 29 + 31 ], "direct_relegate_count": [ - 29 + 31 ], "games_per_week": [ - 29 + 31 ], "match_weeks_count": [ - 29 + 31 ], "max_roster_size": [ - 29 + 31 ], "min_roster_size": [ - 29 + 31 ], "playoff_best_of": [ - 29 + 31 ], "playoff_seats": [ - 29 + 31 ], "promote_count": [ - 29 + 31 ], "relegate_count": [ - 29 + 31 ], "relegation_down_count": [ - 29 + 31 ], "relegation_up_count": [ - 29 + 31 ], "season_number": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "league_seasons_stream_cursor_input": { "initial_value": [ - 1929 + 2046 ], "ordering": [ - 236 + 308 ], "__typename": [ - 78 + 80 ] }, "league_seasons_stream_cursor_value_input": { "auto_regular_season_format": [ - 3 + 5 ], "created_at": [ - 4376 + 4493 ], "created_by_steam_id": [ - 180 + 252 ], "default_best_of": [ - 38 + 40 ], "direct_promote_count": [ - 38 + 40 ], "direct_relegate_count": [ - 38 + 40 ], "games_per_week": [ - 38 + 40 ], "id": [ - 4921 + 4993 ], "match_options_id": [ - 4921 + 4993 ], "match_weeks_count": [ - 38 + 40 ], "max_roster_size": [ - 38 + 40 ], "min_roster_size": [ - 38 + 40 ], "name": [ - 78 + 80 ], "playoff_best_of": [ - 38 + 40 ], "playoff_round_best_of": [ - 1700 + 1817 ], "playoff_seats": [ - 38 + 40 ], "playoff_stage_type": [ - 1191 + 1308 ], "playoff_third_place_match": [ - 3 + 5 ], "promote_count": [ - 38 + 40 ], "regular_season_stage_type": [ - 1191 + 1308 ], "relegate_count": [ - 38 + 40 ], "relegation_down_count": [ - 38 + 40 ], "relegation_up_count": [ - 38 + 40 ], "roster_lock_at": [ - 4376 + 4493 ], "season_number": [ - 38 + 40 ], "signup_closes_at": [ - 4376 + 4493 ], "signup_opens_at": [ - 4376 + 4493 ], "starts_at": [ - 4376 + 4493 ], "status": [ - 722 + 839 ], "week_best_of": [ - 1700 + 1817 ], "__typename": [ - 78 + 80 ] }, "league_seasons_sum_fields": { "created_by_steam_id": [ - 180 + 252 ], "default_best_of": [ - 38 + 40 ], "direct_promote_count": [ - 38 + 40 ], "direct_relegate_count": [ - 38 + 40 ], "games_per_week": [ - 38 + 40 ], "match_weeks_count": [ - 38 + 40 ], "max_roster_size": [ - 38 + 40 ], "min_roster_size": [ - 38 + 40 ], "playoff_best_of": [ - 38 + 40 ], "playoff_seats": [ - 38 + 40 ], "promote_count": [ - 38 + 40 ], "relegate_count": [ - 38 + 40 ], "relegation_down_count": [ - 38 + 40 ], "relegation_up_count": [ - 38 + 40 ], "season_number": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "league_seasons_update_column": {}, "league_seasons_updates": { "_append": [ - 1906 + 2023 ], "_delete_at_path": [ - 1910 + 2027 ], "_delete_elem": [ - 1911 + 2028 ], "_delete_key": [ - 1912 + 2029 ], "_inc": [ - 1913 + 2030 ], "_prepend": [ - 1922 + 2039 ], "_set": [ - 1924 + 2041 ], "where": [ - 1908 + 2025 ], "__typename": [ - 78 + 80 ] }, "league_seasons_var_pop_fields": { "created_by_steam_id": [ - 29 + 31 ], "default_best_of": [ - 29 + 31 ], "direct_promote_count": [ - 29 + 31 ], "direct_relegate_count": [ - 29 + 31 ], "games_per_week": [ - 29 + 31 ], "match_weeks_count": [ - 29 + 31 ], "max_roster_size": [ - 29 + 31 ], "min_roster_size": [ - 29 + 31 ], "playoff_best_of": [ - 29 + 31 ], "playoff_seats": [ - 29 + 31 ], "promote_count": [ - 29 + 31 ], "relegate_count": [ - 29 + 31 ], "relegation_down_count": [ - 29 + 31 ], "relegation_up_count": [ - 29 + 31 ], "season_number": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "league_seasons_var_samp_fields": { "created_by_steam_id": [ - 29 + 31 ], "default_best_of": [ - 29 + 31 ], "direct_promote_count": [ - 29 + 31 ], "direct_relegate_count": [ - 29 + 31 ], "games_per_week": [ - 29 + 31 ], "match_weeks_count": [ - 29 + 31 ], "max_roster_size": [ - 29 + 31 ], "min_roster_size": [ - 29 + 31 ], "playoff_best_of": [ - 29 + 31 ], "playoff_seats": [ - 29 + 31 ], "promote_count": [ - 29 + 31 ], "relegate_count": [ - 29 + 31 ], "relegation_down_count": [ - 29 + 31 ], "relegation_up_count": [ - 29 + 31 ], "season_number": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "league_seasons_variance_fields": { "created_by_steam_id": [ - 29 + 31 ], "default_best_of": [ - 29 + 31 ], "direct_promote_count": [ - 29 + 31 ], "direct_relegate_count": [ - 29 + 31 ], "games_per_week": [ - 29 + 31 ], "match_weeks_count": [ - 29 + 31 ], "max_roster_size": [ - 29 + 31 ], "min_roster_size": [ - 29 + 31 ], "playoff_best_of": [ - 29 + 31 ], "playoff_seats": [ - 29 + 31 ], "promote_count": [ - 29 + 31 ], "relegate_count": [ - 29 + 31 ], "relegation_down_count": [ - 29 + 31 ], "relegation_up_count": [ - 29 + 31 ], "season_number": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "league_team_movements": { "approved_at": [ - 4376 + 4493 ], "approved_by": [ - 3787 + 3904 ], "approved_by_steam_id": [ - 180 + 252 ], "computed_to_division": [ - 1727 + 1844 ], "computed_to_division_id": [ - 4921 + 4993 ], "created_at": [ - 4376 + 4493 ], "e_movement_type": [ - 654 + 771 ], "final_rank": [ - 38 + 40 ], "final_to_division": [ - 1727 + 1844 ], "final_to_division_id": [ - 4921 + 4993 ], "from_division": [ - 1727 + 1844 ], "from_division_id": [ - 4921 + 4993 ], "id": [ - 4921 + 4993 ], "league_season_id": [ - 4921 + 4993 ], "league_team": [ - 2060 + 2177 ], "league_team_id": [ - 4921 + 4993 ], "season": [ - 1903 + 2020 ], "type": [ - 659 + 776 ], "__typename": [ - 78 + 80 ] }, "league_team_movements_aggregate": { "aggregate": [ - 1940 + 2057 ], "nodes": [ - 1936 + 2053 ], "__typename": [ - 78 + 80 ] }, "league_team_movements_aggregate_bool_exp": { "count": [ - 1939 + 2056 ], "__typename": [ - 78 + 80 ] }, "league_team_movements_aggregate_bool_exp_count": { "arguments": [ - 1957 + 2074 ], "distinct": [ - 3 + 5 ], "filter": [ - 1945 + 2062 ], "predicate": [ - 39 + 41 ], "__typename": [ - 78 + 80 ] }, "league_team_movements_aggregate_fields": { "avg": [ - 1943 + 2060 ], "count": [ - 38, + 40, { "columns": [ - 1957, + 2074, "[league_team_movements_select_column!]" ], "distinct": [ - 3 + 5 ] } ], "max": [ - 1949 + 2066 ], "min": [ - 1951 + 2068 ], "stddev": [ - 1959 + 2076 ], "stddev_pop": [ - 1961 + 2078 ], "stddev_samp": [ - 1963 + 2080 ], "sum": [ - 1967 + 2084 ], "var_pop": [ - 1971 + 2088 ], "var_samp": [ - 1973 + 2090 ], "variance": [ - 1975 + 2092 ], "__typename": [ - 78 + 80 ] }, "league_team_movements_aggregate_order_by": { "avg": [ - 1944 + 2061 ], "count": [ - 2829 + 2946 ], "max": [ - 1950 + 2067 ], "min": [ - 1952 + 2069 ], "stddev": [ - 1960 + 2077 ], "stddev_pop": [ - 1962 + 2079 ], "stddev_samp": [ - 1964 + 2081 ], "sum": [ - 1968 + 2085 ], "var_pop": [ - 1972 + 2089 ], "var_samp": [ - 1974 + 2091 ], "variance": [ - 1976 + 2093 ], "__typename": [ - 78 + 80 ] }, "league_team_movements_arr_rel_insert_input": { "data": [ - 1948 + 2065 ], "on_conflict": [ - 1954 + 2071 ], "__typename": [ - 78 + 80 ] }, "league_team_movements_avg_fields": { "approved_by_steam_id": [ - 29 + 31 ], "final_rank": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "league_team_movements_avg_order_by": { "approved_by_steam_id": [ - 2829 + 2946 ], "final_rank": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "league_team_movements_bool_exp": { "_and": [ - 1945 + 2062 ], "_not": [ - 1945 + 2062 ], "_or": [ - 1945 + 2062 ], "approved_at": [ - 4377 + 4494 ], "approved_by": [ - 3791 + 3908 ], "approved_by_steam_id": [ - 182 + 254 ], "computed_to_division": [ - 1731 + 1848 ], "computed_to_division_id": [ - 4923 + 4995 ], "created_at": [ - 4377 + 4494 ], "e_movement_type": [ - 657 + 774 ], "final_rank": [ - 39 + 41 ], "final_to_division": [ - 1731 + 1848 ], "final_to_division_id": [ - 4923 + 4995 ], "from_division": [ - 1731 + 1848 ], "from_division_id": [ - 4923 + 4995 ], "id": [ - 4923 + 4995 ], "league_season_id": [ - 4923 + 4995 ], "league_team": [ - 2063 + 2180 ], "league_team_id": [ - 4923 + 4995 ], "season": [ - 1908 + 2025 ], "type": [ - 660 + 777 ], "__typename": [ - 78 + 80 ] }, "league_team_movements_constraint": {}, "league_team_movements_inc_input": { "approved_by_steam_id": [ - 180 + 252 ], "final_rank": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "league_team_movements_insert_input": { "approved_at": [ - 4376 + 4493 ], "approved_by": [ - 3798 + 3915 ], "approved_by_steam_id": [ - 180 + 252 ], "computed_to_division": [ - 1738 + 1855 ], "computed_to_division_id": [ - 4921 + 4993 ], "created_at": [ - 4376 + 4493 ], "e_movement_type": [ - 665 + 782 ], "final_rank": [ - 38 + 40 ], "final_to_division": [ - 1738 + 1855 ], "final_to_division_id": [ - 4921 + 4993 ], "from_division": [ - 1738 + 1855 ], "from_division_id": [ - 4921 + 4993 ], "id": [ - 4921 + 4993 ], "league_season_id": [ - 4921 + 4993 ], "league_team": [ - 2069 + 2186 ], "league_team_id": [ - 4921 + 4993 ], "season": [ - 1918 + 2035 ], "type": [ - 659 + 776 ], "__typename": [ - 78 + 80 ] }, "league_team_movements_max_fields": { "approved_at": [ - 4376 + 4493 ], "approved_by_steam_id": [ - 180 + 252 ], "computed_to_division_id": [ - 4921 + 4993 ], "created_at": [ - 4376 + 4493 ], "final_rank": [ - 38 + 40 ], "final_to_division_id": [ - 4921 + 4993 ], "from_division_id": [ - 4921 + 4993 ], "id": [ - 4921 + 4993 ], "league_season_id": [ - 4921 + 4993 ], "league_team_id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "league_team_movements_max_order_by": { "approved_at": [ - 2829 + 2946 ], "approved_by_steam_id": [ - 2829 + 2946 ], "computed_to_division_id": [ - 2829 + 2946 ], "created_at": [ - 2829 + 2946 ], "final_rank": [ - 2829 + 2946 ], "final_to_division_id": [ - 2829 + 2946 ], "from_division_id": [ - 2829 + 2946 ], "id": [ - 2829 + 2946 ], "league_season_id": [ - 2829 + 2946 ], "league_team_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "league_team_movements_min_fields": { "approved_at": [ - 4376 + 4493 ], "approved_by_steam_id": [ - 180 + 252 ], "computed_to_division_id": [ - 4921 + 4993 ], "created_at": [ - 4376 + 4493 ], "final_rank": [ - 38 + 40 ], "final_to_division_id": [ - 4921 + 4993 ], "from_division_id": [ - 4921 + 4993 ], "id": [ - 4921 + 4993 ], "league_season_id": [ - 4921 + 4993 ], "league_team_id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "league_team_movements_min_order_by": { "approved_at": [ - 2829 + 2946 ], "approved_by_steam_id": [ - 2829 + 2946 ], "computed_to_division_id": [ - 2829 + 2946 ], "created_at": [ - 2829 + 2946 ], "final_rank": [ - 2829 + 2946 ], "final_to_division_id": [ - 2829 + 2946 ], "from_division_id": [ - 2829 + 2946 ], "id": [ - 2829 + 2946 ], "league_season_id": [ - 2829 + 2946 ], "league_team_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "league_team_movements_mutation_response": { "affected_rows": [ - 38 + 40 ], "returning": [ - 1936 + 2053 ], "__typename": [ - 78 + 80 ] }, "league_team_movements_on_conflict": { "constraint": [ - 1946 + 2063 ], "update_columns": [ - 1969 + 2086 ], "where": [ - 1945 + 2062 ], "__typename": [ - 78 + 80 ] }, "league_team_movements_order_by": { "approved_at": [ - 2829 + 2946 ], "approved_by": [ - 3800 + 3917 ], "approved_by_steam_id": [ - 2829 + 2946 ], "computed_to_division": [ - 1740 + 1857 ], "computed_to_division_id": [ - 2829 + 2946 ], "created_at": [ - 2829 + 2946 ], "e_movement_type": [ - 667 + 784 ], "final_rank": [ - 2829 + 2946 ], "final_to_division": [ - 1740 + 1857 ], "final_to_division_id": [ - 2829 + 2946 ], "from_division": [ - 1740 + 1857 ], "from_division_id": [ - 2829 + 2946 ], "id": [ - 2829 + 2946 ], "league_season_id": [ - 2829 + 2946 ], "league_team": [ - 2071 + 2188 ], "league_team_id": [ - 2829 + 2946 ], "season": [ - 1920 + 2037 ], "type": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "league_team_movements_pk_columns_input": { "id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "league_team_movements_select_column": {}, "league_team_movements_set_input": { "approved_at": [ - 4376 + 4493 ], "approved_by_steam_id": [ - 180 + 252 ], "computed_to_division_id": [ - 4921 + 4993 ], "created_at": [ - 4376 + 4493 ], "final_rank": [ - 38 + 40 ], "final_to_division_id": [ - 4921 + 4993 ], "from_division_id": [ - 4921 + 4993 ], "id": [ - 4921 + 4993 ], "league_season_id": [ - 4921 + 4993 ], "league_team_id": [ - 4921 + 4993 ], "type": [ - 659 + 776 ], "__typename": [ - 78 + 80 ] }, "league_team_movements_stddev_fields": { "approved_by_steam_id": [ - 29 + 31 ], "final_rank": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "league_team_movements_stddev_order_by": { "approved_by_steam_id": [ - 2829 + 2946 ], "final_rank": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "league_team_movements_stddev_pop_fields": { "approved_by_steam_id": [ - 29 + 31 ], "final_rank": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "league_team_movements_stddev_pop_order_by": { "approved_by_steam_id": [ - 2829 + 2946 ], "final_rank": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "league_team_movements_stddev_samp_fields": { "approved_by_steam_id": [ - 29 + 31 ], "final_rank": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "league_team_movements_stddev_samp_order_by": { "approved_by_steam_id": [ - 2829 + 2946 ], "final_rank": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "league_team_movements_stream_cursor_input": { "initial_value": [ - 1966 + 2083 ], "ordering": [ - 236 + 308 ], "__typename": [ - 78 + 80 ] }, "league_team_movements_stream_cursor_value_input": { "approved_at": [ - 4376 + 4493 ], "approved_by_steam_id": [ - 180 + 252 ], "computed_to_division_id": [ - 4921 + 4993 ], "created_at": [ - 4376 + 4493 ], "final_rank": [ - 38 + 40 ], "final_to_division_id": [ - 4921 + 4993 ], "from_division_id": [ - 4921 + 4993 ], "id": [ - 4921 + 4993 ], "league_season_id": [ - 4921 + 4993 ], "league_team_id": [ - 4921 + 4993 ], "type": [ - 659 + 776 ], "__typename": [ - 78 + 80 ] }, "league_team_movements_sum_fields": { "approved_by_steam_id": [ - 180 + 252 ], "final_rank": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "league_team_movements_sum_order_by": { "approved_by_steam_id": [ - 2829 + 2946 ], "final_rank": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "league_team_movements_update_column": {}, "league_team_movements_updates": { "_inc": [ - 1947 + 2064 ], "_set": [ - 1958 + 2075 ], "where": [ - 1945 + 2062 ], "__typename": [ - 78 + 80 ] }, "league_team_movements_var_pop_fields": { "approved_by_steam_id": [ - 29 + 31 ], "final_rank": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "league_team_movements_var_pop_order_by": { "approved_by_steam_id": [ - 2829 + 2946 ], "final_rank": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "league_team_movements_var_samp_fields": { "approved_by_steam_id": [ - 29 + 31 ], "final_rank": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "league_team_movements_var_samp_order_by": { "approved_by_steam_id": [ - 2829 + 2946 ], "final_rank": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "league_team_movements_variance_fields": { "approved_by_steam_id": [ - 29 + 31 ], "final_rank": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "league_team_movements_variance_order_by": { "approved_by_steam_id": [ - 2829 + 2946 ], "final_rank": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "league_team_rosters": { "added_at": [ - 4376 + 4493 ], "league_team_season_id": [ - 4921 + 4993 ], "player": [ - 3787 + 3904 ], "player_steam_id": [ - 180 + 252 ], "removed_at": [ - 4376 + 4493 ], "removed_reason": [ - 78 + 80 ], "status": [ - 1130 + 1247 ], "team_season": [ - 2018 + 2135 ], "__typename": [ - 78 + 80 ] }, "league_team_rosters_aggregate": { "aggregate": [ - 1981 + 2098 ], "nodes": [ - 1977 + 2094 ], "__typename": [ - 78 + 80 ] }, "league_team_rosters_aggregate_bool_exp": { "count": [ - 1980 + 2097 ], "__typename": [ - 78 + 80 ] }, "league_team_rosters_aggregate_bool_exp_count": { "arguments": [ - 1998 + 2115 ], "distinct": [ - 3 + 5 ], "filter": [ - 1986 + 2103 ], "predicate": [ - 39 + 41 ], "__typename": [ - 78 + 80 ] }, "league_team_rosters_aggregate_fields": { "avg": [ - 1984 + 2101 ], "count": [ - 38, + 40, { "columns": [ - 1998, + 2115, "[league_team_rosters_select_column!]" ], "distinct": [ - 3 + 5 ] } ], "max": [ - 1990 + 2107 ], "min": [ - 1992 + 2109 ], "stddev": [ - 2000 + 2117 ], "stddev_pop": [ - 2002 + 2119 ], "stddev_samp": [ - 2004 + 2121 ], "sum": [ - 2008 + 2125 ], "var_pop": [ - 2012 + 2129 ], "var_samp": [ - 2014 + 2131 ], "variance": [ - 2016 + 2133 ], "__typename": [ - 78 + 80 ] }, "league_team_rosters_aggregate_order_by": { "avg": [ - 1985 + 2102 ], "count": [ - 2829 + 2946 ], "max": [ - 1991 + 2108 ], "min": [ - 1993 + 2110 ], "stddev": [ - 2001 + 2118 ], "stddev_pop": [ - 2003 + 2120 ], "stddev_samp": [ - 2005 + 2122 ], "sum": [ - 2009 + 2126 ], "var_pop": [ - 2013 + 2130 ], "var_samp": [ - 2015 + 2132 ], "variance": [ - 2017 + 2134 ], "__typename": [ - 78 + 80 ] }, "league_team_rosters_arr_rel_insert_input": { "data": [ - 1989 + 2106 ], "on_conflict": [ - 1995 + 2112 ], "__typename": [ - 78 + 80 ] }, "league_team_rosters_avg_fields": { "player_steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "league_team_rosters_avg_order_by": { "player_steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "league_team_rosters_bool_exp": { "_and": [ - 1986 + 2103 ], "_not": [ - 1986 + 2103 ], "_or": [ - 1986 + 2103 ], "added_at": [ - 4377 + 4494 ], "league_team_season_id": [ - 4923 + 4995 ], "player": [ - 3791 + 3908 ], "player_steam_id": [ - 182 + 254 ], "removed_at": [ - 4377 + 4494 ], "removed_reason": [ - 80 + 82 ], "status": [ - 1131 + 1248 ], "team_season": [ - 2027 + 2144 ], "__typename": [ - 78 + 80 ] }, "league_team_rosters_constraint": {}, "league_team_rosters_inc_input": { "player_steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "league_team_rosters_insert_input": { "added_at": [ - 4376 + 4493 ], "league_team_season_id": [ - 4921 + 4993 ], "player": [ - 3798 + 3915 ], "player_steam_id": [ - 180 + 252 ], "removed_at": [ - 4376 + 4493 ], "removed_reason": [ - 78 + 80 ], "status": [ - 1130 + 1247 ], "team_season": [ - 2036 + 2153 ], "__typename": [ - 78 + 80 ] }, "league_team_rosters_max_fields": { "added_at": [ - 4376 + 4493 ], "league_team_season_id": [ - 4921 + 4993 ], "player_steam_id": [ - 180 + 252 ], "removed_at": [ - 4376 + 4493 ], "removed_reason": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "league_team_rosters_max_order_by": { "added_at": [ - 2829 + 2946 ], "league_team_season_id": [ - 2829 + 2946 ], "player_steam_id": [ - 2829 + 2946 ], "removed_at": [ - 2829 + 2946 ], "removed_reason": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "league_team_rosters_min_fields": { "added_at": [ - 4376 + 4493 ], "league_team_season_id": [ - 4921 + 4993 ], "player_steam_id": [ - 180 + 252 ], "removed_at": [ - 4376 + 4493 ], "removed_reason": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "league_team_rosters_min_order_by": { "added_at": [ - 2829 + 2946 ], "league_team_season_id": [ - 2829 + 2946 ], "player_steam_id": [ - 2829 + 2946 ], "removed_at": [ - 2829 + 2946 ], "removed_reason": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "league_team_rosters_mutation_response": { "affected_rows": [ - 38 + 40 ], "returning": [ - 1977 + 2094 ], "__typename": [ - 78 + 80 ] }, "league_team_rosters_on_conflict": { "constraint": [ - 1987 + 2104 ], "update_columns": [ - 2010 + 2127 ], "where": [ - 1986 + 2103 ], "__typename": [ - 78 + 80 ] }, "league_team_rosters_order_by": { "added_at": [ - 2829 + 2946 ], "league_team_season_id": [ - 2829 + 2946 ], "player": [ - 3800 + 3917 ], "player_steam_id": [ - 2829 + 2946 ], "removed_at": [ - 2829 + 2946 ], "removed_reason": [ - 2829 + 2946 ], "status": [ - 2829 + 2946 ], "team_season": [ - 2038 + 2155 ], "__typename": [ - 78 + 80 ] }, "league_team_rosters_pk_columns_input": { "league_team_season_id": [ - 4921 + 4993 ], "player_steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "league_team_rosters_select_column": {}, "league_team_rosters_set_input": { "added_at": [ - 4376 + 4493 ], "league_team_season_id": [ - 4921 + 4993 ], "player_steam_id": [ - 180 + 252 ], "removed_at": [ - 4376 + 4493 ], "removed_reason": [ - 78 + 80 ], "status": [ - 1130 + 1247 ], "__typename": [ - 78 + 80 ] }, "league_team_rosters_stddev_fields": { "player_steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "league_team_rosters_stddev_order_by": { "player_steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "league_team_rosters_stddev_pop_fields": { "player_steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "league_team_rosters_stddev_pop_order_by": { "player_steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "league_team_rosters_stddev_samp_fields": { "player_steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "league_team_rosters_stddev_samp_order_by": { "player_steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "league_team_rosters_stream_cursor_input": { "initial_value": [ - 2007 + 2124 ], "ordering": [ - 236 + 308 ], "__typename": [ - 78 + 80 ] }, "league_team_rosters_stream_cursor_value_input": { "added_at": [ - 4376 + 4493 ], "league_team_season_id": [ - 4921 + 4993 ], "player_steam_id": [ - 180 + 252 ], "removed_at": [ - 4376 + 4493 ], "removed_reason": [ - 78 + 80 ], "status": [ - 1130 + 1247 ], "__typename": [ - 78 + 80 ] }, "league_team_rosters_sum_fields": { "player_steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "league_team_rosters_sum_order_by": { "player_steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "league_team_rosters_update_column": {}, "league_team_rosters_updates": { "_inc": [ - 1988 + 2105 ], "_set": [ - 1999 + 2116 ], "where": [ - 1986 + 2103 ], "__typename": [ - 78 + 80 ] }, "league_team_rosters_var_pop_fields": { "player_steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "league_team_rosters_var_pop_order_by": { "player_steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "league_team_rosters_var_samp_fields": { "player_steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "league_team_rosters_var_samp_order_by": { "player_steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "league_team_rosters_variance_fields": { "player_steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "league_team_rosters_variance_order_by": { "player_steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "league_team_seasons": { "assigned_division": [ - 1727 + 1844 ], "assigned_division_id": [ - 4921 + 4993 ], "captain": [ - 3787 + 3904 ], "captain_steam_id": [ - 180 + 252 ], "created_at": [ - 4376 + 4493 ], "decline_reason": [ - 78 + 80 ], "e_registration_status": [ - 696 + 813 ], "id": [ - 4921 + 4993 ], "league_season_id": [ - 4921 + 4993 ], "league_team": [ - 2060 + 2177 ], "league_team_id": [ - 4921 + 4993 ], "registered_by": [ - 3787 + 3904 ], "registered_by_steam_id": [ - 180 + 252 ], "requested_division": [ - 1727 + 1844 ], "requested_division_id": [ - 4921 + 4993 ], "roster": [ - 1977, + 2094, { "distinct_on": [ - 1998, + 2115, "[league_team_rosters_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 1996, + 2113, "[league_team_rosters_order_by!]" ], "where": [ - 1986 + 2103 ] } ], "roster_aggregate": [ - 1978, + 2095, { "distinct_on": [ - 1998, + 2115, "[league_team_rosters_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 1996, + 2113, "[league_team_rosters_order_by!]" ], "where": [ - 1986 + 2103 ] } ], "season": [ - 1903 + 2020 ], "seed": [ - 38 + 40 ], "status": [ - 701 + 818 ], "tournament_team": [ - 4728 + 4887 ], "tournament_team_id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "league_team_seasons_aggregate": { "aggregate": [ - 2022 + 2139 ], "nodes": [ - 2018 + 2135 ], "__typename": [ - 78 + 80 ] }, "league_team_seasons_aggregate_bool_exp": { "count": [ - 2021 + 2138 ], "__typename": [ - 78 + 80 ] }, "league_team_seasons_aggregate_bool_exp_count": { "arguments": [ - 2040 + 2157 ], "distinct": [ - 3 + 5 ], "filter": [ - 2027 + 2144 ], "predicate": [ - 39 + 41 ], "__typename": [ - 78 + 80 ] }, "league_team_seasons_aggregate_fields": { "avg": [ - 2025 + 2142 ], "count": [ - 38, + 40, { "columns": [ - 2040, + 2157, "[league_team_seasons_select_column!]" ], "distinct": [ - 3 + 5 ] } ], "max": [ - 2031 + 2148 ], "min": [ - 2033 + 2150 ], "stddev": [ - 2042 + 2159 ], "stddev_pop": [ - 2044 + 2161 ], "stddev_samp": [ - 2046 + 2163 ], "sum": [ - 2050 + 2167 ], "var_pop": [ - 2054 + 2171 ], "var_samp": [ - 2056 + 2173 ], "variance": [ - 2058 + 2175 ], "__typename": [ - 78 + 80 ] }, "league_team_seasons_aggregate_order_by": { "avg": [ - 2026 + 2143 ], "count": [ - 2829 + 2946 ], "max": [ - 2032 + 2149 ], "min": [ - 2034 + 2151 ], "stddev": [ - 2043 + 2160 ], "stddev_pop": [ - 2045 + 2162 ], "stddev_samp": [ - 2047 + 2164 ], "sum": [ - 2051 + 2168 ], "var_pop": [ - 2055 + 2172 ], "var_samp": [ - 2057 + 2174 ], "variance": [ - 2059 + 2176 ], "__typename": [ - 78 + 80 ] }, "league_team_seasons_arr_rel_insert_input": { "data": [ - 2030 + 2147 ], "on_conflict": [ - 2037 + 2154 ], "__typename": [ - 78 + 80 ] }, "league_team_seasons_avg_fields": { "captain_steam_id": [ - 29 + 31 ], "registered_by_steam_id": [ - 29 + 31 ], "seed": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "league_team_seasons_avg_order_by": { "captain_steam_id": [ - 2829 + 2946 ], "registered_by_steam_id": [ - 2829 + 2946 ], "seed": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "league_team_seasons_bool_exp": { "_and": [ - 2027 + 2144 ], "_not": [ - 2027 + 2144 ], "_or": [ - 2027 + 2144 ], "assigned_division": [ - 1731 + 1848 ], "assigned_division_id": [ - 4923 + 4995 ], "captain": [ - 3791 + 3908 ], "captain_steam_id": [ - 182 + 254 ], "created_at": [ - 4377 + 4494 ], "decline_reason": [ - 80 + 82 ], "e_registration_status": [ - 699 + 816 ], "id": [ - 4923 + 4995 ], "league_season_id": [ - 4923 + 4995 ], "league_team": [ - 2063 + 2180 ], "league_team_id": [ - 4923 + 4995 ], "registered_by": [ - 3791 + 3908 ], "registered_by_steam_id": [ - 182 + 254 ], "requested_division": [ - 1731 + 1848 ], "requested_division_id": [ - 4923 + 4995 ], "roster": [ - 1986 + 2103 ], "roster_aggregate": [ - 1979 + 2096 ], "season": [ - 1908 + 2025 ], "seed": [ - 39 + 41 ], "status": [ - 702 + 819 ], "tournament_team": [ - 4737 + 4896 ], "tournament_team_id": [ - 4923 + 4995 ], "__typename": [ - 78 + 80 ] }, "league_team_seasons_constraint": {}, "league_team_seasons_inc_input": { "captain_steam_id": [ - 180 + 252 ], "registered_by_steam_id": [ - 180 + 252 ], "seed": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "league_team_seasons_insert_input": { "assigned_division": [ - 1738 + 1855 ], "assigned_division_id": [ - 4921 + 4993 ], "captain": [ - 3798 + 3915 ], "captain_steam_id": [ - 180 + 252 ], "created_at": [ - 4376 + 4493 ], "decline_reason": [ - 78 + 80 ], "e_registration_status": [ - 707 + 824 ], "id": [ - 4921 + 4993 ], "league_season_id": [ - 4921 + 4993 ], "league_team": [ - 2069 + 2186 ], "league_team_id": [ - 4921 + 4993 ], "registered_by": [ - 3798 + 3915 ], "registered_by_steam_id": [ - 180 + 252 ], "requested_division": [ - 1738 + 1855 ], "requested_division_id": [ - 4921 + 4993 ], "roster": [ - 1983 + 2100 ], "season": [ - 1918 + 2035 ], "seed": [ - 38 + 40 ], "status": [ - 701 + 818 ], "tournament_team": [ - 4746 + 4905 ], "tournament_team_id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "league_team_seasons_max_fields": { "assigned_division_id": [ - 4921 + 4993 ], "captain_steam_id": [ - 180 + 252 ], "created_at": [ - 4376 + 4493 ], "decline_reason": [ - 78 + 80 ], "id": [ - 4921 + 4993 ], "league_season_id": [ - 4921 + 4993 ], "league_team_id": [ - 4921 + 4993 ], "registered_by_steam_id": [ - 180 + 252 ], "requested_division_id": [ - 4921 + 4993 ], "seed": [ - 38 + 40 ], "tournament_team_id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "league_team_seasons_max_order_by": { "assigned_division_id": [ - 2829 + 2946 ], "captain_steam_id": [ - 2829 + 2946 ], "created_at": [ - 2829 + 2946 ], "decline_reason": [ - 2829 + 2946 ], "id": [ - 2829 + 2946 ], "league_season_id": [ - 2829 + 2946 ], "league_team_id": [ - 2829 + 2946 ], "registered_by_steam_id": [ - 2829 + 2946 ], "requested_division_id": [ - 2829 + 2946 ], "seed": [ - 2829 + 2946 ], "tournament_team_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "league_team_seasons_min_fields": { "assigned_division_id": [ - 4921 + 4993 ], "captain_steam_id": [ - 180 + 252 ], "created_at": [ - 4376 + 4493 ], "decline_reason": [ - 78 + 80 ], "id": [ - 4921 + 4993 ], "league_season_id": [ - 4921 + 4993 ], "league_team_id": [ - 4921 + 4993 ], "registered_by_steam_id": [ - 180 + 252 ], "requested_division_id": [ - 4921 + 4993 ], "seed": [ - 38 + 40 ], "tournament_team_id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "league_team_seasons_min_order_by": { "assigned_division_id": [ - 2829 + 2946 ], "captain_steam_id": [ - 2829 + 2946 ], "created_at": [ - 2829 + 2946 ], "decline_reason": [ - 2829 + 2946 ], "id": [ - 2829 + 2946 ], "league_season_id": [ - 2829 + 2946 ], "league_team_id": [ - 2829 + 2946 ], "registered_by_steam_id": [ - 2829 + 2946 ], "requested_division_id": [ - 2829 + 2946 ], "seed": [ - 2829 + 2946 ], "tournament_team_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "league_team_seasons_mutation_response": { "affected_rows": [ - 38 + 40 ], "returning": [ - 2018 + 2135 ], "__typename": [ - 78 + 80 ] }, "league_team_seasons_obj_rel_insert_input": { "data": [ - 2030 + 2147 ], "on_conflict": [ - 2037 + 2154 ], "__typename": [ - 78 + 80 ] }, "league_team_seasons_on_conflict": { "constraint": [ - 2028 + 2145 ], "update_columns": [ - 2052 + 2169 ], "where": [ - 2027 + 2144 ], "__typename": [ - 78 + 80 ] }, "league_team_seasons_order_by": { "assigned_division": [ - 1740 + 1857 ], "assigned_division_id": [ - 2829 + 2946 ], "captain": [ - 3800 + 3917 ], "captain_steam_id": [ - 2829 + 2946 ], "created_at": [ - 2829 + 2946 ], "decline_reason": [ - 2829 + 2946 ], "e_registration_status": [ - 709 + 826 ], "id": [ - 2829 + 2946 ], "league_season_id": [ - 2829 + 2946 ], "league_team": [ - 2071 + 2188 ], "league_team_id": [ - 2829 + 2946 ], "registered_by": [ - 3800 + 3917 ], "registered_by_steam_id": [ - 2829 + 2946 ], "requested_division": [ - 1740 + 1857 ], "requested_division_id": [ - 2829 + 2946 ], "roster_aggregate": [ - 1982 + 2099 ], "season": [ - 1920 + 2037 ], "seed": [ - 2829 + 2946 ], "status": [ - 2829 + 2946 ], "tournament_team": [ - 4748 + 4907 ], "tournament_team_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "league_team_seasons_pk_columns_input": { "id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "league_team_seasons_select_column": {}, "league_team_seasons_set_input": { "assigned_division_id": [ - 4921 + 4993 ], "captain_steam_id": [ - 180 + 252 ], "created_at": [ - 4376 + 4493 ], "decline_reason": [ - 78 + 80 ], "id": [ - 4921 + 4993 ], "league_season_id": [ - 4921 + 4993 ], "league_team_id": [ - 4921 + 4993 ], "registered_by_steam_id": [ - 180 + 252 ], "requested_division_id": [ - 4921 + 4993 ], "seed": [ - 38 + 40 ], "status": [ - 701 + 818 ], "tournament_team_id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "league_team_seasons_stddev_fields": { "captain_steam_id": [ - 29 + 31 ], "registered_by_steam_id": [ - 29 + 31 ], "seed": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "league_team_seasons_stddev_order_by": { "captain_steam_id": [ - 2829 + 2946 ], "registered_by_steam_id": [ - 2829 + 2946 ], "seed": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "league_team_seasons_stddev_pop_fields": { "captain_steam_id": [ - 29 + 31 ], "registered_by_steam_id": [ - 29 + 31 ], "seed": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "league_team_seasons_stddev_pop_order_by": { "captain_steam_id": [ - 2829 + 2946 ], "registered_by_steam_id": [ - 2829 + 2946 ], "seed": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "league_team_seasons_stddev_samp_fields": { "captain_steam_id": [ - 29 + 31 ], "registered_by_steam_id": [ - 29 + 31 ], "seed": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "league_team_seasons_stddev_samp_order_by": { "captain_steam_id": [ - 2829 + 2946 ], "registered_by_steam_id": [ - 2829 + 2946 ], "seed": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "league_team_seasons_stream_cursor_input": { "initial_value": [ - 2049 + 2166 ], "ordering": [ - 236 + 308 ], "__typename": [ - 78 + 80 ] }, "league_team_seasons_stream_cursor_value_input": { "assigned_division_id": [ - 4921 + 4993 ], "captain_steam_id": [ - 180 + 252 ], "created_at": [ - 4376 + 4493 ], "decline_reason": [ - 78 + 80 ], "id": [ - 4921 + 4993 ], "league_season_id": [ - 4921 + 4993 ], "league_team_id": [ - 4921 + 4993 ], "registered_by_steam_id": [ - 180 + 252 ], "requested_division_id": [ - 4921 + 4993 ], "seed": [ - 38 + 40 ], "status": [ - 701 + 818 ], "tournament_team_id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "league_team_seasons_sum_fields": { "captain_steam_id": [ - 180 + 252 ], "registered_by_steam_id": [ - 180 + 252 ], "seed": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "league_team_seasons_sum_order_by": { "captain_steam_id": [ - 2829 + 2946 ], "registered_by_steam_id": [ - 2829 + 2946 ], "seed": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "league_team_seasons_update_column": {}, "league_team_seasons_updates": { "_inc": [ - 2029 + 2146 ], "_set": [ - 2041 + 2158 ], "where": [ - 2027 + 2144 ], "__typename": [ - 78 + 80 ] }, "league_team_seasons_var_pop_fields": { "captain_steam_id": [ - 29 + 31 ], "registered_by_steam_id": [ - 29 + 31 ], "seed": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "league_team_seasons_var_pop_order_by": { "captain_steam_id": [ - 2829 + 2946 ], "registered_by_steam_id": [ - 2829 + 2946 ], "seed": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "league_team_seasons_var_samp_fields": { "captain_steam_id": [ - 29 + 31 ], "registered_by_steam_id": [ - 29 + 31 ], "seed": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "league_team_seasons_var_samp_order_by": { "captain_steam_id": [ - 2829 + 2946 ], "registered_by_steam_id": [ - 2829 + 2946 ], "seed": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "league_team_seasons_variance_fields": { "captain_steam_id": [ - 29 + 31 ], "registered_by_steam_id": [ - 29 + 31 ], "seed": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "league_team_seasons_variance_order_by": { "captain_steam_id": [ - 2829 + 2946 ], "registered_by_steam_id": [ - 2829 + 2946 ], "seed": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "league_teams": { "created_at": [ - 4376 + 4493 ], "id": [ - 4921 + 4993 ], "movements": [ - 1936, + 2053, { "distinct_on": [ - 1957, + 2074, "[league_team_movements_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 1955, + 2072, "[league_team_movements_order_by!]" ], "where": [ - 1945 + 2062 ] } ], "movements_aggregate": [ - 1937, + 2054, { "distinct_on": [ - 1957, + 2074, "[league_team_movements_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 1955, + 2072, "[league_team_movements_order_by!]" ], "where": [ - 1945 + 2062 ] } ], "team": [ - 4329 + 4446 ], "team_id": [ - 4921 + 4993 ], "team_seasons": [ - 2018, + 2135, { "distinct_on": [ - 2040, + 2157, "[league_team_seasons_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2038, + 2155, "[league_team_seasons_order_by!]" ], "where": [ - 2027 + 2144 ] } ], "team_seasons_aggregate": [ - 2019, + 2136, { "distinct_on": [ - 2040, + 2157, "[league_team_seasons_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2038, + 2155, "[league_team_seasons_order_by!]" ], "where": [ - 2027 + 2144 ] } ], "__typename": [ - 78 + 80 ] }, "league_teams_aggregate": { "aggregate": [ - 2062 + 2179 ], "nodes": [ - 2060 + 2177 ], "__typename": [ - 78 + 80 ] }, "league_teams_aggregate_fields": { "count": [ - 38, + 40, { "columns": [ - 2073, + 2190, "[league_teams_select_column!]" ], "distinct": [ - 3 + 5 ] } ], "max": [ - 2066 + 2183 ], "min": [ - 2067 + 2184 ], "__typename": [ - 78 + 80 ] }, "league_teams_bool_exp": { "_and": [ - 2063 + 2180 ], "_not": [ - 2063 + 2180 ], "_or": [ - 2063 + 2180 ], "created_at": [ - 4377 + 4494 ], "id": [ - 4923 + 4995 ], "movements": [ - 1945 + 2062 ], "movements_aggregate": [ - 1938 + 2055 ], "team": [ - 4340 + 4457 ], "team_id": [ - 4923 + 4995 ], "team_seasons": [ - 2027 + 2144 ], "team_seasons_aggregate": [ - 2020 + 2137 ], "__typename": [ - 78 + 80 ] }, "league_teams_constraint": {}, "league_teams_insert_input": { "created_at": [ - 4376 + 4493 ], "id": [ - 4921 + 4993 ], "movements": [ - 1942 + 2059 ], "team": [ - 4349 + 4466 ], "team_id": [ - 4921 + 4993 ], "team_seasons": [ - 2024 + 2141 ], "__typename": [ - 78 + 80 ] }, "league_teams_max_fields": { "created_at": [ - 4376 + 4493 ], "id": [ - 4921 + 4993 ], "team_id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "league_teams_min_fields": { "created_at": [ - 4376 + 4493 ], "id": [ - 4921 + 4993 ], "team_id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "league_teams_mutation_response": { "affected_rows": [ - 38 + 40 ], "returning": [ - 2060 + 2177 ], "__typename": [ - 78 + 80 ] }, "league_teams_obj_rel_insert_input": { "data": [ - 2065 + 2182 ], "on_conflict": [ - 2070 + 2187 ], "__typename": [ - 78 + 80 ] }, "league_teams_on_conflict": { "constraint": [ - 2064 + 2181 ], "update_columns": [ - 2077 + 2194 ], "where": [ - 2063 + 2180 ], "__typename": [ - 78 + 80 ] }, "league_teams_order_by": { "created_at": [ - 2829 + 2946 ], "id": [ - 2829 + 2946 ], "movements_aggregate": [ - 1941 + 2058 ], "team": [ - 4351 + 4468 ], "team_id": [ - 2829 + 2946 ], "team_seasons_aggregate": [ - 2023 + 2140 ], "__typename": [ - 78 + 80 ] }, "league_teams_pk_columns_input": { "id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "league_teams_select_column": {}, "league_teams_set_input": { "created_at": [ - 4376 + 4493 ], "id": [ - 4921 + 4993 ], "team_id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "league_teams_stream_cursor_input": { "initial_value": [ - 2076 + 2193 ], "ordering": [ - 236 + 308 ], "__typename": [ - 78 + 80 ] }, "league_teams_stream_cursor_value_input": { "created_at": [ - 4376 + 4493 ], "id": [ - 4921 + 4993 ], "team_id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "league_teams_update_column": {}, "league_teams_updates": { "_set": [ - 2074 + 2191 ], "where": [ - 2063 + 2180 ], "__typename": [ - 78 + 80 ] }, "lobbies": { "access": [ - 743 + 860 ], "created_at": [ - 4376 + 4493 ], "e_lobby_access": [ - 738 + 855 ], "id": [ - 4921 + 4993 ], "players": [ - 2098, + 2215, { "distinct_on": [ - 2121, + 2238, "[lobby_players_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2119, + 2236, "[lobby_players_order_by!]" ], "where": [ - 2109 + 2226 ] } ], "players_aggregate": [ - 2099, + 2216, { "distinct_on": [ - 2121, + 2238, "[lobby_players_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2119, + 2236, "[lobby_players_order_by!]" ], "where": [ - 2109 + 2226 ] } ], "__typename": [ - 78 + 80 ] }, "lobbies_aggregate": { "aggregate": [ - 2081 + 2198 ], "nodes": [ - 2079 + 2196 ], "__typename": [ - 78 + 80 ] }, "lobbies_aggregate_fields": { "count": [ - 38, + 40, { "columns": [ - 2092, + 2209, "[lobbies_select_column!]" ], "distinct": [ - 3 + 5 ] } ], "max": [ - 2085 + 2202 ], "min": [ - 2086 + 2203 ], "__typename": [ - 78 + 80 ] }, "lobbies_bool_exp": { "_and": [ - 2082 + 2199 ], "_not": [ - 2082 + 2199 ], "_or": [ - 2082 + 2199 ], "access": [ - 744 + 861 ], "created_at": [ - 4377 + 4494 ], "e_lobby_access": [ - 741 + 858 ], "id": [ - 4923 + 4995 ], "players": [ - 2109 + 2226 ], "players_aggregate": [ - 2100 + 2217 ], "__typename": [ - 78 + 80 ] }, "lobbies_constraint": {}, "lobbies_insert_input": { "access": [ - 743 + 860 ], "created_at": [ - 4376 + 4493 ], "e_lobby_access": [ - 749 + 866 ], "id": [ - 4921 + 4993 ], "players": [ - 2106 + 2223 ], "__typename": [ - 78 + 80 ] }, "lobbies_max_fields": { "created_at": [ - 4376 + 4493 ], "id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "lobbies_min_fields": { "created_at": [ - 4376 + 4493 ], "id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "lobbies_mutation_response": { "affected_rows": [ - 38 + 40 ], "returning": [ - 2079 + 2196 ], "__typename": [ - 78 + 80 ] }, "lobbies_obj_rel_insert_input": { "data": [ - 2084 + 2201 ], "on_conflict": [ - 2089 + 2206 ], "__typename": [ - 78 + 80 ] }, "lobbies_on_conflict": { "constraint": [ - 2083 + 2200 ], "update_columns": [ - 2096 + 2213 ], "where": [ - 2082 + 2199 ], "__typename": [ - 78 + 80 ] }, "lobbies_order_by": { "access": [ - 2829 + 2946 ], "created_at": [ - 2829 + 2946 ], "e_lobby_access": [ - 751 + 868 ], "id": [ - 2829 + 2946 ], "players_aggregate": [ - 2105 + 2222 ], "__typename": [ - 78 + 80 ] }, "lobbies_pk_columns_input": { "id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "lobbies_select_column": {}, "lobbies_set_input": { "access": [ - 743 + 860 ], "created_at": [ - 4376 + 4493 ], "id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "lobbies_stream_cursor_input": { "initial_value": [ - 2095 + 2212 ], "ordering": [ - 236 + 308 ], "__typename": [ - 78 + 80 ] }, "lobbies_stream_cursor_value_input": { "access": [ - 743 + 860 ], "created_at": [ - 4376 + 4493 ], "id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "lobbies_update_column": {}, "lobbies_updates": { "_set": [ - 2093 + 2210 ], "where": [ - 2082 + 2199 ], "__typename": [ - 78 + 80 ] }, "lobby_players": { "captain": [ - 3 + 5 ], "invited_by_steam_id": [ - 180 + 252 ], "lobby": [ - 2079 + 2196 ], "lobby_id": [ - 4921 + 4993 ], "player": [ - 3787 + 3904 ], "status": [ - 764 + 881 ], "steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "lobby_players_aggregate": { "aggregate": [ - 2104 + 2221 ], "nodes": [ - 2098 + 2215 ], "__typename": [ - 78 + 80 ] }, "lobby_players_aggregate_bool_exp": { "bool_and": [ - 2101 + 2218 ], "bool_or": [ - 2102 + 2219 ], "count": [ - 2103 + 2220 ], "__typename": [ - 78 + 80 ] }, "lobby_players_aggregate_bool_exp_bool_and": { "arguments": [ - 2122 + 2239 ], "distinct": [ - 3 + 5 ], "filter": [ - 2109 + 2226 ], "predicate": [ - 4 + 6 ], "__typename": [ - 78 + 80 ] }, "lobby_players_aggregate_bool_exp_bool_or": { "arguments": [ - 2123 + 2240 ], "distinct": [ - 3 + 5 ], "filter": [ - 2109 + 2226 ], "predicate": [ - 4 + 6 ], "__typename": [ - 78 + 80 ] }, "lobby_players_aggregate_bool_exp_count": { "arguments": [ - 2121 + 2238 ], "distinct": [ - 3 + 5 ], "filter": [ - 2109 + 2226 ], "predicate": [ - 39 + 41 ], "__typename": [ - 78 + 80 ] }, "lobby_players_aggregate_fields": { "avg": [ - 2107 + 2224 ], "count": [ - 38, + 40, { "columns": [ - 2121, + 2238, "[lobby_players_select_column!]" ], "distinct": [ - 3 + 5 ] } ], "max": [ - 2113 + 2230 ], "min": [ - 2115 + 2232 ], "stddev": [ - 2125 + 2242 ], "stddev_pop": [ - 2127 + 2244 ], "stddev_samp": [ - 2129 + 2246 ], "sum": [ - 2133 + 2250 ], "var_pop": [ - 2137 + 2254 ], "var_samp": [ - 2139 + 2256 ], "variance": [ - 2141 + 2258 ], "__typename": [ - 78 + 80 ] }, "lobby_players_aggregate_order_by": { "avg": [ - 2108 + 2225 ], "count": [ - 2829 + 2946 ], "max": [ - 2114 + 2231 ], "min": [ - 2116 + 2233 ], "stddev": [ - 2126 + 2243 ], "stddev_pop": [ - 2128 + 2245 ], "stddev_samp": [ - 2130 + 2247 ], "sum": [ - 2134 + 2251 ], "var_pop": [ - 2138 + 2255 ], "var_samp": [ - 2140 + 2257 ], "variance": [ - 2142 + 2259 ], "__typename": [ - 78 + 80 ] }, "lobby_players_arr_rel_insert_input": { "data": [ - 2112 + 2229 ], "on_conflict": [ - 2118 + 2235 ], "__typename": [ - 78 + 80 ] }, "lobby_players_avg_fields": { "invited_by_steam_id": [ - 29 + 31 ], "steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "lobby_players_avg_order_by": { "invited_by_steam_id": [ - 2829 + 2946 ], "steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "lobby_players_bool_exp": { "_and": [ - 2109 + 2226 ], "_not": [ - 2109 + 2226 ], "_or": [ - 2109 + 2226 ], "captain": [ - 4 + 6 ], "invited_by_steam_id": [ - 182 + 254 ], "lobby": [ - 2082 + 2199 ], "lobby_id": [ - 4923 + 4995 ], "player": [ - 3791 + 3908 ], "status": [ - 765 + 882 ], "steam_id": [ - 182 + 254 ], "__typename": [ - 78 + 80 ] }, "lobby_players_constraint": {}, "lobby_players_inc_input": { "invited_by_steam_id": [ - 180 + 252 ], "steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "lobby_players_insert_input": { "captain": [ - 3 + 5 ], "invited_by_steam_id": [ - 180 + 252 ], "lobby": [ - 2088 + 2205 ], "lobby_id": [ - 4921 + 4993 ], "player": [ - 3798 + 3915 ], "status": [ - 764 + 881 ], "steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "lobby_players_max_fields": { "invited_by_steam_id": [ - 180 + 252 ], "lobby_id": [ - 4921 + 4993 ], "steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "lobby_players_max_order_by": { "invited_by_steam_id": [ - 2829 + 2946 ], "lobby_id": [ - 2829 + 2946 ], "steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "lobby_players_min_fields": { "invited_by_steam_id": [ - 180 + 252 ], "lobby_id": [ - 4921 + 4993 ], "steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "lobby_players_min_order_by": { "invited_by_steam_id": [ - 2829 + 2946 ], "lobby_id": [ - 2829 + 2946 ], "steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "lobby_players_mutation_response": { "affected_rows": [ - 38 + 40 ], "returning": [ - 2098 + 2215 ], "__typename": [ - 78 + 80 ] }, "lobby_players_on_conflict": { "constraint": [ - 2110 + 2227 ], "update_columns": [ - 2135 + 2252 ], "where": [ - 2109 + 2226 ], "__typename": [ - 78 + 80 ] }, "lobby_players_order_by": { "captain": [ - 2829 + 2946 ], "invited_by_steam_id": [ - 2829 + 2946 ], "lobby": [ - 2090 + 2207 ], "lobby_id": [ - 2829 + 2946 ], "player": [ - 3800 + 3917 ], "status": [ - 2829 + 2946 ], "steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "lobby_players_pk_columns_input": { "lobby_id": [ - 4921 + 4993 ], "steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "lobby_players_select_column": {}, @@ -35562,1042 +37789,1042 @@ export default { "lobby_players_select_column_lobby_players_aggregate_bool_exp_bool_or_arguments_columns": {}, "lobby_players_set_input": { "captain": [ - 3 + 5 ], "invited_by_steam_id": [ - 180 + 252 ], "lobby_id": [ - 4921 + 4993 ], "status": [ - 764 + 881 ], "steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "lobby_players_stddev_fields": { "invited_by_steam_id": [ - 29 + 31 ], "steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "lobby_players_stddev_order_by": { "invited_by_steam_id": [ - 2829 + 2946 ], "steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "lobby_players_stddev_pop_fields": { "invited_by_steam_id": [ - 29 + 31 ], "steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "lobby_players_stddev_pop_order_by": { "invited_by_steam_id": [ - 2829 + 2946 ], "steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "lobby_players_stddev_samp_fields": { "invited_by_steam_id": [ - 29 + 31 ], "steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "lobby_players_stddev_samp_order_by": { "invited_by_steam_id": [ - 2829 + 2946 ], "steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "lobby_players_stream_cursor_input": { "initial_value": [ - 2132 + 2249 ], "ordering": [ - 236 + 308 ], "__typename": [ - 78 + 80 ] }, "lobby_players_stream_cursor_value_input": { "captain": [ - 3 + 5 ], "invited_by_steam_id": [ - 180 + 252 ], "lobby_id": [ - 4921 + 4993 ], "status": [ - 764 + 881 ], "steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "lobby_players_sum_fields": { "invited_by_steam_id": [ - 180 + 252 ], "steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "lobby_players_sum_order_by": { "invited_by_steam_id": [ - 2829 + 2946 ], "steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "lobby_players_update_column": {}, "lobby_players_updates": { "_inc": [ - 2111 + 2228 ], "_set": [ - 2124 + 2241 ], "where": [ - 2109 + 2226 ], "__typename": [ - 78 + 80 ] }, "lobby_players_var_pop_fields": { "invited_by_steam_id": [ - 29 + 31 ], "steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "lobby_players_var_pop_order_by": { "invited_by_steam_id": [ - 2829 + 2946 ], "steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "lobby_players_var_samp_fields": { "invited_by_steam_id": [ - 29 + 31 ], "steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "lobby_players_var_samp_order_by": { "invited_by_steam_id": [ - 2829 + 2946 ], "steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "lobby_players_variance_fields": { "invited_by_steam_id": [ - 29 + 31 ], "steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "lobby_players_variance_order_by": { "invited_by_steam_id": [ - 2829 + 2946 ], "steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "map_pools": { "e_type": [ - 779 + 896 ], "enabled": [ - 3 + 5 ], "id": [ - 4921 + 4993 ], "maps": [ - 5563, + 5635, { "distinct_on": [ - 5580, + 5652, "[v_pool_maps_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 5579, + 5651, "[v_pool_maps_order_by!]" ], "where": [ - 5572 + 5644 ] } ], "maps_aggregate": [ - 5564, + 5636, { "distinct_on": [ - 5580, + 5652, "[v_pool_maps_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 5579, + 5651, "[v_pool_maps_order_by!]" ], "where": [ - 5572 + 5644 ] } ], "seed": [ - 3 + 5 ], "type": [ - 784 + 901 ], "__typename": [ - 78 + 80 ] }, "map_pools_aggregate": { "aggregate": [ - 2145 + 2262 ], "nodes": [ - 2143 + 2260 ], "__typename": [ - 78 + 80 ] }, "map_pools_aggregate_fields": { "count": [ - 38, + 40, { "columns": [ - 2156, + 2273, "[map_pools_select_column!]" ], "distinct": [ - 3 + 5 ] } ], "max": [ - 2149 + 2266 ], "min": [ - 2150 + 2267 ], "__typename": [ - 78 + 80 ] }, "map_pools_bool_exp": { "_and": [ - 2146 + 2263 ], "_not": [ - 2146 + 2263 ], "_or": [ - 2146 + 2263 ], "e_type": [ - 782 + 899 ], "enabled": [ - 4 + 6 ], "id": [ - 4923 + 4995 ], "maps": [ - 5572 + 5644 ], "maps_aggregate": [ - 5565 + 5637 ], "seed": [ - 4 + 6 ], "type": [ - 785 + 902 ], "__typename": [ - 78 + 80 ] }, "map_pools_constraint": {}, "map_pools_insert_input": { "e_type": [ - 790 + 907 ], "enabled": [ - 3 + 5 ], "id": [ - 4921 + 4993 ], "maps": [ - 5571 + 5643 ], "seed": [ - 3 + 5 ], "type": [ - 784 + 901 ], "__typename": [ - 78 + 80 ] }, "map_pools_max_fields": { "id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "map_pools_min_fields": { "id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "map_pools_mutation_response": { "affected_rows": [ - 38 + 40 ], "returning": [ - 2143 + 2260 ], "__typename": [ - 78 + 80 ] }, "map_pools_obj_rel_insert_input": { "data": [ - 2148 + 2265 ], "on_conflict": [ - 2153 + 2270 ], "__typename": [ - 78 + 80 ] }, "map_pools_on_conflict": { "constraint": [ - 2147 + 2264 ], "update_columns": [ - 2160 + 2277 ], "where": [ - 2146 + 2263 ], "__typename": [ - 78 + 80 ] }, "map_pools_order_by": { "e_type": [ - 792 + 909 ], "enabled": [ - 2829 + 2946 ], "id": [ - 2829 + 2946 ], "maps_aggregate": [ - 5570 + 5642 ], "seed": [ - 2829 + 2946 ], "type": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "map_pools_pk_columns_input": { "id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "map_pools_select_column": {}, "map_pools_set_input": { "enabled": [ - 3 + 5 ], "id": [ - 4921 + 4993 ], "seed": [ - 3 + 5 ], "type": [ - 784 + 901 ], "__typename": [ - 78 + 80 ] }, "map_pools_stream_cursor_input": { "initial_value": [ - 2159 + 2276 ], "ordering": [ - 236 + 308 ], "__typename": [ - 78 + 80 ] }, "map_pools_stream_cursor_value_input": { "enabled": [ - 3 + 5 ], "id": [ - 4921 + 4993 ], "seed": [ - 3 + 5 ], "type": [ - 784 + 901 ], "__typename": [ - 78 + 80 ] }, "map_pools_update_column": {}, "map_pools_updates": { "_set": [ - 2157 + 2274 ], "where": [ - 2146 + 2263 ], "__typename": [ - 78 + 80 ] }, "maps": { "active_pool": [ - 3 + 5 ], "e_match_type": [ - 882 + 999 ], "enabled": [ - 3 + 5 ], "id": [ - 4921 + 4993 ], "label": [ - 78 + 80 ], "match_maps": [ - 2482, + 2599, { "distinct_on": [ - 2504, + 2621, "[match_maps_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2502, + 2619, "[match_maps_order_by!]" ], "where": [ - 2491 + 2608 ] } ], "match_maps_aggregate": [ - 2483, + 2600, { "distinct_on": [ - 2504, + 2621, "[match_maps_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2502, + 2619, "[match_maps_order_by!]" ], "where": [ - 2491 + 2608 ] } ], "match_veto_picks": [ - 2458, + 2575, { "distinct_on": [ - 2476, + 2593, "[match_map_veto_picks_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2474, + 2591, "[match_map_veto_picks_order_by!]" ], "where": [ - 2465 + 2582 ] } ], "match_veto_picks_aggregate": [ - 2459, + 2576, { "distinct_on": [ - 2476, + 2593, "[match_map_veto_picks_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2474, + 2591, "[match_map_veto_picks_order_by!]" ], "where": [ - 2465 + 2582 ] } ], "name": [ - 78 + 80 ], "patch": [ - 78 + 80 ], "poster": [ - 78 + 80 ], "type": [ - 887 + 1004 ], "workshop_map_id": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "maps_aggregate": { "aggregate": [ - 2168 + 2285 ], "nodes": [ - 2162 + 2279 ], "__typename": [ - 78 + 80 ] }, "maps_aggregate_bool_exp": { "bool_and": [ - 2165 + 2282 ], "bool_or": [ - 2166 + 2283 ], "count": [ - 2167 + 2284 ], "__typename": [ - 78 + 80 ] }, "maps_aggregate_bool_exp_bool_and": { "arguments": [ - 2184 + 2301 ], "distinct": [ - 3 + 5 ], "filter": [ - 2171 + 2288 ], "predicate": [ - 4 + 6 ], "__typename": [ - 78 + 80 ] }, "maps_aggregate_bool_exp_bool_or": { "arguments": [ - 2185 + 2302 ], "distinct": [ - 3 + 5 ], "filter": [ - 2171 + 2288 ], "predicate": [ - 4 + 6 ], "__typename": [ - 78 + 80 ] }, "maps_aggregate_bool_exp_count": { "arguments": [ - 2183 + 2300 ], "distinct": [ - 3 + 5 ], "filter": [ - 2171 + 2288 ], "predicate": [ - 39 + 41 ], "__typename": [ - 78 + 80 ] }, "maps_aggregate_fields": { "count": [ - 38, + 40, { "columns": [ - 2183, + 2300, "[maps_select_column!]" ], "distinct": [ - 3 + 5 ] } ], "max": [ - 2174 + 2291 ], "min": [ - 2176 + 2293 ], "__typename": [ - 78 + 80 ] }, "maps_aggregate_order_by": { "count": [ - 2829 + 2946 ], "max": [ - 2175 + 2292 ], "min": [ - 2177 + 2294 ], "__typename": [ - 78 + 80 ] }, "maps_arr_rel_insert_input": { "data": [ - 2173 + 2290 ], "on_conflict": [ - 2180 + 2297 ], "__typename": [ - 78 + 80 ] }, "maps_bool_exp": { "_and": [ - 2171 + 2288 ], "_not": [ - 2171 + 2288 ], "_or": [ - 2171 + 2288 ], "active_pool": [ - 4 + 6 ], "e_match_type": [ - 885 + 1002 ], "enabled": [ - 4 + 6 ], "id": [ - 4923 + 4995 ], "label": [ - 80 + 82 ], "match_maps": [ - 2491 + 2608 ], "match_maps_aggregate": [ - 2484 + 2601 ], "match_veto_picks": [ - 2465 + 2582 ], "match_veto_picks_aggregate": [ - 2460 + 2577 ], "name": [ - 80 + 82 ], "patch": [ - 80 + 82 ], "poster": [ - 80 + 82 ], "type": [ - 888 + 1005 ], "workshop_map_id": [ - 80 + 82 ], "__typename": [ - 78 + 80 ] }, "maps_constraint": {}, "maps_insert_input": { "active_pool": [ - 3 + 5 ], "e_match_type": [ - 893 + 1010 ], "enabled": [ - 3 + 5 ], "id": [ - 4921 + 4993 ], "label": [ - 78 + 80 ], "match_maps": [ - 2488 + 2605 ], "match_veto_picks": [ - 2464 + 2581 ], "name": [ - 78 + 80 ], "patch": [ - 78 + 80 ], "poster": [ - 78 + 80 ], "type": [ - 887 + 1004 ], "workshop_map_id": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "maps_max_fields": { "id": [ - 4921 + 4993 ], "label": [ - 78 + 80 ], "name": [ - 78 + 80 ], "patch": [ - 78 + 80 ], "poster": [ - 78 + 80 ], "workshop_map_id": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "maps_max_order_by": { "id": [ - 2829 + 2946 ], "label": [ - 2829 + 2946 ], "name": [ - 2829 + 2946 ], "patch": [ - 2829 + 2946 ], "poster": [ - 2829 + 2946 ], "workshop_map_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "maps_min_fields": { "id": [ - 4921 + 4993 ], "label": [ - 78 + 80 ], "name": [ - 78 + 80 ], "patch": [ - 78 + 80 ], "poster": [ - 78 + 80 ], "workshop_map_id": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "maps_min_order_by": { "id": [ - 2829 + 2946 ], "label": [ - 2829 + 2946 ], "name": [ - 2829 + 2946 ], "patch": [ - 2829 + 2946 ], "poster": [ - 2829 + 2946 ], "workshop_map_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "maps_mutation_response": { "affected_rows": [ - 38 + 40 ], "returning": [ - 2162 + 2279 ], "__typename": [ - 78 + 80 ] }, "maps_obj_rel_insert_input": { "data": [ - 2173 + 2290 ], "on_conflict": [ - 2180 + 2297 ], "__typename": [ - 78 + 80 ] }, "maps_on_conflict": { "constraint": [ - 2172 + 2289 ], "update_columns": [ - 2189 + 2306 ], "where": [ - 2171 + 2288 ], "__typename": [ - 78 + 80 ] }, "maps_order_by": { "active_pool": [ - 2829 + 2946 ], "e_match_type": [ - 895 + 1012 ], "enabled": [ - 2829 + 2946 ], "id": [ - 2829 + 2946 ], "label": [ - 2829 + 2946 ], "match_maps_aggregate": [ - 2487 + 2604 ], "match_veto_picks_aggregate": [ - 2463 + 2580 ], "name": [ - 2829 + 2946 ], "patch": [ - 2829 + 2946 ], "poster": [ - 2829 + 2946 ], "type": [ - 2829 + 2946 ], "workshop_map_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "maps_pk_columns_input": { "id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "maps_select_column": {}, @@ -36605,2729 +38832,2729 @@ export default { "maps_select_column_maps_aggregate_bool_exp_bool_or_arguments_columns": {}, "maps_set_input": { "active_pool": [ - 3 + 5 ], "enabled": [ - 3 + 5 ], "id": [ - 4921 + 4993 ], "label": [ - 78 + 80 ], "name": [ - 78 + 80 ], "patch": [ - 78 + 80 ], "poster": [ - 78 + 80 ], "type": [ - 887 + 1004 ], "workshop_map_id": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "maps_stream_cursor_input": { "initial_value": [ - 2188 + 2305 ], "ordering": [ - 236 + 308 ], "__typename": [ - 78 + 80 ] }, "maps_stream_cursor_value_input": { "active_pool": [ - 3 + 5 ], "enabled": [ - 3 + 5 ], "id": [ - 4921 + 4993 ], "label": [ - 78 + 80 ], "name": [ - 78 + 80 ], "patch": [ - 78 + 80 ], "poster": [ - 78 + 80 ], "type": [ - 887 + 1004 ], "workshop_map_id": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "maps_update_column": {}, "maps_updates": { "_set": [ - 2186 + 2303 ], "where": [ - 2171 + 2288 ], "__typename": [ - 78 + 80 ] }, "match_clips": { "created_at": [ - 4376 + 4493 ], "download_url": [ - 78 + 80 ], "duration_ms": [ - 38 + 40 ], "file": [ - 78 + 80 ], "id": [ - 4921 + 4993 ], "kills_count": [ - 38 + 40 ], "match_map": [ - 2482 + 2599 ], "match_map_demo": [ - 2366 + 2483 ], "match_map_demo_id": [ - 4921 + 4993 ], "match_map_id": [ - 4921 + 4993 ], "render_jobs": [ - 185, + 257, { "distinct_on": [ - 213, + 285, "[clip_render_jobs_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 210, + 282, "[clip_render_jobs_order_by!]" ], "where": [ - 197 + 269 ] } ], "render_jobs_aggregate": [ - 186, + 258, { "distinct_on": [ - 213, + 285, "[clip_render_jobs_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 210, + 282, "[clip_render_jobs_order_by!]" ], "where": [ - 197 + 269 ] } ], "round": [ - 38 + 40 ], "size": [ - 180 + 252 ], "target": [ - 3787 + 3904 ], "target_steam_id": [ - 180 + 252 ], "thumbnail_download_url": [ - 78 + 80 ], "thumbnail_url": [ - 78 + 80 ], "title": [ - 78 + 80 ], "user": [ - 3787 + 3904 ], "user_steam_id": [ - 180 + 252 ], "views_count": [ - 38 + 40 ], "visibility": [ - 805 + 922 ], "__typename": [ - 78 + 80 ] }, "match_clips_aggregate": { "aggregate": [ - 2195 + 2312 ], "nodes": [ - 2191 + 2308 ], "__typename": [ - 78 + 80 ] }, "match_clips_aggregate_bool_exp": { "count": [ - 2194 + 2311 ], "__typename": [ - 78 + 80 ] }, "match_clips_aggregate_bool_exp_count": { "arguments": [ - 2213 + 2330 ], "distinct": [ - 3 + 5 ], "filter": [ - 2200 + 2317 ], "predicate": [ - 39 + 41 ], "__typename": [ - 78 + 80 ] }, "match_clips_aggregate_fields": { "avg": [ - 2198 + 2315 ], "count": [ - 38, + 40, { "columns": [ - 2213, + 2330, "[match_clips_select_column!]" ], "distinct": [ - 3 + 5 ] } ], "max": [ - 2204 + 2321 ], "min": [ - 2206 + 2323 ], "stddev": [ - 2215 + 2332 ], "stddev_pop": [ - 2217 + 2334 ], "stddev_samp": [ - 2219 + 2336 ], "sum": [ - 2223 + 2340 ], "var_pop": [ - 2227 + 2344 ], "var_samp": [ - 2229 + 2346 ], "variance": [ - 2231 + 2348 ], "__typename": [ - 78 + 80 ] }, "match_clips_aggregate_order_by": { "avg": [ - 2199 + 2316 ], "count": [ - 2829 + 2946 ], "max": [ - 2205 + 2322 ], "min": [ - 2207 + 2324 ], "stddev": [ - 2216 + 2333 ], "stddev_pop": [ - 2218 + 2335 ], "stddev_samp": [ - 2220 + 2337 ], "sum": [ - 2224 + 2341 ], "var_pop": [ - 2228 + 2345 ], "var_samp": [ - 2230 + 2347 ], "variance": [ - 2232 + 2349 ], "__typename": [ - 78 + 80 ] }, "match_clips_arr_rel_insert_input": { "data": [ - 2203 + 2320 ], "on_conflict": [ - 2210 + 2327 ], "__typename": [ - 78 + 80 ] }, "match_clips_avg_fields": { "duration_ms": [ - 29 + 31 ], "kills_count": [ - 29 + 31 ], "round": [ - 29 + 31 ], "size": [ - 29 + 31 ], "target_steam_id": [ - 29 + 31 ], "user_steam_id": [ - 29 + 31 ], "views_count": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "match_clips_avg_order_by": { "duration_ms": [ - 2829 + 2946 ], "kills_count": [ - 2829 + 2946 ], "round": [ - 2829 + 2946 ], "size": [ - 2829 + 2946 ], "target_steam_id": [ - 2829 + 2946 ], "user_steam_id": [ - 2829 + 2946 ], "views_count": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "match_clips_bool_exp": { "_and": [ - 2200 + 2317 ], "_not": [ - 2200 + 2317 ], "_or": [ - 2200 + 2317 ], "created_at": [ - 4377 + 4494 ], "download_url": [ - 80 + 82 ], "duration_ms": [ - 39 + 41 ], "file": [ - 80 + 82 ], "id": [ - 4923 + 4995 ], "kills_count": [ - 39 + 41 ], "match_map": [ - 2491 + 2608 ], "match_map_demo": [ - 2378 + 2495 ], "match_map_demo_id": [ - 4923 + 4995 ], "match_map_id": [ - 4923 + 4995 ], "render_jobs": [ - 197 + 269 ], "render_jobs_aggregate": [ - 187 + 259 ], "round": [ - 39 + 41 ], "size": [ - 182 + 254 ], "target": [ - 3791 + 3908 ], "target_steam_id": [ - 182 + 254 ], "thumbnail_download_url": [ - 80 + 82 ], "thumbnail_url": [ - 80 + 82 ], "title": [ - 80 + 82 ], "user": [ - 3791 + 3908 ], "user_steam_id": [ - 182 + 254 ], "views_count": [ - 39 + 41 ], "visibility": [ - 806 + 923 ], "__typename": [ - 78 + 80 ] }, "match_clips_constraint": {}, "match_clips_inc_input": { "duration_ms": [ - 38 + 40 ], "kills_count": [ - 38 + 40 ], "round": [ - 38 + 40 ], "size": [ - 180 + 252 ], "target_steam_id": [ - 180 + 252 ], "user_steam_id": [ - 180 + 252 ], "views_count": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "match_clips_insert_input": { "created_at": [ - 4376 + 4493 ], "duration_ms": [ - 38 + 40 ], "file": [ - 78 + 80 ], "id": [ - 4921 + 4993 ], "kills_count": [ - 38 + 40 ], "match_map": [ - 2500 + 2617 ], "match_map_demo": [ - 2390 + 2507 ], "match_map_demo_id": [ - 4921 + 4993 ], "match_map_id": [ - 4921 + 4993 ], "render_jobs": [ - 194 + 266 ], "round": [ - 38 + 40 ], "size": [ - 180 + 252 ], "target": [ - 3798 + 3915 ], "target_steam_id": [ - 180 + 252 ], "thumbnail_url": [ - 78 + 80 ], "title": [ - 78 + 80 ], "user": [ - 3798 + 3915 ], "user_steam_id": [ - 180 + 252 ], "views_count": [ - 38 + 40 ], "visibility": [ - 805 + 922 ], "__typename": [ - 78 + 80 ] }, "match_clips_max_fields": { "created_at": [ - 4376 + 4493 ], "download_url": [ - 78 + 80 ], "duration_ms": [ - 38 + 40 ], "file": [ - 78 + 80 ], "id": [ - 4921 + 4993 ], "kills_count": [ - 38 + 40 ], "match_map_demo_id": [ - 4921 + 4993 ], "match_map_id": [ - 4921 + 4993 ], "round": [ - 38 + 40 ], "size": [ - 180 + 252 ], "target_steam_id": [ - 180 + 252 ], "thumbnail_download_url": [ - 78 + 80 ], "thumbnail_url": [ - 78 + 80 ], "title": [ - 78 + 80 ], "user_steam_id": [ - 180 + 252 ], "views_count": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "match_clips_max_order_by": { "created_at": [ - 2829 + 2946 ], "duration_ms": [ - 2829 + 2946 ], "file": [ - 2829 + 2946 ], "id": [ - 2829 + 2946 ], "kills_count": [ - 2829 + 2946 ], "match_map_demo_id": [ - 2829 + 2946 ], "match_map_id": [ - 2829 + 2946 ], "round": [ - 2829 + 2946 ], "size": [ - 2829 + 2946 ], "target_steam_id": [ - 2829 + 2946 ], "thumbnail_url": [ - 2829 + 2946 ], "title": [ - 2829 + 2946 ], "user_steam_id": [ - 2829 + 2946 ], "views_count": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "match_clips_min_fields": { "created_at": [ - 4376 + 4493 ], "download_url": [ - 78 + 80 ], "duration_ms": [ - 38 + 40 ], "file": [ - 78 + 80 ], "id": [ - 4921 + 4993 ], "kills_count": [ - 38 + 40 ], "match_map_demo_id": [ - 4921 + 4993 ], "match_map_id": [ - 4921 + 4993 ], "round": [ - 38 + 40 ], "size": [ - 180 + 252 ], "target_steam_id": [ - 180 + 252 ], "thumbnail_download_url": [ - 78 + 80 ], "thumbnail_url": [ - 78 + 80 ], "title": [ - 78 + 80 ], "user_steam_id": [ - 180 + 252 ], "views_count": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "match_clips_min_order_by": { "created_at": [ - 2829 + 2946 ], "duration_ms": [ - 2829 + 2946 ], "file": [ - 2829 + 2946 ], "id": [ - 2829 + 2946 ], "kills_count": [ - 2829 + 2946 ], "match_map_demo_id": [ - 2829 + 2946 ], "match_map_id": [ - 2829 + 2946 ], "round": [ - 2829 + 2946 ], "size": [ - 2829 + 2946 ], "target_steam_id": [ - 2829 + 2946 ], "thumbnail_url": [ - 2829 + 2946 ], "title": [ - 2829 + 2946 ], "user_steam_id": [ - 2829 + 2946 ], "views_count": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "match_clips_mutation_response": { "affected_rows": [ - 38 + 40 ], "returning": [ - 2191 + 2308 ], "__typename": [ - 78 + 80 ] }, "match_clips_obj_rel_insert_input": { "data": [ - 2203 + 2320 ], "on_conflict": [ - 2210 + 2327 ], "__typename": [ - 78 + 80 ] }, "match_clips_on_conflict": { "constraint": [ - 2201 + 2318 ], "update_columns": [ - 2225 + 2342 ], "where": [ - 2200 + 2317 ], "__typename": [ - 78 + 80 ] }, "match_clips_order_by": { "created_at": [ - 2829 + 2946 ], "download_url": [ - 2829 + 2946 ], "duration_ms": [ - 2829 + 2946 ], "file": [ - 2829 + 2946 ], "id": [ - 2829 + 2946 ], "kills_count": [ - 2829 + 2946 ], "match_map": [ - 2502 + 2619 ], "match_map_demo": [ - 2392 + 2509 ], "match_map_demo_id": [ - 2829 + 2946 ], "match_map_id": [ - 2829 + 2946 ], "render_jobs_aggregate": [ - 192 + 264 ], "round": [ - 2829 + 2946 ], "size": [ - 2829 + 2946 ], "target": [ - 3800 + 3917 ], "target_steam_id": [ - 2829 + 2946 ], "thumbnail_download_url": [ - 2829 + 2946 ], "thumbnail_url": [ - 2829 + 2946 ], "title": [ - 2829 + 2946 ], "user": [ - 3800 + 3917 ], "user_steam_id": [ - 2829 + 2946 ], "views_count": [ - 2829 + 2946 ], "visibility": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "match_clips_pk_columns_input": { "id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "match_clips_select_column": {}, "match_clips_set_input": { "created_at": [ - 4376 + 4493 ], "duration_ms": [ - 38 + 40 ], "file": [ - 78 + 80 ], "id": [ - 4921 + 4993 ], "kills_count": [ - 38 + 40 ], "match_map_demo_id": [ - 4921 + 4993 ], "match_map_id": [ - 4921 + 4993 ], "round": [ - 38 + 40 ], "size": [ - 180 + 252 ], "target_steam_id": [ - 180 + 252 ], "thumbnail_url": [ - 78 + 80 ], "title": [ - 78 + 80 ], "user_steam_id": [ - 180 + 252 ], "views_count": [ - 38 + 40 ], "visibility": [ - 805 + 922 ], "__typename": [ - 78 + 80 ] }, "match_clips_stddev_fields": { "duration_ms": [ - 29 + 31 ], "kills_count": [ - 29 + 31 ], "round": [ - 29 + 31 ], "size": [ - 29 + 31 ], "target_steam_id": [ - 29 + 31 ], "user_steam_id": [ - 29 + 31 ], "views_count": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "match_clips_stddev_order_by": { "duration_ms": [ - 2829 + 2946 ], "kills_count": [ - 2829 + 2946 ], "round": [ - 2829 + 2946 ], "size": [ - 2829 + 2946 ], "target_steam_id": [ - 2829 + 2946 ], "user_steam_id": [ - 2829 + 2946 ], "views_count": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "match_clips_stddev_pop_fields": { "duration_ms": [ - 29 + 31 ], "kills_count": [ - 29 + 31 ], "round": [ - 29 + 31 ], "size": [ - 29 + 31 ], "target_steam_id": [ - 29 + 31 ], "user_steam_id": [ - 29 + 31 ], "views_count": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "match_clips_stddev_pop_order_by": { "duration_ms": [ - 2829 + 2946 ], "kills_count": [ - 2829 + 2946 ], "round": [ - 2829 + 2946 ], "size": [ - 2829 + 2946 ], "target_steam_id": [ - 2829 + 2946 ], "user_steam_id": [ - 2829 + 2946 ], "views_count": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "match_clips_stddev_samp_fields": { "duration_ms": [ - 29 + 31 ], "kills_count": [ - 29 + 31 ], "round": [ - 29 + 31 ], "size": [ - 29 + 31 ], "target_steam_id": [ - 29 + 31 ], "user_steam_id": [ - 29 + 31 ], "views_count": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "match_clips_stddev_samp_order_by": { "duration_ms": [ - 2829 + 2946 ], "kills_count": [ - 2829 + 2946 ], "round": [ - 2829 + 2946 ], "size": [ - 2829 + 2946 ], "target_steam_id": [ - 2829 + 2946 ], "user_steam_id": [ - 2829 + 2946 ], "views_count": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "match_clips_stream_cursor_input": { "initial_value": [ - 2222 + 2339 ], "ordering": [ - 236 + 308 ], "__typename": [ - 78 + 80 ] }, "match_clips_stream_cursor_value_input": { "created_at": [ - 4376 + 4493 ], "duration_ms": [ - 38 + 40 ], "file": [ - 78 + 80 ], "id": [ - 4921 + 4993 ], "kills_count": [ - 38 + 40 ], "match_map_demo_id": [ - 4921 + 4993 ], "match_map_id": [ - 4921 + 4993 ], "round": [ - 38 + 40 ], "size": [ - 180 + 252 ], "target_steam_id": [ - 180 + 252 ], "thumbnail_url": [ - 78 + 80 ], "title": [ - 78 + 80 ], "user_steam_id": [ - 180 + 252 ], "views_count": [ - 38 + 40 ], "visibility": [ - 805 + 922 ], "__typename": [ - 78 + 80 ] }, "match_clips_sum_fields": { "duration_ms": [ - 38 + 40 ], "kills_count": [ - 38 + 40 ], "round": [ - 38 + 40 ], "size": [ - 180 + 252 ], "target_steam_id": [ - 180 + 252 ], "user_steam_id": [ - 180 + 252 ], "views_count": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "match_clips_sum_order_by": { "duration_ms": [ - 2829 + 2946 ], "kills_count": [ - 2829 + 2946 ], "round": [ - 2829 + 2946 ], "size": [ - 2829 + 2946 ], "target_steam_id": [ - 2829 + 2946 ], "user_steam_id": [ - 2829 + 2946 ], "views_count": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "match_clips_update_column": {}, "match_clips_updates": { "_inc": [ - 2202 + 2319 ], "_set": [ - 2214 + 2331 ], "where": [ - 2200 + 2317 ], "__typename": [ - 78 + 80 ] }, "match_clips_var_pop_fields": { "duration_ms": [ - 29 + 31 ], "kills_count": [ - 29 + 31 ], "round": [ - 29 + 31 ], "size": [ - 29 + 31 ], "target_steam_id": [ - 29 + 31 ], "user_steam_id": [ - 29 + 31 ], "views_count": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "match_clips_var_pop_order_by": { "duration_ms": [ - 2829 + 2946 ], "kills_count": [ - 2829 + 2946 ], "round": [ - 2829 + 2946 ], "size": [ - 2829 + 2946 ], "target_steam_id": [ - 2829 + 2946 ], "user_steam_id": [ - 2829 + 2946 ], "views_count": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "match_clips_var_samp_fields": { "duration_ms": [ - 29 + 31 ], "kills_count": [ - 29 + 31 ], "round": [ - 29 + 31 ], "size": [ - 29 + 31 ], "target_steam_id": [ - 29 + 31 ], "user_steam_id": [ - 29 + 31 ], "views_count": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "match_clips_var_samp_order_by": { "duration_ms": [ - 2829 + 2946 ], "kills_count": [ - 2829 + 2946 ], "round": [ - 2829 + 2946 ], "size": [ - 2829 + 2946 ], "target_steam_id": [ - 2829 + 2946 ], "user_steam_id": [ - 2829 + 2946 ], "views_count": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "match_clips_variance_fields": { "duration_ms": [ - 29 + 31 ], "kills_count": [ - 29 + 31 ], "round": [ - 29 + 31 ], "size": [ - 29 + 31 ], "target_steam_id": [ - 29 + 31 ], "user_steam_id": [ - 29 + 31 ], "views_count": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "match_clips_variance_order_by": { "duration_ms": [ - 2829 + 2946 ], "kills_count": [ - 2829 + 2946 ], "round": [ - 2829 + 2946 ], "size": [ - 2829 + 2946 ], "target_steam_id": [ - 2829 + 2946 ], "user_steam_id": [ - 2829 + 2946 ], "views_count": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "match_demo_sessions": { "created_at": [ - 4376 + 4493 ], "error_message": [ - 78 + 80 ], "game_server_node": [ - 1576 + 1693 ], "game_server_node_id": [ - 78 + 80 ], "id": [ - 4921 + 4993 ], "k8s_job_name": [ - 78 + 80 ], "last_activity_at": [ - 4376 + 4493 ], "last_status_at": [ - 4376 + 4493 ], "match": [ - 2644 + 2761 ], "match_id": [ - 4921 + 4993 ], "match_map": [ - 2482 + 2599 ], "match_map_demo": [ - 2366 + 2483 ], "match_map_demo_id": [ - 4921 + 4993 ], "match_map_id": [ - 4921 + 4993 ], "status": [ - 78 + 80 ], "status_history": [ - 1700, + 1817, { "path": [ - 78 + 80 ] } ], "stream_url": [ - 78 + 80 ], "watcher": [ - 3787 + 3904 ], "watcher_steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "match_demo_sessions_aggregate": { "aggregate": [ - 2237 + 2354 ], "nodes": [ - 2233 + 2350 ], "__typename": [ - 78 + 80 ] }, "match_demo_sessions_aggregate_bool_exp": { "count": [ - 2236 + 2353 ], "__typename": [ - 78 + 80 ] }, "match_demo_sessions_aggregate_bool_exp_count": { "arguments": [ - 2259 + 2376 ], "distinct": [ - 3 + 5 ], "filter": [ - 2243 + 2360 ], "predicate": [ - 39 + 41 ], "__typename": [ - 78 + 80 ] }, "match_demo_sessions_aggregate_fields": { "avg": [ - 2241 + 2358 ], "count": [ - 38, + 40, { "columns": [ - 2259, + 2376, "[match_demo_sessions_select_column!]" ], "distinct": [ - 3 + 5 ] } ], "max": [ - 2250 + 2367 ], "min": [ - 2252 + 2369 ], "stddev": [ - 2261 + 2378 ], "stddev_pop": [ - 2263 + 2380 ], "stddev_samp": [ - 2265 + 2382 ], "sum": [ - 2269 + 2386 ], "var_pop": [ - 2273 + 2390 ], "var_samp": [ - 2275 + 2392 ], "variance": [ - 2277 + 2394 ], "__typename": [ - 78 + 80 ] }, "match_demo_sessions_aggregate_order_by": { "avg": [ - 2242 + 2359 ], "count": [ - 2829 + 2946 ], "max": [ - 2251 + 2368 ], "min": [ - 2253 + 2370 ], "stddev": [ - 2262 + 2379 ], "stddev_pop": [ - 2264 + 2381 ], "stddev_samp": [ - 2266 + 2383 ], "sum": [ - 2270 + 2387 ], "var_pop": [ - 2274 + 2391 ], "var_samp": [ - 2276 + 2393 ], "variance": [ - 2278 + 2395 ], "__typename": [ - 78 + 80 ] }, "match_demo_sessions_append_input": { "status_history": [ - 1700 + 1817 ], "__typename": [ - 78 + 80 ] }, "match_demo_sessions_arr_rel_insert_input": { "data": [ - 2249 + 2366 ], "on_conflict": [ - 2255 + 2372 ], "__typename": [ - 78 + 80 ] }, "match_demo_sessions_avg_fields": { "watcher_steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "match_demo_sessions_avg_order_by": { "watcher_steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "match_demo_sessions_bool_exp": { "_and": [ - 2243 + 2360 ], "_not": [ - 2243 + 2360 ], "_or": [ - 2243 + 2360 ], "created_at": [ - 4377 + 4494 ], "error_message": [ - 80 + 82 ], "game_server_node": [ - 1588 + 1705 ], "game_server_node_id": [ - 80 + 82 ], "id": [ - 4923 + 4995 ], "k8s_job_name": [ - 80 + 82 ], "last_activity_at": [ - 4377 + 4494 ], "last_status_at": [ - 4377 + 4494 ], "match": [ - 2653 + 2770 ], "match_id": [ - 4923 + 4995 ], "match_map": [ - 2491 + 2608 ], "match_map_demo": [ - 2378 + 2495 ], "match_map_demo_id": [ - 4923 + 4995 ], "match_map_id": [ - 4923 + 4995 ], "status": [ - 80 + 82 ], "status_history": [ - 1702 + 1819 ], "stream_url": [ - 80 + 82 ], "watcher": [ - 3791 + 3908 ], "watcher_steam_id": [ - 182 + 254 ], "__typename": [ - 78 + 80 ] }, "match_demo_sessions_constraint": {}, "match_demo_sessions_delete_at_path_input": { "status_history": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "match_demo_sessions_delete_elem_input": { "status_history": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "match_demo_sessions_delete_key_input": { "status_history": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "match_demo_sessions_inc_input": { "watcher_steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "match_demo_sessions_insert_input": { "created_at": [ - 4376 + 4493 ], "error_message": [ - 78 + 80 ], "game_server_node": [ - 1600 + 1717 ], "game_server_node_id": [ - 78 + 80 ], "id": [ - 4921 + 4993 ], "k8s_job_name": [ - 78 + 80 ], "last_activity_at": [ - 4376 + 4493 ], "last_status_at": [ - 4376 + 4493 ], "match": [ - 2662 + 2779 ], "match_id": [ - 4921 + 4993 ], "match_map": [ - 2500 + 2617 ], "match_map_demo": [ - 2390 + 2507 ], "match_map_demo_id": [ - 4921 + 4993 ], "match_map_id": [ - 4921 + 4993 ], "status": [ - 78 + 80 ], "status_history": [ - 1700 + 1817 ], "stream_url": [ - 78 + 80 ], "watcher": [ - 3798 + 3915 ], "watcher_steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "match_demo_sessions_max_fields": { "created_at": [ - 4376 + 4493 ], "error_message": [ - 78 + 80 ], "game_server_node_id": [ - 78 + 80 ], "id": [ - 4921 + 4993 ], "k8s_job_name": [ - 78 + 80 ], "last_activity_at": [ - 4376 + 4493 ], "last_status_at": [ - 4376 + 4493 ], "match_id": [ - 4921 + 4993 ], "match_map_demo_id": [ - 4921 + 4993 ], "match_map_id": [ - 4921 + 4993 ], "status": [ - 78 + 80 ], "stream_url": [ - 78 + 80 ], "watcher_steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "match_demo_sessions_max_order_by": { "created_at": [ - 2829 + 2946 ], "error_message": [ - 2829 + 2946 ], "game_server_node_id": [ - 2829 + 2946 ], "id": [ - 2829 + 2946 ], "k8s_job_name": [ - 2829 + 2946 ], "last_activity_at": [ - 2829 + 2946 ], "last_status_at": [ - 2829 + 2946 ], "match_id": [ - 2829 + 2946 ], "match_map_demo_id": [ - 2829 + 2946 ], "match_map_id": [ - 2829 + 2946 ], "status": [ - 2829 + 2946 ], "stream_url": [ - 2829 + 2946 ], "watcher_steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "match_demo_sessions_min_fields": { "created_at": [ - 4376 + 4493 ], "error_message": [ - 78 + 80 ], "game_server_node_id": [ - 78 + 80 ], "id": [ - 4921 + 4993 ], "k8s_job_name": [ - 78 + 80 ], "last_activity_at": [ - 4376 + 4493 ], "last_status_at": [ - 4376 + 4493 ], "match_id": [ - 4921 + 4993 ], "match_map_demo_id": [ - 4921 + 4993 ], "match_map_id": [ - 4921 + 4993 ], "status": [ - 78 + 80 ], "stream_url": [ - 78 + 80 ], "watcher_steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "match_demo_sessions_min_order_by": { "created_at": [ - 2829 + 2946 ], "error_message": [ - 2829 + 2946 ], "game_server_node_id": [ - 2829 + 2946 ], "id": [ - 2829 + 2946 ], "k8s_job_name": [ - 2829 + 2946 ], "last_activity_at": [ - 2829 + 2946 ], "last_status_at": [ - 2829 + 2946 ], "match_id": [ - 2829 + 2946 ], "match_map_demo_id": [ - 2829 + 2946 ], "match_map_id": [ - 2829 + 2946 ], "status": [ - 2829 + 2946 ], "stream_url": [ - 2829 + 2946 ], "watcher_steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "match_demo_sessions_mutation_response": { "affected_rows": [ - 38 + 40 ], "returning": [ - 2233 + 2350 ], "__typename": [ - 78 + 80 ] }, "match_demo_sessions_on_conflict": { "constraint": [ - 2244 + 2361 ], "update_columns": [ - 2271 + 2388 ], "where": [ - 2243 + 2360 ], "__typename": [ - 78 + 80 ] }, "match_demo_sessions_order_by": { "created_at": [ - 2829 + 2946 ], "error_message": [ - 2829 + 2946 ], "game_server_node": [ - 1602 + 1719 ], "game_server_node_id": [ - 2829 + 2946 ], "id": [ - 2829 + 2946 ], "k8s_job_name": [ - 2829 + 2946 ], "last_activity_at": [ - 2829 + 2946 ], "last_status_at": [ - 2829 + 2946 ], "match": [ - 2664 + 2781 ], "match_id": [ - 2829 + 2946 ], "match_map": [ - 2502 + 2619 ], "match_map_demo": [ - 2392 + 2509 ], "match_map_demo_id": [ - 2829 + 2946 ], "match_map_id": [ - 2829 + 2946 ], "status": [ - 2829 + 2946 ], "status_history": [ - 2829 + 2946 ], "stream_url": [ - 2829 + 2946 ], "watcher": [ - 3800 + 3917 ], "watcher_steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "match_demo_sessions_pk_columns_input": { "id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "match_demo_sessions_prepend_input": { "status_history": [ - 1700 + 1817 ], "__typename": [ - 78 + 80 ] }, "match_demo_sessions_select_column": {}, "match_demo_sessions_set_input": { "created_at": [ - 4376 + 4493 ], "error_message": [ - 78 + 80 ], "game_server_node_id": [ - 78 + 80 ], "id": [ - 4921 + 4993 ], "k8s_job_name": [ - 78 + 80 ], "last_activity_at": [ - 4376 + 4493 ], "last_status_at": [ - 4376 + 4493 ], "match_id": [ - 4921 + 4993 ], "match_map_demo_id": [ - 4921 + 4993 ], "match_map_id": [ - 4921 + 4993 ], "status": [ - 78 + 80 ], "status_history": [ - 1700 + 1817 ], "stream_url": [ - 78 + 80 ], "watcher_steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "match_demo_sessions_stddev_fields": { "watcher_steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "match_demo_sessions_stddev_order_by": { "watcher_steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "match_demo_sessions_stddev_pop_fields": { "watcher_steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "match_demo_sessions_stddev_pop_order_by": { "watcher_steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "match_demo_sessions_stddev_samp_fields": { "watcher_steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "match_demo_sessions_stddev_samp_order_by": { "watcher_steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "match_demo_sessions_stream_cursor_input": { "initial_value": [ - 2268 + 2385 ], "ordering": [ - 236 + 308 ], "__typename": [ - 78 + 80 ] }, "match_demo_sessions_stream_cursor_value_input": { "created_at": [ - 4376 + 4493 ], "error_message": [ - 78 + 80 ], "game_server_node_id": [ - 78 + 80 ], "id": [ - 4921 + 4993 ], "k8s_job_name": [ - 78 + 80 ], "last_activity_at": [ - 4376 + 4493 ], "last_status_at": [ - 4376 + 4493 ], "match_id": [ - 4921 + 4993 ], "match_map_demo_id": [ - 4921 + 4993 ], "match_map_id": [ - 4921 + 4993 ], "status": [ - 78 + 80 ], "status_history": [ - 1700 + 1817 ], "stream_url": [ - 78 + 80 ], "watcher_steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "match_demo_sessions_sum_fields": { "watcher_steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "match_demo_sessions_sum_order_by": { "watcher_steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "match_demo_sessions_update_column": {}, "match_demo_sessions_updates": { "_append": [ - 2239 + 2356 ], "_delete_at_path": [ - 2245 + 2362 ], "_delete_elem": [ - 2246 + 2363 ], "_delete_key": [ - 2247 + 2364 ], "_inc": [ - 2248 + 2365 ], "_prepend": [ - 2258 + 2375 ], "_set": [ - 2260 + 2377 ], "where": [ - 2243 + 2360 ], "__typename": [ - 78 + 80 ] }, "match_demo_sessions_var_pop_fields": { "watcher_steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "match_demo_sessions_var_pop_order_by": { "watcher_steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "match_demo_sessions_var_samp_fields": { "watcher_steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "match_demo_sessions_var_samp_order_by": { "watcher_steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "match_demo_sessions_variance_fields": { "watcher_steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "match_demo_sessions_variance_order_by": { "watcher_steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "match_lineup_players": { "captain": [ - 3 + 5 ], "checked_in": [ - 3 + 5 ], "discord_id": [ - 78 + 80 ], "id": [ - 4921 + 4993 ], "lineup": [ - 2324 + 2441 ], "match_lineup_id": [ - 4921 + 4993 ], "placeholder_name": [ - 78 + 80 ], "player": [ - 3787 + 3904 ], "steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "match_lineup_players_aggregate": { "aggregate": [ - 2285 + 2402 ], "nodes": [ - 2279 + 2396 ], "__typename": [ - 78 + 80 ] }, "match_lineup_players_aggregate_bool_exp": { "bool_and": [ - 2282 + 2399 ], "bool_or": [ - 2283 + 2400 ], "count": [ - 2284 + 2401 ], "__typename": [ - 78 + 80 ] }, "match_lineup_players_aggregate_bool_exp_bool_and": { "arguments": [ - 2303 + 2420 ], "distinct": [ - 3 + 5 ], "filter": [ - 2290 + 2407 ], "predicate": [ - 4 + 6 ], "__typename": [ - 78 + 80 ] }, "match_lineup_players_aggregate_bool_exp_bool_or": { "arguments": [ - 2304 + 2421 ], "distinct": [ - 3 + 5 ], "filter": [ - 2290 + 2407 ], "predicate": [ - 4 + 6 ], "__typename": [ - 78 + 80 ] }, "match_lineup_players_aggregate_bool_exp_count": { "arguments": [ - 2302 + 2419 ], "distinct": [ - 3 + 5 ], "filter": [ - 2290 + 2407 ], "predicate": [ - 39 + 41 ], "__typename": [ - 78 + 80 ] }, "match_lineup_players_aggregate_fields": { "avg": [ - 2288 + 2405 ], "count": [ - 38, + 40, { "columns": [ - 2302, + 2419, "[match_lineup_players_select_column!]" ], "distinct": [ - 3 + 5 ] } ], "max": [ - 2294 + 2411 ], "min": [ - 2296 + 2413 ], "stddev": [ - 2306 + 2423 ], "stddev_pop": [ - 2308 + 2425 ], "stddev_samp": [ - 2310 + 2427 ], "sum": [ - 2314 + 2431 ], "var_pop": [ - 2318 + 2435 ], "var_samp": [ - 2320 + 2437 ], "variance": [ - 2322 + 2439 ], "__typename": [ - 78 + 80 ] }, "match_lineup_players_aggregate_order_by": { "avg": [ - 2289 + 2406 ], "count": [ - 2829 + 2946 ], "max": [ - 2295 + 2412 ], "min": [ - 2297 + 2414 ], "stddev": [ - 2307 + 2424 ], "stddev_pop": [ - 2309 + 2426 ], "stddev_samp": [ - 2311 + 2428 ], "sum": [ - 2315 + 2432 ], "var_pop": [ - 2319 + 2436 ], "var_samp": [ - 2321 + 2438 ], "variance": [ - 2323 + 2440 ], "__typename": [ - 78 + 80 ] }, "match_lineup_players_arr_rel_insert_input": { "data": [ - 2293 + 2410 ], "on_conflict": [ - 2299 + 2416 ], "__typename": [ - 78 + 80 ] }, "match_lineup_players_avg_fields": { "steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "match_lineup_players_avg_order_by": { "steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "match_lineup_players_bool_exp": { "_and": [ - 2290 + 2407 ], "_not": [ - 2290 + 2407 ], "_or": [ - 2290 + 2407 ], "captain": [ - 4 + 6 ], "checked_in": [ - 4 + 6 ], "discord_id": [ - 80 + 82 ], "id": [ - 4923 + 4995 ], "lineup": [ - 2333 + 2450 ], "match_lineup_id": [ - 4923 + 4995 ], "placeholder_name": [ - 80 + 82 ], "player": [ - 3791 + 3908 ], "steam_id": [ - 182 + 254 ], "__typename": [ - 78 + 80 ] }, "match_lineup_players_constraint": {}, "match_lineup_players_inc_input": { "steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "match_lineup_players_insert_input": { "captain": [ - 3 + 5 ], "checked_in": [ - 3 + 5 ], "discord_id": [ - 78 + 80 ], "id": [ - 4921 + 4993 ], "lineup": [ - 2342 + 2459 ], "match_lineup_id": [ - 4921 + 4993 ], "placeholder_name": [ - 78 + 80 ], "player": [ - 3798 + 3915 ], "steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "match_lineup_players_max_fields": { "discord_id": [ - 78 + 80 ], "id": [ - 4921 + 4993 ], "match_lineup_id": [ - 4921 + 4993 ], "placeholder_name": [ - 78 + 80 ], "steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "match_lineup_players_max_order_by": { "discord_id": [ - 2829 + 2946 ], "id": [ - 2829 + 2946 ], "match_lineup_id": [ - 2829 + 2946 ], "placeholder_name": [ - 2829 + 2946 ], "steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "match_lineup_players_min_fields": { "discord_id": [ - 78 + 80 ], "id": [ - 4921 + 4993 ], "match_lineup_id": [ - 4921 + 4993 ], "placeholder_name": [ - 78 + 80 ], "steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "match_lineup_players_min_order_by": { "discord_id": [ - 2829 + 2946 ], "id": [ - 2829 + 2946 ], "match_lineup_id": [ - 2829 + 2946 ], "placeholder_name": [ - 2829 + 2946 ], "steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "match_lineup_players_mutation_response": { "affected_rows": [ - 38 + 40 ], "returning": [ - 2279 + 2396 ], "__typename": [ - 78 + 80 ] }, "match_lineup_players_on_conflict": { "constraint": [ - 2291 + 2408 ], "update_columns": [ - 2316 + 2433 ], "where": [ - 2290 + 2407 ], "__typename": [ - 78 + 80 ] }, "match_lineup_players_order_by": { "captain": [ - 2829 + 2946 ], "checked_in": [ - 2829 + 2946 ], "discord_id": [ - 2829 + 2946 ], "id": [ - 2829 + 2946 ], "lineup": [ - 2344 + 2461 ], "match_lineup_id": [ - 2829 + 2946 ], "placeholder_name": [ - 2829 + 2946 ], "player": [ - 3800 + 3917 ], "steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "match_lineup_players_pk_columns_input": { "id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "match_lineup_players_select_column": {}, @@ -39335,2046 +41562,2046 @@ export default { "match_lineup_players_select_column_match_lineup_players_aggregate_bool_exp_bool_or_arguments_columns": {}, "match_lineup_players_set_input": { "captain": [ - 3 + 5 ], "checked_in": [ - 3 + 5 ], "discord_id": [ - 78 + 80 ], "id": [ - 4921 + 4993 ], "match_lineup_id": [ - 4921 + 4993 ], "placeholder_name": [ - 78 + 80 ], "steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "match_lineup_players_stddev_fields": { "steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "match_lineup_players_stddev_order_by": { "steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "match_lineup_players_stddev_pop_fields": { "steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "match_lineup_players_stddev_pop_order_by": { "steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "match_lineup_players_stddev_samp_fields": { "steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "match_lineup_players_stddev_samp_order_by": { "steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "match_lineup_players_stream_cursor_input": { "initial_value": [ - 2313 + 2430 ], "ordering": [ - 236 + 308 ], "__typename": [ - 78 + 80 ] }, "match_lineup_players_stream_cursor_value_input": { "captain": [ - 3 + 5 ], "checked_in": [ - 3 + 5 ], "discord_id": [ - 78 + 80 ], "id": [ - 4921 + 4993 ], "match_lineup_id": [ - 4921 + 4993 ], "placeholder_name": [ - 78 + 80 ], "steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "match_lineup_players_sum_fields": { "steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "match_lineup_players_sum_order_by": { "steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "match_lineup_players_update_column": {}, "match_lineup_players_updates": { "_inc": [ - 2292 + 2409 ], "_set": [ - 2305 + 2422 ], "where": [ - 2290 + 2407 ], "__typename": [ - 78 + 80 ] }, "match_lineup_players_var_pop_fields": { "steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "match_lineup_players_var_pop_order_by": { "steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "match_lineup_players_var_samp_fields": { "steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "match_lineup_players_var_samp_order_by": { "steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "match_lineup_players_variance_fields": { "steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "match_lineup_players_variance_order_by": { "steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "match_lineups": { "can_pick_map_veto": [ - 3 + 5 ], "can_pick_region_veto": [ - 3 + 5 ], "can_update_lineup": [ - 3 + 5 ], "captain": [ - 5077 + 5149 ], "coach": [ - 3787 + 3904 ], "coach_steam_id": [ - 180 + 252 ], "id": [ - 4921 + 4993 ], "is_on_lineup": [ - 3 + 5 ], "is_picking_map_veto": [ - 3 + 5 ], "is_picking_region_veto": [ - 3 + 5 ], "is_ready": [ - 3 + 5 ], "lineup_players": [ - 2279, + 2396, { "distinct_on": [ - 2302, + 2419, "[match_lineup_players_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2300, + 2417, "[match_lineup_players_order_by!]" ], "where": [ - 2290 + 2407 ] } ], "lineup_players_aggregate": [ - 2280, + 2397, { "distinct_on": [ - 2302, + 2419, "[match_lineup_players_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2300, + 2417, "[match_lineup_players_order_by!]" ], "where": [ - 2290 + 2407 ] } ], "match": [ - 2644 + 2761 ], "match_id": [ - 4921 + 4993 ], "match_veto_picks": [ - 2458, + 2575, { "distinct_on": [ - 2476, + 2593, "[match_map_veto_picks_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2474, + 2591, "[match_map_veto_picks_order_by!]" ], "where": [ - 2465 + 2582 ] } ], "match_veto_picks_aggregate": [ - 2459, + 2576, { "distinct_on": [ - 2476, + 2593, "[match_map_veto_picks_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2474, + 2591, "[match_map_veto_picks_order_by!]" ], "where": [ - 2465 + 2582 ] } ], "name": [ - 78 + 80 ], "team": [ - 4329 + 4446 ], "team_id": [ - 4921 + 4993 ], "team_name": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "match_lineups_aggregate": { "aggregate": [ - 2328 + 2445 ], "nodes": [ - 2324 + 2441 ], "__typename": [ - 78 + 80 ] }, "match_lineups_aggregate_bool_exp": { "count": [ - 2327 + 2444 ], "__typename": [ - 78 + 80 ] }, "match_lineups_aggregate_bool_exp_count": { "arguments": [ - 2346 + 2463 ], "distinct": [ - 3 + 5 ], "filter": [ - 2333 + 2450 ], "predicate": [ - 39 + 41 ], "__typename": [ - 78 + 80 ] }, "match_lineups_aggregate_fields": { "avg": [ - 2331 + 2448 ], "count": [ - 38, + 40, { "columns": [ - 2346, + 2463, "[match_lineups_select_column!]" ], "distinct": [ - 3 + 5 ] } ], "max": [ - 2337 + 2454 ], "min": [ - 2339 + 2456 ], "stddev": [ - 2348 + 2465 ], "stddev_pop": [ - 2350 + 2467 ], "stddev_samp": [ - 2352 + 2469 ], "sum": [ - 2356 + 2473 ], "var_pop": [ - 2360 + 2477 ], "var_samp": [ - 2362 + 2479 ], "variance": [ - 2364 + 2481 ], "__typename": [ - 78 + 80 ] }, "match_lineups_aggregate_order_by": { "avg": [ - 2332 + 2449 ], "count": [ - 2829 + 2946 ], "max": [ - 2338 + 2455 ], "min": [ - 2340 + 2457 ], "stddev": [ - 2349 + 2466 ], "stddev_pop": [ - 2351 + 2468 ], "stddev_samp": [ - 2353 + 2470 ], "sum": [ - 2357 + 2474 ], "var_pop": [ - 2361 + 2478 ], "var_samp": [ - 2363 + 2480 ], "variance": [ - 2365 + 2482 ], "__typename": [ - 78 + 80 ] }, "match_lineups_arr_rel_insert_input": { "data": [ - 2336 + 2453 ], "on_conflict": [ - 2343 + 2460 ], "__typename": [ - 78 + 80 ] }, "match_lineups_avg_fields": { "coach_steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "match_lineups_avg_order_by": { "coach_steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "match_lineups_bool_exp": { "_and": [ - 2333 + 2450 ], "_not": [ - 2333 + 2450 ], "_or": [ - 2333 + 2450 ], "can_pick_map_veto": [ - 4 + 6 ], "can_pick_region_veto": [ - 4 + 6 ], "can_update_lineup": [ - 4 + 6 ], "captain": [ - 5081 + 5153 ], "coach": [ - 3791 + 3908 ], "coach_steam_id": [ - 182 + 254 ], "id": [ - 4923 + 4995 ], "is_on_lineup": [ - 4 + 6 ], "is_picking_map_veto": [ - 4 + 6 ], "is_picking_region_veto": [ - 4 + 6 ], "is_ready": [ - 4 + 6 ], "lineup_players": [ - 2290 + 2407 ], "lineup_players_aggregate": [ - 2281 + 2398 ], "match": [ - 2653 + 2770 ], "match_id": [ - 4923 + 4995 ], "match_veto_picks": [ - 2465 + 2582 ], "match_veto_picks_aggregate": [ - 2460 + 2577 ], "name": [ - 80 + 82 ], "team": [ - 4340 + 4457 ], "team_id": [ - 4923 + 4995 ], "team_name": [ - 80 + 82 ], "__typename": [ - 78 + 80 ] }, "match_lineups_constraint": {}, "match_lineups_inc_input": { "coach_steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "match_lineups_insert_input": { "captain": [ - 5087 + 5159 ], "coach": [ - 3798 + 3915 ], "coach_steam_id": [ - 180 + 252 ], "id": [ - 4921 + 4993 ], "lineup_players": [ - 2287 + 2404 ], "match": [ - 2662 + 2779 ], "match_id": [ - 4921 + 4993 ], "match_veto_picks": [ - 2464 + 2581 ], "team": [ - 4349 + 4466 ], "team_id": [ - 4921 + 4993 ], "team_name": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "match_lineups_max_fields": { "coach_steam_id": [ - 180 + 252 ], "id": [ - 4921 + 4993 ], "match_id": [ - 4921 + 4993 ], "name": [ - 78 + 80 ], "team_id": [ - 4921 + 4993 ], "team_name": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "match_lineups_max_order_by": { "coach_steam_id": [ - 2829 + 2946 ], "id": [ - 2829 + 2946 ], "match_id": [ - 2829 + 2946 ], "team_id": [ - 2829 + 2946 ], "team_name": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "match_lineups_min_fields": { "coach_steam_id": [ - 180 + 252 ], "id": [ - 4921 + 4993 ], "match_id": [ - 4921 + 4993 ], "name": [ - 78 + 80 ], "team_id": [ - 4921 + 4993 ], "team_name": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "match_lineups_min_order_by": { "coach_steam_id": [ - 2829 + 2946 ], "id": [ - 2829 + 2946 ], "match_id": [ - 2829 + 2946 ], "team_id": [ - 2829 + 2946 ], "team_name": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "match_lineups_mutation_response": { "affected_rows": [ - 38 + 40 ], "returning": [ - 2324 + 2441 ], "__typename": [ - 78 + 80 ] }, "match_lineups_obj_rel_insert_input": { "data": [ - 2336 + 2453 ], "on_conflict": [ - 2343 + 2460 ], "__typename": [ - 78 + 80 ] }, "match_lineups_on_conflict": { "constraint": [ - 2334 + 2451 ], "update_columns": [ - 2358 + 2475 ], "where": [ - 2333 + 2450 ], "__typename": [ - 78 + 80 ] }, "match_lineups_order_by": { "can_pick_map_veto": [ - 2829 + 2946 ], "can_pick_region_veto": [ - 2829 + 2946 ], "can_update_lineup": [ - 2829 + 2946 ], "captain": [ - 5088 + 5160 ], "coach": [ - 3800 + 3917 ], "coach_steam_id": [ - 2829 + 2946 ], "id": [ - 2829 + 2946 ], "is_on_lineup": [ - 2829 + 2946 ], "is_picking_map_veto": [ - 2829 + 2946 ], "is_picking_region_veto": [ - 2829 + 2946 ], "is_ready": [ - 2829 + 2946 ], "lineup_players_aggregate": [ - 2286 + 2403 ], "match": [ - 2664 + 2781 ], "match_id": [ - 2829 + 2946 ], "match_veto_picks_aggregate": [ - 2463 + 2580 ], "name": [ - 2829 + 2946 ], "team": [ - 4351 + 4468 ], "team_id": [ - 2829 + 2946 ], "team_name": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "match_lineups_pk_columns_input": { "id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "match_lineups_select_column": {}, "match_lineups_set_input": { "coach_steam_id": [ - 180 + 252 ], "id": [ - 4921 + 4993 ], "match_id": [ - 4921 + 4993 ], "team_id": [ - 4921 + 4993 ], "team_name": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "match_lineups_stddev_fields": { "coach_steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "match_lineups_stddev_order_by": { "coach_steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "match_lineups_stddev_pop_fields": { "coach_steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "match_lineups_stddev_pop_order_by": { "coach_steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "match_lineups_stddev_samp_fields": { "coach_steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "match_lineups_stddev_samp_order_by": { "coach_steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "match_lineups_stream_cursor_input": { "initial_value": [ - 2355 + 2472 ], "ordering": [ - 236 + 308 ], "__typename": [ - 78 + 80 ] }, "match_lineups_stream_cursor_value_input": { "coach_steam_id": [ - 180 + 252 ], "id": [ - 4921 + 4993 ], "match_id": [ - 4921 + 4993 ], "team_id": [ - 4921 + 4993 ], "team_name": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "match_lineups_sum_fields": { "coach_steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "match_lineups_sum_order_by": { "coach_steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "match_lineups_update_column": {}, "match_lineups_updates": { "_inc": [ - 2335 + 2452 ], "_set": [ - 2347 + 2464 ], "where": [ - 2333 + 2450 ], "__typename": [ - 78 + 80 ] }, "match_lineups_var_pop_fields": { "coach_steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "match_lineups_var_pop_order_by": { "coach_steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "match_lineups_var_samp_fields": { "coach_steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "match_lineups_var_samp_order_by": { "coach_steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "match_lineups_variance_fields": { "coach_steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "match_lineups_variance_order_by": { "coach_steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "match_map_demos": { "bombs": [ - 1700, + 1817, { "path": [ - 78 + 80 ] } ], "clip_render_jobs": [ - 185, + 257, { "distinct_on": [ - 213, + 285, "[clip_render_jobs_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 210, + 282, "[clip_render_jobs_order_by!]" ], "where": [ - 197 + 269 ] } ], "clip_render_jobs_aggregate": [ - 186, + 258, { "distinct_on": [ - 213, + 285, "[clip_render_jobs_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 210, + 282, "[clip_render_jobs_order_by!]" ], "where": [ - 197 + 269 ] } ], "created_at": [ - 4376 + 4493 ], "cs2_build": [ - 78 + 80 ], "demo_sessions": [ - 2233, + 2350, { "distinct_on": [ - 2259, + 2376, "[match_demo_sessions_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2256, + 2373, "[match_demo_sessions_order_by!]" ], "where": [ - 2243 + 2360 ] } ], "demo_sessions_aggregate": [ - 2234, + 2351, { "distinct_on": [ - 2259, + 2376, "[match_demo_sessions_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2256, + 2373, "[match_demo_sessions_order_by!]" ], "where": [ - 2243 + 2360 ] } ], "download_url": [ - 78 + 80 ], "duration_seconds": [ - 29 + 31 ], "file": [ - 78 + 80 ], "geometry_validated": [ - 3 + 5 ], "id": [ - 4921 + 4993 ], "kills": [ - 1700, + 1817, { "path": [ - 78 + 80 ] } ], "map_name": [ - 78 + 80 ], "match": [ - 2644 + 2761 ], "match_clips": [ - 2191, + 2308, { "distinct_on": [ - 2213, + 2330, "[match_clips_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2211, + 2328, "[match_clips_order_by!]" ], "where": [ - 2200 + 2317 ] } ], "match_clips_aggregate": [ - 2192, + 2309, { "distinct_on": [ - 2213, + 2330, "[match_clips_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2211, + 2328, "[match_clips_order_by!]" ], "where": [ - 2200 + 2317 ] } ], "match_id": [ - 4921 + 4993 ], "match_map": [ - 2482 + 2599 ], "match_map_id": [ - 4921 + 4993 ], "metadata_parsed_at": [ - 4376 + 4493 ], "playback_file": [ - 78 + 80 ], "playback_size": [ - 38 + 40 ], "playback_url": [ - 78 + 80 ], "players": [ - 1700, + 1817, { "path": [ - 78 + 80 ] } ], "round_ticks": [ - 1700, + 1817, { "path": [ - 78 + 80 ] } ], "size": [ - 38 + 40 ], "tick_rate": [ - 29 + 31 ], "total_ticks": [ - 38 + 40 ], "workshop_id": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "match_map_demos_aggregate": { "aggregate": [ - 2372 + 2489 ], "nodes": [ - 2366 + 2483 ], "__typename": [ - 78 + 80 ] }, "match_map_demos_aggregate_bool_exp": { "bool_and": [ - 2369 + 2486 ], "bool_or": [ - 2370 + 2487 ], "count": [ - 2371 + 2488 ], "__typename": [ - 78 + 80 ] }, "match_map_demos_aggregate_bool_exp_bool_and": { "arguments": [ - 2396 + 2513 ], "distinct": [ - 3 + 5 ], "filter": [ - 2378 + 2495 ], "predicate": [ - 4 + 6 ], "__typename": [ - 78 + 80 ] }, "match_map_demos_aggregate_bool_exp_bool_or": { "arguments": [ - 2397 + 2514 ], "distinct": [ - 3 + 5 ], "filter": [ - 2378 + 2495 ], "predicate": [ - 4 + 6 ], "__typename": [ - 78 + 80 ] }, "match_map_demos_aggregate_bool_exp_count": { "arguments": [ - 2395 + 2512 ], "distinct": [ - 3 + 5 ], "filter": [ - 2378 + 2495 ], "predicate": [ - 39 + 41 ], "__typename": [ - 78 + 80 ] }, "match_map_demos_aggregate_fields": { "avg": [ - 2376 + 2493 ], "count": [ - 38, + 40, { "columns": [ - 2395, + 2512, "[match_map_demos_select_column!]" ], "distinct": [ - 3 + 5 ] } ], "max": [ - 2385 + 2502 ], "min": [ - 2387 + 2504 ], "stddev": [ - 2399 + 2516 ], "stddev_pop": [ - 2401 + 2518 ], "stddev_samp": [ - 2403 + 2520 ], "sum": [ - 2407 + 2524 ], "var_pop": [ - 2411 + 2528 ], "var_samp": [ - 2413 + 2530 ], "variance": [ - 2415 + 2532 ], "__typename": [ - 78 + 80 ] }, "match_map_demos_aggregate_order_by": { "avg": [ - 2377 + 2494 ], "count": [ - 2829 + 2946 ], "max": [ - 2386 + 2503 ], "min": [ - 2388 + 2505 ], "stddev": [ - 2400 + 2517 ], "stddev_pop": [ - 2402 + 2519 ], "stddev_samp": [ - 2404 + 2521 ], "sum": [ - 2408 + 2525 ], "var_pop": [ - 2412 + 2529 ], "var_samp": [ - 2414 + 2531 ], "variance": [ - 2416 + 2533 ], "__typename": [ - 78 + 80 ] }, "match_map_demos_append_input": { "bombs": [ - 1700 + 1817 ], "kills": [ - 1700 + 1817 ], "players": [ - 1700 + 1817 ], "round_ticks": [ - 1700 + 1817 ], "__typename": [ - 78 + 80 ] }, "match_map_demos_arr_rel_insert_input": { "data": [ - 2384 + 2501 ], "on_conflict": [ - 2391 + 2508 ], "__typename": [ - 78 + 80 ] }, "match_map_demos_avg_fields": { "duration_seconds": [ - 29 + 31 ], "playback_size": [ - 29 + 31 ], "size": [ - 29 + 31 ], "tick_rate": [ - 29 + 31 ], "total_ticks": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "match_map_demos_avg_order_by": { "duration_seconds": [ - 2829 + 2946 ], "playback_size": [ - 2829 + 2946 ], "size": [ - 2829 + 2946 ], "tick_rate": [ - 2829 + 2946 ], "total_ticks": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "match_map_demos_bool_exp": { "_and": [ - 2378 + 2495 ], "_not": [ - 2378 + 2495 ], "_or": [ - 2378 + 2495 ], "bombs": [ - 1702 + 1819 ], "clip_render_jobs": [ - 197 + 269 ], "clip_render_jobs_aggregate": [ - 187 + 259 ], "created_at": [ - 4377 + 4494 ], "cs2_build": [ - 80 + 82 ], "demo_sessions": [ - 2243 + 2360 ], "demo_sessions_aggregate": [ - 2235 + 2352 ], "download_url": [ - 80 + 82 ], "duration_seconds": [ - 30 + 32 ], "file": [ - 80 + 82 ], "geometry_validated": [ - 4 + 6 ], "id": [ - 4923 + 4995 ], "kills": [ - 1702 + 1819 ], "map_name": [ - 80 + 82 ], "match": [ - 2653 + 2770 ], "match_clips": [ - 2200 + 2317 ], "match_clips_aggregate": [ - 2193 + 2310 ], "match_id": [ - 4923 + 4995 ], "match_map": [ - 2491 + 2608 ], "match_map_id": [ - 4923 + 4995 ], "metadata_parsed_at": [ - 4377 + 4494 ], "playback_file": [ - 80 + 82 ], "playback_size": [ - 39 + 41 ], "playback_url": [ - 80 + 82 ], "players": [ - 1702 + 1819 ], "round_ticks": [ - 1702 + 1819 ], "size": [ - 39 + 41 ], "tick_rate": [ - 30 + 32 ], "total_ticks": [ - 39 + 41 ], "workshop_id": [ - 80 + 82 ], "__typename": [ - 78 + 80 ] }, "match_map_demos_constraint": {}, "match_map_demos_delete_at_path_input": { "bombs": [ - 78 + 80 ], "kills": [ - 78 + 80 ], "players": [ - 78 + 80 ], "round_ticks": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "match_map_demos_delete_elem_input": { "bombs": [ - 38 + 40 ], "kills": [ - 38 + 40 ], "players": [ - 38 + 40 ], "round_ticks": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "match_map_demos_delete_key_input": { "bombs": [ - 78 + 80 ], "kills": [ - 78 + 80 ], "players": [ - 78 + 80 ], "round_ticks": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "match_map_demos_inc_input": { "playback_size": [ - 38 + 40 ], "size": [ - 38 + 40 ], "tick_rate": [ - 29 + 31 ], "total_ticks": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "match_map_demos_insert_input": { "bombs": [ - 1700 + 1817 ], "clip_render_jobs": [ - 194 + 266 ], "created_at": [ - 4376 + 4493 ], "cs2_build": [ - 78 + 80 ], "demo_sessions": [ - 2240 + 2357 ], "file": [ - 78 + 80 ], "geometry_validated": [ - 3 + 5 ], "id": [ - 4921 + 4993 ], "kills": [ - 1700 + 1817 ], "map_name": [ - 78 + 80 ], "match": [ - 2662 + 2779 ], "match_clips": [ - 2197 + 2314 ], "match_id": [ - 4921 + 4993 ], "match_map": [ - 2500 + 2617 ], "match_map_id": [ - 4921 + 4993 ], "metadata_parsed_at": [ - 4376 + 4493 ], "playback_file": [ - 78 + 80 ], "playback_size": [ - 38 + 40 ], "players": [ - 1700 + 1817 ], "round_ticks": [ - 1700 + 1817 ], "size": [ - 38 + 40 ], "tick_rate": [ - 29 + 31 ], "total_ticks": [ - 38 + 40 ], "workshop_id": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "match_map_demos_max_fields": { "created_at": [ - 4376 + 4493 ], "cs2_build": [ - 78 + 80 ], "download_url": [ - 78 + 80 ], "duration_seconds": [ - 29 + 31 ], "file": [ - 78 + 80 ], "id": [ - 4921 + 4993 ], "map_name": [ - 78 + 80 ], "match_id": [ - 4921 + 4993 ], "match_map_id": [ - 4921 + 4993 ], "metadata_parsed_at": [ - 4376 + 4493 ], "playback_file": [ - 78 + 80 ], "playback_size": [ - 38 + 40 ], "playback_url": [ - 78 + 80 ], "size": [ - 38 + 40 ], "tick_rate": [ - 29 + 31 ], "total_ticks": [ - 38 + 40 ], "workshop_id": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "match_map_demos_max_order_by": { "created_at": [ - 2829 + 2946 ], "cs2_build": [ - 2829 + 2946 ], "duration_seconds": [ - 2829 + 2946 ], "file": [ - 2829 + 2946 ], "id": [ - 2829 + 2946 ], "map_name": [ - 2829 + 2946 ], "match_id": [ - 2829 + 2946 ], "match_map_id": [ - 2829 + 2946 ], "metadata_parsed_at": [ - 2829 + 2946 ], "playback_file": [ - 2829 + 2946 ], "playback_size": [ - 2829 + 2946 ], "size": [ - 2829 + 2946 ], "tick_rate": [ - 2829 + 2946 ], "total_ticks": [ - 2829 + 2946 ], "workshop_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "match_map_demos_min_fields": { "created_at": [ - 4376 + 4493 ], "cs2_build": [ - 78 + 80 ], "download_url": [ - 78 + 80 ], "duration_seconds": [ - 29 + 31 ], "file": [ - 78 + 80 ], "id": [ - 4921 + 4993 ], "map_name": [ - 78 + 80 ], "match_id": [ - 4921 + 4993 ], "match_map_id": [ - 4921 + 4993 ], "metadata_parsed_at": [ - 4376 + 4493 ], "playback_file": [ - 78 + 80 ], "playback_size": [ - 38 + 40 ], "playback_url": [ - 78 + 80 ], "size": [ - 38 + 40 ], "tick_rate": [ - 29 + 31 ], "total_ticks": [ - 38 + 40 ], "workshop_id": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "match_map_demos_min_order_by": { "created_at": [ - 2829 + 2946 ], "cs2_build": [ - 2829 + 2946 ], "duration_seconds": [ - 2829 + 2946 ], "file": [ - 2829 + 2946 ], "id": [ - 2829 + 2946 ], "map_name": [ - 2829 + 2946 ], "match_id": [ - 2829 + 2946 ], "match_map_id": [ - 2829 + 2946 ], "metadata_parsed_at": [ - 2829 + 2946 ], "playback_file": [ - 2829 + 2946 ], "playback_size": [ - 2829 + 2946 ], "size": [ - 2829 + 2946 ], "tick_rate": [ - 2829 + 2946 ], "total_ticks": [ - 2829 + 2946 ], "workshop_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "match_map_demos_mutation_response": { "affected_rows": [ - 38 + 40 ], "returning": [ - 2366 + 2483 ], "__typename": [ - 78 + 80 ] }, "match_map_demos_obj_rel_insert_input": { "data": [ - 2384 + 2501 ], "on_conflict": [ - 2391 + 2508 ], "__typename": [ - 78 + 80 ] }, "match_map_demos_on_conflict": { "constraint": [ - 2379 + 2496 ], "update_columns": [ - 2409 + 2526 ], "where": [ - 2378 + 2495 ], "__typename": [ - 78 + 80 ] }, "match_map_demos_order_by": { "bombs": [ - 2829 + 2946 ], "clip_render_jobs_aggregate": [ - 192 + 264 ], "created_at": [ - 2829 + 2946 ], "cs2_build": [ - 2829 + 2946 ], "demo_sessions_aggregate": [ - 2238 + 2355 ], "download_url": [ - 2829 + 2946 ], "duration_seconds": [ - 2829 + 2946 ], "file": [ - 2829 + 2946 ], "geometry_validated": [ - 2829 + 2946 ], "id": [ - 2829 + 2946 ], "kills": [ - 2829 + 2946 ], "map_name": [ - 2829 + 2946 ], "match": [ - 2664 + 2781 ], "match_clips_aggregate": [ - 2196 + 2313 ], "match_id": [ - 2829 + 2946 ], "match_map": [ - 2502 + 2619 ], "match_map_id": [ - 2829 + 2946 ], "metadata_parsed_at": [ - 2829 + 2946 ], "playback_file": [ - 2829 + 2946 ], "playback_size": [ - 2829 + 2946 ], "playback_url": [ - 2829 + 2946 ], "players": [ - 2829 + 2946 ], "round_ticks": [ - 2829 + 2946 ], "size": [ - 2829 + 2946 ], "tick_rate": [ - 2829 + 2946 ], "total_ticks": [ - 2829 + 2946 ], "workshop_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "match_map_demos_pk_columns_input": { "id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "match_map_demos_prepend_input": { "bombs": [ - 1700 + 1817 ], "kills": [ - 1700 + 1817 ], "players": [ - 1700 + 1817 ], "round_ticks": [ - 1700 + 1817 ], "__typename": [ - 78 + 80 ] }, "match_map_demos_select_column": {}, @@ -41382,6193 +43609,6193 @@ export default { "match_map_demos_select_column_match_map_demos_aggregate_bool_exp_bool_or_arguments_columns": {}, "match_map_demos_set_input": { "bombs": [ - 1700 + 1817 ], "created_at": [ - 4376 + 4493 ], "cs2_build": [ - 78 + 80 ], "file": [ - 78 + 80 ], "geometry_validated": [ - 3 + 5 ], "id": [ - 4921 + 4993 ], "kills": [ - 1700 + 1817 ], "map_name": [ - 78 + 80 ], "match_id": [ - 4921 + 4993 ], "match_map_id": [ - 4921 + 4993 ], "metadata_parsed_at": [ - 4376 + 4493 ], "playback_file": [ - 78 + 80 ], "playback_size": [ - 38 + 40 ], "players": [ - 1700 + 1817 ], "round_ticks": [ - 1700 + 1817 ], "size": [ - 38 + 40 ], "tick_rate": [ - 29 + 31 ], "total_ticks": [ - 38 + 40 ], "workshop_id": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "match_map_demos_stddev_fields": { "duration_seconds": [ - 29 + 31 ], "playback_size": [ - 29 + 31 ], "size": [ - 29 + 31 ], "tick_rate": [ - 29 + 31 ], "total_ticks": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "match_map_demos_stddev_order_by": { "duration_seconds": [ - 2829 + 2946 ], "playback_size": [ - 2829 + 2946 ], "size": [ - 2829 + 2946 ], "tick_rate": [ - 2829 + 2946 ], "total_ticks": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "match_map_demos_stddev_pop_fields": { "duration_seconds": [ - 29 + 31 ], "playback_size": [ - 29 + 31 ], "size": [ - 29 + 31 ], "tick_rate": [ - 29 + 31 ], "total_ticks": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "match_map_demos_stddev_pop_order_by": { "duration_seconds": [ - 2829 + 2946 ], "playback_size": [ - 2829 + 2946 ], "size": [ - 2829 + 2946 ], "tick_rate": [ - 2829 + 2946 ], "total_ticks": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "match_map_demos_stddev_samp_fields": { "duration_seconds": [ - 29 + 31 ], "playback_size": [ - 29 + 31 ], "size": [ - 29 + 31 ], "tick_rate": [ - 29 + 31 ], "total_ticks": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "match_map_demos_stddev_samp_order_by": { "duration_seconds": [ - 2829 + 2946 ], "playback_size": [ - 2829 + 2946 ], "size": [ - 2829 + 2946 ], "tick_rate": [ - 2829 + 2946 ], "total_ticks": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "match_map_demos_stream_cursor_input": { "initial_value": [ - 2406 + 2523 ], "ordering": [ - 236 + 308 ], "__typename": [ - 78 + 80 ] }, "match_map_demos_stream_cursor_value_input": { "bombs": [ - 1700 + 1817 ], "created_at": [ - 4376 + 4493 ], "cs2_build": [ - 78 + 80 ], "duration_seconds": [ - 29 + 31 ], "file": [ - 78 + 80 ], "geometry_validated": [ - 3 + 5 ], "id": [ - 4921 + 4993 ], "kills": [ - 1700 + 1817 ], "map_name": [ - 78 + 80 ], "match_id": [ - 4921 + 4993 ], "match_map_id": [ - 4921 + 4993 ], "metadata_parsed_at": [ - 4376 + 4493 ], "playback_file": [ - 78 + 80 ], "playback_size": [ - 38 + 40 ], "players": [ - 1700 + 1817 ], "round_ticks": [ - 1700 + 1817 ], "size": [ - 38 + 40 ], "tick_rate": [ - 29 + 31 ], "total_ticks": [ - 38 + 40 ], "workshop_id": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "match_map_demos_sum_fields": { "duration_seconds": [ - 29 + 31 ], "playback_size": [ - 38 + 40 ], "size": [ - 38 + 40 ], "tick_rate": [ - 29 + 31 ], "total_ticks": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "match_map_demos_sum_order_by": { "duration_seconds": [ - 2829 + 2946 ], "playback_size": [ - 2829 + 2946 ], "size": [ - 2829 + 2946 ], "tick_rate": [ - 2829 + 2946 ], "total_ticks": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "match_map_demos_update_column": {}, "match_map_demos_updates": { "_append": [ - 2374 + 2491 ], "_delete_at_path": [ - 2380 + 2497 ], "_delete_elem": [ - 2381 + 2498 ], "_delete_key": [ - 2382 + 2499 ], "_inc": [ - 2383 + 2500 ], "_prepend": [ - 2394 + 2511 ], "_set": [ - 2398 + 2515 ], "where": [ - 2378 + 2495 ], "__typename": [ - 78 + 80 ] }, "match_map_demos_var_pop_fields": { "duration_seconds": [ - 29 + 31 ], "playback_size": [ - 29 + 31 ], "size": [ - 29 + 31 ], "tick_rate": [ - 29 + 31 ], "total_ticks": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "match_map_demos_var_pop_order_by": { "duration_seconds": [ - 2829 + 2946 ], "playback_size": [ - 2829 + 2946 ], "size": [ - 2829 + 2946 ], "tick_rate": [ - 2829 + 2946 ], "total_ticks": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "match_map_demos_var_samp_fields": { "duration_seconds": [ - 29 + 31 ], "playback_size": [ - 29 + 31 ], "size": [ - 29 + 31 ], "tick_rate": [ - 29 + 31 ], "total_ticks": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "match_map_demos_var_samp_order_by": { "duration_seconds": [ - 2829 + 2946 ], "playback_size": [ - 2829 + 2946 ], "size": [ - 2829 + 2946 ], "tick_rate": [ - 2829 + 2946 ], "total_ticks": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "match_map_demos_variance_fields": { "duration_seconds": [ - 29 + 31 ], "playback_size": [ - 29 + 31 ], "size": [ - 29 + 31 ], "tick_rate": [ - 29 + 31 ], "total_ticks": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "match_map_demos_variance_order_by": { "duration_seconds": [ - 2829 + 2946 ], "playback_size": [ - 2829 + 2946 ], "size": [ - 2829 + 2946 ], "tick_rate": [ - 2829 + 2946 ], "total_ticks": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "match_map_rounds": { "assists": [ - 2967, + 3084, { "distinct_on": [ - 2990, + 3107, "[player_assists_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2988, + 3105, "[player_assists_order_by!]" ], "where": [ - 2978 + 3095 ] } ], "assists_aggregate": [ - 2968, + 3085, { "distinct_on": [ - 2990, + 3107, "[player_assists_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2988, + 3105, "[player_assists_order_by!]" ], "where": [ - 2978 + 3095 ] } ], "backup_file": [ - 78 + 80 ], "created_at": [ - 4376 + 4493 ], "deleted_at": [ - 4376 + 4493 ], "has_backup_file": [ - 3 + 5 ], "id": [ - 4921 + 4993 ], "kills": [ - 3184, + 3301, { "distinct_on": [ - 3248, + 3365, "[player_kills_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 3246, + 3363, "[player_kills_order_by!]" ], "where": [ - 3195 + 3312 ] } ], "kills_aggregate": [ - 3185, + 3302, { "distinct_on": [ - 3248, + 3365, "[player_kills_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 3246, + 3363, "[player_kills_order_by!]" ], "where": [ - 3195 + 3312 ] } ], "lineup_1_money": [ - 38 + 40 ], "lineup_1_score": [ - 38 + 40 ], "lineup_1_side": [ - 1069 + 1186 ], "lineup_1_timeouts_available": [ - 38 + 40 ], "lineup_2_money": [ - 38 + 40 ], "lineup_2_score": [ - 38 + 40 ], "lineup_2_side": [ - 1069 + 1186 ], "lineup_2_timeouts_available": [ - 38 + 40 ], "match_map": [ - 2482 + 2599 ], "match_map_id": [ - 4921 + 4993 ], "round": [ - 38 + 40 ], "time": [ - 4376 + 4493 ], "winning_reason": [ - 1273 + 1390 ], "winning_side": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "match_map_rounds_aggregate": { "aggregate": [ - 2421 + 2538 ], "nodes": [ - 2417 + 2534 ], "__typename": [ - 78 + 80 ] }, "match_map_rounds_aggregate_bool_exp": { "count": [ - 2420 + 2537 ], "__typename": [ - 78 + 80 ] }, "match_map_rounds_aggregate_bool_exp_count": { "arguments": [ - 2438 + 2555 ], "distinct": [ - 3 + 5 ], "filter": [ - 2426 + 2543 ], "predicate": [ - 39 + 41 ], "__typename": [ - 78 + 80 ] }, "match_map_rounds_aggregate_fields": { "avg": [ - 2424 + 2541 ], "count": [ - 38, + 40, { "columns": [ - 2438, + 2555, "[match_map_rounds_select_column!]" ], "distinct": [ - 3 + 5 ] } ], "max": [ - 2430 + 2547 ], "min": [ - 2432 + 2549 ], "stddev": [ - 2440 + 2557 ], "stddev_pop": [ - 2442 + 2559 ], "stddev_samp": [ - 2444 + 2561 ], "sum": [ - 2448 + 2565 ], "var_pop": [ - 2452 + 2569 ], "var_samp": [ - 2454 + 2571 ], "variance": [ - 2456 + 2573 ], "__typename": [ - 78 + 80 ] }, "match_map_rounds_aggregate_order_by": { "avg": [ - 2425 + 2542 ], "count": [ - 2829 + 2946 ], "max": [ - 2431 + 2548 ], "min": [ - 2433 + 2550 ], "stddev": [ - 2441 + 2558 ], "stddev_pop": [ - 2443 + 2560 ], "stddev_samp": [ - 2445 + 2562 ], "sum": [ - 2449 + 2566 ], "var_pop": [ - 2453 + 2570 ], "var_samp": [ - 2455 + 2572 ], "variance": [ - 2457 + 2574 ], "__typename": [ - 78 + 80 ] }, "match_map_rounds_arr_rel_insert_input": { "data": [ - 2429 + 2546 ], "on_conflict": [ - 2435 + 2552 ], "__typename": [ - 78 + 80 ] }, "match_map_rounds_avg_fields": { "lineup_1_money": [ - 29 + 31 ], "lineup_1_score": [ - 29 + 31 ], "lineup_1_timeouts_available": [ - 29 + 31 ], "lineup_2_money": [ - 29 + 31 ], "lineup_2_score": [ - 29 + 31 ], "lineup_2_timeouts_available": [ - 29 + 31 ], "round": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "match_map_rounds_avg_order_by": { "lineup_1_money": [ - 2829 + 2946 ], "lineup_1_score": [ - 2829 + 2946 ], "lineup_1_timeouts_available": [ - 2829 + 2946 ], "lineup_2_money": [ - 2829 + 2946 ], "lineup_2_score": [ - 2829 + 2946 ], "lineup_2_timeouts_available": [ - 2829 + 2946 ], "round": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "match_map_rounds_bool_exp": { "_and": [ - 2426 + 2543 ], "_not": [ - 2426 + 2543 ], "_or": [ - 2426 + 2543 ], "assists": [ - 2978 + 3095 ], "assists_aggregate": [ - 2969 + 3086 ], "backup_file": [ - 80 + 82 ], "created_at": [ - 4377 + 4494 ], "deleted_at": [ - 4377 + 4494 ], "has_backup_file": [ - 4 + 6 ], "id": [ - 4923 + 4995 ], "kills": [ - 3195 + 3312 ], "kills_aggregate": [ - 3186 + 3303 ], "lineup_1_money": [ - 39 + 41 ], "lineup_1_score": [ - 39 + 41 ], "lineup_1_side": [ - 1070 + 1187 ], "lineup_1_timeouts_available": [ - 39 + 41 ], "lineup_2_money": [ - 39 + 41 ], "lineup_2_score": [ - 39 + 41 ], "lineup_2_side": [ - 1070 + 1187 ], "lineup_2_timeouts_available": [ - 39 + 41 ], "match_map": [ - 2491 + 2608 ], "match_map_id": [ - 4923 + 4995 ], "round": [ - 39 + 41 ], "time": [ - 4377 + 4494 ], "winning_reason": [ - 1274 + 1391 ], "winning_side": [ - 80 + 82 ], "__typename": [ - 78 + 80 ] }, "match_map_rounds_constraint": {}, "match_map_rounds_inc_input": { "lineup_1_money": [ - 38 + 40 ], "lineup_1_score": [ - 38 + 40 ], "lineup_1_timeouts_available": [ - 38 + 40 ], "lineup_2_money": [ - 38 + 40 ], "lineup_2_score": [ - 38 + 40 ], "lineup_2_timeouts_available": [ - 38 + 40 ], "round": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "match_map_rounds_insert_input": { "assists": [ - 2975 + 3092 ], "backup_file": [ - 78 + 80 ], "created_at": [ - 4376 + 4493 ], "deleted_at": [ - 4376 + 4493 ], "id": [ - 4921 + 4993 ], "kills": [ - 3192 + 3309 ], "lineup_1_money": [ - 38 + 40 ], "lineup_1_score": [ - 38 + 40 ], "lineup_1_side": [ - 1069 + 1186 ], "lineup_1_timeouts_available": [ - 38 + 40 ], "lineup_2_money": [ - 38 + 40 ], "lineup_2_score": [ - 38 + 40 ], "lineup_2_side": [ - 1069 + 1186 ], "lineup_2_timeouts_available": [ - 38 + 40 ], "match_map": [ - 2500 + 2617 ], "match_map_id": [ - 4921 + 4993 ], "round": [ - 38 + 40 ], "time": [ - 4376 + 4493 ], "winning_reason": [ - 1273 + 1390 ], "winning_side": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "match_map_rounds_max_fields": { "backup_file": [ - 78 + 80 ], "created_at": [ - 4376 + 4493 ], "deleted_at": [ - 4376 + 4493 ], "id": [ - 4921 + 4993 ], "lineup_1_money": [ - 38 + 40 ], "lineup_1_score": [ - 38 + 40 ], "lineup_1_timeouts_available": [ - 38 + 40 ], "lineup_2_money": [ - 38 + 40 ], "lineup_2_score": [ - 38 + 40 ], "lineup_2_timeouts_available": [ - 38 + 40 ], "match_map_id": [ - 4921 + 4993 ], "round": [ - 38 + 40 ], "time": [ - 4376 + 4493 ], "winning_side": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "match_map_rounds_max_order_by": { "backup_file": [ - 2829 + 2946 ], "created_at": [ - 2829 + 2946 ], "deleted_at": [ - 2829 + 2946 ], "id": [ - 2829 + 2946 ], "lineup_1_money": [ - 2829 + 2946 ], "lineup_1_score": [ - 2829 + 2946 ], "lineup_1_timeouts_available": [ - 2829 + 2946 ], "lineup_2_money": [ - 2829 + 2946 ], "lineup_2_score": [ - 2829 + 2946 ], "lineup_2_timeouts_available": [ - 2829 + 2946 ], "match_map_id": [ - 2829 + 2946 ], "round": [ - 2829 + 2946 ], "time": [ - 2829 + 2946 ], "winning_side": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "match_map_rounds_min_fields": { "backup_file": [ - 78 + 80 ], "created_at": [ - 4376 + 4493 ], "deleted_at": [ - 4376 + 4493 ], "id": [ - 4921 + 4993 ], "lineup_1_money": [ - 38 + 40 ], "lineup_1_score": [ - 38 + 40 ], "lineup_1_timeouts_available": [ - 38 + 40 ], "lineup_2_money": [ - 38 + 40 ], "lineup_2_score": [ - 38 + 40 ], "lineup_2_timeouts_available": [ - 38 + 40 ], "match_map_id": [ - 4921 + 4993 ], "round": [ - 38 + 40 ], "time": [ - 4376 + 4493 ], "winning_side": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "match_map_rounds_min_order_by": { "backup_file": [ - 2829 + 2946 ], "created_at": [ - 2829 + 2946 ], "deleted_at": [ - 2829 + 2946 ], "id": [ - 2829 + 2946 ], "lineup_1_money": [ - 2829 + 2946 ], "lineup_1_score": [ - 2829 + 2946 ], "lineup_1_timeouts_available": [ - 2829 + 2946 ], "lineup_2_money": [ - 2829 + 2946 ], "lineup_2_score": [ - 2829 + 2946 ], "lineup_2_timeouts_available": [ - 2829 + 2946 ], "match_map_id": [ - 2829 + 2946 ], "round": [ - 2829 + 2946 ], "time": [ - 2829 + 2946 ], "winning_side": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "match_map_rounds_mutation_response": { "affected_rows": [ - 38 + 40 ], "returning": [ - 2417 + 2534 ], "__typename": [ - 78 + 80 ] }, "match_map_rounds_on_conflict": { "constraint": [ - 2427 + 2544 ], "update_columns": [ - 2450 + 2567 ], "where": [ - 2426 + 2543 ], "__typename": [ - 78 + 80 ] }, "match_map_rounds_order_by": { "assists_aggregate": [ - 2974 + 3091 ], "backup_file": [ - 2829 + 2946 ], "created_at": [ - 2829 + 2946 ], "deleted_at": [ - 2829 + 2946 ], "has_backup_file": [ - 2829 + 2946 ], "id": [ - 2829 + 2946 ], "kills_aggregate": [ - 3191 + 3308 ], "lineup_1_money": [ - 2829 + 2946 ], "lineup_1_score": [ - 2829 + 2946 ], "lineup_1_side": [ - 2829 + 2946 ], "lineup_1_timeouts_available": [ - 2829 + 2946 ], "lineup_2_money": [ - 2829 + 2946 ], "lineup_2_score": [ - 2829 + 2946 ], "lineup_2_side": [ - 2829 + 2946 ], "lineup_2_timeouts_available": [ - 2829 + 2946 ], "match_map": [ - 2502 + 2619 ], "match_map_id": [ - 2829 + 2946 ], "round": [ - 2829 + 2946 ], "time": [ - 2829 + 2946 ], "winning_reason": [ - 2829 + 2946 ], "winning_side": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "match_map_rounds_pk_columns_input": { "id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "match_map_rounds_select_column": {}, "match_map_rounds_set_input": { "backup_file": [ - 78 + 80 ], "created_at": [ - 4376 + 4493 ], "deleted_at": [ - 4376 + 4493 ], "id": [ - 4921 + 4993 ], "lineup_1_money": [ - 38 + 40 ], "lineup_1_score": [ - 38 + 40 ], "lineup_1_side": [ - 1069 + 1186 ], "lineup_1_timeouts_available": [ - 38 + 40 ], "lineup_2_money": [ - 38 + 40 ], "lineup_2_score": [ - 38 + 40 ], "lineup_2_side": [ - 1069 + 1186 ], "lineup_2_timeouts_available": [ - 38 + 40 ], "match_map_id": [ - 4921 + 4993 ], "round": [ - 38 + 40 ], "time": [ - 4376 + 4493 ], "winning_reason": [ - 1273 + 1390 ], "winning_side": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "match_map_rounds_stddev_fields": { "lineup_1_money": [ - 29 + 31 ], "lineup_1_score": [ - 29 + 31 ], "lineup_1_timeouts_available": [ - 29 + 31 ], "lineup_2_money": [ - 29 + 31 ], "lineup_2_score": [ - 29 + 31 ], "lineup_2_timeouts_available": [ - 29 + 31 ], "round": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "match_map_rounds_stddev_order_by": { "lineup_1_money": [ - 2829 + 2946 ], "lineup_1_score": [ - 2829 + 2946 ], "lineup_1_timeouts_available": [ - 2829 + 2946 ], "lineup_2_money": [ - 2829 + 2946 ], "lineup_2_score": [ - 2829 + 2946 ], "lineup_2_timeouts_available": [ - 2829 + 2946 ], "round": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "match_map_rounds_stddev_pop_fields": { "lineup_1_money": [ - 29 + 31 ], "lineup_1_score": [ - 29 + 31 ], "lineup_1_timeouts_available": [ - 29 + 31 ], "lineup_2_money": [ - 29 + 31 ], "lineup_2_score": [ - 29 + 31 ], "lineup_2_timeouts_available": [ - 29 + 31 ], "round": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "match_map_rounds_stddev_pop_order_by": { "lineup_1_money": [ - 2829 + 2946 ], "lineup_1_score": [ - 2829 + 2946 ], "lineup_1_timeouts_available": [ - 2829 + 2946 ], "lineup_2_money": [ - 2829 + 2946 ], "lineup_2_score": [ - 2829 + 2946 ], "lineup_2_timeouts_available": [ - 2829 + 2946 ], "round": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "match_map_rounds_stddev_samp_fields": { "lineup_1_money": [ - 29 + 31 ], "lineup_1_score": [ - 29 + 31 ], "lineup_1_timeouts_available": [ - 29 + 31 ], "lineup_2_money": [ - 29 + 31 ], "lineup_2_score": [ - 29 + 31 ], "lineup_2_timeouts_available": [ - 29 + 31 ], "round": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "match_map_rounds_stddev_samp_order_by": { "lineup_1_money": [ - 2829 + 2946 ], "lineup_1_score": [ - 2829 + 2946 ], "lineup_1_timeouts_available": [ - 2829 + 2946 ], "lineup_2_money": [ - 2829 + 2946 ], "lineup_2_score": [ - 2829 + 2946 ], "lineup_2_timeouts_available": [ - 2829 + 2946 ], "round": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "match_map_rounds_stream_cursor_input": { "initial_value": [ - 2447 + 2564 ], "ordering": [ - 236 + 308 ], "__typename": [ - 78 + 80 ] }, "match_map_rounds_stream_cursor_value_input": { "backup_file": [ - 78 + 80 ], "created_at": [ - 4376 + 4493 ], "deleted_at": [ - 4376 + 4493 ], "id": [ - 4921 + 4993 ], "lineup_1_money": [ - 38 + 40 ], "lineup_1_score": [ - 38 + 40 ], "lineup_1_side": [ - 1069 + 1186 ], "lineup_1_timeouts_available": [ - 38 + 40 ], "lineup_2_money": [ - 38 + 40 ], "lineup_2_score": [ - 38 + 40 ], "lineup_2_side": [ - 1069 + 1186 ], "lineup_2_timeouts_available": [ - 38 + 40 ], "match_map_id": [ - 4921 + 4993 ], "round": [ - 38 + 40 ], "time": [ - 4376 + 4493 ], "winning_reason": [ - 1273 + 1390 ], "winning_side": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "match_map_rounds_sum_fields": { "lineup_1_money": [ - 38 + 40 ], "lineup_1_score": [ - 38 + 40 ], "lineup_1_timeouts_available": [ - 38 + 40 ], "lineup_2_money": [ - 38 + 40 ], "lineup_2_score": [ - 38 + 40 ], "lineup_2_timeouts_available": [ - 38 + 40 ], "round": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "match_map_rounds_sum_order_by": { "lineup_1_money": [ - 2829 + 2946 ], "lineup_1_score": [ - 2829 + 2946 ], "lineup_1_timeouts_available": [ - 2829 + 2946 ], "lineup_2_money": [ - 2829 + 2946 ], "lineup_2_score": [ - 2829 + 2946 ], "lineup_2_timeouts_available": [ - 2829 + 2946 ], "round": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "match_map_rounds_update_column": {}, "match_map_rounds_updates": { "_inc": [ - 2428 + 2545 ], "_set": [ - 2439 + 2556 ], "where": [ - 2426 + 2543 ], "__typename": [ - 78 + 80 ] }, "match_map_rounds_var_pop_fields": { "lineup_1_money": [ - 29 + 31 ], "lineup_1_score": [ - 29 + 31 ], "lineup_1_timeouts_available": [ - 29 + 31 ], "lineup_2_money": [ - 29 + 31 ], "lineup_2_score": [ - 29 + 31 ], "lineup_2_timeouts_available": [ - 29 + 31 ], "round": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "match_map_rounds_var_pop_order_by": { "lineup_1_money": [ - 2829 + 2946 ], "lineup_1_score": [ - 2829 + 2946 ], "lineup_1_timeouts_available": [ - 2829 + 2946 ], "lineup_2_money": [ - 2829 + 2946 ], "lineup_2_score": [ - 2829 + 2946 ], "lineup_2_timeouts_available": [ - 2829 + 2946 ], "round": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "match_map_rounds_var_samp_fields": { "lineup_1_money": [ - 29 + 31 ], "lineup_1_score": [ - 29 + 31 ], "lineup_1_timeouts_available": [ - 29 + 31 ], "lineup_2_money": [ - 29 + 31 ], "lineup_2_score": [ - 29 + 31 ], "lineup_2_timeouts_available": [ - 29 + 31 ], "round": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "match_map_rounds_var_samp_order_by": { "lineup_1_money": [ - 2829 + 2946 ], "lineup_1_score": [ - 2829 + 2946 ], "lineup_1_timeouts_available": [ - 2829 + 2946 ], "lineup_2_money": [ - 2829 + 2946 ], "lineup_2_score": [ - 2829 + 2946 ], "lineup_2_timeouts_available": [ - 2829 + 2946 ], "round": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "match_map_rounds_variance_fields": { "lineup_1_money": [ - 29 + 31 ], "lineup_1_score": [ - 29 + 31 ], "lineup_1_timeouts_available": [ - 29 + 31 ], "lineup_2_money": [ - 29 + 31 ], "lineup_2_score": [ - 29 + 31 ], "lineup_2_timeouts_available": [ - 29 + 31 ], "round": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "match_map_rounds_variance_order_by": { "lineup_1_money": [ - 2829 + 2946 ], "lineup_1_score": [ - 2829 + 2946 ], "lineup_1_timeouts_available": [ - 2829 + 2946 ], "lineup_2_money": [ - 2829 + 2946 ], "lineup_2_score": [ - 2829 + 2946 ], "lineup_2_timeouts_available": [ - 2829 + 2946 ], "round": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "match_map_veto_picks": { "created_at": [ - 4376 + 4493 ], "id": [ - 4921 + 4993 ], "map": [ - 2162 + 2279 ], "map_id": [ - 4921 + 4993 ], "match": [ - 2644 + 2761 ], "match_id": [ - 4921 + 4993 ], "match_lineup": [ - 2324 + 2441 ], "match_lineup_id": [ - 4921 + 4993 ], "side": [ - 78 + 80 ], "type": [ - 1253 + 1370 ], "__typename": [ - 78 + 80 ] }, "match_map_veto_picks_aggregate": { "aggregate": [ - 2462 + 2579 ], "nodes": [ - 2458 + 2575 ], "__typename": [ - 78 + 80 ] }, "match_map_veto_picks_aggregate_bool_exp": { "count": [ - 2461 + 2578 ], "__typename": [ - 78 + 80 ] }, "match_map_veto_picks_aggregate_bool_exp_count": { "arguments": [ - 2476 + 2593 ], "distinct": [ - 3 + 5 ], "filter": [ - 2465 + 2582 ], "predicate": [ - 39 + 41 ], "__typename": [ - 78 + 80 ] }, "match_map_veto_picks_aggregate_fields": { "count": [ - 38, + 40, { "columns": [ - 2476, + 2593, "[match_map_veto_picks_select_column!]" ], "distinct": [ - 3 + 5 ] } ], "max": [ - 2468 + 2585 ], "min": [ - 2470 + 2587 ], "__typename": [ - 78 + 80 ] }, "match_map_veto_picks_aggregate_order_by": { "count": [ - 2829 + 2946 ], "max": [ - 2469 + 2586 ], "min": [ - 2471 + 2588 ], "__typename": [ - 78 + 80 ] }, "match_map_veto_picks_arr_rel_insert_input": { "data": [ - 2467 + 2584 ], "on_conflict": [ - 2473 + 2590 ], "__typename": [ - 78 + 80 ] }, "match_map_veto_picks_bool_exp": { "_and": [ - 2465 + 2582 ], "_not": [ - 2465 + 2582 ], "_or": [ - 2465 + 2582 ], "created_at": [ - 4377 + 4494 ], "id": [ - 4923 + 4995 ], "map": [ - 2171 + 2288 ], "map_id": [ - 4923 + 4995 ], "match": [ - 2653 + 2770 ], "match_id": [ - 4923 + 4995 ], "match_lineup": [ - 2333 + 2450 ], "match_lineup_id": [ - 4923 + 4995 ], "side": [ - 80 + 82 ], "type": [ - 1254 + 1371 ], "__typename": [ - 78 + 80 ] }, "match_map_veto_picks_constraint": {}, "match_map_veto_picks_insert_input": { "created_at": [ - 4376 + 4493 ], "id": [ - 4921 + 4993 ], "map": [ - 2179 + 2296 ], "map_id": [ - 4921 + 4993 ], "match": [ - 2662 + 2779 ], "match_id": [ - 4921 + 4993 ], "match_lineup": [ - 2342 + 2459 ], "match_lineup_id": [ - 4921 + 4993 ], "side": [ - 78 + 80 ], "type": [ - 1253 + 1370 ], "__typename": [ - 78 + 80 ] }, "match_map_veto_picks_max_fields": { "created_at": [ - 4376 + 4493 ], "id": [ - 4921 + 4993 ], "map_id": [ - 4921 + 4993 ], "match_id": [ - 4921 + 4993 ], "match_lineup_id": [ - 4921 + 4993 ], "side": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "match_map_veto_picks_max_order_by": { "created_at": [ - 2829 + 2946 ], "id": [ - 2829 + 2946 ], "map_id": [ - 2829 + 2946 ], "match_id": [ - 2829 + 2946 ], "match_lineup_id": [ - 2829 + 2946 ], "side": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "match_map_veto_picks_min_fields": { "created_at": [ - 4376 + 4493 ], "id": [ - 4921 + 4993 ], "map_id": [ - 4921 + 4993 ], "match_id": [ - 4921 + 4993 ], "match_lineup_id": [ - 4921 + 4993 ], "side": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "match_map_veto_picks_min_order_by": { "created_at": [ - 2829 + 2946 ], "id": [ - 2829 + 2946 ], "map_id": [ - 2829 + 2946 ], "match_id": [ - 2829 + 2946 ], "match_lineup_id": [ - 2829 + 2946 ], "side": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "match_map_veto_picks_mutation_response": { "affected_rows": [ - 38 + 40 ], "returning": [ - 2458 + 2575 ], "__typename": [ - 78 + 80 ] }, "match_map_veto_picks_on_conflict": { "constraint": [ - 2466 + 2583 ], "update_columns": [ - 2480 + 2597 ], "where": [ - 2465 + 2582 ], "__typename": [ - 78 + 80 ] }, "match_map_veto_picks_order_by": { "created_at": [ - 2829 + 2946 ], "id": [ - 2829 + 2946 ], "map": [ - 2181 + 2298 ], "map_id": [ - 2829 + 2946 ], "match": [ - 2664 + 2781 ], "match_id": [ - 2829 + 2946 ], "match_lineup": [ - 2344 + 2461 ], "match_lineup_id": [ - 2829 + 2946 ], "side": [ - 2829 + 2946 ], "type": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "match_map_veto_picks_pk_columns_input": { "id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "match_map_veto_picks_select_column": {}, "match_map_veto_picks_set_input": { "created_at": [ - 4376 + 4493 ], "id": [ - 4921 + 4993 ], "map_id": [ - 4921 + 4993 ], "match_id": [ - 4921 + 4993 ], "match_lineup_id": [ - 4921 + 4993 ], "side": [ - 78 + 80 ], "type": [ - 1253 + 1370 ], "__typename": [ - 78 + 80 ] }, "match_map_veto_picks_stream_cursor_input": { "initial_value": [ - 2479 + 2596 ], "ordering": [ - 236 + 308 ], "__typename": [ - 78 + 80 ] }, "match_map_veto_picks_stream_cursor_value_input": { "created_at": [ - 4376 + 4493 ], "id": [ - 4921 + 4993 ], "map_id": [ - 4921 + 4993 ], "match_id": [ - 4921 + 4993 ], "match_lineup_id": [ - 4921 + 4993 ], "side": [ - 78 + 80 ], "type": [ - 1253 + 1370 ], "__typename": [ - 78 + 80 ] }, "match_map_veto_picks_update_column": {}, "match_map_veto_picks_updates": { "_set": [ - 2477 + 2594 ], "where": [ - 2465 + 2582 ], "__typename": [ - 78 + 80 ] }, "match_maps": { "clips_count": [ - 38 + 40 ], "created_at": [ - 4376 + 4493 ], "demos": [ - 2366, + 2483, { "distinct_on": [ - 2395, + 2512, "[match_map_demos_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2392, + 2509, "[match_map_demos_order_by!]" ], "where": [ - 2378 + 2495 ] } ], "demos_aggregate": [ - 2367, + 2484, { "distinct_on": [ - 2395, + 2512, "[match_map_demos_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2392, + 2509, "[match_map_demos_order_by!]" ], "where": [ - 2378 + 2495 ] } ], "demos_download_url": [ - 78 + 80 ], "demos_total_size": [ - 38 + 40 ], "e_match_map_status": [ - 820 + 937 ], "ended_at": [ - 4376 + 4493 ], "flashes": [ - 3139, + 3256, { "distinct_on": [ - 3162, + 3279, "[player_flashes_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 3160, + 3277, "[player_flashes_order_by!]" ], "where": [ - 3150 + 3267 ] } ], "flashes_aggregate": [ - 3140, + 3257, { "distinct_on": [ - 3162, + 3279, "[player_flashes_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 3160, + 3277, "[player_flashes_order_by!]" ], "where": [ - 3150 + 3267 ] } ], "id": [ - 4921 + 4993 ], "is_current_map": [ - 3 + 5 ], "latest_clip_at": [ - 4376 + 4493 ], "lineup_1_score": [ - 38 + 40 ], "lineup_1_side": [ - 1069 + 1186 ], "lineup_1_timeouts_available": [ - 38 + 40 ], "lineup_2_score": [ - 38 + 40 ], "lineup_2_side": [ - 1069 + 1186 ], "lineup_2_timeouts_available": [ - 38 + 40 ], "map": [ - 2162 + 2279 ], "map_id": [ - 4921 + 4993 ], "match": [ - 2644 + 2761 ], "match_clips": [ - 2191, + 2308, { "distinct_on": [ - 2213, + 2330, "[match_clips_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2211, + 2328, "[match_clips_order_by!]" ], "where": [ - 2200 + 2317 ] } ], "match_clips_aggregate": [ - 2192, + 2309, { "distinct_on": [ - 2213, + 2330, "[match_clips_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2211, + 2328, "[match_clips_order_by!]" ], "where": [ - 2200 + 2317 ] } ], "match_id": [ - 4921 + 4993 ], "objectives": [ - 3385, + 3502, { "distinct_on": [ - 3406, + 3523, "[player_objectives_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 3404, + 3521, "[player_objectives_order_by!]" ], "where": [ - 3394 + 3511 ] } ], "objectives_aggregate": [ - 3386, + 3503, { "distinct_on": [ - 3406, + 3523, "[player_objectives_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 3404, + 3521, "[player_objectives_order_by!]" ], "where": [ - 3394 + 3511 ] } ], "order": [ - 38 + 40 ], "player_assists": [ - 2967, + 3084, { "distinct_on": [ - 2990, + 3107, "[player_assists_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2988, + 3105, "[player_assists_order_by!]" ], "where": [ - 2978 + 3095 ] } ], "player_assists_aggregate": [ - 2968, + 3085, { "distinct_on": [ - 2990, + 3107, "[player_assists_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2988, + 3105, "[player_assists_order_by!]" ], "where": [ - 2978 + 3095 ] } ], "player_damages": [ - 3030, + 3147, { "distinct_on": [ - 3051, + 3168, "[player_damages_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 3049, + 3166, "[player_damages_order_by!]" ], "where": [ - 3039 + 3156 ] } ], "player_damages_aggregate": [ - 3031, + 3148, { "distinct_on": [ - 3051, + 3168, "[player_damages_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 3049, + 3166, "[player_damages_order_by!]" ], "where": [ - 3039 + 3156 ] } ], "player_kills": [ - 3184, + 3301, { "distinct_on": [ - 3248, + 3365, "[player_kills_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 3246, + 3363, "[player_kills_order_by!]" ], "where": [ - 3195 + 3312 ] } ], "player_kills_aggregate": [ - 3185, + 3302, { "distinct_on": [ - 3248, + 3365, "[player_kills_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 3246, + 3363, "[player_kills_order_by!]" ], "where": [ - 3195 + 3312 ] } ], "player_unused_utilities": [ - 3672, + 3789, { "distinct_on": [ - 3693, + 3810, "[player_unused_utility_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 3691, + 3808, "[player_unused_utility_order_by!]" ], "where": [ - 3681 + 3798 ] } ], "player_unused_utilities_aggregate": [ - 3673, + 3790, { "distinct_on": [ - 3693, + 3810, "[player_unused_utility_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 3691, + 3808, "[player_unused_utility_order_by!]" ], "where": [ - 3681 + 3798 ] } ], "public_clips_count": [ - 38 + 40 ], "public_latest_clip_at": [ - 4376 + 4493 ], "rounds": [ - 2417, + 2534, { "distinct_on": [ - 2438, + 2555, "[match_map_rounds_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2436, + 2553, "[match_map_rounds_order_by!]" ], "where": [ - 2426 + 2543 ] } ], "rounds_aggregate": [ - 2418, + 2535, { "distinct_on": [ - 2438, + 2555, "[match_map_rounds_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2436, + 2553, "[match_map_rounds_order_by!]" ], "where": [ - 2426 + 2543 ] } ], "started_at": [ - 4376 + 4493 ], "status": [ - 825 + 942 ], "utility": [ - 3713, + 3830, { "distinct_on": [ - 3734, + 3851, "[player_utility_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 3732, + 3849, "[player_utility_order_by!]" ], "where": [ - 3722 + 3839 ] } ], "utility_aggregate": [ - 3714, + 3831, { "distinct_on": [ - 3734, + 3851, "[player_utility_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 3732, + 3849, "[player_utility_order_by!]" ], "where": [ - 3722 + 3839 ] } ], "vetos": [ - 2458, + 2575, { "distinct_on": [ - 2476, + 2593, "[match_map_veto_picks_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2474, + 2591, "[match_map_veto_picks_order_by!]" ], "where": [ - 2465 + 2582 ] } ], "vetos_aggregate": [ - 2459, + 2576, { "distinct_on": [ - 2476, + 2593, "[match_map_veto_picks_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2474, + 2591, "[match_map_veto_picks_order_by!]" ], "where": [ - 2465 + 2582 ] } ], "winning_lineup_id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "match_maps_aggregate": { "aggregate": [ - 2486 + 2603 ], "nodes": [ - 2482 + 2599 ], "__typename": [ - 78 + 80 ] }, "match_maps_aggregate_bool_exp": { "count": [ - 2485 + 2602 ], "__typename": [ - 78 + 80 ] }, "match_maps_aggregate_bool_exp_count": { "arguments": [ - 2504 + 2621 ], "distinct": [ - 3 + 5 ], "filter": [ - 2491 + 2608 ], "predicate": [ - 39 + 41 ], "__typename": [ - 78 + 80 ] }, "match_maps_aggregate_fields": { "avg": [ - 2489 + 2606 ], "count": [ - 38, + 40, { "columns": [ - 2504, + 2621, "[match_maps_select_column!]" ], "distinct": [ - 3 + 5 ] } ], "max": [ - 2495 + 2612 ], "min": [ - 2497 + 2614 ], "stddev": [ - 2506 + 2623 ], "stddev_pop": [ - 2508 + 2625 ], "stddev_samp": [ - 2510 + 2627 ], "sum": [ - 2514 + 2631 ], "var_pop": [ - 2518 + 2635 ], "var_samp": [ - 2520 + 2637 ], "variance": [ - 2522 + 2639 ], "__typename": [ - 78 + 80 ] }, "match_maps_aggregate_order_by": { "avg": [ - 2490 + 2607 ], "count": [ - 2829 + 2946 ], "max": [ - 2496 + 2613 ], "min": [ - 2498 + 2615 ], "stddev": [ - 2507 + 2624 ], "stddev_pop": [ - 2509 + 2626 ], "stddev_samp": [ - 2511 + 2628 ], "sum": [ - 2515 + 2632 ], "var_pop": [ - 2519 + 2636 ], "var_samp": [ - 2521 + 2638 ], "variance": [ - 2523 + 2640 ], "__typename": [ - 78 + 80 ] }, "match_maps_arr_rel_insert_input": { "data": [ - 2494 + 2611 ], "on_conflict": [ - 2501 + 2618 ], "__typename": [ - 78 + 80 ] }, "match_maps_avg_fields": { "clips_count": [ - 29 + 31 ], "demos_total_size": [ - 38 + 40 ], "lineup_1_score": [ - 38 + 40 ], "lineup_1_timeouts_available": [ - 29 + 31 ], "lineup_2_score": [ - 38 + 40 ], "lineup_2_timeouts_available": [ - 29 + 31 ], "order": [ - 29 + 31 ], "public_clips_count": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "match_maps_avg_order_by": { "clips_count": [ - 2829 + 2946 ], "lineup_1_timeouts_available": [ - 2829 + 2946 ], "lineup_2_timeouts_available": [ - 2829 + 2946 ], "order": [ - 2829 + 2946 ], "public_clips_count": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "match_maps_bool_exp": { "_and": [ - 2491 + 2608 ], "_not": [ - 2491 + 2608 ], "_or": [ - 2491 + 2608 ], "clips_count": [ - 39 + 41 ], "created_at": [ - 4377 + 4494 ], "demos": [ - 2378 + 2495 ], "demos_aggregate": [ - 2368 + 2485 ], "demos_download_url": [ - 80 + 82 ], "demos_total_size": [ - 39 + 41 ], "e_match_map_status": [ - 823 + 940 ], "ended_at": [ - 4377 + 4494 ], "flashes": [ - 3150 + 3267 ], "flashes_aggregate": [ - 3141 + 3258 ], "id": [ - 4923 + 4995 ], "is_current_map": [ - 4 + 6 ], "latest_clip_at": [ - 4377 + 4494 ], "lineup_1_score": [ - 39 + 41 ], "lineup_1_side": [ - 1070 + 1187 ], "lineup_1_timeouts_available": [ - 39 + 41 ], "lineup_2_score": [ - 39 + 41 ], "lineup_2_side": [ - 1070 + 1187 ], "lineup_2_timeouts_available": [ - 39 + 41 ], "map": [ - 2171 + 2288 ], "map_id": [ - 4923 + 4995 ], "match": [ - 2653 + 2770 ], "match_clips": [ - 2200 + 2317 ], "match_clips_aggregate": [ - 2193 + 2310 ], "match_id": [ - 4923 + 4995 ], "objectives": [ - 3394 + 3511 ], "objectives_aggregate": [ - 3387 + 3504 ], "order": [ - 39 + 41 ], "player_assists": [ - 2978 + 3095 ], "player_assists_aggregate": [ - 2969 + 3086 ], "player_damages": [ - 3039 + 3156 ], "player_damages_aggregate": [ - 3032 + 3149 ], "player_kills": [ - 3195 + 3312 ], "player_kills_aggregate": [ - 3186 + 3303 ], "player_unused_utilities": [ - 3681 + 3798 ], "player_unused_utilities_aggregate": [ - 3674 + 3791 ], "public_clips_count": [ - 39 + 41 ], "public_latest_clip_at": [ - 4377 + 4494 ], "rounds": [ - 2426 + 2543 ], "rounds_aggregate": [ - 2419 + 2536 ], "started_at": [ - 4377 + 4494 ], "status": [ - 826 + 943 ], "utility": [ - 3722 + 3839 ], "utility_aggregate": [ - 3715 + 3832 ], "vetos": [ - 2465 + 2582 ], "vetos_aggregate": [ - 2460 + 2577 ], "winning_lineup_id": [ - 4923 + 4995 ], "__typename": [ - 78 + 80 ] }, "match_maps_constraint": {}, "match_maps_inc_input": { "clips_count": [ - 38 + 40 ], "lineup_1_timeouts_available": [ - 38 + 40 ], "lineup_2_timeouts_available": [ - 38 + 40 ], "order": [ - 38 + 40 ], "public_clips_count": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "match_maps_insert_input": { "clips_count": [ - 38 + 40 ], "created_at": [ - 4376 + 4493 ], "demos": [ - 2375 + 2492 ], "e_match_map_status": [ - 831 + 948 ], "ended_at": [ - 4376 + 4493 ], "flashes": [ - 3147 + 3264 ], "id": [ - 4921 + 4993 ], "latest_clip_at": [ - 4376 + 4493 ], "lineup_1_side": [ - 1069 + 1186 ], "lineup_1_timeouts_available": [ - 38 + 40 ], "lineup_2_side": [ - 1069 + 1186 ], "lineup_2_timeouts_available": [ - 38 + 40 ], "map": [ - 2179 + 2296 ], "map_id": [ - 4921 + 4993 ], "match": [ - 2662 + 2779 ], "match_clips": [ - 2197 + 2314 ], "match_id": [ - 4921 + 4993 ], "objectives": [ - 3391 + 3508 ], "order": [ - 38 + 40 ], "player_assists": [ - 2975 + 3092 ], "player_damages": [ - 3036 + 3153 ], "player_kills": [ - 3192 + 3309 ], "player_unused_utilities": [ - 3678 + 3795 ], "public_clips_count": [ - 38 + 40 ], "public_latest_clip_at": [ - 4376 + 4493 ], "rounds": [ - 2423 + 2540 ], "started_at": [ - 4376 + 4493 ], "status": [ - 825 + 942 ], "utility": [ - 3719 + 3836 ], "vetos": [ - 2464 + 2581 ], "winning_lineup_id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "match_maps_max_fields": { "clips_count": [ - 38 + 40 ], "created_at": [ - 4376 + 4493 ], "demos_download_url": [ - 78 + 80 ], "demos_total_size": [ - 38 + 40 ], "ended_at": [ - 4376 + 4493 ], "id": [ - 4921 + 4993 ], "latest_clip_at": [ - 4376 + 4493 ], "lineup_1_score": [ - 38 + 40 ], "lineup_1_timeouts_available": [ - 38 + 40 ], "lineup_2_score": [ - 38 + 40 ], "lineup_2_timeouts_available": [ - 38 + 40 ], "map_id": [ - 4921 + 4993 ], "match_id": [ - 4921 + 4993 ], "order": [ - 38 + 40 ], "public_clips_count": [ - 38 + 40 ], "public_latest_clip_at": [ - 4376 + 4493 ], "started_at": [ - 4376 + 4493 ], "winning_lineup_id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "match_maps_max_order_by": { "clips_count": [ - 2829 + 2946 ], "created_at": [ - 2829 + 2946 ], "ended_at": [ - 2829 + 2946 ], "id": [ - 2829 + 2946 ], "latest_clip_at": [ - 2829 + 2946 ], "lineup_1_timeouts_available": [ - 2829 + 2946 ], "lineup_2_timeouts_available": [ - 2829 + 2946 ], "map_id": [ - 2829 + 2946 ], "match_id": [ - 2829 + 2946 ], "order": [ - 2829 + 2946 ], "public_clips_count": [ - 2829 + 2946 ], "public_latest_clip_at": [ - 2829 + 2946 ], "started_at": [ - 2829 + 2946 ], "winning_lineup_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "match_maps_min_fields": { "clips_count": [ - 38 + 40 ], "created_at": [ - 4376 + 4493 ], "demos_download_url": [ - 78 + 80 ], "demos_total_size": [ - 38 + 40 ], "ended_at": [ - 4376 + 4493 ], "id": [ - 4921 + 4993 ], "latest_clip_at": [ - 4376 + 4493 ], "lineup_1_score": [ - 38 + 40 ], "lineup_1_timeouts_available": [ - 38 + 40 ], "lineup_2_score": [ - 38 + 40 ], "lineup_2_timeouts_available": [ - 38 + 40 ], "map_id": [ - 4921 + 4993 ], "match_id": [ - 4921 + 4993 ], "order": [ - 38 + 40 ], "public_clips_count": [ - 38 + 40 ], "public_latest_clip_at": [ - 4376 + 4493 ], "started_at": [ - 4376 + 4493 ], "winning_lineup_id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "match_maps_min_order_by": { "clips_count": [ - 2829 + 2946 ], "created_at": [ - 2829 + 2946 ], "ended_at": [ - 2829 + 2946 ], "id": [ - 2829 + 2946 ], "latest_clip_at": [ - 2829 + 2946 ], "lineup_1_timeouts_available": [ - 2829 + 2946 ], "lineup_2_timeouts_available": [ - 2829 + 2946 ], "map_id": [ - 2829 + 2946 ], "match_id": [ - 2829 + 2946 ], "order": [ - 2829 + 2946 ], "public_clips_count": [ - 2829 + 2946 ], "public_latest_clip_at": [ - 2829 + 2946 ], "started_at": [ - 2829 + 2946 ], "winning_lineup_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "match_maps_mutation_response": { "affected_rows": [ - 38 + 40 ], "returning": [ - 2482 + 2599 ], "__typename": [ - 78 + 80 ] }, "match_maps_obj_rel_insert_input": { "data": [ - 2494 + 2611 ], "on_conflict": [ - 2501 + 2618 ], "__typename": [ - 78 + 80 ] }, "match_maps_on_conflict": { "constraint": [ - 2492 + 2609 ], "update_columns": [ - 2516 + 2633 ], "where": [ - 2491 + 2608 ], "__typename": [ - 78 + 80 ] }, "match_maps_order_by": { "clips_count": [ - 2829 + 2946 ], "created_at": [ - 2829 + 2946 ], "demos_aggregate": [ - 2373 + 2490 ], "demos_download_url": [ - 2829 + 2946 ], "demos_total_size": [ - 2829 + 2946 ], "e_match_map_status": [ - 833 + 950 ], "ended_at": [ - 2829 + 2946 ], "flashes_aggregate": [ - 3146 + 3263 ], "id": [ - 2829 + 2946 ], "is_current_map": [ - 2829 + 2946 ], "latest_clip_at": [ - 2829 + 2946 ], "lineup_1_score": [ - 2829 + 2946 ], "lineup_1_side": [ - 2829 + 2946 ], "lineup_1_timeouts_available": [ - 2829 + 2946 ], "lineup_2_score": [ - 2829 + 2946 ], "lineup_2_side": [ - 2829 + 2946 ], "lineup_2_timeouts_available": [ - 2829 + 2946 ], "map": [ - 2181 + 2298 ], "map_id": [ - 2829 + 2946 ], "match": [ - 2664 + 2781 ], "match_clips_aggregate": [ - 2196 + 2313 ], "match_id": [ - 2829 + 2946 ], "objectives_aggregate": [ - 3390 + 3507 ], "order": [ - 2829 + 2946 ], "player_assists_aggregate": [ - 2974 + 3091 ], "player_damages_aggregate": [ - 3035 + 3152 ], "player_kills_aggregate": [ - 3191 + 3308 ], "player_unused_utilities_aggregate": [ - 3677 + 3794 ], "public_clips_count": [ - 2829 + 2946 ], "public_latest_clip_at": [ - 2829 + 2946 ], "rounds_aggregate": [ - 2422 + 2539 ], "started_at": [ - 2829 + 2946 ], "status": [ - 2829 + 2946 ], "utility_aggregate": [ - 3718 + 3835 ], "vetos_aggregate": [ - 2463 + 2580 ], "winning_lineup_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "match_maps_pk_columns_input": { "id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "match_maps_select_column": {}, "match_maps_set_input": { "clips_count": [ - 38 + 40 ], "created_at": [ - 4376 + 4493 ], "ended_at": [ - 4376 + 4493 ], "id": [ - 4921 + 4993 ], "latest_clip_at": [ - 4376 + 4493 ], "lineup_1_side": [ - 1069 + 1186 ], "lineup_1_timeouts_available": [ - 38 + 40 ], "lineup_2_side": [ - 1069 + 1186 ], "lineup_2_timeouts_available": [ - 38 + 40 ], "map_id": [ - 4921 + 4993 ], "match_id": [ - 4921 + 4993 ], "order": [ - 38 + 40 ], "public_clips_count": [ - 38 + 40 ], "public_latest_clip_at": [ - 4376 + 4493 ], "started_at": [ - 4376 + 4493 ], "status": [ - 825 + 942 ], "winning_lineup_id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "match_maps_stddev_fields": { "clips_count": [ - 29 + 31 ], "demos_total_size": [ - 38 + 40 ], "lineup_1_score": [ - 38 + 40 ], "lineup_1_timeouts_available": [ - 29 + 31 ], "lineup_2_score": [ - 38 + 40 ], "lineup_2_timeouts_available": [ - 29 + 31 ], "order": [ - 29 + 31 ], "public_clips_count": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "match_maps_stddev_order_by": { "clips_count": [ - 2829 + 2946 ], "lineup_1_timeouts_available": [ - 2829 + 2946 ], "lineup_2_timeouts_available": [ - 2829 + 2946 ], "order": [ - 2829 + 2946 ], "public_clips_count": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "match_maps_stddev_pop_fields": { "clips_count": [ - 29 + 31 ], "demos_total_size": [ - 38 + 40 ], "lineup_1_score": [ - 38 + 40 ], "lineup_1_timeouts_available": [ - 29 + 31 ], "lineup_2_score": [ - 38 + 40 ], "lineup_2_timeouts_available": [ - 29 + 31 ], "order": [ - 29 + 31 ], "public_clips_count": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "match_maps_stddev_pop_order_by": { "clips_count": [ - 2829 + 2946 ], "lineup_1_timeouts_available": [ - 2829 + 2946 ], "lineup_2_timeouts_available": [ - 2829 + 2946 ], "order": [ - 2829 + 2946 ], "public_clips_count": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "match_maps_stddev_samp_fields": { "clips_count": [ - 29 + 31 ], "demos_total_size": [ - 38 + 40 ], "lineup_1_score": [ - 38 + 40 ], "lineup_1_timeouts_available": [ - 29 + 31 ], "lineup_2_score": [ - 38 + 40 ], "lineup_2_timeouts_available": [ - 29 + 31 ], "order": [ - 29 + 31 ], "public_clips_count": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "match_maps_stddev_samp_order_by": { "clips_count": [ - 2829 + 2946 ], "lineup_1_timeouts_available": [ - 2829 + 2946 ], "lineup_2_timeouts_available": [ - 2829 + 2946 ], "order": [ - 2829 + 2946 ], "public_clips_count": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "match_maps_stream_cursor_input": { "initial_value": [ - 2513 + 2630 ], "ordering": [ - 236 + 308 ], "__typename": [ - 78 + 80 ] }, "match_maps_stream_cursor_value_input": { "clips_count": [ - 38 + 40 ], "created_at": [ - 4376 + 4493 ], "ended_at": [ - 4376 + 4493 ], "id": [ - 4921 + 4993 ], "latest_clip_at": [ - 4376 + 4493 ], "lineup_1_side": [ - 1069 + 1186 ], "lineup_1_timeouts_available": [ - 38 + 40 ], "lineup_2_side": [ - 1069 + 1186 ], "lineup_2_timeouts_available": [ - 38 + 40 ], "map_id": [ - 4921 + 4993 ], "match_id": [ - 4921 + 4993 ], "order": [ - 38 + 40 ], "public_clips_count": [ - 38 + 40 ], "public_latest_clip_at": [ - 4376 + 4493 ], "started_at": [ - 4376 + 4493 ], "status": [ - 825 + 942 ], "winning_lineup_id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "match_maps_sum_fields": { "clips_count": [ - 38 + 40 ], "demos_total_size": [ - 38 + 40 ], "lineup_1_score": [ - 38 + 40 ], "lineup_1_timeouts_available": [ - 38 + 40 ], "lineup_2_score": [ - 38 + 40 ], "lineup_2_timeouts_available": [ - 38 + 40 ], "order": [ - 38 + 40 ], "public_clips_count": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "match_maps_sum_order_by": { "clips_count": [ - 2829 + 2946 ], "lineup_1_timeouts_available": [ - 2829 + 2946 ], "lineup_2_timeouts_available": [ - 2829 + 2946 ], "order": [ - 2829 + 2946 ], "public_clips_count": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "match_maps_update_column": {}, "match_maps_updates": { "_inc": [ - 2493 + 2610 ], "_set": [ - 2505 + 2622 ], "where": [ - 2491 + 2608 ], "__typename": [ - 78 + 80 ] }, "match_maps_var_pop_fields": { "clips_count": [ - 29 + 31 ], "demos_total_size": [ - 38 + 40 ], "lineup_1_score": [ - 38 + 40 ], "lineup_1_timeouts_available": [ - 29 + 31 ], "lineup_2_score": [ - 38 + 40 ], "lineup_2_timeouts_available": [ - 29 + 31 ], "order": [ - 29 + 31 ], "public_clips_count": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "match_maps_var_pop_order_by": { "clips_count": [ - 2829 + 2946 ], "lineup_1_timeouts_available": [ - 2829 + 2946 ], "lineup_2_timeouts_available": [ - 2829 + 2946 ], "order": [ - 2829 + 2946 ], "public_clips_count": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "match_maps_var_samp_fields": { "clips_count": [ - 29 + 31 ], "demos_total_size": [ - 38 + 40 ], "lineup_1_score": [ - 38 + 40 ], "lineup_1_timeouts_available": [ - 29 + 31 ], "lineup_2_score": [ - 38 + 40 ], "lineup_2_timeouts_available": [ - 29 + 31 ], "order": [ - 29 + 31 ], "public_clips_count": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "match_maps_var_samp_order_by": { "clips_count": [ - 2829 + 2946 ], "lineup_1_timeouts_available": [ - 2829 + 2946 ], "lineup_2_timeouts_available": [ - 2829 + 2946 ], "order": [ - 2829 + 2946 ], "public_clips_count": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "match_maps_variance_fields": { "clips_count": [ - 29 + 31 ], "demos_total_size": [ - 38 + 40 ], "lineup_1_score": [ - 38 + 40 ], "lineup_1_timeouts_available": [ - 29 + 31 ], "lineup_2_score": [ - 38 + 40 ], "lineup_2_timeouts_available": [ - 29 + 31 ], "order": [ - 29 + 31 ], "public_clips_count": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "match_maps_variance_order_by": { "clips_count": [ - 2829 + 2946 ], "lineup_1_timeouts_available": [ - 2829 + 2946 ], "lineup_2_timeouts_available": [ - 2829 + 2946 ], "order": [ - 2829 + 2946 ], "public_clips_count": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "match_options": { "auto_cancel_duration": [ - 38 + 40 ], "auto_cancellation": [ - 3 + 5 ], "best_of": [ - 38 + 40 ], "check_in_setting": [ - 432 + 549 ], "coaches": [ - 3 + 5 ], "default_models": [ - 3 + 5 ], "halftime_pausematch": [ - 3 + 5 ], "has_active_matches": [ - 3 + 5 ], "id": [ - 4921 + 4993 ], "invite_code": [ - 78 + 80 ], "knife_round": [ - 3 + 5 ], "live_match_timeout": [ - 38 + 40 ], "map_pool": [ - 2143 + 2260 ], "map_pool_id": [ - 4921 + 4993 ], "map_veto": [ - 3 + 5 ], "match_mode": [ - 846 + 963 ], "matches": [ - 2644, + 2761, { "distinct_on": [ - 2666, + 2783, "[matches_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2664, + 2781, "[matches_order_by!]" ], "where": [ - 2653 + 2770 ] } ], "matches_aggregate": [ - 2645, + 2762, { "distinct_on": [ - 2666, + 2783, "[matches_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2664, + 2781, "[matches_order_by!]" ], "where": [ - 2653 + 2770 ] } ], "mr": [ - 38 + 40 ], "number_of_substitutes": [ - 38 + 40 ], "overtime": [ - 3 + 5 ], "prefer_dedicated_server": [ - 3 + 5 ], "ready_setting": [ - 988 + 1105 ], "region_veto": [ - 3 + 5 ], "regions": [ - 78 + 80 ], "round_restart_delay": [ - 38 + 40 ], "tech_timeout_setting": [ - 1150 + 1267 ], "timeout_setting": [ - 1150 + 1267 ], "tournament": [ - 4857 + 4929 ], "tournament_bracket": [ - 4378 + 4537 ], "tournament_stage": [ - 4595 + 4754 ], "tv_delay": [ - 38 + 40 ], "type": [ - 887 + 1004 ], "__typename": [ - 78 + 80 ] }, "match_options_aggregate": { "aggregate": [ - 2526 + 2643 ], "nodes": [ - 2524 + 2641 ], "__typename": [ - 78 + 80 ] }, "match_options_aggregate_fields": { "avg": [ - 2527 + 2644 ], "count": [ - 38, + 40, { "columns": [ - 2539, + 2656, "[match_options_select_column!]" ], "distinct": [ - 3 + 5 ] } ], "max": [ - 2532 + 2649 ], "min": [ - 2533 + 2650 ], "stddev": [ - 2541 + 2658 ], "stddev_pop": [ - 2542 + 2659 ], "stddev_samp": [ - 2543 + 2660 ], "sum": [ - 2546 + 2663 ], "var_pop": [ - 2549 + 2666 ], "var_samp": [ - 2550 + 2667 ], "variance": [ - 2551 + 2668 ], "__typename": [ - 78 + 80 ] }, "match_options_avg_fields": { "auto_cancel_duration": [ - 29 + 31 ], "best_of": [ - 29 + 31 ], "live_match_timeout": [ - 29 + 31 ], "mr": [ - 29 + 31 ], "number_of_substitutes": [ - 29 + 31 ], "round_restart_delay": [ - 29 + 31 ], "tv_delay": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "match_options_bool_exp": { "_and": [ - 2528 + 2645 ], "_not": [ - 2528 + 2645 ], "_or": [ - 2528 + 2645 ], "auto_cancel_duration": [ - 39 + 41 ], "auto_cancellation": [ - 4 + 6 ], "best_of": [ - 39 + 41 ], "check_in_setting": [ - 433 + 550 ], "coaches": [ - 4 + 6 ], "default_models": [ - 4 + 6 ], "halftime_pausematch": [ - 4 + 6 ], "has_active_matches": [ - 4 + 6 ], "id": [ - 4923 + 4995 ], "invite_code": [ - 80 + 82 ], "knife_round": [ - 4 + 6 ], "live_match_timeout": [ - 39 + 41 ], "map_pool": [ - 2146 + 2263 ], "map_pool_id": [ - 4923 + 4995 ], "map_veto": [ - 4 + 6 ], "match_mode": [ - 847 + 964 ], "matches": [ - 2653 + 2770 ], "matches_aggregate": [ - 2646 + 2763 ], "mr": [ - 39 + 41 ], "number_of_substitutes": [ - 39 + 41 ], "overtime": [ - 4 + 6 ], "prefer_dedicated_server": [ - 4 + 6 ], "ready_setting": [ - 989 + 1106 ], "region_veto": [ - 4 + 6 ], "regions": [ - 79 + 81 ], "round_restart_delay": [ - 39 + 41 ], "tech_timeout_setting": [ - 1151 + 1268 ], "timeout_setting": [ - 1151 + 1268 ], "tournament": [ - 4878 + 4950 ], "tournament_bracket": [ - 4389 + 4548 ], "tournament_stage": [ - 4607 + 4766 ], "tv_delay": [ - 39 + 41 ], "type": [ - 888 + 1005 ], "__typename": [ - 78 + 80 ] }, "match_options_constraint": {}, "match_options_inc_input": { "auto_cancel_duration": [ - 38 + 40 ], "best_of": [ - 38 + 40 ], "live_match_timeout": [ - 38 + 40 ], "mr": [ - 38 + 40 ], "number_of_substitutes": [ - 38 + 40 ], "round_restart_delay": [ - 38 + 40 ], "tv_delay": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "match_options_insert_input": { "auto_cancel_duration": [ - 38 + 40 ], "auto_cancellation": [ - 3 + 5 ], "best_of": [ - 38 + 40 ], "check_in_setting": [ - 432 + 549 ], "coaches": [ - 3 + 5 ], "default_models": [ - 3 + 5 ], "halftime_pausematch": [ - 3 + 5 ], "id": [ - 4921 + 4993 ], "invite_code": [ - 78 + 80 ], "knife_round": [ - 3 + 5 ], "live_match_timeout": [ - 38 + 40 ], "map_pool": [ - 2152 + 2269 ], "map_pool_id": [ - 4921 + 4993 ], "map_veto": [ - 3 + 5 ], "match_mode": [ - 846 + 963 ], "matches": [ - 2650 + 2767 ], "mr": [ - 38 + 40 ], "number_of_substitutes": [ - 38 + 40 ], "overtime": [ - 3 + 5 ], "prefer_dedicated_server": [ - 3 + 5 ], "ready_setting": [ - 988 + 1105 ], "region_veto": [ - 3 + 5 ], "regions": [ - 78 + 80 ], "round_restart_delay": [ - 38 + 40 ], "tech_timeout_setting": [ - 1150 + 1267 ], "timeout_setting": [ - 1150 + 1267 ], "tournament": [ - 4887 + 4959 ], "tournament_bracket": [ - 4398 + 4557 ], "tournament_stage": [ - 4619 + 4778 ], "tv_delay": [ - 38 + 40 ], "type": [ - 887 + 1004 ], "__typename": [ - 78 + 80 ] }, "match_options_max_fields": { "auto_cancel_duration": [ - 38 + 40 ], "best_of": [ - 38 + 40 ], "id": [ - 4921 + 4993 ], "invite_code": [ - 78 + 80 ], "live_match_timeout": [ - 38 + 40 ], "map_pool_id": [ - 4921 + 4993 ], "mr": [ - 38 + 40 ], "number_of_substitutes": [ - 38 + 40 ], "regions": [ - 78 + 80 ], "round_restart_delay": [ - 38 + 40 ], "tv_delay": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "match_options_min_fields": { "auto_cancel_duration": [ - 38 + 40 ], "best_of": [ - 38 + 40 ], "id": [ - 4921 + 4993 ], "invite_code": [ - 78 + 80 ], "live_match_timeout": [ - 38 + 40 ], "map_pool_id": [ - 4921 + 4993 ], "mr": [ - 38 + 40 ], "number_of_substitutes": [ - 38 + 40 ], "regions": [ - 78 + 80 ], "round_restart_delay": [ - 38 + 40 ], "tv_delay": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "match_options_mutation_response": { "affected_rows": [ - 38 + 40 ], "returning": [ - 2524 + 2641 ], "__typename": [ - 78 + 80 ] }, "match_options_obj_rel_insert_input": { "data": [ - 2531 + 2648 ], "on_conflict": [ - 2536 + 2653 ], "__typename": [ - 78 + 80 ] }, "match_options_on_conflict": { "constraint": [ - 2529 + 2646 ], "update_columns": [ - 2547 + 2664 ], "where": [ - 2528 + 2645 ], "__typename": [ - 78 + 80 ] }, "match_options_order_by": { "auto_cancel_duration": [ - 2829 + 2946 ], "auto_cancellation": [ - 2829 + 2946 ], "best_of": [ - 2829 + 2946 ], "check_in_setting": [ - 2829 + 2946 ], "coaches": [ - 2829 + 2946 ], "default_models": [ - 2829 + 2946 ], "halftime_pausematch": [ - 2829 + 2946 ], "has_active_matches": [ - 2829 + 2946 ], "id": [ - 2829 + 2946 ], "invite_code": [ - 2829 + 2946 ], "knife_round": [ - 2829 + 2946 ], "live_match_timeout": [ - 2829 + 2946 ], "map_pool": [ - 2154 + 2271 ], "map_pool_id": [ - 2829 + 2946 ], "map_veto": [ - 2829 + 2946 ], "match_mode": [ - 2829 + 2946 ], "matches_aggregate": [ - 2649 + 2766 ], "mr": [ - 2829 + 2946 ], "number_of_substitutes": [ - 2829 + 2946 ], "overtime": [ - 2829 + 2946 ], "prefer_dedicated_server": [ - 2829 + 2946 ], "ready_setting": [ - 2829 + 2946 ], "region_veto": [ - 2829 + 2946 ], "regions": [ - 2829 + 2946 ], "round_restart_delay": [ - 2829 + 2946 ], "tech_timeout_setting": [ - 2829 + 2946 ], "timeout_setting": [ - 2829 + 2946 ], "tournament": [ - 4889 + 4961 ], "tournament_bracket": [ - 4400 + 4559 ], "tournament_stage": [ - 4621 + 4780 ], "tv_delay": [ - 2829 + 2946 ], "type": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "match_options_pk_columns_input": { "id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "match_options_select_column": {}, "match_options_set_input": { "auto_cancel_duration": [ - 38 + 40 ], "auto_cancellation": [ - 3 + 5 ], "best_of": [ - 38 + 40 ], "check_in_setting": [ - 432 + 549 ], "coaches": [ - 3 + 5 ], "default_models": [ - 3 + 5 ], "halftime_pausematch": [ - 3 + 5 ], "id": [ - 4921 + 4993 ], "invite_code": [ - 78 + 80 ], "knife_round": [ - 3 + 5 ], "live_match_timeout": [ - 38 + 40 ], "map_pool_id": [ - 4921 + 4993 ], "map_veto": [ - 3 + 5 ], "match_mode": [ - 846 + 963 ], "mr": [ - 38 + 40 ], "number_of_substitutes": [ - 38 + 40 ], "overtime": [ - 3 + 5 ], "prefer_dedicated_server": [ - 3 + 5 ], "ready_setting": [ - 988 + 1105 ], "region_veto": [ - 3 + 5 ], "regions": [ - 78 + 80 ], "round_restart_delay": [ - 38 + 40 ], "tech_timeout_setting": [ - 1150 + 1267 ], "timeout_setting": [ - 1150 + 1267 ], "tv_delay": [ - 38 + 40 ], "type": [ - 887 + 1004 ], "__typename": [ - 78 + 80 ] }, "match_options_stddev_fields": { "auto_cancel_duration": [ - 29 + 31 ], "best_of": [ - 29 + 31 ], "live_match_timeout": [ - 29 + 31 ], "mr": [ - 29 + 31 ], "number_of_substitutes": [ - 29 + 31 ], "round_restart_delay": [ - 29 + 31 ], "tv_delay": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "match_options_stddev_pop_fields": { "auto_cancel_duration": [ - 29 + 31 ], "best_of": [ - 29 + 31 ], "live_match_timeout": [ - 29 + 31 ], "mr": [ - 29 + 31 ], "number_of_substitutes": [ - 29 + 31 ], "round_restart_delay": [ - 29 + 31 ], "tv_delay": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "match_options_stddev_samp_fields": { "auto_cancel_duration": [ - 29 + 31 ], "best_of": [ - 29 + 31 ], "live_match_timeout": [ - 29 + 31 ], "mr": [ - 29 + 31 ], "number_of_substitutes": [ - 29 + 31 ], "round_restart_delay": [ - 29 + 31 ], "tv_delay": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "match_options_stream_cursor_input": { "initial_value": [ - 2545 + 2662 ], "ordering": [ - 236 + 308 ], "__typename": [ - 78 + 80 ] }, "match_options_stream_cursor_value_input": { "auto_cancel_duration": [ - 38 + 40 ], "auto_cancellation": [ - 3 + 5 ], "best_of": [ - 38 + 40 ], "check_in_setting": [ - 432 + 549 ], "coaches": [ - 3 + 5 ], "default_models": [ - 3 + 5 ], "halftime_pausematch": [ - 3 + 5 ], "id": [ - 4921 + 4993 ], "invite_code": [ - 78 + 80 ], "knife_round": [ - 3 + 5 ], "live_match_timeout": [ - 38 + 40 ], "map_pool_id": [ - 4921 + 4993 ], "map_veto": [ - 3 + 5 ], "match_mode": [ - 846 + 963 ], "mr": [ - 38 + 40 ], "number_of_substitutes": [ - 38 + 40 ], "overtime": [ - 3 + 5 ], "prefer_dedicated_server": [ - 3 + 5 ], "ready_setting": [ - 988 + 1105 ], "region_veto": [ - 3 + 5 ], "regions": [ - 78 + 80 ], "round_restart_delay": [ - 38 + 40 ], "tech_timeout_setting": [ - 1150 + 1267 ], "timeout_setting": [ - 1150 + 1267 ], "tv_delay": [ - 38 + 40 ], "type": [ - 887 + 1004 ], "__typename": [ - 78 + 80 ] }, "match_options_sum_fields": { "auto_cancel_duration": [ - 38 + 40 ], "best_of": [ - 38 + 40 ], "live_match_timeout": [ - 38 + 40 ], "mr": [ - 38 + 40 ], "number_of_substitutes": [ - 38 + 40 ], "round_restart_delay": [ - 38 + 40 ], "tv_delay": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "match_options_update_column": {}, "match_options_updates": { "_inc": [ - 2530 + 2647 ], "_set": [ - 2540 + 2657 ], "where": [ - 2528 + 2645 ], "__typename": [ - 78 + 80 ] }, "match_options_var_pop_fields": { "auto_cancel_duration": [ - 29 + 31 ], "best_of": [ - 29 + 31 ], "live_match_timeout": [ - 29 + 31 ], "mr": [ - 29 + 31 ], "number_of_substitutes": [ - 29 + 31 ], "round_restart_delay": [ - 29 + 31 ], "tv_delay": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "match_options_var_samp_fields": { "auto_cancel_duration": [ - 29 + 31 ], "best_of": [ - 29 + 31 ], "live_match_timeout": [ - 29 + 31 ], "mr": [ - 29 + 31 ], "number_of_substitutes": [ - 29 + 31 ], "round_restart_delay": [ - 29 + 31 ], "tv_delay": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "match_options_variance_fields": { "auto_cancel_duration": [ - 29 + 31 ], "best_of": [ - 29 + 31 ], "live_match_timeout": [ - 29 + 31 ], "mr": [ - 29 + 31 ], "number_of_substitutes": [ - 29 + 31 ], "round_restart_delay": [ - 29 + 31 ], "tv_delay": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "match_region_veto_picks": { "created_at": [ - 4376 + 4493 ], "id": [ - 4921 + 4993 ], "match": [ - 2644 + 2761 ], "match_id": [ - 4921 + 4993 ], "match_lineup": [ - 2324 + 2441 ], "match_lineup_id": [ - 4921 + 4993 ], "region": [ - 78 + 80 ], "type": [ - 1253 + 1370 ], "__typename": [ - 78 + 80 ] }, "match_region_veto_picks_aggregate": { "aggregate": [ - 2556 + 2673 ], "nodes": [ - 2552 + 2669 ], "__typename": [ - 78 + 80 ] }, "match_region_veto_picks_aggregate_bool_exp": { "count": [ - 2555 + 2672 ], "__typename": [ - 78 + 80 ] }, "match_region_veto_picks_aggregate_bool_exp_count": { "arguments": [ - 2570 + 2687 ], "distinct": [ - 3 + 5 ], "filter": [ - 2559 + 2676 ], "predicate": [ - 39 + 41 ], "__typename": [ - 78 + 80 ] }, "match_region_veto_picks_aggregate_fields": { "count": [ - 38, + 40, { "columns": [ - 2570, + 2687, "[match_region_veto_picks_select_column!]" ], "distinct": [ - 3 + 5 ] } ], "max": [ - 2562 + 2679 ], "min": [ - 2564 + 2681 ], "__typename": [ - 78 + 80 ] }, "match_region_veto_picks_aggregate_order_by": { "count": [ - 2829 + 2946 ], "max": [ - 2563 + 2680 ], "min": [ - 2565 + 2682 ], "__typename": [ - 78 + 80 ] }, "match_region_veto_picks_arr_rel_insert_input": { "data": [ - 2561 + 2678 ], "on_conflict": [ - 2567 + 2684 ], "__typename": [ - 78 + 80 ] }, "match_region_veto_picks_bool_exp": { "_and": [ - 2559 + 2676 ], "_not": [ - 2559 + 2676 ], "_or": [ - 2559 + 2676 ], "created_at": [ - 4377 + 4494 ], "id": [ - 4923 + 4995 ], "match": [ - 2653 + 2770 ], "match_id": [ - 4923 + 4995 ], "match_lineup": [ - 2333 + 2450 ], "match_lineup_id": [ - 4923 + 4995 ], "region": [ - 80 + 82 ], "type": [ - 1254 + 1371 ], "__typename": [ - 78 + 80 ] }, "match_region_veto_picks_constraint": {}, "match_region_veto_picks_insert_input": { "created_at": [ - 4376 + 4493 ], "id": [ - 4921 + 4993 ], "match": [ - 2662 + 2779 ], "match_id": [ - 4921 + 4993 ], "match_lineup": [ - 2342 + 2459 ], "match_lineup_id": [ - 4921 + 4993 ], "region": [ - 78 + 80 ], "type": [ - 1253 + 1370 ], "__typename": [ - 78 + 80 ] }, "match_region_veto_picks_max_fields": { "created_at": [ - 4376 + 4493 ], "id": [ - 4921 + 4993 ], "match_id": [ - 4921 + 4993 ], "match_lineup_id": [ - 4921 + 4993 ], "region": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "match_region_veto_picks_max_order_by": { "created_at": [ - 2829 + 2946 ], "id": [ - 2829 + 2946 ], "match_id": [ - 2829 + 2946 ], "match_lineup_id": [ - 2829 + 2946 ], "region": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "match_region_veto_picks_min_fields": { "created_at": [ - 4376 + 4493 ], "id": [ - 4921 + 4993 ], "match_id": [ - 4921 + 4993 ], "match_lineup_id": [ - 4921 + 4993 ], "region": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "match_region_veto_picks_min_order_by": { "created_at": [ - 2829 + 2946 ], "id": [ - 2829 + 2946 ], "match_id": [ - 2829 + 2946 ], "match_lineup_id": [ - 2829 + 2946 ], "region": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "match_region_veto_picks_mutation_response": { "affected_rows": [ - 38 + 40 ], "returning": [ - 2552 + 2669 ], "__typename": [ - 78 + 80 ] }, "match_region_veto_picks_on_conflict": { "constraint": [ - 2560 + 2677 ], "update_columns": [ - 2574 + 2691 ], "where": [ - 2559 + 2676 ], "__typename": [ - 78 + 80 ] }, "match_region_veto_picks_order_by": { "created_at": [ - 2829 + 2946 ], "id": [ - 2829 + 2946 ], "match": [ - 2664 + 2781 ], "match_id": [ - 2829 + 2946 ], "match_lineup": [ - 2344 + 2461 ], "match_lineup_id": [ - 2829 + 2946 ], "region": [ - 2829 + 2946 ], "type": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "match_region_veto_picks_pk_columns_input": { "id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "match_region_veto_picks_select_column": {}, "match_region_veto_picks_set_input": { "created_at": [ - 4376 + 4493 ], "id": [ - 4921 + 4993 ], "match_id": [ - 4921 + 4993 ], "match_lineup_id": [ - 4921 + 4993 ], "region": [ - 78 + 80 ], "type": [ - 1253 + 1370 ], "__typename": [ - 78 + 80 ] }, "match_region_veto_picks_stream_cursor_input": { "initial_value": [ - 2573 + 2690 ], "ordering": [ - 236 + 308 ], "__typename": [ - 78 + 80 ] }, "match_region_veto_picks_stream_cursor_value_input": { "created_at": [ - 4376 + 4493 ], "id": [ - 4921 + 4993 ], "match_id": [ - 4921 + 4993 ], "match_lineup_id": [ - 4921 + 4993 ], "region": [ - 78 + 80 ], "type": [ - 1253 + 1370 ], "__typename": [ - 78 + 80 ] }, "match_region_veto_picks_update_column": {}, "match_region_veto_picks_updates": { "_set": [ - 2571 + 2688 ], "where": [ - 2559 + 2676 ], "__typename": [ - 78 + 80 ] }, "match_streams": { "autodirector": [ - 3 + 5 ], "error_message": [ - 78 + 80 ], "game_server_node": [ - 1576 + 1693 ], "game_server_node_id": [ - 78 + 80 ], "id": [ - 4921 + 4993 ], "is_game_streamer": [ - 3 + 5 ], "is_live": [ - 3 + 5 ], "k8s_service_name": [ - 78 + 80 ], "last_status_at": [ - 4376 + 4493 ], "link": [ - 78 + 80 ], "match": [ - 2644 + 2761 ], "match_id": [ - 4921 + 4993 ], "mode": [ - 78 + 80 ], "priority": [ - 38 + 40 ], "status": [ - 78 + 80 ], "status_history": [ - 1700, + 1817, { "path": [ - 78 + 80 ] } ], "stream_url": [ - 78 + 80 ], "title": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "match_streams_aggregate": { "aggregate": [ - 2582 + 2699 ], "nodes": [ - 2576 + 2693 ], "__typename": [ - 78 + 80 ] }, "match_streams_aggregate_bool_exp": { "bool_and": [ - 2579 + 2696 ], "bool_or": [ - 2580 + 2697 ], "count": [ - 2581 + 2698 ], "__typename": [ - 78 + 80 ] }, "match_streams_aggregate_bool_exp_bool_and": { "arguments": [ - 2605 + 2722 ], "distinct": [ - 3 + 5 ], "filter": [ - 2588 + 2705 ], "predicate": [ - 4 + 6 ], "__typename": [ - 78 + 80 ] }, "match_streams_aggregate_bool_exp_bool_or": { "arguments": [ - 2606 + 2723 ], "distinct": [ - 3 + 5 ], "filter": [ - 2588 + 2705 ], "predicate": [ - 4 + 6 ], "__typename": [ - 78 + 80 ] }, "match_streams_aggregate_bool_exp_count": { "arguments": [ - 2604 + 2721 ], "distinct": [ - 3 + 5 ], "filter": [ - 2588 + 2705 ], "predicate": [ - 39 + 41 ], "__typename": [ - 78 + 80 ] }, "match_streams_aggregate_fields": { "avg": [ - 2586 + 2703 ], "count": [ - 38, + 40, { "columns": [ - 2604, + 2721, "[match_streams_select_column!]" ], "distinct": [ - 3 + 5 ] } ], "max": [ - 2595 + 2712 ], "min": [ - 2597 + 2714 ], "stddev": [ - 2608 + 2725 ], "stddev_pop": [ - 2610 + 2727 ], "stddev_samp": [ - 2612 + 2729 ], "sum": [ - 2616 + 2733 ], "var_pop": [ - 2620 + 2737 ], "var_samp": [ - 2622 + 2739 ], "variance": [ - 2624 + 2741 ], "__typename": [ - 78 + 80 ] }, "match_streams_aggregate_order_by": { "avg": [ - 2587 + 2704 ], "count": [ - 2829 + 2946 ], "max": [ - 2596 + 2713 ], "min": [ - 2598 + 2715 ], "stddev": [ - 2609 + 2726 ], "stddev_pop": [ - 2611 + 2728 ], "stddev_samp": [ - 2613 + 2730 ], "sum": [ - 2617 + 2734 ], "var_pop": [ - 2621 + 2738 ], "var_samp": [ - 2623 + 2740 ], "variance": [ - 2625 + 2742 ], "__typename": [ - 78 + 80 ] }, "match_streams_append_input": { "status_history": [ - 1700 + 1817 ], "__typename": [ - 78 + 80 ] }, "match_streams_arr_rel_insert_input": { "data": [ - 2594 + 2711 ], "on_conflict": [ - 2600 + 2717 ], "__typename": [ - 78 + 80 ] }, "match_streams_avg_fields": { "priority": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "match_streams_avg_order_by": { "priority": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "match_streams_bool_exp": { "_and": [ - 2588 + 2705 ], "_not": [ - 2588 + 2705 ], "_or": [ - 2588 + 2705 ], "autodirector": [ - 4 + 6 ], "error_message": [ - 80 + 82 ], "game_server_node": [ - 1588 + 1705 ], "game_server_node_id": [ - 80 + 82 ], "id": [ - 4923 + 4995 ], "is_game_streamer": [ - 4 + 6 ], "is_live": [ - 4 + 6 ], "k8s_service_name": [ - 80 + 82 ], "last_status_at": [ - 4377 + 4494 ], "link": [ - 80 + 82 ], "match": [ - 2653 + 2770 ], "match_id": [ - 4923 + 4995 ], "mode": [ - 80 + 82 ], "priority": [ - 39 + 41 ], "status": [ - 80 + 82 ], "status_history": [ - 1702 + 1819 ], "stream_url": [ - 80 + 82 ], "title": [ - 80 + 82 ], "__typename": [ - 78 + 80 ] }, "match_streams_constraint": {}, "match_streams_delete_at_path_input": { "status_history": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "match_streams_delete_elem_input": { "status_history": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "match_streams_delete_key_input": { "status_history": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "match_streams_inc_input": { "priority": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "match_streams_insert_input": { "autodirector": [ - 3 + 5 ], "error_message": [ - 78 + 80 ], "game_server_node": [ - 1600 + 1717 ], "game_server_node_id": [ - 78 + 80 ], "id": [ - 4921 + 4993 ], "is_game_streamer": [ - 3 + 5 ], "is_live": [ - 3 + 5 ], "k8s_service_name": [ - 78 + 80 ], "last_status_at": [ - 4376 + 4493 ], "link": [ - 78 + 80 ], "match": [ - 2662 + 2779 ], "match_id": [ - 4921 + 4993 ], "mode": [ - 78 + 80 ], "priority": [ - 38 + 40 ], "status": [ - 78 + 80 ], "status_history": [ - 1700 + 1817 ], "stream_url": [ - 78 + 80 ], "title": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "match_streams_max_fields": { "error_message": [ - 78 + 80 ], "game_server_node_id": [ - 78 + 80 ], "id": [ - 4921 + 4993 ], "k8s_service_name": [ - 78 + 80 ], "last_status_at": [ - 4376 + 4493 ], "link": [ - 78 + 80 ], "match_id": [ - 4921 + 4993 ], "mode": [ - 78 + 80 ], "priority": [ - 38 + 40 ], "status": [ - 78 + 80 ], "stream_url": [ - 78 + 80 ], "title": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "match_streams_max_order_by": { "error_message": [ - 2829 + 2946 ], "game_server_node_id": [ - 2829 + 2946 ], "id": [ - 2829 + 2946 ], "k8s_service_name": [ - 2829 + 2946 ], "last_status_at": [ - 2829 + 2946 ], "link": [ - 2829 + 2946 ], "match_id": [ - 2829 + 2946 ], "mode": [ - 2829 + 2946 ], "priority": [ - 2829 + 2946 ], "status": [ - 2829 + 2946 ], "stream_url": [ - 2829 + 2946 ], "title": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "match_streams_min_fields": { "error_message": [ - 78 + 80 ], "game_server_node_id": [ - 78 + 80 ], "id": [ - 4921 + 4993 ], "k8s_service_name": [ - 78 + 80 ], "last_status_at": [ - 4376 + 4493 ], "link": [ - 78 + 80 ], "match_id": [ - 4921 + 4993 ], "mode": [ - 78 + 80 ], "priority": [ - 38 + 40 ], "status": [ - 78 + 80 ], "stream_url": [ - 78 + 80 ], "title": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "match_streams_min_order_by": { "error_message": [ - 2829 + 2946 ], "game_server_node_id": [ - 2829 + 2946 ], "id": [ - 2829 + 2946 ], "k8s_service_name": [ - 2829 + 2946 ], "last_status_at": [ - 2829 + 2946 ], "link": [ - 2829 + 2946 ], "match_id": [ - 2829 + 2946 ], "mode": [ - 2829 + 2946 ], "priority": [ - 2829 + 2946 ], "status": [ - 2829 + 2946 ], "stream_url": [ - 2829 + 2946 ], "title": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "match_streams_mutation_response": { "affected_rows": [ - 38 + 40 ], "returning": [ - 2576 + 2693 ], "__typename": [ - 78 + 80 ] }, "match_streams_on_conflict": { "constraint": [ - 2589 + 2706 ], "update_columns": [ - 2618 + 2735 ], "where": [ - 2588 + 2705 ], "__typename": [ - 78 + 80 ] }, "match_streams_order_by": { "autodirector": [ - 2829 + 2946 ], "error_message": [ - 2829 + 2946 ], "game_server_node": [ - 1602 + 1719 ], "game_server_node_id": [ - 2829 + 2946 ], "id": [ - 2829 + 2946 ], "is_game_streamer": [ - 2829 + 2946 ], "is_live": [ - 2829 + 2946 ], "k8s_service_name": [ - 2829 + 2946 ], "last_status_at": [ - 2829 + 2946 ], "link": [ - 2829 + 2946 ], "match": [ - 2664 + 2781 ], "match_id": [ - 2829 + 2946 ], "mode": [ - 2829 + 2946 ], "priority": [ - 2829 + 2946 ], "status": [ - 2829 + 2946 ], "status_history": [ - 2829 + 2946 ], "stream_url": [ - 2829 + 2946 ], "title": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "match_streams_pk_columns_input": { "id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "match_streams_prepend_input": { "status_history": [ - 1700 + 1817 ], "__typename": [ - 78 + 80 ] }, "match_streams_select_column": {}, @@ -47576,4258 +49803,4258 @@ export default { "match_streams_select_column_match_streams_aggregate_bool_exp_bool_or_arguments_columns": {}, "match_streams_set_input": { "autodirector": [ - 3 + 5 ], "error_message": [ - 78 + 80 ], "game_server_node_id": [ - 78 + 80 ], "id": [ - 4921 + 4993 ], "is_game_streamer": [ - 3 + 5 ], "is_live": [ - 3 + 5 ], "k8s_service_name": [ - 78 + 80 ], "last_status_at": [ - 4376 + 4493 ], "link": [ - 78 + 80 ], "match_id": [ - 4921 + 4993 ], "mode": [ - 78 + 80 ], "priority": [ - 38 + 40 ], "status": [ - 78 + 80 ], "status_history": [ - 1700 + 1817 ], "stream_url": [ - 78 + 80 ], "title": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "match_streams_stddev_fields": { "priority": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "match_streams_stddev_order_by": { "priority": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "match_streams_stddev_pop_fields": { "priority": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "match_streams_stddev_pop_order_by": { "priority": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "match_streams_stddev_samp_fields": { "priority": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "match_streams_stddev_samp_order_by": { "priority": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "match_streams_stream_cursor_input": { "initial_value": [ - 2615 + 2732 ], "ordering": [ - 236 + 308 ], "__typename": [ - 78 + 80 ] }, "match_streams_stream_cursor_value_input": { "autodirector": [ - 3 + 5 ], "error_message": [ - 78 + 80 ], "game_server_node_id": [ - 78 + 80 ], "id": [ - 4921 + 4993 ], "is_game_streamer": [ - 3 + 5 ], "is_live": [ - 3 + 5 ], "k8s_service_name": [ - 78 + 80 ], "last_status_at": [ - 4376 + 4493 ], "link": [ - 78 + 80 ], "match_id": [ - 4921 + 4993 ], "mode": [ - 78 + 80 ], "priority": [ - 38 + 40 ], "status": [ - 78 + 80 ], "status_history": [ - 1700 + 1817 ], "stream_url": [ - 78 + 80 ], "title": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "match_streams_sum_fields": { "priority": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "match_streams_sum_order_by": { "priority": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "match_streams_update_column": {}, "match_streams_updates": { "_append": [ - 2584 + 2701 ], "_delete_at_path": [ - 2590 + 2707 ], "_delete_elem": [ - 2591 + 2708 ], "_delete_key": [ - 2592 + 2709 ], "_inc": [ - 2593 + 2710 ], "_prepend": [ - 2603 + 2720 ], "_set": [ - 2607 + 2724 ], "where": [ - 2588 + 2705 ], "__typename": [ - 78 + 80 ] }, "match_streams_var_pop_fields": { "priority": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "match_streams_var_pop_order_by": { "priority": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "match_streams_var_samp_fields": { "priority": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "match_streams_var_samp_order_by": { "priority": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "match_streams_variance_fields": { "priority": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "match_streams_variance_order_by": { "priority": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "match_type_cfgs": { "cfg": [ - 78 + 80 ], "type": [ - 618 + 735 ], "__typename": [ - 78 + 80 ] }, "match_type_cfgs_aggregate": { "aggregate": [ - 2628 + 2745 ], "nodes": [ - 2626 + 2743 ], "__typename": [ - 78 + 80 ] }, "match_type_cfgs_aggregate_fields": { "count": [ - 38, + 40, { "columns": [ - 2638, + 2755, "[match_type_cfgs_select_column!]" ], "distinct": [ - 3 + 5 ] } ], "max": [ - 2632 + 2749 ], "min": [ - 2633 + 2750 ], "__typename": [ - 78 + 80 ] }, "match_type_cfgs_bool_exp": { "_and": [ - 2629 + 2746 ], "_not": [ - 2629 + 2746 ], "_or": [ - 2629 + 2746 ], "cfg": [ - 80 + 82 ], "type": [ - 619 + 736 ], "__typename": [ - 78 + 80 ] }, "match_type_cfgs_constraint": {}, "match_type_cfgs_insert_input": { "cfg": [ - 78 + 80 ], "type": [ - 618 + 735 ], "__typename": [ - 78 + 80 ] }, "match_type_cfgs_max_fields": { "cfg": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "match_type_cfgs_min_fields": { "cfg": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "match_type_cfgs_mutation_response": { "affected_rows": [ - 38 + 40 ], "returning": [ - 2626 + 2743 ], "__typename": [ - 78 + 80 ] }, "match_type_cfgs_on_conflict": { "constraint": [ - 2630 + 2747 ], "update_columns": [ - 2642 + 2759 ], "where": [ - 2629 + 2746 ], "__typename": [ - 78 + 80 ] }, "match_type_cfgs_order_by": { "cfg": [ - 2829 + 2946 ], "type": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "match_type_cfgs_pk_columns_input": { "type": [ - 618 + 735 ], "__typename": [ - 78 + 80 ] }, "match_type_cfgs_select_column": {}, "match_type_cfgs_set_input": { "cfg": [ - 78 + 80 ], "type": [ - 618 + 735 ], "__typename": [ - 78 + 80 ] }, "match_type_cfgs_stream_cursor_input": { "initial_value": [ - 2641 + 2758 ], "ordering": [ - 236 + 308 ], "__typename": [ - 78 + 80 ] }, "match_type_cfgs_stream_cursor_value_input": { "cfg": [ - 78 + 80 ], "type": [ - 618 + 735 ], "__typename": [ - 78 + 80 ] }, "match_type_cfgs_update_column": {}, "match_type_cfgs_updates": { "_set": [ - 2639 + 2756 ], "where": [ - 2629 + 2746 ], "__typename": [ - 78 + 80 ] }, "matches": { "can_assign_server": [ - 3 + 5 ], "can_cancel": [ - 3 + 5 ], "can_check_in": [ - 3 + 5 ], "can_reassign_winner": [ - 3 + 5 ], "can_schedule": [ - 3 + 5 ], "can_start": [ - 3 + 5 ], "can_stream_live": [ - 3 + 5 ], "can_stream_tv": [ - 3 + 5 ], "cancels_at": [ - 4376 + 4493 ], "clutches": [ - 5101, + 5173, { "distinct_on": [ - 5117, + 5189, "[v_match_clutches_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 5116, + 5188, "[v_match_clutches_order_by!]" ], "where": [ - 5110 + 5182 ] } ], "clutches_aggregate": [ - 5102, + 5174, { "distinct_on": [ - 5117, + 5189, "[v_match_clutches_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 5116, + 5188, "[v_match_clutches_order_by!]" ], "where": [ - 5110 + 5182 ] } ], "connection_link": [ - 78 + 80 ], "connection_string": [ - 78 + 80 ], "created_at": [ - 4376 + 4493 ], "current_match_map_id": [ - 4921 + 4993 ], "demos": [ - 2366, + 2483, { "distinct_on": [ - 2395, + 2512, "[match_map_demos_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2392, + 2509, "[match_map_demos_order_by!]" ], "where": [ - 2378 + 2495 ] } ], "demos_aggregate": [ - 2367, + 2484, { "distinct_on": [ - 2395, + 2512, "[match_map_demos_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2392, + 2509, "[match_map_demos_order_by!]" ], "where": [ - 2378 + 2495 ] } ], "draft_games": [ - 381, + 458, { "distinct_on": [ - 405, + 482, "[draft_games_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 403, + 480, "[draft_games_order_by!]" ], "where": [ - 392 + 469 ] } ], "draft_games_aggregate": [ - 382, + 459, { "distinct_on": [ - 405, + 482, "[draft_games_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 403, + 480, "[draft_games_order_by!]" ], "where": [ - 392 + 469 ] } ], "e_match_status": [ - 861 + 978 ], "e_region": [ - 3874 + 3991 ], "effective_at": [ - 4376 + 4493 ], "elo_changes": [ - 5298, + 5370, { "distinct_on": [ - 5324, + 5396, "[v_player_elo_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 5323, + 5395, "[v_player_elo_order_by!]" ], "where": [ - 5317 + 5389 ] } ], "elo_changes_aggregate": [ - 5299, + 5371, { "distinct_on": [ - 5324, + 5396, "[v_player_elo_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 5323, + 5395, "[v_player_elo_order_by!]" ], "where": [ - 5317 + 5389 ] } ], "ended_at": [ - 4376 + 4493 ], "external_id": [ - 78 + 80 ], "id": [ - 4921 + 4993 ], "invite_code": [ - 78 + 80 ], "is_captain": [ - 3 + 5 ], "is_coach": [ - 3 + 5 ], "is_friend_in_match_lineup": [ - 3 + 5 ], "is_in_lineup": [ - 3 + 5 ], "is_match_server_available": [ - 3 + 5 ], "is_organizer": [ - 3 + 5 ], "is_server_online": [ - 3 + 5 ], "is_tournament_match": [ - 3 + 5 ], "label": [ - 78 + 80 ], "lineup_1": [ - 2324 + 2441 ], "lineup_1_id": [ - 4921 + 4993 ], "lineup_2": [ - 2324 + 2441 ], "lineup_2_id": [ - 4921 + 4993 ], "lineup_counts": [ - 1698, + 1815, { "path": [ - 78 + 80 ] } ], "map_veto_picking_lineup_id": [ - 4921 + 4993 ], "map_veto_picks": [ - 2458, + 2575, { "distinct_on": [ - 2476, + 2593, "[match_map_veto_picks_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2474, + 2591, "[match_map_veto_picks_order_by!]" ], "where": [ - 2465 + 2582 ] } ], "map_veto_picks_aggregate": [ - 2459, + 2576, { "distinct_on": [ - 2476, + 2593, "[match_map_veto_picks_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2474, + 2591, "[match_map_veto_picks_order_by!]" ], "where": [ - 2465 + 2582 ] } ], "map_veto_type": [ - 78 + 80 ], "match_maps": [ - 2482, + 2599, { "distinct_on": [ - 2504, + 2621, "[match_maps_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2502, + 2619, "[match_maps_order_by!]" ], "where": [ - 2491 + 2608 ] } ], "match_maps_aggregate": [ - 2483, + 2600, { "distinct_on": [ - 2504, + 2621, "[match_maps_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2502, + 2619, "[match_maps_order_by!]" ], "where": [ - 2491 + 2608 ] } ], "match_options_id": [ - 4921 + 4993 ], "max_players_per_lineup": [ - 38 + 40 ], "min_players_per_lineup": [ - 38 + 40 ], "opening_duels": [ - 5229, + 5301, { "distinct_on": [ - 5245, + 5317, "[v_match_player_opening_duels_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 5244, + 5316, "[v_match_player_opening_duels_order_by!]" ], "where": [ - 5238 + 5310 ] } ], "opening_duels_aggregate": [ - 5230, + 5302, { "distinct_on": [ - 5245, + 5317, "[v_match_player_opening_duels_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 5244, + 5316, "[v_match_player_opening_duels_order_by!]" ], "where": [ - 5238 + 5310 ] } ], "options": [ - 2524 + 2641 ], "organizer": [ - 3787 + 3904 ], "organizer_steam_id": [ - 180 + 252 ], "password": [ - 78 + 80 ], "player_assists": [ - 2967, + 3084, { "distinct_on": [ - 2990, + 3107, "[player_assists_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2988, + 3105, "[player_assists_order_by!]" ], "where": [ - 2978 + 3095 ] } ], "player_assists_aggregate": [ - 2968, + 3085, { "distinct_on": [ - 2990, + 3107, "[player_assists_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2988, + 3105, "[player_assists_order_by!]" ], "where": [ - 2978 + 3095 ] } ], "player_damages": [ - 3030, + 3147, { "distinct_on": [ - 3051, + 3168, "[player_damages_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 3049, + 3166, "[player_damages_order_by!]" ], "where": [ - 3039 + 3156 ] } ], "player_damages_aggregate": [ - 3031, + 3148, { "distinct_on": [ - 3051, + 3168, "[player_damages_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 3049, + 3166, "[player_damages_order_by!]" ], "where": [ - 3039 + 3156 ] } ], "player_flashes": [ - 3139, + 3256, { "distinct_on": [ - 3162, + 3279, "[player_flashes_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 3160, + 3277, "[player_flashes_order_by!]" ], "where": [ - 3150 + 3267 ] } ], "player_flashes_aggregate": [ - 3140, + 3257, { "distinct_on": [ - 3162, + 3279, "[player_flashes_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 3160, + 3277, "[player_flashes_order_by!]" ], "where": [ - 3150 + 3267 ] } ], "player_kills": [ - 3184, + 3301, { "distinct_on": [ - 3248, + 3365, "[player_kills_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 3246, + 3363, "[player_kills_order_by!]" ], "where": [ - 3195 + 3312 ] } ], "player_kills_aggregate": [ - 3185, + 3302, { "distinct_on": [ - 3248, + 3365, "[player_kills_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 3246, + 3363, "[player_kills_order_by!]" ], "where": [ - 3195 + 3312 ] } ], "player_objectives": [ - 3385, + 3502, { "distinct_on": [ - 3406, + 3523, "[player_objectives_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 3404, + 3521, "[player_objectives_order_by!]" ], "where": [ - 3394 + 3511 ] } ], "player_objectives_aggregate": [ - 3386, + 3503, { "distinct_on": [ - 3406, + 3523, "[player_objectives_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 3404, + 3521, "[player_objectives_order_by!]" ], "where": [ - 3394 + 3511 ] } ], "player_unused_utilities": [ - 3672, + 3789, { "distinct_on": [ - 3693, + 3810, "[player_unused_utility_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 3691, + 3808, "[player_unused_utility_order_by!]" ], "where": [ - 3681 + 3798 ] } ], "player_unused_utilities_aggregate": [ - 3673, + 3790, { "distinct_on": [ - 3693, + 3810, "[player_unused_utility_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 3691, + 3808, "[player_unused_utility_order_by!]" ], "where": [ - 3681 + 3798 ] } ], "player_utility": [ - 3713, + 3830, { "distinct_on": [ - 3734, + 3851, "[player_utility_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 3732, + 3849, "[player_utility_order_by!]" ], "where": [ - 3722 + 3839 ] } ], "player_utility_aggregate": [ - 3714, + 3831, { "distinct_on": [ - 3734, + 3851, "[player_utility_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 3732, + 3849, "[player_utility_order_by!]" ], "where": [ - 3722 + 3839 ] } ], "region": [ - 78 + 80 ], "region_veto_picking_lineup_id": [ - 4921 + 4993 ], "region_veto_picks": [ - 2552, + 2669, { "distinct_on": [ - 2570, + 2687, "[match_region_veto_picks_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2568, + 2685, "[match_region_veto_picks_order_by!]" ], "where": [ - 2559 + 2676 ] } ], "region_veto_picks_aggregate": [ - 2553, + 2670, { "distinct_on": [ - 2570, + 2687, "[match_region_veto_picks_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2568, + 2685, "[match_region_veto_picks_order_by!]" ], "where": [ - 2559 + 2676 ] } ], "requested_organizer": [ - 3 + 5 ], "scheduled_at": [ - 4376 + 4493 ], "server": [ - 3901 + 4018 ], "server_error": [ - 78 + 80 ], "server_id": [ - 4921 + 4993 ], "server_plugin_runtime": [ - 78 + 80 ], "server_region": [ - 78 + 80 ], "server_type": [ - 78 + 80 ], "source": [ - 78 + 80 ], "started_at": [ - 4376 + 4493 ], "status": [ - 866 + 983 ], "streams": [ - 2576, + 2693, { "distinct_on": [ - 2604, + 2721, "[match_streams_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2601, + 2718, "[match_streams_order_by!]" ], "where": [ - 2588 + 2705 ] } ], "streams_aggregate": [ - 2577, + 2694, { "distinct_on": [ - 2604, + 2721, "[match_streams_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2601, + 2718, "[match_streams_order_by!]" ], "where": [ - 2588 + 2705 ] } ], "teams": [ - 4329, + 4446, { "distinct_on": [ - 4353, + 4470, "[teams_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 4351, + 4468, "[teams_order_by!]" ], "where": [ - 4340 + 4457 ] } ], "tournament_brackets": [ - 4378, + 4537, { "distinct_on": [ - 4402, + 4561, "[tournament_brackets_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 4400, + 4559, "[tournament_brackets_order_by!]" ], "where": [ - 4389 + 4548 ] } ], "tournament_brackets_aggregate": [ - 4379, + 4538, { "distinct_on": [ - 4402, + 4561, "[tournament_brackets_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 4400, + 4559, "[tournament_brackets_order_by!]" ], "where": [ - 4389 + 4548 ] } ], "tv_connection_string": [ - 78 + 80 ], "winner": [ - 2324 + 2441 ], "winning_lineup_id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "matches_aggregate": { "aggregate": [ - 2648 + 2765 ], "nodes": [ - 2644 + 2761 ], "__typename": [ - 78 + 80 ] }, "matches_aggregate_bool_exp": { "count": [ - 2647 + 2764 ], "__typename": [ - 78 + 80 ] }, "matches_aggregate_bool_exp_count": { "arguments": [ - 2666 + 2783 ], "distinct": [ - 3 + 5 ], "filter": [ - 2653 + 2770 ], "predicate": [ - 39 + 41 ], "__typename": [ - 78 + 80 ] }, "matches_aggregate_fields": { "avg": [ - 2651 + 2768 ], "count": [ - 38, + 40, { "columns": [ - 2666, + 2783, "[matches_select_column!]" ], "distinct": [ - 3 + 5 ] } ], "max": [ - 2657 + 2774 ], "min": [ - 2659 + 2776 ], "stddev": [ - 2668 + 2785 ], "stddev_pop": [ - 2670 + 2787 ], "stddev_samp": [ - 2672 + 2789 ], "sum": [ - 2676 + 2793 ], "var_pop": [ - 2680 + 2797 ], "var_samp": [ - 2682 + 2799 ], "variance": [ - 2684 + 2801 ], "__typename": [ - 78 + 80 ] }, "matches_aggregate_order_by": { "avg": [ - 2652 + 2769 ], "count": [ - 2829 + 2946 ], "max": [ - 2658 + 2775 ], "min": [ - 2660 + 2777 ], "stddev": [ - 2669 + 2786 ], "stddev_pop": [ - 2671 + 2788 ], "stddev_samp": [ - 2673 + 2790 ], "sum": [ - 2677 + 2794 ], "var_pop": [ - 2681 + 2798 ], "var_samp": [ - 2683 + 2800 ], "variance": [ - 2685 + 2802 ], "__typename": [ - 78 + 80 ] }, "matches_arr_rel_insert_input": { "data": [ - 2656 + 2773 ], "on_conflict": [ - 2663 + 2780 ], "__typename": [ - 78 + 80 ] }, "matches_avg_fields": { "max_players_per_lineup": [ - 38 + 40 ], "min_players_per_lineup": [ - 38 + 40 ], "organizer_steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "matches_avg_order_by": { "organizer_steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "matches_bool_exp": { "_and": [ - 2653 + 2770 ], "_not": [ - 2653 + 2770 ], "_or": [ - 2653 + 2770 ], "can_assign_server": [ - 4 + 6 ], "can_cancel": [ - 4 + 6 ], "can_check_in": [ - 4 + 6 ], "can_reassign_winner": [ - 4 + 6 ], "can_schedule": [ - 4 + 6 ], "can_start": [ - 4 + 6 ], "can_stream_live": [ - 4 + 6 ], "can_stream_tv": [ - 4 + 6 ], "cancels_at": [ - 4377 + 4494 ], "clutches": [ - 5110 + 5182 ], "clutches_aggregate": [ - 5103 + 5175 ], "connection_link": [ - 80 + 82 ], "connection_string": [ - 80 + 82 ], "created_at": [ - 4377 + 4494 ], "current_match_map_id": [ - 4923 + 4995 ], "demos": [ - 2378 + 2495 ], "demos_aggregate": [ - 2368 + 2485 ], "draft_games": [ - 392 + 469 ], "draft_games_aggregate": [ - 383 + 460 ], "e_match_status": [ - 864 + 981 ], "e_region": [ - 3878 + 3995 ], "effective_at": [ - 4377 + 4494 ], "elo_changes": [ - 5317 + 5389 ], "elo_changes_aggregate": [ - 5300 + 5372 ], "ended_at": [ - 4377 + 4494 ], "external_id": [ - 80 + 82 ], "id": [ - 4923 + 4995 ], "invite_code": [ - 80 + 82 ], "is_captain": [ - 4 + 6 ], "is_coach": [ - 4 + 6 ], "is_friend_in_match_lineup": [ - 4 + 6 ], "is_in_lineup": [ - 4 + 6 ], "is_match_server_available": [ - 4 + 6 ], "is_organizer": [ - 4 + 6 ], "is_server_online": [ - 4 + 6 ], "is_tournament_match": [ - 4 + 6 ], "label": [ - 80 + 82 ], "lineup_1": [ - 2333 + 2450 ], "lineup_1_id": [ - 4923 + 4995 ], "lineup_2": [ - 2333 + 2450 ], "lineup_2_id": [ - 4923 + 4995 ], "lineup_counts": [ - 1699 + 1816 ], "map_veto_picking_lineup_id": [ - 4923 + 4995 ], "map_veto_picks": [ - 2465 + 2582 ], "map_veto_picks_aggregate": [ - 2460 + 2577 ], "map_veto_type": [ - 80 + 82 ], "match_maps": [ - 2491 + 2608 ], "match_maps_aggregate": [ - 2484 + 2601 ], "match_options_id": [ - 4923 + 4995 ], "max_players_per_lineup": [ - 39 + 41 ], "min_players_per_lineup": [ - 39 + 41 ], "opening_duels": [ - 5238 + 5310 ], "opening_duels_aggregate": [ - 5231 + 5303 ], "options": [ - 2528 + 2645 ], "organizer": [ - 3791 + 3908 ], "organizer_steam_id": [ - 182 + 254 ], "password": [ - 80 + 82 ], "player_assists": [ - 2978 + 3095 ], "player_assists_aggregate": [ - 2969 + 3086 ], "player_damages": [ - 3039 + 3156 ], "player_damages_aggregate": [ - 3032 + 3149 ], "player_flashes": [ - 3150 + 3267 ], "player_flashes_aggregate": [ - 3141 + 3258 ], "player_kills": [ - 3195 + 3312 ], "player_kills_aggregate": [ - 3186 + 3303 ], "player_objectives": [ - 3394 + 3511 ], "player_objectives_aggregate": [ - 3387 + 3504 ], "player_unused_utilities": [ - 3681 + 3798 ], "player_unused_utilities_aggregate": [ - 3674 + 3791 ], "player_utility": [ - 3722 + 3839 ], "player_utility_aggregate": [ - 3715 + 3832 ], "region": [ - 80 + 82 ], "region_veto_picking_lineup_id": [ - 4923 + 4995 ], "region_veto_picks": [ - 2559 + 2676 ], "region_veto_picks_aggregate": [ - 2554 + 2671 ], "requested_organizer": [ - 4 + 6 ], "scheduled_at": [ - 4377 + 4494 ], "server": [ - 3912 + 4029 ], "server_error": [ - 80 + 82 ], "server_id": [ - 4923 + 4995 ], "server_plugin_runtime": [ - 80 + 82 ], "server_region": [ - 80 + 82 ], "server_type": [ - 80 + 82 ], "source": [ - 80 + 82 ], "started_at": [ - 4377 + 4494 ], "status": [ - 867 + 984 ], "streams": [ - 2588 + 2705 ], "streams_aggregate": [ - 2578 + 2695 ], "teams": [ - 4340 + 4457 ], "tournament_brackets": [ - 4389 + 4548 ], "tournament_brackets_aggregate": [ - 4380 + 4539 ], "tv_connection_string": [ - 80 + 82 ], "winner": [ - 2333 + 2450 ], "winning_lineup_id": [ - 4923 + 4995 ], "__typename": [ - 78 + 80 ] }, "matches_constraint": {}, "matches_inc_input": { "organizer_steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "matches_insert_input": { "cancels_at": [ - 4376 + 4493 ], "clutches": [ - 5107 + 5179 ], "created_at": [ - 4376 + 4493 ], "demos": [ - 2375 + 2492 ], "draft_games": [ - 389 + 466 ], "e_match_status": [ - 872 + 989 ], "e_region": [ - 3884 + 4001 ], "elo_changes": [ - 5314 + 5386 ], "ended_at": [ - 4376 + 4493 ], "external_id": [ - 78 + 80 ], "id": [ - 4921 + 4993 ], "label": [ - 78 + 80 ], "lineup_1": [ - 2342 + 2459 ], "lineup_1_id": [ - 4921 + 4993 ], "lineup_2": [ - 2342 + 2459 ], "lineup_2_id": [ - 4921 + 4993 ], "map_veto_picks": [ - 2464 + 2581 ], "match_maps": [ - 2488 + 2605 ], "match_options_id": [ - 4921 + 4993 ], "opening_duels": [ - 5235 + 5307 ], "options": [ - 2535 + 2652 ], "organizer": [ - 3798 + 3915 ], "organizer_steam_id": [ - 180 + 252 ], "password": [ - 78 + 80 ], "player_assists": [ - 2975 + 3092 ], "player_damages": [ - 3036 + 3153 ], "player_flashes": [ - 3147 + 3264 ], "player_kills": [ - 3192 + 3309 ], "player_objectives": [ - 3391 + 3508 ], "player_unused_utilities": [ - 3678 + 3795 ], "player_utility": [ - 3719 + 3836 ], "region": [ - 78 + 80 ], "region_veto_picks": [ - 2558 + 2675 ], "scheduled_at": [ - 4376 + 4493 ], "server": [ - 3921 + 4038 ], "server_error": [ - 78 + 80 ], "server_id": [ - 4921 + 4993 ], "source": [ - 78 + 80 ], "started_at": [ - 4376 + 4493 ], "status": [ - 866 + 983 ], "streams": [ - 2585 + 2702 ], "tournament_brackets": [ - 4386 + 4545 ], "winner": [ - 2342 + 2459 ], "winning_lineup_id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "matches_max_fields": { "cancels_at": [ - 4376 + 4493 ], "connection_link": [ - 78 + 80 ], "connection_string": [ - 78 + 80 ], "created_at": [ - 4376 + 4493 ], "current_match_map_id": [ - 4921 + 4993 ], "effective_at": [ - 4376 + 4493 ], "ended_at": [ - 4376 + 4493 ], "external_id": [ - 78 + 80 ], "id": [ - 4921 + 4993 ], "invite_code": [ - 78 + 80 ], "label": [ - 78 + 80 ], "lineup_1_id": [ - 4921 + 4993 ], "lineup_2_id": [ - 4921 + 4993 ], "map_veto_picking_lineup_id": [ - 4921 + 4993 ], "map_veto_type": [ - 78 + 80 ], "match_options_id": [ - 4921 + 4993 ], "max_players_per_lineup": [ - 38 + 40 ], "min_players_per_lineup": [ - 38 + 40 ], "organizer_steam_id": [ - 180 + 252 ], "password": [ - 78 + 80 ], "region": [ - 78 + 80 ], "region_veto_picking_lineup_id": [ - 4921 + 4993 ], "scheduled_at": [ - 4376 + 4493 ], "server_error": [ - 78 + 80 ], "server_id": [ - 4921 + 4993 ], "server_plugin_runtime": [ - 78 + 80 ], "server_region": [ - 78 + 80 ], "server_type": [ - 78 + 80 ], "source": [ - 78 + 80 ], "started_at": [ - 4376 + 4493 ], "tv_connection_string": [ - 78 + 80 ], "winning_lineup_id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "matches_max_order_by": { "cancels_at": [ - 2829 + 2946 ], "created_at": [ - 2829 + 2946 ], "effective_at": [ - 2829 + 2946 ], "ended_at": [ - 2829 + 2946 ], "external_id": [ - 2829 + 2946 ], "id": [ - 2829 + 2946 ], "label": [ - 2829 + 2946 ], "lineup_1_id": [ - 2829 + 2946 ], "lineup_2_id": [ - 2829 + 2946 ], "match_options_id": [ - 2829 + 2946 ], "organizer_steam_id": [ - 2829 + 2946 ], "password": [ - 2829 + 2946 ], "region": [ - 2829 + 2946 ], "scheduled_at": [ - 2829 + 2946 ], "server_error": [ - 2829 + 2946 ], "server_id": [ - 2829 + 2946 ], "source": [ - 2829 + 2946 ], "started_at": [ - 2829 + 2946 ], "winning_lineup_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "matches_min_fields": { "cancels_at": [ - 4376 + 4493 ], "connection_link": [ - 78 + 80 ], "connection_string": [ - 78 + 80 ], "created_at": [ - 4376 + 4493 ], "current_match_map_id": [ - 4921 + 4993 ], "effective_at": [ - 4376 + 4493 ], "ended_at": [ - 4376 + 4493 ], "external_id": [ - 78 + 80 ], "id": [ - 4921 + 4993 ], "invite_code": [ - 78 + 80 ], "label": [ - 78 + 80 ], "lineup_1_id": [ - 4921 + 4993 ], "lineup_2_id": [ - 4921 + 4993 ], "map_veto_picking_lineup_id": [ - 4921 + 4993 ], "map_veto_type": [ - 78 + 80 ], "match_options_id": [ - 4921 + 4993 ], "max_players_per_lineup": [ - 38 + 40 ], "min_players_per_lineup": [ - 38 + 40 ], "organizer_steam_id": [ - 180 + 252 ], "password": [ - 78 + 80 ], "region": [ - 78 + 80 ], "region_veto_picking_lineup_id": [ - 4921 + 4993 ], "scheduled_at": [ - 4376 + 4493 ], "server_error": [ - 78 + 80 ], "server_id": [ - 4921 + 4993 ], "server_plugin_runtime": [ - 78 + 80 ], "server_region": [ - 78 + 80 ], "server_type": [ - 78 + 80 ], "source": [ - 78 + 80 ], "started_at": [ - 4376 + 4493 ], "tv_connection_string": [ - 78 + 80 ], "winning_lineup_id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "matches_min_order_by": { "cancels_at": [ - 2829 + 2946 ], "created_at": [ - 2829 + 2946 ], "effective_at": [ - 2829 + 2946 ], "ended_at": [ - 2829 + 2946 ], "external_id": [ - 2829 + 2946 ], "id": [ - 2829 + 2946 ], "label": [ - 2829 + 2946 ], "lineup_1_id": [ - 2829 + 2946 ], "lineup_2_id": [ - 2829 + 2946 ], "match_options_id": [ - 2829 + 2946 ], "organizer_steam_id": [ - 2829 + 2946 ], "password": [ - 2829 + 2946 ], "region": [ - 2829 + 2946 ], "scheduled_at": [ - 2829 + 2946 ], "server_error": [ - 2829 + 2946 ], "server_id": [ - 2829 + 2946 ], "source": [ - 2829 + 2946 ], "started_at": [ - 2829 + 2946 ], "winning_lineup_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "matches_mutation_response": { "affected_rows": [ - 38 + 40 ], "returning": [ - 2644 + 2761 ], "__typename": [ - 78 + 80 ] }, "matches_obj_rel_insert_input": { "data": [ - 2656 + 2773 ], "on_conflict": [ - 2663 + 2780 ], "__typename": [ - 78 + 80 ] }, "matches_on_conflict": { "constraint": [ - 2654 + 2771 ], "update_columns": [ - 2678 + 2795 ], "where": [ - 2653 + 2770 ], "__typename": [ - 78 + 80 ] }, "matches_order_by": { "can_assign_server": [ - 2829 + 2946 ], "can_cancel": [ - 2829 + 2946 ], "can_check_in": [ - 2829 + 2946 ], "can_reassign_winner": [ - 2829 + 2946 ], "can_schedule": [ - 2829 + 2946 ], "can_start": [ - 2829 + 2946 ], "can_stream_live": [ - 2829 + 2946 ], "can_stream_tv": [ - 2829 + 2946 ], "cancels_at": [ - 2829 + 2946 ], "clutches_aggregate": [ - 5106 + 5178 ], "connection_link": [ - 2829 + 2946 ], "connection_string": [ - 2829 + 2946 ], "created_at": [ - 2829 + 2946 ], "current_match_map_id": [ - 2829 + 2946 ], "demos_aggregate": [ - 2373 + 2490 ], "draft_games_aggregate": [ - 388 + 465 ], "e_match_status": [ - 874 + 991 ], "e_region": [ - 3886 + 4003 ], "effective_at": [ - 2829 + 2946 ], "elo_changes_aggregate": [ - 5313 + 5385 ], "ended_at": [ - 2829 + 2946 ], "external_id": [ - 2829 + 2946 ], "id": [ - 2829 + 2946 ], "invite_code": [ - 2829 + 2946 ], "is_captain": [ - 2829 + 2946 ], "is_coach": [ - 2829 + 2946 ], "is_friend_in_match_lineup": [ - 2829 + 2946 ], "is_in_lineup": [ - 2829 + 2946 ], "is_match_server_available": [ - 2829 + 2946 ], "is_organizer": [ - 2829 + 2946 ], "is_server_online": [ - 2829 + 2946 ], "is_tournament_match": [ - 2829 + 2946 ], "label": [ - 2829 + 2946 ], "lineup_1": [ - 2344 + 2461 ], "lineup_1_id": [ - 2829 + 2946 ], "lineup_2": [ - 2344 + 2461 ], "lineup_2_id": [ - 2829 + 2946 ], "lineup_counts": [ - 2829 + 2946 ], "map_veto_picking_lineup_id": [ - 2829 + 2946 ], "map_veto_picks_aggregate": [ - 2463 + 2580 ], "map_veto_type": [ - 2829 + 2946 ], "match_maps_aggregate": [ - 2487 + 2604 ], "match_options_id": [ - 2829 + 2946 ], "max_players_per_lineup": [ - 2829 + 2946 ], "min_players_per_lineup": [ - 2829 + 2946 ], "opening_duels_aggregate": [ - 5234 + 5306 ], "options": [ - 2537 + 2654 ], "organizer": [ - 3800 + 3917 ], "organizer_steam_id": [ - 2829 + 2946 ], "password": [ - 2829 + 2946 ], "player_assists_aggregate": [ - 2974 + 3091 ], "player_damages_aggregate": [ - 3035 + 3152 ], "player_flashes_aggregate": [ - 3146 + 3263 ], "player_kills_aggregate": [ - 3191 + 3308 ], "player_objectives_aggregate": [ - 3390 + 3507 ], "player_unused_utilities_aggregate": [ - 3677 + 3794 ], "player_utility_aggregate": [ - 3718 + 3835 ], "region": [ - 2829 + 2946 ], "region_veto_picking_lineup_id": [ - 2829 + 2946 ], "region_veto_picks_aggregate": [ - 2557 + 2674 ], "requested_organizer": [ - 2829 + 2946 ], "scheduled_at": [ - 2829 + 2946 ], "server": [ - 3923 + 4040 ], "server_error": [ - 2829 + 2946 ], "server_id": [ - 2829 + 2946 ], "server_plugin_runtime": [ - 2829 + 2946 ], "server_region": [ - 2829 + 2946 ], "server_type": [ - 2829 + 2946 ], "source": [ - 2829 + 2946 ], "started_at": [ - 2829 + 2946 ], "status": [ - 2829 + 2946 ], "streams_aggregate": [ - 2583 + 2700 ], "teams_aggregate": [ - 4336 + 4453 ], "tournament_brackets_aggregate": [ - 4385 + 4544 ], "tv_connection_string": [ - 2829 + 2946 ], "winner": [ - 2344 + 2461 ], "winning_lineup_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "matches_pk_columns_input": { "id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "matches_select_column": {}, "matches_set_input": { "cancels_at": [ - 4376 + 4493 ], "created_at": [ - 4376 + 4493 ], "ended_at": [ - 4376 + 4493 ], "external_id": [ - 78 + 80 ], "id": [ - 4921 + 4993 ], "label": [ - 78 + 80 ], "lineup_1_id": [ - 4921 + 4993 ], "lineup_2_id": [ - 4921 + 4993 ], "match_options_id": [ - 4921 + 4993 ], "organizer_steam_id": [ - 180 + 252 ], "password": [ - 78 + 80 ], "region": [ - 78 + 80 ], "scheduled_at": [ - 4376 + 4493 ], "server_error": [ - 78 + 80 ], "server_id": [ - 4921 + 4993 ], "source": [ - 78 + 80 ], "started_at": [ - 4376 + 4493 ], "status": [ - 866 + 983 ], "winning_lineup_id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "matches_stddev_fields": { "max_players_per_lineup": [ - 38 + 40 ], "min_players_per_lineup": [ - 38 + 40 ], "organizer_steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "matches_stddev_order_by": { "organizer_steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "matches_stddev_pop_fields": { "max_players_per_lineup": [ - 38 + 40 ], "min_players_per_lineup": [ - 38 + 40 ], "organizer_steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "matches_stddev_pop_order_by": { "organizer_steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "matches_stddev_samp_fields": { "max_players_per_lineup": [ - 38 + 40 ], "min_players_per_lineup": [ - 38 + 40 ], "organizer_steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "matches_stddev_samp_order_by": { "organizer_steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "matches_stream_cursor_input": { "initial_value": [ - 2675 + 2792 ], "ordering": [ - 236 + 308 ], "__typename": [ - 78 + 80 ] }, "matches_stream_cursor_value_input": { "cancels_at": [ - 4376 + 4493 ], "created_at": [ - 4376 + 4493 ], "effective_at": [ - 4376 + 4493 ], "ended_at": [ - 4376 + 4493 ], "external_id": [ - 78 + 80 ], "id": [ - 4921 + 4993 ], "label": [ - 78 + 80 ], "lineup_1_id": [ - 4921 + 4993 ], "lineup_2_id": [ - 4921 + 4993 ], "match_options_id": [ - 4921 + 4993 ], "organizer_steam_id": [ - 180 + 252 ], "password": [ - 78 + 80 ], "region": [ - 78 + 80 ], "scheduled_at": [ - 4376 + 4493 ], "server_error": [ - 78 + 80 ], "server_id": [ - 4921 + 4993 ], "source": [ - 78 + 80 ], "started_at": [ - 4376 + 4493 ], "status": [ - 866 + 983 ], "winning_lineup_id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "matches_sum_fields": { "max_players_per_lineup": [ - 38 + 40 ], "min_players_per_lineup": [ - 38 + 40 ], "organizer_steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "matches_sum_order_by": { "organizer_steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "matches_update_column": {}, "matches_updates": { "_inc": [ - 2655 + 2772 ], "_set": [ - 2667 + 2784 ], "where": [ - 2653 + 2770 ], "__typename": [ - 78 + 80 ] }, "matches_var_pop_fields": { "max_players_per_lineup": [ - 38 + 40 ], "min_players_per_lineup": [ - 38 + 40 ], "organizer_steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "matches_var_pop_order_by": { "organizer_steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "matches_var_samp_fields": { "max_players_per_lineup": [ - 38 + 40 ], "min_players_per_lineup": [ - 38 + 40 ], "organizer_steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "matches_var_samp_order_by": { "organizer_steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "matches_variance_fields": { "max_players_per_lineup": [ - 38 + 40 ], "min_players_per_lineup": [ - 38 + 40 ], "organizer_steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "matches_variance_order_by": { "organizer_steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "migration_hashes_hashes": { "hash": [ - 78 + 80 ], "name": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "migration_hashes_hashes_aggregate": { "aggregate": [ - 2688 + 2805 ], "nodes": [ - 2686 + 2803 ], "__typename": [ - 78 + 80 ] }, "migration_hashes_hashes_aggregate_fields": { "count": [ - 38, + 40, { "columns": [ - 2698, + 2815, "[migration_hashes_hashes_select_column!]" ], "distinct": [ - 3 + 5 ] } ], "max": [ - 2692 + 2809 ], "min": [ - 2693 + 2810 ], "__typename": [ - 78 + 80 ] }, "migration_hashes_hashes_bool_exp": { "_and": [ - 2689 + 2806 ], "_not": [ - 2689 + 2806 ], "_or": [ - 2689 + 2806 ], "hash": [ - 80 + 82 ], "name": [ - 80 + 82 ], "__typename": [ - 78 + 80 ] }, "migration_hashes_hashes_constraint": {}, "migration_hashes_hashes_insert_input": { "hash": [ - 78 + 80 ], "name": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "migration_hashes_hashes_max_fields": { "hash": [ - 78 + 80 ], "name": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "migration_hashes_hashes_min_fields": { "hash": [ - 78 + 80 ], "name": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "migration_hashes_hashes_mutation_response": { "affected_rows": [ - 38 + 40 ], "returning": [ - 2686 + 2803 ], "__typename": [ - 78 + 80 ] }, "migration_hashes_hashes_on_conflict": { "constraint": [ - 2690 + 2807 ], "update_columns": [ - 2702 + 2819 ], "where": [ - 2689 + 2806 ], "__typename": [ - 78 + 80 ] }, "migration_hashes_hashes_order_by": { "hash": [ - 2829 + 2946 ], "name": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "migration_hashes_hashes_pk_columns_input": { "name": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "migration_hashes_hashes_select_column": {}, "migration_hashes_hashes_set_input": { "hash": [ - 78 + 80 ], "name": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "migration_hashes_hashes_stream_cursor_input": { "initial_value": [ - 2701 + 2818 ], "ordering": [ - 236 + 308 ], "__typename": [ - 78 + 80 ] }, "migration_hashes_hashes_stream_cursor_value_input": { "hash": [ - 78 + 80 ], "name": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "migration_hashes_hashes_update_column": {}, "migration_hashes_hashes_updates": { "_set": [ - 2699 + 2816 ], "where": [ - 2689 + 2806 ], "__typename": [ - 78 + 80 ] }, "my_friends": { "avatar_url": [ - 78 + 80 ], "country": [ - 78 + 80 ], "created_at": [ - 4376 + 4493 ], "custom_avatar_url": [ - 78 + 80 ], "days_since_last_ban": [ - 38 + 40 ], "discord_id": [ - 78 + 80 ], "elo": [ - 1700, + 1817, { "path": [ - 78 + 80 ] } ], "faceit_elo": [ - 38 + 40 ], "faceit_nickname": [ - 78 + 80 ], "faceit_player_id": [ - 78 + 80 ], "faceit_skill_level": [ - 38 + 40 ], "faceit_updated_at": [ - 4376 + 4493 ], "faceit_url": [ - 78 + 80 ], "friend_steam_id": [ - 180 + 252 ], "game_ban_count": [ - 38 + 40 ], "invited_by_steam_id": [ - 180 + 252 ], "language": [ - 78 + 80 ], "last_presence_state": [ - 1700, + 1817, { "path": [ - 78 + 80 ] } ], "last_read_news_at": [ - 4376 + 4493 ], "last_sign_in_at": [ - 4376 + 4493 ], "name": [ - 78 + 80 ], "name_registered": [ - 3 + 5 ], "player": [ - 3787 + 3904 ], "premier_rank": [ - 38 + 40 ], "premier_rank_updated_at": [ - 4376 + 4493 ], "presence_updated_at": [ - 4376 + 4493 ], "profile_url": [ - 78 + 80 ], "role": [ - 78 + 80 ], "roster_image_url": [ - 78 + 80 ], "show_match_ready_modal": [ - 3 + 5 ], "status": [ - 78 + 80 ], "steam_bans_checked_at": [ - 4376 + 4493 ], "steam_id": [ - 180 + 252 ], "vac_ban_count": [ - 38 + 40 ], "vac_banned": [ - 3 + 5 ], "__typename": [ - 78 + 80 ] }, "my_friends_aggregate": { "aggregate": [ - 2710 + 2827 ], "nodes": [ - 2704 + 2821 ], "__typename": [ - 78 + 80 ] }, "my_friends_aggregate_bool_exp": { "bool_and": [ - 2707 + 2824 ], "bool_or": [ - 2708 + 2825 ], "count": [ - 2709 + 2826 ], "__typename": [ - 78 + 80 ] }, "my_friends_aggregate_bool_exp_bool_and": { "arguments": [ - 2730 + 2847 ], "distinct": [ - 3 + 5 ], "filter": [ - 2716 + 2833 ], "predicate": [ - 4 + 6 ], "__typename": [ - 78 + 80 ] }, "my_friends_aggregate_bool_exp_bool_or": { "arguments": [ - 2731 + 2848 ], "distinct": [ - 3 + 5 ], "filter": [ - 2716 + 2833 ], "predicate": [ - 4 + 6 ], "__typename": [ - 78 + 80 ] }, "my_friends_aggregate_bool_exp_count": { "arguments": [ - 2729 + 2846 ], "distinct": [ - 3 + 5 ], "filter": [ - 2716 + 2833 ], "predicate": [ - 39 + 41 ], "__typename": [ - 78 + 80 ] }, "my_friends_aggregate_fields": { "avg": [ - 2714 + 2831 ], "count": [ - 38, + 40, { "columns": [ - 2729, + 2846, "[my_friends_select_column!]" ], "distinct": [ - 3 + 5 ] } ], "max": [ - 2722 + 2839 ], "min": [ - 2724 + 2841 ], "stddev": [ - 2733 + 2850 ], "stddev_pop": [ - 2735 + 2852 ], "stddev_samp": [ - 2737 + 2854 ], "sum": [ - 2741 + 2858 ], "var_pop": [ - 2744 + 2861 ], "var_samp": [ - 2746 + 2863 ], "variance": [ - 2748 + 2865 ], "__typename": [ - 78 + 80 ] }, "my_friends_aggregate_order_by": { "avg": [ - 2715 + 2832 ], "count": [ - 2829 + 2946 ], "max": [ - 2723 + 2840 ], "min": [ - 2725 + 2842 ], "stddev": [ - 2734 + 2851 ], "stddev_pop": [ - 2736 + 2853 ], "stddev_samp": [ - 2738 + 2855 ], "sum": [ - 2742 + 2859 ], "var_pop": [ - 2745 + 2862 ], "var_samp": [ - 2747 + 2864 ], "variance": [ - 2749 + 2866 ], "__typename": [ - 78 + 80 ] }, "my_friends_append_input": { "elo": [ - 1700 + 1817 ], "last_presence_state": [ - 1700 + 1817 ], "__typename": [ - 78 + 80 ] }, "my_friends_arr_rel_insert_input": { "data": [ - 2721 + 2838 ], "__typename": [ - 78 + 80 ] }, "my_friends_avg_fields": { "days_since_last_ban": [ - 29 + 31 ], "faceit_elo": [ - 29 + 31 ], "faceit_skill_level": [ - 29 + 31 ], "friend_steam_id": [ - 29 + 31 ], "game_ban_count": [ - 29 + 31 ], "invited_by_steam_id": [ - 29 + 31 ], "premier_rank": [ - 29 + 31 ], "steam_id": [ - 29 + 31 ], "vac_ban_count": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "my_friends_avg_order_by": { "days_since_last_ban": [ - 2829 + 2946 ], "faceit_elo": [ - 2829 + 2946 ], "faceit_skill_level": [ - 2829 + 2946 ], "friend_steam_id": [ - 2829 + 2946 ], "game_ban_count": [ - 2829 + 2946 ], "invited_by_steam_id": [ - 2829 + 2946 ], "premier_rank": [ - 2829 + 2946 ], "steam_id": [ - 2829 + 2946 ], "vac_ban_count": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "my_friends_bool_exp": { "_and": [ - 2716 + 2833 ], "_not": [ - 2716 + 2833 ], "_or": [ - 2716 + 2833 ], "avatar_url": [ - 80 + 82 ], "country": [ - 80 + 82 ], "created_at": [ - 4377 + 4494 ], "custom_avatar_url": [ - 80 + 82 ], "days_since_last_ban": [ - 39 + 41 ], "discord_id": [ - 80 + 82 ], "elo": [ - 1702 + 1819 ], "faceit_elo": [ - 39 + 41 ], "faceit_nickname": [ - 80 + 82 ], "faceit_player_id": [ - 80 + 82 ], "faceit_skill_level": [ - 39 + 41 ], "faceit_updated_at": [ - 4377 + 4494 ], "faceit_url": [ - 80 + 82 ], "friend_steam_id": [ - 182 + 254 ], "game_ban_count": [ - 39 + 41 ], "invited_by_steam_id": [ - 182 + 254 ], "language": [ - 80 + 82 ], "last_presence_state": [ - 1702 + 1819 ], "last_read_news_at": [ - 4377 + 4494 ], "last_sign_in_at": [ - 4377 + 4494 ], "name": [ - 80 + 82 ], "name_registered": [ - 4 + 6 ], "player": [ - 3791 + 3908 ], "premier_rank": [ - 39 + 41 ], "premier_rank_updated_at": [ - 4377 + 4494 ], "presence_updated_at": [ - 4377 + 4494 ], "profile_url": [ - 80 + 82 ], "role": [ - 80 + 82 ], "roster_image_url": [ - 80 + 82 ], "show_match_ready_modal": [ - 4 + 6 ], "status": [ - 80 + 82 ], "steam_bans_checked_at": [ - 4377 + 4494 ], "steam_id": [ - 182 + 254 ], "vac_ban_count": [ - 39 + 41 ], "vac_banned": [ - 4 + 6 ], "__typename": [ - 78 + 80 ] }, "my_friends_delete_at_path_input": { "elo": [ - 78 + 80 ], "last_presence_state": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "my_friends_delete_elem_input": { "elo": [ - 38 + 40 ], "last_presence_state": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "my_friends_delete_key_input": { "elo": [ - 78 + 80 ], "last_presence_state": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "my_friends_inc_input": { "days_since_last_ban": [ - 38 + 40 ], "faceit_elo": [ - 38 + 40 ], "faceit_skill_level": [ - 38 + 40 ], "friend_steam_id": [ - 180 + 252 ], "game_ban_count": [ - 38 + 40 ], "invited_by_steam_id": [ - 180 + 252 ], "premier_rank": [ - 38 + 40 ], "steam_id": [ - 180 + 252 ], "vac_ban_count": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "my_friends_insert_input": { "avatar_url": [ - 78 + 80 ], "country": [ - 78 + 80 ], "created_at": [ - 4376 + 4493 ], "custom_avatar_url": [ - 78 + 80 ], "days_since_last_ban": [ - 38 + 40 ], "discord_id": [ - 78 + 80 ], "elo": [ - 1700 + 1817 ], "faceit_elo": [ - 38 + 40 ], "faceit_nickname": [ - 78 + 80 ], "faceit_player_id": [ - 78 + 80 ], "faceit_skill_level": [ - 38 + 40 ], "faceit_updated_at": [ - 4376 + 4493 ], "faceit_url": [ - 78 + 80 ], "friend_steam_id": [ - 180 + 252 ], "game_ban_count": [ - 38 + 40 ], "invited_by_steam_id": [ - 180 + 252 ], "language": [ - 78 + 80 ], "last_presence_state": [ - 1700 + 1817 ], "last_read_news_at": [ - 4376 + 4493 ], "last_sign_in_at": [ - 4376 + 4493 ], "name": [ - 78 + 80 ], "name_registered": [ - 3 + 5 ], "player": [ - 3798 + 3915 ], "premier_rank": [ - 38 + 40 ], "premier_rank_updated_at": [ - 4376 + 4493 ], "presence_updated_at": [ - 4376 + 4493 ], "profile_url": [ - 78 + 80 ], "role": [ - 78 + 80 ], "roster_image_url": [ - 78 + 80 ], "show_match_ready_modal": [ - 3 + 5 ], "status": [ - 78 + 80 ], "steam_bans_checked_at": [ - 4376 + 4493 ], "steam_id": [ - 180 + 252 ], "vac_ban_count": [ - 38 + 40 ], "vac_banned": [ - 3 + 5 ], "__typename": [ - 78 + 80 ] }, "my_friends_max_fields": { "avatar_url": [ - 78 + 80 ], "country": [ - 78 + 80 ], "created_at": [ - 4376 + 4493 ], "custom_avatar_url": [ - 78 + 80 ], "days_since_last_ban": [ - 38 + 40 ], "discord_id": [ - 78 + 80 ], "faceit_elo": [ - 38 + 40 ], "faceit_nickname": [ - 78 + 80 ], "faceit_player_id": [ - 78 + 80 ], "faceit_skill_level": [ - 38 + 40 ], "faceit_updated_at": [ - 4376 + 4493 ], "faceit_url": [ - 78 + 80 ], "friend_steam_id": [ - 180 + 252 ], "game_ban_count": [ - 38 + 40 ], "invited_by_steam_id": [ - 180 + 252 ], "language": [ - 78 + 80 ], "last_read_news_at": [ - 4376 + 4493 ], "last_sign_in_at": [ - 4376 + 4493 ], "name": [ - 78 + 80 ], "premier_rank": [ - 38 + 40 ], "premier_rank_updated_at": [ - 4376 + 4493 ], "presence_updated_at": [ - 4376 + 4493 ], "profile_url": [ - 78 + 80 ], "role": [ - 78 + 80 ], "roster_image_url": [ - 78 + 80 ], "status": [ - 78 + 80 ], "steam_bans_checked_at": [ - 4376 + 4493 ], "steam_id": [ - 180 + 252 ], "vac_ban_count": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "my_friends_max_order_by": { "avatar_url": [ - 2829 + 2946 ], "country": [ - 2829 + 2946 ], "created_at": [ - 2829 + 2946 ], "custom_avatar_url": [ - 2829 + 2946 ], "days_since_last_ban": [ - 2829 + 2946 ], "discord_id": [ - 2829 + 2946 ], "faceit_elo": [ - 2829 + 2946 ], "faceit_nickname": [ - 2829 + 2946 ], "faceit_player_id": [ - 2829 + 2946 ], "faceit_skill_level": [ - 2829 + 2946 ], "faceit_updated_at": [ - 2829 + 2946 ], "faceit_url": [ - 2829 + 2946 ], "friend_steam_id": [ - 2829 + 2946 ], "game_ban_count": [ - 2829 + 2946 ], "invited_by_steam_id": [ - 2829 + 2946 ], "language": [ - 2829 + 2946 ], "last_read_news_at": [ - 2829 + 2946 ], "last_sign_in_at": [ - 2829 + 2946 ], "name": [ - 2829 + 2946 ], "premier_rank": [ - 2829 + 2946 ], "premier_rank_updated_at": [ - 2829 + 2946 ], "presence_updated_at": [ - 2829 + 2946 ], "profile_url": [ - 2829 + 2946 ], "role": [ - 2829 + 2946 ], "roster_image_url": [ - 2829 + 2946 ], "status": [ - 2829 + 2946 ], "steam_bans_checked_at": [ - 2829 + 2946 ], "steam_id": [ - 2829 + 2946 ], "vac_ban_count": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "my_friends_min_fields": { "avatar_url": [ - 78 + 80 ], "country": [ - 78 + 80 ], "created_at": [ - 4376 + 4493 ], "custom_avatar_url": [ - 78 + 80 ], "days_since_last_ban": [ - 38 + 40 ], "discord_id": [ - 78 + 80 ], "faceit_elo": [ - 38 + 40 ], "faceit_nickname": [ - 78 + 80 ], "faceit_player_id": [ - 78 + 80 ], "faceit_skill_level": [ - 38 + 40 ], "faceit_updated_at": [ - 4376 + 4493 ], "faceit_url": [ - 78 + 80 ], "friend_steam_id": [ - 180 + 252 ], "game_ban_count": [ - 38 + 40 ], "invited_by_steam_id": [ - 180 + 252 ], "language": [ - 78 + 80 ], "last_read_news_at": [ - 4376 + 4493 ], "last_sign_in_at": [ - 4376 + 4493 ], "name": [ - 78 + 80 ], "premier_rank": [ - 38 + 40 ], "premier_rank_updated_at": [ - 4376 + 4493 ], "presence_updated_at": [ - 4376 + 4493 ], "profile_url": [ - 78 + 80 ], "role": [ - 78 + 80 ], "roster_image_url": [ - 78 + 80 ], "status": [ - 78 + 80 ], "steam_bans_checked_at": [ - 4376 + 4493 ], "steam_id": [ - 180 + 252 ], "vac_ban_count": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "my_friends_min_order_by": { "avatar_url": [ - 2829 + 2946 ], "country": [ - 2829 + 2946 ], "created_at": [ - 2829 + 2946 ], "custom_avatar_url": [ - 2829 + 2946 ], "days_since_last_ban": [ - 2829 + 2946 ], "discord_id": [ - 2829 + 2946 ], "faceit_elo": [ - 2829 + 2946 ], "faceit_nickname": [ - 2829 + 2946 ], "faceit_player_id": [ - 2829 + 2946 ], "faceit_skill_level": [ - 2829 + 2946 ], "faceit_updated_at": [ - 2829 + 2946 ], "faceit_url": [ - 2829 + 2946 ], "friend_steam_id": [ - 2829 + 2946 ], "game_ban_count": [ - 2829 + 2946 ], "invited_by_steam_id": [ - 2829 + 2946 ], "language": [ - 2829 + 2946 ], "last_read_news_at": [ - 2829 + 2946 ], "last_sign_in_at": [ - 2829 + 2946 ], "name": [ - 2829 + 2946 ], "premier_rank": [ - 2829 + 2946 ], "premier_rank_updated_at": [ - 2829 + 2946 ], "presence_updated_at": [ - 2829 + 2946 ], "profile_url": [ - 2829 + 2946 ], "role": [ - 2829 + 2946 ], "roster_image_url": [ - 2829 + 2946 ], "status": [ - 2829 + 2946 ], "steam_bans_checked_at": [ - 2829 + 2946 ], "steam_id": [ - 2829 + 2946 ], "vac_ban_count": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "my_friends_mutation_response": { "affected_rows": [ - 38 + 40 ], "returning": [ - 2704 + 2821 ], "__typename": [ - 78 + 80 ] }, "my_friends_order_by": { "avatar_url": [ - 2829 + 2946 ], "country": [ - 2829 + 2946 ], "created_at": [ - 2829 + 2946 ], "custom_avatar_url": [ - 2829 + 2946 ], "days_since_last_ban": [ - 2829 + 2946 ], "discord_id": [ - 2829 + 2946 ], "elo": [ - 2829 + 2946 ], "faceit_elo": [ - 2829 + 2946 ], "faceit_nickname": [ - 2829 + 2946 ], "faceit_player_id": [ - 2829 + 2946 ], "faceit_skill_level": [ - 2829 + 2946 ], "faceit_updated_at": [ - 2829 + 2946 ], "faceit_url": [ - 2829 + 2946 ], "friend_steam_id": [ - 2829 + 2946 ], "game_ban_count": [ - 2829 + 2946 ], "invited_by_steam_id": [ - 2829 + 2946 ], "language": [ - 2829 + 2946 ], "last_presence_state": [ - 2829 + 2946 ], "last_read_news_at": [ - 2829 + 2946 ], "last_sign_in_at": [ - 2829 + 2946 ], "name": [ - 2829 + 2946 ], "name_registered": [ - 2829 + 2946 ], "player": [ - 3800 + 3917 ], "premier_rank": [ - 2829 + 2946 ], "premier_rank_updated_at": [ - 2829 + 2946 ], "presence_updated_at": [ - 2829 + 2946 ], "profile_url": [ - 2829 + 2946 ], "role": [ - 2829 + 2946 ], "roster_image_url": [ - 2829 + 2946 ], "show_match_ready_modal": [ - 2829 + 2946 ], "status": [ - 2829 + 2946 ], "steam_bans_checked_at": [ - 2829 + 2946 ], "steam_id": [ - 2829 + 2946 ], "vac_ban_count": [ - 2829 + 2946 ], "vac_banned": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "my_friends_prepend_input": { "elo": [ - 1700 + 1817 ], "last_presence_state": [ - 1700 + 1817 ], "__typename": [ - 78 + 80 ] }, "my_friends_select_column": {}, @@ -51835,1835 +54062,1835 @@ export default { "my_friends_select_column_my_friends_aggregate_bool_exp_bool_or_arguments_columns": {}, "my_friends_set_input": { "avatar_url": [ - 78 + 80 ], "country": [ - 78 + 80 ], "created_at": [ - 4376 + 4493 ], "custom_avatar_url": [ - 78 + 80 ], "days_since_last_ban": [ - 38 + 40 ], "discord_id": [ - 78 + 80 ], "elo": [ - 1700 + 1817 ], "faceit_elo": [ - 38 + 40 ], "faceit_nickname": [ - 78 + 80 ], "faceit_player_id": [ - 78 + 80 ], "faceit_skill_level": [ - 38 + 40 ], "faceit_updated_at": [ - 4376 + 4493 ], "faceit_url": [ - 78 + 80 ], "friend_steam_id": [ - 180 + 252 ], "game_ban_count": [ - 38 + 40 ], "invited_by_steam_id": [ - 180 + 252 ], "language": [ - 78 + 80 ], "last_presence_state": [ - 1700 + 1817 ], "last_read_news_at": [ - 4376 + 4493 ], "last_sign_in_at": [ - 4376 + 4493 ], "name": [ - 78 + 80 ], "name_registered": [ - 3 + 5 ], "premier_rank": [ - 38 + 40 ], "premier_rank_updated_at": [ - 4376 + 4493 ], "presence_updated_at": [ - 4376 + 4493 ], "profile_url": [ - 78 + 80 ], "role": [ - 78 + 80 ], "roster_image_url": [ - 78 + 80 ], "show_match_ready_modal": [ - 3 + 5 ], "status": [ - 78 + 80 ], "steam_bans_checked_at": [ - 4376 + 4493 ], "steam_id": [ - 180 + 252 ], "vac_ban_count": [ - 38 + 40 ], "vac_banned": [ - 3 + 5 ], "__typename": [ - 78 + 80 ] }, "my_friends_stddev_fields": { "days_since_last_ban": [ - 29 + 31 ], "faceit_elo": [ - 29 + 31 ], "faceit_skill_level": [ - 29 + 31 ], "friend_steam_id": [ - 29 + 31 ], "game_ban_count": [ - 29 + 31 ], "invited_by_steam_id": [ - 29 + 31 ], "premier_rank": [ - 29 + 31 ], "steam_id": [ - 29 + 31 ], "vac_ban_count": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "my_friends_stddev_order_by": { "days_since_last_ban": [ - 2829 + 2946 ], "faceit_elo": [ - 2829 + 2946 ], "faceit_skill_level": [ - 2829 + 2946 ], "friend_steam_id": [ - 2829 + 2946 ], "game_ban_count": [ - 2829 + 2946 ], "invited_by_steam_id": [ - 2829 + 2946 ], "premier_rank": [ - 2829 + 2946 ], "steam_id": [ - 2829 + 2946 ], "vac_ban_count": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "my_friends_stddev_pop_fields": { "days_since_last_ban": [ - 29 + 31 ], "faceit_elo": [ - 29 + 31 ], "faceit_skill_level": [ - 29 + 31 ], "friend_steam_id": [ - 29 + 31 ], "game_ban_count": [ - 29 + 31 ], "invited_by_steam_id": [ - 29 + 31 ], "premier_rank": [ - 29 + 31 ], "steam_id": [ - 29 + 31 ], "vac_ban_count": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "my_friends_stddev_pop_order_by": { "days_since_last_ban": [ - 2829 + 2946 ], "faceit_elo": [ - 2829 + 2946 ], "faceit_skill_level": [ - 2829 + 2946 ], "friend_steam_id": [ - 2829 + 2946 ], "game_ban_count": [ - 2829 + 2946 ], "invited_by_steam_id": [ - 2829 + 2946 ], "premier_rank": [ - 2829 + 2946 ], "steam_id": [ - 2829 + 2946 ], "vac_ban_count": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "my_friends_stddev_samp_fields": { "days_since_last_ban": [ - 29 + 31 ], "faceit_elo": [ - 29 + 31 ], "faceit_skill_level": [ - 29 + 31 ], "friend_steam_id": [ - 29 + 31 ], "game_ban_count": [ - 29 + 31 ], "invited_by_steam_id": [ - 29 + 31 ], "premier_rank": [ - 29 + 31 ], "steam_id": [ - 29 + 31 ], "vac_ban_count": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "my_friends_stddev_samp_order_by": { "days_since_last_ban": [ - 2829 + 2946 ], "faceit_elo": [ - 2829 + 2946 ], "faceit_skill_level": [ - 2829 + 2946 ], "friend_steam_id": [ - 2829 + 2946 ], "game_ban_count": [ - 2829 + 2946 ], "invited_by_steam_id": [ - 2829 + 2946 ], "premier_rank": [ - 2829 + 2946 ], "steam_id": [ - 2829 + 2946 ], "vac_ban_count": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "my_friends_stream_cursor_input": { "initial_value": [ - 2740 + 2857 ], "ordering": [ - 236 + 308 ], "__typename": [ - 78 + 80 ] }, "my_friends_stream_cursor_value_input": { "avatar_url": [ - 78 + 80 ], "country": [ - 78 + 80 ], "created_at": [ - 4376 + 4493 ], "custom_avatar_url": [ - 78 + 80 ], "days_since_last_ban": [ - 38 + 40 ], "discord_id": [ - 78 + 80 ], "elo": [ - 1700 + 1817 ], "faceit_elo": [ - 38 + 40 ], "faceit_nickname": [ - 78 + 80 ], "faceit_player_id": [ - 78 + 80 ], "faceit_skill_level": [ - 38 + 40 ], "faceit_updated_at": [ - 4376 + 4493 ], "faceit_url": [ - 78 + 80 ], "friend_steam_id": [ - 180 + 252 ], "game_ban_count": [ - 38 + 40 ], "invited_by_steam_id": [ - 180 + 252 ], "language": [ - 78 + 80 ], "last_presence_state": [ - 1700 + 1817 ], "last_read_news_at": [ - 4376 + 4493 ], "last_sign_in_at": [ - 4376 + 4493 ], "name": [ - 78 + 80 ], "name_registered": [ - 3 + 5 ], "premier_rank": [ - 38 + 40 ], "premier_rank_updated_at": [ - 4376 + 4493 ], "presence_updated_at": [ - 4376 + 4493 ], "profile_url": [ - 78 + 80 ], "role": [ - 78 + 80 ], "roster_image_url": [ - 78 + 80 ], "show_match_ready_modal": [ - 3 + 5 ], "status": [ - 78 + 80 ], "steam_bans_checked_at": [ - 4376 + 4493 ], "steam_id": [ - 180 + 252 ], "vac_ban_count": [ - 38 + 40 ], "vac_banned": [ - 3 + 5 ], "__typename": [ - 78 + 80 ] }, "my_friends_sum_fields": { "days_since_last_ban": [ - 38 + 40 ], "faceit_elo": [ - 38 + 40 ], "faceit_skill_level": [ - 38 + 40 ], "friend_steam_id": [ - 180 + 252 ], "game_ban_count": [ - 38 + 40 ], "invited_by_steam_id": [ - 180 + 252 ], "premier_rank": [ - 38 + 40 ], "steam_id": [ - 180 + 252 ], "vac_ban_count": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "my_friends_sum_order_by": { "days_since_last_ban": [ - 2829 + 2946 ], "faceit_elo": [ - 2829 + 2946 ], "faceit_skill_level": [ - 2829 + 2946 ], "friend_steam_id": [ - 2829 + 2946 ], "game_ban_count": [ - 2829 + 2946 ], "invited_by_steam_id": [ - 2829 + 2946 ], "premier_rank": [ - 2829 + 2946 ], "steam_id": [ - 2829 + 2946 ], "vac_ban_count": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "my_friends_updates": { "_append": [ - 2712 + 2829 ], "_delete_at_path": [ - 2717 + 2834 ], "_delete_elem": [ - 2718 + 2835 ], "_delete_key": [ - 2719 + 2836 ], "_inc": [ - 2720 + 2837 ], "_prepend": [ - 2728 + 2845 ], "_set": [ - 2732 + 2849 ], "where": [ - 2716 + 2833 ], "__typename": [ - 78 + 80 ] }, "my_friends_var_pop_fields": { "days_since_last_ban": [ - 29 + 31 ], "faceit_elo": [ - 29 + 31 ], "faceit_skill_level": [ - 29 + 31 ], "friend_steam_id": [ - 29 + 31 ], "game_ban_count": [ - 29 + 31 ], "invited_by_steam_id": [ - 29 + 31 ], "premier_rank": [ - 29 + 31 ], "steam_id": [ - 29 + 31 ], "vac_ban_count": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "my_friends_var_pop_order_by": { "days_since_last_ban": [ - 2829 + 2946 ], "faceit_elo": [ - 2829 + 2946 ], "faceit_skill_level": [ - 2829 + 2946 ], "friend_steam_id": [ - 2829 + 2946 ], "game_ban_count": [ - 2829 + 2946 ], "invited_by_steam_id": [ - 2829 + 2946 ], "premier_rank": [ - 2829 + 2946 ], "steam_id": [ - 2829 + 2946 ], "vac_ban_count": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "my_friends_var_samp_fields": { "days_since_last_ban": [ - 29 + 31 ], "faceit_elo": [ - 29 + 31 ], "faceit_skill_level": [ - 29 + 31 ], "friend_steam_id": [ - 29 + 31 ], "game_ban_count": [ - 29 + 31 ], "invited_by_steam_id": [ - 29 + 31 ], "premier_rank": [ - 29 + 31 ], "steam_id": [ - 29 + 31 ], "vac_ban_count": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "my_friends_var_samp_order_by": { "days_since_last_ban": [ - 2829 + 2946 ], "faceit_elo": [ - 2829 + 2946 ], "faceit_skill_level": [ - 2829 + 2946 ], "friend_steam_id": [ - 2829 + 2946 ], "game_ban_count": [ - 2829 + 2946 ], "invited_by_steam_id": [ - 2829 + 2946 ], "premier_rank": [ - 2829 + 2946 ], "steam_id": [ - 2829 + 2946 ], "vac_ban_count": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "my_friends_variance_fields": { "days_since_last_ban": [ - 29 + 31 ], "faceit_elo": [ - 29 + 31 ], "faceit_skill_level": [ - 29 + 31 ], "friend_steam_id": [ - 29 + 31 ], "game_ban_count": [ - 29 + 31 ], "invited_by_steam_id": [ - 29 + 31 ], "premier_rank": [ - 29 + 31 ], "steam_id": [ - 29 + 31 ], "vac_ban_count": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "my_friends_variance_order_by": { "days_since_last_ban": [ - 2829 + 2946 ], "faceit_elo": [ - 2829 + 2946 ], "faceit_skill_level": [ - 2829 + 2946 ], "friend_steam_id": [ - 2829 + 2946 ], "game_ban_count": [ - 2829 + 2946 ], "invited_by_steam_id": [ - 2829 + 2946 ], "premier_rank": [ - 2829 + 2946 ], "steam_id": [ - 2829 + 2946 ], "vac_ban_count": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "news_articles": { "author": [ - 3787 + 3904 ], "author_steam_id": [ - 180 + 252 ], "content_markdown": [ - 78 + 80 ], "cover_image_url": [ - 78 + 80 ], "created_at": [ - 4376 + 4493 ], "id": [ - 4921 + 4993 ], "published_at": [ - 4376 + 4493 ], "slug": [ - 78 + 80 ], "status": [ - 78 + 80 ], "teaser": [ - 78 + 80 ], "title": [ - 78 + 80 ], "updated_at": [ - 4376 + 4493 ], "view_count": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "news_articles_aggregate": { "aggregate": [ - 2752 + 2869 ], "nodes": [ - 2750 + 2867 ], "__typename": [ - 78 + 80 ] }, "news_articles_aggregate_fields": { "avg": [ - 2753 + 2870 ], "count": [ - 38, + 40, { "columns": [ - 2764, + 2881, "[news_articles_select_column!]" ], "distinct": [ - 3 + 5 ] } ], "max": [ - 2758 + 2875 ], "min": [ - 2759 + 2876 ], "stddev": [ - 2766 + 2883 ], "stddev_pop": [ - 2767 + 2884 ], "stddev_samp": [ - 2768 + 2885 ], "sum": [ - 2771 + 2888 ], "var_pop": [ - 2774 + 2891 ], "var_samp": [ - 2775 + 2892 ], "variance": [ - 2776 + 2893 ], "__typename": [ - 78 + 80 ] }, "news_articles_avg_fields": { "author_steam_id": [ - 29 + 31 ], "view_count": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "news_articles_bool_exp": { "_and": [ - 2754 + 2871 ], "_not": [ - 2754 + 2871 ], "_or": [ - 2754 + 2871 ], "author": [ - 3791 + 3908 ], "author_steam_id": [ - 182 + 254 ], "content_markdown": [ - 80 + 82 ], "cover_image_url": [ - 80 + 82 ], "created_at": [ - 4377 + 4494 ], "id": [ - 4923 + 4995 ], "published_at": [ - 4377 + 4494 ], "slug": [ - 80 + 82 ], "status": [ - 80 + 82 ], "teaser": [ - 80 + 82 ], "title": [ - 80 + 82 ], "updated_at": [ - 4377 + 4494 ], "view_count": [ - 182 + 254 ], "__typename": [ - 78 + 80 ] }, "news_articles_constraint": {}, "news_articles_inc_input": { "author_steam_id": [ - 180 + 252 ], "view_count": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "news_articles_insert_input": { "author": [ - 3798 + 3915 ], "author_steam_id": [ - 180 + 252 ], "content_markdown": [ - 78 + 80 ], "cover_image_url": [ - 78 + 80 ], "created_at": [ - 4376 + 4493 ], "id": [ - 4921 + 4993 ], "published_at": [ - 4376 + 4493 ], "slug": [ - 78 + 80 ], "status": [ - 78 + 80 ], "teaser": [ - 78 + 80 ], "title": [ - 78 + 80 ], "updated_at": [ - 4376 + 4493 ], "view_count": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "news_articles_max_fields": { "author_steam_id": [ - 180 + 252 ], "content_markdown": [ - 78 + 80 ], "cover_image_url": [ - 78 + 80 ], "created_at": [ - 4376 + 4493 ], "id": [ - 4921 + 4993 ], "published_at": [ - 4376 + 4493 ], "slug": [ - 78 + 80 ], "status": [ - 78 + 80 ], "teaser": [ - 78 + 80 ], "title": [ - 78 + 80 ], "updated_at": [ - 4376 + 4493 ], "view_count": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "news_articles_min_fields": { "author_steam_id": [ - 180 + 252 ], "content_markdown": [ - 78 + 80 ], "cover_image_url": [ - 78 + 80 ], "created_at": [ - 4376 + 4493 ], "id": [ - 4921 + 4993 ], "published_at": [ - 4376 + 4493 ], "slug": [ - 78 + 80 ], "status": [ - 78 + 80 ], "teaser": [ - 78 + 80 ], "title": [ - 78 + 80 ], "updated_at": [ - 4376 + 4493 ], "view_count": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "news_articles_mutation_response": { "affected_rows": [ - 38 + 40 ], "returning": [ - 2750 + 2867 ], "__typename": [ - 78 + 80 ] }, "news_articles_on_conflict": { "constraint": [ - 2755 + 2872 ], "update_columns": [ - 2772 + 2889 ], "where": [ - 2754 + 2871 ], "__typename": [ - 78 + 80 ] }, "news_articles_order_by": { "author": [ - 3800 + 3917 ], "author_steam_id": [ - 2829 + 2946 ], "content_markdown": [ - 2829 + 2946 ], "cover_image_url": [ - 2829 + 2946 ], "created_at": [ - 2829 + 2946 ], "id": [ - 2829 + 2946 ], "published_at": [ - 2829 + 2946 ], "slug": [ - 2829 + 2946 ], "status": [ - 2829 + 2946 ], "teaser": [ - 2829 + 2946 ], "title": [ - 2829 + 2946 ], "updated_at": [ - 2829 + 2946 ], "view_count": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "news_articles_pk_columns_input": { "id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "news_articles_select_column": {}, "news_articles_set_input": { "author_steam_id": [ - 180 + 252 ], "content_markdown": [ - 78 + 80 ], "cover_image_url": [ - 78 + 80 ], "created_at": [ - 4376 + 4493 ], "id": [ - 4921 + 4993 ], "published_at": [ - 4376 + 4493 ], "slug": [ - 78 + 80 ], "status": [ - 78 + 80 ], "teaser": [ - 78 + 80 ], "title": [ - 78 + 80 ], "updated_at": [ - 4376 + 4493 ], "view_count": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "news_articles_stddev_fields": { "author_steam_id": [ - 29 + 31 ], "view_count": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "news_articles_stddev_pop_fields": { "author_steam_id": [ - 29 + 31 ], "view_count": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "news_articles_stddev_samp_fields": { "author_steam_id": [ - 29 + 31 ], "view_count": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "news_articles_stream_cursor_input": { "initial_value": [ - 2770 + 2887 ], "ordering": [ - 236 + 308 ], "__typename": [ - 78 + 80 ] }, "news_articles_stream_cursor_value_input": { "author_steam_id": [ - 180 + 252 ], "content_markdown": [ - 78 + 80 ], "cover_image_url": [ - 78 + 80 ], "created_at": [ - 4376 + 4493 ], "id": [ - 4921 + 4993 ], "published_at": [ - 4376 + 4493 ], "slug": [ - 78 + 80 ], "status": [ - 78 + 80 ], "teaser": [ - 78 + 80 ], "title": [ - 78 + 80 ], "updated_at": [ - 4376 + 4493 ], "view_count": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "news_articles_sum_fields": { "author_steam_id": [ - 180 + 252 ], "view_count": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "news_articles_update_column": {}, "news_articles_updates": { "_inc": [ - 2756 + 2873 ], "_set": [ - 2765 + 2882 ], "where": [ - 2754 + 2871 ], "__typename": [ - 78 + 80 ] }, "news_articles_var_pop_fields": { "author_steam_id": [ - 29 + 31 ], "view_count": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "news_articles_var_samp_fields": { "author_steam_id": [ - 29 + 31 ], "view_count": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "news_articles_variance_fields": { "author_steam_id": [ - 29 + 31 ], "view_count": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "notifications": { "actions": [ - 1700, + 1817, { "path": [ - 78 + 80 ] } ], "created_at": [ - 4376 + 4493 ], "deletable": [ - 3 + 5 ], "deleted_at": [ - 4376 + 4493 ], "entity_id": [ - 78 + 80 ], "id": [ - 4921 + 4993 ], "is_read": [ - 3 + 5 ], "message": [ - 78 + 80 ], "player": [ - 3787 + 3904 ], "role": [ - 948 + 1065 ], "steam_id": [ - 180 + 252 ], "title": [ - 78 + 80 ], "type": [ - 908 + 1025 ], "__typename": [ - 78 + 80 ] }, "notifications_aggregate": { "aggregate": [ - 2783 + 2900 ], "nodes": [ - 2777 + 2894 ], "__typename": [ - 78 + 80 ] }, "notifications_aggregate_bool_exp": { "bool_and": [ - 2780 + 2897 ], "bool_or": [ - 2781 + 2898 ], "count": [ - 2782 + 2899 ], "__typename": [ - 78 + 80 ] }, "notifications_aggregate_bool_exp_bool_and": { "arguments": [ - 2806 + 2923 ], "distinct": [ - 3 + 5 ], "filter": [ - 2789 + 2906 ], "predicate": [ - 4 + 6 ], "__typename": [ - 78 + 80 ] }, "notifications_aggregate_bool_exp_bool_or": { "arguments": [ - 2807 + 2924 ], "distinct": [ - 3 + 5 ], "filter": [ - 2789 + 2906 ], "predicate": [ - 4 + 6 ], "__typename": [ - 78 + 80 ] }, "notifications_aggregate_bool_exp_count": { "arguments": [ - 2805 + 2922 ], "distinct": [ - 3 + 5 ], "filter": [ - 2789 + 2906 ], "predicate": [ - 39 + 41 ], "__typename": [ - 78 + 80 ] }, "notifications_aggregate_fields": { "avg": [ - 2787 + 2904 ], "count": [ - 38, + 40, { "columns": [ - 2805, + 2922, "[notifications_select_column!]" ], "distinct": [ - 3 + 5 ] } ], "max": [ - 2796 + 2913 ], "min": [ - 2798 + 2915 ], "stddev": [ - 2809 + 2926 ], "stddev_pop": [ - 2811 + 2928 ], "stddev_samp": [ - 2813 + 2930 ], "sum": [ - 2817 + 2934 ], "var_pop": [ - 2821 + 2938 ], "var_samp": [ - 2823 + 2940 ], "variance": [ - 2825 + 2942 ], "__typename": [ - 78 + 80 ] }, "notifications_aggregate_order_by": { "avg": [ - 2788 + 2905 ], "count": [ - 2829 + 2946 ], "max": [ - 2797 + 2914 ], "min": [ - 2799 + 2916 ], "stddev": [ - 2810 + 2927 ], "stddev_pop": [ - 2812 + 2929 ], "stddev_samp": [ - 2814 + 2931 ], "sum": [ - 2818 + 2935 ], "var_pop": [ - 2822 + 2939 ], "var_samp": [ - 2824 + 2941 ], "variance": [ - 2826 + 2943 ], "__typename": [ - 78 + 80 ] }, "notifications_append_input": { "actions": [ - 1700 + 1817 ], "__typename": [ - 78 + 80 ] }, "notifications_arr_rel_insert_input": { "data": [ - 2795 + 2912 ], "on_conflict": [ - 2801 + 2918 ], "__typename": [ - 78 + 80 ] }, "notifications_avg_fields": { "steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "notifications_avg_order_by": { "steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "notifications_bool_exp": { "_and": [ - 2789 + 2906 ], "_not": [ - 2789 + 2906 ], "_or": [ - 2789 + 2906 ], "actions": [ - 1702 + 1819 ], "created_at": [ - 4377 + 4494 ], "deletable": [ - 4 + 6 ], "deleted_at": [ - 4377 + 4494 ], "entity_id": [ - 80 + 82 ], "id": [ - 4923 + 4995 ], "is_read": [ - 4 + 6 ], "message": [ - 80 + 82 ], "player": [ - 3791 + 3908 ], "role": [ - 949 + 1066 ], "steam_id": [ - 182 + 254 ], "title": [ - 80 + 82 ], "type": [ - 909 + 1026 ], "__typename": [ - 78 + 80 ] }, "notifications_constraint": {}, "notifications_delete_at_path_input": { "actions": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "notifications_delete_elem_input": { "actions": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "notifications_delete_key_input": { "actions": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "notifications_inc_input": { "steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "notifications_insert_input": { "actions": [ - 1700 + 1817 ], "created_at": [ - 4376 + 4493 ], "deletable": [ - 3 + 5 ], "deleted_at": [ - 4376 + 4493 ], "entity_id": [ - 78 + 80 ], "id": [ - 4921 + 4993 ], "is_read": [ - 3 + 5 ], "message": [ - 78 + 80 ], "player": [ - 3798 + 3915 ], "role": [ - 948 + 1065 ], "steam_id": [ - 180 + 252 ], "title": [ - 78 + 80 ], "type": [ - 908 + 1025 ], "__typename": [ - 78 + 80 ] }, "notifications_max_fields": { "created_at": [ - 4376 + 4493 ], "deleted_at": [ - 4376 + 4493 ], "entity_id": [ - 78 + 80 ], "id": [ - 4921 + 4993 ], "message": [ - 78 + 80 ], "steam_id": [ - 180 + 252 ], "title": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "notifications_max_order_by": { "created_at": [ - 2829 + 2946 ], "deleted_at": [ - 2829 + 2946 ], "entity_id": [ - 2829 + 2946 ], "id": [ - 2829 + 2946 ], "message": [ - 2829 + 2946 ], "steam_id": [ - 2829 + 2946 ], "title": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "notifications_min_fields": { "created_at": [ - 4376 + 4493 ], "deleted_at": [ - 4376 + 4493 ], "entity_id": [ - 78 + 80 ], "id": [ - 4921 + 4993 ], "message": [ - 78 + 80 ], "steam_id": [ - 180 + 252 ], "title": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "notifications_min_order_by": { "created_at": [ - 2829 + 2946 ], "deleted_at": [ - 2829 + 2946 ], "entity_id": [ - 2829 + 2946 ], "id": [ - 2829 + 2946 ], "message": [ - 2829 + 2946 ], "steam_id": [ - 2829 + 2946 ], "title": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "notifications_mutation_response": { "affected_rows": [ - 38 + 40 ], "returning": [ - 2777 + 2894 ], "__typename": [ - 78 + 80 ] }, "notifications_on_conflict": { "constraint": [ - 2790 + 2907 ], "update_columns": [ - 2819 + 2936 ], "where": [ - 2789 + 2906 ], "__typename": [ - 78 + 80 ] }, "notifications_order_by": { "actions": [ - 2829 + 2946 ], "created_at": [ - 2829 + 2946 ], "deletable": [ - 2829 + 2946 ], "deleted_at": [ - 2829 + 2946 ], "entity_id": [ - 2829 + 2946 ], "id": [ - 2829 + 2946 ], "is_read": [ - 2829 + 2946 ], "message": [ - 2829 + 2946 ], "player": [ - 3800 + 3917 ], "role": [ - 2829 + 2946 ], "steam_id": [ - 2829 + 2946 ], "title": [ - 2829 + 2946 ], "type": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "notifications_pk_columns_input": { "id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "notifications_prepend_input": { "actions": [ - 1700 + 1817 ], "__typename": [ - 78 + 80 ] }, "notifications_select_column": {}, @@ -53671,4195 +55898,4195 @@ export default { "notifications_select_column_notifications_aggregate_bool_exp_bool_or_arguments_columns": {}, "notifications_set_input": { "actions": [ - 1700 + 1817 ], "created_at": [ - 4376 + 4493 ], "deletable": [ - 3 + 5 ], "deleted_at": [ - 4376 + 4493 ], "entity_id": [ - 78 + 80 ], "id": [ - 4921 + 4993 ], "is_read": [ - 3 + 5 ], "message": [ - 78 + 80 ], "role": [ - 948 + 1065 ], "steam_id": [ - 180 + 252 ], "title": [ - 78 + 80 ], "type": [ - 908 + 1025 ], "__typename": [ - 78 + 80 ] }, "notifications_stddev_fields": { "steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "notifications_stddev_order_by": { "steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "notifications_stddev_pop_fields": { "steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "notifications_stddev_pop_order_by": { "steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "notifications_stddev_samp_fields": { "steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "notifications_stddev_samp_order_by": { "steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "notifications_stream_cursor_input": { "initial_value": [ - 2816 + 2933 ], "ordering": [ - 236 + 308 ], "__typename": [ - 78 + 80 ] }, "notifications_stream_cursor_value_input": { "actions": [ - 1700 + 1817 ], "created_at": [ - 4376 + 4493 ], "deletable": [ - 3 + 5 ], "deleted_at": [ - 4376 + 4493 ], "entity_id": [ - 78 + 80 ], "id": [ - 4921 + 4993 ], "is_read": [ - 3 + 5 ], "message": [ - 78 + 80 ], "role": [ - 948 + 1065 ], "steam_id": [ - 180 + 252 ], "title": [ - 78 + 80 ], "type": [ - 908 + 1025 ], "__typename": [ - 78 + 80 ] }, "notifications_sum_fields": { "steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "notifications_sum_order_by": { "steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "notifications_update_column": {}, "notifications_updates": { "_append": [ - 2785 + 2902 ], "_delete_at_path": [ - 2791 + 2908 ], "_delete_elem": [ - 2792 + 2909 ], "_delete_key": [ - 2793 + 2910 ], "_inc": [ - 2794 + 2911 ], "_prepend": [ - 2804 + 2921 ], "_set": [ - 2808 + 2925 ], "where": [ - 2789 + 2906 ], "__typename": [ - 78 + 80 ] }, "notifications_var_pop_fields": { "steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "notifications_var_pop_order_by": { "steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "notifications_var_samp_fields": { "steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "notifications_var_samp_order_by": { "steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "notifications_variance_fields": { "steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "notifications_variance_order_by": { "steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "numeric": {}, "numeric_comparison_exp": { "_eq": [ - 2827 + 2944 ], "_gt": [ - 2827 + 2944 ], "_gte": [ - 2827 + 2944 ], "_in": [ - 2827 + 2944 ], "_is_null": [ - 3 + 5 ], "_lt": [ - 2827 + 2944 ], "_lte": [ - 2827 + 2944 ], "_neq": [ - 2827 + 2944 ], "_nin": [ - 2827 + 2944 ], "__typename": [ - 78 + 80 ] }, "order_by": {}, "pending_match_import_players": { "created_at": [ - 4376 + 4493 ], "pending_match_import": [ - 2871 + 2988 ], "player": [ - 3787 + 3904 ], "steam_id": [ - 180 + 252 ], "valve_match_id": [ - 2827 + 2944 ], "__typename": [ - 78 + 80 ] }, "pending_match_import_players_aggregate": { "aggregate": [ - 2834 + 2951 ], "nodes": [ - 2830 + 2947 ], "__typename": [ - 78 + 80 ] }, "pending_match_import_players_aggregate_bool_exp": { "count": [ - 2833 + 2950 ], "__typename": [ - 78 + 80 ] }, "pending_match_import_players_aggregate_bool_exp_count": { "arguments": [ - 2851 + 2968 ], "distinct": [ - 3 + 5 ], "filter": [ - 2839 + 2956 ], "predicate": [ - 39 + 41 ], "__typename": [ - 78 + 80 ] }, "pending_match_import_players_aggregate_fields": { "avg": [ - 2837 + 2954 ], "count": [ - 38, + 40, { "columns": [ - 2851, + 2968, "[pending_match_import_players_select_column!]" ], "distinct": [ - 3 + 5 ] } ], "max": [ - 2843 + 2960 ], "min": [ - 2845 + 2962 ], "stddev": [ - 2853 + 2970 ], "stddev_pop": [ - 2855 + 2972 ], "stddev_samp": [ - 2857 + 2974 ], "sum": [ - 2861 + 2978 ], "var_pop": [ - 2865 + 2982 ], "var_samp": [ - 2867 + 2984 ], "variance": [ - 2869 + 2986 ], "__typename": [ - 78 + 80 ] }, "pending_match_import_players_aggregate_order_by": { "avg": [ - 2838 + 2955 ], "count": [ - 2829 + 2946 ], "max": [ - 2844 + 2961 ], "min": [ - 2846 + 2963 ], "stddev": [ - 2854 + 2971 ], "stddev_pop": [ - 2856 + 2973 ], "stddev_samp": [ - 2858 + 2975 ], "sum": [ - 2862 + 2979 ], "var_pop": [ - 2866 + 2983 ], "var_samp": [ - 2868 + 2985 ], "variance": [ - 2870 + 2987 ], "__typename": [ - 78 + 80 ] }, "pending_match_import_players_arr_rel_insert_input": { "data": [ - 2842 + 2959 ], "on_conflict": [ - 2848 + 2965 ], "__typename": [ - 78 + 80 ] }, "pending_match_import_players_avg_fields": { "steam_id": [ - 29 + 31 ], "valve_match_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "pending_match_import_players_avg_order_by": { "steam_id": [ - 2829 + 2946 ], "valve_match_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "pending_match_import_players_bool_exp": { "_and": [ - 2839 + 2956 ], "_not": [ - 2839 + 2956 ], "_or": [ - 2839 + 2956 ], "created_at": [ - 4377 + 4494 ], "pending_match_import": [ - 2875 + 2992 ], "player": [ - 3791 + 3908 ], "steam_id": [ - 182 + 254 ], "valve_match_id": [ - 2828 + 2945 ], "__typename": [ - 78 + 80 ] }, "pending_match_import_players_constraint": {}, "pending_match_import_players_inc_input": { "steam_id": [ - 180 + 252 ], "valve_match_id": [ - 2827 + 2944 ], "__typename": [ - 78 + 80 ] }, "pending_match_import_players_insert_input": { "created_at": [ - 4376 + 4493 ], "pending_match_import": [ - 2882 + 2999 ], "player": [ - 3798 + 3915 ], "steam_id": [ - 180 + 252 ], "valve_match_id": [ - 2827 + 2944 ], "__typename": [ - 78 + 80 ] }, "pending_match_import_players_max_fields": { "created_at": [ - 4376 + 4493 ], "steam_id": [ - 180 + 252 ], "valve_match_id": [ - 2827 + 2944 ], "__typename": [ - 78 + 80 ] }, "pending_match_import_players_max_order_by": { "created_at": [ - 2829 + 2946 ], "steam_id": [ - 2829 + 2946 ], "valve_match_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "pending_match_import_players_min_fields": { "created_at": [ - 4376 + 4493 ], "steam_id": [ - 180 + 252 ], "valve_match_id": [ - 2827 + 2944 ], "__typename": [ - 78 + 80 ] }, "pending_match_import_players_min_order_by": { "created_at": [ - 2829 + 2946 ], "steam_id": [ - 2829 + 2946 ], "valve_match_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "pending_match_import_players_mutation_response": { "affected_rows": [ - 38 + 40 ], "returning": [ - 2830 + 2947 ], "__typename": [ - 78 + 80 ] }, "pending_match_import_players_on_conflict": { "constraint": [ - 2840 + 2957 ], "update_columns": [ - 2863 + 2980 ], "where": [ - 2839 + 2956 ], "__typename": [ - 78 + 80 ] }, "pending_match_import_players_order_by": { "created_at": [ - 2829 + 2946 ], "pending_match_import": [ - 2884 + 3001 ], "player": [ - 3800 + 3917 ], "steam_id": [ - 2829 + 2946 ], "valve_match_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "pending_match_import_players_pk_columns_input": { "steam_id": [ - 180 + 252 ], "valve_match_id": [ - 2827 + 2944 ], "__typename": [ - 78 + 80 ] }, "pending_match_import_players_select_column": {}, "pending_match_import_players_set_input": { "created_at": [ - 4376 + 4493 ], "steam_id": [ - 180 + 252 ], "valve_match_id": [ - 2827 + 2944 ], "__typename": [ - 78 + 80 ] }, "pending_match_import_players_stddev_fields": { "steam_id": [ - 29 + 31 ], "valve_match_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "pending_match_import_players_stddev_order_by": { "steam_id": [ - 2829 + 2946 ], "valve_match_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "pending_match_import_players_stddev_pop_fields": { "steam_id": [ - 29 + 31 ], "valve_match_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "pending_match_import_players_stddev_pop_order_by": { "steam_id": [ - 2829 + 2946 ], "valve_match_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "pending_match_import_players_stddev_samp_fields": { "steam_id": [ - 29 + 31 ], "valve_match_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "pending_match_import_players_stddev_samp_order_by": { "steam_id": [ - 2829 + 2946 ], "valve_match_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "pending_match_import_players_stream_cursor_input": { "initial_value": [ - 2860 + 2977 ], "ordering": [ - 236 + 308 ], "__typename": [ - 78 + 80 ] }, "pending_match_import_players_stream_cursor_value_input": { "created_at": [ - 4376 + 4493 ], "steam_id": [ - 180 + 252 ], "valve_match_id": [ - 2827 + 2944 ], "__typename": [ - 78 + 80 ] }, "pending_match_import_players_sum_fields": { "steam_id": [ - 180 + 252 ], "valve_match_id": [ - 2827 + 2944 ], "__typename": [ - 78 + 80 ] }, "pending_match_import_players_sum_order_by": { "steam_id": [ - 2829 + 2946 ], "valve_match_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "pending_match_import_players_update_column": {}, "pending_match_import_players_updates": { "_inc": [ - 2841 + 2958 ], "_set": [ - 2852 + 2969 ], "where": [ - 2839 + 2956 ], "__typename": [ - 78 + 80 ] }, "pending_match_import_players_var_pop_fields": { "steam_id": [ - 29 + 31 ], "valve_match_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "pending_match_import_players_var_pop_order_by": { "steam_id": [ - 2829 + 2946 ], "valve_match_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "pending_match_import_players_var_samp_fields": { "steam_id": [ - 29 + 31 ], "valve_match_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "pending_match_import_players_var_samp_order_by": { "steam_id": [ - 2829 + 2946 ], "valve_match_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "pending_match_import_players_variance_fields": { "steam_id": [ - 29 + 31 ], "valve_match_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "pending_match_import_players_variance_order_by": { "steam_id": [ - 2829 + 2946 ], "valve_match_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "pending_match_imports": { "created_at": [ - 4376 + 4493 ], "demo_url": [ - 78 + 80 ], "error": [ - 78 + 80 ], "map_name": [ - 78 + 80 ], "match_start_time": [ - 4376 + 4493 ], "players": [ - 2830, + 2947, { "distinct_on": [ - 2851, + 2968, "[pending_match_import_players_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2849, + 2966, "[pending_match_import_players_order_by!]" ], "where": [ - 2839 + 2956 ] } ], "players_aggregate": [ - 2831, + 2948, { "distinct_on": [ - 2851, + 2968, "[pending_match_import_players_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2849, + 2966, "[pending_match_import_players_order_by!]" ], "where": [ - 2839 + 2956 ] } ], "share_code": [ - 78 + 80 ], "status": [ - 78 + 80 ], "updated_at": [ - 4376 + 4493 ], "valve_match_id": [ - 2827 + 2944 ], "__typename": [ - 78 + 80 ] }, "pending_match_imports_aggregate": { "aggregate": [ - 2873 + 2990 ], "nodes": [ - 2871 + 2988 ], "__typename": [ - 78 + 80 ] }, "pending_match_imports_aggregate_fields": { "avg": [ - 2874 + 2991 ], "count": [ - 38, + 40, { "columns": [ - 2886, + 3003, "[pending_match_imports_select_column!]" ], "distinct": [ - 3 + 5 ] } ], "max": [ - 2879 + 2996 ], "min": [ - 2880 + 2997 ], "stddev": [ - 2888 + 3005 ], "stddev_pop": [ - 2889 + 3006 ], "stddev_samp": [ - 2890 + 3007 ], "sum": [ - 2893 + 3010 ], "var_pop": [ - 2896 + 3013 ], "var_samp": [ - 2897 + 3014 ], "variance": [ - 2898 + 3015 ], "__typename": [ - 78 + 80 ] }, "pending_match_imports_avg_fields": { "valve_match_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "pending_match_imports_bool_exp": { "_and": [ - 2875 + 2992 ], "_not": [ - 2875 + 2992 ], "_or": [ - 2875 + 2992 ], "created_at": [ - 4377 + 4494 ], "demo_url": [ - 80 + 82 ], "error": [ - 80 + 82 ], "map_name": [ - 80 + 82 ], "match_start_time": [ - 4377 + 4494 ], "players": [ - 2839 + 2956 ], "players_aggregate": [ - 2832 + 2949 ], "share_code": [ - 80 + 82 ], "status": [ - 80 + 82 ], "updated_at": [ - 4377 + 4494 ], "valve_match_id": [ - 2828 + 2945 ], "__typename": [ - 78 + 80 ] }, "pending_match_imports_constraint": {}, "pending_match_imports_inc_input": { "valve_match_id": [ - 2827 + 2944 ], "__typename": [ - 78 + 80 ] }, "pending_match_imports_insert_input": { "created_at": [ - 4376 + 4493 ], "demo_url": [ - 78 + 80 ], "error": [ - 78 + 80 ], "map_name": [ - 78 + 80 ], "match_start_time": [ - 4376 + 4493 ], "players": [ - 2836 + 2953 ], "share_code": [ - 78 + 80 ], "status": [ - 78 + 80 ], "updated_at": [ - 4376 + 4493 ], "valve_match_id": [ - 2827 + 2944 ], "__typename": [ - 78 + 80 ] }, "pending_match_imports_max_fields": { "created_at": [ - 4376 + 4493 ], "demo_url": [ - 78 + 80 ], "error": [ - 78 + 80 ], "map_name": [ - 78 + 80 ], "match_start_time": [ - 4376 + 4493 ], "share_code": [ - 78 + 80 ], "status": [ - 78 + 80 ], "updated_at": [ - 4376 + 4493 ], "valve_match_id": [ - 2827 + 2944 ], "__typename": [ - 78 + 80 ] }, "pending_match_imports_min_fields": { "created_at": [ - 4376 + 4493 ], "demo_url": [ - 78 + 80 ], "error": [ - 78 + 80 ], "map_name": [ - 78 + 80 ], "match_start_time": [ - 4376 + 4493 ], "share_code": [ - 78 + 80 ], "status": [ - 78 + 80 ], "updated_at": [ - 4376 + 4493 ], "valve_match_id": [ - 2827 + 2944 ], "__typename": [ - 78 + 80 ] }, "pending_match_imports_mutation_response": { "affected_rows": [ - 38 + 40 ], "returning": [ - 2871 + 2988 ], "__typename": [ - 78 + 80 ] }, "pending_match_imports_obj_rel_insert_input": { "data": [ - 2878 + 2995 ], "on_conflict": [ - 2883 + 3000 ], "__typename": [ - 78 + 80 ] }, "pending_match_imports_on_conflict": { "constraint": [ - 2876 + 2993 ], "update_columns": [ - 2894 + 3011 ], "where": [ - 2875 + 2992 ], "__typename": [ - 78 + 80 ] }, "pending_match_imports_order_by": { "created_at": [ - 2829 + 2946 ], "demo_url": [ - 2829 + 2946 ], "error": [ - 2829 + 2946 ], "map_name": [ - 2829 + 2946 ], "match_start_time": [ - 2829 + 2946 ], "players_aggregate": [ - 2835 + 2952 ], "share_code": [ - 2829 + 2946 ], "status": [ - 2829 + 2946 ], "updated_at": [ - 2829 + 2946 ], "valve_match_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "pending_match_imports_pk_columns_input": { "valve_match_id": [ - 2827 + 2944 ], "__typename": [ - 78 + 80 ] }, "pending_match_imports_select_column": {}, "pending_match_imports_set_input": { "created_at": [ - 4376 + 4493 ], "demo_url": [ - 78 + 80 ], "error": [ - 78 + 80 ], "map_name": [ - 78 + 80 ], "match_start_time": [ - 4376 + 4493 ], "share_code": [ - 78 + 80 ], "status": [ - 78 + 80 ], "updated_at": [ - 4376 + 4493 ], "valve_match_id": [ - 2827 + 2944 ], "__typename": [ - 78 + 80 ] }, "pending_match_imports_stddev_fields": { "valve_match_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "pending_match_imports_stddev_pop_fields": { "valve_match_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "pending_match_imports_stddev_samp_fields": { "valve_match_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "pending_match_imports_stream_cursor_input": { "initial_value": [ - 2892 + 3009 ], "ordering": [ - 236 + 308 ], "__typename": [ - 78 + 80 ] }, "pending_match_imports_stream_cursor_value_input": { "created_at": [ - 4376 + 4493 ], "demo_url": [ - 78 + 80 ], "error": [ - 78 + 80 ], "map_name": [ - 78 + 80 ], "match_start_time": [ - 4376 + 4493 ], "share_code": [ - 78 + 80 ], "status": [ - 78 + 80 ], "updated_at": [ - 4376 + 4493 ], "valve_match_id": [ - 2827 + 2944 ], "__typename": [ - 78 + 80 ] }, "pending_match_imports_sum_fields": { "valve_match_id": [ - 2827 + 2944 ], "__typename": [ - 78 + 80 ] }, "pending_match_imports_update_column": {}, "pending_match_imports_updates": { "_inc": [ - 2877 + 2994 ], "_set": [ - 2887 + 3004 ], "where": [ - 2875 + 2992 ], "__typename": [ - 78 + 80 ] }, "pending_match_imports_var_pop_fields": { "valve_match_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "pending_match_imports_var_samp_fields": { "valve_match_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "pending_match_imports_variance_fields": { "valve_match_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "player_aim_stats_demo": { "attacker": [ - 3787 + 3904 ], "attacker_steam_id": [ - 180 + 252 ], "counter_strafe_eligible_shots": [ - 38 + 40 ], "counter_strafed_shots": [ - 38 + 40 ], "crosshair_angle_count": [ - 38 + 40 ], "crosshair_angle_sum_deg": [ - 2827 + 2944 ], "first_bullet_hits": [ - 38 + 40 ], "first_bullet_shots": [ - 38 + 40 ], "headshot_hits": [ - 38 + 40 ], "hits": [ - 38 + 40 ], "hits_at_spotted": [ - 38 + 40 ], "match": [ - 2644 + 2761 ], "match_id": [ - 4921 + 4993 ], "match_map": [ - 2482 + 2599 ], "match_map_id": [ - 4921 + 4993 ], "non_awp_hits": [ - 38 + 40 ], "on_target_frames": [ - 38 + 40 ], "shots_at_spotted": [ - 38 + 40 ], "spray_hits": [ - 38 + 40 ], "spray_shots": [ - 38 + 40 ], "time_to_damage_count": [ - 38 + 40 ], "time_to_damage_sum_s": [ - 2827 + 2944 ], "total_engagement_frames": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "player_aim_stats_demo_aggregate": { "aggregate": [ - 2901 + 3018 ], "nodes": [ - 2899 + 3016 ], "__typename": [ - 78 + 80 ] }, "player_aim_stats_demo_aggregate_fields": { "avg": [ - 2902 + 3019 ], "count": [ - 38, + 40, { "columns": [ - 2913, + 3030, "[player_aim_stats_demo_select_column!]" ], "distinct": [ - 3 + 5 ] } ], "max": [ - 2907 + 3024 ], "min": [ - 2908 + 3025 ], "stddev": [ - 2915 + 3032 ], "stddev_pop": [ - 2916 + 3033 ], "stddev_samp": [ - 2917 + 3034 ], "sum": [ - 2920 + 3037 ], "var_pop": [ - 2923 + 3040 ], "var_samp": [ - 2924 + 3041 ], "variance": [ - 2925 + 3042 ], "__typename": [ - 78 + 80 ] }, "player_aim_stats_demo_avg_fields": { "attacker_steam_id": [ - 29 + 31 ], "counter_strafe_eligible_shots": [ - 29 + 31 ], "counter_strafed_shots": [ - 29 + 31 ], "crosshair_angle_count": [ - 29 + 31 ], "crosshair_angle_sum_deg": [ - 29 + 31 ], "first_bullet_hits": [ - 29 + 31 ], "first_bullet_shots": [ - 29 + 31 ], "headshot_hits": [ - 29 + 31 ], "hits": [ - 29 + 31 ], "hits_at_spotted": [ - 29 + 31 ], "non_awp_hits": [ - 29 + 31 ], "on_target_frames": [ - 29 + 31 ], "shots_at_spotted": [ - 29 + 31 ], "spray_hits": [ - 29 + 31 ], "spray_shots": [ - 29 + 31 ], "time_to_damage_count": [ - 29 + 31 ], "time_to_damage_sum_s": [ - 29 + 31 ], "total_engagement_frames": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "player_aim_stats_demo_bool_exp": { "_and": [ - 2903 + 3020 ], "_not": [ - 2903 + 3020 ], "_or": [ - 2903 + 3020 ], "attacker": [ - 3791 + 3908 ], "attacker_steam_id": [ - 182 + 254 ], "counter_strafe_eligible_shots": [ - 39 + 41 ], "counter_strafed_shots": [ - 39 + 41 ], "crosshair_angle_count": [ - 39 + 41 ], "crosshair_angle_sum_deg": [ - 2828 + 2945 ], "first_bullet_hits": [ - 39 + 41 ], "first_bullet_shots": [ - 39 + 41 ], "headshot_hits": [ - 39 + 41 ], "hits": [ - 39 + 41 ], "hits_at_spotted": [ - 39 + 41 ], "match": [ - 2653 + 2770 ], "match_id": [ - 4923 + 4995 ], "match_map": [ - 2491 + 2608 ], "match_map_id": [ - 4923 + 4995 ], "non_awp_hits": [ - 39 + 41 ], "on_target_frames": [ - 39 + 41 ], "shots_at_spotted": [ - 39 + 41 ], "spray_hits": [ - 39 + 41 ], "spray_shots": [ - 39 + 41 ], "time_to_damage_count": [ - 39 + 41 ], "time_to_damage_sum_s": [ - 2828 + 2945 ], "total_engagement_frames": [ - 39 + 41 ], "__typename": [ - 78 + 80 ] }, "player_aim_stats_demo_constraint": {}, "player_aim_stats_demo_inc_input": { "attacker_steam_id": [ - 180 + 252 ], "counter_strafe_eligible_shots": [ - 38 + 40 ], "counter_strafed_shots": [ - 38 + 40 ], "crosshair_angle_count": [ - 38 + 40 ], "crosshair_angle_sum_deg": [ - 2827 + 2944 ], "first_bullet_hits": [ - 38 + 40 ], "first_bullet_shots": [ - 38 + 40 ], "headshot_hits": [ - 38 + 40 ], "hits": [ - 38 + 40 ], "hits_at_spotted": [ - 38 + 40 ], "non_awp_hits": [ - 38 + 40 ], "on_target_frames": [ - 38 + 40 ], "shots_at_spotted": [ - 38 + 40 ], "spray_hits": [ - 38 + 40 ], "spray_shots": [ - 38 + 40 ], "time_to_damage_count": [ - 38 + 40 ], "time_to_damage_sum_s": [ - 2827 + 2944 ], "total_engagement_frames": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "player_aim_stats_demo_insert_input": { "attacker": [ - 3798 + 3915 ], "attacker_steam_id": [ - 180 + 252 ], "counter_strafe_eligible_shots": [ - 38 + 40 ], "counter_strafed_shots": [ - 38 + 40 ], "crosshair_angle_count": [ - 38 + 40 ], "crosshair_angle_sum_deg": [ - 2827 + 2944 ], "first_bullet_hits": [ - 38 + 40 ], "first_bullet_shots": [ - 38 + 40 ], "headshot_hits": [ - 38 + 40 ], "hits": [ - 38 + 40 ], "hits_at_spotted": [ - 38 + 40 ], "match": [ - 2662 + 2779 ], "match_id": [ - 4921 + 4993 ], "match_map": [ - 2500 + 2617 ], "match_map_id": [ - 4921 + 4993 ], "non_awp_hits": [ - 38 + 40 ], "on_target_frames": [ - 38 + 40 ], "shots_at_spotted": [ - 38 + 40 ], "spray_hits": [ - 38 + 40 ], "spray_shots": [ - 38 + 40 ], "time_to_damage_count": [ - 38 + 40 ], "time_to_damage_sum_s": [ - 2827 + 2944 ], "total_engagement_frames": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "player_aim_stats_demo_max_fields": { "attacker_steam_id": [ - 180 + 252 ], "counter_strafe_eligible_shots": [ - 38 + 40 ], "counter_strafed_shots": [ - 38 + 40 ], "crosshair_angle_count": [ - 38 + 40 ], "crosshair_angle_sum_deg": [ - 2827 + 2944 ], "first_bullet_hits": [ - 38 + 40 ], "first_bullet_shots": [ - 38 + 40 ], "headshot_hits": [ - 38 + 40 ], "hits": [ - 38 + 40 ], "hits_at_spotted": [ - 38 + 40 ], "match_id": [ - 4921 + 4993 ], "match_map_id": [ - 4921 + 4993 ], "non_awp_hits": [ - 38 + 40 ], "on_target_frames": [ - 38 + 40 ], "shots_at_spotted": [ - 38 + 40 ], "spray_hits": [ - 38 + 40 ], "spray_shots": [ - 38 + 40 ], "time_to_damage_count": [ - 38 + 40 ], "time_to_damage_sum_s": [ - 2827 + 2944 ], "total_engagement_frames": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "player_aim_stats_demo_min_fields": { "attacker_steam_id": [ - 180 + 252 ], "counter_strafe_eligible_shots": [ - 38 + 40 ], "counter_strafed_shots": [ - 38 + 40 ], "crosshair_angle_count": [ - 38 + 40 ], "crosshair_angle_sum_deg": [ - 2827 + 2944 ], "first_bullet_hits": [ - 38 + 40 ], "first_bullet_shots": [ - 38 + 40 ], "headshot_hits": [ - 38 + 40 ], "hits": [ - 38 + 40 ], "hits_at_spotted": [ - 38 + 40 ], "match_id": [ - 4921 + 4993 ], "match_map_id": [ - 4921 + 4993 ], "non_awp_hits": [ - 38 + 40 ], "on_target_frames": [ - 38 + 40 ], "shots_at_spotted": [ - 38 + 40 ], "spray_hits": [ - 38 + 40 ], "spray_shots": [ - 38 + 40 ], "time_to_damage_count": [ - 38 + 40 ], "time_to_damage_sum_s": [ - 2827 + 2944 ], "total_engagement_frames": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "player_aim_stats_demo_mutation_response": { "affected_rows": [ - 38 + 40 ], "returning": [ - 2899 + 3016 ], "__typename": [ - 78 + 80 ] }, "player_aim_stats_demo_on_conflict": { "constraint": [ - 2904 + 3021 ], "update_columns": [ - 2921 + 3038 ], "where": [ - 2903 + 3020 ], "__typename": [ - 78 + 80 ] }, "player_aim_stats_demo_order_by": { "attacker": [ - 3800 + 3917 ], "attacker_steam_id": [ - 2829 + 2946 ], "counter_strafe_eligible_shots": [ - 2829 + 2946 ], "counter_strafed_shots": [ - 2829 + 2946 ], "crosshair_angle_count": [ - 2829 + 2946 ], "crosshair_angle_sum_deg": [ - 2829 + 2946 ], "first_bullet_hits": [ - 2829 + 2946 ], "first_bullet_shots": [ - 2829 + 2946 ], "headshot_hits": [ - 2829 + 2946 ], "hits": [ - 2829 + 2946 ], "hits_at_spotted": [ - 2829 + 2946 ], "match": [ - 2664 + 2781 ], "match_id": [ - 2829 + 2946 ], "match_map": [ - 2502 + 2619 ], "match_map_id": [ - 2829 + 2946 ], "non_awp_hits": [ - 2829 + 2946 ], "on_target_frames": [ - 2829 + 2946 ], "shots_at_spotted": [ - 2829 + 2946 ], "spray_hits": [ - 2829 + 2946 ], "spray_shots": [ - 2829 + 2946 ], "time_to_damage_count": [ - 2829 + 2946 ], "time_to_damage_sum_s": [ - 2829 + 2946 ], "total_engagement_frames": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "player_aim_stats_demo_pk_columns_input": { "attacker_steam_id": [ - 180 + 252 ], "match_map_id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "player_aim_stats_demo_select_column": {}, "player_aim_stats_demo_set_input": { "attacker_steam_id": [ - 180 + 252 ], "counter_strafe_eligible_shots": [ - 38 + 40 ], "counter_strafed_shots": [ - 38 + 40 ], "crosshair_angle_count": [ - 38 + 40 ], "crosshair_angle_sum_deg": [ - 2827 + 2944 ], "first_bullet_hits": [ - 38 + 40 ], "first_bullet_shots": [ - 38 + 40 ], "headshot_hits": [ - 38 + 40 ], "hits": [ - 38 + 40 ], "hits_at_spotted": [ - 38 + 40 ], "match_id": [ - 4921 + 4993 ], "match_map_id": [ - 4921 + 4993 ], "non_awp_hits": [ - 38 + 40 ], "on_target_frames": [ - 38 + 40 ], "shots_at_spotted": [ - 38 + 40 ], "spray_hits": [ - 38 + 40 ], "spray_shots": [ - 38 + 40 ], "time_to_damage_count": [ - 38 + 40 ], "time_to_damage_sum_s": [ - 2827 + 2944 ], "total_engagement_frames": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "player_aim_stats_demo_stddev_fields": { "attacker_steam_id": [ - 29 + 31 ], "counter_strafe_eligible_shots": [ - 29 + 31 ], "counter_strafed_shots": [ - 29 + 31 ], "crosshair_angle_count": [ - 29 + 31 ], "crosshair_angle_sum_deg": [ - 29 + 31 ], "first_bullet_hits": [ - 29 + 31 ], "first_bullet_shots": [ - 29 + 31 ], "headshot_hits": [ - 29 + 31 ], "hits": [ - 29 + 31 ], "hits_at_spotted": [ - 29 + 31 ], "non_awp_hits": [ - 29 + 31 ], "on_target_frames": [ - 29 + 31 ], "shots_at_spotted": [ - 29 + 31 ], "spray_hits": [ - 29 + 31 ], "spray_shots": [ - 29 + 31 ], "time_to_damage_count": [ - 29 + 31 ], "time_to_damage_sum_s": [ - 29 + 31 ], "total_engagement_frames": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "player_aim_stats_demo_stddev_pop_fields": { "attacker_steam_id": [ - 29 + 31 ], "counter_strafe_eligible_shots": [ - 29 + 31 ], "counter_strafed_shots": [ - 29 + 31 ], "crosshair_angle_count": [ - 29 + 31 ], "crosshair_angle_sum_deg": [ - 29 + 31 ], "first_bullet_hits": [ - 29 + 31 ], "first_bullet_shots": [ - 29 + 31 ], "headshot_hits": [ - 29 + 31 ], "hits": [ - 29 + 31 ], "hits_at_spotted": [ - 29 + 31 ], "non_awp_hits": [ - 29 + 31 ], "on_target_frames": [ - 29 + 31 ], "shots_at_spotted": [ - 29 + 31 ], "spray_hits": [ - 29 + 31 ], "spray_shots": [ - 29 + 31 ], "time_to_damage_count": [ - 29 + 31 ], "time_to_damage_sum_s": [ - 29 + 31 ], "total_engagement_frames": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "player_aim_stats_demo_stddev_samp_fields": { "attacker_steam_id": [ - 29 + 31 ], "counter_strafe_eligible_shots": [ - 29 + 31 ], "counter_strafed_shots": [ - 29 + 31 ], "crosshair_angle_count": [ - 29 + 31 ], "crosshair_angle_sum_deg": [ - 29 + 31 ], "first_bullet_hits": [ - 29 + 31 ], "first_bullet_shots": [ - 29 + 31 ], "headshot_hits": [ - 29 + 31 ], "hits": [ - 29 + 31 ], "hits_at_spotted": [ - 29 + 31 ], "non_awp_hits": [ - 29 + 31 ], "on_target_frames": [ - 29 + 31 ], "shots_at_spotted": [ - 29 + 31 ], "spray_hits": [ - 29 + 31 ], "spray_shots": [ - 29 + 31 ], "time_to_damage_count": [ - 29 + 31 ], "time_to_damage_sum_s": [ - 29 + 31 ], "total_engagement_frames": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "player_aim_stats_demo_stream_cursor_input": { "initial_value": [ - 2919 + 3036 ], "ordering": [ - 236 + 308 ], "__typename": [ - 78 + 80 ] }, "player_aim_stats_demo_stream_cursor_value_input": { "attacker_steam_id": [ - 180 + 252 ], "counter_strafe_eligible_shots": [ - 38 + 40 ], "counter_strafed_shots": [ - 38 + 40 ], "crosshair_angle_count": [ - 38 + 40 ], "crosshair_angle_sum_deg": [ - 2827 + 2944 ], "first_bullet_hits": [ - 38 + 40 ], "first_bullet_shots": [ - 38 + 40 ], "headshot_hits": [ - 38 + 40 ], "hits": [ - 38 + 40 ], "hits_at_spotted": [ - 38 + 40 ], "match_id": [ - 4921 + 4993 ], "match_map_id": [ - 4921 + 4993 ], "non_awp_hits": [ - 38 + 40 ], "on_target_frames": [ - 38 + 40 ], "shots_at_spotted": [ - 38 + 40 ], "spray_hits": [ - 38 + 40 ], "spray_shots": [ - 38 + 40 ], "time_to_damage_count": [ - 38 + 40 ], "time_to_damage_sum_s": [ - 2827 + 2944 ], "total_engagement_frames": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "player_aim_stats_demo_sum_fields": { "attacker_steam_id": [ - 180 + 252 ], "counter_strafe_eligible_shots": [ - 38 + 40 ], "counter_strafed_shots": [ - 38 + 40 ], "crosshair_angle_count": [ - 38 + 40 ], "crosshair_angle_sum_deg": [ - 2827 + 2944 ], "first_bullet_hits": [ - 38 + 40 ], "first_bullet_shots": [ - 38 + 40 ], "headshot_hits": [ - 38 + 40 ], "hits": [ - 38 + 40 ], "hits_at_spotted": [ - 38 + 40 ], "non_awp_hits": [ - 38 + 40 ], "on_target_frames": [ - 38 + 40 ], "shots_at_spotted": [ - 38 + 40 ], "spray_hits": [ - 38 + 40 ], "spray_shots": [ - 38 + 40 ], "time_to_damage_count": [ - 38 + 40 ], "time_to_damage_sum_s": [ - 2827 + 2944 ], "total_engagement_frames": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "player_aim_stats_demo_update_column": {}, "player_aim_stats_demo_updates": { "_inc": [ - 2905 + 3022 ], "_set": [ - 2914 + 3031 ], "where": [ - 2903 + 3020 ], "__typename": [ - 78 + 80 ] }, "player_aim_stats_demo_var_pop_fields": { "attacker_steam_id": [ - 29 + 31 ], "counter_strafe_eligible_shots": [ - 29 + 31 ], "counter_strafed_shots": [ - 29 + 31 ], "crosshair_angle_count": [ - 29 + 31 ], "crosshair_angle_sum_deg": [ - 29 + 31 ], "first_bullet_hits": [ - 29 + 31 ], "first_bullet_shots": [ - 29 + 31 ], "headshot_hits": [ - 29 + 31 ], "hits": [ - 29 + 31 ], "hits_at_spotted": [ - 29 + 31 ], "non_awp_hits": [ - 29 + 31 ], "on_target_frames": [ - 29 + 31 ], "shots_at_spotted": [ - 29 + 31 ], "spray_hits": [ - 29 + 31 ], "spray_shots": [ - 29 + 31 ], "time_to_damage_count": [ - 29 + 31 ], "time_to_damage_sum_s": [ - 29 + 31 ], "total_engagement_frames": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "player_aim_stats_demo_var_samp_fields": { "attacker_steam_id": [ - 29 + 31 ], "counter_strafe_eligible_shots": [ - 29 + 31 ], "counter_strafed_shots": [ - 29 + 31 ], "crosshair_angle_count": [ - 29 + 31 ], "crosshair_angle_sum_deg": [ - 29 + 31 ], "first_bullet_hits": [ - 29 + 31 ], "first_bullet_shots": [ - 29 + 31 ], "headshot_hits": [ - 29 + 31 ], "hits": [ - 29 + 31 ], "hits_at_spotted": [ - 29 + 31 ], "non_awp_hits": [ - 29 + 31 ], "on_target_frames": [ - 29 + 31 ], "shots_at_spotted": [ - 29 + 31 ], "spray_hits": [ - 29 + 31 ], "spray_shots": [ - 29 + 31 ], "time_to_damage_count": [ - 29 + 31 ], "time_to_damage_sum_s": [ - 29 + 31 ], "total_engagement_frames": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "player_aim_stats_demo_variance_fields": { "attacker_steam_id": [ - 29 + 31 ], "counter_strafe_eligible_shots": [ - 29 + 31 ], "counter_strafed_shots": [ - 29 + 31 ], "crosshair_angle_count": [ - 29 + 31 ], "crosshair_angle_sum_deg": [ - 29 + 31 ], "first_bullet_hits": [ - 29 + 31 ], "first_bullet_shots": [ - 29 + 31 ], "headshot_hits": [ - 29 + 31 ], "hits": [ - 29 + 31 ], "hits_at_spotted": [ - 29 + 31 ], "non_awp_hits": [ - 29 + 31 ], "on_target_frames": [ - 29 + 31 ], "shots_at_spotted": [ - 29 + 31 ], "spray_hits": [ - 29 + 31 ], "spray_shots": [ - 29 + 31 ], "time_to_damage_count": [ - 29 + 31 ], "time_to_damage_sum_s": [ - 29 + 31 ], "total_engagement_frames": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "player_aim_weapon_stats": { "first_bullet_hits": [ - 38 + 40 ], "first_bullet_shots": [ - 38 + 40 ], "hits": [ - 38 + 40 ], "hits_spotted": [ - 38 + 40 ], "match": [ - 2644 + 2761 ], "match_id": [ - 4921 + 4993 ], "match_map": [ - 2482 + 2599 ], "match_map_id": [ - 4921 + 4993 ], "player": [ - 3787 + 3904 ], "shots": [ - 38 + 40 ], "shots_spotted": [ - 38 + 40 ], "steam_id": [ - 180 + 252 ], "weapon_class": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "player_aim_weapon_stats_aggregate": { "aggregate": [ - 2930 + 3047 ], "nodes": [ - 2926 + 3043 ], "__typename": [ - 78 + 80 ] }, "player_aim_weapon_stats_aggregate_bool_exp": { "count": [ - 2929 + 3046 ], "__typename": [ - 78 + 80 ] }, "player_aim_weapon_stats_aggregate_bool_exp_count": { "arguments": [ - 2947 + 3064 ], "distinct": [ - 3 + 5 ], "filter": [ - 2935 + 3052 ], "predicate": [ - 39 + 41 ], "__typename": [ - 78 + 80 ] }, "player_aim_weapon_stats_aggregate_fields": { "avg": [ - 2933 + 3050 ], "count": [ - 38, + 40, { "columns": [ - 2947, + 3064, "[player_aim_weapon_stats_select_column!]" ], "distinct": [ - 3 + 5 ] } ], "max": [ - 2939 + 3056 ], "min": [ - 2941 + 3058 ], "stddev": [ - 2949 + 3066 ], "stddev_pop": [ - 2951 + 3068 ], "stddev_samp": [ - 2953 + 3070 ], "sum": [ - 2957 + 3074 ], "var_pop": [ - 2961 + 3078 ], "var_samp": [ - 2963 + 3080 ], "variance": [ - 2965 + 3082 ], "__typename": [ - 78 + 80 ] }, "player_aim_weapon_stats_aggregate_order_by": { "avg": [ - 2934 + 3051 ], "count": [ - 2829 + 2946 ], "max": [ - 2940 + 3057 ], "min": [ - 2942 + 3059 ], "stddev": [ - 2950 + 3067 ], "stddev_pop": [ - 2952 + 3069 ], "stddev_samp": [ - 2954 + 3071 ], "sum": [ - 2958 + 3075 ], "var_pop": [ - 2962 + 3079 ], "var_samp": [ - 2964 + 3081 ], "variance": [ - 2966 + 3083 ], "__typename": [ - 78 + 80 ] }, "player_aim_weapon_stats_arr_rel_insert_input": { "data": [ - 2938 + 3055 ], "on_conflict": [ - 2944 + 3061 ], "__typename": [ - 78 + 80 ] }, "player_aim_weapon_stats_avg_fields": { "first_bullet_hits": [ - 29 + 31 ], "first_bullet_shots": [ - 29 + 31 ], "hits": [ - 29 + 31 ], "hits_spotted": [ - 29 + 31 ], "shots": [ - 29 + 31 ], "shots_spotted": [ - 29 + 31 ], "steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "player_aim_weapon_stats_avg_order_by": { "first_bullet_hits": [ - 2829 + 2946 ], "first_bullet_shots": [ - 2829 + 2946 ], "hits": [ - 2829 + 2946 ], "hits_spotted": [ - 2829 + 2946 ], "shots": [ - 2829 + 2946 ], "shots_spotted": [ - 2829 + 2946 ], "steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "player_aim_weapon_stats_bool_exp": { "_and": [ - 2935 + 3052 ], "_not": [ - 2935 + 3052 ], "_or": [ - 2935 + 3052 ], "first_bullet_hits": [ - 39 + 41 ], "first_bullet_shots": [ - 39 + 41 ], "hits": [ - 39 + 41 ], "hits_spotted": [ - 39 + 41 ], "match": [ - 2653 + 2770 ], "match_id": [ - 4923 + 4995 ], "match_map": [ - 2491 + 2608 ], "match_map_id": [ - 4923 + 4995 ], "player": [ - 3791 + 3908 ], "shots": [ - 39 + 41 ], "shots_spotted": [ - 39 + 41 ], "steam_id": [ - 182 + 254 ], "weapon_class": [ - 80 + 82 ], "__typename": [ - 78 + 80 ] }, "player_aim_weapon_stats_constraint": {}, "player_aim_weapon_stats_inc_input": { "first_bullet_hits": [ - 38 + 40 ], "first_bullet_shots": [ - 38 + 40 ], "hits": [ - 38 + 40 ], "hits_spotted": [ - 38 + 40 ], "shots": [ - 38 + 40 ], "shots_spotted": [ - 38 + 40 ], "steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "player_aim_weapon_stats_insert_input": { "first_bullet_hits": [ - 38 + 40 ], "first_bullet_shots": [ - 38 + 40 ], "hits": [ - 38 + 40 ], "hits_spotted": [ - 38 + 40 ], "match": [ - 2662 + 2779 ], "match_id": [ - 4921 + 4993 ], "match_map": [ - 2500 + 2617 ], "match_map_id": [ - 4921 + 4993 ], "player": [ - 3798 + 3915 ], "shots": [ - 38 + 40 ], "shots_spotted": [ - 38 + 40 ], "steam_id": [ - 180 + 252 ], "weapon_class": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "player_aim_weapon_stats_max_fields": { "first_bullet_hits": [ - 38 + 40 ], "first_bullet_shots": [ - 38 + 40 ], "hits": [ - 38 + 40 ], "hits_spotted": [ - 38 + 40 ], "match_id": [ - 4921 + 4993 ], "match_map_id": [ - 4921 + 4993 ], "shots": [ - 38 + 40 ], "shots_spotted": [ - 38 + 40 ], "steam_id": [ - 180 + 252 ], "weapon_class": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "player_aim_weapon_stats_max_order_by": { "first_bullet_hits": [ - 2829 + 2946 ], "first_bullet_shots": [ - 2829 + 2946 ], "hits": [ - 2829 + 2946 ], "hits_spotted": [ - 2829 + 2946 ], "match_id": [ - 2829 + 2946 ], "match_map_id": [ - 2829 + 2946 ], "shots": [ - 2829 + 2946 ], "shots_spotted": [ - 2829 + 2946 ], "steam_id": [ - 2829 + 2946 ], "weapon_class": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "player_aim_weapon_stats_min_fields": { "first_bullet_hits": [ - 38 + 40 ], "first_bullet_shots": [ - 38 + 40 ], "hits": [ - 38 + 40 ], "hits_spotted": [ - 38 + 40 ], "match_id": [ - 4921 + 4993 ], "match_map_id": [ - 4921 + 4993 ], "shots": [ - 38 + 40 ], "shots_spotted": [ - 38 + 40 ], "steam_id": [ - 180 + 252 ], "weapon_class": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "player_aim_weapon_stats_min_order_by": { "first_bullet_hits": [ - 2829 + 2946 ], "first_bullet_shots": [ - 2829 + 2946 ], "hits": [ - 2829 + 2946 ], "hits_spotted": [ - 2829 + 2946 ], "match_id": [ - 2829 + 2946 ], "match_map_id": [ - 2829 + 2946 ], "shots": [ - 2829 + 2946 ], "shots_spotted": [ - 2829 + 2946 ], "steam_id": [ - 2829 + 2946 ], "weapon_class": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "player_aim_weapon_stats_mutation_response": { "affected_rows": [ - 38 + 40 ], "returning": [ - 2926 + 3043 ], "__typename": [ - 78 + 80 ] }, "player_aim_weapon_stats_on_conflict": { "constraint": [ - 2936 + 3053 ], "update_columns": [ - 2959 + 3076 ], "where": [ - 2935 + 3052 ], "__typename": [ - 78 + 80 ] }, "player_aim_weapon_stats_order_by": { "first_bullet_hits": [ - 2829 + 2946 ], "first_bullet_shots": [ - 2829 + 2946 ], "hits": [ - 2829 + 2946 ], "hits_spotted": [ - 2829 + 2946 ], "match": [ - 2664 + 2781 ], "match_id": [ - 2829 + 2946 ], "match_map": [ - 2502 + 2619 ], "match_map_id": [ - 2829 + 2946 ], "player": [ - 3800 + 3917 ], "shots": [ - 2829 + 2946 ], "shots_spotted": [ - 2829 + 2946 ], "steam_id": [ - 2829 + 2946 ], "weapon_class": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "player_aim_weapon_stats_pk_columns_input": { "match_map_id": [ - 4921 + 4993 ], "steam_id": [ - 180 + 252 ], "weapon_class": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "player_aim_weapon_stats_select_column": {}, "player_aim_weapon_stats_set_input": { "first_bullet_hits": [ - 38 + 40 ], "first_bullet_shots": [ - 38 + 40 ], "hits": [ - 38 + 40 ], "hits_spotted": [ - 38 + 40 ], "match_id": [ - 4921 + 4993 ], "match_map_id": [ - 4921 + 4993 ], "shots": [ - 38 + 40 ], "shots_spotted": [ - 38 + 40 ], "steam_id": [ - 180 + 252 ], "weapon_class": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "player_aim_weapon_stats_stddev_fields": { "first_bullet_hits": [ - 29 + 31 ], "first_bullet_shots": [ - 29 + 31 ], "hits": [ - 29 + 31 ], "hits_spotted": [ - 29 + 31 ], "shots": [ - 29 + 31 ], "shots_spotted": [ - 29 + 31 ], "steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "player_aim_weapon_stats_stddev_order_by": { "first_bullet_hits": [ - 2829 + 2946 ], "first_bullet_shots": [ - 2829 + 2946 ], "hits": [ - 2829 + 2946 ], "hits_spotted": [ - 2829 + 2946 ], "shots": [ - 2829 + 2946 ], "shots_spotted": [ - 2829 + 2946 ], "steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "player_aim_weapon_stats_stddev_pop_fields": { "first_bullet_hits": [ - 29 + 31 ], "first_bullet_shots": [ - 29 + 31 ], "hits": [ - 29 + 31 ], "hits_spotted": [ - 29 + 31 ], "shots": [ - 29 + 31 ], "shots_spotted": [ - 29 + 31 ], "steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "player_aim_weapon_stats_stddev_pop_order_by": { "first_bullet_hits": [ - 2829 + 2946 ], "first_bullet_shots": [ - 2829 + 2946 ], "hits": [ - 2829 + 2946 ], "hits_spotted": [ - 2829 + 2946 ], "shots": [ - 2829 + 2946 ], "shots_spotted": [ - 2829 + 2946 ], "steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "player_aim_weapon_stats_stddev_samp_fields": { "first_bullet_hits": [ - 29 + 31 ], "first_bullet_shots": [ - 29 + 31 ], "hits": [ - 29 + 31 ], "hits_spotted": [ - 29 + 31 ], "shots": [ - 29 + 31 ], "shots_spotted": [ - 29 + 31 ], "steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "player_aim_weapon_stats_stddev_samp_order_by": { "first_bullet_hits": [ - 2829 + 2946 ], "first_bullet_shots": [ - 2829 + 2946 ], "hits": [ - 2829 + 2946 ], "hits_spotted": [ - 2829 + 2946 ], "shots": [ - 2829 + 2946 ], "shots_spotted": [ - 2829 + 2946 ], "steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "player_aim_weapon_stats_stream_cursor_input": { "initial_value": [ - 2956 + 3073 ], "ordering": [ - 236 + 308 ], "__typename": [ - 78 + 80 ] }, "player_aim_weapon_stats_stream_cursor_value_input": { "first_bullet_hits": [ - 38 + 40 ], "first_bullet_shots": [ - 38 + 40 ], "hits": [ - 38 + 40 ], "hits_spotted": [ - 38 + 40 ], "match_id": [ - 4921 + 4993 ], "match_map_id": [ - 4921 + 4993 ], "shots": [ - 38 + 40 ], "shots_spotted": [ - 38 + 40 ], "steam_id": [ - 180 + 252 ], "weapon_class": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "player_aim_weapon_stats_sum_fields": { "first_bullet_hits": [ - 38 + 40 ], "first_bullet_shots": [ - 38 + 40 ], "hits": [ - 38 + 40 ], "hits_spotted": [ - 38 + 40 ], "shots": [ - 38 + 40 ], "shots_spotted": [ - 38 + 40 ], "steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "player_aim_weapon_stats_sum_order_by": { "first_bullet_hits": [ - 2829 + 2946 ], "first_bullet_shots": [ - 2829 + 2946 ], "hits": [ - 2829 + 2946 ], "hits_spotted": [ - 2829 + 2946 ], "shots": [ - 2829 + 2946 ], "shots_spotted": [ - 2829 + 2946 ], "steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "player_aim_weapon_stats_update_column": {}, "player_aim_weapon_stats_updates": { "_inc": [ - 2937 + 3054 ], "_set": [ - 2948 + 3065 ], "where": [ - 2935 + 3052 ], "__typename": [ - 78 + 80 ] }, "player_aim_weapon_stats_var_pop_fields": { "first_bullet_hits": [ - 29 + 31 ], "first_bullet_shots": [ - 29 + 31 ], "hits": [ - 29 + 31 ], "hits_spotted": [ - 29 + 31 ], "shots": [ - 29 + 31 ], "shots_spotted": [ - 29 + 31 ], "steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "player_aim_weapon_stats_var_pop_order_by": { "first_bullet_hits": [ - 2829 + 2946 ], "first_bullet_shots": [ - 2829 + 2946 ], "hits": [ - 2829 + 2946 ], "hits_spotted": [ - 2829 + 2946 ], "shots": [ - 2829 + 2946 ], "shots_spotted": [ - 2829 + 2946 ], "steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "player_aim_weapon_stats_var_samp_fields": { "first_bullet_hits": [ - 29 + 31 ], "first_bullet_shots": [ - 29 + 31 ], "hits": [ - 29 + 31 ], "hits_spotted": [ - 29 + 31 ], "shots": [ - 29 + 31 ], "shots_spotted": [ - 29 + 31 ], "steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "player_aim_weapon_stats_var_samp_order_by": { "first_bullet_hits": [ - 2829 + 2946 ], "first_bullet_shots": [ - 2829 + 2946 ], "hits": [ - 2829 + 2946 ], "hits_spotted": [ - 2829 + 2946 ], "shots": [ - 2829 + 2946 ], "shots_spotted": [ - 2829 + 2946 ], "steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "player_aim_weapon_stats_variance_fields": { "first_bullet_hits": [ - 29 + 31 ], "first_bullet_shots": [ - 29 + 31 ], "hits": [ - 29 + 31 ], "hits_spotted": [ - 29 + 31 ], "shots": [ - 29 + 31 ], "shots_spotted": [ - 29 + 31 ], "steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "player_aim_weapon_stats_variance_order_by": { "first_bullet_hits": [ - 2829 + 2946 ], "first_bullet_shots": [ - 2829 + 2946 ], "hits": [ - 2829 + 2946 ], "hits_spotted": [ - 2829 + 2946 ], "shots": [ - 2829 + 2946 ], "shots_spotted": [ - 2829 + 2946 ], "steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "player_assists": { "attacked_player": [ - 3787 + 3904 ], "attacked_steam_id": [ - 180 + 252 ], "attacked_team": [ - 78 + 80 ], "attacker_steam_id": [ - 180 + 252 ], "attacker_team": [ - 78 + 80 ], "deleted_at": [ - 4376 + 4493 ], "flash": [ - 3 + 5 ], "is_team_assist": [ - 3 + 5 ], "match": [ - 2644 + 2761 ], "match_id": [ - 4921 + 4993 ], "match_map": [ - 2482 + 2599 ], "match_map_id": [ - 4921 + 4993 ], "player": [ - 3787 + 3904 ], "round": [ - 38 + 40 ], "time": [ - 4376 + 4493 ], "__typename": [ - 78 + 80 ] }, "player_assists_aggregate": { "aggregate": [ - 2973 + 3090 ], "nodes": [ - 2967 + 3084 ], "__typename": [ - 78 + 80 ] }, "player_assists_aggregate_bool_exp": { "bool_and": [ - 2970 + 3087 ], "bool_or": [ - 2971 + 3088 ], "count": [ - 2972 + 3089 ], "__typename": [ - 78 + 80 ] }, "player_assists_aggregate_bool_exp_bool_and": { "arguments": [ - 2991 + 3108 ], "distinct": [ - 3 + 5 ], "filter": [ - 2978 + 3095 ], "predicate": [ - 4 + 6 ], "__typename": [ - 78 + 80 ] }, "player_assists_aggregate_bool_exp_bool_or": { "arguments": [ - 2992 + 3109 ], "distinct": [ - 3 + 5 ], "filter": [ - 2978 + 3095 ], "predicate": [ - 4 + 6 ], "__typename": [ - 78 + 80 ] }, "player_assists_aggregate_bool_exp_count": { "arguments": [ - 2990 + 3107 ], "distinct": [ - 3 + 5 ], "filter": [ - 2978 + 3095 ], "predicate": [ - 39 + 41 ], "__typename": [ - 78 + 80 ] }, "player_assists_aggregate_fields": { "avg": [ - 2976 + 3093 ], "count": [ - 38, + 40, { "columns": [ - 2990, + 3107, "[player_assists_select_column!]" ], "distinct": [ - 3 + 5 ] } ], "max": [ - 2982 + 3099 ], "min": [ - 2984 + 3101 ], "stddev": [ - 2994 + 3111 ], "stddev_pop": [ - 2996 + 3113 ], "stddev_samp": [ - 2998 + 3115 ], "sum": [ - 3002 + 3119 ], "var_pop": [ - 3006 + 3123 ], "var_samp": [ - 3008 + 3125 ], "variance": [ - 3010 + 3127 ], "__typename": [ - 78 + 80 ] }, "player_assists_aggregate_order_by": { "avg": [ - 2977 + 3094 ], "count": [ - 2829 + 2946 ], "max": [ - 2983 + 3100 ], "min": [ - 2985 + 3102 ], "stddev": [ - 2995 + 3112 ], "stddev_pop": [ - 2997 + 3114 ], "stddev_samp": [ - 2999 + 3116 ], "sum": [ - 3003 + 3120 ], "var_pop": [ - 3007 + 3124 ], "var_samp": [ - 3009 + 3126 ], "variance": [ - 3011 + 3128 ], "__typename": [ - 78 + 80 ] }, "player_assists_arr_rel_insert_input": { "data": [ - 2981 + 3098 ], "on_conflict": [ - 2987 + 3104 ], "__typename": [ - 78 + 80 ] }, "player_assists_avg_fields": { "attacked_steam_id": [ - 29 + 31 ], "attacker_steam_id": [ - 29 + 31 ], "round": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "player_assists_avg_order_by": { "attacked_steam_id": [ - 2829 + 2946 ], "attacker_steam_id": [ - 2829 + 2946 ], "round": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "player_assists_bool_exp": { "_and": [ - 2978 + 3095 ], "_not": [ - 2978 + 3095 ], "_or": [ - 2978 + 3095 ], "attacked_player": [ - 3791 + 3908 ], "attacked_steam_id": [ - 182 + 254 ], "attacked_team": [ - 80 + 82 ], "attacker_steam_id": [ - 182 + 254 ], "attacker_team": [ - 80 + 82 ], "deleted_at": [ - 4377 + 4494 ], "flash": [ - 4 + 6 ], "is_team_assist": [ - 4 + 6 ], "match": [ - 2653 + 2770 ], "match_id": [ - 4923 + 4995 ], "match_map": [ - 2491 + 2608 ], "match_map_id": [ - 4923 + 4995 ], "player": [ - 3791 + 3908 ], "round": [ - 39 + 41 ], "time": [ - 4377 + 4494 ], "__typename": [ - 78 + 80 ] }, "player_assists_constraint": {}, "player_assists_inc_input": { "attacked_steam_id": [ - 180 + 252 ], "attacker_steam_id": [ - 180 + 252 ], "round": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "player_assists_insert_input": { "attacked_player": [ - 3798 + 3915 ], "attacked_steam_id": [ - 180 + 252 ], "attacked_team": [ - 78 + 80 ], "attacker_steam_id": [ - 180 + 252 ], "attacker_team": [ - 78 + 80 ], "deleted_at": [ - 4376 + 4493 ], "flash": [ - 3 + 5 ], "match": [ - 2662 + 2779 ], "match_id": [ - 4921 + 4993 ], "match_map": [ - 2500 + 2617 ], "match_map_id": [ - 4921 + 4993 ], "player": [ - 3798 + 3915 ], "round": [ - 38 + 40 ], "time": [ - 4376 + 4493 ], "__typename": [ - 78 + 80 ] }, "player_assists_max_fields": { "attacked_steam_id": [ - 180 + 252 ], "attacked_team": [ - 78 + 80 ], "attacker_steam_id": [ - 180 + 252 ], "attacker_team": [ - 78 + 80 ], "deleted_at": [ - 4376 + 4493 ], "match_id": [ - 4921 + 4993 ], "match_map_id": [ - 4921 + 4993 ], "round": [ - 38 + 40 ], "time": [ - 4376 + 4493 ], "__typename": [ - 78 + 80 ] }, "player_assists_max_order_by": { "attacked_steam_id": [ - 2829 + 2946 ], "attacked_team": [ - 2829 + 2946 ], "attacker_steam_id": [ - 2829 + 2946 ], "attacker_team": [ - 2829 + 2946 ], "deleted_at": [ - 2829 + 2946 ], "match_id": [ - 2829 + 2946 ], "match_map_id": [ - 2829 + 2946 ], "round": [ - 2829 + 2946 ], "time": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "player_assists_min_fields": { "attacked_steam_id": [ - 180 + 252 ], "attacked_team": [ - 78 + 80 ], "attacker_steam_id": [ - 180 + 252 ], "attacker_team": [ - 78 + 80 ], "deleted_at": [ - 4376 + 4493 ], "match_id": [ - 4921 + 4993 ], "match_map_id": [ - 4921 + 4993 ], "round": [ - 38 + 40 ], "time": [ - 4376 + 4493 ], "__typename": [ - 78 + 80 ] }, "player_assists_min_order_by": { "attacked_steam_id": [ - 2829 + 2946 ], "attacked_team": [ - 2829 + 2946 ], "attacker_steam_id": [ - 2829 + 2946 ], "attacker_team": [ - 2829 + 2946 ], "deleted_at": [ - 2829 + 2946 ], "match_id": [ - 2829 + 2946 ], "match_map_id": [ - 2829 + 2946 ], "round": [ - 2829 + 2946 ], "time": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "player_assists_mutation_response": { "affected_rows": [ - 38 + 40 ], "returning": [ - 2967 + 3084 ], "__typename": [ - 78 + 80 ] }, "player_assists_on_conflict": { "constraint": [ - 2979 + 3096 ], "update_columns": [ - 3004 + 3121 ], "where": [ - 2978 + 3095 ], "__typename": [ - 78 + 80 ] }, "player_assists_order_by": { "attacked_player": [ - 3800 + 3917 ], "attacked_steam_id": [ - 2829 + 2946 ], "attacked_team": [ - 2829 + 2946 ], "attacker_steam_id": [ - 2829 + 2946 ], "attacker_team": [ - 2829 + 2946 ], "deleted_at": [ - 2829 + 2946 ], "flash": [ - 2829 + 2946 ], "is_team_assist": [ - 2829 + 2946 ], "match": [ - 2664 + 2781 ], "match_id": [ - 2829 + 2946 ], "match_map": [ - 2502 + 2619 ], "match_map_id": [ - 2829 + 2946 ], "player": [ - 3800 + 3917 ], "round": [ - 2829 + 2946 ], "time": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "player_assists_pk_columns_input": { "attacked_steam_id": [ - 180 + 252 ], "attacker_steam_id": [ - 180 + 252 ], "match_map_id": [ - 4921 + 4993 ], "time": [ - 4376 + 4493 ], "__typename": [ - 78 + 80 ] }, "player_assists_select_column": {}, @@ -57867,5179 +60094,5179 @@ export default { "player_assists_select_column_player_assists_aggregate_bool_exp_bool_or_arguments_columns": {}, "player_assists_set_input": { "attacked_steam_id": [ - 180 + 252 ], "attacked_team": [ - 78 + 80 ], "attacker_steam_id": [ - 180 + 252 ], "attacker_team": [ - 78 + 80 ], "deleted_at": [ - 4376 + 4493 ], "flash": [ - 3 + 5 ], "match_id": [ - 4921 + 4993 ], "match_map_id": [ - 4921 + 4993 ], "round": [ - 38 + 40 ], "time": [ - 4376 + 4493 ], "__typename": [ - 78 + 80 ] }, "player_assists_stddev_fields": { "attacked_steam_id": [ - 29 + 31 ], "attacker_steam_id": [ - 29 + 31 ], "round": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "player_assists_stddev_order_by": { "attacked_steam_id": [ - 2829 + 2946 ], "attacker_steam_id": [ - 2829 + 2946 ], "round": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "player_assists_stddev_pop_fields": { "attacked_steam_id": [ - 29 + 31 ], "attacker_steam_id": [ - 29 + 31 ], "round": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "player_assists_stddev_pop_order_by": { "attacked_steam_id": [ - 2829 + 2946 ], "attacker_steam_id": [ - 2829 + 2946 ], "round": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "player_assists_stddev_samp_fields": { "attacked_steam_id": [ - 29 + 31 ], "attacker_steam_id": [ - 29 + 31 ], "round": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "player_assists_stddev_samp_order_by": { "attacked_steam_id": [ - 2829 + 2946 ], "attacker_steam_id": [ - 2829 + 2946 ], "round": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "player_assists_stream_cursor_input": { "initial_value": [ - 3001 + 3118 ], "ordering": [ - 236 + 308 ], "__typename": [ - 78 + 80 ] }, "player_assists_stream_cursor_value_input": { "attacked_steam_id": [ - 180 + 252 ], "attacked_team": [ - 78 + 80 ], "attacker_steam_id": [ - 180 + 252 ], "attacker_team": [ - 78 + 80 ], "deleted_at": [ - 4376 + 4493 ], "flash": [ - 3 + 5 ], "match_id": [ - 4921 + 4993 ], "match_map_id": [ - 4921 + 4993 ], "round": [ - 38 + 40 ], "time": [ - 4376 + 4493 ], "__typename": [ - 78 + 80 ] }, "player_assists_sum_fields": { "attacked_steam_id": [ - 180 + 252 ], "attacker_steam_id": [ - 180 + 252 ], "round": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "player_assists_sum_order_by": { "attacked_steam_id": [ - 2829 + 2946 ], "attacker_steam_id": [ - 2829 + 2946 ], "round": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "player_assists_update_column": {}, "player_assists_updates": { "_inc": [ - 2980 + 3097 ], "_set": [ - 2993 + 3110 ], "where": [ - 2978 + 3095 ], "__typename": [ - 78 + 80 ] }, "player_assists_var_pop_fields": { "attacked_steam_id": [ - 29 + 31 ], "attacker_steam_id": [ - 29 + 31 ], "round": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "player_assists_var_pop_order_by": { "attacked_steam_id": [ - 2829 + 2946 ], "attacker_steam_id": [ - 2829 + 2946 ], "round": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "player_assists_var_samp_fields": { "attacked_steam_id": [ - 29 + 31 ], "attacker_steam_id": [ - 29 + 31 ], "round": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "player_assists_var_samp_order_by": { "attacked_steam_id": [ - 2829 + 2946 ], "attacker_steam_id": [ - 2829 + 2946 ], "round": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "player_assists_variance_fields": { "attacked_steam_id": [ - 29 + 31 ], "attacker_steam_id": [ - 29 + 31 ], "round": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "player_assists_variance_order_by": { "attacked_steam_id": [ - 2829 + 2946 ], "attacker_steam_id": [ - 2829 + 2946 ], "round": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "player_career_stats_v": { "accuracy": [ - 2827 + 2944 ], "accuracy_spotted": [ - 2827 + 2944 ], "counter_strafe_pct": [ - 2827 + 2944 ], "crosshair_deg": [ - 2827 + 2944 ], "enemy_blind_pr": [ - 2827 + 2944 ], "flash_assists_pr": [ - 2827 + 2944 ], "hs_pct": [ - 2827 + 2944 ], "kast_pct": [ - 2827 + 2944 ], "maps": [ - 38 + 40 ], "premier_rank": [ - 38 + 40 ], "rounds": [ - 38 + 40 ], "steam_id": [ - 180 + 252 ], "survival_pct": [ - 2827 + 2944 ], "time_to_damage_s": [ - 2827 + 2944 ], "traded_death_pct": [ - 2827 + 2944 ], "util_efficiency": [ - 2827 + 2944 ], "__typename": [ - 78 + 80 ] }, "player_career_stats_v_aggregate": { "aggregate": [ - 3014 + 3131 ], "nodes": [ - 3012 + 3129 ], "__typename": [ - 78 + 80 ] }, "player_career_stats_v_aggregate_fields": { "avg": [ - 3015 + 3132 ], "count": [ - 38, + 40, { "columns": [ - 3020, + 3137, "[player_career_stats_v_select_column!]" ], "distinct": [ - 3 + 5 ] } ], "max": [ - 3017 + 3134 ], "min": [ - 3018 + 3135 ], "stddev": [ - 3021 + 3138 ], "stddev_pop": [ - 3022 + 3139 ], "stddev_samp": [ - 3023 + 3140 ], "sum": [ - 3026 + 3143 ], "var_pop": [ - 3027 + 3144 ], "var_samp": [ - 3028 + 3145 ], "variance": [ - 3029 + 3146 ], "__typename": [ - 78 + 80 ] }, "player_career_stats_v_avg_fields": { "accuracy": [ - 29 + 31 ], "accuracy_spotted": [ - 29 + 31 ], "counter_strafe_pct": [ - 29 + 31 ], "crosshair_deg": [ - 29 + 31 ], "enemy_blind_pr": [ - 29 + 31 ], "flash_assists_pr": [ - 29 + 31 ], "hs_pct": [ - 29 + 31 ], "kast_pct": [ - 29 + 31 ], "maps": [ - 29 + 31 ], "premier_rank": [ - 29 + 31 ], "rounds": [ - 29 + 31 ], "steam_id": [ - 29 + 31 ], "survival_pct": [ - 29 + 31 ], "time_to_damage_s": [ - 29 + 31 ], "traded_death_pct": [ - 29 + 31 ], "util_efficiency": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "player_career_stats_v_bool_exp": { "_and": [ - 3016 + 3133 ], "_not": [ - 3016 + 3133 ], "_or": [ - 3016 + 3133 ], "accuracy": [ - 2828 + 2945 ], "accuracy_spotted": [ - 2828 + 2945 ], "counter_strafe_pct": [ - 2828 + 2945 ], "crosshair_deg": [ - 2828 + 2945 ], "enemy_blind_pr": [ - 2828 + 2945 ], "flash_assists_pr": [ - 2828 + 2945 ], "hs_pct": [ - 2828 + 2945 ], "kast_pct": [ - 2828 + 2945 ], "maps": [ - 39 + 41 ], "premier_rank": [ - 39 + 41 ], "rounds": [ - 39 + 41 ], "steam_id": [ - 182 + 254 ], "survival_pct": [ - 2828 + 2945 ], "time_to_damage_s": [ - 2828 + 2945 ], "traded_death_pct": [ - 2828 + 2945 ], "util_efficiency": [ - 2828 + 2945 ], "__typename": [ - 78 + 80 ] }, "player_career_stats_v_max_fields": { "accuracy": [ - 2827 + 2944 ], "accuracy_spotted": [ - 2827 + 2944 ], "counter_strafe_pct": [ - 2827 + 2944 ], "crosshair_deg": [ - 2827 + 2944 ], "enemy_blind_pr": [ - 2827 + 2944 ], "flash_assists_pr": [ - 2827 + 2944 ], "hs_pct": [ - 2827 + 2944 ], "kast_pct": [ - 2827 + 2944 ], "maps": [ - 38 + 40 ], "premier_rank": [ - 38 + 40 ], "rounds": [ - 38 + 40 ], "steam_id": [ - 180 + 252 ], "survival_pct": [ - 2827 + 2944 ], "time_to_damage_s": [ - 2827 + 2944 ], "traded_death_pct": [ - 2827 + 2944 ], "util_efficiency": [ - 2827 + 2944 ], "__typename": [ - 78 + 80 ] }, "player_career_stats_v_min_fields": { "accuracy": [ - 2827 + 2944 ], "accuracy_spotted": [ - 2827 + 2944 ], "counter_strafe_pct": [ - 2827 + 2944 ], "crosshair_deg": [ - 2827 + 2944 ], "enemy_blind_pr": [ - 2827 + 2944 ], "flash_assists_pr": [ - 2827 + 2944 ], "hs_pct": [ - 2827 + 2944 ], "kast_pct": [ - 2827 + 2944 ], "maps": [ - 38 + 40 ], "premier_rank": [ - 38 + 40 ], "rounds": [ - 38 + 40 ], "steam_id": [ - 180 + 252 ], "survival_pct": [ - 2827 + 2944 ], "time_to_damage_s": [ - 2827 + 2944 ], "traded_death_pct": [ - 2827 + 2944 ], "util_efficiency": [ - 2827 + 2944 ], "__typename": [ - 78 + 80 ] }, "player_career_stats_v_order_by": { "accuracy": [ - 2829 + 2946 ], "accuracy_spotted": [ - 2829 + 2946 ], "counter_strafe_pct": [ - 2829 + 2946 ], "crosshair_deg": [ - 2829 + 2946 ], "enemy_blind_pr": [ - 2829 + 2946 ], "flash_assists_pr": [ - 2829 + 2946 ], "hs_pct": [ - 2829 + 2946 ], "kast_pct": [ - 2829 + 2946 ], "maps": [ - 2829 + 2946 ], "premier_rank": [ - 2829 + 2946 ], "rounds": [ - 2829 + 2946 ], "steam_id": [ - 2829 + 2946 ], "survival_pct": [ - 2829 + 2946 ], "time_to_damage_s": [ - 2829 + 2946 ], "traded_death_pct": [ - 2829 + 2946 ], "util_efficiency": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "player_career_stats_v_select_column": {}, "player_career_stats_v_stddev_fields": { "accuracy": [ - 29 + 31 ], "accuracy_spotted": [ - 29 + 31 ], "counter_strafe_pct": [ - 29 + 31 ], "crosshair_deg": [ - 29 + 31 ], "enemy_blind_pr": [ - 29 + 31 ], "flash_assists_pr": [ - 29 + 31 ], "hs_pct": [ - 29 + 31 ], "kast_pct": [ - 29 + 31 ], "maps": [ - 29 + 31 ], "premier_rank": [ - 29 + 31 ], "rounds": [ - 29 + 31 ], "steam_id": [ - 29 + 31 ], "survival_pct": [ - 29 + 31 ], "time_to_damage_s": [ - 29 + 31 ], "traded_death_pct": [ - 29 + 31 ], "util_efficiency": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "player_career_stats_v_stddev_pop_fields": { "accuracy": [ - 29 + 31 ], "accuracy_spotted": [ - 29 + 31 ], "counter_strafe_pct": [ - 29 + 31 ], "crosshair_deg": [ - 29 + 31 ], "enemy_blind_pr": [ - 29 + 31 ], "flash_assists_pr": [ - 29 + 31 ], "hs_pct": [ - 29 + 31 ], "kast_pct": [ - 29 + 31 ], "maps": [ - 29 + 31 ], "premier_rank": [ - 29 + 31 ], "rounds": [ - 29 + 31 ], "steam_id": [ - 29 + 31 ], "survival_pct": [ - 29 + 31 ], "time_to_damage_s": [ - 29 + 31 ], "traded_death_pct": [ - 29 + 31 ], "util_efficiency": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "player_career_stats_v_stddev_samp_fields": { "accuracy": [ - 29 + 31 ], "accuracy_spotted": [ - 29 + 31 ], "counter_strafe_pct": [ - 29 + 31 ], "crosshair_deg": [ - 29 + 31 ], "enemy_blind_pr": [ - 29 + 31 ], "flash_assists_pr": [ - 29 + 31 ], "hs_pct": [ - 29 + 31 ], "kast_pct": [ - 29 + 31 ], "maps": [ - 29 + 31 ], "premier_rank": [ - 29 + 31 ], "rounds": [ - 29 + 31 ], "steam_id": [ - 29 + 31 ], "survival_pct": [ - 29 + 31 ], "time_to_damage_s": [ - 29 + 31 ], "traded_death_pct": [ - 29 + 31 ], "util_efficiency": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "player_career_stats_v_stream_cursor_input": { "initial_value": [ - 3025 + 3142 ], "ordering": [ - 236 + 308 ], "__typename": [ - 78 + 80 ] }, "player_career_stats_v_stream_cursor_value_input": { "accuracy": [ - 2827 + 2944 ], "accuracy_spotted": [ - 2827 + 2944 ], "counter_strafe_pct": [ - 2827 + 2944 ], "crosshair_deg": [ - 2827 + 2944 ], "enemy_blind_pr": [ - 2827 + 2944 ], "flash_assists_pr": [ - 2827 + 2944 ], "hs_pct": [ - 2827 + 2944 ], "kast_pct": [ - 2827 + 2944 ], "maps": [ - 38 + 40 ], "premier_rank": [ - 38 + 40 ], "rounds": [ - 38 + 40 ], "steam_id": [ - 180 + 252 ], "survival_pct": [ - 2827 + 2944 ], "time_to_damage_s": [ - 2827 + 2944 ], "traded_death_pct": [ - 2827 + 2944 ], "util_efficiency": [ - 2827 + 2944 ], "__typename": [ - 78 + 80 ] }, "player_career_stats_v_sum_fields": { "accuracy": [ - 2827 + 2944 ], "accuracy_spotted": [ - 2827 + 2944 ], "counter_strafe_pct": [ - 2827 + 2944 ], "crosshair_deg": [ - 2827 + 2944 ], "enemy_blind_pr": [ - 2827 + 2944 ], "flash_assists_pr": [ - 2827 + 2944 ], "hs_pct": [ - 2827 + 2944 ], "kast_pct": [ - 2827 + 2944 ], "maps": [ - 38 + 40 ], "premier_rank": [ - 38 + 40 ], "rounds": [ - 38 + 40 ], "steam_id": [ - 180 + 252 ], "survival_pct": [ - 2827 + 2944 ], "time_to_damage_s": [ - 2827 + 2944 ], "traded_death_pct": [ - 2827 + 2944 ], "util_efficiency": [ - 2827 + 2944 ], "__typename": [ - 78 + 80 ] }, "player_career_stats_v_var_pop_fields": { "accuracy": [ - 29 + 31 ], "accuracy_spotted": [ - 29 + 31 ], "counter_strafe_pct": [ - 29 + 31 ], "crosshair_deg": [ - 29 + 31 ], "enemy_blind_pr": [ - 29 + 31 ], "flash_assists_pr": [ - 29 + 31 ], "hs_pct": [ - 29 + 31 ], "kast_pct": [ - 29 + 31 ], "maps": [ - 29 + 31 ], "premier_rank": [ - 29 + 31 ], "rounds": [ - 29 + 31 ], "steam_id": [ - 29 + 31 ], "survival_pct": [ - 29 + 31 ], "time_to_damage_s": [ - 29 + 31 ], "traded_death_pct": [ - 29 + 31 ], "util_efficiency": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "player_career_stats_v_var_samp_fields": { "accuracy": [ - 29 + 31 ], "accuracy_spotted": [ - 29 + 31 ], "counter_strafe_pct": [ - 29 + 31 ], "crosshair_deg": [ - 29 + 31 ], "enemy_blind_pr": [ - 29 + 31 ], "flash_assists_pr": [ - 29 + 31 ], "hs_pct": [ - 29 + 31 ], "kast_pct": [ - 29 + 31 ], "maps": [ - 29 + 31 ], "premier_rank": [ - 29 + 31 ], "rounds": [ - 29 + 31 ], "steam_id": [ - 29 + 31 ], "survival_pct": [ - 29 + 31 ], "time_to_damage_s": [ - 29 + 31 ], "traded_death_pct": [ - 29 + 31 ], "util_efficiency": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "player_career_stats_v_variance_fields": { "accuracy": [ - 29 + 31 ], "accuracy_spotted": [ - 29 + 31 ], "counter_strafe_pct": [ - 29 + 31 ], "crosshair_deg": [ - 29 + 31 ], "enemy_blind_pr": [ - 29 + 31 ], "flash_assists_pr": [ - 29 + 31 ], "hs_pct": [ - 29 + 31 ], "kast_pct": [ - 29 + 31 ], "maps": [ - 29 + 31 ], "premier_rank": [ - 29 + 31 ], "rounds": [ - 29 + 31 ], "steam_id": [ - 29 + 31 ], "survival_pct": [ - 29 + 31 ], "time_to_damage_s": [ - 29 + 31 ], "traded_death_pct": [ - 29 + 31 ], "util_efficiency": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "player_damages": { "armor": [ - 38 + 40 ], "attacked_location": [ - 78 + 80 ], "attacked_location_coordinates": [ - 78 + 80 ], "attacked_player": [ - 3787 + 3904 ], "attacked_steam_id": [ - 180 + 252 ], "attacked_team": [ - 78 + 80 ], "attacker_location": [ - 78 + 80 ], "attacker_location_coordinates": [ - 78 + 80 ], "attacker_steam_id": [ - 180 + 252 ], "attacker_team": [ - 78 + 80 ], "damage": [ - 38 + 40 ], "damage_armor": [ - 38 + 40 ], "deleted_at": [ - 4376 + 4493 ], "health": [ - 38 + 40 ], "hitgroup": [ - 78 + 80 ], "id": [ - 4921 + 4993 ], "match": [ - 2644 + 2761 ], "match_id": [ - 4921 + 4993 ], "match_map": [ - 2482 + 2599 ], "match_map_id": [ - 4921 + 4993 ], "player": [ - 3787 + 3904 ], "round": [ - 2827 + 2944 ], "team_damage": [ - 3 + 5 ], "time": [ - 4376 + 4493 ], "with": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "player_damages_aggregate": { "aggregate": [ - 3034 + 3151 ], "nodes": [ - 3030 + 3147 ], "__typename": [ - 78 + 80 ] }, "player_damages_aggregate_bool_exp": { "count": [ - 3033 + 3150 ], "__typename": [ - 78 + 80 ] }, "player_damages_aggregate_bool_exp_count": { "arguments": [ - 3051 + 3168 ], "distinct": [ - 3 + 5 ], "filter": [ - 3039 + 3156 ], "predicate": [ - 39 + 41 ], "__typename": [ - 78 + 80 ] }, "player_damages_aggregate_fields": { "avg": [ - 3037 + 3154 ], "count": [ - 38, + 40, { "columns": [ - 3051, + 3168, "[player_damages_select_column!]" ], "distinct": [ - 3 + 5 ] } ], "max": [ - 3043 + 3160 ], "min": [ - 3045 + 3162 ], "stddev": [ - 3053 + 3170 ], "stddev_pop": [ - 3055 + 3172 ], "stddev_samp": [ - 3057 + 3174 ], "sum": [ - 3061 + 3178 ], "var_pop": [ - 3065 + 3182 ], "var_samp": [ - 3067 + 3184 ], "variance": [ - 3069 + 3186 ], "__typename": [ - 78 + 80 ] }, "player_damages_aggregate_order_by": { "avg": [ - 3038 + 3155 ], "count": [ - 2829 + 2946 ], "max": [ - 3044 + 3161 ], "min": [ - 3046 + 3163 ], "stddev": [ - 3054 + 3171 ], "stddev_pop": [ - 3056 + 3173 ], "stddev_samp": [ - 3058 + 3175 ], "sum": [ - 3062 + 3179 ], "var_pop": [ - 3066 + 3183 ], "var_samp": [ - 3068 + 3185 ], "variance": [ - 3070 + 3187 ], "__typename": [ - 78 + 80 ] }, "player_damages_arr_rel_insert_input": { "data": [ - 3042 + 3159 ], "on_conflict": [ - 3048 + 3165 ], "__typename": [ - 78 + 80 ] }, "player_damages_avg_fields": { "armor": [ - 29 + 31 ], "attacked_steam_id": [ - 29 + 31 ], "attacker_steam_id": [ - 29 + 31 ], "damage": [ - 29 + 31 ], "damage_armor": [ - 29 + 31 ], "health": [ - 29 + 31 ], "round": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "player_damages_avg_order_by": { "armor": [ - 2829 + 2946 ], "attacked_steam_id": [ - 2829 + 2946 ], "attacker_steam_id": [ - 2829 + 2946 ], "damage": [ - 2829 + 2946 ], "damage_armor": [ - 2829 + 2946 ], "health": [ - 2829 + 2946 ], "round": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "player_damages_bool_exp": { "_and": [ - 3039 + 3156 ], "_not": [ - 3039 + 3156 ], "_or": [ - 3039 + 3156 ], "armor": [ - 39 + 41 ], "attacked_location": [ - 80 + 82 ], "attacked_location_coordinates": [ - 80 + 82 ], "attacked_player": [ - 3791 + 3908 ], "attacked_steam_id": [ - 182 + 254 ], "attacked_team": [ - 80 + 82 ], "attacker_location": [ - 80 + 82 ], "attacker_location_coordinates": [ - 80 + 82 ], "attacker_steam_id": [ - 182 + 254 ], "attacker_team": [ - 80 + 82 ], "damage": [ - 39 + 41 ], "damage_armor": [ - 39 + 41 ], "deleted_at": [ - 4377 + 4494 ], "health": [ - 39 + 41 ], "hitgroup": [ - 80 + 82 ], "id": [ - 4923 + 4995 ], "match": [ - 2653 + 2770 ], "match_id": [ - 4923 + 4995 ], "match_map": [ - 2491 + 2608 ], "match_map_id": [ - 4923 + 4995 ], "player": [ - 3791 + 3908 ], "round": [ - 2828 + 2945 ], "team_damage": [ - 4 + 6 ], "time": [ - 4377 + 4494 ], "with": [ - 80 + 82 ], "__typename": [ - 78 + 80 ] }, "player_damages_constraint": {}, "player_damages_inc_input": { "armor": [ - 38 + 40 ], "attacked_steam_id": [ - 180 + 252 ], "attacker_steam_id": [ - 180 + 252 ], "damage": [ - 38 + 40 ], "damage_armor": [ - 38 + 40 ], "health": [ - 38 + 40 ], "round": [ - 2827 + 2944 ], "__typename": [ - 78 + 80 ] }, "player_damages_insert_input": { "armor": [ - 38 + 40 ], "attacked_location": [ - 78 + 80 ], "attacked_location_coordinates": [ - 78 + 80 ], "attacked_player": [ - 3798 + 3915 ], "attacked_steam_id": [ - 180 + 252 ], "attacked_team": [ - 78 + 80 ], "attacker_location": [ - 78 + 80 ], "attacker_location_coordinates": [ - 78 + 80 ], "attacker_steam_id": [ - 180 + 252 ], "attacker_team": [ - 78 + 80 ], "damage": [ - 38 + 40 ], "damage_armor": [ - 38 + 40 ], "deleted_at": [ - 4376 + 4493 ], "health": [ - 38 + 40 ], "hitgroup": [ - 78 + 80 ], "id": [ - 4921 + 4993 ], "match": [ - 2662 + 2779 ], "match_id": [ - 4921 + 4993 ], "match_map": [ - 2500 + 2617 ], "match_map_id": [ - 4921 + 4993 ], "player": [ - 3798 + 3915 ], "round": [ - 2827 + 2944 ], "time": [ - 4376 + 4493 ], "with": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "player_damages_max_fields": { "armor": [ - 38 + 40 ], "attacked_location": [ - 78 + 80 ], "attacked_location_coordinates": [ - 78 + 80 ], "attacked_steam_id": [ - 180 + 252 ], "attacked_team": [ - 78 + 80 ], "attacker_location": [ - 78 + 80 ], "attacker_location_coordinates": [ - 78 + 80 ], "attacker_steam_id": [ - 180 + 252 ], "attacker_team": [ - 78 + 80 ], "damage": [ - 38 + 40 ], "damage_armor": [ - 38 + 40 ], "deleted_at": [ - 4376 + 4493 ], "health": [ - 38 + 40 ], "hitgroup": [ - 78 + 80 ], "id": [ - 4921 + 4993 ], "match_id": [ - 4921 + 4993 ], "match_map_id": [ - 4921 + 4993 ], "round": [ - 2827 + 2944 ], "time": [ - 4376 + 4493 ], "with": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "player_damages_max_order_by": { "armor": [ - 2829 + 2946 ], "attacked_location": [ - 2829 + 2946 ], "attacked_location_coordinates": [ - 2829 + 2946 ], "attacked_steam_id": [ - 2829 + 2946 ], "attacked_team": [ - 2829 + 2946 ], "attacker_location": [ - 2829 + 2946 ], "attacker_location_coordinates": [ - 2829 + 2946 ], "attacker_steam_id": [ - 2829 + 2946 ], "attacker_team": [ - 2829 + 2946 ], "damage": [ - 2829 + 2946 ], "damage_armor": [ - 2829 + 2946 ], "deleted_at": [ - 2829 + 2946 ], "health": [ - 2829 + 2946 ], "hitgroup": [ - 2829 + 2946 ], "id": [ - 2829 + 2946 ], "match_id": [ - 2829 + 2946 ], "match_map_id": [ - 2829 + 2946 ], "round": [ - 2829 + 2946 ], "time": [ - 2829 + 2946 ], "with": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "player_damages_min_fields": { "armor": [ - 38 + 40 ], "attacked_location": [ - 78 + 80 ], "attacked_location_coordinates": [ - 78 + 80 ], "attacked_steam_id": [ - 180 + 252 ], "attacked_team": [ - 78 + 80 ], "attacker_location": [ - 78 + 80 ], "attacker_location_coordinates": [ - 78 + 80 ], "attacker_steam_id": [ - 180 + 252 ], "attacker_team": [ - 78 + 80 ], "damage": [ - 38 + 40 ], "damage_armor": [ - 38 + 40 ], "deleted_at": [ - 4376 + 4493 ], "health": [ - 38 + 40 ], "hitgroup": [ - 78 + 80 ], "id": [ - 4921 + 4993 ], "match_id": [ - 4921 + 4993 ], "match_map_id": [ - 4921 + 4993 ], "round": [ - 2827 + 2944 ], "time": [ - 4376 + 4493 ], "with": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "player_damages_min_order_by": { "armor": [ - 2829 + 2946 ], "attacked_location": [ - 2829 + 2946 ], "attacked_location_coordinates": [ - 2829 + 2946 ], "attacked_steam_id": [ - 2829 + 2946 ], "attacked_team": [ - 2829 + 2946 ], "attacker_location": [ - 2829 + 2946 ], "attacker_location_coordinates": [ - 2829 + 2946 ], "attacker_steam_id": [ - 2829 + 2946 ], "attacker_team": [ - 2829 + 2946 ], "damage": [ - 2829 + 2946 ], "damage_armor": [ - 2829 + 2946 ], "deleted_at": [ - 2829 + 2946 ], "health": [ - 2829 + 2946 ], "hitgroup": [ - 2829 + 2946 ], "id": [ - 2829 + 2946 ], "match_id": [ - 2829 + 2946 ], "match_map_id": [ - 2829 + 2946 ], "round": [ - 2829 + 2946 ], "time": [ - 2829 + 2946 ], "with": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "player_damages_mutation_response": { "affected_rows": [ - 38 + 40 ], "returning": [ - 3030 + 3147 ], "__typename": [ - 78 + 80 ] }, "player_damages_on_conflict": { "constraint": [ - 3040 + 3157 ], "update_columns": [ - 3063 + 3180 ], "where": [ - 3039 + 3156 ], "__typename": [ - 78 + 80 ] }, "player_damages_order_by": { "armor": [ - 2829 + 2946 ], "attacked_location": [ - 2829 + 2946 ], "attacked_location_coordinates": [ - 2829 + 2946 ], "attacked_player": [ - 3800 + 3917 ], "attacked_steam_id": [ - 2829 + 2946 ], "attacked_team": [ - 2829 + 2946 ], "attacker_location": [ - 2829 + 2946 ], "attacker_location_coordinates": [ - 2829 + 2946 ], "attacker_steam_id": [ - 2829 + 2946 ], "attacker_team": [ - 2829 + 2946 ], "damage": [ - 2829 + 2946 ], "damage_armor": [ - 2829 + 2946 ], "deleted_at": [ - 2829 + 2946 ], "health": [ - 2829 + 2946 ], "hitgroup": [ - 2829 + 2946 ], "id": [ - 2829 + 2946 ], "match": [ - 2664 + 2781 ], "match_id": [ - 2829 + 2946 ], "match_map": [ - 2502 + 2619 ], "match_map_id": [ - 2829 + 2946 ], "player": [ - 3800 + 3917 ], "round": [ - 2829 + 2946 ], "team_damage": [ - 2829 + 2946 ], "time": [ - 2829 + 2946 ], "with": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "player_damages_pk_columns_input": { "id": [ - 4921 + 4993 ], "match_map_id": [ - 4921 + 4993 ], "time": [ - 4376 + 4493 ], "__typename": [ - 78 + 80 ] }, "player_damages_select_column": {}, "player_damages_set_input": { "armor": [ - 38 + 40 ], "attacked_location": [ - 78 + 80 ], "attacked_location_coordinates": [ - 78 + 80 ], "attacked_steam_id": [ - 180 + 252 ], "attacked_team": [ - 78 + 80 ], "attacker_location": [ - 78 + 80 ], "attacker_location_coordinates": [ - 78 + 80 ], "attacker_steam_id": [ - 180 + 252 ], "attacker_team": [ - 78 + 80 ], "damage": [ - 38 + 40 ], "damage_armor": [ - 38 + 40 ], "deleted_at": [ - 4376 + 4493 ], "health": [ - 38 + 40 ], "hitgroup": [ - 78 + 80 ], "id": [ - 4921 + 4993 ], "match_id": [ - 4921 + 4993 ], "match_map_id": [ - 4921 + 4993 ], "round": [ - 2827 + 2944 ], "time": [ - 4376 + 4493 ], "with": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "player_damages_stddev_fields": { "armor": [ - 29 + 31 ], "attacked_steam_id": [ - 29 + 31 ], "attacker_steam_id": [ - 29 + 31 ], "damage": [ - 29 + 31 ], "damage_armor": [ - 29 + 31 ], "health": [ - 29 + 31 ], "round": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "player_damages_stddev_order_by": { "armor": [ - 2829 + 2946 ], "attacked_steam_id": [ - 2829 + 2946 ], "attacker_steam_id": [ - 2829 + 2946 ], "damage": [ - 2829 + 2946 ], "damage_armor": [ - 2829 + 2946 ], "health": [ - 2829 + 2946 ], "round": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "player_damages_stddev_pop_fields": { "armor": [ - 29 + 31 ], "attacked_steam_id": [ - 29 + 31 ], "attacker_steam_id": [ - 29 + 31 ], "damage": [ - 29 + 31 ], "damage_armor": [ - 29 + 31 ], "health": [ - 29 + 31 ], "round": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "player_damages_stddev_pop_order_by": { "armor": [ - 2829 + 2946 ], "attacked_steam_id": [ - 2829 + 2946 ], "attacker_steam_id": [ - 2829 + 2946 ], "damage": [ - 2829 + 2946 ], "damage_armor": [ - 2829 + 2946 ], "health": [ - 2829 + 2946 ], "round": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "player_damages_stddev_samp_fields": { "armor": [ - 29 + 31 ], "attacked_steam_id": [ - 29 + 31 ], "attacker_steam_id": [ - 29 + 31 ], "damage": [ - 29 + 31 ], "damage_armor": [ - 29 + 31 ], "health": [ - 29 + 31 ], "round": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "player_damages_stddev_samp_order_by": { "armor": [ - 2829 + 2946 ], "attacked_steam_id": [ - 2829 + 2946 ], "attacker_steam_id": [ - 2829 + 2946 ], "damage": [ - 2829 + 2946 ], "damage_armor": [ - 2829 + 2946 ], "health": [ - 2829 + 2946 ], "round": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "player_damages_stream_cursor_input": { "initial_value": [ - 3060 + 3177 ], "ordering": [ - 236 + 308 ], "__typename": [ - 78 + 80 ] }, "player_damages_stream_cursor_value_input": { "armor": [ - 38 + 40 ], "attacked_location": [ - 78 + 80 ], "attacked_location_coordinates": [ - 78 + 80 ], "attacked_steam_id": [ - 180 + 252 ], "attacked_team": [ - 78 + 80 ], "attacker_location": [ - 78 + 80 ], "attacker_location_coordinates": [ - 78 + 80 ], "attacker_steam_id": [ - 180 + 252 ], "attacker_team": [ - 78 + 80 ], "damage": [ - 38 + 40 ], "damage_armor": [ - 38 + 40 ], "deleted_at": [ - 4376 + 4493 ], "health": [ - 38 + 40 ], "hitgroup": [ - 78 + 80 ], "id": [ - 4921 + 4993 ], "match_id": [ - 4921 + 4993 ], "match_map_id": [ - 4921 + 4993 ], "round": [ - 2827 + 2944 ], "time": [ - 4376 + 4493 ], "with": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "player_damages_sum_fields": { "armor": [ - 38 + 40 ], "attacked_steam_id": [ - 180 + 252 ], "attacker_steam_id": [ - 180 + 252 ], "damage": [ - 38 + 40 ], "damage_armor": [ - 38 + 40 ], "health": [ - 38 + 40 ], "round": [ - 2827 + 2944 ], "__typename": [ - 78 + 80 ] }, "player_damages_sum_order_by": { "armor": [ - 2829 + 2946 ], "attacked_steam_id": [ - 2829 + 2946 ], "attacker_steam_id": [ - 2829 + 2946 ], "damage": [ - 2829 + 2946 ], "damage_armor": [ - 2829 + 2946 ], "health": [ - 2829 + 2946 ], "round": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "player_damages_update_column": {}, "player_damages_updates": { "_inc": [ - 3041 + 3158 ], "_set": [ - 3052 + 3169 ], "where": [ - 3039 + 3156 ], "__typename": [ - 78 + 80 ] }, "player_damages_var_pop_fields": { "armor": [ - 29 + 31 ], "attacked_steam_id": [ - 29 + 31 ], "attacker_steam_id": [ - 29 + 31 ], "damage": [ - 29 + 31 ], "damage_armor": [ - 29 + 31 ], "health": [ - 29 + 31 ], "round": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "player_damages_var_pop_order_by": { "armor": [ - 2829 + 2946 ], "attacked_steam_id": [ - 2829 + 2946 ], "attacker_steam_id": [ - 2829 + 2946 ], "damage": [ - 2829 + 2946 ], "damage_armor": [ - 2829 + 2946 ], "health": [ - 2829 + 2946 ], "round": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "player_damages_var_samp_fields": { "armor": [ - 29 + 31 ], "attacked_steam_id": [ - 29 + 31 ], "attacker_steam_id": [ - 29 + 31 ], "damage": [ - 29 + 31 ], "damage_armor": [ - 29 + 31 ], "health": [ - 29 + 31 ], "round": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "player_damages_var_samp_order_by": { "armor": [ - 2829 + 2946 ], "attacked_steam_id": [ - 2829 + 2946 ], "attacker_steam_id": [ - 2829 + 2946 ], "damage": [ - 2829 + 2946 ], "damage_armor": [ - 2829 + 2946 ], "health": [ - 2829 + 2946 ], "round": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "player_damages_variance_fields": { "armor": [ - 29 + 31 ], "attacked_steam_id": [ - 29 + 31 ], "attacker_steam_id": [ - 29 + 31 ], "damage": [ - 29 + 31 ], "damage_armor": [ - 29 + 31 ], "health": [ - 29 + 31 ], "round": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "player_damages_variance_order_by": { "armor": [ - 2829 + 2946 ], "attacked_steam_id": [ - 2829 + 2946 ], "attacker_steam_id": [ - 2829 + 2946 ], "damage": [ - 2829 + 2946 ], "damage_armor": [ - 2829 + 2946 ], "health": [ - 2829 + 2946 ], "round": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "player_elo": { "actual_score": [ - 1547 + 1664 ], "assists": [ - 38 + 40 ], "change": [ - 2827 + 2944 ], "created_at": [ - 4376 + 4493 ], "current": [ - 2827 + 2944 ], "damage": [ - 38 + 40 ], "damage_percent": [ - 1547 + 1664 ], "deaths": [ - 38 + 40 ], "expected_score": [ - 1547 + 1664 ], "impact": [ - 2827 + 2944 ], "k_factor": [ - 38 + 40 ], "kda": [ - 1547 + 1664 ], "kills": [ - 38 + 40 ], "map_losses": [ - 38 + 40 ], "map_wins": [ - 38 + 40 ], "match": [ - 2644 + 2761 ], "match_id": [ - 4921 + 4993 ], "opponent_team_elo_avg": [ - 1547 + 1664 ], "performance_multiplier": [ - 1547 + 1664 ], "player": [ - 3787 + 3904 ], "player_team_elo_avg": [ - 1547 + 1664 ], "season": [ - 3846 + 3963 ], "season_id": [ - 4921 + 4993 ], "series_multiplier": [ - 38 + 40 ], "steam_id": [ - 180 + 252 ], "team_avg_kda": [ - 1547 + 1664 ], "type": [ - 887 + 1004 ], "__typename": [ - 78 + 80 ] }, "player_elo_aggregate": { "aggregate": [ - 3073 + 3190 ], "nodes": [ - 3071 + 3188 ], "__typename": [ - 78 + 80 ] }, "player_elo_aggregate_fields": { "avg": [ - 3074 + 3191 ], "count": [ - 38, + 40, { "columns": [ - 3085, + 3202, "[player_elo_select_column!]" ], "distinct": [ - 3 + 5 ] } ], "max": [ - 3079 + 3196 ], "min": [ - 3080 + 3197 ], "stddev": [ - 3087 + 3204 ], "stddev_pop": [ - 3088 + 3205 ], "stddev_samp": [ - 3089 + 3206 ], "sum": [ - 3092 + 3209 ], "var_pop": [ - 3095 + 3212 ], "var_samp": [ - 3096 + 3213 ], "variance": [ - 3097 + 3214 ], "__typename": [ - 78 + 80 ] }, "player_elo_avg_fields": { "actual_score": [ - 29 + 31 ], "assists": [ - 29 + 31 ], "change": [ - 29 + 31 ], "current": [ - 29 + 31 ], "damage": [ - 29 + 31 ], "damage_percent": [ - 29 + 31 ], "deaths": [ - 29 + 31 ], "expected_score": [ - 29 + 31 ], "impact": [ - 29 + 31 ], "k_factor": [ - 29 + 31 ], "kda": [ - 29 + 31 ], "kills": [ - 29 + 31 ], "map_losses": [ - 29 + 31 ], "map_wins": [ - 29 + 31 ], "opponent_team_elo_avg": [ - 29 + 31 ], "performance_multiplier": [ - 29 + 31 ], "player_team_elo_avg": [ - 29 + 31 ], "series_multiplier": [ - 29 + 31 ], "steam_id": [ - 29 + 31 ], "team_avg_kda": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "player_elo_bool_exp": { "_and": [ - 3075 + 3192 ], "_not": [ - 3075 + 3192 ], "_or": [ - 3075 + 3192 ], "actual_score": [ - 1548 + 1665 ], "assists": [ - 39 + 41 ], "change": [ - 2828 + 2945 ], "created_at": [ - 4377 + 4494 ], "current": [ - 2828 + 2945 ], "damage": [ - 39 + 41 ], "damage_percent": [ - 1548 + 1665 ], "deaths": [ - 39 + 41 ], "expected_score": [ - 1548 + 1665 ], "impact": [ - 2828 + 2945 ], "k_factor": [ - 39 + 41 ], "kda": [ - 1548 + 1665 ], "kills": [ - 39 + 41 ], "map_losses": [ - 39 + 41 ], "map_wins": [ - 39 + 41 ], "match": [ - 2653 + 2770 ], "match_id": [ - 4923 + 4995 ], "opponent_team_elo_avg": [ - 1548 + 1665 ], "performance_multiplier": [ - 1548 + 1665 ], "player": [ - 3791 + 3908 ], "player_team_elo_avg": [ - 1548 + 1665 ], "season": [ - 3850 + 3967 ], "season_id": [ - 4923 + 4995 ], "series_multiplier": [ - 39 + 41 ], "steam_id": [ - 182 + 254 ], "team_avg_kda": [ - 1548 + 1665 ], "type": [ - 888 + 1005 ], "__typename": [ - 78 + 80 ] }, "player_elo_constraint": {}, "player_elo_inc_input": { "actual_score": [ - 1547 + 1664 ], "assists": [ - 38 + 40 ], "change": [ - 2827 + 2944 ], "current": [ - 2827 + 2944 ], "damage": [ - 38 + 40 ], "damage_percent": [ - 1547 + 1664 ], "deaths": [ - 38 + 40 ], "expected_score": [ - 1547 + 1664 ], "impact": [ - 2827 + 2944 ], "k_factor": [ - 38 + 40 ], "kda": [ - 1547 + 1664 ], "kills": [ - 38 + 40 ], "map_losses": [ - 38 + 40 ], "map_wins": [ - 38 + 40 ], "opponent_team_elo_avg": [ - 1547 + 1664 ], "performance_multiplier": [ - 1547 + 1664 ], "player_team_elo_avg": [ - 1547 + 1664 ], "series_multiplier": [ - 38 + 40 ], "steam_id": [ - 180 + 252 ], "team_avg_kda": [ - 1547 + 1664 ], "__typename": [ - 78 + 80 ] }, "player_elo_insert_input": { "actual_score": [ - 1547 + 1664 ], "assists": [ - 38 + 40 ], "change": [ - 2827 + 2944 ], "created_at": [ - 4376 + 4493 ], "current": [ - 2827 + 2944 ], "damage": [ - 38 + 40 ], "damage_percent": [ - 1547 + 1664 ], "deaths": [ - 38 + 40 ], "expected_score": [ - 1547 + 1664 ], "impact": [ - 2827 + 2944 ], "k_factor": [ - 38 + 40 ], "kda": [ - 1547 + 1664 ], "kills": [ - 38 + 40 ], "map_losses": [ - 38 + 40 ], "map_wins": [ - 38 + 40 ], "match": [ - 2662 + 2779 ], "match_id": [ - 4921 + 4993 ], "opponent_team_elo_avg": [ - 1547 + 1664 ], "performance_multiplier": [ - 1547 + 1664 ], "player": [ - 3798 + 3915 ], "player_team_elo_avg": [ - 1547 + 1664 ], "season": [ - 3857 + 3974 ], "season_id": [ - 4921 + 4993 ], "series_multiplier": [ - 38 + 40 ], "steam_id": [ - 180 + 252 ], "team_avg_kda": [ - 1547 + 1664 ], "type": [ - 887 + 1004 ], "__typename": [ - 78 + 80 ] }, "player_elo_max_fields": { "actual_score": [ - 1547 + 1664 ], "assists": [ - 38 + 40 ], "change": [ - 2827 + 2944 ], "created_at": [ - 4376 + 4493 ], "current": [ - 2827 + 2944 ], "damage": [ - 38 + 40 ], "damage_percent": [ - 1547 + 1664 ], "deaths": [ - 38 + 40 ], "expected_score": [ - 1547 + 1664 ], "impact": [ - 2827 + 2944 ], "k_factor": [ - 38 + 40 ], "kda": [ - 1547 + 1664 ], "kills": [ - 38 + 40 ], "map_losses": [ - 38 + 40 ], "map_wins": [ - 38 + 40 ], "match_id": [ - 4921 + 4993 ], "opponent_team_elo_avg": [ - 1547 + 1664 ], "performance_multiplier": [ - 1547 + 1664 ], "player_team_elo_avg": [ - 1547 + 1664 ], "season_id": [ - 4921 + 4993 ], "series_multiplier": [ - 38 + 40 ], "steam_id": [ - 180 + 252 ], "team_avg_kda": [ - 1547 + 1664 ], "__typename": [ - 78 + 80 ] }, "player_elo_min_fields": { "actual_score": [ - 1547 + 1664 ], "assists": [ - 38 + 40 ], "change": [ - 2827 + 2944 ], "created_at": [ - 4376 + 4493 ], "current": [ - 2827 + 2944 ], "damage": [ - 38 + 40 ], "damage_percent": [ - 1547 + 1664 ], "deaths": [ - 38 + 40 ], "expected_score": [ - 1547 + 1664 ], "impact": [ - 2827 + 2944 ], "k_factor": [ - 38 + 40 ], "kda": [ - 1547 + 1664 ], "kills": [ - 38 + 40 ], "map_losses": [ - 38 + 40 ], "map_wins": [ - 38 + 40 ], "match_id": [ - 4921 + 4993 ], "opponent_team_elo_avg": [ - 1547 + 1664 ], "performance_multiplier": [ - 1547 + 1664 ], "player_team_elo_avg": [ - 1547 + 1664 ], "season_id": [ - 4921 + 4993 ], "series_multiplier": [ - 38 + 40 ], "steam_id": [ - 180 + 252 ], "team_avg_kda": [ - 1547 + 1664 ], "__typename": [ - 78 + 80 ] }, "player_elo_mutation_response": { "affected_rows": [ - 38 + 40 ], "returning": [ - 3071 + 3188 ], "__typename": [ - 78 + 80 ] }, "player_elo_on_conflict": { "constraint": [ - 3076 + 3193 ], "update_columns": [ - 3093 + 3210 ], "where": [ - 3075 + 3192 ], "__typename": [ - 78 + 80 ] }, "player_elo_order_by": { "actual_score": [ - 2829 + 2946 ], "assists": [ - 2829 + 2946 ], "change": [ - 2829 + 2946 ], "created_at": [ - 2829 + 2946 ], "current": [ - 2829 + 2946 ], "damage": [ - 2829 + 2946 ], "damage_percent": [ - 2829 + 2946 ], "deaths": [ - 2829 + 2946 ], "expected_score": [ - 2829 + 2946 ], "impact": [ - 2829 + 2946 ], "k_factor": [ - 2829 + 2946 ], "kda": [ - 2829 + 2946 ], "kills": [ - 2829 + 2946 ], "map_losses": [ - 2829 + 2946 ], "map_wins": [ - 2829 + 2946 ], "match": [ - 2664 + 2781 ], "match_id": [ - 2829 + 2946 ], "opponent_team_elo_avg": [ - 2829 + 2946 ], "performance_multiplier": [ - 2829 + 2946 ], "player": [ - 3800 + 3917 ], "player_team_elo_avg": [ - 2829 + 2946 ], "season": [ - 3859 + 3976 ], "season_id": [ - 2829 + 2946 ], "series_multiplier": [ - 2829 + 2946 ], "steam_id": [ - 2829 + 2946 ], "team_avg_kda": [ - 2829 + 2946 ], "type": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "player_elo_pk_columns_input": { "match_id": [ - 4921 + 4993 ], "steam_id": [ - 180 + 252 ], "type": [ - 887 + 1004 ], "__typename": [ - 78 + 80 ] }, "player_elo_select_column": {}, "player_elo_set_input": { "actual_score": [ - 1547 + 1664 ], "assists": [ - 38 + 40 ], "change": [ - 2827 + 2944 ], "created_at": [ - 4376 + 4493 ], "current": [ - 2827 + 2944 ], "damage": [ - 38 + 40 ], "damage_percent": [ - 1547 + 1664 ], "deaths": [ - 38 + 40 ], "expected_score": [ - 1547 + 1664 ], "impact": [ - 2827 + 2944 ], "k_factor": [ - 38 + 40 ], "kda": [ - 1547 + 1664 ], "kills": [ - 38 + 40 ], "map_losses": [ - 38 + 40 ], "map_wins": [ - 38 + 40 ], "match_id": [ - 4921 + 4993 ], "opponent_team_elo_avg": [ - 1547 + 1664 ], "performance_multiplier": [ - 1547 + 1664 ], "player_team_elo_avg": [ - 1547 + 1664 ], "season_id": [ - 4921 + 4993 ], "series_multiplier": [ - 38 + 40 ], "steam_id": [ - 180 + 252 ], "team_avg_kda": [ - 1547 + 1664 ], "type": [ - 887 + 1004 ], "__typename": [ - 78 + 80 ] }, "player_elo_stddev_fields": { "actual_score": [ - 29 + 31 ], "assists": [ - 29 + 31 ], "change": [ - 29 + 31 ], "current": [ - 29 + 31 ], "damage": [ - 29 + 31 ], "damage_percent": [ - 29 + 31 ], "deaths": [ - 29 + 31 ], "expected_score": [ - 29 + 31 ], "impact": [ - 29 + 31 ], "k_factor": [ - 29 + 31 ], "kda": [ - 29 + 31 ], "kills": [ - 29 + 31 ], "map_losses": [ - 29 + 31 ], "map_wins": [ - 29 + 31 ], "opponent_team_elo_avg": [ - 29 + 31 ], "performance_multiplier": [ - 29 + 31 ], "player_team_elo_avg": [ - 29 + 31 ], "series_multiplier": [ - 29 + 31 ], "steam_id": [ - 29 + 31 ], "team_avg_kda": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "player_elo_stddev_pop_fields": { "actual_score": [ - 29 + 31 ], "assists": [ - 29 + 31 ], "change": [ - 29 + 31 ], "current": [ - 29 + 31 ], "damage": [ - 29 + 31 ], "damage_percent": [ - 29 + 31 ], "deaths": [ - 29 + 31 ], "expected_score": [ - 29 + 31 ], "impact": [ - 29 + 31 ], "k_factor": [ - 29 + 31 ], "kda": [ - 29 + 31 ], "kills": [ - 29 + 31 ], "map_losses": [ - 29 + 31 ], "map_wins": [ - 29 + 31 ], "opponent_team_elo_avg": [ - 29 + 31 ], "performance_multiplier": [ - 29 + 31 ], "player_team_elo_avg": [ - 29 + 31 ], "series_multiplier": [ - 29 + 31 ], "steam_id": [ - 29 + 31 ], "team_avg_kda": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "player_elo_stddev_samp_fields": { "actual_score": [ - 29 + 31 ], "assists": [ - 29 + 31 ], "change": [ - 29 + 31 ], "current": [ - 29 + 31 ], "damage": [ - 29 + 31 ], "damage_percent": [ - 29 + 31 ], "deaths": [ - 29 + 31 ], "expected_score": [ - 29 + 31 ], "impact": [ - 29 + 31 ], "k_factor": [ - 29 + 31 ], "kda": [ - 29 + 31 ], "kills": [ - 29 + 31 ], "map_losses": [ - 29 + 31 ], "map_wins": [ - 29 + 31 ], "opponent_team_elo_avg": [ - 29 + 31 ], "performance_multiplier": [ - 29 + 31 ], "player_team_elo_avg": [ - 29 + 31 ], "series_multiplier": [ - 29 + 31 ], "steam_id": [ - 29 + 31 ], "team_avg_kda": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "player_elo_stream_cursor_input": { "initial_value": [ - 3091 + 3208 ], "ordering": [ - 236 + 308 ], "__typename": [ - 78 + 80 ] }, "player_elo_stream_cursor_value_input": { "actual_score": [ - 1547 + 1664 ], "assists": [ - 38 + 40 ], "change": [ - 2827 + 2944 ], "created_at": [ - 4376 + 4493 ], "current": [ - 2827 + 2944 ], "damage": [ - 38 + 40 ], "damage_percent": [ - 1547 + 1664 ], "deaths": [ - 38 + 40 ], "expected_score": [ - 1547 + 1664 ], "impact": [ - 2827 + 2944 ], "k_factor": [ - 38 + 40 ], "kda": [ - 1547 + 1664 ], "kills": [ - 38 + 40 ], "map_losses": [ - 38 + 40 ], "map_wins": [ - 38 + 40 ], "match_id": [ - 4921 + 4993 ], "opponent_team_elo_avg": [ - 1547 + 1664 ], "performance_multiplier": [ - 1547 + 1664 ], "player_team_elo_avg": [ - 1547 + 1664 ], "season_id": [ - 4921 + 4993 ], "series_multiplier": [ - 38 + 40 ], "steam_id": [ - 180 + 252 ], "team_avg_kda": [ - 1547 + 1664 ], "type": [ - 887 + 1004 ], "__typename": [ - 78 + 80 ] }, "player_elo_sum_fields": { "actual_score": [ - 1547 + 1664 ], "assists": [ - 38 + 40 ], "change": [ - 2827 + 2944 ], "current": [ - 2827 + 2944 ], "damage": [ - 38 + 40 ], "damage_percent": [ - 1547 + 1664 ], "deaths": [ - 38 + 40 ], "expected_score": [ - 1547 + 1664 ], "impact": [ - 2827 + 2944 ], "k_factor": [ - 38 + 40 ], "kda": [ - 1547 + 1664 ], "kills": [ - 38 + 40 ], "map_losses": [ - 38 + 40 ], "map_wins": [ - 38 + 40 ], "opponent_team_elo_avg": [ - 1547 + 1664 ], "performance_multiplier": [ - 1547 + 1664 ], "player_team_elo_avg": [ - 1547 + 1664 ], "series_multiplier": [ - 38 + 40 ], "steam_id": [ - 180 + 252 ], "team_avg_kda": [ - 1547 + 1664 ], "__typename": [ - 78 + 80 ] }, "player_elo_update_column": {}, "player_elo_updates": { "_inc": [ - 3077 + 3194 ], "_set": [ - 3086 + 3203 ], "where": [ - 3075 + 3192 ], "__typename": [ - 78 + 80 ] }, "player_elo_var_pop_fields": { "actual_score": [ - 29 + 31 ], "assists": [ - 29 + 31 ], "change": [ - 29 + 31 ], "current": [ - 29 + 31 ], "damage": [ - 29 + 31 ], "damage_percent": [ - 29 + 31 ], "deaths": [ - 29 + 31 ], "expected_score": [ - 29 + 31 ], "impact": [ - 29 + 31 ], "k_factor": [ - 29 + 31 ], "kda": [ - 29 + 31 ], "kills": [ - 29 + 31 ], "map_losses": [ - 29 + 31 ], "map_wins": [ - 29 + 31 ], "opponent_team_elo_avg": [ - 29 + 31 ], "performance_multiplier": [ - 29 + 31 ], "player_team_elo_avg": [ - 29 + 31 ], "series_multiplier": [ - 29 + 31 ], "steam_id": [ - 29 + 31 ], "team_avg_kda": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "player_elo_var_samp_fields": { "actual_score": [ - 29 + 31 ], "assists": [ - 29 + 31 ], "change": [ - 29 + 31 ], "current": [ - 29 + 31 ], "damage": [ - 29 + 31 ], "damage_percent": [ - 29 + 31 ], "deaths": [ - 29 + 31 ], "expected_score": [ - 29 + 31 ], "impact": [ - 29 + 31 ], "k_factor": [ - 29 + 31 ], "kda": [ - 29 + 31 ], "kills": [ - 29 + 31 ], "map_losses": [ - 29 + 31 ], "map_wins": [ - 29 + 31 ], "opponent_team_elo_avg": [ - 29 + 31 ], "performance_multiplier": [ - 29 + 31 ], "player_team_elo_avg": [ - 29 + 31 ], "series_multiplier": [ - 29 + 31 ], "steam_id": [ - 29 + 31 ], "team_avg_kda": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "player_elo_variance_fields": { "actual_score": [ - 29 + 31 ], "assists": [ - 29 + 31 ], "change": [ - 29 + 31 ], "current": [ - 29 + 31 ], "damage": [ - 29 + 31 ], "damage_percent": [ - 29 + 31 ], "deaths": [ - 29 + 31 ], "expected_score": [ - 29 + 31 ], "impact": [ - 29 + 31 ], "k_factor": [ - 29 + 31 ], "kda": [ - 29 + 31 ], "kills": [ - 29 + 31 ], "map_losses": [ - 29 + 31 ], "map_wins": [ - 29 + 31 ], "opponent_team_elo_avg": [ - 29 + 31 ], "performance_multiplier": [ - 29 + 31 ], "player_team_elo_avg": [ - 29 + 31 ], "series_multiplier": [ - 29 + 31 ], "steam_id": [ - 29 + 31 ], "team_avg_kda": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "player_faceit_rank_history": { "elo": [ - 38 + 40 ], "id": [ - 4921 + 4993 ], "match": [ - 2644 + 2761 ], "match_id": [ - 4921 + 4993 ], "observed_at": [ - 4376 + 4493 ], "player": [ - 3787 + 3904 ], "previous_rank": [ - 38 + 40 ], "skill_level": [ - 38 + 40 ], "steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "player_faceit_rank_history_aggregate": { "aggregate": [ - 3102 + 3219 ], "nodes": [ - 3098 + 3215 ], "__typename": [ - 78 + 80 ] }, "player_faceit_rank_history_aggregate_bool_exp": { "count": [ - 3101 + 3218 ], "__typename": [ - 78 + 80 ] }, "player_faceit_rank_history_aggregate_bool_exp_count": { "arguments": [ - 3119 + 3236 ], "distinct": [ - 3 + 5 ], "filter": [ - 3107 + 3224 ], "predicate": [ - 39 + 41 ], "__typename": [ - 78 + 80 ] }, "player_faceit_rank_history_aggregate_fields": { "avg": [ - 3105 + 3222 ], "count": [ - 38, + 40, { "columns": [ - 3119, + 3236, "[player_faceit_rank_history_select_column!]" ], "distinct": [ - 3 + 5 ] } ], "max": [ - 3111 + 3228 ], "min": [ - 3113 + 3230 ], "stddev": [ - 3121 + 3238 ], "stddev_pop": [ - 3123 + 3240 ], "stddev_samp": [ - 3125 + 3242 ], "sum": [ - 3129 + 3246 ], "var_pop": [ - 3133 + 3250 ], "var_samp": [ - 3135 + 3252 ], "variance": [ - 3137 + 3254 ], "__typename": [ - 78 + 80 ] }, "player_faceit_rank_history_aggregate_order_by": { "avg": [ - 3106 + 3223 ], "count": [ - 2829 + 2946 ], "max": [ - 3112 + 3229 ], "min": [ - 3114 + 3231 ], "stddev": [ - 3122 + 3239 ], "stddev_pop": [ - 3124 + 3241 ], "stddev_samp": [ - 3126 + 3243 ], "sum": [ - 3130 + 3247 ], "var_pop": [ - 3134 + 3251 ], "var_samp": [ - 3136 + 3253 ], "variance": [ - 3138 + 3255 ], "__typename": [ - 78 + 80 ] }, "player_faceit_rank_history_arr_rel_insert_input": { "data": [ - 3110 + 3227 ], "on_conflict": [ - 3116 + 3233 ], "__typename": [ - 78 + 80 ] }, "player_faceit_rank_history_avg_fields": { "elo": [ - 29 + 31 ], "previous_rank": [ - 29 + 31 ], "skill_level": [ - 29 + 31 ], "steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "player_faceit_rank_history_avg_order_by": { "elo": [ - 2829 + 2946 ], "previous_rank": [ - 2829 + 2946 ], "skill_level": [ - 2829 + 2946 ], "steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "player_faceit_rank_history_bool_exp": { "_and": [ - 3107 + 3224 ], "_not": [ - 3107 + 3224 ], "_or": [ - 3107 + 3224 ], "elo": [ - 39 + 41 ], "id": [ - 4923 + 4995 ], "match": [ - 2653 + 2770 ], "match_id": [ - 4923 + 4995 ], "observed_at": [ - 4377 + 4494 ], "player": [ - 3791 + 3908 ], "previous_rank": [ - 39 + 41 ], "skill_level": [ - 39 + 41 ], "steam_id": [ - 182 + 254 ], "__typename": [ - 78 + 80 ] }, "player_faceit_rank_history_constraint": {}, "player_faceit_rank_history_inc_input": { "elo": [ - 38 + 40 ], "previous_rank": [ - 38 + 40 ], "skill_level": [ - 38 + 40 ], "steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "player_faceit_rank_history_insert_input": { "elo": [ - 38 + 40 ], "id": [ - 4921 + 4993 ], "match": [ - 2662 + 2779 ], "match_id": [ - 4921 + 4993 ], "observed_at": [ - 4376 + 4493 ], "player": [ - 3798 + 3915 ], "previous_rank": [ - 38 + 40 ], "skill_level": [ - 38 + 40 ], "steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "player_faceit_rank_history_max_fields": { "elo": [ - 38 + 40 ], "id": [ - 4921 + 4993 ], "match_id": [ - 4921 + 4993 ], "observed_at": [ - 4376 + 4493 ], "previous_rank": [ - 38 + 40 ], "skill_level": [ - 38 + 40 ], "steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "player_faceit_rank_history_max_order_by": { "elo": [ - 2829 + 2946 ], "id": [ - 2829 + 2946 ], "match_id": [ - 2829 + 2946 ], "observed_at": [ - 2829 + 2946 ], "previous_rank": [ - 2829 + 2946 ], "skill_level": [ - 2829 + 2946 ], "steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "player_faceit_rank_history_min_fields": { "elo": [ - 38 + 40 ], "id": [ - 4921 + 4993 ], "match_id": [ - 4921 + 4993 ], "observed_at": [ - 4376 + 4493 ], "previous_rank": [ - 38 + 40 ], "skill_level": [ - 38 + 40 ], "steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "player_faceit_rank_history_min_order_by": { "elo": [ - 2829 + 2946 ], "id": [ - 2829 + 2946 ], "match_id": [ - 2829 + 2946 ], "observed_at": [ - 2829 + 2946 ], "previous_rank": [ - 2829 + 2946 ], "skill_level": [ - 2829 + 2946 ], "steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "player_faceit_rank_history_mutation_response": { "affected_rows": [ - 38 + 40 ], "returning": [ - 3098 + 3215 ], "__typename": [ - 78 + 80 ] }, "player_faceit_rank_history_on_conflict": { "constraint": [ - 3108 + 3225 ], "update_columns": [ - 3131 + 3248 ], "where": [ - 3107 + 3224 ], "__typename": [ - 78 + 80 ] }, "player_faceit_rank_history_order_by": { "elo": [ - 2829 + 2946 ], "id": [ - 2829 + 2946 ], "match": [ - 2664 + 2781 ], "match_id": [ - 2829 + 2946 ], "observed_at": [ - 2829 + 2946 ], "player": [ - 3800 + 3917 ], "previous_rank": [ - 2829 + 2946 ], "skill_level": [ - 2829 + 2946 ], "steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "player_faceit_rank_history_pk_columns_input": { "id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "player_faceit_rank_history_select_column": {}, "player_faceit_rank_history_set_input": { "elo": [ - 38 + 40 ], "id": [ - 4921 + 4993 ], "match_id": [ - 4921 + 4993 ], "observed_at": [ - 4376 + 4493 ], "previous_rank": [ - 38 + 40 ], "skill_level": [ - 38 + 40 ], "steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "player_faceit_rank_history_stddev_fields": { "elo": [ - 29 + 31 ], "previous_rank": [ - 29 + 31 ], "skill_level": [ - 29 + 31 ], "steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "player_faceit_rank_history_stddev_order_by": { "elo": [ - 2829 + 2946 ], "previous_rank": [ - 2829 + 2946 ], "skill_level": [ - 2829 + 2946 ], "steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "player_faceit_rank_history_stddev_pop_fields": { "elo": [ - 29 + 31 ], "previous_rank": [ - 29 + 31 ], "skill_level": [ - 29 + 31 ], "steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "player_faceit_rank_history_stddev_pop_order_by": { "elo": [ - 2829 + 2946 ], "previous_rank": [ - 2829 + 2946 ], "skill_level": [ - 2829 + 2946 ], "steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "player_faceit_rank_history_stddev_samp_fields": { "elo": [ - 29 + 31 ], "previous_rank": [ - 29 + 31 ], "skill_level": [ - 29 + 31 ], "steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "player_faceit_rank_history_stddev_samp_order_by": { "elo": [ - 2829 + 2946 ], "previous_rank": [ - 2829 + 2946 ], "skill_level": [ - 2829 + 2946 ], "steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "player_faceit_rank_history_stream_cursor_input": { "initial_value": [ - 3128 + 3245 ], "ordering": [ - 236 + 308 ], "__typename": [ - 78 + 80 ] }, "player_faceit_rank_history_stream_cursor_value_input": { "elo": [ - 38 + 40 ], "id": [ - 4921 + 4993 ], "match_id": [ - 4921 + 4993 ], "observed_at": [ - 4376 + 4493 ], "previous_rank": [ - 38 + 40 ], "skill_level": [ - 38 + 40 ], "steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "player_faceit_rank_history_sum_fields": { "elo": [ - 38 + 40 ], "previous_rank": [ - 38 + 40 ], "skill_level": [ - 38 + 40 ], "steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "player_faceit_rank_history_sum_order_by": { "elo": [ - 2829 + 2946 ], "previous_rank": [ - 2829 + 2946 ], "skill_level": [ - 2829 + 2946 ], "steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "player_faceit_rank_history_update_column": {}, "player_faceit_rank_history_updates": { "_inc": [ - 3109 + 3226 ], "_set": [ - 3120 + 3237 ], "where": [ - 3107 + 3224 ], "__typename": [ - 78 + 80 ] }, "player_faceit_rank_history_var_pop_fields": { "elo": [ - 29 + 31 ], "previous_rank": [ - 29 + 31 ], "skill_level": [ - 29 + 31 ], "steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "player_faceit_rank_history_var_pop_order_by": { "elo": [ - 2829 + 2946 ], "previous_rank": [ - 2829 + 2946 ], "skill_level": [ - 2829 + 2946 ], "steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "player_faceit_rank_history_var_samp_fields": { "elo": [ - 29 + 31 ], "previous_rank": [ - 29 + 31 ], "skill_level": [ - 29 + 31 ], "steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "player_faceit_rank_history_var_samp_order_by": { "elo": [ - 2829 + 2946 ], "previous_rank": [ - 2829 + 2946 ], "skill_level": [ - 2829 + 2946 ], "steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "player_faceit_rank_history_variance_fields": { "elo": [ - 29 + 31 ], "previous_rank": [ - 29 + 31 ], "skill_level": [ - 29 + 31 ], "steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "player_faceit_rank_history_variance_order_by": { "elo": [ - 2829 + 2946 ], "previous_rank": [ - 2829 + 2946 ], "skill_level": [ - 2829 + 2946 ], "steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "player_flashes": { "attacked_steam_id": [ - 180 + 252 ], "attacker_steam_id": [ - 180 + 252 ], "blinded": [ - 3787 + 3904 ], "deleted_at": [ - 4376 + 4493 ], "duration": [ - 2827 + 2944 ], "match": [ - 2644 + 2761 ], "match_id": [ - 4921 + 4993 ], "match_map": [ - 2482 + 2599 ], "match_map_id": [ - 4921 + 4993 ], "round": [ - 38 + 40 ], "team_flash": [ - 3 + 5 ], "thrown_by": [ - 3787 + 3904 ], "time": [ - 4376 + 4493 ], "__typename": [ - 78 + 80 ] }, "player_flashes_aggregate": { "aggregate": [ - 3145 + 3262 ], "nodes": [ - 3139 + 3256 ], "__typename": [ - 78 + 80 ] }, "player_flashes_aggregate_bool_exp": { "bool_and": [ - 3142 + 3259 ], "bool_or": [ - 3143 + 3260 ], "count": [ - 3144 + 3261 ], "__typename": [ - 78 + 80 ] }, "player_flashes_aggregate_bool_exp_bool_and": { "arguments": [ - 3163 + 3280 ], "distinct": [ - 3 + 5 ], "filter": [ - 3150 + 3267 ], "predicate": [ - 4 + 6 ], "__typename": [ - 78 + 80 ] }, "player_flashes_aggregate_bool_exp_bool_or": { "arguments": [ - 3164 + 3281 ], "distinct": [ - 3 + 5 ], "filter": [ - 3150 + 3267 ], "predicate": [ - 4 + 6 ], "__typename": [ - 78 + 80 ] }, "player_flashes_aggregate_bool_exp_count": { "arguments": [ - 3162 + 3279 ], "distinct": [ - 3 + 5 ], "filter": [ - 3150 + 3267 ], "predicate": [ - 39 + 41 ], "__typename": [ - 78 + 80 ] }, "player_flashes_aggregate_fields": { "avg": [ - 3148 + 3265 ], "count": [ - 38, + 40, { "columns": [ - 3162, + 3279, "[player_flashes_select_column!]" ], "distinct": [ - 3 + 5 ] } ], "max": [ - 3154 + 3271 ], "min": [ - 3156 + 3273 ], "stddev": [ - 3166 + 3283 ], "stddev_pop": [ - 3168 + 3285 ], "stddev_samp": [ - 3170 + 3287 ], "sum": [ - 3174 + 3291 ], "var_pop": [ - 3178 + 3295 ], "var_samp": [ - 3180 + 3297 ], "variance": [ - 3182 + 3299 ], "__typename": [ - 78 + 80 ] }, "player_flashes_aggregate_order_by": { "avg": [ - 3149 + 3266 ], "count": [ - 2829 + 2946 ], "max": [ - 3155 + 3272 ], "min": [ - 3157 + 3274 ], "stddev": [ - 3167 + 3284 ], "stddev_pop": [ - 3169 + 3286 ], "stddev_samp": [ - 3171 + 3288 ], "sum": [ - 3175 + 3292 ], "var_pop": [ - 3179 + 3296 ], "var_samp": [ - 3181 + 3298 ], "variance": [ - 3183 + 3300 ], "__typename": [ - 78 + 80 ] }, "player_flashes_arr_rel_insert_input": { "data": [ - 3153 + 3270 ], "on_conflict": [ - 3159 + 3276 ], "__typename": [ - 78 + 80 ] }, "player_flashes_avg_fields": { "attacked_steam_id": [ - 29 + 31 ], "attacker_steam_id": [ - 29 + 31 ], "duration": [ - 29 + 31 ], "round": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "player_flashes_avg_order_by": { "attacked_steam_id": [ - 2829 + 2946 ], "attacker_steam_id": [ - 2829 + 2946 ], "duration": [ - 2829 + 2946 ], "round": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "player_flashes_bool_exp": { "_and": [ - 3150 + 3267 ], "_not": [ - 3150 + 3267 ], "_or": [ - 3150 + 3267 ], "attacked_steam_id": [ - 182 + 254 ], "attacker_steam_id": [ - 182 + 254 ], "blinded": [ - 3791 + 3908 ], "deleted_at": [ - 4377 + 4494 ], "duration": [ - 2828 + 2945 ], "match": [ - 2653 + 2770 ], "match_id": [ - 4923 + 4995 ], "match_map": [ - 2491 + 2608 ], "match_map_id": [ - 4923 + 4995 ], "round": [ - 39 + 41 ], "team_flash": [ - 4 + 6 ], "thrown_by": [ - 3791 + 3908 ], "time": [ - 4377 + 4494 ], "__typename": [ - 78 + 80 ] }, "player_flashes_constraint": {}, "player_flashes_inc_input": { "attacked_steam_id": [ - 180 + 252 ], "attacker_steam_id": [ - 180 + 252 ], "duration": [ - 2827 + 2944 ], "round": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "player_flashes_insert_input": { "attacked_steam_id": [ - 180 + 252 ], "attacker_steam_id": [ - 180 + 252 ], "blinded": [ - 3798 + 3915 ], "deleted_at": [ - 4376 + 4493 ], "duration": [ - 2827 + 2944 ], "match": [ - 2662 + 2779 ], "match_id": [ - 4921 + 4993 ], "match_map": [ - 2500 + 2617 ], "match_map_id": [ - 4921 + 4993 ], "round": [ - 38 + 40 ], "team_flash": [ - 3 + 5 ], "thrown_by": [ - 3798 + 3915 ], "time": [ - 4376 + 4493 ], "__typename": [ - 78 + 80 ] }, "player_flashes_max_fields": { "attacked_steam_id": [ - 180 + 252 ], "attacker_steam_id": [ - 180 + 252 ], "deleted_at": [ - 4376 + 4493 ], "duration": [ - 2827 + 2944 ], "match_id": [ - 4921 + 4993 ], "match_map_id": [ - 4921 + 4993 ], "round": [ - 38 + 40 ], "time": [ - 4376 + 4493 ], "__typename": [ - 78 + 80 ] }, "player_flashes_max_order_by": { "attacked_steam_id": [ - 2829 + 2946 ], "attacker_steam_id": [ - 2829 + 2946 ], "deleted_at": [ - 2829 + 2946 ], "duration": [ - 2829 + 2946 ], "match_id": [ - 2829 + 2946 ], "match_map_id": [ - 2829 + 2946 ], "round": [ - 2829 + 2946 ], "time": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "player_flashes_min_fields": { "attacked_steam_id": [ - 180 + 252 ], "attacker_steam_id": [ - 180 + 252 ], "deleted_at": [ - 4376 + 4493 ], "duration": [ - 2827 + 2944 ], "match_id": [ - 4921 + 4993 ], "match_map_id": [ - 4921 + 4993 ], "round": [ - 38 + 40 ], "time": [ - 4376 + 4493 ], "__typename": [ - 78 + 80 ] }, "player_flashes_min_order_by": { "attacked_steam_id": [ - 2829 + 2946 ], "attacker_steam_id": [ - 2829 + 2946 ], "deleted_at": [ - 2829 + 2946 ], "duration": [ - 2829 + 2946 ], "match_id": [ - 2829 + 2946 ], "match_map_id": [ - 2829 + 2946 ], "round": [ - 2829 + 2946 ], "time": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "player_flashes_mutation_response": { "affected_rows": [ - 38 + 40 ], "returning": [ - 3139 + 3256 ], "__typename": [ - 78 + 80 ] }, "player_flashes_on_conflict": { "constraint": [ - 3151 + 3268 ], "update_columns": [ - 3176 + 3293 ], "where": [ - 3150 + 3267 ], "__typename": [ - 78 + 80 ] }, "player_flashes_order_by": { "attacked_steam_id": [ - 2829 + 2946 ], "attacker_steam_id": [ - 2829 + 2946 ], "blinded": [ - 3800 + 3917 ], "deleted_at": [ - 2829 + 2946 ], "duration": [ - 2829 + 2946 ], "match": [ - 2664 + 2781 ], "match_id": [ - 2829 + 2946 ], "match_map": [ - 2502 + 2619 ], "match_map_id": [ - 2829 + 2946 ], "round": [ - 2829 + 2946 ], "team_flash": [ - 2829 + 2946 ], "thrown_by": [ - 3800 + 3917 ], "time": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "player_flashes_pk_columns_input": { "attacked_steam_id": [ - 180 + 252 ], "attacker_steam_id": [ - 180 + 252 ], "match_map_id": [ - 4921 + 4993 ], "time": [ - 4376 + 4493 ], "__typename": [ - 78 + 80 ] }, "player_flashes_select_column": {}, @@ -63047,1690 +65274,1690 @@ export default { "player_flashes_select_column_player_flashes_aggregate_bool_exp_bool_or_arguments_columns": {}, "player_flashes_set_input": { "attacked_steam_id": [ - 180 + 252 ], "attacker_steam_id": [ - 180 + 252 ], "deleted_at": [ - 4376 + 4493 ], "duration": [ - 2827 + 2944 ], "match_id": [ - 4921 + 4993 ], "match_map_id": [ - 4921 + 4993 ], "round": [ - 38 + 40 ], "team_flash": [ - 3 + 5 ], "time": [ - 4376 + 4493 ], "__typename": [ - 78 + 80 ] }, "player_flashes_stddev_fields": { "attacked_steam_id": [ - 29 + 31 ], "attacker_steam_id": [ - 29 + 31 ], "duration": [ - 29 + 31 ], "round": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "player_flashes_stddev_order_by": { "attacked_steam_id": [ - 2829 + 2946 ], "attacker_steam_id": [ - 2829 + 2946 ], "duration": [ - 2829 + 2946 ], "round": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "player_flashes_stddev_pop_fields": { "attacked_steam_id": [ - 29 + 31 ], "attacker_steam_id": [ - 29 + 31 ], "duration": [ - 29 + 31 ], "round": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "player_flashes_stddev_pop_order_by": { "attacked_steam_id": [ - 2829 + 2946 ], "attacker_steam_id": [ - 2829 + 2946 ], "duration": [ - 2829 + 2946 ], "round": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "player_flashes_stddev_samp_fields": { "attacked_steam_id": [ - 29 + 31 ], "attacker_steam_id": [ - 29 + 31 ], "duration": [ - 29 + 31 ], "round": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "player_flashes_stddev_samp_order_by": { "attacked_steam_id": [ - 2829 + 2946 ], "attacker_steam_id": [ - 2829 + 2946 ], "duration": [ - 2829 + 2946 ], "round": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "player_flashes_stream_cursor_input": { "initial_value": [ - 3173 + 3290 ], "ordering": [ - 236 + 308 ], "__typename": [ - 78 + 80 ] }, "player_flashes_stream_cursor_value_input": { "attacked_steam_id": [ - 180 + 252 ], "attacker_steam_id": [ - 180 + 252 ], "deleted_at": [ - 4376 + 4493 ], "duration": [ - 2827 + 2944 ], "match_id": [ - 4921 + 4993 ], "match_map_id": [ - 4921 + 4993 ], "round": [ - 38 + 40 ], "team_flash": [ - 3 + 5 ], "time": [ - 4376 + 4493 ], "__typename": [ - 78 + 80 ] }, "player_flashes_sum_fields": { "attacked_steam_id": [ - 180 + 252 ], "attacker_steam_id": [ - 180 + 252 ], "duration": [ - 2827 + 2944 ], "round": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "player_flashes_sum_order_by": { "attacked_steam_id": [ - 2829 + 2946 ], "attacker_steam_id": [ - 2829 + 2946 ], "duration": [ - 2829 + 2946 ], "round": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "player_flashes_update_column": {}, "player_flashes_updates": { "_inc": [ - 3152 + 3269 ], "_set": [ - 3165 + 3282 ], "where": [ - 3150 + 3267 ], "__typename": [ - 78 + 80 ] }, "player_flashes_var_pop_fields": { "attacked_steam_id": [ - 29 + 31 ], "attacker_steam_id": [ - 29 + 31 ], "duration": [ - 29 + 31 ], "round": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "player_flashes_var_pop_order_by": { "attacked_steam_id": [ - 2829 + 2946 ], "attacker_steam_id": [ - 2829 + 2946 ], "duration": [ - 2829 + 2946 ], "round": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "player_flashes_var_samp_fields": { "attacked_steam_id": [ - 29 + 31 ], "attacker_steam_id": [ - 29 + 31 ], "duration": [ - 29 + 31 ], "round": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "player_flashes_var_samp_order_by": { "attacked_steam_id": [ - 2829 + 2946 ], "attacker_steam_id": [ - 2829 + 2946 ], "duration": [ - 2829 + 2946 ], "round": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "player_flashes_variance_fields": { "attacked_steam_id": [ - 29 + 31 ], "attacker_steam_id": [ - 29 + 31 ], "duration": [ - 29 + 31 ], "round": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "player_flashes_variance_order_by": { "attacked_steam_id": [ - 2829 + 2946 ], "attacker_steam_id": [ - 2829 + 2946 ], "duration": [ - 2829 + 2946 ], "round": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "player_kills": { "assisted": [ - 3 + 5 ], "attacked_location": [ - 78 + 80 ], "attacked_location_coordinates": [ - 78 + 80 ], "attacked_player": [ - 3787 + 3904 ], "attacked_steam_id": [ - 180 + 252 ], "attacked_team": [ - 78 + 80 ], "attacker_location": [ - 78 + 80 ], "attacker_location_coordinates": [ - 78 + 80 ], "attacker_steam_id": [ - 180 + 252 ], "attacker_team": [ - 78 + 80 ], "blinded": [ - 3 + 5 ], "deleted_at": [ - 4376 + 4493 ], "headshot": [ - 3 + 5 ], "hitgroup": [ - 78 + 80 ], "in_air": [ - 3 + 5 ], "is_suicide": [ - 3 + 5 ], "match": [ - 2644 + 2761 ], "match_id": [ - 4921 + 4993 ], "match_map": [ - 2482 + 2599 ], "match_map_id": [ - 4921 + 4993 ], "no_scope": [ - 3 + 5 ], "player": [ - 3787 + 3904 ], "round": [ - 38 + 40 ], "team_kill": [ - 3 + 5 ], "thru_smoke": [ - 3 + 5 ], "thru_wall": [ - 3 + 5 ], "time": [ - 4376 + 4493 ], "with": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "player_kills_aggregate": { "aggregate": [ - 3190 + 3307 ], "nodes": [ - 3184 + 3301 ], "__typename": [ - 78 + 80 ] }, "player_kills_aggregate_bool_exp": { "bool_and": [ - 3187 + 3304 ], "bool_or": [ - 3188 + 3305 ], "count": [ - 3189 + 3306 ], "__typename": [ - 78 + 80 ] }, "player_kills_aggregate_bool_exp_bool_and": { "arguments": [ - 3249 + 3366 ], "distinct": [ - 3 + 5 ], "filter": [ - 3195 + 3312 ], "predicate": [ - 4 + 6 ], "__typename": [ - 78 + 80 ] }, "player_kills_aggregate_bool_exp_bool_or": { "arguments": [ - 3250 + 3367 ], "distinct": [ - 3 + 5 ], "filter": [ - 3195 + 3312 ], "predicate": [ - 4 + 6 ], "__typename": [ - 78 + 80 ] }, "player_kills_aggregate_bool_exp_count": { "arguments": [ - 3248 + 3365 ], "distinct": [ - 3 + 5 ], "filter": [ - 3195 + 3312 ], "predicate": [ - 39 + 41 ], "__typename": [ - 78 + 80 ] }, "player_kills_aggregate_fields": { "avg": [ - 3193 + 3310 ], "count": [ - 38, + 40, { "columns": [ - 3248, + 3365, "[player_kills_select_column!]" ], "distinct": [ - 3 + 5 ] } ], "max": [ - 3240 + 3357 ], "min": [ - 3242 + 3359 ], "stddev": [ - 3252 + 3369 ], "stddev_pop": [ - 3254 + 3371 ], "stddev_samp": [ - 3256 + 3373 ], "sum": [ - 3260 + 3377 ], "var_pop": [ - 3264 + 3381 ], "var_samp": [ - 3266 + 3383 ], "variance": [ - 3268 + 3385 ], "__typename": [ - 78 + 80 ] }, "player_kills_aggregate_order_by": { "avg": [ - 3194 + 3311 ], "count": [ - 2829 + 2946 ], "max": [ - 3241 + 3358 ], "min": [ - 3243 + 3360 ], "stddev": [ - 3253 + 3370 ], "stddev_pop": [ - 3255 + 3372 ], "stddev_samp": [ - 3257 + 3374 ], "sum": [ - 3261 + 3378 ], "var_pop": [ - 3265 + 3382 ], "var_samp": [ - 3267 + 3384 ], "variance": [ - 3269 + 3386 ], "__typename": [ - 78 + 80 ] }, "player_kills_arr_rel_insert_input": { "data": [ - 3239 + 3356 ], "on_conflict": [ - 3245 + 3362 ], "__typename": [ - 78 + 80 ] }, "player_kills_avg_fields": { "attacked_steam_id": [ - 29 + 31 ], "attacker_steam_id": [ - 29 + 31 ], "round": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "player_kills_avg_order_by": { "attacked_steam_id": [ - 2829 + 2946 ], "attacker_steam_id": [ - 2829 + 2946 ], "round": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "player_kills_bool_exp": { "_and": [ - 3195 + 3312 ], "_not": [ - 3195 + 3312 ], "_or": [ - 3195 + 3312 ], "assisted": [ - 4 + 6 ], "attacked_location": [ - 80 + 82 ], "attacked_location_coordinates": [ - 80 + 82 ], "attacked_player": [ - 3791 + 3908 ], "attacked_steam_id": [ - 182 + 254 ], "attacked_team": [ - 80 + 82 ], "attacker_location": [ - 80 + 82 ], "attacker_location_coordinates": [ - 80 + 82 ], "attacker_steam_id": [ - 182 + 254 ], "attacker_team": [ - 80 + 82 ], "blinded": [ - 4 + 6 ], "deleted_at": [ - 4377 + 4494 ], "headshot": [ - 4 + 6 ], "hitgroup": [ - 80 + 82 ], "in_air": [ - 4 + 6 ], "is_suicide": [ - 4 + 6 ], "match": [ - 2653 + 2770 ], "match_id": [ - 4923 + 4995 ], "match_map": [ - 2491 + 2608 ], "match_map_id": [ - 4923 + 4995 ], "no_scope": [ - 4 + 6 ], "player": [ - 3791 + 3908 ], "round": [ - 39 + 41 ], "team_kill": [ - 4 + 6 ], "thru_smoke": [ - 4 + 6 ], "thru_wall": [ - 4 + 6 ], "time": [ - 4377 + 4494 ], "with": [ - 80 + 82 ], "__typename": [ - 78 + 80 ] }, "player_kills_by_weapon": { "kill_count": [ - 180 + 252 ], "player": [ - 3787 + 3904 ], "player_steam_id": [ - 180 + 252 ], "with": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "player_kills_by_weapon_aggregate": { "aggregate": [ - 3200 + 3317 ], "nodes": [ - 3196 + 3313 ], "__typename": [ - 78 + 80 ] }, "player_kills_by_weapon_aggregate_bool_exp": { "count": [ - 3199 + 3316 ], "__typename": [ - 78 + 80 ] }, "player_kills_by_weapon_aggregate_bool_exp_count": { "arguments": [ - 3217 + 3334 ], "distinct": [ - 3 + 5 ], "filter": [ - 3205 + 3322 ], "predicate": [ - 39 + 41 ], "__typename": [ - 78 + 80 ] }, "player_kills_by_weapon_aggregate_fields": { "avg": [ - 3203 + 3320 ], "count": [ - 38, + 40, { "columns": [ - 3217, + 3334, "[player_kills_by_weapon_select_column!]" ], "distinct": [ - 3 + 5 ] } ], "max": [ - 3209 + 3326 ], "min": [ - 3211 + 3328 ], "stddev": [ - 3219 + 3336 ], "stddev_pop": [ - 3221 + 3338 ], "stddev_samp": [ - 3223 + 3340 ], "sum": [ - 3227 + 3344 ], "var_pop": [ - 3231 + 3348 ], "var_samp": [ - 3233 + 3350 ], "variance": [ - 3235 + 3352 ], "__typename": [ - 78 + 80 ] }, "player_kills_by_weapon_aggregate_order_by": { "avg": [ - 3204 + 3321 ], "count": [ - 2829 + 2946 ], "max": [ - 3210 + 3327 ], "min": [ - 3212 + 3329 ], "stddev": [ - 3220 + 3337 ], "stddev_pop": [ - 3222 + 3339 ], "stddev_samp": [ - 3224 + 3341 ], "sum": [ - 3228 + 3345 ], "var_pop": [ - 3232 + 3349 ], "var_samp": [ - 3234 + 3351 ], "variance": [ - 3236 + 3353 ], "__typename": [ - 78 + 80 ] }, "player_kills_by_weapon_arr_rel_insert_input": { "data": [ - 3208 + 3325 ], "on_conflict": [ - 3214 + 3331 ], "__typename": [ - 78 + 80 ] }, "player_kills_by_weapon_avg_fields": { "kill_count": [ - 29 + 31 ], "player_steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "player_kills_by_weapon_avg_order_by": { "kill_count": [ - 2829 + 2946 ], "player_steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "player_kills_by_weapon_bool_exp": { "_and": [ - 3205 + 3322 ], "_not": [ - 3205 + 3322 ], "_or": [ - 3205 + 3322 ], "kill_count": [ - 182 + 254 ], "player": [ - 3791 + 3908 ], "player_steam_id": [ - 182 + 254 ], "with": [ - 80 + 82 ], "__typename": [ - 78 + 80 ] }, "player_kills_by_weapon_constraint": {}, "player_kills_by_weapon_inc_input": { "kill_count": [ - 180 + 252 ], "player_steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "player_kills_by_weapon_insert_input": { "kill_count": [ - 180 + 252 ], "player": [ - 3798 + 3915 ], "player_steam_id": [ - 180 + 252 ], "with": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "player_kills_by_weapon_max_fields": { "kill_count": [ - 180 + 252 ], "player_steam_id": [ - 180 + 252 ], "with": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "player_kills_by_weapon_max_order_by": { "kill_count": [ - 2829 + 2946 ], "player_steam_id": [ - 2829 + 2946 ], "with": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "player_kills_by_weapon_min_fields": { "kill_count": [ - 180 + 252 ], "player_steam_id": [ - 180 + 252 ], "with": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "player_kills_by_weapon_min_order_by": { "kill_count": [ - 2829 + 2946 ], "player_steam_id": [ - 2829 + 2946 ], "with": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "player_kills_by_weapon_mutation_response": { "affected_rows": [ - 38 + 40 ], "returning": [ - 3196 + 3313 ], "__typename": [ - 78 + 80 ] }, "player_kills_by_weapon_on_conflict": { "constraint": [ - 3206 + 3323 ], "update_columns": [ - 3229 + 3346 ], "where": [ - 3205 + 3322 ], "__typename": [ - 78 + 80 ] }, "player_kills_by_weapon_order_by": { "kill_count": [ - 2829 + 2946 ], "player": [ - 3800 + 3917 ], "player_steam_id": [ - 2829 + 2946 ], "with": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "player_kills_by_weapon_pk_columns_input": { "player_steam_id": [ - 180 + 252 ], "with": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "player_kills_by_weapon_select_column": {}, "player_kills_by_weapon_set_input": { "kill_count": [ - 180 + 252 ], "player_steam_id": [ - 180 + 252 ], "with": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "player_kills_by_weapon_stddev_fields": { "kill_count": [ - 29 + 31 ], "player_steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "player_kills_by_weapon_stddev_order_by": { "kill_count": [ - 2829 + 2946 ], "player_steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "player_kills_by_weapon_stddev_pop_fields": { "kill_count": [ - 29 + 31 ], "player_steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "player_kills_by_weapon_stddev_pop_order_by": { "kill_count": [ - 2829 + 2946 ], "player_steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "player_kills_by_weapon_stddev_samp_fields": { "kill_count": [ - 29 + 31 ], "player_steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "player_kills_by_weapon_stddev_samp_order_by": { "kill_count": [ - 2829 + 2946 ], "player_steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "player_kills_by_weapon_stream_cursor_input": { "initial_value": [ - 3226 + 3343 ], "ordering": [ - 236 + 308 ], "__typename": [ - 78 + 80 ] }, "player_kills_by_weapon_stream_cursor_value_input": { "kill_count": [ - 180 + 252 ], "player_steam_id": [ - 180 + 252 ], "with": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "player_kills_by_weapon_sum_fields": { "kill_count": [ - 180 + 252 ], "player_steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "player_kills_by_weapon_sum_order_by": { "kill_count": [ - 2829 + 2946 ], "player_steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "player_kills_by_weapon_update_column": {}, "player_kills_by_weapon_updates": { "_inc": [ - 3207 + 3324 ], "_set": [ - 3218 + 3335 ], "where": [ - 3205 + 3322 ], "__typename": [ - 78 + 80 ] }, "player_kills_by_weapon_var_pop_fields": { "kill_count": [ - 29 + 31 ], "player_steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "player_kills_by_weapon_var_pop_order_by": { "kill_count": [ - 2829 + 2946 ], "player_steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "player_kills_by_weapon_var_samp_fields": { "kill_count": [ - 29 + 31 ], "player_steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "player_kills_by_weapon_var_samp_order_by": { "kill_count": [ - 2829 + 2946 ], "player_steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "player_kills_by_weapon_variance_fields": { "kill_count": [ - 29 + 31 ], "player_steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "player_kills_by_weapon_variance_order_by": { "kill_count": [ - 2829 + 2946 ], "player_steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "player_kills_constraint": {}, "player_kills_inc_input": { "attacked_steam_id": [ - 180 + 252 ], "attacker_steam_id": [ - 180 + 252 ], "round": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "player_kills_insert_input": { "assisted": [ - 3 + 5 ], "attacked_location": [ - 78 + 80 ], "attacked_location_coordinates": [ - 78 + 80 ], "attacked_player": [ - 3798 + 3915 ], "attacked_steam_id": [ - 180 + 252 ], "attacked_team": [ - 78 + 80 ], "attacker_location": [ - 78 + 80 ], "attacker_location_coordinates": [ - 78 + 80 ], "attacker_steam_id": [ - 180 + 252 ], "attacker_team": [ - 78 + 80 ], "blinded": [ - 3 + 5 ], "deleted_at": [ - 4376 + 4493 ], "headshot": [ - 3 + 5 ], "hitgroup": [ - 78 + 80 ], "in_air": [ - 3 + 5 ], "match": [ - 2662 + 2779 ], "match_id": [ - 4921 + 4993 ], "match_map": [ - 2500 + 2617 ], "match_map_id": [ - 4921 + 4993 ], "no_scope": [ - 3 + 5 ], "player": [ - 3798 + 3915 ], "round": [ - 38 + 40 ], "thru_smoke": [ - 3 + 5 ], "thru_wall": [ - 3 + 5 ], "time": [ - 4376 + 4493 ], "with": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "player_kills_max_fields": { "attacked_location": [ - 78 + 80 ], "attacked_location_coordinates": [ - 78 + 80 ], "attacked_steam_id": [ - 180 + 252 ], "attacked_team": [ - 78 + 80 ], "attacker_location": [ - 78 + 80 ], "attacker_location_coordinates": [ - 78 + 80 ], "attacker_steam_id": [ - 180 + 252 ], "attacker_team": [ - 78 + 80 ], "deleted_at": [ - 4376 + 4493 ], "hitgroup": [ - 78 + 80 ], "match_id": [ - 4921 + 4993 ], "match_map_id": [ - 4921 + 4993 ], "round": [ - 38 + 40 ], "time": [ - 4376 + 4493 ], "with": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "player_kills_max_order_by": { "attacked_location": [ - 2829 + 2946 ], "attacked_location_coordinates": [ - 2829 + 2946 ], "attacked_steam_id": [ - 2829 + 2946 ], "attacked_team": [ - 2829 + 2946 ], "attacker_location": [ - 2829 + 2946 ], "attacker_location_coordinates": [ - 2829 + 2946 ], "attacker_steam_id": [ - 2829 + 2946 ], "attacker_team": [ - 2829 + 2946 ], "deleted_at": [ - 2829 + 2946 ], "hitgroup": [ - 2829 + 2946 ], "match_id": [ - 2829 + 2946 ], "match_map_id": [ - 2829 + 2946 ], "round": [ - 2829 + 2946 ], "time": [ - 2829 + 2946 ], "with": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "player_kills_min_fields": { "attacked_location": [ - 78 + 80 ], "attacked_location_coordinates": [ - 78 + 80 ], "attacked_steam_id": [ - 180 + 252 ], "attacked_team": [ - 78 + 80 ], "attacker_location": [ - 78 + 80 ], "attacker_location_coordinates": [ - 78 + 80 ], "attacker_steam_id": [ - 180 + 252 ], "attacker_team": [ - 78 + 80 ], "deleted_at": [ - 4376 + 4493 ], "hitgroup": [ - 78 + 80 ], "match_id": [ - 4921 + 4993 ], "match_map_id": [ - 4921 + 4993 ], "round": [ - 38 + 40 ], "time": [ - 4376 + 4493 ], "with": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "player_kills_min_order_by": { "attacked_location": [ - 2829 + 2946 ], "attacked_location_coordinates": [ - 2829 + 2946 ], "attacked_steam_id": [ - 2829 + 2946 ], "attacked_team": [ - 2829 + 2946 ], "attacker_location": [ - 2829 + 2946 ], "attacker_location_coordinates": [ - 2829 + 2946 ], "attacker_steam_id": [ - 2829 + 2946 ], "attacker_team": [ - 2829 + 2946 ], "deleted_at": [ - 2829 + 2946 ], "hitgroup": [ - 2829 + 2946 ], "match_id": [ - 2829 + 2946 ], "match_map_id": [ - 2829 + 2946 ], "round": [ - 2829 + 2946 ], "time": [ - 2829 + 2946 ], "with": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "player_kills_mutation_response": { "affected_rows": [ - 38 + 40 ], "returning": [ - 3184 + 3301 ], "__typename": [ - 78 + 80 ] }, "player_kills_on_conflict": { "constraint": [ - 3237 + 3354 ], "update_columns": [ - 3262 + 3379 ], "where": [ - 3195 + 3312 ], "__typename": [ - 78 + 80 ] }, "player_kills_order_by": { "assisted": [ - 2829 + 2946 ], "attacked_location": [ - 2829 + 2946 ], "attacked_location_coordinates": [ - 2829 + 2946 ], "attacked_player": [ - 3800 + 3917 ], "attacked_steam_id": [ - 2829 + 2946 ], "attacked_team": [ - 2829 + 2946 ], "attacker_location": [ - 2829 + 2946 ], "attacker_location_coordinates": [ - 2829 + 2946 ], "attacker_steam_id": [ - 2829 + 2946 ], "attacker_team": [ - 2829 + 2946 ], "blinded": [ - 2829 + 2946 ], "deleted_at": [ - 2829 + 2946 ], "headshot": [ - 2829 + 2946 ], "hitgroup": [ - 2829 + 2946 ], "in_air": [ - 2829 + 2946 ], "is_suicide": [ - 2829 + 2946 ], "match": [ - 2664 + 2781 ], "match_id": [ - 2829 + 2946 ], "match_map": [ - 2502 + 2619 ], "match_map_id": [ - 2829 + 2946 ], "no_scope": [ - 2829 + 2946 ], "player": [ - 3800 + 3917 ], "round": [ - 2829 + 2946 ], "team_kill": [ - 2829 + 2946 ], "thru_smoke": [ - 2829 + 2946 ], "thru_wall": [ - 2829 + 2946 ], "time": [ - 2829 + 2946 ], "with": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "player_kills_pk_columns_input": { "attacked_steam_id": [ - 180 + 252 ], "attacker_steam_id": [ - 180 + 252 ], "match_map_id": [ - 4921 + 4993 ], "time": [ - 4376 + 4493 ], "__typename": [ - 78 + 80 ] }, "player_kills_select_column": {}, @@ -64738,17021 +66965,17021 @@ export default { "player_kills_select_column_player_kills_aggregate_bool_exp_bool_or_arguments_columns": {}, "player_kills_set_input": { "assisted": [ - 3 + 5 ], "attacked_location": [ - 78 + 80 ], "attacked_location_coordinates": [ - 78 + 80 ], "attacked_steam_id": [ - 180 + 252 ], "attacked_team": [ - 78 + 80 ], "attacker_location": [ - 78 + 80 ], "attacker_location_coordinates": [ - 78 + 80 ], "attacker_steam_id": [ - 180 + 252 ], "attacker_team": [ - 78 + 80 ], "blinded": [ - 3 + 5 ], "deleted_at": [ - 4376 + 4493 ], "headshot": [ - 3 + 5 ], "hitgroup": [ - 78 + 80 ], "in_air": [ - 3 + 5 ], "match_id": [ - 4921 + 4993 ], "match_map_id": [ - 4921 + 4993 ], "no_scope": [ - 3 + 5 ], "round": [ - 38 + 40 ], "thru_smoke": [ - 3 + 5 ], "thru_wall": [ - 3 + 5 ], "time": [ - 4376 + 4493 ], "with": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "player_kills_stddev_fields": { "attacked_steam_id": [ - 29 + 31 ], "attacker_steam_id": [ - 29 + 31 ], "round": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "player_kills_stddev_order_by": { "attacked_steam_id": [ - 2829 + 2946 ], "attacker_steam_id": [ - 2829 + 2946 ], "round": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "player_kills_stddev_pop_fields": { "attacked_steam_id": [ - 29 + 31 ], "attacker_steam_id": [ - 29 + 31 ], "round": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "player_kills_stddev_pop_order_by": { "attacked_steam_id": [ - 2829 + 2946 ], "attacker_steam_id": [ - 2829 + 2946 ], "round": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "player_kills_stddev_samp_fields": { "attacked_steam_id": [ - 29 + 31 ], "attacker_steam_id": [ - 29 + 31 ], "round": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "player_kills_stddev_samp_order_by": { "attacked_steam_id": [ - 2829 + 2946 ], "attacker_steam_id": [ - 2829 + 2946 ], "round": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "player_kills_stream_cursor_input": { "initial_value": [ - 3259 + 3376 ], "ordering": [ - 236 + 308 ], "__typename": [ - 78 + 80 ] }, "player_kills_stream_cursor_value_input": { "assisted": [ - 3 + 5 ], "attacked_location": [ - 78 + 80 ], "attacked_location_coordinates": [ - 78 + 80 ], "attacked_steam_id": [ - 180 + 252 ], "attacked_team": [ - 78 + 80 ], "attacker_location": [ - 78 + 80 ], "attacker_location_coordinates": [ - 78 + 80 ], "attacker_steam_id": [ - 180 + 252 ], "attacker_team": [ - 78 + 80 ], "blinded": [ - 3 + 5 ], "deleted_at": [ - 4376 + 4493 ], "headshot": [ - 3 + 5 ], "hitgroup": [ - 78 + 80 ], "in_air": [ - 3 + 5 ], "match_id": [ - 4921 + 4993 ], "match_map_id": [ - 4921 + 4993 ], "no_scope": [ - 3 + 5 ], "round": [ - 38 + 40 ], "thru_smoke": [ - 3 + 5 ], "thru_wall": [ - 3 + 5 ], "time": [ - 4376 + 4493 ], "with": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "player_kills_sum_fields": { "attacked_steam_id": [ - 180 + 252 ], "attacker_steam_id": [ - 180 + 252 ], "round": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "player_kills_sum_order_by": { "attacked_steam_id": [ - 2829 + 2946 ], "attacker_steam_id": [ - 2829 + 2946 ], "round": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "player_kills_update_column": {}, "player_kills_updates": { "_inc": [ - 3238 + 3355 ], "_set": [ - 3251 + 3368 ], "where": [ - 3195 + 3312 ], "__typename": [ - 78 + 80 ] }, "player_kills_var_pop_fields": { "attacked_steam_id": [ - 29 + 31 ], "attacker_steam_id": [ - 29 + 31 ], "round": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "player_kills_var_pop_order_by": { "attacked_steam_id": [ - 2829 + 2946 ], "attacker_steam_id": [ - 2829 + 2946 ], "round": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "player_kills_var_samp_fields": { "attacked_steam_id": [ - 29 + 31 ], "attacker_steam_id": [ - 29 + 31 ], "round": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "player_kills_var_samp_order_by": { "attacked_steam_id": [ - 2829 + 2946 ], "attacker_steam_id": [ - 2829 + 2946 ], "round": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "player_kills_variance_fields": { "attacked_steam_id": [ - 29 + 31 ], "attacker_steam_id": [ - 29 + 31 ], "round": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "player_kills_variance_order_by": { "attacked_steam_id": [ - 2829 + 2946 ], "attacker_steam_id": [ - 2829 + 2946 ], "round": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "player_leaderboard_rank": { "player_steam_id": [ - 78 + 80 ], "rank": [ - 38 + 40 ], "total": [ - 38 + 40 ], "value": [ - 1547 + 1664 ], "__typename": [ - 78 + 80 ] }, "player_leaderboard_rank_aggregate": { "aggregate": [ - 3272 + 3389 ], "nodes": [ - 3270 + 3387 ], "__typename": [ - 78 + 80 ] }, "player_leaderboard_rank_aggregate_fields": { "avg": [ - 3273 + 3390 ], "count": [ - 38, + 40, { "columns": [ - 3281, + 3398, "[player_leaderboard_rank_select_column!]" ], "distinct": [ - 3 + 5 ] } ], "max": [ - 3277 + 3394 ], "min": [ - 3278 + 3395 ], "stddev": [ - 3283 + 3400 ], "stddev_pop": [ - 3284 + 3401 ], "stddev_samp": [ - 3285 + 3402 ], "sum": [ - 3288 + 3405 ], "var_pop": [ - 3290 + 3407 ], "var_samp": [ - 3291 + 3408 ], "variance": [ - 3292 + 3409 ], "__typename": [ - 78 + 80 ] }, "player_leaderboard_rank_avg_fields": { "rank": [ - 29 + 31 ], "total": [ - 29 + 31 ], "value": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "player_leaderboard_rank_bool_exp": { "_and": [ - 3274 + 3391 ], "_not": [ - 3274 + 3391 ], "_or": [ - 3274 + 3391 ], "player_steam_id": [ - 80 + 82 ], "rank": [ - 39 + 41 ], "total": [ - 39 + 41 ], "value": [ - 1548 + 1665 ], "__typename": [ - 78 + 80 ] }, "player_leaderboard_rank_inc_input": { "rank": [ - 38 + 40 ], "total": [ - 38 + 40 ], "value": [ - 1547 + 1664 ], "__typename": [ - 78 + 80 ] }, "player_leaderboard_rank_insert_input": { "player_steam_id": [ - 78 + 80 ], "rank": [ - 38 + 40 ], "total": [ - 38 + 40 ], "value": [ - 1547 + 1664 ], "__typename": [ - 78 + 80 ] }, "player_leaderboard_rank_max_fields": { "player_steam_id": [ - 78 + 80 ], "rank": [ - 38 + 40 ], "total": [ - 38 + 40 ], "value": [ - 1547 + 1664 ], "__typename": [ - 78 + 80 ] }, "player_leaderboard_rank_min_fields": { "player_steam_id": [ - 78 + 80 ], "rank": [ - 38 + 40 ], "total": [ - 38 + 40 ], "value": [ - 1547 + 1664 ], "__typename": [ - 78 + 80 ] }, "player_leaderboard_rank_mutation_response": { "affected_rows": [ - 38 + 40 ], "returning": [ - 3270 + 3387 ], "__typename": [ - 78 + 80 ] }, "player_leaderboard_rank_order_by": { "player_steam_id": [ - 2829 + 2946 ], "rank": [ - 2829 + 2946 ], "total": [ - 2829 + 2946 ], "value": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "player_leaderboard_rank_select_column": {}, "player_leaderboard_rank_set_input": { "player_steam_id": [ - 78 + 80 ], "rank": [ - 38 + 40 ], "total": [ - 38 + 40 ], "value": [ - 1547 + 1664 ], "__typename": [ - 78 + 80 ] }, "player_leaderboard_rank_stddev_fields": { "rank": [ - 29 + 31 ], "total": [ - 29 + 31 ], "value": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "player_leaderboard_rank_stddev_pop_fields": { "rank": [ - 29 + 31 ], "total": [ - 29 + 31 ], "value": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "player_leaderboard_rank_stddev_samp_fields": { "rank": [ - 29 + 31 ], "total": [ - 29 + 31 ], "value": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "player_leaderboard_rank_stream_cursor_input": { "initial_value": [ - 3287 + 3404 ], "ordering": [ - 236 + 308 ], "__typename": [ - 78 + 80 ] }, "player_leaderboard_rank_stream_cursor_value_input": { "player_steam_id": [ - 78 + 80 ], "rank": [ - 38 + 40 ], "total": [ - 38 + 40 ], "value": [ - 1547 + 1664 ], "__typename": [ - 78 + 80 ] }, "player_leaderboard_rank_sum_fields": { "rank": [ - 38 + 40 ], "total": [ - 38 + 40 ], "value": [ - 1547 + 1664 ], "__typename": [ - 78 + 80 ] }, "player_leaderboard_rank_updates": { "_inc": [ - 3275 + 3392 ], "_set": [ - 3282 + 3399 ], "where": [ - 3274 + 3391 ], "__typename": [ - 78 + 80 ] }, "player_leaderboard_rank_var_pop_fields": { "rank": [ - 29 + 31 ], "total": [ - 29 + 31 ], "value": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "player_leaderboard_rank_var_samp_fields": { "rank": [ - 29 + 31 ], "total": [ - 29 + 31 ], "value": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "player_leaderboard_rank_variance_fields": { "rank": [ - 29 + 31 ], "total": [ - 29 + 31 ], "value": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "player_match_map_stats": { "assists": [ - 38 + 40 ], "assists_ct": [ - 38 + 40 ], "assists_t": [ - 38 + 40 ], "counter_strafe_eligible_shots": [ - 38 + 40 ], "counter_strafed_shots": [ - 38 + 40 ], "crosshair_angle_count": [ - 38 + 40 ], "crosshair_angle_sum_deg": [ - 2827 + 2944 ], "damage": [ - 38 + 40 ], "damage_ct": [ - 38 + 40 ], "damage_t": [ - 38 + 40 ], "deaths": [ - 38 + 40 ], "deaths_ct": [ - 38 + 40 ], "deaths_t": [ - 38 + 40 ], "decoy_throws": [ - 38 + 40 ], "enemies_flashed": [ - 38 + 40 ], "first_bullet_hits": [ - 38 + 40 ], "first_bullet_shots": [ - 38 + 40 ], "five_kill_rounds": [ - 38 + 40 ], "flash_assists": [ - 38 + 40 ], "flash_duration_count": [ - 38 + 40 ], "flash_duration_sum": [ - 2827 + 2944 ], "flashes_thrown": [ - 38 + 40 ], "four_kill_rounds": [ - 38 + 40 ], "he_damage": [ - 38 + 40 ], "he_team_damage": [ - 38 + 40 ], "he_throws": [ - 38 + 40 ], "headshot_hits": [ - 38 + 40 ], "hits": [ - 38 + 40 ], "hits_at_spotted": [ - 38 + 40 ], "hs_kills": [ - 38 + 40 ], "hs_kills_ct": [ - 38 + 40 ], "hs_kills_t": [ - 38 + 40 ], "kast_rounds": [ - 38 + 40 ], "kast_total_rounds": [ - 38 + 40 ], "kills": [ - 38 + 40 ], "kills_ct": [ - 38 + 40 ], "kills_t": [ - 38 + 40 ], "knife_kills": [ - 38 + 40 ], "match": [ - 2644 + 2761 ], "match_id": [ - 4921 + 4993 ], "match_map": [ - 2482 + 2599 ], "match_map_id": [ - 4921 + 4993 ], "molotov_damage": [ - 38 + 40 ], "molotov_throws": [ - 38 + 40 ], "non_awp_hits": [ - 38 + 40 ], "on_target_frames": [ - 38 + 40 ], "player": [ - 3787 + 3904 ], "rounds_ct": [ - 38 + 40 ], "rounds_played": [ - 38 + 40 ], "rounds_t": [ - 38 + 40 ], "shots_at_spotted": [ - 38 + 40 ], "shots_fired": [ - 38 + 40 ], "smoke_throws": [ - 38 + 40 ], "spotted_count": [ - 38 + 40 ], "spotted_with_damage_count": [ - 38 + 40 ], "spray_hits": [ - 38 + 40 ], "spray_shots": [ - 38 + 40 ], "steam_id": [ - 180 + 252 ], "team_damage": [ - 38 + 40 ], "team_flashed": [ - 38 + 40 ], "three_kill_rounds": [ - 38 + 40 ], "time_to_damage_count": [ - 38 + 40 ], "time_to_damage_sum_s": [ - 2827 + 2944 ], "total_engagement_frames": [ - 38 + 40 ], "trade_kill_attempts": [ - 38 + 40 ], "trade_kill_opportunities": [ - 38 + 40 ], "trade_kill_successes": [ - 38 + 40 ], "traded_death_attempts": [ - 38 + 40 ], "traded_death_opportunities": [ - 38 + 40 ], "traded_death_successes": [ - 38 + 40 ], "two_kill_rounds": [ - 38 + 40 ], "unused_utility_value": [ - 38 + 40 ], "updated_at": [ - 4376 + 4493 ], "util_on_death_count": [ - 38 + 40 ], "util_on_death_sum": [ - 38 + 40 ], "wasted_magazine_shots": [ - 38 + 40 ], "zeus_kills": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "player_match_map_stats_aggregate": { "aggregate": [ - 3297 + 3414 ], "nodes": [ - 3293 + 3410 ], "__typename": [ - 78 + 80 ] }, "player_match_map_stats_aggregate_bool_exp": { "count": [ - 3296 + 3413 ], "__typename": [ - 78 + 80 ] }, "player_match_map_stats_aggregate_bool_exp_count": { "arguments": [ - 3314 + 3431 ], "distinct": [ - 3 + 5 ], "filter": [ - 3302 + 3419 ], "predicate": [ - 39 + 41 ], "__typename": [ - 78 + 80 ] }, "player_match_map_stats_aggregate_fields": { "avg": [ - 3300 + 3417 ], "count": [ - 38, + 40, { "columns": [ - 3314, + 3431, "[player_match_map_stats_select_column!]" ], "distinct": [ - 3 + 5 ] } ], "max": [ - 3306 + 3423 ], "min": [ - 3308 + 3425 ], "stddev": [ - 3316 + 3433 ], "stddev_pop": [ - 3318 + 3435 ], "stddev_samp": [ - 3320 + 3437 ], "sum": [ - 3324 + 3441 ], "var_pop": [ - 3328 + 3445 ], "var_samp": [ - 3330 + 3447 ], "variance": [ - 3332 + 3449 ], "__typename": [ - 78 + 80 ] }, "player_match_map_stats_aggregate_order_by": { "avg": [ - 3301 + 3418 ], "count": [ - 2829 + 2946 ], "max": [ - 3307 + 3424 ], "min": [ - 3309 + 3426 ], "stddev": [ - 3317 + 3434 ], "stddev_pop": [ - 3319 + 3436 ], "stddev_samp": [ - 3321 + 3438 ], "sum": [ - 3325 + 3442 ], "var_pop": [ - 3329 + 3446 ], "var_samp": [ - 3331 + 3448 ], "variance": [ - 3333 + 3450 ], "__typename": [ - 78 + 80 ] }, "player_match_map_stats_arr_rel_insert_input": { "data": [ - 3305 + 3422 ], "on_conflict": [ - 3311 + 3428 ], "__typename": [ - 78 + 80 ] }, "player_match_map_stats_avg_fields": { "assists": [ - 29 + 31 ], "assists_ct": [ - 29 + 31 ], "assists_t": [ - 29 + 31 ], "counter_strafe_eligible_shots": [ - 29 + 31 ], "counter_strafed_shots": [ - 29 + 31 ], "crosshair_angle_count": [ - 29 + 31 ], "crosshair_angle_sum_deg": [ - 29 + 31 ], "damage": [ - 29 + 31 ], "damage_ct": [ - 29 + 31 ], "damage_t": [ - 29 + 31 ], "deaths": [ - 29 + 31 ], "deaths_ct": [ - 29 + 31 ], "deaths_t": [ - 29 + 31 ], "decoy_throws": [ - 29 + 31 ], "enemies_flashed": [ - 29 + 31 ], "first_bullet_hits": [ - 29 + 31 ], "first_bullet_shots": [ - 29 + 31 ], "five_kill_rounds": [ - 29 + 31 ], "flash_assists": [ - 29 + 31 ], "flash_duration_count": [ - 29 + 31 ], "flash_duration_sum": [ - 29 + 31 ], "flashes_thrown": [ - 29 + 31 ], "four_kill_rounds": [ - 29 + 31 ], "he_damage": [ - 29 + 31 ], "he_team_damage": [ - 29 + 31 ], "he_throws": [ - 29 + 31 ], "headshot_hits": [ - 29 + 31 ], "hits": [ - 29 + 31 ], "hits_at_spotted": [ - 29 + 31 ], "hs_kills": [ - 29 + 31 ], "hs_kills_ct": [ - 29 + 31 ], "hs_kills_t": [ - 29 + 31 ], "kast_rounds": [ - 29 + 31 ], "kast_total_rounds": [ - 29 + 31 ], "kills": [ - 29 + 31 ], "kills_ct": [ - 29 + 31 ], "kills_t": [ - 29 + 31 ], "knife_kills": [ - 29 + 31 ], "molotov_damage": [ - 29 + 31 ], "molotov_throws": [ - 29 + 31 ], "non_awp_hits": [ - 29 + 31 ], "on_target_frames": [ - 29 + 31 ], "rounds_ct": [ - 29 + 31 ], "rounds_played": [ - 29 + 31 ], "rounds_t": [ - 29 + 31 ], "shots_at_spotted": [ - 29 + 31 ], "shots_fired": [ - 29 + 31 ], "smoke_throws": [ - 29 + 31 ], "spotted_count": [ - 29 + 31 ], "spotted_with_damage_count": [ - 29 + 31 ], "spray_hits": [ - 29 + 31 ], "spray_shots": [ - 29 + 31 ], "steam_id": [ - 29 + 31 ], "team_damage": [ - 29 + 31 ], "team_flashed": [ - 29 + 31 ], "three_kill_rounds": [ - 29 + 31 ], "time_to_damage_count": [ - 29 + 31 ], "time_to_damage_sum_s": [ - 29 + 31 ], "total_engagement_frames": [ - 29 + 31 ], "trade_kill_attempts": [ - 29 + 31 ], "trade_kill_opportunities": [ - 29 + 31 ], "trade_kill_successes": [ - 29 + 31 ], "traded_death_attempts": [ - 29 + 31 ], "traded_death_opportunities": [ - 29 + 31 ], "traded_death_successes": [ - 29 + 31 ], "two_kill_rounds": [ - 29 + 31 ], "unused_utility_value": [ - 29 + 31 ], "util_on_death_count": [ - 29 + 31 ], "util_on_death_sum": [ - 29 + 31 ], "wasted_magazine_shots": [ - 29 + 31 ], "zeus_kills": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "player_match_map_stats_avg_order_by": { "assists": [ - 2829 + 2946 ], "assists_ct": [ - 2829 + 2946 ], "assists_t": [ - 2829 + 2946 ], "counter_strafe_eligible_shots": [ - 2829 + 2946 ], "counter_strafed_shots": [ - 2829 + 2946 ], "crosshair_angle_count": [ - 2829 + 2946 ], "crosshair_angle_sum_deg": [ - 2829 + 2946 ], "damage": [ - 2829 + 2946 ], "damage_ct": [ - 2829 + 2946 ], "damage_t": [ - 2829 + 2946 ], "deaths": [ - 2829 + 2946 ], "deaths_ct": [ - 2829 + 2946 ], "deaths_t": [ - 2829 + 2946 ], "decoy_throws": [ - 2829 + 2946 ], "enemies_flashed": [ - 2829 + 2946 ], "first_bullet_hits": [ - 2829 + 2946 ], "first_bullet_shots": [ - 2829 + 2946 ], "five_kill_rounds": [ - 2829 + 2946 ], "flash_assists": [ - 2829 + 2946 ], "flash_duration_count": [ - 2829 + 2946 ], "flash_duration_sum": [ - 2829 + 2946 ], "flashes_thrown": [ - 2829 + 2946 ], "four_kill_rounds": [ - 2829 + 2946 ], "he_damage": [ - 2829 + 2946 ], "he_team_damage": [ - 2829 + 2946 ], "he_throws": [ - 2829 + 2946 ], "headshot_hits": [ - 2829 + 2946 ], "hits": [ - 2829 + 2946 ], "hits_at_spotted": [ - 2829 + 2946 ], "hs_kills": [ - 2829 + 2946 ], "hs_kills_ct": [ - 2829 + 2946 ], "hs_kills_t": [ - 2829 + 2946 ], "kast_rounds": [ - 2829 + 2946 ], "kast_total_rounds": [ - 2829 + 2946 ], "kills": [ - 2829 + 2946 ], "kills_ct": [ - 2829 + 2946 ], "kills_t": [ - 2829 + 2946 ], "knife_kills": [ - 2829 + 2946 ], "molotov_damage": [ - 2829 + 2946 ], "molotov_throws": [ - 2829 + 2946 ], "non_awp_hits": [ - 2829 + 2946 ], "on_target_frames": [ - 2829 + 2946 ], "rounds_ct": [ - 2829 + 2946 ], "rounds_played": [ - 2829 + 2946 ], "rounds_t": [ - 2829 + 2946 ], "shots_at_spotted": [ - 2829 + 2946 ], "shots_fired": [ - 2829 + 2946 ], "smoke_throws": [ - 2829 + 2946 ], "spotted_count": [ - 2829 + 2946 ], "spotted_with_damage_count": [ - 2829 + 2946 ], "spray_hits": [ - 2829 + 2946 ], "spray_shots": [ - 2829 + 2946 ], "steam_id": [ - 2829 + 2946 ], "team_damage": [ - 2829 + 2946 ], "team_flashed": [ - 2829 + 2946 ], "three_kill_rounds": [ - 2829 + 2946 ], "time_to_damage_count": [ - 2829 + 2946 ], "time_to_damage_sum_s": [ - 2829 + 2946 ], "total_engagement_frames": [ - 2829 + 2946 ], "trade_kill_attempts": [ - 2829 + 2946 ], "trade_kill_opportunities": [ - 2829 + 2946 ], "trade_kill_successes": [ - 2829 + 2946 ], "traded_death_attempts": [ - 2829 + 2946 ], "traded_death_opportunities": [ - 2829 + 2946 ], "traded_death_successes": [ - 2829 + 2946 ], "two_kill_rounds": [ - 2829 + 2946 ], "unused_utility_value": [ - 2829 + 2946 ], "util_on_death_count": [ - 2829 + 2946 ], "util_on_death_sum": [ - 2829 + 2946 ], "wasted_magazine_shots": [ - 2829 + 2946 ], "zeus_kills": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "player_match_map_stats_bool_exp": { "_and": [ - 3302 + 3419 ], "_not": [ - 3302 + 3419 ], "_or": [ - 3302 + 3419 ], "assists": [ - 39 + 41 ], "assists_ct": [ - 39 + 41 ], "assists_t": [ - 39 + 41 ], "counter_strafe_eligible_shots": [ - 39 + 41 ], "counter_strafed_shots": [ - 39 + 41 ], "crosshair_angle_count": [ - 39 + 41 ], "crosshair_angle_sum_deg": [ - 2828 + 2945 ], "damage": [ - 39 + 41 ], "damage_ct": [ - 39 + 41 ], "damage_t": [ - 39 + 41 ], "deaths": [ - 39 + 41 ], "deaths_ct": [ - 39 + 41 ], "deaths_t": [ - 39 + 41 ], "decoy_throws": [ - 39 + 41 ], "enemies_flashed": [ - 39 + 41 ], "first_bullet_hits": [ - 39 + 41 ], "first_bullet_shots": [ - 39 + 41 ], "five_kill_rounds": [ - 39 + 41 ], "flash_assists": [ - 39 + 41 ], "flash_duration_count": [ - 39 + 41 ], "flash_duration_sum": [ - 2828 + 2945 ], "flashes_thrown": [ - 39 + 41 ], "four_kill_rounds": [ - 39 + 41 ], "he_damage": [ - 39 + 41 ], "he_team_damage": [ - 39 + 41 ], "he_throws": [ - 39 + 41 ], "headshot_hits": [ - 39 + 41 ], "hits": [ - 39 + 41 ], "hits_at_spotted": [ - 39 + 41 ], "hs_kills": [ - 39 + 41 ], "hs_kills_ct": [ - 39 + 41 ], "hs_kills_t": [ - 39 + 41 ], "kast_rounds": [ - 39 + 41 ], "kast_total_rounds": [ - 39 + 41 ], "kills": [ - 39 + 41 ], "kills_ct": [ - 39 + 41 ], "kills_t": [ - 39 + 41 ], "knife_kills": [ - 39 + 41 ], "match": [ - 2653 + 2770 ], "match_id": [ - 4923 + 4995 ], "match_map": [ - 2491 + 2608 ], "match_map_id": [ - 4923 + 4995 ], "molotov_damage": [ - 39 + 41 ], "molotov_throws": [ - 39 + 41 ], "non_awp_hits": [ - 39 + 41 ], "on_target_frames": [ - 39 + 41 ], "player": [ - 3791 + 3908 ], "rounds_ct": [ - 39 + 41 ], "rounds_played": [ - 39 + 41 ], "rounds_t": [ - 39 + 41 ], "shots_at_spotted": [ - 39 + 41 ], "shots_fired": [ - 39 + 41 ], "smoke_throws": [ - 39 + 41 ], "spotted_count": [ - 39 + 41 ], "spotted_with_damage_count": [ - 39 + 41 ], "spray_hits": [ - 39 + 41 ], "spray_shots": [ - 39 + 41 ], "steam_id": [ - 182 + 254 ], "team_damage": [ - 39 + 41 ], "team_flashed": [ - 39 + 41 ], "three_kill_rounds": [ - 39 + 41 ], "time_to_damage_count": [ - 39 + 41 ], "time_to_damage_sum_s": [ - 2828 + 2945 ], "total_engagement_frames": [ - 39 + 41 ], "trade_kill_attempts": [ - 39 + 41 ], "trade_kill_opportunities": [ - 39 + 41 ], "trade_kill_successes": [ - 39 + 41 ], "traded_death_attempts": [ - 39 + 41 ], "traded_death_opportunities": [ - 39 + 41 ], "traded_death_successes": [ - 39 + 41 ], "two_kill_rounds": [ - 39 + 41 ], "unused_utility_value": [ - 39 + 41 ], "updated_at": [ - 4377 + 4494 ], "util_on_death_count": [ - 39 + 41 ], "util_on_death_sum": [ - 39 + 41 ], "wasted_magazine_shots": [ - 39 + 41 ], "zeus_kills": [ - 39 + 41 ], "__typename": [ - 78 + 80 ] }, "player_match_map_stats_constraint": {}, "player_match_map_stats_inc_input": { "assists": [ - 38 + 40 ], "assists_ct": [ - 38 + 40 ], "assists_t": [ - 38 + 40 ], "counter_strafe_eligible_shots": [ - 38 + 40 ], "counter_strafed_shots": [ - 38 + 40 ], "crosshair_angle_count": [ - 38 + 40 ], "crosshair_angle_sum_deg": [ - 2827 + 2944 ], "damage": [ - 38 + 40 ], "damage_ct": [ - 38 + 40 ], "damage_t": [ - 38 + 40 ], "deaths": [ - 38 + 40 ], "deaths_ct": [ - 38 + 40 ], "deaths_t": [ - 38 + 40 ], "decoy_throws": [ - 38 + 40 ], "enemies_flashed": [ - 38 + 40 ], "first_bullet_hits": [ - 38 + 40 ], "first_bullet_shots": [ - 38 + 40 ], "five_kill_rounds": [ - 38 + 40 ], "flash_assists": [ - 38 + 40 ], "flash_duration_count": [ - 38 + 40 ], "flash_duration_sum": [ - 2827 + 2944 ], "flashes_thrown": [ - 38 + 40 ], "four_kill_rounds": [ - 38 + 40 ], "he_damage": [ - 38 + 40 ], "he_team_damage": [ - 38 + 40 ], "he_throws": [ - 38 + 40 ], "headshot_hits": [ - 38 + 40 ], "hits": [ - 38 + 40 ], "hits_at_spotted": [ - 38 + 40 ], "hs_kills": [ - 38 + 40 ], "hs_kills_ct": [ - 38 + 40 ], "hs_kills_t": [ - 38 + 40 ], "kast_rounds": [ - 38 + 40 ], "kast_total_rounds": [ - 38 + 40 ], "kills": [ - 38 + 40 ], "kills_ct": [ - 38 + 40 ], "kills_t": [ - 38 + 40 ], "knife_kills": [ - 38 + 40 ], "molotov_damage": [ - 38 + 40 ], "molotov_throws": [ - 38 + 40 ], "non_awp_hits": [ - 38 + 40 ], "on_target_frames": [ - 38 + 40 ], "rounds_ct": [ - 38 + 40 ], "rounds_played": [ - 38 + 40 ], "rounds_t": [ - 38 + 40 ], "shots_at_spotted": [ - 38 + 40 ], "shots_fired": [ - 38 + 40 ], "smoke_throws": [ - 38 + 40 ], "spotted_count": [ - 38 + 40 ], "spotted_with_damage_count": [ - 38 + 40 ], "spray_hits": [ - 38 + 40 ], "spray_shots": [ - 38 + 40 ], "steam_id": [ - 180 + 252 ], "team_damage": [ - 38 + 40 ], "team_flashed": [ - 38 + 40 ], "three_kill_rounds": [ - 38 + 40 ], "time_to_damage_count": [ - 38 + 40 ], "time_to_damage_sum_s": [ - 2827 + 2944 ], "total_engagement_frames": [ - 38 + 40 ], "trade_kill_attempts": [ - 38 + 40 ], "trade_kill_opportunities": [ - 38 + 40 ], "trade_kill_successes": [ - 38 + 40 ], "traded_death_attempts": [ - 38 + 40 ], "traded_death_opportunities": [ - 38 + 40 ], "traded_death_successes": [ - 38 + 40 ], "two_kill_rounds": [ - 38 + 40 ], "unused_utility_value": [ - 38 + 40 ], "util_on_death_count": [ - 38 + 40 ], "util_on_death_sum": [ - 38 + 40 ], "wasted_magazine_shots": [ - 38 + 40 ], "zeus_kills": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "player_match_map_stats_insert_input": { "assists": [ - 38 + 40 ], "assists_ct": [ - 38 + 40 ], "assists_t": [ - 38 + 40 ], "counter_strafe_eligible_shots": [ - 38 + 40 ], "counter_strafed_shots": [ - 38 + 40 ], "crosshair_angle_count": [ - 38 + 40 ], "crosshair_angle_sum_deg": [ - 2827 + 2944 ], "damage": [ - 38 + 40 ], "damage_ct": [ - 38 + 40 ], "damage_t": [ - 38 + 40 ], "deaths": [ - 38 + 40 ], "deaths_ct": [ - 38 + 40 ], "deaths_t": [ - 38 + 40 ], "decoy_throws": [ - 38 + 40 ], "enemies_flashed": [ - 38 + 40 ], "first_bullet_hits": [ - 38 + 40 ], "first_bullet_shots": [ - 38 + 40 ], "five_kill_rounds": [ - 38 + 40 ], "flash_assists": [ - 38 + 40 ], "flash_duration_count": [ - 38 + 40 ], "flash_duration_sum": [ - 2827 + 2944 ], "flashes_thrown": [ - 38 + 40 ], "four_kill_rounds": [ - 38 + 40 ], "he_damage": [ - 38 + 40 ], "he_team_damage": [ - 38 + 40 ], "he_throws": [ - 38 + 40 ], "headshot_hits": [ - 38 + 40 ], "hits": [ - 38 + 40 ], "hits_at_spotted": [ - 38 + 40 ], "hs_kills": [ - 38 + 40 ], "hs_kills_ct": [ - 38 + 40 ], "hs_kills_t": [ - 38 + 40 ], "kast_rounds": [ - 38 + 40 ], "kast_total_rounds": [ - 38 + 40 ], "kills": [ - 38 + 40 ], "kills_ct": [ - 38 + 40 ], "kills_t": [ - 38 + 40 ], "knife_kills": [ - 38 + 40 ], "match": [ - 2662 + 2779 ], "match_id": [ - 4921 + 4993 ], "match_map": [ - 2500 + 2617 ], "match_map_id": [ - 4921 + 4993 ], "molotov_damage": [ - 38 + 40 ], "molotov_throws": [ - 38 + 40 ], "non_awp_hits": [ - 38 + 40 ], "on_target_frames": [ - 38 + 40 ], "player": [ - 3798 + 3915 ], "rounds_ct": [ - 38 + 40 ], "rounds_played": [ - 38 + 40 ], "rounds_t": [ - 38 + 40 ], "shots_at_spotted": [ - 38 + 40 ], "shots_fired": [ - 38 + 40 ], "smoke_throws": [ - 38 + 40 ], "spotted_count": [ - 38 + 40 ], "spotted_with_damage_count": [ - 38 + 40 ], "spray_hits": [ - 38 + 40 ], "spray_shots": [ - 38 + 40 ], "steam_id": [ - 180 + 252 ], "team_damage": [ - 38 + 40 ], "team_flashed": [ - 38 + 40 ], "three_kill_rounds": [ - 38 + 40 ], "time_to_damage_count": [ - 38 + 40 ], "time_to_damage_sum_s": [ - 2827 + 2944 ], "total_engagement_frames": [ - 38 + 40 ], "trade_kill_attempts": [ - 38 + 40 ], "trade_kill_opportunities": [ - 38 + 40 ], "trade_kill_successes": [ - 38 + 40 ], "traded_death_attempts": [ - 38 + 40 ], "traded_death_opportunities": [ - 38 + 40 ], "traded_death_successes": [ - 38 + 40 ], "two_kill_rounds": [ - 38 + 40 ], "unused_utility_value": [ - 38 + 40 ], "updated_at": [ - 4376 + 4493 ], "util_on_death_count": [ - 38 + 40 ], "util_on_death_sum": [ - 38 + 40 ], "wasted_magazine_shots": [ - 38 + 40 ], "zeus_kills": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "player_match_map_stats_max_fields": { "assists": [ - 38 + 40 ], "assists_ct": [ - 38 + 40 ], "assists_t": [ - 38 + 40 ], "counter_strafe_eligible_shots": [ - 38 + 40 ], "counter_strafed_shots": [ - 38 + 40 ], "crosshair_angle_count": [ - 38 + 40 ], "crosshair_angle_sum_deg": [ - 2827 + 2944 ], "damage": [ - 38 + 40 ], "damage_ct": [ - 38 + 40 ], "damage_t": [ - 38 + 40 ], "deaths": [ - 38 + 40 ], "deaths_ct": [ - 38 + 40 ], "deaths_t": [ - 38 + 40 ], "decoy_throws": [ - 38 + 40 ], "enemies_flashed": [ - 38 + 40 ], "first_bullet_hits": [ - 38 + 40 ], "first_bullet_shots": [ - 38 + 40 ], "five_kill_rounds": [ - 38 + 40 ], "flash_assists": [ - 38 + 40 ], "flash_duration_count": [ - 38 + 40 ], "flash_duration_sum": [ - 2827 + 2944 ], "flashes_thrown": [ - 38 + 40 ], "four_kill_rounds": [ - 38 + 40 ], "he_damage": [ - 38 + 40 ], "he_team_damage": [ - 38 + 40 ], "he_throws": [ - 38 + 40 ], "headshot_hits": [ - 38 + 40 ], "hits": [ - 38 + 40 ], "hits_at_spotted": [ - 38 + 40 ], "hs_kills": [ - 38 + 40 ], "hs_kills_ct": [ - 38 + 40 ], "hs_kills_t": [ - 38 + 40 ], "kast_rounds": [ - 38 + 40 ], "kast_total_rounds": [ - 38 + 40 ], "kills": [ - 38 + 40 ], "kills_ct": [ - 38 + 40 ], "kills_t": [ - 38 + 40 ], "knife_kills": [ - 38 + 40 ], "match_id": [ - 4921 + 4993 ], "match_map_id": [ - 4921 + 4993 ], "molotov_damage": [ - 38 + 40 ], "molotov_throws": [ - 38 + 40 ], "non_awp_hits": [ - 38 + 40 ], "on_target_frames": [ - 38 + 40 ], "rounds_ct": [ - 38 + 40 ], "rounds_played": [ - 38 + 40 ], "rounds_t": [ - 38 + 40 ], "shots_at_spotted": [ - 38 + 40 ], "shots_fired": [ - 38 + 40 ], "smoke_throws": [ - 38 + 40 ], "spotted_count": [ - 38 + 40 ], "spotted_with_damage_count": [ - 38 + 40 ], "spray_hits": [ - 38 + 40 ], "spray_shots": [ - 38 + 40 ], "steam_id": [ - 180 + 252 ], "team_damage": [ - 38 + 40 ], "team_flashed": [ - 38 + 40 ], "three_kill_rounds": [ - 38 + 40 ], "time_to_damage_count": [ - 38 + 40 ], "time_to_damage_sum_s": [ - 2827 + 2944 ], "total_engagement_frames": [ - 38 + 40 ], "trade_kill_attempts": [ - 38 + 40 ], "trade_kill_opportunities": [ - 38 + 40 ], "trade_kill_successes": [ - 38 + 40 ], "traded_death_attempts": [ - 38 + 40 ], "traded_death_opportunities": [ - 38 + 40 ], "traded_death_successes": [ - 38 + 40 ], "two_kill_rounds": [ - 38 + 40 ], "unused_utility_value": [ - 38 + 40 ], "updated_at": [ - 4376 + 4493 ], "util_on_death_count": [ - 38 + 40 ], "util_on_death_sum": [ - 38 + 40 ], "wasted_magazine_shots": [ - 38 + 40 ], "zeus_kills": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "player_match_map_stats_max_order_by": { "assists": [ - 2829 + 2946 ], "assists_ct": [ - 2829 + 2946 ], "assists_t": [ - 2829 + 2946 ], "counter_strafe_eligible_shots": [ - 2829 + 2946 ], "counter_strafed_shots": [ - 2829 + 2946 ], "crosshair_angle_count": [ - 2829 + 2946 ], "crosshair_angle_sum_deg": [ - 2829 + 2946 ], "damage": [ - 2829 + 2946 ], "damage_ct": [ - 2829 + 2946 ], "damage_t": [ - 2829 + 2946 ], "deaths": [ - 2829 + 2946 ], "deaths_ct": [ - 2829 + 2946 ], "deaths_t": [ - 2829 + 2946 ], "decoy_throws": [ - 2829 + 2946 ], "enemies_flashed": [ - 2829 + 2946 ], "first_bullet_hits": [ - 2829 + 2946 ], "first_bullet_shots": [ - 2829 + 2946 ], "five_kill_rounds": [ - 2829 + 2946 ], "flash_assists": [ - 2829 + 2946 ], "flash_duration_count": [ - 2829 + 2946 ], "flash_duration_sum": [ - 2829 + 2946 ], "flashes_thrown": [ - 2829 + 2946 ], "four_kill_rounds": [ - 2829 + 2946 ], "he_damage": [ - 2829 + 2946 ], "he_team_damage": [ - 2829 + 2946 ], "he_throws": [ - 2829 + 2946 ], "headshot_hits": [ - 2829 + 2946 ], "hits": [ - 2829 + 2946 ], "hits_at_spotted": [ - 2829 + 2946 ], "hs_kills": [ - 2829 + 2946 ], "hs_kills_ct": [ - 2829 + 2946 ], "hs_kills_t": [ - 2829 + 2946 ], "kast_rounds": [ - 2829 + 2946 ], "kast_total_rounds": [ - 2829 + 2946 ], "kills": [ - 2829 + 2946 ], "kills_ct": [ - 2829 + 2946 ], "kills_t": [ - 2829 + 2946 ], "knife_kills": [ - 2829 + 2946 ], "match_id": [ - 2829 + 2946 ], "match_map_id": [ - 2829 + 2946 ], "molotov_damage": [ - 2829 + 2946 ], "molotov_throws": [ - 2829 + 2946 ], "non_awp_hits": [ - 2829 + 2946 ], "on_target_frames": [ - 2829 + 2946 ], "rounds_ct": [ - 2829 + 2946 ], "rounds_played": [ - 2829 + 2946 ], "rounds_t": [ - 2829 + 2946 ], "shots_at_spotted": [ - 2829 + 2946 ], "shots_fired": [ - 2829 + 2946 ], "smoke_throws": [ - 2829 + 2946 ], "spotted_count": [ - 2829 + 2946 ], "spotted_with_damage_count": [ - 2829 + 2946 ], "spray_hits": [ - 2829 + 2946 ], "spray_shots": [ - 2829 + 2946 ], "steam_id": [ - 2829 + 2946 ], "team_damage": [ - 2829 + 2946 ], "team_flashed": [ - 2829 + 2946 ], "three_kill_rounds": [ - 2829 + 2946 ], "time_to_damage_count": [ - 2829 + 2946 ], "time_to_damage_sum_s": [ - 2829 + 2946 ], "total_engagement_frames": [ - 2829 + 2946 ], "trade_kill_attempts": [ - 2829 + 2946 ], "trade_kill_opportunities": [ - 2829 + 2946 ], "trade_kill_successes": [ - 2829 + 2946 ], "traded_death_attempts": [ - 2829 + 2946 ], "traded_death_opportunities": [ - 2829 + 2946 ], "traded_death_successes": [ - 2829 + 2946 ], "two_kill_rounds": [ - 2829 + 2946 ], "unused_utility_value": [ - 2829 + 2946 ], "updated_at": [ - 2829 + 2946 ], "util_on_death_count": [ - 2829 + 2946 ], "util_on_death_sum": [ - 2829 + 2946 ], "wasted_magazine_shots": [ - 2829 + 2946 ], "zeus_kills": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "player_match_map_stats_min_fields": { "assists": [ - 38 + 40 ], "assists_ct": [ - 38 + 40 ], "assists_t": [ - 38 + 40 ], "counter_strafe_eligible_shots": [ - 38 + 40 ], "counter_strafed_shots": [ - 38 + 40 ], "crosshair_angle_count": [ - 38 + 40 ], "crosshair_angle_sum_deg": [ - 2827 + 2944 ], "damage": [ - 38 + 40 ], "damage_ct": [ - 38 + 40 ], "damage_t": [ - 38 + 40 ], "deaths": [ - 38 + 40 ], "deaths_ct": [ - 38 + 40 ], "deaths_t": [ - 38 + 40 ], "decoy_throws": [ - 38 + 40 ], "enemies_flashed": [ - 38 + 40 ], "first_bullet_hits": [ - 38 + 40 ], "first_bullet_shots": [ - 38 + 40 ], "five_kill_rounds": [ - 38 + 40 ], "flash_assists": [ - 38 + 40 ], "flash_duration_count": [ - 38 + 40 ], "flash_duration_sum": [ - 2827 + 2944 ], "flashes_thrown": [ - 38 + 40 ], "four_kill_rounds": [ - 38 + 40 ], "he_damage": [ - 38 + 40 ], "he_team_damage": [ - 38 + 40 ], "he_throws": [ - 38 + 40 ], "headshot_hits": [ - 38 + 40 ], "hits": [ - 38 + 40 ], "hits_at_spotted": [ - 38 + 40 ], "hs_kills": [ - 38 + 40 ], "hs_kills_ct": [ - 38 + 40 ], "hs_kills_t": [ - 38 + 40 ], "kast_rounds": [ - 38 + 40 ], "kast_total_rounds": [ - 38 + 40 ], "kills": [ - 38 + 40 ], "kills_ct": [ - 38 + 40 ], "kills_t": [ - 38 + 40 ], "knife_kills": [ - 38 + 40 ], "match_id": [ - 4921 + 4993 ], "match_map_id": [ - 4921 + 4993 ], "molotov_damage": [ - 38 + 40 ], "molotov_throws": [ - 38 + 40 ], "non_awp_hits": [ - 38 + 40 ], "on_target_frames": [ - 38 + 40 ], "rounds_ct": [ - 38 + 40 ], "rounds_played": [ - 38 + 40 ], "rounds_t": [ - 38 + 40 ], "shots_at_spotted": [ - 38 + 40 ], "shots_fired": [ - 38 + 40 ], "smoke_throws": [ - 38 + 40 ], "spotted_count": [ - 38 + 40 ], "spotted_with_damage_count": [ - 38 + 40 ], "spray_hits": [ - 38 + 40 ], "spray_shots": [ - 38 + 40 ], "steam_id": [ - 180 + 252 ], "team_damage": [ - 38 + 40 ], "team_flashed": [ - 38 + 40 ], "three_kill_rounds": [ - 38 + 40 ], "time_to_damage_count": [ - 38 + 40 ], "time_to_damage_sum_s": [ - 2827 + 2944 ], "total_engagement_frames": [ - 38 + 40 ], "trade_kill_attempts": [ - 38 + 40 ], "trade_kill_opportunities": [ - 38 + 40 ], "trade_kill_successes": [ - 38 + 40 ], "traded_death_attempts": [ - 38 + 40 ], "traded_death_opportunities": [ - 38 + 40 ], "traded_death_successes": [ - 38 + 40 ], "two_kill_rounds": [ - 38 + 40 ], "unused_utility_value": [ - 38 + 40 ], "updated_at": [ - 4376 + 4493 ], "util_on_death_count": [ - 38 + 40 ], "util_on_death_sum": [ - 38 + 40 ], "wasted_magazine_shots": [ - 38 + 40 ], "zeus_kills": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "player_match_map_stats_min_order_by": { "assists": [ - 2829 + 2946 ], "assists_ct": [ - 2829 + 2946 ], "assists_t": [ - 2829 + 2946 ], "counter_strafe_eligible_shots": [ - 2829 + 2946 ], "counter_strafed_shots": [ - 2829 + 2946 ], "crosshair_angle_count": [ - 2829 + 2946 ], "crosshair_angle_sum_deg": [ - 2829 + 2946 ], "damage": [ - 2829 + 2946 ], "damage_ct": [ - 2829 + 2946 ], "damage_t": [ - 2829 + 2946 ], "deaths": [ - 2829 + 2946 ], "deaths_ct": [ - 2829 + 2946 ], "deaths_t": [ - 2829 + 2946 ], "decoy_throws": [ - 2829 + 2946 ], "enemies_flashed": [ - 2829 + 2946 ], "first_bullet_hits": [ - 2829 + 2946 ], "first_bullet_shots": [ - 2829 + 2946 ], "five_kill_rounds": [ - 2829 + 2946 ], "flash_assists": [ - 2829 + 2946 ], "flash_duration_count": [ - 2829 + 2946 ], "flash_duration_sum": [ - 2829 + 2946 ], "flashes_thrown": [ - 2829 + 2946 ], "four_kill_rounds": [ - 2829 + 2946 ], "he_damage": [ - 2829 + 2946 ], "he_team_damage": [ - 2829 + 2946 ], "he_throws": [ - 2829 + 2946 ], "headshot_hits": [ - 2829 + 2946 ], "hits": [ - 2829 + 2946 ], "hits_at_spotted": [ - 2829 + 2946 ], "hs_kills": [ - 2829 + 2946 ], "hs_kills_ct": [ - 2829 + 2946 ], "hs_kills_t": [ - 2829 + 2946 ], "kast_rounds": [ - 2829 + 2946 ], "kast_total_rounds": [ - 2829 + 2946 ], "kills": [ - 2829 + 2946 ], "kills_ct": [ - 2829 + 2946 ], "kills_t": [ - 2829 + 2946 ], "knife_kills": [ - 2829 + 2946 ], "match_id": [ - 2829 + 2946 ], "match_map_id": [ - 2829 + 2946 ], "molotov_damage": [ - 2829 + 2946 ], "molotov_throws": [ - 2829 + 2946 ], "non_awp_hits": [ - 2829 + 2946 ], "on_target_frames": [ - 2829 + 2946 ], "rounds_ct": [ - 2829 + 2946 ], "rounds_played": [ - 2829 + 2946 ], "rounds_t": [ - 2829 + 2946 ], "shots_at_spotted": [ - 2829 + 2946 ], "shots_fired": [ - 2829 + 2946 ], "smoke_throws": [ - 2829 + 2946 ], "spotted_count": [ - 2829 + 2946 ], "spotted_with_damage_count": [ - 2829 + 2946 ], "spray_hits": [ - 2829 + 2946 ], "spray_shots": [ - 2829 + 2946 ], "steam_id": [ - 2829 + 2946 ], "team_damage": [ - 2829 + 2946 ], "team_flashed": [ - 2829 + 2946 ], "three_kill_rounds": [ - 2829 + 2946 ], "time_to_damage_count": [ - 2829 + 2946 ], "time_to_damage_sum_s": [ - 2829 + 2946 ], "total_engagement_frames": [ - 2829 + 2946 ], "trade_kill_attempts": [ - 2829 + 2946 ], "trade_kill_opportunities": [ - 2829 + 2946 ], "trade_kill_successes": [ - 2829 + 2946 ], "traded_death_attempts": [ - 2829 + 2946 ], "traded_death_opportunities": [ - 2829 + 2946 ], "traded_death_successes": [ - 2829 + 2946 ], "two_kill_rounds": [ - 2829 + 2946 ], "unused_utility_value": [ - 2829 + 2946 ], "updated_at": [ - 2829 + 2946 ], "util_on_death_count": [ - 2829 + 2946 ], "util_on_death_sum": [ - 2829 + 2946 ], "wasted_magazine_shots": [ - 2829 + 2946 ], "zeus_kills": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "player_match_map_stats_mutation_response": { "affected_rows": [ - 38 + 40 ], "returning": [ - 3293 + 3410 ], "__typename": [ - 78 + 80 ] }, "player_match_map_stats_on_conflict": { "constraint": [ - 3303 + 3420 ], "update_columns": [ - 3326 + 3443 ], "where": [ - 3302 + 3419 ], "__typename": [ - 78 + 80 ] }, "player_match_map_stats_order_by": { "assists": [ - 2829 + 2946 ], "assists_ct": [ - 2829 + 2946 ], "assists_t": [ - 2829 + 2946 ], "counter_strafe_eligible_shots": [ - 2829 + 2946 ], "counter_strafed_shots": [ - 2829 + 2946 ], "crosshair_angle_count": [ - 2829 + 2946 ], "crosshair_angle_sum_deg": [ - 2829 + 2946 ], "damage": [ - 2829 + 2946 ], "damage_ct": [ - 2829 + 2946 ], "damage_t": [ - 2829 + 2946 ], "deaths": [ - 2829 + 2946 ], "deaths_ct": [ - 2829 + 2946 ], "deaths_t": [ - 2829 + 2946 ], "decoy_throws": [ - 2829 + 2946 ], "enemies_flashed": [ - 2829 + 2946 ], "first_bullet_hits": [ - 2829 + 2946 ], "first_bullet_shots": [ - 2829 + 2946 ], "five_kill_rounds": [ - 2829 + 2946 ], "flash_assists": [ - 2829 + 2946 ], "flash_duration_count": [ - 2829 + 2946 ], "flash_duration_sum": [ - 2829 + 2946 ], "flashes_thrown": [ - 2829 + 2946 ], "four_kill_rounds": [ - 2829 + 2946 ], "he_damage": [ - 2829 + 2946 ], "he_team_damage": [ - 2829 + 2946 ], "he_throws": [ - 2829 + 2946 ], "headshot_hits": [ - 2829 + 2946 ], "hits": [ - 2829 + 2946 ], "hits_at_spotted": [ - 2829 + 2946 ], "hs_kills": [ - 2829 + 2946 ], "hs_kills_ct": [ - 2829 + 2946 ], "hs_kills_t": [ - 2829 + 2946 ], "kast_rounds": [ - 2829 + 2946 ], "kast_total_rounds": [ - 2829 + 2946 ], "kills": [ - 2829 + 2946 ], "kills_ct": [ - 2829 + 2946 ], "kills_t": [ - 2829 + 2946 ], "knife_kills": [ - 2829 + 2946 ], "match": [ - 2664 + 2781 ], "match_id": [ - 2829 + 2946 ], "match_map": [ - 2502 + 2619 ], "match_map_id": [ - 2829 + 2946 ], "molotov_damage": [ - 2829 + 2946 ], "molotov_throws": [ - 2829 + 2946 ], "non_awp_hits": [ - 2829 + 2946 ], "on_target_frames": [ - 2829 + 2946 ], "player": [ - 3800 + 3917 ], "rounds_ct": [ - 2829 + 2946 ], "rounds_played": [ - 2829 + 2946 ], "rounds_t": [ - 2829 + 2946 ], "shots_at_spotted": [ - 2829 + 2946 ], "shots_fired": [ - 2829 + 2946 ], "smoke_throws": [ - 2829 + 2946 ], "spotted_count": [ - 2829 + 2946 ], "spotted_with_damage_count": [ - 2829 + 2946 ], "spray_hits": [ - 2829 + 2946 ], "spray_shots": [ - 2829 + 2946 ], "steam_id": [ - 2829 + 2946 ], "team_damage": [ - 2829 + 2946 ], "team_flashed": [ - 2829 + 2946 ], "three_kill_rounds": [ - 2829 + 2946 ], "time_to_damage_count": [ - 2829 + 2946 ], "time_to_damage_sum_s": [ - 2829 + 2946 ], "total_engagement_frames": [ - 2829 + 2946 ], "trade_kill_attempts": [ - 2829 + 2946 ], "trade_kill_opportunities": [ - 2829 + 2946 ], "trade_kill_successes": [ - 2829 + 2946 ], "traded_death_attempts": [ - 2829 + 2946 ], "traded_death_opportunities": [ - 2829 + 2946 ], "traded_death_successes": [ - 2829 + 2946 ], "two_kill_rounds": [ - 2829 + 2946 ], "unused_utility_value": [ - 2829 + 2946 ], "updated_at": [ - 2829 + 2946 ], "util_on_death_count": [ - 2829 + 2946 ], "util_on_death_sum": [ - 2829 + 2946 ], "wasted_magazine_shots": [ - 2829 + 2946 ], "zeus_kills": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "player_match_map_stats_pk_columns_input": { "match_map_id": [ - 4921 + 4993 ], "steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "player_match_map_stats_select_column": {}, "player_match_map_stats_set_input": { "assists": [ - 38 + 40 ], "assists_ct": [ - 38 + 40 ], "assists_t": [ - 38 + 40 ], "counter_strafe_eligible_shots": [ - 38 + 40 ], "counter_strafed_shots": [ - 38 + 40 ], "crosshair_angle_count": [ - 38 + 40 ], "crosshair_angle_sum_deg": [ - 2827 + 2944 ], "damage": [ - 38 + 40 ], "damage_ct": [ - 38 + 40 ], "damage_t": [ - 38 + 40 ], "deaths": [ - 38 + 40 ], "deaths_ct": [ - 38 + 40 ], "deaths_t": [ - 38 + 40 ], "decoy_throws": [ - 38 + 40 ], "enemies_flashed": [ - 38 + 40 ], "first_bullet_hits": [ - 38 + 40 ], "first_bullet_shots": [ - 38 + 40 ], "five_kill_rounds": [ - 38 + 40 ], "flash_assists": [ - 38 + 40 ], "flash_duration_count": [ - 38 + 40 ], "flash_duration_sum": [ - 2827 + 2944 ], "flashes_thrown": [ - 38 + 40 ], "four_kill_rounds": [ - 38 + 40 ], "he_damage": [ - 38 + 40 ], "he_team_damage": [ - 38 + 40 ], "he_throws": [ - 38 + 40 ], "headshot_hits": [ - 38 + 40 ], "hits": [ - 38 + 40 ], "hits_at_spotted": [ - 38 + 40 ], "hs_kills": [ - 38 + 40 ], "hs_kills_ct": [ - 38 + 40 ], "hs_kills_t": [ - 38 + 40 ], "kast_rounds": [ - 38 + 40 ], "kast_total_rounds": [ - 38 + 40 ], "kills": [ - 38 + 40 ], "kills_ct": [ - 38 + 40 ], "kills_t": [ - 38 + 40 ], "knife_kills": [ - 38 + 40 ], "match_id": [ - 4921 + 4993 ], "match_map_id": [ - 4921 + 4993 ], "molotov_damage": [ - 38 + 40 ], "molotov_throws": [ - 38 + 40 ], "non_awp_hits": [ - 38 + 40 ], "on_target_frames": [ - 38 + 40 ], "rounds_ct": [ - 38 + 40 ], "rounds_played": [ - 38 + 40 ], "rounds_t": [ - 38 + 40 ], "shots_at_spotted": [ - 38 + 40 ], "shots_fired": [ - 38 + 40 ], "smoke_throws": [ - 38 + 40 ], "spotted_count": [ - 38 + 40 ], "spotted_with_damage_count": [ - 38 + 40 ], "spray_hits": [ - 38 + 40 ], "spray_shots": [ - 38 + 40 ], "steam_id": [ - 180 + 252 ], "team_damage": [ - 38 + 40 ], "team_flashed": [ - 38 + 40 ], "three_kill_rounds": [ - 38 + 40 ], "time_to_damage_count": [ - 38 + 40 ], "time_to_damage_sum_s": [ - 2827 + 2944 ], "total_engagement_frames": [ - 38 + 40 ], "trade_kill_attempts": [ - 38 + 40 ], "trade_kill_opportunities": [ - 38 + 40 ], "trade_kill_successes": [ - 38 + 40 ], "traded_death_attempts": [ - 38 + 40 ], "traded_death_opportunities": [ - 38 + 40 ], "traded_death_successes": [ - 38 + 40 ], "two_kill_rounds": [ - 38 + 40 ], "unused_utility_value": [ - 38 + 40 ], "updated_at": [ - 4376 + 4493 ], "util_on_death_count": [ - 38 + 40 ], "util_on_death_sum": [ - 38 + 40 ], "wasted_magazine_shots": [ - 38 + 40 ], "zeus_kills": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "player_match_map_stats_stddev_fields": { "assists": [ - 29 + 31 ], "assists_ct": [ - 29 + 31 ], "assists_t": [ - 29 + 31 ], "counter_strafe_eligible_shots": [ - 29 + 31 ], "counter_strafed_shots": [ - 29 + 31 ], "crosshair_angle_count": [ - 29 + 31 ], "crosshair_angle_sum_deg": [ - 29 + 31 ], "damage": [ - 29 + 31 ], "damage_ct": [ - 29 + 31 ], "damage_t": [ - 29 + 31 ], "deaths": [ - 29 + 31 ], "deaths_ct": [ - 29 + 31 ], "deaths_t": [ - 29 + 31 ], "decoy_throws": [ - 29 + 31 ], "enemies_flashed": [ - 29 + 31 ], "first_bullet_hits": [ - 29 + 31 ], "first_bullet_shots": [ - 29 + 31 ], "five_kill_rounds": [ - 29 + 31 ], "flash_assists": [ - 29 + 31 ], "flash_duration_count": [ - 29 + 31 ], "flash_duration_sum": [ - 29 + 31 ], "flashes_thrown": [ - 29 + 31 ], "four_kill_rounds": [ - 29 + 31 ], "he_damage": [ - 29 + 31 ], "he_team_damage": [ - 29 + 31 ], "he_throws": [ - 29 + 31 ], "headshot_hits": [ - 29 + 31 ], "hits": [ - 29 + 31 ], "hits_at_spotted": [ - 29 + 31 ], "hs_kills": [ - 29 + 31 ], "hs_kills_ct": [ - 29 + 31 ], "hs_kills_t": [ - 29 + 31 ], "kast_rounds": [ - 29 + 31 ], "kast_total_rounds": [ - 29 + 31 ], "kills": [ - 29 + 31 ], "kills_ct": [ - 29 + 31 ], "kills_t": [ - 29 + 31 ], "knife_kills": [ - 29 + 31 ], "molotov_damage": [ - 29 + 31 ], "molotov_throws": [ - 29 + 31 ], "non_awp_hits": [ - 29 + 31 ], "on_target_frames": [ - 29 + 31 ], "rounds_ct": [ - 29 + 31 ], "rounds_played": [ - 29 + 31 ], "rounds_t": [ - 29 + 31 ], "shots_at_spotted": [ - 29 + 31 ], "shots_fired": [ - 29 + 31 ], "smoke_throws": [ - 29 + 31 ], "spotted_count": [ - 29 + 31 ], "spotted_with_damage_count": [ - 29 + 31 ], "spray_hits": [ - 29 + 31 ], "spray_shots": [ - 29 + 31 ], "steam_id": [ - 29 + 31 ], "team_damage": [ - 29 + 31 ], "team_flashed": [ - 29 + 31 ], "three_kill_rounds": [ - 29 + 31 ], "time_to_damage_count": [ - 29 + 31 ], "time_to_damage_sum_s": [ - 29 + 31 ], "total_engagement_frames": [ - 29 + 31 ], "trade_kill_attempts": [ - 29 + 31 ], "trade_kill_opportunities": [ - 29 + 31 ], "trade_kill_successes": [ - 29 + 31 ], "traded_death_attempts": [ - 29 + 31 ], "traded_death_opportunities": [ - 29 + 31 ], "traded_death_successes": [ - 29 + 31 ], "two_kill_rounds": [ - 29 + 31 ], "unused_utility_value": [ - 29 + 31 ], "util_on_death_count": [ - 29 + 31 ], "util_on_death_sum": [ - 29 + 31 ], "wasted_magazine_shots": [ - 29 + 31 ], "zeus_kills": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "player_match_map_stats_stddev_order_by": { "assists": [ - 2829 + 2946 ], "assists_ct": [ - 2829 + 2946 ], "assists_t": [ - 2829 + 2946 ], "counter_strafe_eligible_shots": [ - 2829 + 2946 ], "counter_strafed_shots": [ - 2829 + 2946 ], "crosshair_angle_count": [ - 2829 + 2946 ], "crosshair_angle_sum_deg": [ - 2829 + 2946 ], "damage": [ - 2829 + 2946 ], "damage_ct": [ - 2829 + 2946 ], "damage_t": [ - 2829 + 2946 ], "deaths": [ - 2829 + 2946 ], "deaths_ct": [ - 2829 + 2946 ], "deaths_t": [ - 2829 + 2946 ], "decoy_throws": [ - 2829 + 2946 ], "enemies_flashed": [ - 2829 + 2946 ], "first_bullet_hits": [ - 2829 + 2946 ], "first_bullet_shots": [ - 2829 + 2946 ], "five_kill_rounds": [ - 2829 + 2946 ], "flash_assists": [ - 2829 + 2946 ], "flash_duration_count": [ - 2829 + 2946 ], "flash_duration_sum": [ - 2829 + 2946 ], "flashes_thrown": [ - 2829 + 2946 ], "four_kill_rounds": [ - 2829 + 2946 ], "he_damage": [ - 2829 + 2946 ], "he_team_damage": [ - 2829 + 2946 ], "he_throws": [ - 2829 + 2946 ], "headshot_hits": [ - 2829 + 2946 ], "hits": [ - 2829 + 2946 ], "hits_at_spotted": [ - 2829 + 2946 ], "hs_kills": [ - 2829 + 2946 ], "hs_kills_ct": [ - 2829 + 2946 ], "hs_kills_t": [ - 2829 + 2946 ], "kast_rounds": [ - 2829 + 2946 ], "kast_total_rounds": [ - 2829 + 2946 ], "kills": [ - 2829 + 2946 ], "kills_ct": [ - 2829 + 2946 ], "kills_t": [ - 2829 + 2946 ], "knife_kills": [ - 2829 + 2946 ], "molotov_damage": [ - 2829 + 2946 ], "molotov_throws": [ - 2829 + 2946 ], "non_awp_hits": [ - 2829 + 2946 ], "on_target_frames": [ - 2829 + 2946 ], "rounds_ct": [ - 2829 + 2946 ], "rounds_played": [ - 2829 + 2946 ], "rounds_t": [ - 2829 + 2946 ], "shots_at_spotted": [ - 2829 + 2946 ], "shots_fired": [ - 2829 + 2946 ], "smoke_throws": [ - 2829 + 2946 ], "spotted_count": [ - 2829 + 2946 ], "spotted_with_damage_count": [ - 2829 + 2946 ], "spray_hits": [ - 2829 + 2946 ], "spray_shots": [ - 2829 + 2946 ], "steam_id": [ - 2829 + 2946 ], "team_damage": [ - 2829 + 2946 ], "team_flashed": [ - 2829 + 2946 ], "three_kill_rounds": [ - 2829 + 2946 ], "time_to_damage_count": [ - 2829 + 2946 ], "time_to_damage_sum_s": [ - 2829 + 2946 ], "total_engagement_frames": [ - 2829 + 2946 ], "trade_kill_attempts": [ - 2829 + 2946 ], "trade_kill_opportunities": [ - 2829 + 2946 ], "trade_kill_successes": [ - 2829 + 2946 ], "traded_death_attempts": [ - 2829 + 2946 ], "traded_death_opportunities": [ - 2829 + 2946 ], "traded_death_successes": [ - 2829 + 2946 ], "two_kill_rounds": [ - 2829 + 2946 ], "unused_utility_value": [ - 2829 + 2946 ], "util_on_death_count": [ - 2829 + 2946 ], "util_on_death_sum": [ - 2829 + 2946 ], "wasted_magazine_shots": [ - 2829 + 2946 ], "zeus_kills": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "player_match_map_stats_stddev_pop_fields": { "assists": [ - 29 + 31 ], "assists_ct": [ - 29 + 31 ], "assists_t": [ - 29 + 31 ], "counter_strafe_eligible_shots": [ - 29 + 31 ], "counter_strafed_shots": [ - 29 + 31 ], "crosshair_angle_count": [ - 29 + 31 ], "crosshair_angle_sum_deg": [ - 29 + 31 ], "damage": [ - 29 + 31 ], "damage_ct": [ - 29 + 31 ], "damage_t": [ - 29 + 31 ], "deaths": [ - 29 + 31 ], "deaths_ct": [ - 29 + 31 ], "deaths_t": [ - 29 + 31 ], "decoy_throws": [ - 29 + 31 ], "enemies_flashed": [ - 29 + 31 ], "first_bullet_hits": [ - 29 + 31 ], "first_bullet_shots": [ - 29 + 31 ], "five_kill_rounds": [ - 29 + 31 ], "flash_assists": [ - 29 + 31 ], "flash_duration_count": [ - 29 + 31 ], "flash_duration_sum": [ - 29 + 31 ], "flashes_thrown": [ - 29 + 31 ], "four_kill_rounds": [ - 29 + 31 ], "he_damage": [ - 29 + 31 ], "he_team_damage": [ - 29 + 31 ], "he_throws": [ - 29 + 31 ], "headshot_hits": [ - 29 + 31 ], "hits": [ - 29 + 31 ], "hits_at_spotted": [ - 29 + 31 ], "hs_kills": [ - 29 + 31 ], "hs_kills_ct": [ - 29 + 31 ], "hs_kills_t": [ - 29 + 31 ], "kast_rounds": [ - 29 + 31 ], "kast_total_rounds": [ - 29 + 31 ], "kills": [ - 29 + 31 ], "kills_ct": [ - 29 + 31 ], "kills_t": [ - 29 + 31 ], "knife_kills": [ - 29 + 31 ], "molotov_damage": [ - 29 + 31 ], "molotov_throws": [ - 29 + 31 ], "non_awp_hits": [ - 29 + 31 ], "on_target_frames": [ - 29 + 31 ], "rounds_ct": [ - 29 + 31 ], "rounds_played": [ - 29 + 31 ], "rounds_t": [ - 29 + 31 ], "shots_at_spotted": [ - 29 + 31 ], "shots_fired": [ - 29 + 31 ], "smoke_throws": [ - 29 + 31 ], "spotted_count": [ - 29 + 31 ], "spotted_with_damage_count": [ - 29 + 31 ], "spray_hits": [ - 29 + 31 ], "spray_shots": [ - 29 + 31 ], "steam_id": [ - 29 + 31 ], "team_damage": [ - 29 + 31 ], "team_flashed": [ - 29 + 31 ], "three_kill_rounds": [ - 29 + 31 ], "time_to_damage_count": [ - 29 + 31 ], "time_to_damage_sum_s": [ - 29 + 31 ], "total_engagement_frames": [ - 29 + 31 ], "trade_kill_attempts": [ - 29 + 31 ], "trade_kill_opportunities": [ - 29 + 31 ], "trade_kill_successes": [ - 29 + 31 ], "traded_death_attempts": [ - 29 + 31 ], "traded_death_opportunities": [ - 29 + 31 ], "traded_death_successes": [ - 29 + 31 ], "two_kill_rounds": [ - 29 + 31 ], "unused_utility_value": [ - 29 + 31 ], "util_on_death_count": [ - 29 + 31 ], "util_on_death_sum": [ - 29 + 31 ], "wasted_magazine_shots": [ - 29 + 31 ], "zeus_kills": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "player_match_map_stats_stddev_pop_order_by": { "assists": [ - 2829 + 2946 ], "assists_ct": [ - 2829 + 2946 ], "assists_t": [ - 2829 + 2946 ], "counter_strafe_eligible_shots": [ - 2829 + 2946 ], "counter_strafed_shots": [ - 2829 + 2946 ], "crosshair_angle_count": [ - 2829 + 2946 ], "crosshair_angle_sum_deg": [ - 2829 + 2946 ], "damage": [ - 2829 + 2946 ], "damage_ct": [ - 2829 + 2946 ], "damage_t": [ - 2829 + 2946 ], "deaths": [ - 2829 + 2946 ], "deaths_ct": [ - 2829 + 2946 ], "deaths_t": [ - 2829 + 2946 ], "decoy_throws": [ - 2829 + 2946 ], "enemies_flashed": [ - 2829 + 2946 ], "first_bullet_hits": [ - 2829 + 2946 ], "first_bullet_shots": [ - 2829 + 2946 ], "five_kill_rounds": [ - 2829 + 2946 ], "flash_assists": [ - 2829 + 2946 ], "flash_duration_count": [ - 2829 + 2946 ], "flash_duration_sum": [ - 2829 + 2946 ], "flashes_thrown": [ - 2829 + 2946 ], "four_kill_rounds": [ - 2829 + 2946 ], "he_damage": [ - 2829 + 2946 ], "he_team_damage": [ - 2829 + 2946 ], "he_throws": [ - 2829 + 2946 ], "headshot_hits": [ - 2829 + 2946 ], "hits": [ - 2829 + 2946 ], "hits_at_spotted": [ - 2829 + 2946 ], "hs_kills": [ - 2829 + 2946 ], "hs_kills_ct": [ - 2829 + 2946 ], "hs_kills_t": [ - 2829 + 2946 ], "kast_rounds": [ - 2829 + 2946 ], "kast_total_rounds": [ - 2829 + 2946 ], "kills": [ - 2829 + 2946 ], "kills_ct": [ - 2829 + 2946 ], "kills_t": [ - 2829 + 2946 ], "knife_kills": [ - 2829 + 2946 ], "molotov_damage": [ - 2829 + 2946 ], "molotov_throws": [ - 2829 + 2946 ], "non_awp_hits": [ - 2829 + 2946 ], "on_target_frames": [ - 2829 + 2946 ], "rounds_ct": [ - 2829 + 2946 ], "rounds_played": [ - 2829 + 2946 ], "rounds_t": [ - 2829 + 2946 ], "shots_at_spotted": [ - 2829 + 2946 ], "shots_fired": [ - 2829 + 2946 ], "smoke_throws": [ - 2829 + 2946 ], "spotted_count": [ - 2829 + 2946 ], "spotted_with_damage_count": [ - 2829 + 2946 ], "spray_hits": [ - 2829 + 2946 ], "spray_shots": [ - 2829 + 2946 ], "steam_id": [ - 2829 + 2946 ], "team_damage": [ - 2829 + 2946 ], "team_flashed": [ - 2829 + 2946 ], "three_kill_rounds": [ - 2829 + 2946 ], "time_to_damage_count": [ - 2829 + 2946 ], "time_to_damage_sum_s": [ - 2829 + 2946 ], "total_engagement_frames": [ - 2829 + 2946 ], "trade_kill_attempts": [ - 2829 + 2946 ], "trade_kill_opportunities": [ - 2829 + 2946 ], "trade_kill_successes": [ - 2829 + 2946 ], "traded_death_attempts": [ - 2829 + 2946 ], "traded_death_opportunities": [ - 2829 + 2946 ], "traded_death_successes": [ - 2829 + 2946 ], "two_kill_rounds": [ - 2829 + 2946 ], "unused_utility_value": [ - 2829 + 2946 ], "util_on_death_count": [ - 2829 + 2946 ], "util_on_death_sum": [ - 2829 + 2946 ], "wasted_magazine_shots": [ - 2829 + 2946 ], "zeus_kills": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "player_match_map_stats_stddev_samp_fields": { "assists": [ - 29 + 31 ], "assists_ct": [ - 29 + 31 ], "assists_t": [ - 29 + 31 ], "counter_strafe_eligible_shots": [ - 29 + 31 ], "counter_strafed_shots": [ - 29 + 31 ], "crosshair_angle_count": [ - 29 + 31 ], "crosshair_angle_sum_deg": [ - 29 + 31 ], "damage": [ - 29 + 31 ], "damage_ct": [ - 29 + 31 ], "damage_t": [ - 29 + 31 ], "deaths": [ - 29 + 31 ], "deaths_ct": [ - 29 + 31 ], "deaths_t": [ - 29 + 31 ], "decoy_throws": [ - 29 + 31 ], "enemies_flashed": [ - 29 + 31 ], "first_bullet_hits": [ - 29 + 31 ], "first_bullet_shots": [ - 29 + 31 ], "five_kill_rounds": [ - 29 + 31 ], "flash_assists": [ - 29 + 31 ], "flash_duration_count": [ - 29 + 31 ], "flash_duration_sum": [ - 29 + 31 ], "flashes_thrown": [ - 29 + 31 ], "four_kill_rounds": [ - 29 + 31 ], "he_damage": [ - 29 + 31 ], "he_team_damage": [ - 29 + 31 ], "he_throws": [ - 29 + 31 ], "headshot_hits": [ - 29 + 31 ], "hits": [ - 29 + 31 ], "hits_at_spotted": [ - 29 + 31 ], "hs_kills": [ - 29 + 31 ], "hs_kills_ct": [ - 29 + 31 ], "hs_kills_t": [ - 29 + 31 ], "kast_rounds": [ - 29 + 31 ], "kast_total_rounds": [ - 29 + 31 ], "kills": [ - 29 + 31 ], "kills_ct": [ - 29 + 31 ], "kills_t": [ - 29 + 31 ], "knife_kills": [ - 29 + 31 ], "molotov_damage": [ - 29 + 31 ], "molotov_throws": [ - 29 + 31 ], "non_awp_hits": [ - 29 + 31 ], "on_target_frames": [ - 29 + 31 ], "rounds_ct": [ - 29 + 31 ], "rounds_played": [ - 29 + 31 ], "rounds_t": [ - 29 + 31 ], "shots_at_spotted": [ - 29 + 31 ], "shots_fired": [ - 29 + 31 ], "smoke_throws": [ - 29 + 31 ], "spotted_count": [ - 29 + 31 ], "spotted_with_damage_count": [ - 29 + 31 ], "spray_hits": [ - 29 + 31 ], "spray_shots": [ - 29 + 31 ], "steam_id": [ - 29 + 31 ], "team_damage": [ - 29 + 31 ], "team_flashed": [ - 29 + 31 ], "three_kill_rounds": [ - 29 + 31 ], "time_to_damage_count": [ - 29 + 31 ], "time_to_damage_sum_s": [ - 29 + 31 ], "total_engagement_frames": [ - 29 + 31 ], "trade_kill_attempts": [ - 29 + 31 ], "trade_kill_opportunities": [ - 29 + 31 ], "trade_kill_successes": [ - 29 + 31 ], "traded_death_attempts": [ - 29 + 31 ], "traded_death_opportunities": [ - 29 + 31 ], "traded_death_successes": [ - 29 + 31 ], "two_kill_rounds": [ - 29 + 31 ], "unused_utility_value": [ - 29 + 31 ], "util_on_death_count": [ - 29 + 31 ], "util_on_death_sum": [ - 29 + 31 ], "wasted_magazine_shots": [ - 29 + 31 ], "zeus_kills": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "player_match_map_stats_stddev_samp_order_by": { "assists": [ - 2829 + 2946 ], "assists_ct": [ - 2829 + 2946 ], "assists_t": [ - 2829 + 2946 ], "counter_strafe_eligible_shots": [ - 2829 + 2946 ], "counter_strafed_shots": [ - 2829 + 2946 ], "crosshair_angle_count": [ - 2829 + 2946 ], "crosshair_angle_sum_deg": [ - 2829 + 2946 ], "damage": [ - 2829 + 2946 ], "damage_ct": [ - 2829 + 2946 ], "damage_t": [ - 2829 + 2946 ], "deaths": [ - 2829 + 2946 ], "deaths_ct": [ - 2829 + 2946 ], "deaths_t": [ - 2829 + 2946 ], "decoy_throws": [ - 2829 + 2946 ], "enemies_flashed": [ - 2829 + 2946 ], "first_bullet_hits": [ - 2829 + 2946 ], "first_bullet_shots": [ - 2829 + 2946 ], "five_kill_rounds": [ - 2829 + 2946 ], "flash_assists": [ - 2829 + 2946 ], "flash_duration_count": [ - 2829 + 2946 ], "flash_duration_sum": [ - 2829 + 2946 ], "flashes_thrown": [ - 2829 + 2946 ], "four_kill_rounds": [ - 2829 + 2946 ], "he_damage": [ - 2829 + 2946 ], "he_team_damage": [ - 2829 + 2946 ], "he_throws": [ - 2829 + 2946 ], "headshot_hits": [ - 2829 + 2946 ], "hits": [ - 2829 + 2946 ], "hits_at_spotted": [ - 2829 + 2946 ], "hs_kills": [ - 2829 + 2946 ], "hs_kills_ct": [ - 2829 + 2946 ], "hs_kills_t": [ - 2829 + 2946 ], "kast_rounds": [ - 2829 + 2946 ], "kast_total_rounds": [ - 2829 + 2946 ], "kills": [ - 2829 + 2946 ], "kills_ct": [ - 2829 + 2946 ], "kills_t": [ - 2829 + 2946 ], "knife_kills": [ - 2829 + 2946 ], "molotov_damage": [ - 2829 + 2946 ], "molotov_throws": [ - 2829 + 2946 ], "non_awp_hits": [ - 2829 + 2946 ], "on_target_frames": [ - 2829 + 2946 ], "rounds_ct": [ - 2829 + 2946 ], "rounds_played": [ - 2829 + 2946 ], "rounds_t": [ - 2829 + 2946 ], "shots_at_spotted": [ - 2829 + 2946 ], "shots_fired": [ - 2829 + 2946 ], "smoke_throws": [ - 2829 + 2946 ], "spotted_count": [ - 2829 + 2946 ], "spotted_with_damage_count": [ - 2829 + 2946 ], "spray_hits": [ - 2829 + 2946 ], "spray_shots": [ - 2829 + 2946 ], "steam_id": [ - 2829 + 2946 ], "team_damage": [ - 2829 + 2946 ], "team_flashed": [ - 2829 + 2946 ], "three_kill_rounds": [ - 2829 + 2946 ], "time_to_damage_count": [ - 2829 + 2946 ], "time_to_damage_sum_s": [ - 2829 + 2946 ], "total_engagement_frames": [ - 2829 + 2946 ], "trade_kill_attempts": [ - 2829 + 2946 ], "trade_kill_opportunities": [ - 2829 + 2946 ], "trade_kill_successes": [ - 2829 + 2946 ], "traded_death_attempts": [ - 2829 + 2946 ], "traded_death_opportunities": [ - 2829 + 2946 ], "traded_death_successes": [ - 2829 + 2946 ], "two_kill_rounds": [ - 2829 + 2946 ], "unused_utility_value": [ - 2829 + 2946 ], "util_on_death_count": [ - 2829 + 2946 ], "util_on_death_sum": [ - 2829 + 2946 ], "wasted_magazine_shots": [ - 2829 + 2946 ], "zeus_kills": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "player_match_map_stats_stream_cursor_input": { "initial_value": [ - 3323 + 3440 ], "ordering": [ - 236 + 308 ], "__typename": [ - 78 + 80 ] }, "player_match_map_stats_stream_cursor_value_input": { "assists": [ - 38 + 40 ], "assists_ct": [ - 38 + 40 ], "assists_t": [ - 38 + 40 ], "counter_strafe_eligible_shots": [ - 38 + 40 ], "counter_strafed_shots": [ - 38 + 40 ], "crosshair_angle_count": [ - 38 + 40 ], "crosshair_angle_sum_deg": [ - 2827 + 2944 ], "damage": [ - 38 + 40 ], "damage_ct": [ - 38 + 40 ], "damage_t": [ - 38 + 40 ], "deaths": [ - 38 + 40 ], "deaths_ct": [ - 38 + 40 ], "deaths_t": [ - 38 + 40 ], "decoy_throws": [ - 38 + 40 ], "enemies_flashed": [ - 38 + 40 ], "first_bullet_hits": [ - 38 + 40 ], "first_bullet_shots": [ - 38 + 40 ], "five_kill_rounds": [ - 38 + 40 ], "flash_assists": [ - 38 + 40 ], "flash_duration_count": [ - 38 + 40 ], "flash_duration_sum": [ - 2827 + 2944 ], "flashes_thrown": [ - 38 + 40 ], "four_kill_rounds": [ - 38 + 40 ], "he_damage": [ - 38 + 40 ], "he_team_damage": [ - 38 + 40 ], "he_throws": [ - 38 + 40 ], "headshot_hits": [ - 38 + 40 ], "hits": [ - 38 + 40 ], "hits_at_spotted": [ - 38 + 40 ], "hs_kills": [ - 38 + 40 ], "hs_kills_ct": [ - 38 + 40 ], "hs_kills_t": [ - 38 + 40 ], "kast_rounds": [ - 38 + 40 ], "kast_total_rounds": [ - 38 + 40 ], "kills": [ - 38 + 40 ], "kills_ct": [ - 38 + 40 ], "kills_t": [ - 38 + 40 ], "knife_kills": [ - 38 + 40 ], "match_id": [ - 4921 + 4993 ], "match_map_id": [ - 4921 + 4993 ], "molotov_damage": [ - 38 + 40 ], "molotov_throws": [ - 38 + 40 ], "non_awp_hits": [ - 38 + 40 ], "on_target_frames": [ - 38 + 40 ], "rounds_ct": [ - 38 + 40 ], "rounds_played": [ - 38 + 40 ], "rounds_t": [ - 38 + 40 ], "shots_at_spotted": [ - 38 + 40 ], "shots_fired": [ - 38 + 40 ], "smoke_throws": [ - 38 + 40 ], "spotted_count": [ - 38 + 40 ], "spotted_with_damage_count": [ - 38 + 40 ], "spray_hits": [ - 38 + 40 ], "spray_shots": [ - 38 + 40 ], "steam_id": [ - 180 + 252 ], "team_damage": [ - 38 + 40 ], "team_flashed": [ - 38 + 40 ], "three_kill_rounds": [ - 38 + 40 ], "time_to_damage_count": [ - 38 + 40 ], "time_to_damage_sum_s": [ - 2827 + 2944 ], "total_engagement_frames": [ - 38 + 40 ], "trade_kill_attempts": [ - 38 + 40 ], "trade_kill_opportunities": [ - 38 + 40 ], "trade_kill_successes": [ - 38 + 40 ], "traded_death_attempts": [ - 38 + 40 ], "traded_death_opportunities": [ - 38 + 40 ], "traded_death_successes": [ - 38 + 40 ], "two_kill_rounds": [ - 38 + 40 ], "unused_utility_value": [ - 38 + 40 ], "updated_at": [ - 4376 + 4493 ], "util_on_death_count": [ - 38 + 40 ], "util_on_death_sum": [ - 38 + 40 ], "wasted_magazine_shots": [ - 38 + 40 ], "zeus_kills": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "player_match_map_stats_sum_fields": { "assists": [ - 38 + 40 ], "assists_ct": [ - 38 + 40 ], "assists_t": [ - 38 + 40 ], "counter_strafe_eligible_shots": [ - 38 + 40 ], "counter_strafed_shots": [ - 38 + 40 ], "crosshair_angle_count": [ - 38 + 40 ], "crosshair_angle_sum_deg": [ - 2827 + 2944 ], "damage": [ - 38 + 40 ], "damage_ct": [ - 38 + 40 ], "damage_t": [ - 38 + 40 ], "deaths": [ - 38 + 40 ], "deaths_ct": [ - 38 + 40 ], "deaths_t": [ - 38 + 40 ], "decoy_throws": [ - 38 + 40 ], "enemies_flashed": [ - 38 + 40 ], "first_bullet_hits": [ - 38 + 40 ], "first_bullet_shots": [ - 38 + 40 ], "five_kill_rounds": [ - 38 + 40 ], "flash_assists": [ - 38 + 40 ], "flash_duration_count": [ - 38 + 40 ], "flash_duration_sum": [ - 2827 + 2944 ], "flashes_thrown": [ - 38 + 40 ], "four_kill_rounds": [ - 38 + 40 ], "he_damage": [ - 38 + 40 ], "he_team_damage": [ - 38 + 40 ], "he_throws": [ - 38 + 40 ], "headshot_hits": [ - 38 + 40 ], "hits": [ - 38 + 40 ], "hits_at_spotted": [ - 38 + 40 ], "hs_kills": [ - 38 + 40 ], "hs_kills_ct": [ - 38 + 40 ], "hs_kills_t": [ - 38 + 40 ], "kast_rounds": [ - 38 + 40 ], "kast_total_rounds": [ - 38 + 40 ], "kills": [ - 38 + 40 ], "kills_ct": [ - 38 + 40 ], "kills_t": [ - 38 + 40 ], "knife_kills": [ - 38 + 40 ], "molotov_damage": [ - 38 + 40 ], "molotov_throws": [ - 38 + 40 ], "non_awp_hits": [ - 38 + 40 ], "on_target_frames": [ - 38 + 40 ], "rounds_ct": [ - 38 + 40 ], "rounds_played": [ - 38 + 40 ], "rounds_t": [ - 38 + 40 ], "shots_at_spotted": [ - 38 + 40 ], "shots_fired": [ - 38 + 40 ], "smoke_throws": [ - 38 + 40 ], "spotted_count": [ - 38 + 40 ], "spotted_with_damage_count": [ - 38 + 40 ], "spray_hits": [ - 38 + 40 ], "spray_shots": [ - 38 + 40 ], "steam_id": [ - 180 + 252 ], "team_damage": [ - 38 + 40 ], "team_flashed": [ - 38 + 40 ], "three_kill_rounds": [ - 38 + 40 ], "time_to_damage_count": [ - 38 + 40 ], "time_to_damage_sum_s": [ - 2827 + 2944 ], "total_engagement_frames": [ - 38 + 40 ], "trade_kill_attempts": [ - 38 + 40 ], "trade_kill_opportunities": [ - 38 + 40 ], "trade_kill_successes": [ - 38 + 40 ], "traded_death_attempts": [ - 38 + 40 ], "traded_death_opportunities": [ - 38 + 40 ], "traded_death_successes": [ - 38 + 40 ], "two_kill_rounds": [ - 38 + 40 ], "unused_utility_value": [ - 38 + 40 ], "util_on_death_count": [ - 38 + 40 ], "util_on_death_sum": [ - 38 + 40 ], "wasted_magazine_shots": [ - 38 + 40 ], "zeus_kills": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "player_match_map_stats_sum_order_by": { "assists": [ - 2829 + 2946 ], "assists_ct": [ - 2829 + 2946 ], "assists_t": [ - 2829 + 2946 ], "counter_strafe_eligible_shots": [ - 2829 + 2946 ], "counter_strafed_shots": [ - 2829 + 2946 ], "crosshair_angle_count": [ - 2829 + 2946 ], "crosshair_angle_sum_deg": [ - 2829 + 2946 ], "damage": [ - 2829 + 2946 ], "damage_ct": [ - 2829 + 2946 ], "damage_t": [ - 2829 + 2946 ], "deaths": [ - 2829 + 2946 ], "deaths_ct": [ - 2829 + 2946 ], "deaths_t": [ - 2829 + 2946 ], "decoy_throws": [ - 2829 + 2946 ], "enemies_flashed": [ - 2829 + 2946 ], "first_bullet_hits": [ - 2829 + 2946 ], "first_bullet_shots": [ - 2829 + 2946 ], "five_kill_rounds": [ - 2829 + 2946 ], "flash_assists": [ - 2829 + 2946 ], "flash_duration_count": [ - 2829 + 2946 ], "flash_duration_sum": [ - 2829 + 2946 ], "flashes_thrown": [ - 2829 + 2946 ], "four_kill_rounds": [ - 2829 + 2946 ], "he_damage": [ - 2829 + 2946 ], "he_team_damage": [ - 2829 + 2946 ], "he_throws": [ - 2829 + 2946 ], "headshot_hits": [ - 2829 + 2946 ], "hits": [ - 2829 + 2946 ], "hits_at_spotted": [ - 2829 + 2946 ], "hs_kills": [ - 2829 + 2946 ], "hs_kills_ct": [ - 2829 + 2946 ], "hs_kills_t": [ - 2829 + 2946 ], "kast_rounds": [ - 2829 + 2946 ], "kast_total_rounds": [ - 2829 + 2946 ], "kills": [ - 2829 + 2946 ], "kills_ct": [ - 2829 + 2946 ], "kills_t": [ - 2829 + 2946 ], "knife_kills": [ - 2829 + 2946 ], "molotov_damage": [ - 2829 + 2946 ], "molotov_throws": [ - 2829 + 2946 ], "non_awp_hits": [ - 2829 + 2946 ], "on_target_frames": [ - 2829 + 2946 ], "rounds_ct": [ - 2829 + 2946 ], "rounds_played": [ - 2829 + 2946 ], "rounds_t": [ - 2829 + 2946 ], "shots_at_spotted": [ - 2829 + 2946 ], "shots_fired": [ - 2829 + 2946 ], "smoke_throws": [ - 2829 + 2946 ], "spotted_count": [ - 2829 + 2946 ], "spotted_with_damage_count": [ - 2829 + 2946 ], "spray_hits": [ - 2829 + 2946 ], "spray_shots": [ - 2829 + 2946 ], "steam_id": [ - 2829 + 2946 ], "team_damage": [ - 2829 + 2946 ], "team_flashed": [ - 2829 + 2946 ], "three_kill_rounds": [ - 2829 + 2946 ], "time_to_damage_count": [ - 2829 + 2946 ], "time_to_damage_sum_s": [ - 2829 + 2946 ], "total_engagement_frames": [ - 2829 + 2946 ], "trade_kill_attempts": [ - 2829 + 2946 ], "trade_kill_opportunities": [ - 2829 + 2946 ], "trade_kill_successes": [ - 2829 + 2946 ], "traded_death_attempts": [ - 2829 + 2946 ], "traded_death_opportunities": [ - 2829 + 2946 ], "traded_death_successes": [ - 2829 + 2946 ], "two_kill_rounds": [ - 2829 + 2946 ], "unused_utility_value": [ - 2829 + 2946 ], "util_on_death_count": [ - 2829 + 2946 ], "util_on_death_sum": [ - 2829 + 2946 ], "wasted_magazine_shots": [ - 2829 + 2946 ], "zeus_kills": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "player_match_map_stats_update_column": {}, "player_match_map_stats_updates": { "_inc": [ - 3304 + 3421 ], "_set": [ - 3315 + 3432 ], "where": [ - 3302 + 3419 ], "__typename": [ - 78 + 80 ] }, "player_match_map_stats_var_pop_fields": { "assists": [ - 29 + 31 ], "assists_ct": [ - 29 + 31 ], "assists_t": [ - 29 + 31 ], "counter_strafe_eligible_shots": [ - 29 + 31 ], "counter_strafed_shots": [ - 29 + 31 ], "crosshair_angle_count": [ - 29 + 31 ], "crosshair_angle_sum_deg": [ - 29 + 31 ], "damage": [ - 29 + 31 ], "damage_ct": [ - 29 + 31 ], "damage_t": [ - 29 + 31 ], "deaths": [ - 29 + 31 ], "deaths_ct": [ - 29 + 31 ], "deaths_t": [ - 29 + 31 ], "decoy_throws": [ - 29 + 31 ], "enemies_flashed": [ - 29 + 31 ], "first_bullet_hits": [ - 29 + 31 ], "first_bullet_shots": [ - 29 + 31 ], "five_kill_rounds": [ - 29 + 31 ], "flash_assists": [ - 29 + 31 ], "flash_duration_count": [ - 29 + 31 ], "flash_duration_sum": [ - 29 + 31 ], "flashes_thrown": [ - 29 + 31 ], "four_kill_rounds": [ - 29 + 31 ], "he_damage": [ - 29 + 31 ], "he_team_damage": [ - 29 + 31 ], "he_throws": [ - 29 + 31 ], "headshot_hits": [ - 29 + 31 ], "hits": [ - 29 + 31 ], "hits_at_spotted": [ - 29 + 31 ], "hs_kills": [ - 29 + 31 ], "hs_kills_ct": [ - 29 + 31 ], "hs_kills_t": [ - 29 + 31 ], "kast_rounds": [ - 29 + 31 ], "kast_total_rounds": [ - 29 + 31 ], "kills": [ - 29 + 31 ], "kills_ct": [ - 29 + 31 ], "kills_t": [ - 29 + 31 ], "knife_kills": [ - 29 + 31 ], "molotov_damage": [ - 29 + 31 ], "molotov_throws": [ - 29 + 31 ], "non_awp_hits": [ - 29 + 31 ], "on_target_frames": [ - 29 + 31 ], "rounds_ct": [ - 29 + 31 ], "rounds_played": [ - 29 + 31 ], "rounds_t": [ - 29 + 31 ], "shots_at_spotted": [ - 29 + 31 ], "shots_fired": [ - 29 + 31 ], "smoke_throws": [ - 29 + 31 ], "spotted_count": [ - 29 + 31 ], "spotted_with_damage_count": [ - 29 + 31 ], "spray_hits": [ - 29 + 31 ], "spray_shots": [ - 29 + 31 ], "steam_id": [ - 29 + 31 ], "team_damage": [ - 29 + 31 ], "team_flashed": [ - 29 + 31 ], "three_kill_rounds": [ - 29 + 31 ], "time_to_damage_count": [ - 29 + 31 ], "time_to_damage_sum_s": [ - 29 + 31 ], "total_engagement_frames": [ - 29 + 31 ], "trade_kill_attempts": [ - 29 + 31 ], "trade_kill_opportunities": [ - 29 + 31 ], "trade_kill_successes": [ - 29 + 31 ], "traded_death_attempts": [ - 29 + 31 ], "traded_death_opportunities": [ - 29 + 31 ], "traded_death_successes": [ - 29 + 31 ], "two_kill_rounds": [ - 29 + 31 ], "unused_utility_value": [ - 29 + 31 ], "util_on_death_count": [ - 29 + 31 ], "util_on_death_sum": [ - 29 + 31 ], "wasted_magazine_shots": [ - 29 + 31 ], "zeus_kills": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "player_match_map_stats_var_pop_order_by": { "assists": [ - 2829 + 2946 ], "assists_ct": [ - 2829 + 2946 ], "assists_t": [ - 2829 + 2946 ], "counter_strafe_eligible_shots": [ - 2829 + 2946 ], "counter_strafed_shots": [ - 2829 + 2946 ], "crosshair_angle_count": [ - 2829 + 2946 ], "crosshair_angle_sum_deg": [ - 2829 + 2946 ], "damage": [ - 2829 + 2946 ], "damage_ct": [ - 2829 + 2946 ], "damage_t": [ - 2829 + 2946 ], "deaths": [ - 2829 + 2946 ], "deaths_ct": [ - 2829 + 2946 ], "deaths_t": [ - 2829 + 2946 ], "decoy_throws": [ - 2829 + 2946 ], "enemies_flashed": [ - 2829 + 2946 ], "first_bullet_hits": [ - 2829 + 2946 ], "first_bullet_shots": [ - 2829 + 2946 ], "five_kill_rounds": [ - 2829 + 2946 ], "flash_assists": [ - 2829 + 2946 ], "flash_duration_count": [ - 2829 + 2946 ], "flash_duration_sum": [ - 2829 + 2946 ], "flashes_thrown": [ - 2829 + 2946 ], "four_kill_rounds": [ - 2829 + 2946 ], "he_damage": [ - 2829 + 2946 ], "he_team_damage": [ - 2829 + 2946 ], "he_throws": [ - 2829 + 2946 ], "headshot_hits": [ - 2829 + 2946 ], "hits": [ - 2829 + 2946 ], "hits_at_spotted": [ - 2829 + 2946 ], "hs_kills": [ - 2829 + 2946 ], "hs_kills_ct": [ - 2829 + 2946 ], "hs_kills_t": [ - 2829 + 2946 ], "kast_rounds": [ - 2829 + 2946 ], "kast_total_rounds": [ - 2829 + 2946 ], "kills": [ - 2829 + 2946 ], "kills_ct": [ - 2829 + 2946 ], "kills_t": [ - 2829 + 2946 ], "knife_kills": [ - 2829 + 2946 ], "molotov_damage": [ - 2829 + 2946 ], "molotov_throws": [ - 2829 + 2946 ], "non_awp_hits": [ - 2829 + 2946 ], "on_target_frames": [ - 2829 + 2946 ], "rounds_ct": [ - 2829 + 2946 ], "rounds_played": [ - 2829 + 2946 ], "rounds_t": [ - 2829 + 2946 ], "shots_at_spotted": [ - 2829 + 2946 ], "shots_fired": [ - 2829 + 2946 ], "smoke_throws": [ - 2829 + 2946 ], "spotted_count": [ - 2829 + 2946 ], "spotted_with_damage_count": [ - 2829 + 2946 ], "spray_hits": [ - 2829 + 2946 ], "spray_shots": [ - 2829 + 2946 ], "steam_id": [ - 2829 + 2946 ], "team_damage": [ - 2829 + 2946 ], "team_flashed": [ - 2829 + 2946 ], "three_kill_rounds": [ - 2829 + 2946 ], "time_to_damage_count": [ - 2829 + 2946 ], "time_to_damage_sum_s": [ - 2829 + 2946 ], "total_engagement_frames": [ - 2829 + 2946 ], "trade_kill_attempts": [ - 2829 + 2946 ], "trade_kill_opportunities": [ - 2829 + 2946 ], "trade_kill_successes": [ - 2829 + 2946 ], "traded_death_attempts": [ - 2829 + 2946 ], "traded_death_opportunities": [ - 2829 + 2946 ], "traded_death_successes": [ - 2829 + 2946 ], "two_kill_rounds": [ - 2829 + 2946 ], "unused_utility_value": [ - 2829 + 2946 ], "util_on_death_count": [ - 2829 + 2946 ], "util_on_death_sum": [ - 2829 + 2946 ], "wasted_magazine_shots": [ - 2829 + 2946 ], "zeus_kills": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "player_match_map_stats_var_samp_fields": { "assists": [ - 29 + 31 ], "assists_ct": [ - 29 + 31 ], "assists_t": [ - 29 + 31 ], "counter_strafe_eligible_shots": [ - 29 + 31 ], "counter_strafed_shots": [ - 29 + 31 ], "crosshair_angle_count": [ - 29 + 31 ], "crosshair_angle_sum_deg": [ - 29 + 31 ], "damage": [ - 29 + 31 ], "damage_ct": [ - 29 + 31 ], "damage_t": [ - 29 + 31 ], "deaths": [ - 29 + 31 ], "deaths_ct": [ - 29 + 31 ], "deaths_t": [ - 29 + 31 ], "decoy_throws": [ - 29 + 31 ], "enemies_flashed": [ - 29 + 31 ], "first_bullet_hits": [ - 29 + 31 ], "first_bullet_shots": [ - 29 + 31 ], "five_kill_rounds": [ - 29 + 31 ], "flash_assists": [ - 29 + 31 ], "flash_duration_count": [ - 29 + 31 ], "flash_duration_sum": [ - 29 + 31 ], "flashes_thrown": [ - 29 + 31 ], "four_kill_rounds": [ - 29 + 31 ], "he_damage": [ - 29 + 31 ], "he_team_damage": [ - 29 + 31 ], "he_throws": [ - 29 + 31 ], "headshot_hits": [ - 29 + 31 ], "hits": [ - 29 + 31 ], "hits_at_spotted": [ - 29 + 31 ], "hs_kills": [ - 29 + 31 ], "hs_kills_ct": [ - 29 + 31 ], "hs_kills_t": [ - 29 + 31 ], "kast_rounds": [ - 29 + 31 ], "kast_total_rounds": [ - 29 + 31 ], "kills": [ - 29 + 31 ], "kills_ct": [ - 29 + 31 ], "kills_t": [ - 29 + 31 ], "knife_kills": [ - 29 + 31 ], "molotov_damage": [ - 29 + 31 ], "molotov_throws": [ - 29 + 31 ], "non_awp_hits": [ - 29 + 31 ], "on_target_frames": [ - 29 + 31 ], "rounds_ct": [ - 29 + 31 ], "rounds_played": [ - 29 + 31 ], "rounds_t": [ - 29 + 31 ], "shots_at_spotted": [ - 29 + 31 ], "shots_fired": [ - 29 + 31 ], "smoke_throws": [ - 29 + 31 ], "spotted_count": [ - 29 + 31 ], "spotted_with_damage_count": [ - 29 + 31 ], "spray_hits": [ - 29 + 31 ], "spray_shots": [ - 29 + 31 ], "steam_id": [ - 29 + 31 ], "team_damage": [ - 29 + 31 ], "team_flashed": [ - 29 + 31 ], "three_kill_rounds": [ - 29 + 31 ], "time_to_damage_count": [ - 29 + 31 ], "time_to_damage_sum_s": [ - 29 + 31 ], "total_engagement_frames": [ - 29 + 31 ], "trade_kill_attempts": [ - 29 + 31 ], "trade_kill_opportunities": [ - 29 + 31 ], "trade_kill_successes": [ - 29 + 31 ], "traded_death_attempts": [ - 29 + 31 ], "traded_death_opportunities": [ - 29 + 31 ], "traded_death_successes": [ - 29 + 31 ], "two_kill_rounds": [ - 29 + 31 ], "unused_utility_value": [ - 29 + 31 ], "util_on_death_count": [ - 29 + 31 ], "util_on_death_sum": [ - 29 + 31 ], "wasted_magazine_shots": [ - 29 + 31 ], "zeus_kills": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "player_match_map_stats_var_samp_order_by": { "assists": [ - 2829 + 2946 ], "assists_ct": [ - 2829 + 2946 ], "assists_t": [ - 2829 + 2946 ], "counter_strafe_eligible_shots": [ - 2829 + 2946 ], "counter_strafed_shots": [ - 2829 + 2946 ], "crosshair_angle_count": [ - 2829 + 2946 ], "crosshair_angle_sum_deg": [ - 2829 + 2946 ], "damage": [ - 2829 + 2946 ], "damage_ct": [ - 2829 + 2946 ], "damage_t": [ - 2829 + 2946 ], "deaths": [ - 2829 + 2946 ], "deaths_ct": [ - 2829 + 2946 ], "deaths_t": [ - 2829 + 2946 ], "decoy_throws": [ - 2829 + 2946 ], "enemies_flashed": [ - 2829 + 2946 ], "first_bullet_hits": [ - 2829 + 2946 ], "first_bullet_shots": [ - 2829 + 2946 ], "five_kill_rounds": [ - 2829 + 2946 ], "flash_assists": [ - 2829 + 2946 ], "flash_duration_count": [ - 2829 + 2946 ], "flash_duration_sum": [ - 2829 + 2946 ], "flashes_thrown": [ - 2829 + 2946 ], "four_kill_rounds": [ - 2829 + 2946 ], "he_damage": [ - 2829 + 2946 ], "he_team_damage": [ - 2829 + 2946 ], "he_throws": [ - 2829 + 2946 ], "headshot_hits": [ - 2829 + 2946 ], "hits": [ - 2829 + 2946 ], "hits_at_spotted": [ - 2829 + 2946 ], "hs_kills": [ - 2829 + 2946 ], "hs_kills_ct": [ - 2829 + 2946 ], "hs_kills_t": [ - 2829 + 2946 ], "kast_rounds": [ - 2829 + 2946 ], "kast_total_rounds": [ - 2829 + 2946 ], "kills": [ - 2829 + 2946 ], "kills_ct": [ - 2829 + 2946 ], "kills_t": [ - 2829 + 2946 ], "knife_kills": [ - 2829 + 2946 ], "molotov_damage": [ - 2829 + 2946 ], "molotov_throws": [ - 2829 + 2946 ], "non_awp_hits": [ - 2829 + 2946 ], "on_target_frames": [ - 2829 + 2946 ], "rounds_ct": [ - 2829 + 2946 ], "rounds_played": [ - 2829 + 2946 ], "rounds_t": [ - 2829 + 2946 ], "shots_at_spotted": [ - 2829 + 2946 ], "shots_fired": [ - 2829 + 2946 ], "smoke_throws": [ - 2829 + 2946 ], "spotted_count": [ - 2829 + 2946 ], "spotted_with_damage_count": [ - 2829 + 2946 ], "spray_hits": [ - 2829 + 2946 ], "spray_shots": [ - 2829 + 2946 ], "steam_id": [ - 2829 + 2946 ], "team_damage": [ - 2829 + 2946 ], "team_flashed": [ - 2829 + 2946 ], "three_kill_rounds": [ - 2829 + 2946 ], "time_to_damage_count": [ - 2829 + 2946 ], "time_to_damage_sum_s": [ - 2829 + 2946 ], "total_engagement_frames": [ - 2829 + 2946 ], "trade_kill_attempts": [ - 2829 + 2946 ], "trade_kill_opportunities": [ - 2829 + 2946 ], "trade_kill_successes": [ - 2829 + 2946 ], "traded_death_attempts": [ - 2829 + 2946 ], "traded_death_opportunities": [ - 2829 + 2946 ], "traded_death_successes": [ - 2829 + 2946 ], "two_kill_rounds": [ - 2829 + 2946 ], "unused_utility_value": [ - 2829 + 2946 ], "util_on_death_count": [ - 2829 + 2946 ], "util_on_death_sum": [ - 2829 + 2946 ], "wasted_magazine_shots": [ - 2829 + 2946 ], "zeus_kills": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "player_match_map_stats_variance_fields": { "assists": [ - 29 + 31 ], "assists_ct": [ - 29 + 31 ], "assists_t": [ - 29 + 31 ], "counter_strafe_eligible_shots": [ - 29 + 31 ], "counter_strafed_shots": [ - 29 + 31 ], "crosshair_angle_count": [ - 29 + 31 ], "crosshair_angle_sum_deg": [ - 29 + 31 ], "damage": [ - 29 + 31 ], "damage_ct": [ - 29 + 31 ], "damage_t": [ - 29 + 31 ], "deaths": [ - 29 + 31 ], "deaths_ct": [ - 29 + 31 ], "deaths_t": [ - 29 + 31 ], "decoy_throws": [ - 29 + 31 ], "enemies_flashed": [ - 29 + 31 ], "first_bullet_hits": [ - 29 + 31 ], "first_bullet_shots": [ - 29 + 31 ], "five_kill_rounds": [ - 29 + 31 ], "flash_assists": [ - 29 + 31 ], "flash_duration_count": [ - 29 + 31 ], "flash_duration_sum": [ - 29 + 31 ], "flashes_thrown": [ - 29 + 31 ], "four_kill_rounds": [ - 29 + 31 ], "he_damage": [ - 29 + 31 ], "he_team_damage": [ - 29 + 31 ], "he_throws": [ - 29 + 31 ], "headshot_hits": [ - 29 + 31 ], "hits": [ - 29 + 31 ], "hits_at_spotted": [ - 29 + 31 ], "hs_kills": [ - 29 + 31 ], "hs_kills_ct": [ - 29 + 31 ], "hs_kills_t": [ - 29 + 31 ], "kast_rounds": [ - 29 + 31 ], "kast_total_rounds": [ - 29 + 31 ], "kills": [ - 29 + 31 ], "kills_ct": [ - 29 + 31 ], "kills_t": [ - 29 + 31 ], "knife_kills": [ - 29 + 31 ], "molotov_damage": [ - 29 + 31 ], "molotov_throws": [ - 29 + 31 ], "non_awp_hits": [ - 29 + 31 ], "on_target_frames": [ - 29 + 31 ], "rounds_ct": [ - 29 + 31 ], "rounds_played": [ - 29 + 31 ], "rounds_t": [ - 29 + 31 ], "shots_at_spotted": [ - 29 + 31 ], "shots_fired": [ - 29 + 31 ], "smoke_throws": [ - 29 + 31 ], "spotted_count": [ - 29 + 31 ], "spotted_with_damage_count": [ - 29 + 31 ], "spray_hits": [ - 29 + 31 ], "spray_shots": [ - 29 + 31 ], "steam_id": [ - 29 + 31 ], "team_damage": [ - 29 + 31 ], "team_flashed": [ - 29 + 31 ], "three_kill_rounds": [ - 29 + 31 ], "time_to_damage_count": [ - 29 + 31 ], "time_to_damage_sum_s": [ - 29 + 31 ], "total_engagement_frames": [ - 29 + 31 ], "trade_kill_attempts": [ - 29 + 31 ], "trade_kill_opportunities": [ - 29 + 31 ], "trade_kill_successes": [ - 29 + 31 ], "traded_death_attempts": [ - 29 + 31 ], "traded_death_opportunities": [ - 29 + 31 ], "traded_death_successes": [ - 29 + 31 ], "two_kill_rounds": [ - 29 + 31 ], "unused_utility_value": [ - 29 + 31 ], "util_on_death_count": [ - 29 + 31 ], "util_on_death_sum": [ - 29 + 31 ], "wasted_magazine_shots": [ - 29 + 31 ], "zeus_kills": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "player_match_map_stats_variance_order_by": { "assists": [ - 2829 + 2946 ], "assists_ct": [ - 2829 + 2946 ], "assists_t": [ - 2829 + 2946 ], "counter_strafe_eligible_shots": [ - 2829 + 2946 ], "counter_strafed_shots": [ - 2829 + 2946 ], "crosshair_angle_count": [ - 2829 + 2946 ], "crosshair_angle_sum_deg": [ - 2829 + 2946 ], "damage": [ - 2829 + 2946 ], "damage_ct": [ - 2829 + 2946 ], "damage_t": [ - 2829 + 2946 ], "deaths": [ - 2829 + 2946 ], "deaths_ct": [ - 2829 + 2946 ], "deaths_t": [ - 2829 + 2946 ], "decoy_throws": [ - 2829 + 2946 ], "enemies_flashed": [ - 2829 + 2946 ], "first_bullet_hits": [ - 2829 + 2946 ], "first_bullet_shots": [ - 2829 + 2946 ], "five_kill_rounds": [ - 2829 + 2946 ], "flash_assists": [ - 2829 + 2946 ], "flash_duration_count": [ - 2829 + 2946 ], "flash_duration_sum": [ - 2829 + 2946 ], "flashes_thrown": [ - 2829 + 2946 ], "four_kill_rounds": [ - 2829 + 2946 ], "he_damage": [ - 2829 + 2946 ], "he_team_damage": [ - 2829 + 2946 ], "he_throws": [ - 2829 + 2946 ], "headshot_hits": [ - 2829 + 2946 ], "hits": [ - 2829 + 2946 ], "hits_at_spotted": [ - 2829 + 2946 ], "hs_kills": [ - 2829 + 2946 ], "hs_kills_ct": [ - 2829 + 2946 ], "hs_kills_t": [ - 2829 + 2946 ], "kast_rounds": [ - 2829 + 2946 ], "kast_total_rounds": [ - 2829 + 2946 ], "kills": [ - 2829 + 2946 ], "kills_ct": [ - 2829 + 2946 ], "kills_t": [ - 2829 + 2946 ], "knife_kills": [ - 2829 + 2946 ], "molotov_damage": [ - 2829 + 2946 ], "molotov_throws": [ - 2829 + 2946 ], "non_awp_hits": [ - 2829 + 2946 ], "on_target_frames": [ - 2829 + 2946 ], "rounds_ct": [ - 2829 + 2946 ], "rounds_played": [ - 2829 + 2946 ], "rounds_t": [ - 2829 + 2946 ], "shots_at_spotted": [ - 2829 + 2946 ], "shots_fired": [ - 2829 + 2946 ], "smoke_throws": [ - 2829 + 2946 ], "spotted_count": [ - 2829 + 2946 ], "spotted_with_damage_count": [ - 2829 + 2946 ], "spray_hits": [ - 2829 + 2946 ], "spray_shots": [ - 2829 + 2946 ], "steam_id": [ - 2829 + 2946 ], "team_damage": [ - 2829 + 2946 ], "team_flashed": [ - 2829 + 2946 ], "three_kill_rounds": [ - 2829 + 2946 ], "time_to_damage_count": [ - 2829 + 2946 ], "time_to_damage_sum_s": [ - 2829 + 2946 ], "total_engagement_frames": [ - 2829 + 2946 ], "trade_kill_attempts": [ - 2829 + 2946 ], "trade_kill_opportunities": [ - 2829 + 2946 ], "trade_kill_successes": [ - 2829 + 2946 ], "traded_death_attempts": [ - 2829 + 2946 ], "traded_death_opportunities": [ - 2829 + 2946 ], "traded_death_successes": [ - 2829 + 2946 ], "two_kill_rounds": [ - 2829 + 2946 ], "unused_utility_value": [ - 2829 + 2946 ], "util_on_death_count": [ - 2829 + 2946 ], "util_on_death_sum": [ - 2829 + 2946 ], "wasted_magazine_shots": [ - 2829 + 2946 ], "zeus_kills": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "player_match_performance_v": { "accuracy": [ - 2827 + 2944 ], "accuracy_spotted": [ - 2827 + 2944 ], "aim_rating": [ - 1547 + 1664 ], "counter_strafe_pct": [ - 2827 + 2944 ], "enemy_blind_pr": [ - 2827 + 2944 ], "flash_assists_pr": [ - 2827 + 2944 ], "hs_pct": [ - 2827 + 2944 ], "kast_pct": [ - 2827 + 2944 ], "match_id": [ - 4921 + 4993 ], "overall_rating": [ - 1547 + 1664 ], "played_at": [ - 4376 + 4493 ], "positioning_rating": [ - 1547 + 1664 ], "rounds": [ - 38 + 40 ], "source": [ - 78 + 80 ], "steam_id": [ - 180 + 252 ], "survival_pct": [ - 2827 + 2944 ], "traded_death_pct": [ - 2827 + 2944 ], "util_efficiency": [ - 2827 + 2944 ], "utility_rating": [ - 1547 + 1664 ], "__typename": [ - 78 + 80 ] }, "player_match_performance_v_aggregate": { "aggregate": [ - 3336 + 3453 ], "nodes": [ - 3334 + 3451 ], "__typename": [ - 78 + 80 ] }, "player_match_performance_v_aggregate_fields": { "avg": [ - 3337 + 3454 ], "count": [ - 38, + 40, { "columns": [ - 3342, + 3459, "[player_match_performance_v_select_column!]" ], "distinct": [ - 3 + 5 ] } ], "max": [ - 3339 + 3456 ], "min": [ - 3340 + 3457 ], "stddev": [ - 3343 + 3460 ], "stddev_pop": [ - 3344 + 3461 ], "stddev_samp": [ - 3345 + 3462 ], "sum": [ - 3348 + 3465 ], "var_pop": [ - 3349 + 3466 ], "var_samp": [ - 3350 + 3467 ], "variance": [ - 3351 + 3468 ], "__typename": [ - 78 + 80 ] }, "player_match_performance_v_avg_fields": { "accuracy": [ - 29 + 31 ], "accuracy_spotted": [ - 29 + 31 ], "aim_rating": [ - 29 + 31 ], "counter_strafe_pct": [ - 29 + 31 ], "enemy_blind_pr": [ - 29 + 31 ], "flash_assists_pr": [ - 29 + 31 ], "hs_pct": [ - 29 + 31 ], "kast_pct": [ - 29 + 31 ], "overall_rating": [ - 29 + 31 ], "positioning_rating": [ - 29 + 31 ], "rounds": [ - 29 + 31 ], "steam_id": [ - 29 + 31 ], "survival_pct": [ - 29 + 31 ], "traded_death_pct": [ - 29 + 31 ], "util_efficiency": [ - 29 + 31 ], "utility_rating": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "player_match_performance_v_bool_exp": { "_and": [ - 3338 + 3455 ], "_not": [ - 3338 + 3455 ], "_or": [ - 3338 + 3455 ], "accuracy": [ - 2828 + 2945 ], "accuracy_spotted": [ - 2828 + 2945 ], "aim_rating": [ - 1548 + 1665 ], "counter_strafe_pct": [ - 2828 + 2945 ], "enemy_blind_pr": [ - 2828 + 2945 ], "flash_assists_pr": [ - 2828 + 2945 ], "hs_pct": [ - 2828 + 2945 ], "kast_pct": [ - 2828 + 2945 ], "match_id": [ - 4923 + 4995 ], "overall_rating": [ - 1548 + 1665 ], "played_at": [ - 4377 + 4494 ], "positioning_rating": [ - 1548 + 1665 ], "rounds": [ - 39 + 41 ], "source": [ - 80 + 82 ], "steam_id": [ - 182 + 254 ], "survival_pct": [ - 2828 + 2945 ], "traded_death_pct": [ - 2828 + 2945 ], "util_efficiency": [ - 2828 + 2945 ], "utility_rating": [ - 1548 + 1665 ], "__typename": [ - 78 + 80 ] }, "player_match_performance_v_max_fields": { "accuracy": [ - 2827 + 2944 ], "accuracy_spotted": [ - 2827 + 2944 ], "aim_rating": [ - 1547 + 1664 ], "counter_strafe_pct": [ - 2827 + 2944 ], "enemy_blind_pr": [ - 2827 + 2944 ], "flash_assists_pr": [ - 2827 + 2944 ], "hs_pct": [ - 2827 + 2944 ], "kast_pct": [ - 2827 + 2944 ], "match_id": [ - 4921 + 4993 ], "overall_rating": [ - 1547 + 1664 ], "played_at": [ - 4376 + 4493 ], "positioning_rating": [ - 1547 + 1664 ], "rounds": [ - 38 + 40 ], "source": [ - 78 + 80 ], "steam_id": [ - 180 + 252 ], "survival_pct": [ - 2827 + 2944 ], "traded_death_pct": [ - 2827 + 2944 ], "util_efficiency": [ - 2827 + 2944 ], "utility_rating": [ - 1547 + 1664 ], "__typename": [ - 78 + 80 ] }, "player_match_performance_v_min_fields": { "accuracy": [ - 2827 + 2944 ], "accuracy_spotted": [ - 2827 + 2944 ], "aim_rating": [ - 1547 + 1664 ], "counter_strafe_pct": [ - 2827 + 2944 ], "enemy_blind_pr": [ - 2827 + 2944 ], "flash_assists_pr": [ - 2827 + 2944 ], "hs_pct": [ - 2827 + 2944 ], "kast_pct": [ - 2827 + 2944 ], "match_id": [ - 4921 + 4993 ], "overall_rating": [ - 1547 + 1664 ], "played_at": [ - 4376 + 4493 ], "positioning_rating": [ - 1547 + 1664 ], "rounds": [ - 38 + 40 ], "source": [ - 78 + 80 ], "steam_id": [ - 180 + 252 ], "survival_pct": [ - 2827 + 2944 ], "traded_death_pct": [ - 2827 + 2944 ], "util_efficiency": [ - 2827 + 2944 ], "utility_rating": [ - 1547 + 1664 ], "__typename": [ - 78 + 80 ] }, "player_match_performance_v_order_by": { "accuracy": [ - 2829 + 2946 ], "accuracy_spotted": [ - 2829 + 2946 ], "aim_rating": [ - 2829 + 2946 ], "counter_strafe_pct": [ - 2829 + 2946 ], "enemy_blind_pr": [ - 2829 + 2946 ], "flash_assists_pr": [ - 2829 + 2946 ], "hs_pct": [ - 2829 + 2946 ], "kast_pct": [ - 2829 + 2946 ], "match_id": [ - 2829 + 2946 ], "overall_rating": [ - 2829 + 2946 ], "played_at": [ - 2829 + 2946 ], "positioning_rating": [ - 2829 + 2946 ], "rounds": [ - 2829 + 2946 ], "source": [ - 2829 + 2946 ], "steam_id": [ - 2829 + 2946 ], "survival_pct": [ - 2829 + 2946 ], "traded_death_pct": [ - 2829 + 2946 ], "util_efficiency": [ - 2829 + 2946 ], "utility_rating": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "player_match_performance_v_select_column": {}, "player_match_performance_v_stddev_fields": { "accuracy": [ - 29 + 31 ], "accuracy_spotted": [ - 29 + 31 ], "aim_rating": [ - 29 + 31 ], "counter_strafe_pct": [ - 29 + 31 ], "enemy_blind_pr": [ - 29 + 31 ], "flash_assists_pr": [ - 29 + 31 ], "hs_pct": [ - 29 + 31 ], "kast_pct": [ - 29 + 31 ], "overall_rating": [ - 29 + 31 ], "positioning_rating": [ - 29 + 31 ], "rounds": [ - 29 + 31 ], "steam_id": [ - 29 + 31 ], "survival_pct": [ - 29 + 31 ], "traded_death_pct": [ - 29 + 31 ], "util_efficiency": [ - 29 + 31 ], "utility_rating": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "player_match_performance_v_stddev_pop_fields": { "accuracy": [ - 29 + 31 ], "accuracy_spotted": [ - 29 + 31 ], "aim_rating": [ - 29 + 31 ], "counter_strafe_pct": [ - 29 + 31 ], "enemy_blind_pr": [ - 29 + 31 ], "flash_assists_pr": [ - 29 + 31 ], "hs_pct": [ - 29 + 31 ], "kast_pct": [ - 29 + 31 ], "overall_rating": [ - 29 + 31 ], "positioning_rating": [ - 29 + 31 ], "rounds": [ - 29 + 31 ], "steam_id": [ - 29 + 31 ], "survival_pct": [ - 29 + 31 ], "traded_death_pct": [ - 29 + 31 ], "util_efficiency": [ - 29 + 31 ], "utility_rating": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "player_match_performance_v_stddev_samp_fields": { "accuracy": [ - 29 + 31 ], "accuracy_spotted": [ - 29 + 31 ], "aim_rating": [ - 29 + 31 ], "counter_strafe_pct": [ - 29 + 31 ], "enemy_blind_pr": [ - 29 + 31 ], "flash_assists_pr": [ - 29 + 31 ], "hs_pct": [ - 29 + 31 ], "kast_pct": [ - 29 + 31 ], "overall_rating": [ - 29 + 31 ], "positioning_rating": [ - 29 + 31 ], "rounds": [ - 29 + 31 ], "steam_id": [ - 29 + 31 ], "survival_pct": [ - 29 + 31 ], "traded_death_pct": [ - 29 + 31 ], "util_efficiency": [ - 29 + 31 ], "utility_rating": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "player_match_performance_v_stream_cursor_input": { "initial_value": [ - 3347 + 3464 ], "ordering": [ - 236 + 308 ], "__typename": [ - 78 + 80 ] }, "player_match_performance_v_stream_cursor_value_input": { "accuracy": [ - 2827 + 2944 ], "accuracy_spotted": [ - 2827 + 2944 ], "aim_rating": [ - 1547 + 1664 ], "counter_strafe_pct": [ - 2827 + 2944 ], "enemy_blind_pr": [ - 2827 + 2944 ], "flash_assists_pr": [ - 2827 + 2944 ], "hs_pct": [ - 2827 + 2944 ], "kast_pct": [ - 2827 + 2944 ], "match_id": [ - 4921 + 4993 ], "overall_rating": [ - 1547 + 1664 ], "played_at": [ - 4376 + 4493 ], "positioning_rating": [ - 1547 + 1664 ], "rounds": [ - 38 + 40 ], "source": [ - 78 + 80 ], "steam_id": [ - 180 + 252 ], "survival_pct": [ - 2827 + 2944 ], "traded_death_pct": [ - 2827 + 2944 ], "util_efficiency": [ - 2827 + 2944 ], "utility_rating": [ - 1547 + 1664 ], "__typename": [ - 78 + 80 ] }, "player_match_performance_v_sum_fields": { "accuracy": [ - 2827 + 2944 ], "accuracy_spotted": [ - 2827 + 2944 ], "aim_rating": [ - 1547 + 1664 ], "counter_strafe_pct": [ - 2827 + 2944 ], "enemy_blind_pr": [ - 2827 + 2944 ], "flash_assists_pr": [ - 2827 + 2944 ], "hs_pct": [ - 2827 + 2944 ], "kast_pct": [ - 2827 + 2944 ], "overall_rating": [ - 1547 + 1664 ], "positioning_rating": [ - 1547 + 1664 ], "rounds": [ - 38 + 40 ], "steam_id": [ - 180 + 252 ], "survival_pct": [ - 2827 + 2944 ], "traded_death_pct": [ - 2827 + 2944 ], "util_efficiency": [ - 2827 + 2944 ], "utility_rating": [ - 1547 + 1664 ], "__typename": [ - 78 + 80 ] }, "player_match_performance_v_var_pop_fields": { "accuracy": [ - 29 + 31 ], "accuracy_spotted": [ - 29 + 31 ], "aim_rating": [ - 29 + 31 ], "counter_strafe_pct": [ - 29 + 31 ], "enemy_blind_pr": [ - 29 + 31 ], "flash_assists_pr": [ - 29 + 31 ], "hs_pct": [ - 29 + 31 ], "kast_pct": [ - 29 + 31 ], "overall_rating": [ - 29 + 31 ], "positioning_rating": [ - 29 + 31 ], "rounds": [ - 29 + 31 ], "steam_id": [ - 29 + 31 ], "survival_pct": [ - 29 + 31 ], "traded_death_pct": [ - 29 + 31 ], "util_efficiency": [ - 29 + 31 ], "utility_rating": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "player_match_performance_v_var_samp_fields": { "accuracy": [ - 29 + 31 ], "accuracy_spotted": [ - 29 + 31 ], "aim_rating": [ - 29 + 31 ], "counter_strafe_pct": [ - 29 + 31 ], "enemy_blind_pr": [ - 29 + 31 ], "flash_assists_pr": [ - 29 + 31 ], "hs_pct": [ - 29 + 31 ], "kast_pct": [ - 29 + 31 ], "overall_rating": [ - 29 + 31 ], "positioning_rating": [ - 29 + 31 ], "rounds": [ - 29 + 31 ], "steam_id": [ - 29 + 31 ], "survival_pct": [ - 29 + 31 ], "traded_death_pct": [ - 29 + 31 ], "util_efficiency": [ - 29 + 31 ], "utility_rating": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "player_match_performance_v_variance_fields": { "accuracy": [ - 29 + 31 ], "accuracy_spotted": [ - 29 + 31 ], "aim_rating": [ - 29 + 31 ], "counter_strafe_pct": [ - 29 + 31 ], "enemy_blind_pr": [ - 29 + 31 ], "flash_assists_pr": [ - 29 + 31 ], "hs_pct": [ - 29 + 31 ], "kast_pct": [ - 29 + 31 ], "overall_rating": [ - 29 + 31 ], "positioning_rating": [ - 29 + 31 ], "rounds": [ - 29 + 31 ], "steam_id": [ - 29 + 31 ], "survival_pct": [ - 29 + 31 ], "traded_death_pct": [ - 29 + 31 ], "util_efficiency": [ - 29 + 31 ], "utility_rating": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "player_match_stats_v": { "assists": [ - 38 + 40 ], "assists_ct": [ - 38 + 40 ], "assists_t": [ - 38 + 40 ], "avg_crosshair_angle_deg": [ - 2827 + 2944 ], "avg_flash_duration": [ - 2827 + 2944 ], "avg_time_to_damage_s": [ - 2827 + 2944 ], "counter_strafe_eligible_shots": [ - 38 + 40 ], "counter_strafed_shots": [ - 38 + 40 ], "damage": [ - 38 + 40 ], "damage_ct": [ - 38 + 40 ], "damage_t": [ - 38 + 40 ], "deaths": [ - 38 + 40 ], "deaths_ct": [ - 38 + 40 ], "deaths_t": [ - 38 + 40 ], "decoy_throws": [ - 38 + 40 ], "enemies_flashed": [ - 38 + 40 ], "first_bullet_hits": [ - 38 + 40 ], "first_bullet_shots": [ - 38 + 40 ], "five_kill_rounds": [ - 38 + 40 ], "flash_assists": [ - 38 + 40 ], "flashes_thrown": [ - 38 + 40 ], "four_kill_rounds": [ - 38 + 40 ], "he_damage": [ - 38 + 40 ], "he_team_damage": [ - 38 + 40 ], "he_throws": [ - 38 + 40 ], "headshot_hits": [ - 38 + 40 ], "hits": [ - 38 + 40 ], "hits_at_spotted": [ - 38 + 40 ], "hs_kills": [ - 38 + 40 ], "hs_kills_ct": [ - 38 + 40 ], "hs_kills_t": [ - 38 + 40 ], "kills": [ - 38 + 40 ], "kills_ct": [ - 38 + 40 ], "kills_t": [ - 38 + 40 ], "knife_kills": [ - 38 + 40 ], "match_id": [ - 4921 + 4993 ], "molotov_damage": [ - 38 + 40 ], "molotov_throws": [ - 38 + 40 ], "non_awp_hits": [ - 38 + 40 ], "on_target_frames": [ - 38 + 40 ], "rounds_ct": [ - 38 + 40 ], "rounds_played": [ - 38 + 40 ], "rounds_t": [ - 38 + 40 ], "shots_at_spotted": [ - 38 + 40 ], "shots_fired": [ - 38 + 40 ], "smoke_throws": [ - 38 + 40 ], "spotted_count": [ - 38 + 40 ], "spotted_with_damage_count": [ - 38 + 40 ], "spray_hits": [ - 38 + 40 ], "spray_shots": [ - 38 + 40 ], "steam_id": [ - 180 + 252 ], "team_damage": [ - 38 + 40 ], "team_flashed": [ - 38 + 40 ], "three_kill_rounds": [ - 38 + 40 ], "total_engagement_frames": [ - 38 + 40 ], "trade_kill_attempts": [ - 38 + 40 ], "trade_kill_opportunities": [ - 38 + 40 ], "trade_kill_successes": [ - 38 + 40 ], "traded_death_attempts": [ - 38 + 40 ], "traded_death_opportunities": [ - 38 + 40 ], "traded_death_successes": [ - 38 + 40 ], "two_kill_rounds": [ - 38 + 40 ], "unused_utility_value": [ - 38 + 40 ], "utility_on_death": [ - 2827 + 2944 ], "wasted_magazine_shots": [ - 38 + 40 ], "zeus_kills": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "player_match_stats_v_aggregate": { "aggregate": [ - 3356 + 3473 ], "nodes": [ - 3352 + 3469 ], "__typename": [ - 78 + 80 ] }, "player_match_stats_v_aggregate_bool_exp": { "count": [ - 3355 + 3472 ], "__typename": [ - 78 + 80 ] }, "player_match_stats_v_aggregate_bool_exp_count": { "arguments": [ - 3368 + 3485 ], "distinct": [ - 3 + 5 ], "filter": [ - 3361 + 3478 ], "predicate": [ - 39 + 41 ], "__typename": [ - 78 + 80 ] }, "player_match_stats_v_aggregate_fields": { "avg": [ - 3359 + 3476 ], "count": [ - 38, + 40, { "columns": [ - 3368, + 3485, "[player_match_stats_v_select_column!]" ], "distinct": [ - 3 + 5 ] } ], "max": [ - 3363 + 3480 ], "min": [ - 3365 + 3482 ], "stddev": [ - 3369 + 3486 ], "stddev_pop": [ - 3371 + 3488 ], "stddev_samp": [ - 3373 + 3490 ], "sum": [ - 3377 + 3494 ], "var_pop": [ - 3379 + 3496 ], "var_samp": [ - 3381 + 3498 ], "variance": [ - 3383 + 3500 ], "__typename": [ - 78 + 80 ] }, "player_match_stats_v_aggregate_order_by": { "avg": [ - 3360 + 3477 ], "count": [ - 2829 + 2946 ], "max": [ - 3364 + 3481 ], "min": [ - 3366 + 3483 ], "stddev": [ - 3370 + 3487 ], "stddev_pop": [ - 3372 + 3489 ], "stddev_samp": [ - 3374 + 3491 ], "sum": [ - 3378 + 3495 ], "var_pop": [ - 3380 + 3497 ], "var_samp": [ - 3382 + 3499 ], "variance": [ - 3384 + 3501 ], "__typename": [ - 78 + 80 ] }, "player_match_stats_v_arr_rel_insert_input": { "data": [ - 3362 + 3479 ], "__typename": [ - 78 + 80 ] }, "player_match_stats_v_avg_fields": { "assists": [ - 29 + 31 ], "assists_ct": [ - 29 + 31 ], "assists_t": [ - 29 + 31 ], "avg_crosshair_angle_deg": [ - 29 + 31 ], "avg_flash_duration": [ - 29 + 31 ], "avg_time_to_damage_s": [ - 29 + 31 ], "counter_strafe_eligible_shots": [ - 29 + 31 ], "counter_strafed_shots": [ - 29 + 31 ], "damage": [ - 29 + 31 ], "damage_ct": [ - 29 + 31 ], "damage_t": [ - 29 + 31 ], "deaths": [ - 29 + 31 ], "deaths_ct": [ - 29 + 31 ], "deaths_t": [ - 29 + 31 ], "decoy_throws": [ - 29 + 31 ], "enemies_flashed": [ - 29 + 31 ], "first_bullet_hits": [ - 29 + 31 ], "first_bullet_shots": [ - 29 + 31 ], "five_kill_rounds": [ - 29 + 31 ], "flash_assists": [ - 29 + 31 ], "flashes_thrown": [ - 29 + 31 ], "four_kill_rounds": [ - 29 + 31 ], "he_damage": [ - 29 + 31 ], "he_team_damage": [ - 29 + 31 ], "he_throws": [ - 29 + 31 ], "headshot_hits": [ - 29 + 31 ], "hits": [ - 29 + 31 ], "hits_at_spotted": [ - 29 + 31 ], "hs_kills": [ - 29 + 31 ], "hs_kills_ct": [ - 29 + 31 ], "hs_kills_t": [ - 29 + 31 ], "kills": [ - 29 + 31 ], "kills_ct": [ - 29 + 31 ], "kills_t": [ - 29 + 31 ], "knife_kills": [ - 29 + 31 ], "molotov_damage": [ - 29 + 31 ], "molotov_throws": [ - 29 + 31 ], "non_awp_hits": [ - 29 + 31 ], "on_target_frames": [ - 29 + 31 ], "rounds_ct": [ - 29 + 31 ], "rounds_played": [ - 29 + 31 ], "rounds_t": [ - 29 + 31 ], "shots_at_spotted": [ - 29 + 31 ], "shots_fired": [ - 29 + 31 ], "smoke_throws": [ - 29 + 31 ], "spotted_count": [ - 29 + 31 ], "spotted_with_damage_count": [ - 29 + 31 ], "spray_hits": [ - 29 + 31 ], "spray_shots": [ - 29 + 31 ], "steam_id": [ - 29 + 31 ], "team_damage": [ - 29 + 31 ], "team_flashed": [ - 29 + 31 ], "three_kill_rounds": [ - 29 + 31 ], "total_engagement_frames": [ - 29 + 31 ], "trade_kill_attempts": [ - 29 + 31 ], "trade_kill_opportunities": [ - 29 + 31 ], "trade_kill_successes": [ - 29 + 31 ], "traded_death_attempts": [ - 29 + 31 ], "traded_death_opportunities": [ - 29 + 31 ], "traded_death_successes": [ - 29 + 31 ], "two_kill_rounds": [ - 29 + 31 ], "unused_utility_value": [ - 29 + 31 ], "utility_on_death": [ - 29 + 31 ], "wasted_magazine_shots": [ - 29 + 31 ], "zeus_kills": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "player_match_stats_v_avg_order_by": { "assists": [ - 2829 + 2946 ], "assists_ct": [ - 2829 + 2946 ], "assists_t": [ - 2829 + 2946 ], "avg_crosshair_angle_deg": [ - 2829 + 2946 ], "avg_flash_duration": [ - 2829 + 2946 ], "avg_time_to_damage_s": [ - 2829 + 2946 ], "counter_strafe_eligible_shots": [ - 2829 + 2946 ], "counter_strafed_shots": [ - 2829 + 2946 ], "damage": [ - 2829 + 2946 ], "damage_ct": [ - 2829 + 2946 ], "damage_t": [ - 2829 + 2946 ], "deaths": [ - 2829 + 2946 ], "deaths_ct": [ - 2829 + 2946 ], "deaths_t": [ - 2829 + 2946 ], "decoy_throws": [ - 2829 + 2946 ], "enemies_flashed": [ - 2829 + 2946 ], "first_bullet_hits": [ - 2829 + 2946 ], "first_bullet_shots": [ - 2829 + 2946 ], "five_kill_rounds": [ - 2829 + 2946 ], "flash_assists": [ - 2829 + 2946 ], "flashes_thrown": [ - 2829 + 2946 ], "four_kill_rounds": [ - 2829 + 2946 ], "he_damage": [ - 2829 + 2946 ], "he_team_damage": [ - 2829 + 2946 ], "he_throws": [ - 2829 + 2946 ], "headshot_hits": [ - 2829 + 2946 ], "hits": [ - 2829 + 2946 ], "hits_at_spotted": [ - 2829 + 2946 ], "hs_kills": [ - 2829 + 2946 ], "hs_kills_ct": [ - 2829 + 2946 ], "hs_kills_t": [ - 2829 + 2946 ], "kills": [ - 2829 + 2946 ], "kills_ct": [ - 2829 + 2946 ], "kills_t": [ - 2829 + 2946 ], "knife_kills": [ - 2829 + 2946 ], "molotov_damage": [ - 2829 + 2946 ], "molotov_throws": [ - 2829 + 2946 ], "non_awp_hits": [ - 2829 + 2946 ], "on_target_frames": [ - 2829 + 2946 ], "rounds_ct": [ - 2829 + 2946 ], "rounds_played": [ - 2829 + 2946 ], "rounds_t": [ - 2829 + 2946 ], "shots_at_spotted": [ - 2829 + 2946 ], "shots_fired": [ - 2829 + 2946 ], "smoke_throws": [ - 2829 + 2946 ], "spotted_count": [ - 2829 + 2946 ], "spotted_with_damage_count": [ - 2829 + 2946 ], "spray_hits": [ - 2829 + 2946 ], "spray_shots": [ - 2829 + 2946 ], "steam_id": [ - 2829 + 2946 ], "team_damage": [ - 2829 + 2946 ], "team_flashed": [ - 2829 + 2946 ], "three_kill_rounds": [ - 2829 + 2946 ], "total_engagement_frames": [ - 2829 + 2946 ], "trade_kill_attempts": [ - 2829 + 2946 ], "trade_kill_opportunities": [ - 2829 + 2946 ], "trade_kill_successes": [ - 2829 + 2946 ], "traded_death_attempts": [ - 2829 + 2946 ], "traded_death_opportunities": [ - 2829 + 2946 ], "traded_death_successes": [ - 2829 + 2946 ], "two_kill_rounds": [ - 2829 + 2946 ], "unused_utility_value": [ - 2829 + 2946 ], "utility_on_death": [ - 2829 + 2946 ], "wasted_magazine_shots": [ - 2829 + 2946 ], "zeus_kills": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "player_match_stats_v_bool_exp": { "_and": [ - 3361 + 3478 ], "_not": [ - 3361 + 3478 ], "_or": [ - 3361 + 3478 ], "assists": [ - 39 + 41 ], "assists_ct": [ - 39 + 41 ], "assists_t": [ - 39 + 41 ], "avg_crosshair_angle_deg": [ - 2828 + 2945 ], "avg_flash_duration": [ - 2828 + 2945 ], "avg_time_to_damage_s": [ - 2828 + 2945 ], "counter_strafe_eligible_shots": [ - 39 + 41 ], "counter_strafed_shots": [ - 39 + 41 ], "damage": [ - 39 + 41 ], "damage_ct": [ - 39 + 41 ], "damage_t": [ - 39 + 41 ], "deaths": [ - 39 + 41 ], "deaths_ct": [ - 39 + 41 ], "deaths_t": [ - 39 + 41 ], "decoy_throws": [ - 39 + 41 ], "enemies_flashed": [ - 39 + 41 ], "first_bullet_hits": [ - 39 + 41 ], "first_bullet_shots": [ - 39 + 41 ], "five_kill_rounds": [ - 39 + 41 ], "flash_assists": [ - 39 + 41 ], "flashes_thrown": [ - 39 + 41 ], "four_kill_rounds": [ - 39 + 41 ], "he_damage": [ - 39 + 41 ], "he_team_damage": [ - 39 + 41 ], "he_throws": [ - 39 + 41 ], "headshot_hits": [ - 39 + 41 ], "hits": [ - 39 + 41 ], "hits_at_spotted": [ - 39 + 41 ], "hs_kills": [ - 39 + 41 ], "hs_kills_ct": [ - 39 + 41 ], "hs_kills_t": [ - 39 + 41 ], "kills": [ - 39 + 41 ], "kills_ct": [ - 39 + 41 ], "kills_t": [ - 39 + 41 ], "knife_kills": [ - 39 + 41 ], "match_id": [ - 4923 + 4995 ], "molotov_damage": [ - 39 + 41 ], "molotov_throws": [ - 39 + 41 ], "non_awp_hits": [ - 39 + 41 ], "on_target_frames": [ - 39 + 41 ], "rounds_ct": [ - 39 + 41 ], "rounds_played": [ - 39 + 41 ], "rounds_t": [ - 39 + 41 ], "shots_at_spotted": [ - 39 + 41 ], "shots_fired": [ - 39 + 41 ], "smoke_throws": [ - 39 + 41 ], "spotted_count": [ - 39 + 41 ], "spotted_with_damage_count": [ - 39 + 41 ], "spray_hits": [ - 39 + 41 ], "spray_shots": [ - 39 + 41 ], "steam_id": [ - 182 + 254 ], "team_damage": [ - 39 + 41 ], "team_flashed": [ - 39 + 41 ], "three_kill_rounds": [ - 39 + 41 ], "total_engagement_frames": [ - 39 + 41 ], "trade_kill_attempts": [ - 39 + 41 ], "trade_kill_opportunities": [ - 39 + 41 ], "trade_kill_successes": [ - 39 + 41 ], "traded_death_attempts": [ - 39 + 41 ], "traded_death_opportunities": [ - 39 + 41 ], "traded_death_successes": [ - 39 + 41 ], "two_kill_rounds": [ - 39 + 41 ], "unused_utility_value": [ - 39 + 41 ], "utility_on_death": [ - 2828 + 2945 ], "wasted_magazine_shots": [ - 39 + 41 ], "zeus_kills": [ - 39 + 41 ], "__typename": [ - 78 + 80 ] }, "player_match_stats_v_insert_input": { "assists": [ - 38 + 40 ], "assists_ct": [ - 38 + 40 ], "assists_t": [ - 38 + 40 ], "avg_crosshair_angle_deg": [ - 2827 + 2944 ], "avg_flash_duration": [ - 2827 + 2944 ], "avg_time_to_damage_s": [ - 2827 + 2944 ], "counter_strafe_eligible_shots": [ - 38 + 40 ], "counter_strafed_shots": [ - 38 + 40 ], "damage": [ - 38 + 40 ], "damage_ct": [ - 38 + 40 ], "damage_t": [ - 38 + 40 ], "deaths": [ - 38 + 40 ], "deaths_ct": [ - 38 + 40 ], "deaths_t": [ - 38 + 40 ], "decoy_throws": [ - 38 + 40 ], "enemies_flashed": [ - 38 + 40 ], "first_bullet_hits": [ - 38 + 40 ], "first_bullet_shots": [ - 38 + 40 ], "five_kill_rounds": [ - 38 + 40 ], "flash_assists": [ - 38 + 40 ], "flashes_thrown": [ - 38 + 40 ], "four_kill_rounds": [ - 38 + 40 ], "he_damage": [ - 38 + 40 ], "he_team_damage": [ - 38 + 40 ], "he_throws": [ - 38 + 40 ], "headshot_hits": [ - 38 + 40 ], "hits": [ - 38 + 40 ], "hits_at_spotted": [ - 38 + 40 ], "hs_kills": [ - 38 + 40 ], "hs_kills_ct": [ - 38 + 40 ], "hs_kills_t": [ - 38 + 40 ], "kills": [ - 38 + 40 ], "kills_ct": [ - 38 + 40 ], "kills_t": [ - 38 + 40 ], "knife_kills": [ - 38 + 40 ], "match_id": [ - 4921 + 4993 ], "molotov_damage": [ - 38 + 40 ], "molotov_throws": [ - 38 + 40 ], "non_awp_hits": [ - 38 + 40 ], "on_target_frames": [ - 38 + 40 ], "rounds_ct": [ - 38 + 40 ], "rounds_played": [ - 38 + 40 ], "rounds_t": [ - 38 + 40 ], "shots_at_spotted": [ - 38 + 40 ], "shots_fired": [ - 38 + 40 ], "smoke_throws": [ - 38 + 40 ], "spotted_count": [ - 38 + 40 ], "spotted_with_damage_count": [ - 38 + 40 ], "spray_hits": [ - 38 + 40 ], "spray_shots": [ - 38 + 40 ], "steam_id": [ - 180 + 252 ], "team_damage": [ - 38 + 40 ], "team_flashed": [ - 38 + 40 ], "three_kill_rounds": [ - 38 + 40 ], "total_engagement_frames": [ - 38 + 40 ], "trade_kill_attempts": [ - 38 + 40 ], "trade_kill_opportunities": [ - 38 + 40 ], "trade_kill_successes": [ - 38 + 40 ], "traded_death_attempts": [ - 38 + 40 ], "traded_death_opportunities": [ - 38 + 40 ], "traded_death_successes": [ - 38 + 40 ], "two_kill_rounds": [ - 38 + 40 ], "unused_utility_value": [ - 38 + 40 ], "utility_on_death": [ - 2827 + 2944 ], "wasted_magazine_shots": [ - 38 + 40 ], "zeus_kills": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "player_match_stats_v_max_fields": { "assists": [ - 38 + 40 ], "assists_ct": [ - 38 + 40 ], "assists_t": [ - 38 + 40 ], "avg_crosshair_angle_deg": [ - 2827 + 2944 ], "avg_flash_duration": [ - 2827 + 2944 ], "avg_time_to_damage_s": [ - 2827 + 2944 ], "counter_strafe_eligible_shots": [ - 38 + 40 ], "counter_strafed_shots": [ - 38 + 40 ], "damage": [ - 38 + 40 ], "damage_ct": [ - 38 + 40 ], "damage_t": [ - 38 + 40 ], "deaths": [ - 38 + 40 ], "deaths_ct": [ - 38 + 40 ], "deaths_t": [ - 38 + 40 ], "decoy_throws": [ - 38 + 40 ], "enemies_flashed": [ - 38 + 40 ], "first_bullet_hits": [ - 38 + 40 ], "first_bullet_shots": [ - 38 + 40 ], "five_kill_rounds": [ - 38 + 40 ], "flash_assists": [ - 38 + 40 ], "flashes_thrown": [ - 38 + 40 ], "four_kill_rounds": [ - 38 + 40 ], "he_damage": [ - 38 + 40 ], "he_team_damage": [ - 38 + 40 ], "he_throws": [ - 38 + 40 ], "headshot_hits": [ - 38 + 40 ], "hits": [ - 38 + 40 ], "hits_at_spotted": [ - 38 + 40 ], "hs_kills": [ - 38 + 40 ], "hs_kills_ct": [ - 38 + 40 ], "hs_kills_t": [ - 38 + 40 ], "kills": [ - 38 + 40 ], "kills_ct": [ - 38 + 40 ], "kills_t": [ - 38 + 40 ], "knife_kills": [ - 38 + 40 ], "match_id": [ - 4921 + 4993 ], "molotov_damage": [ - 38 + 40 ], "molotov_throws": [ - 38 + 40 ], "non_awp_hits": [ - 38 + 40 ], "on_target_frames": [ - 38 + 40 ], "rounds_ct": [ - 38 + 40 ], "rounds_played": [ - 38 + 40 ], "rounds_t": [ - 38 + 40 ], "shots_at_spotted": [ - 38 + 40 ], "shots_fired": [ - 38 + 40 ], "smoke_throws": [ - 38 + 40 ], "spotted_count": [ - 38 + 40 ], "spotted_with_damage_count": [ - 38 + 40 ], "spray_hits": [ - 38 + 40 ], "spray_shots": [ - 38 + 40 ], "steam_id": [ - 180 + 252 ], "team_damage": [ - 38 + 40 ], "team_flashed": [ - 38 + 40 ], "three_kill_rounds": [ - 38 + 40 ], "total_engagement_frames": [ - 38 + 40 ], "trade_kill_attempts": [ - 38 + 40 ], "trade_kill_opportunities": [ - 38 + 40 ], "trade_kill_successes": [ - 38 + 40 ], "traded_death_attempts": [ - 38 + 40 ], "traded_death_opportunities": [ - 38 + 40 ], "traded_death_successes": [ - 38 + 40 ], "two_kill_rounds": [ - 38 + 40 ], "unused_utility_value": [ - 38 + 40 ], "utility_on_death": [ - 2827 + 2944 ], "wasted_magazine_shots": [ - 38 + 40 ], "zeus_kills": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "player_match_stats_v_max_order_by": { "assists": [ - 2829 + 2946 ], "assists_ct": [ - 2829 + 2946 ], "assists_t": [ - 2829 + 2946 ], "avg_crosshair_angle_deg": [ - 2829 + 2946 ], "avg_flash_duration": [ - 2829 + 2946 ], "avg_time_to_damage_s": [ - 2829 + 2946 ], "counter_strafe_eligible_shots": [ - 2829 + 2946 ], "counter_strafed_shots": [ - 2829 + 2946 ], "damage": [ - 2829 + 2946 ], "damage_ct": [ - 2829 + 2946 ], "damage_t": [ - 2829 + 2946 ], "deaths": [ - 2829 + 2946 ], "deaths_ct": [ - 2829 + 2946 ], "deaths_t": [ - 2829 + 2946 ], "decoy_throws": [ - 2829 + 2946 ], "enemies_flashed": [ - 2829 + 2946 ], "first_bullet_hits": [ - 2829 + 2946 ], "first_bullet_shots": [ - 2829 + 2946 ], "five_kill_rounds": [ - 2829 + 2946 ], "flash_assists": [ - 2829 + 2946 ], "flashes_thrown": [ - 2829 + 2946 ], "four_kill_rounds": [ - 2829 + 2946 ], "he_damage": [ - 2829 + 2946 ], "he_team_damage": [ - 2829 + 2946 ], "he_throws": [ - 2829 + 2946 ], "headshot_hits": [ - 2829 + 2946 ], "hits": [ - 2829 + 2946 ], "hits_at_spotted": [ - 2829 + 2946 ], "hs_kills": [ - 2829 + 2946 ], "hs_kills_ct": [ - 2829 + 2946 ], "hs_kills_t": [ - 2829 + 2946 ], "kills": [ - 2829 + 2946 ], "kills_ct": [ - 2829 + 2946 ], "kills_t": [ - 2829 + 2946 ], "knife_kills": [ - 2829 + 2946 ], "match_id": [ - 2829 + 2946 ], "molotov_damage": [ - 2829 + 2946 ], "molotov_throws": [ - 2829 + 2946 ], "non_awp_hits": [ - 2829 + 2946 ], "on_target_frames": [ - 2829 + 2946 ], "rounds_ct": [ - 2829 + 2946 ], "rounds_played": [ - 2829 + 2946 ], "rounds_t": [ - 2829 + 2946 ], "shots_at_spotted": [ - 2829 + 2946 ], "shots_fired": [ - 2829 + 2946 ], "smoke_throws": [ - 2829 + 2946 ], "spotted_count": [ - 2829 + 2946 ], "spotted_with_damage_count": [ - 2829 + 2946 ], "spray_hits": [ - 2829 + 2946 ], "spray_shots": [ - 2829 + 2946 ], "steam_id": [ - 2829 + 2946 ], "team_damage": [ - 2829 + 2946 ], "team_flashed": [ - 2829 + 2946 ], "three_kill_rounds": [ - 2829 + 2946 ], "total_engagement_frames": [ - 2829 + 2946 ], "trade_kill_attempts": [ - 2829 + 2946 ], "trade_kill_opportunities": [ - 2829 + 2946 ], "trade_kill_successes": [ - 2829 + 2946 ], "traded_death_attempts": [ - 2829 + 2946 ], "traded_death_opportunities": [ - 2829 + 2946 ], "traded_death_successes": [ - 2829 + 2946 ], "two_kill_rounds": [ - 2829 + 2946 ], "unused_utility_value": [ - 2829 + 2946 ], "utility_on_death": [ - 2829 + 2946 ], "wasted_magazine_shots": [ - 2829 + 2946 ], "zeus_kills": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "player_match_stats_v_min_fields": { "assists": [ - 38 + 40 ], "assists_ct": [ - 38 + 40 ], "assists_t": [ - 38 + 40 ], "avg_crosshair_angle_deg": [ - 2827 + 2944 ], "avg_flash_duration": [ - 2827 + 2944 ], "avg_time_to_damage_s": [ - 2827 + 2944 ], "counter_strafe_eligible_shots": [ - 38 + 40 ], "counter_strafed_shots": [ - 38 + 40 ], "damage": [ - 38 + 40 ], "damage_ct": [ - 38 + 40 ], "damage_t": [ - 38 + 40 ], "deaths": [ - 38 + 40 ], "deaths_ct": [ - 38 + 40 ], "deaths_t": [ - 38 + 40 ], "decoy_throws": [ - 38 + 40 ], "enemies_flashed": [ - 38 + 40 ], "first_bullet_hits": [ - 38 + 40 ], "first_bullet_shots": [ - 38 + 40 ], "five_kill_rounds": [ - 38 + 40 ], "flash_assists": [ - 38 + 40 ], "flashes_thrown": [ - 38 + 40 ], "four_kill_rounds": [ - 38 + 40 ], "he_damage": [ - 38 + 40 ], "he_team_damage": [ - 38 + 40 ], "he_throws": [ - 38 + 40 ], "headshot_hits": [ - 38 + 40 ], "hits": [ - 38 + 40 ], "hits_at_spotted": [ - 38 + 40 ], "hs_kills": [ - 38 + 40 ], "hs_kills_ct": [ - 38 + 40 ], "hs_kills_t": [ - 38 + 40 ], "kills": [ - 38 + 40 ], "kills_ct": [ - 38 + 40 ], "kills_t": [ - 38 + 40 ], "knife_kills": [ - 38 + 40 ], "match_id": [ - 4921 + 4993 ], "molotov_damage": [ - 38 + 40 ], "molotov_throws": [ - 38 + 40 ], "non_awp_hits": [ - 38 + 40 ], "on_target_frames": [ - 38 + 40 ], "rounds_ct": [ - 38 + 40 ], "rounds_played": [ - 38 + 40 ], "rounds_t": [ - 38 + 40 ], "shots_at_spotted": [ - 38 + 40 ], "shots_fired": [ - 38 + 40 ], "smoke_throws": [ - 38 + 40 ], "spotted_count": [ - 38 + 40 ], "spotted_with_damage_count": [ - 38 + 40 ], "spray_hits": [ - 38 + 40 ], "spray_shots": [ - 38 + 40 ], "steam_id": [ - 180 + 252 ], "team_damage": [ - 38 + 40 ], "team_flashed": [ - 38 + 40 ], "three_kill_rounds": [ - 38 + 40 ], "total_engagement_frames": [ - 38 + 40 ], "trade_kill_attempts": [ - 38 + 40 ], "trade_kill_opportunities": [ - 38 + 40 ], "trade_kill_successes": [ - 38 + 40 ], "traded_death_attempts": [ - 38 + 40 ], "traded_death_opportunities": [ - 38 + 40 ], "traded_death_successes": [ - 38 + 40 ], "two_kill_rounds": [ - 38 + 40 ], "unused_utility_value": [ - 38 + 40 ], "utility_on_death": [ - 2827 + 2944 ], "wasted_magazine_shots": [ - 38 + 40 ], "zeus_kills": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "player_match_stats_v_min_order_by": { "assists": [ - 2829 + 2946 ], "assists_ct": [ - 2829 + 2946 ], "assists_t": [ - 2829 + 2946 ], "avg_crosshair_angle_deg": [ - 2829 + 2946 ], "avg_flash_duration": [ - 2829 + 2946 ], "avg_time_to_damage_s": [ - 2829 + 2946 ], "counter_strafe_eligible_shots": [ - 2829 + 2946 ], "counter_strafed_shots": [ - 2829 + 2946 ], "damage": [ - 2829 + 2946 ], "damage_ct": [ - 2829 + 2946 ], "damage_t": [ - 2829 + 2946 ], "deaths": [ - 2829 + 2946 ], "deaths_ct": [ - 2829 + 2946 ], "deaths_t": [ - 2829 + 2946 ], "decoy_throws": [ - 2829 + 2946 ], "enemies_flashed": [ - 2829 + 2946 ], "first_bullet_hits": [ - 2829 + 2946 ], "first_bullet_shots": [ - 2829 + 2946 ], "five_kill_rounds": [ - 2829 + 2946 ], "flash_assists": [ - 2829 + 2946 ], "flashes_thrown": [ - 2829 + 2946 ], "four_kill_rounds": [ - 2829 + 2946 ], "he_damage": [ - 2829 + 2946 ], "he_team_damage": [ - 2829 + 2946 ], "he_throws": [ - 2829 + 2946 ], "headshot_hits": [ - 2829 + 2946 ], "hits": [ - 2829 + 2946 ], "hits_at_spotted": [ - 2829 + 2946 ], "hs_kills": [ - 2829 + 2946 ], "hs_kills_ct": [ - 2829 + 2946 ], "hs_kills_t": [ - 2829 + 2946 ], "kills": [ - 2829 + 2946 ], "kills_ct": [ - 2829 + 2946 ], "kills_t": [ - 2829 + 2946 ], "knife_kills": [ - 2829 + 2946 ], "match_id": [ - 2829 + 2946 ], "molotov_damage": [ - 2829 + 2946 ], "molotov_throws": [ - 2829 + 2946 ], "non_awp_hits": [ - 2829 + 2946 ], "on_target_frames": [ - 2829 + 2946 ], "rounds_ct": [ - 2829 + 2946 ], "rounds_played": [ - 2829 + 2946 ], "rounds_t": [ - 2829 + 2946 ], "shots_at_spotted": [ - 2829 + 2946 ], "shots_fired": [ - 2829 + 2946 ], "smoke_throws": [ - 2829 + 2946 ], "spotted_count": [ - 2829 + 2946 ], "spotted_with_damage_count": [ - 2829 + 2946 ], "spray_hits": [ - 2829 + 2946 ], "spray_shots": [ - 2829 + 2946 ], "steam_id": [ - 2829 + 2946 ], "team_damage": [ - 2829 + 2946 ], "team_flashed": [ - 2829 + 2946 ], "three_kill_rounds": [ - 2829 + 2946 ], "total_engagement_frames": [ - 2829 + 2946 ], "trade_kill_attempts": [ - 2829 + 2946 ], "trade_kill_opportunities": [ - 2829 + 2946 ], "trade_kill_successes": [ - 2829 + 2946 ], "traded_death_attempts": [ - 2829 + 2946 ], "traded_death_opportunities": [ - 2829 + 2946 ], "traded_death_successes": [ - 2829 + 2946 ], "two_kill_rounds": [ - 2829 + 2946 ], "unused_utility_value": [ - 2829 + 2946 ], "utility_on_death": [ - 2829 + 2946 ], "wasted_magazine_shots": [ - 2829 + 2946 ], "zeus_kills": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "player_match_stats_v_order_by": { "assists": [ - 2829 + 2946 ], "assists_ct": [ - 2829 + 2946 ], "assists_t": [ - 2829 + 2946 ], "avg_crosshair_angle_deg": [ - 2829 + 2946 ], "avg_flash_duration": [ - 2829 + 2946 ], "avg_time_to_damage_s": [ - 2829 + 2946 ], "counter_strafe_eligible_shots": [ - 2829 + 2946 ], "counter_strafed_shots": [ - 2829 + 2946 ], "damage": [ - 2829 + 2946 ], "damage_ct": [ - 2829 + 2946 ], "damage_t": [ - 2829 + 2946 ], "deaths": [ - 2829 + 2946 ], "deaths_ct": [ - 2829 + 2946 ], "deaths_t": [ - 2829 + 2946 ], "decoy_throws": [ - 2829 + 2946 ], "enemies_flashed": [ - 2829 + 2946 ], "first_bullet_hits": [ - 2829 + 2946 ], "first_bullet_shots": [ - 2829 + 2946 ], "five_kill_rounds": [ - 2829 + 2946 ], "flash_assists": [ - 2829 + 2946 ], "flashes_thrown": [ - 2829 + 2946 ], "four_kill_rounds": [ - 2829 + 2946 ], "he_damage": [ - 2829 + 2946 ], "he_team_damage": [ - 2829 + 2946 ], "he_throws": [ - 2829 + 2946 ], "headshot_hits": [ - 2829 + 2946 ], "hits": [ - 2829 + 2946 ], "hits_at_spotted": [ - 2829 + 2946 ], "hs_kills": [ - 2829 + 2946 ], "hs_kills_ct": [ - 2829 + 2946 ], "hs_kills_t": [ - 2829 + 2946 ], "kills": [ - 2829 + 2946 ], "kills_ct": [ - 2829 + 2946 ], "kills_t": [ - 2829 + 2946 ], "knife_kills": [ - 2829 + 2946 ], "match_id": [ - 2829 + 2946 ], "molotov_damage": [ - 2829 + 2946 ], "molotov_throws": [ - 2829 + 2946 ], "non_awp_hits": [ - 2829 + 2946 ], "on_target_frames": [ - 2829 + 2946 ], "rounds_ct": [ - 2829 + 2946 ], "rounds_played": [ - 2829 + 2946 ], "rounds_t": [ - 2829 + 2946 ], "shots_at_spotted": [ - 2829 + 2946 ], "shots_fired": [ - 2829 + 2946 ], "smoke_throws": [ - 2829 + 2946 ], "spotted_count": [ - 2829 + 2946 ], "spotted_with_damage_count": [ - 2829 + 2946 ], "spray_hits": [ - 2829 + 2946 ], "spray_shots": [ - 2829 + 2946 ], "steam_id": [ - 2829 + 2946 ], "team_damage": [ - 2829 + 2946 ], "team_flashed": [ - 2829 + 2946 ], "three_kill_rounds": [ - 2829 + 2946 ], "total_engagement_frames": [ - 2829 + 2946 ], "trade_kill_attempts": [ - 2829 + 2946 ], "trade_kill_opportunities": [ - 2829 + 2946 ], "trade_kill_successes": [ - 2829 + 2946 ], "traded_death_attempts": [ - 2829 + 2946 ], "traded_death_opportunities": [ - 2829 + 2946 ], "traded_death_successes": [ - 2829 + 2946 ], "two_kill_rounds": [ - 2829 + 2946 ], "unused_utility_value": [ - 2829 + 2946 ], "utility_on_death": [ - 2829 + 2946 ], "wasted_magazine_shots": [ - 2829 + 2946 ], "zeus_kills": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "player_match_stats_v_select_column": {}, "player_match_stats_v_stddev_fields": { "assists": [ - 29 + 31 ], "assists_ct": [ - 29 + 31 ], "assists_t": [ - 29 + 31 ], "avg_crosshair_angle_deg": [ - 29 + 31 ], "avg_flash_duration": [ - 29 + 31 ], "avg_time_to_damage_s": [ - 29 + 31 ], "counter_strafe_eligible_shots": [ - 29 + 31 ], "counter_strafed_shots": [ - 29 + 31 ], "damage": [ - 29 + 31 ], "damage_ct": [ - 29 + 31 ], "damage_t": [ - 29 + 31 ], "deaths": [ - 29 + 31 ], "deaths_ct": [ - 29 + 31 ], "deaths_t": [ - 29 + 31 ], "decoy_throws": [ - 29 + 31 ], "enemies_flashed": [ - 29 + 31 ], "first_bullet_hits": [ - 29 + 31 ], "first_bullet_shots": [ - 29 + 31 ], "five_kill_rounds": [ - 29 + 31 ], "flash_assists": [ - 29 + 31 ], "flashes_thrown": [ - 29 + 31 ], "four_kill_rounds": [ - 29 + 31 ], "he_damage": [ - 29 + 31 ], "he_team_damage": [ - 29 + 31 ], "he_throws": [ - 29 + 31 ], "headshot_hits": [ - 29 + 31 ], "hits": [ - 29 + 31 ], "hits_at_spotted": [ - 29 + 31 ], "hs_kills": [ - 29 + 31 ], "hs_kills_ct": [ - 29 + 31 ], "hs_kills_t": [ - 29 + 31 ], "kills": [ - 29 + 31 ], "kills_ct": [ - 29 + 31 ], "kills_t": [ - 29 + 31 ], "knife_kills": [ - 29 + 31 ], "molotov_damage": [ - 29 + 31 ], "molotov_throws": [ - 29 + 31 ], "non_awp_hits": [ - 29 + 31 ], "on_target_frames": [ - 29 + 31 ], "rounds_ct": [ - 29 + 31 ], "rounds_played": [ - 29 + 31 ], "rounds_t": [ - 29 + 31 ], "shots_at_spotted": [ - 29 + 31 ], "shots_fired": [ - 29 + 31 ], "smoke_throws": [ - 29 + 31 ], "spotted_count": [ - 29 + 31 ], "spotted_with_damage_count": [ - 29 + 31 ], "spray_hits": [ - 29 + 31 ], "spray_shots": [ - 29 + 31 ], "steam_id": [ - 29 + 31 ], "team_damage": [ - 29 + 31 ], "team_flashed": [ - 29 + 31 ], "three_kill_rounds": [ - 29 + 31 ], "total_engagement_frames": [ - 29 + 31 ], "trade_kill_attempts": [ - 29 + 31 ], "trade_kill_opportunities": [ - 29 + 31 ], "trade_kill_successes": [ - 29 + 31 ], "traded_death_attempts": [ - 29 + 31 ], "traded_death_opportunities": [ - 29 + 31 ], "traded_death_successes": [ - 29 + 31 ], "two_kill_rounds": [ - 29 + 31 ], "unused_utility_value": [ - 29 + 31 ], "utility_on_death": [ - 29 + 31 ], "wasted_magazine_shots": [ - 29 + 31 ], "zeus_kills": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "player_match_stats_v_stddev_order_by": { "assists": [ - 2829 + 2946 ], "assists_ct": [ - 2829 + 2946 ], "assists_t": [ - 2829 + 2946 ], "avg_crosshair_angle_deg": [ - 2829 + 2946 ], "avg_flash_duration": [ - 2829 + 2946 ], "avg_time_to_damage_s": [ - 2829 + 2946 ], "counter_strafe_eligible_shots": [ - 2829 + 2946 ], "counter_strafed_shots": [ - 2829 + 2946 ], "damage": [ - 2829 + 2946 ], "damage_ct": [ - 2829 + 2946 ], "damage_t": [ - 2829 + 2946 ], "deaths": [ - 2829 + 2946 ], "deaths_ct": [ - 2829 + 2946 ], "deaths_t": [ - 2829 + 2946 ], "decoy_throws": [ - 2829 + 2946 ], "enemies_flashed": [ - 2829 + 2946 ], "first_bullet_hits": [ - 2829 + 2946 ], "first_bullet_shots": [ - 2829 + 2946 ], "five_kill_rounds": [ - 2829 + 2946 ], "flash_assists": [ - 2829 + 2946 ], "flashes_thrown": [ - 2829 + 2946 ], "four_kill_rounds": [ - 2829 + 2946 ], "he_damage": [ - 2829 + 2946 ], "he_team_damage": [ - 2829 + 2946 ], "he_throws": [ - 2829 + 2946 ], "headshot_hits": [ - 2829 + 2946 ], "hits": [ - 2829 + 2946 ], "hits_at_spotted": [ - 2829 + 2946 ], "hs_kills": [ - 2829 + 2946 ], "hs_kills_ct": [ - 2829 + 2946 ], "hs_kills_t": [ - 2829 + 2946 ], "kills": [ - 2829 + 2946 ], "kills_ct": [ - 2829 + 2946 ], "kills_t": [ - 2829 + 2946 ], "knife_kills": [ - 2829 + 2946 ], "molotov_damage": [ - 2829 + 2946 ], "molotov_throws": [ - 2829 + 2946 ], "non_awp_hits": [ - 2829 + 2946 ], "on_target_frames": [ - 2829 + 2946 ], "rounds_ct": [ - 2829 + 2946 ], "rounds_played": [ - 2829 + 2946 ], "rounds_t": [ - 2829 + 2946 ], "shots_at_spotted": [ - 2829 + 2946 ], "shots_fired": [ - 2829 + 2946 ], "smoke_throws": [ - 2829 + 2946 ], "spotted_count": [ - 2829 + 2946 ], "spotted_with_damage_count": [ - 2829 + 2946 ], "spray_hits": [ - 2829 + 2946 ], "spray_shots": [ - 2829 + 2946 ], "steam_id": [ - 2829 + 2946 ], "team_damage": [ - 2829 + 2946 ], "team_flashed": [ - 2829 + 2946 ], "three_kill_rounds": [ - 2829 + 2946 ], "total_engagement_frames": [ - 2829 + 2946 ], "trade_kill_attempts": [ - 2829 + 2946 ], "trade_kill_opportunities": [ - 2829 + 2946 ], "trade_kill_successes": [ - 2829 + 2946 ], "traded_death_attempts": [ - 2829 + 2946 ], "traded_death_opportunities": [ - 2829 + 2946 ], "traded_death_successes": [ - 2829 + 2946 ], "two_kill_rounds": [ - 2829 + 2946 ], "unused_utility_value": [ - 2829 + 2946 ], "utility_on_death": [ - 2829 + 2946 ], "wasted_magazine_shots": [ - 2829 + 2946 ], "zeus_kills": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "player_match_stats_v_stddev_pop_fields": { "assists": [ - 29 + 31 ], "assists_ct": [ - 29 + 31 ], "assists_t": [ - 29 + 31 ], "avg_crosshair_angle_deg": [ - 29 + 31 ], "avg_flash_duration": [ - 29 + 31 ], "avg_time_to_damage_s": [ - 29 + 31 ], "counter_strafe_eligible_shots": [ - 29 + 31 ], "counter_strafed_shots": [ - 29 + 31 ], "damage": [ - 29 + 31 ], "damage_ct": [ - 29 + 31 ], "damage_t": [ - 29 + 31 ], "deaths": [ - 29 + 31 ], "deaths_ct": [ - 29 + 31 ], "deaths_t": [ - 29 + 31 ], "decoy_throws": [ - 29 + 31 ], "enemies_flashed": [ - 29 + 31 ], "first_bullet_hits": [ - 29 + 31 ], "first_bullet_shots": [ - 29 + 31 ], "five_kill_rounds": [ - 29 + 31 ], "flash_assists": [ - 29 + 31 ], "flashes_thrown": [ - 29 + 31 ], "four_kill_rounds": [ - 29 + 31 ], "he_damage": [ - 29 + 31 ], "he_team_damage": [ - 29 + 31 ], "he_throws": [ - 29 + 31 ], "headshot_hits": [ - 29 + 31 ], "hits": [ - 29 + 31 ], "hits_at_spotted": [ - 29 + 31 ], "hs_kills": [ - 29 + 31 ], "hs_kills_ct": [ - 29 + 31 ], "hs_kills_t": [ - 29 + 31 ], "kills": [ - 29 + 31 ], "kills_ct": [ - 29 + 31 ], "kills_t": [ - 29 + 31 ], "knife_kills": [ - 29 + 31 ], "molotov_damage": [ - 29 + 31 ], "molotov_throws": [ - 29 + 31 ], "non_awp_hits": [ - 29 + 31 ], "on_target_frames": [ - 29 + 31 ], "rounds_ct": [ - 29 + 31 ], "rounds_played": [ - 29 + 31 ], "rounds_t": [ - 29 + 31 ], "shots_at_spotted": [ - 29 + 31 ], "shots_fired": [ - 29 + 31 ], "smoke_throws": [ - 29 + 31 ], "spotted_count": [ - 29 + 31 ], "spotted_with_damage_count": [ - 29 + 31 ], "spray_hits": [ - 29 + 31 ], "spray_shots": [ - 29 + 31 ], "steam_id": [ - 29 + 31 ], "team_damage": [ - 29 + 31 ], "team_flashed": [ - 29 + 31 ], "three_kill_rounds": [ - 29 + 31 ], "total_engagement_frames": [ - 29 + 31 ], "trade_kill_attempts": [ - 29 + 31 ], "trade_kill_opportunities": [ - 29 + 31 ], "trade_kill_successes": [ - 29 + 31 ], "traded_death_attempts": [ - 29 + 31 ], "traded_death_opportunities": [ - 29 + 31 ], "traded_death_successes": [ - 29 + 31 ], "two_kill_rounds": [ - 29 + 31 ], "unused_utility_value": [ - 29 + 31 ], "utility_on_death": [ - 29 + 31 ], "wasted_magazine_shots": [ - 29 + 31 ], "zeus_kills": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "player_match_stats_v_stddev_pop_order_by": { "assists": [ - 2829 + 2946 ], "assists_ct": [ - 2829 + 2946 ], "assists_t": [ - 2829 + 2946 ], "avg_crosshair_angle_deg": [ - 2829 + 2946 ], "avg_flash_duration": [ - 2829 + 2946 ], "avg_time_to_damage_s": [ - 2829 + 2946 ], "counter_strafe_eligible_shots": [ - 2829 + 2946 ], "counter_strafed_shots": [ - 2829 + 2946 ], "damage": [ - 2829 + 2946 ], "damage_ct": [ - 2829 + 2946 ], "damage_t": [ - 2829 + 2946 ], "deaths": [ - 2829 + 2946 ], "deaths_ct": [ - 2829 + 2946 ], "deaths_t": [ - 2829 + 2946 ], "decoy_throws": [ - 2829 + 2946 ], "enemies_flashed": [ - 2829 + 2946 ], "first_bullet_hits": [ - 2829 + 2946 ], "first_bullet_shots": [ - 2829 + 2946 ], "five_kill_rounds": [ - 2829 + 2946 ], "flash_assists": [ - 2829 + 2946 ], "flashes_thrown": [ - 2829 + 2946 ], "four_kill_rounds": [ - 2829 + 2946 ], "he_damage": [ - 2829 + 2946 ], "he_team_damage": [ - 2829 + 2946 ], "he_throws": [ - 2829 + 2946 ], "headshot_hits": [ - 2829 + 2946 ], "hits": [ - 2829 + 2946 ], "hits_at_spotted": [ - 2829 + 2946 ], "hs_kills": [ - 2829 + 2946 ], "hs_kills_ct": [ - 2829 + 2946 ], "hs_kills_t": [ - 2829 + 2946 ], "kills": [ - 2829 + 2946 ], "kills_ct": [ - 2829 + 2946 ], "kills_t": [ - 2829 + 2946 ], "knife_kills": [ - 2829 + 2946 ], "molotov_damage": [ - 2829 + 2946 ], "molotov_throws": [ - 2829 + 2946 ], "non_awp_hits": [ - 2829 + 2946 ], "on_target_frames": [ - 2829 + 2946 ], "rounds_ct": [ - 2829 + 2946 ], "rounds_played": [ - 2829 + 2946 ], "rounds_t": [ - 2829 + 2946 ], "shots_at_spotted": [ - 2829 + 2946 ], "shots_fired": [ - 2829 + 2946 ], "smoke_throws": [ - 2829 + 2946 ], "spotted_count": [ - 2829 + 2946 ], "spotted_with_damage_count": [ - 2829 + 2946 ], "spray_hits": [ - 2829 + 2946 ], "spray_shots": [ - 2829 + 2946 ], "steam_id": [ - 2829 + 2946 ], "team_damage": [ - 2829 + 2946 ], "team_flashed": [ - 2829 + 2946 ], "three_kill_rounds": [ - 2829 + 2946 ], "total_engagement_frames": [ - 2829 + 2946 ], "trade_kill_attempts": [ - 2829 + 2946 ], "trade_kill_opportunities": [ - 2829 + 2946 ], "trade_kill_successes": [ - 2829 + 2946 ], "traded_death_attempts": [ - 2829 + 2946 ], "traded_death_opportunities": [ - 2829 + 2946 ], "traded_death_successes": [ - 2829 + 2946 ], "two_kill_rounds": [ - 2829 + 2946 ], "unused_utility_value": [ - 2829 + 2946 ], "utility_on_death": [ - 2829 + 2946 ], "wasted_magazine_shots": [ - 2829 + 2946 ], "zeus_kills": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "player_match_stats_v_stddev_samp_fields": { "assists": [ - 29 + 31 ], "assists_ct": [ - 29 + 31 ], "assists_t": [ - 29 + 31 ], "avg_crosshair_angle_deg": [ - 29 + 31 ], "avg_flash_duration": [ - 29 + 31 ], "avg_time_to_damage_s": [ - 29 + 31 ], "counter_strafe_eligible_shots": [ - 29 + 31 ], "counter_strafed_shots": [ - 29 + 31 ], "damage": [ - 29 + 31 ], "damage_ct": [ - 29 + 31 ], "damage_t": [ - 29 + 31 ], "deaths": [ - 29 + 31 ], "deaths_ct": [ - 29 + 31 ], "deaths_t": [ - 29 + 31 ], "decoy_throws": [ - 29 + 31 ], "enemies_flashed": [ - 29 + 31 ], "first_bullet_hits": [ - 29 + 31 ], "first_bullet_shots": [ - 29 + 31 ], "five_kill_rounds": [ - 29 + 31 ], "flash_assists": [ - 29 + 31 ], "flashes_thrown": [ - 29 + 31 ], "four_kill_rounds": [ - 29 + 31 ], "he_damage": [ - 29 + 31 ], "he_team_damage": [ - 29 + 31 ], "he_throws": [ - 29 + 31 ], "headshot_hits": [ - 29 + 31 ], "hits": [ - 29 + 31 ], "hits_at_spotted": [ - 29 + 31 ], "hs_kills": [ - 29 + 31 ], "hs_kills_ct": [ - 29 + 31 ], "hs_kills_t": [ - 29 + 31 ], "kills": [ - 29 + 31 ], "kills_ct": [ - 29 + 31 ], "kills_t": [ - 29 + 31 ], "knife_kills": [ - 29 + 31 ], "molotov_damage": [ - 29 + 31 ], "molotov_throws": [ - 29 + 31 ], "non_awp_hits": [ - 29 + 31 ], "on_target_frames": [ - 29 + 31 ], "rounds_ct": [ - 29 + 31 ], "rounds_played": [ - 29 + 31 ], "rounds_t": [ - 29 + 31 ], "shots_at_spotted": [ - 29 + 31 ], "shots_fired": [ - 29 + 31 ], "smoke_throws": [ - 29 + 31 ], "spotted_count": [ - 29 + 31 ], "spotted_with_damage_count": [ - 29 + 31 ], "spray_hits": [ - 29 + 31 ], "spray_shots": [ - 29 + 31 ], "steam_id": [ - 29 + 31 ], "team_damage": [ - 29 + 31 ], "team_flashed": [ - 29 + 31 ], "three_kill_rounds": [ - 29 + 31 ], "total_engagement_frames": [ - 29 + 31 ], "trade_kill_attempts": [ - 29 + 31 ], "trade_kill_opportunities": [ - 29 + 31 ], "trade_kill_successes": [ - 29 + 31 ], "traded_death_attempts": [ - 29 + 31 ], "traded_death_opportunities": [ - 29 + 31 ], "traded_death_successes": [ - 29 + 31 ], "two_kill_rounds": [ - 29 + 31 ], "unused_utility_value": [ - 29 + 31 ], "utility_on_death": [ - 29 + 31 ], "wasted_magazine_shots": [ - 29 + 31 ], "zeus_kills": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "player_match_stats_v_stddev_samp_order_by": { "assists": [ - 2829 + 2946 ], "assists_ct": [ - 2829 + 2946 ], "assists_t": [ - 2829 + 2946 ], "avg_crosshair_angle_deg": [ - 2829 + 2946 ], "avg_flash_duration": [ - 2829 + 2946 ], "avg_time_to_damage_s": [ - 2829 + 2946 ], "counter_strafe_eligible_shots": [ - 2829 + 2946 ], "counter_strafed_shots": [ - 2829 + 2946 ], "damage": [ - 2829 + 2946 ], "damage_ct": [ - 2829 + 2946 ], "damage_t": [ - 2829 + 2946 ], "deaths": [ - 2829 + 2946 ], "deaths_ct": [ - 2829 + 2946 ], "deaths_t": [ - 2829 + 2946 ], "decoy_throws": [ - 2829 + 2946 ], "enemies_flashed": [ - 2829 + 2946 ], "first_bullet_hits": [ - 2829 + 2946 ], "first_bullet_shots": [ - 2829 + 2946 ], "five_kill_rounds": [ - 2829 + 2946 ], "flash_assists": [ - 2829 + 2946 ], "flashes_thrown": [ - 2829 + 2946 ], "four_kill_rounds": [ - 2829 + 2946 ], "he_damage": [ - 2829 + 2946 ], "he_team_damage": [ - 2829 + 2946 ], "he_throws": [ - 2829 + 2946 ], "headshot_hits": [ - 2829 + 2946 ], "hits": [ - 2829 + 2946 ], "hits_at_spotted": [ - 2829 + 2946 ], "hs_kills": [ - 2829 + 2946 ], "hs_kills_ct": [ - 2829 + 2946 ], "hs_kills_t": [ - 2829 + 2946 ], "kills": [ - 2829 + 2946 ], "kills_ct": [ - 2829 + 2946 ], "kills_t": [ - 2829 + 2946 ], "knife_kills": [ - 2829 + 2946 ], "molotov_damage": [ - 2829 + 2946 ], "molotov_throws": [ - 2829 + 2946 ], "non_awp_hits": [ - 2829 + 2946 ], "on_target_frames": [ - 2829 + 2946 ], "rounds_ct": [ - 2829 + 2946 ], "rounds_played": [ - 2829 + 2946 ], "rounds_t": [ - 2829 + 2946 ], "shots_at_spotted": [ - 2829 + 2946 ], "shots_fired": [ - 2829 + 2946 ], "smoke_throws": [ - 2829 + 2946 ], "spotted_count": [ - 2829 + 2946 ], "spotted_with_damage_count": [ - 2829 + 2946 ], "spray_hits": [ - 2829 + 2946 ], "spray_shots": [ - 2829 + 2946 ], "steam_id": [ - 2829 + 2946 ], "team_damage": [ - 2829 + 2946 ], "team_flashed": [ - 2829 + 2946 ], "three_kill_rounds": [ - 2829 + 2946 ], "total_engagement_frames": [ - 2829 + 2946 ], "trade_kill_attempts": [ - 2829 + 2946 ], "trade_kill_opportunities": [ - 2829 + 2946 ], "trade_kill_successes": [ - 2829 + 2946 ], "traded_death_attempts": [ - 2829 + 2946 ], "traded_death_opportunities": [ - 2829 + 2946 ], "traded_death_successes": [ - 2829 + 2946 ], "two_kill_rounds": [ - 2829 + 2946 ], "unused_utility_value": [ - 2829 + 2946 ], "utility_on_death": [ - 2829 + 2946 ], "wasted_magazine_shots": [ - 2829 + 2946 ], "zeus_kills": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "player_match_stats_v_stream_cursor_input": { "initial_value": [ - 3376 + 3493 ], "ordering": [ - 236 + 308 ], "__typename": [ - 78 + 80 ] }, "player_match_stats_v_stream_cursor_value_input": { "assists": [ - 38 + 40 ], "assists_ct": [ - 38 + 40 ], "assists_t": [ - 38 + 40 ], "avg_crosshair_angle_deg": [ - 2827 + 2944 ], "avg_flash_duration": [ - 2827 + 2944 ], "avg_time_to_damage_s": [ - 2827 + 2944 ], "counter_strafe_eligible_shots": [ - 38 + 40 ], "counter_strafed_shots": [ - 38 + 40 ], "damage": [ - 38 + 40 ], "damage_ct": [ - 38 + 40 ], "damage_t": [ - 38 + 40 ], "deaths": [ - 38 + 40 ], "deaths_ct": [ - 38 + 40 ], "deaths_t": [ - 38 + 40 ], "decoy_throws": [ - 38 + 40 ], "enemies_flashed": [ - 38 + 40 ], "first_bullet_hits": [ - 38 + 40 ], "first_bullet_shots": [ - 38 + 40 ], "five_kill_rounds": [ - 38 + 40 ], "flash_assists": [ - 38 + 40 ], "flashes_thrown": [ - 38 + 40 ], "four_kill_rounds": [ - 38 + 40 ], "he_damage": [ - 38 + 40 ], "he_team_damage": [ - 38 + 40 ], "he_throws": [ - 38 + 40 ], "headshot_hits": [ - 38 + 40 ], "hits": [ - 38 + 40 ], "hits_at_spotted": [ - 38 + 40 ], "hs_kills": [ - 38 + 40 ], "hs_kills_ct": [ - 38 + 40 ], "hs_kills_t": [ - 38 + 40 ], "kills": [ - 38 + 40 ], "kills_ct": [ - 38 + 40 ], "kills_t": [ - 38 + 40 ], "knife_kills": [ - 38 + 40 ], "match_id": [ - 4921 + 4993 ], "molotov_damage": [ - 38 + 40 ], "molotov_throws": [ - 38 + 40 ], "non_awp_hits": [ - 38 + 40 ], "on_target_frames": [ - 38 + 40 ], "rounds_ct": [ - 38 + 40 ], "rounds_played": [ - 38 + 40 ], "rounds_t": [ - 38 + 40 ], "shots_at_spotted": [ - 38 + 40 ], "shots_fired": [ - 38 + 40 ], "smoke_throws": [ - 38 + 40 ], "spotted_count": [ - 38 + 40 ], "spotted_with_damage_count": [ - 38 + 40 ], "spray_hits": [ - 38 + 40 ], "spray_shots": [ - 38 + 40 ], "steam_id": [ - 180 + 252 ], "team_damage": [ - 38 + 40 ], "team_flashed": [ - 38 + 40 ], "three_kill_rounds": [ - 38 + 40 ], "total_engagement_frames": [ - 38 + 40 ], "trade_kill_attempts": [ - 38 + 40 ], "trade_kill_opportunities": [ - 38 + 40 ], "trade_kill_successes": [ - 38 + 40 ], "traded_death_attempts": [ - 38 + 40 ], "traded_death_opportunities": [ - 38 + 40 ], "traded_death_successes": [ - 38 + 40 ], "two_kill_rounds": [ - 38 + 40 ], "unused_utility_value": [ - 38 + 40 ], "utility_on_death": [ - 2827 + 2944 ], "wasted_magazine_shots": [ - 38 + 40 ], "zeus_kills": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "player_match_stats_v_sum_fields": { "assists": [ - 38 + 40 ], "assists_ct": [ - 38 + 40 ], "assists_t": [ - 38 + 40 ], "avg_crosshair_angle_deg": [ - 2827 + 2944 ], "avg_flash_duration": [ - 2827 + 2944 ], "avg_time_to_damage_s": [ - 2827 + 2944 ], "counter_strafe_eligible_shots": [ - 38 + 40 ], "counter_strafed_shots": [ - 38 + 40 ], "damage": [ - 38 + 40 ], "damage_ct": [ - 38 + 40 ], "damage_t": [ - 38 + 40 ], "deaths": [ - 38 + 40 ], "deaths_ct": [ - 38 + 40 ], "deaths_t": [ - 38 + 40 ], "decoy_throws": [ - 38 + 40 ], "enemies_flashed": [ - 38 + 40 ], "first_bullet_hits": [ - 38 + 40 ], "first_bullet_shots": [ - 38 + 40 ], "five_kill_rounds": [ - 38 + 40 ], "flash_assists": [ - 38 + 40 ], "flashes_thrown": [ - 38 + 40 ], "four_kill_rounds": [ - 38 + 40 ], "he_damage": [ - 38 + 40 ], "he_team_damage": [ - 38 + 40 ], "he_throws": [ - 38 + 40 ], "headshot_hits": [ - 38 + 40 ], "hits": [ - 38 + 40 ], "hits_at_spotted": [ - 38 + 40 ], "hs_kills": [ - 38 + 40 ], "hs_kills_ct": [ - 38 + 40 ], "hs_kills_t": [ - 38 + 40 ], "kills": [ - 38 + 40 ], "kills_ct": [ - 38 + 40 ], "kills_t": [ - 38 + 40 ], "knife_kills": [ - 38 + 40 ], "molotov_damage": [ - 38 + 40 ], "molotov_throws": [ - 38 + 40 ], "non_awp_hits": [ - 38 + 40 ], "on_target_frames": [ - 38 + 40 ], "rounds_ct": [ - 38 + 40 ], "rounds_played": [ - 38 + 40 ], "rounds_t": [ - 38 + 40 ], "shots_at_spotted": [ - 38 + 40 ], "shots_fired": [ - 38 + 40 ], "smoke_throws": [ - 38 + 40 ], "spotted_count": [ - 38 + 40 ], "spotted_with_damage_count": [ - 38 + 40 ], "spray_hits": [ - 38 + 40 ], "spray_shots": [ - 38 + 40 ], "steam_id": [ - 180 + 252 ], "team_damage": [ - 38 + 40 ], "team_flashed": [ - 38 + 40 ], "three_kill_rounds": [ - 38 + 40 ], "total_engagement_frames": [ - 38 + 40 ], "trade_kill_attempts": [ - 38 + 40 ], "trade_kill_opportunities": [ - 38 + 40 ], "trade_kill_successes": [ - 38 + 40 ], "traded_death_attempts": [ - 38 + 40 ], "traded_death_opportunities": [ - 38 + 40 ], "traded_death_successes": [ - 38 + 40 ], "two_kill_rounds": [ - 38 + 40 ], "unused_utility_value": [ - 38 + 40 ], "utility_on_death": [ - 2827 + 2944 ], "wasted_magazine_shots": [ - 38 + 40 ], "zeus_kills": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "player_match_stats_v_sum_order_by": { "assists": [ - 2829 + 2946 ], "assists_ct": [ - 2829 + 2946 ], "assists_t": [ - 2829 + 2946 ], "avg_crosshair_angle_deg": [ - 2829 + 2946 ], "avg_flash_duration": [ - 2829 + 2946 ], "avg_time_to_damage_s": [ - 2829 + 2946 ], "counter_strafe_eligible_shots": [ - 2829 + 2946 ], "counter_strafed_shots": [ - 2829 + 2946 ], "damage": [ - 2829 + 2946 ], "damage_ct": [ - 2829 + 2946 ], "damage_t": [ - 2829 + 2946 ], "deaths": [ - 2829 + 2946 ], "deaths_ct": [ - 2829 + 2946 ], "deaths_t": [ - 2829 + 2946 ], "decoy_throws": [ - 2829 + 2946 ], "enemies_flashed": [ - 2829 + 2946 ], "first_bullet_hits": [ - 2829 + 2946 ], "first_bullet_shots": [ - 2829 + 2946 ], "five_kill_rounds": [ - 2829 + 2946 ], "flash_assists": [ - 2829 + 2946 ], "flashes_thrown": [ - 2829 + 2946 ], "four_kill_rounds": [ - 2829 + 2946 ], "he_damage": [ - 2829 + 2946 ], "he_team_damage": [ - 2829 + 2946 ], "he_throws": [ - 2829 + 2946 ], "headshot_hits": [ - 2829 + 2946 ], "hits": [ - 2829 + 2946 ], "hits_at_spotted": [ - 2829 + 2946 ], "hs_kills": [ - 2829 + 2946 ], "hs_kills_ct": [ - 2829 + 2946 ], "hs_kills_t": [ - 2829 + 2946 ], "kills": [ - 2829 + 2946 ], "kills_ct": [ - 2829 + 2946 ], "kills_t": [ - 2829 + 2946 ], "knife_kills": [ - 2829 + 2946 ], "molotov_damage": [ - 2829 + 2946 ], "molotov_throws": [ - 2829 + 2946 ], "non_awp_hits": [ - 2829 + 2946 ], "on_target_frames": [ - 2829 + 2946 ], "rounds_ct": [ - 2829 + 2946 ], "rounds_played": [ - 2829 + 2946 ], "rounds_t": [ - 2829 + 2946 ], "shots_at_spotted": [ - 2829 + 2946 ], "shots_fired": [ - 2829 + 2946 ], "smoke_throws": [ - 2829 + 2946 ], "spotted_count": [ - 2829 + 2946 ], "spotted_with_damage_count": [ - 2829 + 2946 ], "spray_hits": [ - 2829 + 2946 ], "spray_shots": [ - 2829 + 2946 ], "steam_id": [ - 2829 + 2946 ], "team_damage": [ - 2829 + 2946 ], "team_flashed": [ - 2829 + 2946 ], "three_kill_rounds": [ - 2829 + 2946 ], "total_engagement_frames": [ - 2829 + 2946 ], "trade_kill_attempts": [ - 2829 + 2946 ], "trade_kill_opportunities": [ - 2829 + 2946 ], "trade_kill_successes": [ - 2829 + 2946 ], "traded_death_attempts": [ - 2829 + 2946 ], "traded_death_opportunities": [ - 2829 + 2946 ], "traded_death_successes": [ - 2829 + 2946 ], "two_kill_rounds": [ - 2829 + 2946 ], "unused_utility_value": [ - 2829 + 2946 ], "utility_on_death": [ - 2829 + 2946 ], "wasted_magazine_shots": [ - 2829 + 2946 ], "zeus_kills": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "player_match_stats_v_var_pop_fields": { "assists": [ - 29 + 31 ], "assists_ct": [ - 29 + 31 ], "assists_t": [ - 29 + 31 ], "avg_crosshair_angle_deg": [ - 29 + 31 ], "avg_flash_duration": [ - 29 + 31 ], "avg_time_to_damage_s": [ - 29 + 31 ], "counter_strafe_eligible_shots": [ - 29 + 31 ], "counter_strafed_shots": [ - 29 + 31 ], "damage": [ - 29 + 31 ], "damage_ct": [ - 29 + 31 ], "damage_t": [ - 29 + 31 ], "deaths": [ - 29 + 31 ], "deaths_ct": [ - 29 + 31 ], "deaths_t": [ - 29 + 31 ], "decoy_throws": [ - 29 + 31 ], "enemies_flashed": [ - 29 + 31 ], "first_bullet_hits": [ - 29 + 31 ], "first_bullet_shots": [ - 29 + 31 ], "five_kill_rounds": [ - 29 + 31 ], "flash_assists": [ - 29 + 31 ], "flashes_thrown": [ - 29 + 31 ], "four_kill_rounds": [ - 29 + 31 ], "he_damage": [ - 29 + 31 ], "he_team_damage": [ - 29 + 31 ], "he_throws": [ - 29 + 31 ], "headshot_hits": [ - 29 + 31 ], "hits": [ - 29 + 31 ], "hits_at_spotted": [ - 29 + 31 ], "hs_kills": [ - 29 + 31 ], "hs_kills_ct": [ - 29 + 31 ], "hs_kills_t": [ - 29 + 31 ], "kills": [ - 29 + 31 ], "kills_ct": [ - 29 + 31 ], "kills_t": [ - 29 + 31 ], "knife_kills": [ - 29 + 31 ], "molotov_damage": [ - 29 + 31 ], "molotov_throws": [ - 29 + 31 ], "non_awp_hits": [ - 29 + 31 ], "on_target_frames": [ - 29 + 31 ], "rounds_ct": [ - 29 + 31 ], "rounds_played": [ - 29 + 31 ], "rounds_t": [ - 29 + 31 ], "shots_at_spotted": [ - 29 + 31 ], "shots_fired": [ - 29 + 31 ], "smoke_throws": [ - 29 + 31 ], "spotted_count": [ - 29 + 31 ], "spotted_with_damage_count": [ - 29 + 31 ], "spray_hits": [ - 29 + 31 ], "spray_shots": [ - 29 + 31 ], "steam_id": [ - 29 + 31 ], "team_damage": [ - 29 + 31 ], "team_flashed": [ - 29 + 31 ], "three_kill_rounds": [ - 29 + 31 ], "total_engagement_frames": [ - 29 + 31 ], "trade_kill_attempts": [ - 29 + 31 ], "trade_kill_opportunities": [ - 29 + 31 ], "trade_kill_successes": [ - 29 + 31 ], "traded_death_attempts": [ - 29 + 31 ], "traded_death_opportunities": [ - 29 + 31 ], "traded_death_successes": [ - 29 + 31 ], "two_kill_rounds": [ - 29 + 31 ], "unused_utility_value": [ - 29 + 31 ], "utility_on_death": [ - 29 + 31 ], "wasted_magazine_shots": [ - 29 + 31 ], "zeus_kills": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "player_match_stats_v_var_pop_order_by": { "assists": [ - 2829 + 2946 ], "assists_ct": [ - 2829 + 2946 ], "assists_t": [ - 2829 + 2946 ], "avg_crosshair_angle_deg": [ - 2829 + 2946 ], "avg_flash_duration": [ - 2829 + 2946 ], "avg_time_to_damage_s": [ - 2829 + 2946 ], "counter_strafe_eligible_shots": [ - 2829 + 2946 ], "counter_strafed_shots": [ - 2829 + 2946 ], "damage": [ - 2829 + 2946 ], "damage_ct": [ - 2829 + 2946 ], "damage_t": [ - 2829 + 2946 ], "deaths": [ - 2829 + 2946 ], "deaths_ct": [ - 2829 + 2946 ], "deaths_t": [ - 2829 + 2946 ], "decoy_throws": [ - 2829 + 2946 ], "enemies_flashed": [ - 2829 + 2946 ], "first_bullet_hits": [ - 2829 + 2946 ], "first_bullet_shots": [ - 2829 + 2946 ], "five_kill_rounds": [ - 2829 + 2946 ], "flash_assists": [ - 2829 + 2946 ], "flashes_thrown": [ - 2829 + 2946 ], "four_kill_rounds": [ - 2829 + 2946 ], "he_damage": [ - 2829 + 2946 ], "he_team_damage": [ - 2829 + 2946 ], "he_throws": [ - 2829 + 2946 ], "headshot_hits": [ - 2829 + 2946 ], "hits": [ - 2829 + 2946 ], "hits_at_spotted": [ - 2829 + 2946 ], "hs_kills": [ - 2829 + 2946 ], "hs_kills_ct": [ - 2829 + 2946 ], "hs_kills_t": [ - 2829 + 2946 ], "kills": [ - 2829 + 2946 ], "kills_ct": [ - 2829 + 2946 ], "kills_t": [ - 2829 + 2946 ], "knife_kills": [ - 2829 + 2946 ], "molotov_damage": [ - 2829 + 2946 ], "molotov_throws": [ - 2829 + 2946 ], "non_awp_hits": [ - 2829 + 2946 ], "on_target_frames": [ - 2829 + 2946 ], "rounds_ct": [ - 2829 + 2946 ], "rounds_played": [ - 2829 + 2946 ], "rounds_t": [ - 2829 + 2946 ], "shots_at_spotted": [ - 2829 + 2946 ], "shots_fired": [ - 2829 + 2946 ], "smoke_throws": [ - 2829 + 2946 ], "spotted_count": [ - 2829 + 2946 ], "spotted_with_damage_count": [ - 2829 + 2946 ], "spray_hits": [ - 2829 + 2946 ], "spray_shots": [ - 2829 + 2946 ], "steam_id": [ - 2829 + 2946 ], "team_damage": [ - 2829 + 2946 ], "team_flashed": [ - 2829 + 2946 ], "three_kill_rounds": [ - 2829 + 2946 ], "total_engagement_frames": [ - 2829 + 2946 ], "trade_kill_attempts": [ - 2829 + 2946 ], "trade_kill_opportunities": [ - 2829 + 2946 ], "trade_kill_successes": [ - 2829 + 2946 ], "traded_death_attempts": [ - 2829 + 2946 ], "traded_death_opportunities": [ - 2829 + 2946 ], "traded_death_successes": [ - 2829 + 2946 ], "two_kill_rounds": [ - 2829 + 2946 ], "unused_utility_value": [ - 2829 + 2946 ], "utility_on_death": [ - 2829 + 2946 ], "wasted_magazine_shots": [ - 2829 + 2946 ], "zeus_kills": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "player_match_stats_v_var_samp_fields": { "assists": [ - 29 + 31 ], "assists_ct": [ - 29 + 31 ], "assists_t": [ - 29 + 31 ], "avg_crosshair_angle_deg": [ - 29 + 31 ], "avg_flash_duration": [ - 29 + 31 ], "avg_time_to_damage_s": [ - 29 + 31 ], "counter_strafe_eligible_shots": [ - 29 + 31 ], "counter_strafed_shots": [ - 29 + 31 ], "damage": [ - 29 + 31 ], "damage_ct": [ - 29 + 31 ], "damage_t": [ - 29 + 31 ], "deaths": [ - 29 + 31 ], "deaths_ct": [ - 29 + 31 ], "deaths_t": [ - 29 + 31 ], "decoy_throws": [ - 29 + 31 ], "enemies_flashed": [ - 29 + 31 ], "first_bullet_hits": [ - 29 + 31 ], "first_bullet_shots": [ - 29 + 31 ], "five_kill_rounds": [ - 29 + 31 ], "flash_assists": [ - 29 + 31 ], "flashes_thrown": [ - 29 + 31 ], "four_kill_rounds": [ - 29 + 31 ], "he_damage": [ - 29 + 31 ], "he_team_damage": [ - 29 + 31 ], "he_throws": [ - 29 + 31 ], "headshot_hits": [ - 29 + 31 ], "hits": [ - 29 + 31 ], "hits_at_spotted": [ - 29 + 31 ], "hs_kills": [ - 29 + 31 ], "hs_kills_ct": [ - 29 + 31 ], "hs_kills_t": [ - 29 + 31 ], "kills": [ - 29 + 31 ], "kills_ct": [ - 29 + 31 ], "kills_t": [ - 29 + 31 ], "knife_kills": [ - 29 + 31 ], "molotov_damage": [ - 29 + 31 ], "molotov_throws": [ - 29 + 31 ], "non_awp_hits": [ - 29 + 31 ], "on_target_frames": [ - 29 + 31 ], "rounds_ct": [ - 29 + 31 ], "rounds_played": [ - 29 + 31 ], "rounds_t": [ - 29 + 31 ], "shots_at_spotted": [ - 29 + 31 ], "shots_fired": [ - 29 + 31 ], "smoke_throws": [ - 29 + 31 ], "spotted_count": [ - 29 + 31 ], "spotted_with_damage_count": [ - 29 + 31 ], "spray_hits": [ - 29 + 31 ], "spray_shots": [ - 29 + 31 ], "steam_id": [ - 29 + 31 ], "team_damage": [ - 29 + 31 ], "team_flashed": [ - 29 + 31 ], "three_kill_rounds": [ - 29 + 31 ], "total_engagement_frames": [ - 29 + 31 ], "trade_kill_attempts": [ - 29 + 31 ], "trade_kill_opportunities": [ - 29 + 31 ], "trade_kill_successes": [ - 29 + 31 ], "traded_death_attempts": [ - 29 + 31 ], "traded_death_opportunities": [ - 29 + 31 ], "traded_death_successes": [ - 29 + 31 ], "two_kill_rounds": [ - 29 + 31 ], "unused_utility_value": [ - 29 + 31 ], "utility_on_death": [ - 29 + 31 ], "wasted_magazine_shots": [ - 29 + 31 ], "zeus_kills": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "player_match_stats_v_var_samp_order_by": { "assists": [ - 2829 + 2946 ], "assists_ct": [ - 2829 + 2946 ], "assists_t": [ - 2829 + 2946 ], "avg_crosshair_angle_deg": [ - 2829 + 2946 ], "avg_flash_duration": [ - 2829 + 2946 ], "avg_time_to_damage_s": [ - 2829 + 2946 ], "counter_strafe_eligible_shots": [ - 2829 + 2946 ], "counter_strafed_shots": [ - 2829 + 2946 ], "damage": [ - 2829 + 2946 ], "damage_ct": [ - 2829 + 2946 ], "damage_t": [ - 2829 + 2946 ], "deaths": [ - 2829 + 2946 ], "deaths_ct": [ - 2829 + 2946 ], "deaths_t": [ - 2829 + 2946 ], "decoy_throws": [ - 2829 + 2946 ], "enemies_flashed": [ - 2829 + 2946 ], "first_bullet_hits": [ - 2829 + 2946 ], "first_bullet_shots": [ - 2829 + 2946 ], "five_kill_rounds": [ - 2829 + 2946 ], "flash_assists": [ - 2829 + 2946 ], "flashes_thrown": [ - 2829 + 2946 ], "four_kill_rounds": [ - 2829 + 2946 ], "he_damage": [ - 2829 + 2946 ], "he_team_damage": [ - 2829 + 2946 ], "he_throws": [ - 2829 + 2946 ], "headshot_hits": [ - 2829 + 2946 ], "hits": [ - 2829 + 2946 ], "hits_at_spotted": [ - 2829 + 2946 ], "hs_kills": [ - 2829 + 2946 ], "hs_kills_ct": [ - 2829 + 2946 ], "hs_kills_t": [ - 2829 + 2946 ], "kills": [ - 2829 + 2946 ], "kills_ct": [ - 2829 + 2946 ], "kills_t": [ - 2829 + 2946 ], "knife_kills": [ - 2829 + 2946 ], "molotov_damage": [ - 2829 + 2946 ], "molotov_throws": [ - 2829 + 2946 ], "non_awp_hits": [ - 2829 + 2946 ], "on_target_frames": [ - 2829 + 2946 ], "rounds_ct": [ - 2829 + 2946 ], "rounds_played": [ - 2829 + 2946 ], "rounds_t": [ - 2829 + 2946 ], "shots_at_spotted": [ - 2829 + 2946 ], "shots_fired": [ - 2829 + 2946 ], "smoke_throws": [ - 2829 + 2946 ], "spotted_count": [ - 2829 + 2946 ], "spotted_with_damage_count": [ - 2829 + 2946 ], "spray_hits": [ - 2829 + 2946 ], "spray_shots": [ - 2829 + 2946 ], "steam_id": [ - 2829 + 2946 ], "team_damage": [ - 2829 + 2946 ], "team_flashed": [ - 2829 + 2946 ], "three_kill_rounds": [ - 2829 + 2946 ], "total_engagement_frames": [ - 2829 + 2946 ], "trade_kill_attempts": [ - 2829 + 2946 ], "trade_kill_opportunities": [ - 2829 + 2946 ], "trade_kill_successes": [ - 2829 + 2946 ], "traded_death_attempts": [ - 2829 + 2946 ], "traded_death_opportunities": [ - 2829 + 2946 ], "traded_death_successes": [ - 2829 + 2946 ], "two_kill_rounds": [ - 2829 + 2946 ], "unused_utility_value": [ - 2829 + 2946 ], "utility_on_death": [ - 2829 + 2946 ], "wasted_magazine_shots": [ - 2829 + 2946 ], "zeus_kills": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "player_match_stats_v_variance_fields": { "assists": [ - 29 + 31 ], "assists_ct": [ - 29 + 31 ], "assists_t": [ - 29 + 31 ], "avg_crosshair_angle_deg": [ - 29 + 31 ], "avg_flash_duration": [ - 29 + 31 ], "avg_time_to_damage_s": [ - 29 + 31 ], "counter_strafe_eligible_shots": [ - 29 + 31 ], "counter_strafed_shots": [ - 29 + 31 ], "damage": [ - 29 + 31 ], "damage_ct": [ - 29 + 31 ], "damage_t": [ - 29 + 31 ], "deaths": [ - 29 + 31 ], "deaths_ct": [ - 29 + 31 ], "deaths_t": [ - 29 + 31 ], "decoy_throws": [ - 29 + 31 ], "enemies_flashed": [ - 29 + 31 ], "first_bullet_hits": [ - 29 + 31 ], "first_bullet_shots": [ - 29 + 31 ], "five_kill_rounds": [ - 29 + 31 ], "flash_assists": [ - 29 + 31 ], "flashes_thrown": [ - 29 + 31 ], "four_kill_rounds": [ - 29 + 31 ], "he_damage": [ - 29 + 31 ], "he_team_damage": [ - 29 + 31 ], "he_throws": [ - 29 + 31 ], "headshot_hits": [ - 29 + 31 ], "hits": [ - 29 + 31 ], "hits_at_spotted": [ - 29 + 31 ], "hs_kills": [ - 29 + 31 ], "hs_kills_ct": [ - 29 + 31 ], "hs_kills_t": [ - 29 + 31 ], "kills": [ - 29 + 31 ], "kills_ct": [ - 29 + 31 ], "kills_t": [ - 29 + 31 ], "knife_kills": [ - 29 + 31 ], "molotov_damage": [ - 29 + 31 ], "molotov_throws": [ - 29 + 31 ], "non_awp_hits": [ - 29 + 31 ], "on_target_frames": [ - 29 + 31 ], "rounds_ct": [ - 29 + 31 ], "rounds_played": [ - 29 + 31 ], "rounds_t": [ - 29 + 31 ], "shots_at_spotted": [ - 29 + 31 ], "shots_fired": [ - 29 + 31 ], "smoke_throws": [ - 29 + 31 ], "spotted_count": [ - 29 + 31 ], "spotted_with_damage_count": [ - 29 + 31 ], "spray_hits": [ - 29 + 31 ], "spray_shots": [ - 29 + 31 ], "steam_id": [ - 29 + 31 ], "team_damage": [ - 29 + 31 ], "team_flashed": [ - 29 + 31 ], "three_kill_rounds": [ - 29 + 31 ], "total_engagement_frames": [ - 29 + 31 ], "trade_kill_attempts": [ - 29 + 31 ], "trade_kill_opportunities": [ - 29 + 31 ], "trade_kill_successes": [ - 29 + 31 ], "traded_death_attempts": [ - 29 + 31 ], "traded_death_opportunities": [ - 29 + 31 ], "traded_death_successes": [ - 29 + 31 ], "two_kill_rounds": [ - 29 + 31 ], "unused_utility_value": [ - 29 + 31 ], "utility_on_death": [ - 29 + 31 ], "wasted_magazine_shots": [ - 29 + 31 ], "zeus_kills": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "player_match_stats_v_variance_order_by": { "assists": [ - 2829 + 2946 ], "assists_ct": [ - 2829 + 2946 ], "assists_t": [ - 2829 + 2946 ], "avg_crosshair_angle_deg": [ - 2829 + 2946 ], "avg_flash_duration": [ - 2829 + 2946 ], "avg_time_to_damage_s": [ - 2829 + 2946 ], "counter_strafe_eligible_shots": [ - 2829 + 2946 ], "counter_strafed_shots": [ - 2829 + 2946 ], "damage": [ - 2829 + 2946 ], "damage_ct": [ - 2829 + 2946 ], "damage_t": [ - 2829 + 2946 ], "deaths": [ - 2829 + 2946 ], "deaths_ct": [ - 2829 + 2946 ], "deaths_t": [ - 2829 + 2946 ], "decoy_throws": [ - 2829 + 2946 ], "enemies_flashed": [ - 2829 + 2946 ], "first_bullet_hits": [ - 2829 + 2946 ], "first_bullet_shots": [ - 2829 + 2946 ], "five_kill_rounds": [ - 2829 + 2946 ], "flash_assists": [ - 2829 + 2946 ], "flashes_thrown": [ - 2829 + 2946 ], "four_kill_rounds": [ - 2829 + 2946 ], "he_damage": [ - 2829 + 2946 ], "he_team_damage": [ - 2829 + 2946 ], "he_throws": [ - 2829 + 2946 ], "headshot_hits": [ - 2829 + 2946 ], "hits": [ - 2829 + 2946 ], "hits_at_spotted": [ - 2829 + 2946 ], "hs_kills": [ - 2829 + 2946 ], "hs_kills_ct": [ - 2829 + 2946 ], "hs_kills_t": [ - 2829 + 2946 ], "kills": [ - 2829 + 2946 ], "kills_ct": [ - 2829 + 2946 ], "kills_t": [ - 2829 + 2946 ], "knife_kills": [ - 2829 + 2946 ], "molotov_damage": [ - 2829 + 2946 ], "molotov_throws": [ - 2829 + 2946 ], "non_awp_hits": [ - 2829 + 2946 ], "on_target_frames": [ - 2829 + 2946 ], "rounds_ct": [ - 2829 + 2946 ], "rounds_played": [ - 2829 + 2946 ], "rounds_t": [ - 2829 + 2946 ], "shots_at_spotted": [ - 2829 + 2946 ], "shots_fired": [ - 2829 + 2946 ], "smoke_throws": [ - 2829 + 2946 ], "spotted_count": [ - 2829 + 2946 ], "spotted_with_damage_count": [ - 2829 + 2946 ], "spray_hits": [ - 2829 + 2946 ], "spray_shots": [ - 2829 + 2946 ], "steam_id": [ - 2829 + 2946 ], "team_damage": [ - 2829 + 2946 ], "team_flashed": [ - 2829 + 2946 ], "three_kill_rounds": [ - 2829 + 2946 ], "total_engagement_frames": [ - 2829 + 2946 ], "trade_kill_attempts": [ - 2829 + 2946 ], "trade_kill_opportunities": [ - 2829 + 2946 ], "trade_kill_successes": [ - 2829 + 2946 ], "traded_death_attempts": [ - 2829 + 2946 ], "traded_death_opportunities": [ - 2829 + 2946 ], "traded_death_successes": [ - 2829 + 2946 ], "two_kill_rounds": [ - 2829 + 2946 ], "unused_utility_value": [ - 2829 + 2946 ], "utility_on_death": [ - 2829 + 2946 ], "wasted_magazine_shots": [ - 2829 + 2946 ], "zeus_kills": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "player_objectives": { "deleted_at": [ - 4376 + 4493 ], "match": [ - 2644 + 2761 ], "match_id": [ - 4921 + 4993 ], "match_map": [ - 2482 + 2599 ], "match_map_id": [ - 4921 + 4993 ], "player": [ - 3787 + 3904 ], "player_steam_id": [ - 180 + 252 ], "round": [ - 38 + 40 ], "time": [ - 4376 + 4493 ], "type": [ - 928 + 1045 ], "__typename": [ - 78 + 80 ] }, "player_objectives_aggregate": { "aggregate": [ - 3389 + 3506 ], "nodes": [ - 3385 + 3502 ], "__typename": [ - 78 + 80 ] }, "player_objectives_aggregate_bool_exp": { "count": [ - 3388 + 3505 ], "__typename": [ - 78 + 80 ] }, "player_objectives_aggregate_bool_exp_count": { "arguments": [ - 3406 + 3523 ], "distinct": [ - 3 + 5 ], "filter": [ - 3394 + 3511 ], "predicate": [ - 39 + 41 ], "__typename": [ - 78 + 80 ] }, "player_objectives_aggregate_fields": { "avg": [ - 3392 + 3509 ], "count": [ - 38, + 40, { "columns": [ - 3406, + 3523, "[player_objectives_select_column!]" ], "distinct": [ - 3 + 5 ] } ], "max": [ - 3398 + 3515 ], "min": [ - 3400 + 3517 ], "stddev": [ - 3408 + 3525 ], "stddev_pop": [ - 3410 + 3527 ], "stddev_samp": [ - 3412 + 3529 ], "sum": [ - 3416 + 3533 ], "var_pop": [ - 3420 + 3537 ], "var_samp": [ - 3422 + 3539 ], "variance": [ - 3424 + 3541 ], "__typename": [ - 78 + 80 ] }, "player_objectives_aggregate_order_by": { "avg": [ - 3393 + 3510 ], "count": [ - 2829 + 2946 ], "max": [ - 3399 + 3516 ], "min": [ - 3401 + 3518 ], "stddev": [ - 3409 + 3526 ], "stddev_pop": [ - 3411 + 3528 ], "stddev_samp": [ - 3413 + 3530 ], "sum": [ - 3417 + 3534 ], "var_pop": [ - 3421 + 3538 ], "var_samp": [ - 3423 + 3540 ], "variance": [ - 3425 + 3542 ], "__typename": [ - 78 + 80 ] }, "player_objectives_arr_rel_insert_input": { "data": [ - 3397 + 3514 ], "on_conflict": [ - 3403 + 3520 ], "__typename": [ - 78 + 80 ] }, "player_objectives_avg_fields": { "player_steam_id": [ - 29 + 31 ], "round": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "player_objectives_avg_order_by": { "player_steam_id": [ - 2829 + 2946 ], "round": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "player_objectives_bool_exp": { "_and": [ - 3394 + 3511 ], "_not": [ - 3394 + 3511 ], "_or": [ - 3394 + 3511 ], "deleted_at": [ - 4377 + 4494 ], "match": [ - 2653 + 2770 ], "match_id": [ - 4923 + 4995 ], "match_map": [ - 2491 + 2608 ], "match_map_id": [ - 4923 + 4995 ], "player": [ - 3791 + 3908 ], "player_steam_id": [ - 182 + 254 ], "round": [ - 39 + 41 ], "time": [ - 4377 + 4494 ], "type": [ - 929 + 1046 ], "__typename": [ - 78 + 80 ] }, "player_objectives_constraint": {}, "player_objectives_inc_input": { "player_steam_id": [ - 180 + 252 ], "round": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "player_objectives_insert_input": { "deleted_at": [ - 4376 + 4493 ], "match": [ - 2662 + 2779 ], "match_id": [ - 4921 + 4993 ], "match_map": [ - 2500 + 2617 ], "match_map_id": [ - 4921 + 4993 ], "player": [ - 3798 + 3915 ], "player_steam_id": [ - 180 + 252 ], "round": [ - 38 + 40 ], "time": [ - 4376 + 4493 ], "type": [ - 928 + 1045 ], "__typename": [ - 78 + 80 ] }, "player_objectives_max_fields": { "deleted_at": [ - 4376 + 4493 ], "match_id": [ - 4921 + 4993 ], "match_map_id": [ - 4921 + 4993 ], "player_steam_id": [ - 180 + 252 ], "round": [ - 38 + 40 ], "time": [ - 4376 + 4493 ], "__typename": [ - 78 + 80 ] }, "player_objectives_max_order_by": { "deleted_at": [ - 2829 + 2946 ], "match_id": [ - 2829 + 2946 ], "match_map_id": [ - 2829 + 2946 ], "player_steam_id": [ - 2829 + 2946 ], "round": [ - 2829 + 2946 ], "time": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "player_objectives_min_fields": { "deleted_at": [ - 4376 + 4493 ], "match_id": [ - 4921 + 4993 ], "match_map_id": [ - 4921 + 4993 ], "player_steam_id": [ - 180 + 252 ], "round": [ - 38 + 40 ], "time": [ - 4376 + 4493 ], "__typename": [ - 78 + 80 ] }, "player_objectives_min_order_by": { "deleted_at": [ - 2829 + 2946 ], "match_id": [ - 2829 + 2946 ], "match_map_id": [ - 2829 + 2946 ], "player_steam_id": [ - 2829 + 2946 ], "round": [ - 2829 + 2946 ], "time": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "player_objectives_mutation_response": { "affected_rows": [ - 38 + 40 ], "returning": [ - 3385 + 3502 ], "__typename": [ - 78 + 80 ] }, "player_objectives_on_conflict": { "constraint": [ - 3395 + 3512 ], "update_columns": [ - 3418 + 3535 ], "where": [ - 3394 + 3511 ], "__typename": [ - 78 + 80 ] }, "player_objectives_order_by": { "deleted_at": [ - 2829 + 2946 ], "match": [ - 2664 + 2781 ], "match_id": [ - 2829 + 2946 ], "match_map": [ - 2502 + 2619 ], "match_map_id": [ - 2829 + 2946 ], "player": [ - 3800 + 3917 ], "player_steam_id": [ - 2829 + 2946 ], "round": [ - 2829 + 2946 ], "time": [ - 2829 + 2946 ], "type": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "player_objectives_pk_columns_input": { "match_map_id": [ - 4921 + 4993 ], "player_steam_id": [ - 180 + 252 ], "time": [ - 4376 + 4493 ], "__typename": [ - 78 + 80 ] }, "player_objectives_select_column": {}, "player_objectives_set_input": { "deleted_at": [ - 4376 + 4493 ], "match_id": [ - 4921 + 4993 ], "match_map_id": [ - 4921 + 4993 ], "player_steam_id": [ - 180 + 252 ], "round": [ - 38 + 40 ], "time": [ - 4376 + 4493 ], "type": [ - 928 + 1045 ], "__typename": [ - 78 + 80 ] }, "player_objectives_stddev_fields": { "player_steam_id": [ - 29 + 31 ], "round": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "player_objectives_stddev_order_by": { "player_steam_id": [ - 2829 + 2946 ], "round": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "player_objectives_stddev_pop_fields": { "player_steam_id": [ - 29 + 31 ], "round": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "player_objectives_stddev_pop_order_by": { "player_steam_id": [ - 2829 + 2946 ], "round": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "player_objectives_stddev_samp_fields": { "player_steam_id": [ - 29 + 31 ], "round": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "player_objectives_stddev_samp_order_by": { "player_steam_id": [ - 2829 + 2946 ], "round": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "player_objectives_stream_cursor_input": { "initial_value": [ - 3415 + 3532 ], "ordering": [ - 236 + 308 ], "__typename": [ - 78 + 80 ] }, "player_objectives_stream_cursor_value_input": { "deleted_at": [ - 4376 + 4493 ], "match_id": [ - 4921 + 4993 ], "match_map_id": [ - 4921 + 4993 ], "player_steam_id": [ - 180 + 252 ], "round": [ - 38 + 40 ], "time": [ - 4376 + 4493 ], "type": [ - 928 + 1045 ], "__typename": [ - 78 + 80 ] }, "player_objectives_sum_fields": { "player_steam_id": [ - 180 + 252 ], "round": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "player_objectives_sum_order_by": { "player_steam_id": [ - 2829 + 2946 ], "round": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "player_objectives_update_column": {}, "player_objectives_updates": { "_inc": [ - 3396 + 3513 ], "_set": [ - 3407 + 3524 ], "where": [ - 3394 + 3511 ], "__typename": [ - 78 + 80 ] }, "player_objectives_var_pop_fields": { "player_steam_id": [ - 29 + 31 ], "round": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "player_objectives_var_pop_order_by": { "player_steam_id": [ - 2829 + 2946 ], "round": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "player_objectives_var_samp_fields": { "player_steam_id": [ - 29 + 31 ], "round": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "player_objectives_var_samp_order_by": { "player_steam_id": [ - 2829 + 2946 ], "round": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "player_objectives_variance_fields": { "player_steam_id": [ - 29 + 31 ], "round": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "player_objectives_variance_order_by": { "player_steam_id": [ - 2829 + 2946 ], "round": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "player_performance_v": { "accuracy_score": [ - 1547 + 1664 ], "aim_goal": [ - 1547 + 1664 ], "aim_rating": [ - 1547 + 1664 ], "band": [ - 38 + 40 ], "band_sample": [ - 180 + 252 ], "blind_score": [ - 1547 + 1664 ], "counter_strafe_score": [ - 1547 + 1664 ], "crosshair_score": [ - 1547 + 1664 ], "flash_assists_score": [ - 1547 + 1664 ], "hs_score": [ - 1547 + 1664 ], "kast_score": [ - 1547 + 1664 ], "maps": [ - 38 + 40 ], "positioning_goal": [ - 1547 + 1664 ], "positioning_rating": [ - 1547 + 1664 ], "premier_rank": [ - 38 + 40 ], "rounds": [ - 38 + 40 ], "spotted_score": [ - 1547 + 1664 ], "steam_id": [ - 180 + 252 ], "survival_score": [ - 1547 + 1664 ], "traded_score": [ - 1547 + 1664 ], "ttd_score": [ - 1547 + 1664 ], "util_eff_score": [ - 1547 + 1664 ], "utility_goal": [ - 1547 + 1664 ], "utility_rating": [ - 1547 + 1664 ], "__typename": [ - 78 + 80 ] }, "player_performance_v_aggregate": { "aggregate": [ - 3428 + 3545 ], "nodes": [ - 3426 + 3543 ], "__typename": [ - 78 + 80 ] }, "player_performance_v_aggregate_fields": { "avg": [ - 3429 + 3546 ], "count": [ - 38, + 40, { "columns": [ - 3434, + 3551, "[player_performance_v_select_column!]" ], "distinct": [ - 3 + 5 ] } ], "max": [ - 3431 + 3548 ], "min": [ - 3432 + 3549 ], "stddev": [ - 3435 + 3552 ], "stddev_pop": [ - 3436 + 3553 ], "stddev_samp": [ - 3437 + 3554 ], "sum": [ - 3440 + 3557 ], "var_pop": [ - 3441 + 3558 ], "var_samp": [ - 3442 + 3559 ], "variance": [ - 3443 + 3560 ], "__typename": [ - 78 + 80 ] }, "player_performance_v_avg_fields": { "accuracy_score": [ - 29 + 31 ], "aim_goal": [ - 29 + 31 ], "aim_rating": [ - 29 + 31 ], "band": [ - 29 + 31 ], "band_sample": [ - 29 + 31 ], "blind_score": [ - 29 + 31 ], "counter_strafe_score": [ - 29 + 31 ], "crosshair_score": [ - 29 + 31 ], "flash_assists_score": [ - 29 + 31 ], "hs_score": [ - 29 + 31 ], "kast_score": [ - 29 + 31 ], "maps": [ - 29 + 31 ], "positioning_goal": [ - 29 + 31 ], "positioning_rating": [ - 29 + 31 ], "premier_rank": [ - 29 + 31 ], "rounds": [ - 29 + 31 ], "spotted_score": [ - 29 + 31 ], "steam_id": [ - 29 + 31 ], "survival_score": [ - 29 + 31 ], "traded_score": [ - 29 + 31 ], "ttd_score": [ - 29 + 31 ], "util_eff_score": [ - 29 + 31 ], "utility_goal": [ - 29 + 31 ], "utility_rating": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "player_performance_v_bool_exp": { "_and": [ - 3430 + 3547 ], "_not": [ - 3430 + 3547 ], "_or": [ - 3430 + 3547 ], "accuracy_score": [ - 1548 + 1665 ], "aim_goal": [ - 1548 + 1665 ], "aim_rating": [ - 1548 + 1665 ], "band": [ - 39 + 41 ], "band_sample": [ - 182 + 254 ], "blind_score": [ - 1548 + 1665 ], "counter_strafe_score": [ - 1548 + 1665 ], "crosshair_score": [ - 1548 + 1665 ], "flash_assists_score": [ - 1548 + 1665 ], "hs_score": [ - 1548 + 1665 ], "kast_score": [ - 1548 + 1665 ], "maps": [ - 39 + 41 ], "positioning_goal": [ - 1548 + 1665 ], "positioning_rating": [ - 1548 + 1665 ], "premier_rank": [ - 39 + 41 ], "rounds": [ - 39 + 41 ], "spotted_score": [ - 1548 + 1665 ], "steam_id": [ - 182 + 254 ], "survival_score": [ - 1548 + 1665 ], "traded_score": [ - 1548 + 1665 ], "ttd_score": [ - 1548 + 1665 ], "util_eff_score": [ - 1548 + 1665 ], "utility_goal": [ - 1548 + 1665 ], "utility_rating": [ - 1548 + 1665 ], "__typename": [ - 78 + 80 ] }, "player_performance_v_max_fields": { "accuracy_score": [ - 1547 + 1664 ], "aim_goal": [ - 1547 + 1664 ], "aim_rating": [ - 1547 + 1664 ], "band": [ - 38 + 40 ], "band_sample": [ - 180 + 252 ], "blind_score": [ - 1547 + 1664 ], "counter_strafe_score": [ - 1547 + 1664 ], "crosshair_score": [ - 1547 + 1664 ], "flash_assists_score": [ - 1547 + 1664 ], "hs_score": [ - 1547 + 1664 ], "kast_score": [ - 1547 + 1664 ], "maps": [ - 38 + 40 ], "positioning_goal": [ - 1547 + 1664 ], "positioning_rating": [ - 1547 + 1664 ], "premier_rank": [ - 38 + 40 ], "rounds": [ - 38 + 40 ], "spotted_score": [ - 1547 + 1664 ], "steam_id": [ - 180 + 252 ], "survival_score": [ - 1547 + 1664 ], "traded_score": [ - 1547 + 1664 ], "ttd_score": [ - 1547 + 1664 ], "util_eff_score": [ - 1547 + 1664 ], "utility_goal": [ - 1547 + 1664 ], "utility_rating": [ - 1547 + 1664 ], "__typename": [ - 78 + 80 ] }, "player_performance_v_min_fields": { "accuracy_score": [ - 1547 + 1664 ], "aim_goal": [ - 1547 + 1664 ], "aim_rating": [ - 1547 + 1664 ], "band": [ - 38 + 40 ], "band_sample": [ - 180 + 252 ], "blind_score": [ - 1547 + 1664 ], "counter_strafe_score": [ - 1547 + 1664 ], "crosshair_score": [ - 1547 + 1664 ], "flash_assists_score": [ - 1547 + 1664 ], "hs_score": [ - 1547 + 1664 ], "kast_score": [ - 1547 + 1664 ], "maps": [ - 38 + 40 ], "positioning_goal": [ - 1547 + 1664 ], "positioning_rating": [ - 1547 + 1664 ], "premier_rank": [ - 38 + 40 ], "rounds": [ - 38 + 40 ], "spotted_score": [ - 1547 + 1664 ], "steam_id": [ - 180 + 252 ], "survival_score": [ - 1547 + 1664 ], "traded_score": [ - 1547 + 1664 ], "ttd_score": [ - 1547 + 1664 ], "util_eff_score": [ - 1547 + 1664 ], "utility_goal": [ - 1547 + 1664 ], "utility_rating": [ - 1547 + 1664 ], "__typename": [ - 78 + 80 ] }, "player_performance_v_order_by": { "accuracy_score": [ - 2829 + 2946 ], "aim_goal": [ - 2829 + 2946 ], "aim_rating": [ - 2829 + 2946 ], "band": [ - 2829 + 2946 ], "band_sample": [ - 2829 + 2946 ], "blind_score": [ - 2829 + 2946 ], "counter_strafe_score": [ - 2829 + 2946 ], "crosshair_score": [ - 2829 + 2946 ], "flash_assists_score": [ - 2829 + 2946 ], "hs_score": [ - 2829 + 2946 ], "kast_score": [ - 2829 + 2946 ], "maps": [ - 2829 + 2946 ], "positioning_goal": [ - 2829 + 2946 ], "positioning_rating": [ - 2829 + 2946 ], "premier_rank": [ - 2829 + 2946 ], "rounds": [ - 2829 + 2946 ], "spotted_score": [ - 2829 + 2946 ], "steam_id": [ - 2829 + 2946 ], "survival_score": [ - 2829 + 2946 ], "traded_score": [ - 2829 + 2946 ], "ttd_score": [ - 2829 + 2946 ], "util_eff_score": [ - 2829 + 2946 ], "utility_goal": [ - 2829 + 2946 ], "utility_rating": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "player_performance_v_select_column": {}, "player_performance_v_stddev_fields": { "accuracy_score": [ - 29 + 31 ], "aim_goal": [ - 29 + 31 ], "aim_rating": [ - 29 + 31 ], "band": [ - 29 + 31 ], "band_sample": [ - 29 + 31 ], "blind_score": [ - 29 + 31 ], "counter_strafe_score": [ - 29 + 31 ], "crosshair_score": [ - 29 + 31 ], "flash_assists_score": [ - 29 + 31 ], "hs_score": [ - 29 + 31 ], "kast_score": [ - 29 + 31 ], "maps": [ - 29 + 31 ], "positioning_goal": [ - 29 + 31 ], "positioning_rating": [ - 29 + 31 ], "premier_rank": [ - 29 + 31 ], "rounds": [ - 29 + 31 ], "spotted_score": [ - 29 + 31 ], "steam_id": [ - 29 + 31 ], "survival_score": [ - 29 + 31 ], "traded_score": [ - 29 + 31 ], "ttd_score": [ - 29 + 31 ], "util_eff_score": [ - 29 + 31 ], "utility_goal": [ - 29 + 31 ], "utility_rating": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "player_performance_v_stddev_pop_fields": { "accuracy_score": [ - 29 + 31 ], "aim_goal": [ - 29 + 31 ], "aim_rating": [ - 29 + 31 ], "band": [ - 29 + 31 ], "band_sample": [ - 29 + 31 ], "blind_score": [ - 29 + 31 ], "counter_strafe_score": [ - 29 + 31 ], "crosshair_score": [ - 29 + 31 ], "flash_assists_score": [ - 29 + 31 ], "hs_score": [ - 29 + 31 ], "kast_score": [ - 29 + 31 ], "maps": [ - 29 + 31 ], "positioning_goal": [ - 29 + 31 ], "positioning_rating": [ - 29 + 31 ], "premier_rank": [ - 29 + 31 ], "rounds": [ - 29 + 31 ], "spotted_score": [ - 29 + 31 ], "steam_id": [ - 29 + 31 ], "survival_score": [ - 29 + 31 ], "traded_score": [ - 29 + 31 ], "ttd_score": [ - 29 + 31 ], "util_eff_score": [ - 29 + 31 ], "utility_goal": [ - 29 + 31 ], "utility_rating": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "player_performance_v_stddev_samp_fields": { "accuracy_score": [ - 29 + 31 ], "aim_goal": [ - 29 + 31 ], "aim_rating": [ - 29 + 31 ], "band": [ - 29 + 31 ], "band_sample": [ - 29 + 31 ], "blind_score": [ - 29 + 31 ], "counter_strafe_score": [ - 29 + 31 ], "crosshair_score": [ - 29 + 31 ], "flash_assists_score": [ - 29 + 31 ], "hs_score": [ - 29 + 31 ], "kast_score": [ - 29 + 31 ], "maps": [ - 29 + 31 ], "positioning_goal": [ - 29 + 31 ], "positioning_rating": [ - 29 + 31 ], "premier_rank": [ - 29 + 31 ], "rounds": [ - 29 + 31 ], "spotted_score": [ - 29 + 31 ], "steam_id": [ - 29 + 31 ], "survival_score": [ - 29 + 31 ], "traded_score": [ - 29 + 31 ], "ttd_score": [ - 29 + 31 ], "util_eff_score": [ - 29 + 31 ], "utility_goal": [ - 29 + 31 ], "utility_rating": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "player_performance_v_stream_cursor_input": { "initial_value": [ - 3439 + 3556 ], "ordering": [ - 236 + 308 ], "__typename": [ - 78 + 80 ] }, "player_performance_v_stream_cursor_value_input": { "accuracy_score": [ - 1547 + 1664 ], "aim_goal": [ - 1547 + 1664 ], "aim_rating": [ - 1547 + 1664 ], "band": [ - 38 + 40 ], "band_sample": [ - 180 + 252 ], "blind_score": [ - 1547 + 1664 ], "counter_strafe_score": [ - 1547 + 1664 ], "crosshair_score": [ - 1547 + 1664 ], "flash_assists_score": [ - 1547 + 1664 ], "hs_score": [ - 1547 + 1664 ], "kast_score": [ - 1547 + 1664 ], "maps": [ - 38 + 40 ], "positioning_goal": [ - 1547 + 1664 ], "positioning_rating": [ - 1547 + 1664 ], "premier_rank": [ - 38 + 40 ], "rounds": [ - 38 + 40 ], "spotted_score": [ - 1547 + 1664 ], "steam_id": [ - 180 + 252 ], "survival_score": [ - 1547 + 1664 ], "traded_score": [ - 1547 + 1664 ], "ttd_score": [ - 1547 + 1664 ], "util_eff_score": [ - 1547 + 1664 ], "utility_goal": [ - 1547 + 1664 ], "utility_rating": [ - 1547 + 1664 ], "__typename": [ - 78 + 80 ] }, "player_performance_v_sum_fields": { "accuracy_score": [ - 1547 + 1664 ], "aim_goal": [ - 1547 + 1664 ], "aim_rating": [ - 1547 + 1664 ], "band": [ - 38 + 40 ], "band_sample": [ - 180 + 252 ], "blind_score": [ - 1547 + 1664 ], "counter_strafe_score": [ - 1547 + 1664 ], "crosshair_score": [ - 1547 + 1664 ], "flash_assists_score": [ - 1547 + 1664 ], "hs_score": [ - 1547 + 1664 ], "kast_score": [ - 1547 + 1664 ], "maps": [ - 38 + 40 ], "positioning_goal": [ - 1547 + 1664 ], "positioning_rating": [ - 1547 + 1664 ], "premier_rank": [ - 38 + 40 ], "rounds": [ - 38 + 40 ], "spotted_score": [ - 1547 + 1664 ], "steam_id": [ - 180 + 252 ], "survival_score": [ - 1547 + 1664 ], "traded_score": [ - 1547 + 1664 ], "ttd_score": [ - 1547 + 1664 ], "util_eff_score": [ - 1547 + 1664 ], "utility_goal": [ - 1547 + 1664 ], "utility_rating": [ - 1547 + 1664 ], "__typename": [ - 78 + 80 ] }, "player_performance_v_var_pop_fields": { "accuracy_score": [ - 29 + 31 ], "aim_goal": [ - 29 + 31 ], "aim_rating": [ - 29 + 31 ], "band": [ - 29 + 31 ], "band_sample": [ - 29 + 31 ], "blind_score": [ - 29 + 31 ], "counter_strafe_score": [ - 29 + 31 ], "crosshair_score": [ - 29 + 31 ], "flash_assists_score": [ - 29 + 31 ], "hs_score": [ - 29 + 31 ], "kast_score": [ - 29 + 31 ], "maps": [ - 29 + 31 ], "positioning_goal": [ - 29 + 31 ], "positioning_rating": [ - 29 + 31 ], "premier_rank": [ - 29 + 31 ], "rounds": [ - 29 + 31 ], "spotted_score": [ - 29 + 31 ], "steam_id": [ - 29 + 31 ], "survival_score": [ - 29 + 31 ], "traded_score": [ - 29 + 31 ], "ttd_score": [ - 29 + 31 ], "util_eff_score": [ - 29 + 31 ], "utility_goal": [ - 29 + 31 ], "utility_rating": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "player_performance_v_var_samp_fields": { "accuracy_score": [ - 29 + 31 ], "aim_goal": [ - 29 + 31 ], "aim_rating": [ - 29 + 31 ], "band": [ - 29 + 31 ], "band_sample": [ - 29 + 31 ], "blind_score": [ - 29 + 31 ], "counter_strafe_score": [ - 29 + 31 ], "crosshair_score": [ - 29 + 31 ], "flash_assists_score": [ - 29 + 31 ], "hs_score": [ - 29 + 31 ], "kast_score": [ - 29 + 31 ], "maps": [ - 29 + 31 ], "positioning_goal": [ - 29 + 31 ], "positioning_rating": [ - 29 + 31 ], "premier_rank": [ - 29 + 31 ], "rounds": [ - 29 + 31 ], "spotted_score": [ - 29 + 31 ], "steam_id": [ - 29 + 31 ], "survival_score": [ - 29 + 31 ], "traded_score": [ - 29 + 31 ], "ttd_score": [ - 29 + 31 ], "util_eff_score": [ - 29 + 31 ], "utility_goal": [ - 29 + 31 ], "utility_rating": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "player_performance_v_variance_fields": { "accuracy_score": [ - 29 + 31 ], "aim_goal": [ - 29 + 31 ], "aim_rating": [ - 29 + 31 ], "band": [ - 29 + 31 ], "band_sample": [ - 29 + 31 ], "blind_score": [ - 29 + 31 ], "counter_strafe_score": [ - 29 + 31 ], "crosshair_score": [ - 29 + 31 ], "flash_assists_score": [ - 29 + 31 ], "hs_score": [ - 29 + 31 ], "kast_score": [ - 29 + 31 ], "maps": [ - 29 + 31 ], "positioning_goal": [ - 29 + 31 ], "positioning_rating": [ - 29 + 31 ], "premier_rank": [ - 29 + 31 ], "rounds": [ - 29 + 31 ], "spotted_score": [ - 29 + 31 ], "steam_id": [ - 29 + 31 ], "survival_score": [ - 29 + 31 ], "traded_score": [ - 29 + 31 ], "ttd_score": [ - 29 + 31 ], "util_eff_score": [ - 29 + 31 ], "utility_goal": [ - 29 + 31 ], "utility_rating": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "player_premier_rank_history": { "id": [ - 4921 + 4993 ], "map": [ - 2162 + 2279 ], "map_id": [ - 4921 + 4993 ], "match": [ - 2644 + 2761 ], "match_id": [ - 4921 + 4993 ], "observed_at": [ - 4376 + 4493 ], "player": [ - 3787 + 3904 ], "previous_rank": [ - 38 + 40 ], "rank": [ - 38 + 40 ], "rank_type": [ - 38 + 40 ], "steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "player_premier_rank_history_aggregate": { "aggregate": [ - 3448 + 3565 ], "nodes": [ - 3444 + 3561 ], "__typename": [ - 78 + 80 ] }, "player_premier_rank_history_aggregate_bool_exp": { "count": [ - 3447 + 3564 ], "__typename": [ - 78 + 80 ] }, "player_premier_rank_history_aggregate_bool_exp_count": { "arguments": [ - 3465 + 3582 ], "distinct": [ - 3 + 5 ], "filter": [ - 3453 + 3570 ], "predicate": [ - 39 + 41 ], "__typename": [ - 78 + 80 ] }, "player_premier_rank_history_aggregate_fields": { "avg": [ - 3451 + 3568 ], "count": [ - 38, + 40, { "columns": [ - 3465, + 3582, "[player_premier_rank_history_select_column!]" ], "distinct": [ - 3 + 5 ] } ], "max": [ - 3457 + 3574 ], "min": [ - 3459 + 3576 ], "stddev": [ - 3467 + 3584 ], "stddev_pop": [ - 3469 + 3586 ], "stddev_samp": [ - 3471 + 3588 ], "sum": [ - 3475 + 3592 ], "var_pop": [ - 3479 + 3596 ], "var_samp": [ - 3481 + 3598 ], "variance": [ - 3483 + 3600 ], "__typename": [ - 78 + 80 ] }, "player_premier_rank_history_aggregate_order_by": { "avg": [ - 3452 + 3569 ], "count": [ - 2829 + 2946 ], "max": [ - 3458 + 3575 ], "min": [ - 3460 + 3577 ], "stddev": [ - 3468 + 3585 ], "stddev_pop": [ - 3470 + 3587 ], "stddev_samp": [ - 3472 + 3589 ], "sum": [ - 3476 + 3593 ], "var_pop": [ - 3480 + 3597 ], "var_samp": [ - 3482 + 3599 ], "variance": [ - 3484 + 3601 ], "__typename": [ - 78 + 80 ] }, "player_premier_rank_history_arr_rel_insert_input": { "data": [ - 3456 + 3573 ], "on_conflict": [ - 3462 + 3579 ], "__typename": [ - 78 + 80 ] }, "player_premier_rank_history_avg_fields": { "previous_rank": [ - 29 + 31 ], "rank": [ - 29 + 31 ], "rank_type": [ - 29 + 31 ], "steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "player_premier_rank_history_avg_order_by": { "previous_rank": [ - 2829 + 2946 ], "rank": [ - 2829 + 2946 ], "rank_type": [ - 2829 + 2946 ], "steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "player_premier_rank_history_bool_exp": { "_and": [ - 3453 + 3570 ], "_not": [ - 3453 + 3570 ], "_or": [ - 3453 + 3570 ], "id": [ - 4923 + 4995 ], "map": [ - 2171 + 2288 ], "map_id": [ - 4923 + 4995 ], "match": [ - 2653 + 2770 ], "match_id": [ - 4923 + 4995 ], "observed_at": [ - 4377 + 4494 ], "player": [ - 3791 + 3908 ], "previous_rank": [ - 39 + 41 ], "rank": [ - 39 + 41 ], "rank_type": [ - 39 + 41 ], "steam_id": [ - 182 + 254 ], "__typename": [ - 78 + 80 ] }, "player_premier_rank_history_constraint": {}, "player_premier_rank_history_inc_input": { "previous_rank": [ - 38 + 40 ], "rank": [ - 38 + 40 ], "rank_type": [ - 38 + 40 ], "steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "player_premier_rank_history_insert_input": { "id": [ - 4921 + 4993 ], "map": [ - 2179 + 2296 ], "map_id": [ - 4921 + 4993 ], "match": [ - 2662 + 2779 ], "match_id": [ - 4921 + 4993 ], "observed_at": [ - 4376 + 4493 ], "player": [ - 3798 + 3915 ], "previous_rank": [ - 38 + 40 ], "rank": [ - 38 + 40 ], "rank_type": [ - 38 + 40 ], "steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "player_premier_rank_history_max_fields": { "id": [ - 4921 + 4993 ], "map_id": [ - 4921 + 4993 ], "match_id": [ - 4921 + 4993 ], "observed_at": [ - 4376 + 4493 ], "previous_rank": [ - 38 + 40 ], "rank": [ - 38 + 40 ], "rank_type": [ - 38 + 40 ], "steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "player_premier_rank_history_max_order_by": { "id": [ - 2829 + 2946 ], "map_id": [ - 2829 + 2946 ], "match_id": [ - 2829 + 2946 ], "observed_at": [ - 2829 + 2946 ], "previous_rank": [ - 2829 + 2946 ], "rank": [ - 2829 + 2946 ], "rank_type": [ - 2829 + 2946 ], "steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "player_premier_rank_history_min_fields": { "id": [ - 4921 + 4993 ], "map_id": [ - 4921 + 4993 ], "match_id": [ - 4921 + 4993 ], "observed_at": [ - 4376 + 4493 ], "previous_rank": [ - 38 + 40 ], "rank": [ - 38 + 40 ], "rank_type": [ - 38 + 40 ], "steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "player_premier_rank_history_min_order_by": { "id": [ - 2829 + 2946 ], "map_id": [ - 2829 + 2946 ], "match_id": [ - 2829 + 2946 ], "observed_at": [ - 2829 + 2946 ], "previous_rank": [ - 2829 + 2946 ], "rank": [ - 2829 + 2946 ], "rank_type": [ - 2829 + 2946 ], "steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "player_premier_rank_history_mutation_response": { "affected_rows": [ - 38 + 40 ], "returning": [ - 3444 + 3561 ], "__typename": [ - 78 + 80 ] }, "player_premier_rank_history_on_conflict": { "constraint": [ - 3454 + 3571 ], "update_columns": [ - 3477 + 3594 ], "where": [ - 3453 + 3570 ], "__typename": [ - 78 + 80 ] }, "player_premier_rank_history_order_by": { "id": [ - 2829 + 2946 ], "map": [ - 2181 + 2298 ], "map_id": [ - 2829 + 2946 ], "match": [ - 2664 + 2781 ], "match_id": [ - 2829 + 2946 ], "observed_at": [ - 2829 + 2946 ], "player": [ - 3800 + 3917 ], "previous_rank": [ - 2829 + 2946 ], "rank": [ - 2829 + 2946 ], "rank_type": [ - 2829 + 2946 ], "steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "player_premier_rank_history_pk_columns_input": { "id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "player_premier_rank_history_select_column": {}, "player_premier_rank_history_set_input": { "id": [ - 4921 + 4993 ], "map_id": [ - 4921 + 4993 ], "match_id": [ - 4921 + 4993 ], "observed_at": [ - 4376 + 4493 ], "previous_rank": [ - 38 + 40 ], "rank": [ - 38 + 40 ], "rank_type": [ - 38 + 40 ], "steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "player_premier_rank_history_stddev_fields": { "previous_rank": [ - 29 + 31 ], "rank": [ - 29 + 31 ], "rank_type": [ - 29 + 31 ], "steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "player_premier_rank_history_stddev_order_by": { "previous_rank": [ - 2829 + 2946 ], "rank": [ - 2829 + 2946 ], "rank_type": [ - 2829 + 2946 ], "steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "player_premier_rank_history_stddev_pop_fields": { "previous_rank": [ - 29 + 31 ], "rank": [ - 29 + 31 ], "rank_type": [ - 29 + 31 ], "steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "player_premier_rank_history_stddev_pop_order_by": { "previous_rank": [ - 2829 + 2946 ], "rank": [ - 2829 + 2946 ], "rank_type": [ - 2829 + 2946 ], "steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "player_premier_rank_history_stddev_samp_fields": { "previous_rank": [ - 29 + 31 ], "rank": [ - 29 + 31 ], "rank_type": [ - 29 + 31 ], "steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "player_premier_rank_history_stddev_samp_order_by": { "previous_rank": [ - 2829 + 2946 ], "rank": [ - 2829 + 2946 ], "rank_type": [ - 2829 + 2946 ], "steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "player_premier_rank_history_stream_cursor_input": { "initial_value": [ - 3474 + 3591 ], "ordering": [ - 236 + 308 ], "__typename": [ - 78 + 80 ] }, "player_premier_rank_history_stream_cursor_value_input": { "id": [ - 4921 + 4993 ], "map_id": [ - 4921 + 4993 ], "match_id": [ - 4921 + 4993 ], "observed_at": [ - 4376 + 4493 ], "previous_rank": [ - 38 + 40 ], "rank": [ - 38 + 40 ], "rank_type": [ - 38 + 40 ], "steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "player_premier_rank_history_sum_fields": { "previous_rank": [ - 38 + 40 ], "rank": [ - 38 + 40 ], "rank_type": [ - 38 + 40 ], "steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "player_premier_rank_history_sum_order_by": { "previous_rank": [ - 2829 + 2946 ], "rank": [ - 2829 + 2946 ], "rank_type": [ - 2829 + 2946 ], "steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "player_premier_rank_history_update_column": {}, "player_premier_rank_history_updates": { "_inc": [ - 3455 + 3572 ], "_set": [ - 3466 + 3583 ], "where": [ - 3453 + 3570 ], "__typename": [ - 78 + 80 ] }, "player_premier_rank_history_var_pop_fields": { "previous_rank": [ - 29 + 31 ], "rank": [ - 29 + 31 ], "rank_type": [ - 29 + 31 ], "steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "player_premier_rank_history_var_pop_order_by": { "previous_rank": [ - 2829 + 2946 ], "rank": [ - 2829 + 2946 ], "rank_type": [ - 2829 + 2946 ], "steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "player_premier_rank_history_var_samp_fields": { "previous_rank": [ - 29 + 31 ], "rank": [ - 29 + 31 ], "rank_type": [ - 29 + 31 ], "steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "player_premier_rank_history_var_samp_order_by": { "previous_rank": [ - 2829 + 2946 ], "rank": [ - 2829 + 2946 ], "rank_type": [ - 2829 + 2946 ], "steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "player_premier_rank_history_variance_fields": { "previous_rank": [ - 29 + 31 ], "rank": [ - 29 + 31 ], "rank_type": [ - 29 + 31 ], "steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "player_premier_rank_history_variance_order_by": { "previous_rank": [ - 2829 + 2946 ], "rank": [ - 2829 + 2946 ], "rank_type": [ - 2829 + 2946 ], "steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "player_sanctions": { "created_at": [ - 4376 + 4493 ], "deleted_at": [ - 4376 + 4493 ], "e_sanction_type": [ - 1003 + 1120 ], "id": [ - 4921 + 4993 ], "player": [ - 3787 + 3904 ], "player_steam_id": [ - 180 + 252 ], "reason": [ - 78 + 80 ], "remove_sanction_date": [ - 4376 + 4493 ], "sanctioned_by": [ - 3787 + 3904 ], "sanctioned_by_steam_id": [ - 180 + 252 ], "type": [ - 1008 + 1125 ], "__typename": [ - 78 + 80 ] }, "player_sanctions_aggregate": { "aggregate": [ - 3489 + 3606 ], "nodes": [ - 3485 + 3602 ], "__typename": [ - 78 + 80 ] }, "player_sanctions_aggregate_bool_exp": { "count": [ - 3488 + 3605 ], "__typename": [ - 78 + 80 ] }, "player_sanctions_aggregate_bool_exp_count": { "arguments": [ - 3506 + 3623 ], "distinct": [ - 3 + 5 ], "filter": [ - 3494 + 3611 ], "predicate": [ - 39 + 41 ], "__typename": [ - 78 + 80 ] }, "player_sanctions_aggregate_fields": { "avg": [ - 3492 + 3609 ], "count": [ - 38, + 40, { "columns": [ - 3506, + 3623, "[player_sanctions_select_column!]" ], "distinct": [ - 3 + 5 ] } ], "max": [ - 3498 + 3615 ], "min": [ - 3500 + 3617 ], "stddev": [ - 3508 + 3625 ], "stddev_pop": [ - 3510 + 3627 ], "stddev_samp": [ - 3512 + 3629 ], "sum": [ - 3516 + 3633 ], "var_pop": [ - 3520 + 3637 ], "var_samp": [ - 3522 + 3639 ], "variance": [ - 3524 + 3641 ], "__typename": [ - 78 + 80 ] }, "player_sanctions_aggregate_order_by": { "avg": [ - 3493 + 3610 ], "count": [ - 2829 + 2946 ], "max": [ - 3499 + 3616 ], "min": [ - 3501 + 3618 ], "stddev": [ - 3509 + 3626 ], "stddev_pop": [ - 3511 + 3628 ], "stddev_samp": [ - 3513 + 3630 ], "sum": [ - 3517 + 3634 ], "var_pop": [ - 3521 + 3638 ], "var_samp": [ - 3523 + 3640 ], "variance": [ - 3525 + 3642 ], "__typename": [ - 78 + 80 ] }, "player_sanctions_arr_rel_insert_input": { "data": [ - 3497 + 3614 ], "on_conflict": [ - 3503 + 3620 ], "__typename": [ - 78 + 80 ] }, "player_sanctions_avg_fields": { "player_steam_id": [ - 29 + 31 ], "sanctioned_by_steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "player_sanctions_avg_order_by": { "player_steam_id": [ - 2829 + 2946 ], "sanctioned_by_steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "player_sanctions_bool_exp": { "_and": [ - 3494 + 3611 ], "_not": [ - 3494 + 3611 ], "_or": [ - 3494 + 3611 ], "created_at": [ - 4377 + 4494 ], "deleted_at": [ - 4377 + 4494 ], "e_sanction_type": [ - 1006 + 1123 ], "id": [ - 4923 + 4995 ], "player": [ - 3791 + 3908 ], "player_steam_id": [ - 182 + 254 ], "reason": [ - 80 + 82 ], "remove_sanction_date": [ - 4377 + 4494 ], "sanctioned_by": [ - 3791 + 3908 ], "sanctioned_by_steam_id": [ - 182 + 254 ], "type": [ - 1009 + 1126 ], "__typename": [ - 78 + 80 ] }, "player_sanctions_constraint": {}, "player_sanctions_inc_input": { "player_steam_id": [ - 180 + 252 ], "sanctioned_by_steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "player_sanctions_insert_input": { "created_at": [ - 4376 + 4493 ], "deleted_at": [ - 4376 + 4493 ], "e_sanction_type": [ - 1014 + 1131 ], "id": [ - 4921 + 4993 ], "player": [ - 3798 + 3915 ], "player_steam_id": [ - 180 + 252 ], "reason": [ - 78 + 80 ], "remove_sanction_date": [ - 4376 + 4493 ], "sanctioned_by": [ - 3798 + 3915 ], "sanctioned_by_steam_id": [ - 180 + 252 ], "type": [ - 1008 + 1125 ], "__typename": [ - 78 + 80 ] }, "player_sanctions_max_fields": { "created_at": [ - 4376 + 4493 ], "deleted_at": [ - 4376 + 4493 ], "id": [ - 4921 + 4993 ], "player_steam_id": [ - 180 + 252 ], "reason": [ - 78 + 80 ], "remove_sanction_date": [ - 4376 + 4493 ], "sanctioned_by_steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "player_sanctions_max_order_by": { "created_at": [ - 2829 + 2946 ], "deleted_at": [ - 2829 + 2946 ], "id": [ - 2829 + 2946 ], "player_steam_id": [ - 2829 + 2946 ], "reason": [ - 2829 + 2946 ], "remove_sanction_date": [ - 2829 + 2946 ], "sanctioned_by_steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "player_sanctions_min_fields": { "created_at": [ - 4376 + 4493 ], "deleted_at": [ - 4376 + 4493 ], "id": [ - 4921 + 4993 ], "player_steam_id": [ - 180 + 252 ], "reason": [ - 78 + 80 ], "remove_sanction_date": [ - 4376 + 4493 ], "sanctioned_by_steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "player_sanctions_min_order_by": { "created_at": [ - 2829 + 2946 ], "deleted_at": [ - 2829 + 2946 ], "id": [ - 2829 + 2946 ], "player_steam_id": [ - 2829 + 2946 ], "reason": [ - 2829 + 2946 ], "remove_sanction_date": [ - 2829 + 2946 ], "sanctioned_by_steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "player_sanctions_mutation_response": { "affected_rows": [ - 38 + 40 ], "returning": [ - 3485 + 3602 ], "__typename": [ - 78 + 80 ] }, "player_sanctions_on_conflict": { "constraint": [ - 3495 + 3612 ], "update_columns": [ - 3518 + 3635 ], "where": [ - 3494 + 3611 ], "__typename": [ - 78 + 80 ] }, "player_sanctions_order_by": { "created_at": [ - 2829 + 2946 ], "deleted_at": [ - 2829 + 2946 ], "e_sanction_type": [ - 1016 + 1133 ], "id": [ - 2829 + 2946 ], "player": [ - 3800 + 3917 ], "player_steam_id": [ - 2829 + 2946 ], "reason": [ - 2829 + 2946 ], "remove_sanction_date": [ - 2829 + 2946 ], "sanctioned_by": [ - 3800 + 3917 ], "sanctioned_by_steam_id": [ - 2829 + 2946 ], "type": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "player_sanctions_pk_columns_input": { "created_at": [ - 4376 + 4493 ], "id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "player_sanctions_select_column": {}, "player_sanctions_set_input": { "created_at": [ - 4376 + 4493 ], "deleted_at": [ - 4376 + 4493 ], "id": [ - 4921 + 4993 ], "player_steam_id": [ - 180 + 252 ], "reason": [ - 78 + 80 ], "remove_sanction_date": [ - 4376 + 4493 ], "sanctioned_by_steam_id": [ - 180 + 252 ], "type": [ - 1008 + 1125 ], "__typename": [ - 78 + 80 ] }, "player_sanctions_stddev_fields": { "player_steam_id": [ - 29 + 31 ], "sanctioned_by_steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "player_sanctions_stddev_order_by": { "player_steam_id": [ - 2829 + 2946 ], "sanctioned_by_steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "player_sanctions_stddev_pop_fields": { "player_steam_id": [ - 29 + 31 ], "sanctioned_by_steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "player_sanctions_stddev_pop_order_by": { "player_steam_id": [ - 2829 + 2946 ], "sanctioned_by_steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "player_sanctions_stddev_samp_fields": { "player_steam_id": [ - 29 + 31 ], "sanctioned_by_steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "player_sanctions_stddev_samp_order_by": { "player_steam_id": [ - 2829 + 2946 ], "sanctioned_by_steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "player_sanctions_stream_cursor_input": { "initial_value": [ - 3515 + 3632 ], "ordering": [ - 236 + 308 ], "__typename": [ - 78 + 80 ] }, "player_sanctions_stream_cursor_value_input": { "created_at": [ - 4376 + 4493 ], "deleted_at": [ - 4376 + 4493 ], "id": [ - 4921 + 4993 ], "player_steam_id": [ - 180 + 252 ], "reason": [ - 78 + 80 ], "remove_sanction_date": [ - 4376 + 4493 ], "sanctioned_by_steam_id": [ - 180 + 252 ], "type": [ - 1008 + 1125 ], "__typename": [ - 78 + 80 ] }, "player_sanctions_sum_fields": { "player_steam_id": [ - 180 + 252 ], "sanctioned_by_steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "player_sanctions_sum_order_by": { "player_steam_id": [ - 2829 + 2946 ], "sanctioned_by_steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "player_sanctions_update_column": {}, "player_sanctions_updates": { "_inc": [ - 3496 + 3613 ], "_set": [ - 3507 + 3624 ], "where": [ - 3494 + 3611 ], "__typename": [ - 78 + 80 ] }, "player_sanctions_var_pop_fields": { "player_steam_id": [ - 29 + 31 ], "sanctioned_by_steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "player_sanctions_var_pop_order_by": { "player_steam_id": [ - 2829 + 2946 ], "sanctioned_by_steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "player_sanctions_var_samp_fields": { "player_steam_id": [ - 29 + 31 ], "sanctioned_by_steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "player_sanctions_var_samp_order_by": { "player_steam_id": [ - 2829 + 2946 ], "sanctioned_by_steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "player_sanctions_variance_fields": { "player_steam_id": [ - 29 + 31 ], "sanctioned_by_steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "player_sanctions_variance_order_by": { "player_steam_id": [ - 2829 + 2946 ], "sanctioned_by_steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "player_season_stats": { "assists": [ - 180 + 252 ], "deaths": [ - 180 + 252 ], "headshot_percentage": [ - 1547 + 1664 ], "headshots": [ - 180 + 252 ], "kills": [ - 180 + 252 ], "player": [ - 3787 + 3904 ], "player_steam_id": [ - 180 + 252 ], "season": [ - 3846 + 3963 ], "season_id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "player_season_stats_aggregate": { "aggregate": [ - 3540 + 3657 ], "nodes": [ - 3526 + 3643 ], "__typename": [ - 78 + 80 ] }, "player_season_stats_aggregate_bool_exp": { "avg": [ - 3529 + 3646 ], "corr": [ - 3530 + 3647 ], "count": [ - 3532 + 3649 ], "covar_samp": [ - 3533 + 3650 ], "max": [ - 3535 + 3652 ], "min": [ - 3536 + 3653 ], "stddev_samp": [ - 3537 + 3654 ], "sum": [ - 3538 + 3655 ], "var_samp": [ - 3539 + 3656 ], "__typename": [ - 78 + 80 ] }, "player_season_stats_aggregate_bool_exp_avg": { "arguments": [ - 3558 + 3675 ], "distinct": [ - 3 + 5 ], "filter": [ - 3545 + 3662 ], "predicate": [ - 1548 + 1665 ], "__typename": [ - 78 + 80 ] }, "player_season_stats_aggregate_bool_exp_corr": { "arguments": [ - 3531 + 3648 ], "distinct": [ - 3 + 5 ], "filter": [ - 3545 + 3662 ], "predicate": [ - 1548 + 1665 ], "__typename": [ - 78 + 80 ] }, "player_season_stats_aggregate_bool_exp_corr_arguments": { "X": [ - 3559 + 3676 ], "Y": [ - 3559 + 3676 ], "__typename": [ - 78 + 80 ] }, "player_season_stats_aggregate_bool_exp_count": { "arguments": [ - 3557 + 3674 ], "distinct": [ - 3 + 5 ], "filter": [ - 3545 + 3662 ], "predicate": [ - 39 + 41 ], "__typename": [ - 78 + 80 ] }, "player_season_stats_aggregate_bool_exp_covar_samp": { "arguments": [ - 3534 + 3651 ], "distinct": [ - 3 + 5 ], "filter": [ - 3545 + 3662 ], "predicate": [ - 1548 + 1665 ], "__typename": [ - 78 + 80 ] }, "player_season_stats_aggregate_bool_exp_covar_samp_arguments": { "X": [ - 3560 + 3677 ], "Y": [ - 3560 + 3677 ], "__typename": [ - 78 + 80 ] }, "player_season_stats_aggregate_bool_exp_max": { "arguments": [ - 3561 + 3678 ], "distinct": [ - 3 + 5 ], "filter": [ - 3545 + 3662 ], "predicate": [ - 1548 + 1665 ], "__typename": [ - 78 + 80 ] }, "player_season_stats_aggregate_bool_exp_min": { "arguments": [ - 3562 + 3679 ], "distinct": [ - 3 + 5 ], "filter": [ - 3545 + 3662 ], "predicate": [ - 1548 + 1665 ], "__typename": [ - 78 + 80 ] }, "player_season_stats_aggregate_bool_exp_stddev_samp": { "arguments": [ - 3563 + 3680 ], "distinct": [ - 3 + 5 ], "filter": [ - 3545 + 3662 ], "predicate": [ - 1548 + 1665 ], "__typename": [ - 78 + 80 ] }, "player_season_stats_aggregate_bool_exp_sum": { "arguments": [ - 3564 + 3681 ], "distinct": [ - 3 + 5 ], "filter": [ - 3545 + 3662 ], "predicate": [ - 1548 + 1665 ], "__typename": [ - 78 + 80 ] }, "player_season_stats_aggregate_bool_exp_var_samp": { "arguments": [ - 3565 + 3682 ], "distinct": [ - 3 + 5 ], "filter": [ - 3545 + 3662 ], "predicate": [ - 1548 + 1665 ], "__typename": [ - 78 + 80 ] }, "player_season_stats_aggregate_fields": { "avg": [ - 3543 + 3660 ], "count": [ - 38, + 40, { "columns": [ - 3557, + 3674, "[player_season_stats_select_column!]" ], "distinct": [ - 3 + 5 ] } ], "max": [ - 3549 + 3666 ], "min": [ - 3551 + 3668 ], "stddev": [ - 3567 + 3684 ], "stddev_pop": [ - 3569 + 3686 ], "stddev_samp": [ - 3571 + 3688 ], "sum": [ - 3575 + 3692 ], "var_pop": [ - 3579 + 3696 ], "var_samp": [ - 3581 + 3698 ], "variance": [ - 3583 + 3700 ], "__typename": [ - 78 + 80 ] }, "player_season_stats_aggregate_order_by": { "avg": [ - 3544 + 3661 ], "count": [ - 2829 + 2946 ], "max": [ - 3550 + 3667 ], "min": [ - 3552 + 3669 ], "stddev": [ - 3568 + 3685 ], "stddev_pop": [ - 3570 + 3687 ], "stddev_samp": [ - 3572 + 3689 ], "sum": [ - 3576 + 3693 ], "var_pop": [ - 3580 + 3697 ], "var_samp": [ - 3582 + 3699 ], "variance": [ - 3584 + 3701 ], "__typename": [ - 78 + 80 ] }, "player_season_stats_arr_rel_insert_input": { "data": [ - 3548 + 3665 ], "on_conflict": [ - 3554 + 3671 ], "__typename": [ - 78 + 80 ] }, "player_season_stats_avg_fields": { "assists": [ - 29 + 31 ], "deaths": [ - 29 + 31 ], "headshot_percentage": [ - 29 + 31 ], "headshots": [ - 29 + 31 ], "kills": [ - 29 + 31 ], "player_steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "player_season_stats_avg_order_by": { "assists": [ - 2829 + 2946 ], "deaths": [ - 2829 + 2946 ], "headshot_percentage": [ - 2829 + 2946 ], "headshots": [ - 2829 + 2946 ], "kills": [ - 2829 + 2946 ], "player_steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "player_season_stats_bool_exp": { "_and": [ - 3545 + 3662 ], "_not": [ - 3545 + 3662 ], "_or": [ - 3545 + 3662 ], "assists": [ - 182 + 254 ], "deaths": [ - 182 + 254 ], "headshot_percentage": [ - 1548 + 1665 ], "headshots": [ - 182 + 254 ], "kills": [ - 182 + 254 ], "player": [ - 3791 + 3908 ], "player_steam_id": [ - 182 + 254 ], "season": [ - 3850 + 3967 ], "season_id": [ - 4923 + 4995 ], "__typename": [ - 78 + 80 ] }, "player_season_stats_constraint": {}, "player_season_stats_inc_input": { "assists": [ - 180 + 252 ], "deaths": [ - 180 + 252 ], "headshot_percentage": [ - 1547 + 1664 ], "headshots": [ - 180 + 252 ], "kills": [ - 180 + 252 ], "player_steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "player_season_stats_insert_input": { "assists": [ - 180 + 252 ], "deaths": [ - 180 + 252 ], "headshot_percentage": [ - 1547 + 1664 ], "headshots": [ - 180 + 252 ], "kills": [ - 180 + 252 ], "player": [ - 3798 + 3915 ], "player_steam_id": [ - 180 + 252 ], "season": [ - 3857 + 3974 ], "season_id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "player_season_stats_max_fields": { "assists": [ - 180 + 252 ], "deaths": [ - 180 + 252 ], "headshot_percentage": [ - 1547 + 1664 ], "headshots": [ - 180 + 252 ], "kills": [ - 180 + 252 ], "player_steam_id": [ - 180 + 252 ], "season_id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "player_season_stats_max_order_by": { "assists": [ - 2829 + 2946 ], "deaths": [ - 2829 + 2946 ], "headshot_percentage": [ - 2829 + 2946 ], "headshots": [ - 2829 + 2946 ], "kills": [ - 2829 + 2946 ], "player_steam_id": [ - 2829 + 2946 ], "season_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "player_season_stats_min_fields": { "assists": [ - 180 + 252 ], "deaths": [ - 180 + 252 ], "headshot_percentage": [ - 1547 + 1664 ], "headshots": [ - 180 + 252 ], "kills": [ - 180 + 252 ], "player_steam_id": [ - 180 + 252 ], "season_id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "player_season_stats_min_order_by": { "assists": [ - 2829 + 2946 ], "deaths": [ - 2829 + 2946 ], "headshot_percentage": [ - 2829 + 2946 ], "headshots": [ - 2829 + 2946 ], "kills": [ - 2829 + 2946 ], "player_steam_id": [ - 2829 + 2946 ], "season_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "player_season_stats_mutation_response": { "affected_rows": [ - 38 + 40 ], "returning": [ - 3526 + 3643 ], "__typename": [ - 78 + 80 ] }, "player_season_stats_on_conflict": { "constraint": [ - 3546 + 3663 ], "update_columns": [ - 3577 + 3694 ], "where": [ - 3545 + 3662 ], "__typename": [ - 78 + 80 ] }, "player_season_stats_order_by": { "assists": [ - 2829 + 2946 ], "deaths": [ - 2829 + 2946 ], "headshot_percentage": [ - 2829 + 2946 ], "headshots": [ - 2829 + 2946 ], "kills": [ - 2829 + 2946 ], "player": [ - 3800 + 3917 ], "player_steam_id": [ - 2829 + 2946 ], "season": [ - 3859 + 3976 ], "season_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "player_season_stats_pk_columns_input": { "player_steam_id": [ - 180 + 252 ], "season_id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "player_season_stats_select_column": {}, @@ -81766,10175 +83993,10175 @@ export default { "player_season_stats_select_column_player_season_stats_aggregate_bool_exp_var_samp_arguments_columns": {}, "player_season_stats_set_input": { "assists": [ - 180 + 252 ], "deaths": [ - 180 + 252 ], "headshot_percentage": [ - 1547 + 1664 ], "headshots": [ - 180 + 252 ], "kills": [ - 180 + 252 ], "player_steam_id": [ - 180 + 252 ], "season_id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "player_season_stats_stddev_fields": { "assists": [ - 29 + 31 ], "deaths": [ - 29 + 31 ], "headshot_percentage": [ - 29 + 31 ], "headshots": [ - 29 + 31 ], "kills": [ - 29 + 31 ], "player_steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "player_season_stats_stddev_order_by": { "assists": [ - 2829 + 2946 ], "deaths": [ - 2829 + 2946 ], "headshot_percentage": [ - 2829 + 2946 ], "headshots": [ - 2829 + 2946 ], "kills": [ - 2829 + 2946 ], "player_steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "player_season_stats_stddev_pop_fields": { "assists": [ - 29 + 31 ], "deaths": [ - 29 + 31 ], "headshot_percentage": [ - 29 + 31 ], "headshots": [ - 29 + 31 ], "kills": [ - 29 + 31 ], "player_steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "player_season_stats_stddev_pop_order_by": { "assists": [ - 2829 + 2946 ], "deaths": [ - 2829 + 2946 ], "headshot_percentage": [ - 2829 + 2946 ], "headshots": [ - 2829 + 2946 ], "kills": [ - 2829 + 2946 ], "player_steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "player_season_stats_stddev_samp_fields": { "assists": [ - 29 + 31 ], "deaths": [ - 29 + 31 ], "headshot_percentage": [ - 29 + 31 ], "headshots": [ - 29 + 31 ], "kills": [ - 29 + 31 ], "player_steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "player_season_stats_stddev_samp_order_by": { "assists": [ - 2829 + 2946 ], "deaths": [ - 2829 + 2946 ], "headshot_percentage": [ - 2829 + 2946 ], "headshots": [ - 2829 + 2946 ], "kills": [ - 2829 + 2946 ], "player_steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "player_season_stats_stream_cursor_input": { "initial_value": [ - 3574 + 3691 ], "ordering": [ - 236 + 308 ], "__typename": [ - 78 + 80 ] }, "player_season_stats_stream_cursor_value_input": { "assists": [ - 180 + 252 ], "deaths": [ - 180 + 252 ], "headshot_percentage": [ - 1547 + 1664 ], "headshots": [ - 180 + 252 ], "kills": [ - 180 + 252 ], "player_steam_id": [ - 180 + 252 ], "season_id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "player_season_stats_sum_fields": { "assists": [ - 180 + 252 ], "deaths": [ - 180 + 252 ], "headshot_percentage": [ - 1547 + 1664 ], "headshots": [ - 180 + 252 ], "kills": [ - 180 + 252 ], "player_steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "player_season_stats_sum_order_by": { "assists": [ - 2829 + 2946 ], "deaths": [ - 2829 + 2946 ], "headshot_percentage": [ - 2829 + 2946 ], "headshots": [ - 2829 + 2946 ], "kills": [ - 2829 + 2946 ], "player_steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "player_season_stats_update_column": {}, "player_season_stats_updates": { "_inc": [ - 3547 + 3664 ], "_set": [ - 3566 + 3683 ], "where": [ - 3545 + 3662 ], "__typename": [ - 78 + 80 ] }, "player_season_stats_var_pop_fields": { "assists": [ - 29 + 31 ], "deaths": [ - 29 + 31 ], "headshot_percentage": [ - 29 + 31 ], "headshots": [ - 29 + 31 ], "kills": [ - 29 + 31 ], "player_steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "player_season_stats_var_pop_order_by": { "assists": [ - 2829 + 2946 ], "deaths": [ - 2829 + 2946 ], "headshot_percentage": [ - 2829 + 2946 ], "headshots": [ - 2829 + 2946 ], "kills": [ - 2829 + 2946 ], "player_steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "player_season_stats_var_samp_fields": { "assists": [ - 29 + 31 ], "deaths": [ - 29 + 31 ], "headshot_percentage": [ - 29 + 31 ], "headshots": [ - 29 + 31 ], "kills": [ - 29 + 31 ], "player_steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "player_season_stats_var_samp_order_by": { "assists": [ - 2829 + 2946 ], "deaths": [ - 2829 + 2946 ], "headshot_percentage": [ - 2829 + 2946 ], "headshots": [ - 2829 + 2946 ], "kills": [ - 2829 + 2946 ], "player_steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "player_season_stats_variance_fields": { "assists": [ - 29 + 31 ], "deaths": [ - 29 + 31 ], "headshot_percentage": [ - 29 + 31 ], "headshots": [ - 29 + 31 ], "kills": [ - 29 + 31 ], "player_steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "player_season_stats_variance_order_by": { "assists": [ - 2829 + 2946 ], "deaths": [ - 2829 + 2946 ], "headshot_percentage": [ - 2829 + 2946 ], "headshots": [ - 2829 + 2946 ], "kills": [ - 2829 + 2946 ], "player_steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "player_stats": { "assists": [ - 180 + 252 ], "deaths": [ - 180 + 252 ], "headshot_percentage": [ - 1547 + 1664 ], "headshots": [ - 180 + 252 ], "kills": [ - 180 + 252 ], "player": [ - 3787 + 3904 ], "player_steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "player_stats_aggregate": { "aggregate": [ - 3587 + 3704 ], "nodes": [ - 3585 + 3702 ], "__typename": [ - 78 + 80 ] }, "player_stats_aggregate_fields": { "avg": [ - 3588 + 3705 ], "count": [ - 38, + 40, { "columns": [ - 3600, + 3717, "[player_stats_select_column!]" ], "distinct": [ - 3 + 5 ] } ], "max": [ - 3593 + 3710 ], "min": [ - 3594 + 3711 ], "stddev": [ - 3602 + 3719 ], "stddev_pop": [ - 3603 + 3720 ], "stddev_samp": [ - 3604 + 3721 ], "sum": [ - 3607 + 3724 ], "var_pop": [ - 3610 + 3727 ], "var_samp": [ - 3611 + 3728 ], "variance": [ - 3612 + 3729 ], "__typename": [ - 78 + 80 ] }, "player_stats_avg_fields": { "assists": [ - 29 + 31 ], "deaths": [ - 29 + 31 ], "headshot_percentage": [ - 29 + 31 ], "headshots": [ - 29 + 31 ], "kills": [ - 29 + 31 ], "player_steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "player_stats_bool_exp": { "_and": [ - 3589 + 3706 ], "_not": [ - 3589 + 3706 ], "_or": [ - 3589 + 3706 ], "assists": [ - 182 + 254 ], "deaths": [ - 182 + 254 ], "headshot_percentage": [ - 1548 + 1665 ], "headshots": [ - 182 + 254 ], "kills": [ - 182 + 254 ], "player": [ - 3791 + 3908 ], "player_steam_id": [ - 182 + 254 ], "__typename": [ - 78 + 80 ] }, "player_stats_constraint": {}, "player_stats_inc_input": { "assists": [ - 180 + 252 ], "deaths": [ - 180 + 252 ], "headshot_percentage": [ - 1547 + 1664 ], "headshots": [ - 180 + 252 ], "kills": [ - 180 + 252 ], "player_steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "player_stats_insert_input": { "assists": [ - 180 + 252 ], "deaths": [ - 180 + 252 ], "headshot_percentage": [ - 1547 + 1664 ], "headshots": [ - 180 + 252 ], "kills": [ - 180 + 252 ], "player": [ - 3798 + 3915 ], "player_steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "player_stats_max_fields": { "assists": [ - 180 + 252 ], "deaths": [ - 180 + 252 ], "headshot_percentage": [ - 1547 + 1664 ], "headshots": [ - 180 + 252 ], "kills": [ - 180 + 252 ], "player_steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "player_stats_min_fields": { "assists": [ - 180 + 252 ], "deaths": [ - 180 + 252 ], "headshot_percentage": [ - 1547 + 1664 ], "headshots": [ - 180 + 252 ], "kills": [ - 180 + 252 ], "player_steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "player_stats_mutation_response": { "affected_rows": [ - 38 + 40 ], "returning": [ - 3585 + 3702 ], "__typename": [ - 78 + 80 ] }, "player_stats_obj_rel_insert_input": { "data": [ - 3592 + 3709 ], "on_conflict": [ - 3597 + 3714 ], "__typename": [ - 78 + 80 ] }, "player_stats_on_conflict": { "constraint": [ - 3590 + 3707 ], "update_columns": [ - 3608 + 3725 ], "where": [ - 3589 + 3706 ], "__typename": [ - 78 + 80 ] }, "player_stats_order_by": { "assists": [ - 2829 + 2946 ], "deaths": [ - 2829 + 2946 ], "headshot_percentage": [ - 2829 + 2946 ], "headshots": [ - 2829 + 2946 ], "kills": [ - 2829 + 2946 ], "player": [ - 3800 + 3917 ], "player_steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "player_stats_pk_columns_input": { "player_steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "player_stats_select_column": {}, "player_stats_set_input": { "assists": [ - 180 + 252 ], "deaths": [ - 180 + 252 ], "headshot_percentage": [ - 1547 + 1664 ], "headshots": [ - 180 + 252 ], "kills": [ - 180 + 252 ], "player_steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "player_stats_stddev_fields": { "assists": [ - 29 + 31 ], "deaths": [ - 29 + 31 ], "headshot_percentage": [ - 29 + 31 ], "headshots": [ - 29 + 31 ], "kills": [ - 29 + 31 ], "player_steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "player_stats_stddev_pop_fields": { "assists": [ - 29 + 31 ], "deaths": [ - 29 + 31 ], "headshot_percentage": [ - 29 + 31 ], "headshots": [ - 29 + 31 ], "kills": [ - 29 + 31 ], "player_steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "player_stats_stddev_samp_fields": { "assists": [ - 29 + 31 ], "deaths": [ - 29 + 31 ], "headshot_percentage": [ - 29 + 31 ], "headshots": [ - 29 + 31 ], "kills": [ - 29 + 31 ], "player_steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "player_stats_stream_cursor_input": { "initial_value": [ - 3606 + 3723 ], "ordering": [ - 236 + 308 ], "__typename": [ - 78 + 80 ] }, "player_stats_stream_cursor_value_input": { "assists": [ - 180 + 252 ], "deaths": [ - 180 + 252 ], "headshot_percentage": [ - 1547 + 1664 ], "headshots": [ - 180 + 252 ], "kills": [ - 180 + 252 ], "player_steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "player_stats_sum_fields": { "assists": [ - 180 + 252 ], "deaths": [ - 180 + 252 ], "headshot_percentage": [ - 1547 + 1664 ], "headshots": [ - 180 + 252 ], "kills": [ - 180 + 252 ], "player_steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "player_stats_update_column": {}, "player_stats_updates": { "_inc": [ - 3591 + 3708 ], "_set": [ - 3601 + 3718 ], "where": [ - 3589 + 3706 ], "__typename": [ - 78 + 80 ] }, "player_stats_var_pop_fields": { "assists": [ - 29 + 31 ], "deaths": [ - 29 + 31 ], "headshot_percentage": [ - 29 + 31 ], "headshots": [ - 29 + 31 ], "kills": [ - 29 + 31 ], "player_steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "player_stats_var_samp_fields": { "assists": [ - 29 + 31 ], "deaths": [ - 29 + 31 ], "headshot_percentage": [ - 29 + 31 ], "headshots": [ - 29 + 31 ], "kills": [ - 29 + 31 ], "player_steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "player_stats_variance_fields": { "assists": [ - 29 + 31 ], "deaths": [ - 29 + 31 ], "headshot_percentage": [ - 29 + 31 ], "headshots": [ - 29 + 31 ], "kills": [ - 29 + 31 ], "player_steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "player_steam_bot_friend": { "bot_steam_account_id": [ - 4921 + 4993 ], "bot_steamid64": [ - 180 + 252 ], "created_at": [ - 4376 + 4493 ], "friended_at": [ - 4376 + 4493 ], "last_presence_state": [ - 1700, + 1817, { "path": [ - 78 + 80 ] } ], "player": [ - 3787 + 3904 ], "status": [ - 78 + 80 ], "steam_id": [ - 180 + 252 ], "updated_at": [ - 4376 + 4493 ], "__typename": [ - 78 + 80 ] }, "player_steam_bot_friend_aggregate": { "aggregate": [ - 3615 + 3732 ], "nodes": [ - 3613 + 3730 ], "__typename": [ - 78 + 80 ] }, "player_steam_bot_friend_aggregate_fields": { "avg": [ - 3617 + 3734 ], "count": [ - 38, + 40, { "columns": [ - 3632, + 3749, "[player_steam_bot_friend_select_column!]" ], "distinct": [ - 3 + 5 ] } ], "max": [ - 3625 + 3742 ], "min": [ - 3626 + 3743 ], "stddev": [ - 3634 + 3751 ], "stddev_pop": [ - 3635 + 3752 ], "stddev_samp": [ - 3636 + 3753 ], "sum": [ - 3639 + 3756 ], "var_pop": [ - 3642 + 3759 ], "var_samp": [ - 3643 + 3760 ], "variance": [ - 3644 + 3761 ], "__typename": [ - 78 + 80 ] }, "player_steam_bot_friend_append_input": { "last_presence_state": [ - 1700 + 1817 ], "__typename": [ - 78 + 80 ] }, "player_steam_bot_friend_avg_fields": { "bot_steamid64": [ - 29 + 31 ], "steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "player_steam_bot_friend_bool_exp": { "_and": [ - 3618 + 3735 ], "_not": [ - 3618 + 3735 ], "_or": [ - 3618 + 3735 ], "bot_steam_account_id": [ - 4923 + 4995 ], "bot_steamid64": [ - 182 + 254 ], "created_at": [ - 4377 + 4494 ], "friended_at": [ - 4377 + 4494 ], "last_presence_state": [ - 1702 + 1819 ], "player": [ - 3791 + 3908 ], "status": [ - 80 + 82 ], "steam_id": [ - 182 + 254 ], "updated_at": [ - 4377 + 4494 ], "__typename": [ - 78 + 80 ] }, "player_steam_bot_friend_constraint": {}, "player_steam_bot_friend_delete_at_path_input": { "last_presence_state": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "player_steam_bot_friend_delete_elem_input": { "last_presence_state": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "player_steam_bot_friend_delete_key_input": { "last_presence_state": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "player_steam_bot_friend_inc_input": { "bot_steamid64": [ - 180 + 252 ], "steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "player_steam_bot_friend_insert_input": { "bot_steam_account_id": [ - 4921 + 4993 ], "bot_steamid64": [ - 180 + 252 ], "created_at": [ - 4376 + 4493 ], "friended_at": [ - 4376 + 4493 ], "last_presence_state": [ - 1700 + 1817 ], "player": [ - 3798 + 3915 ], "status": [ - 78 + 80 ], "steam_id": [ - 180 + 252 ], "updated_at": [ - 4376 + 4493 ], "__typename": [ - 78 + 80 ] }, "player_steam_bot_friend_max_fields": { "bot_steam_account_id": [ - 4921 + 4993 ], "bot_steamid64": [ - 180 + 252 ], "created_at": [ - 4376 + 4493 ], "friended_at": [ - 4376 + 4493 ], "status": [ - 78 + 80 ], "steam_id": [ - 180 + 252 ], "updated_at": [ - 4376 + 4493 ], "__typename": [ - 78 + 80 ] }, "player_steam_bot_friend_min_fields": { "bot_steam_account_id": [ - 4921 + 4993 ], "bot_steamid64": [ - 180 + 252 ], "created_at": [ - 4376 + 4493 ], "friended_at": [ - 4376 + 4493 ], "status": [ - 78 + 80 ], "steam_id": [ - 180 + 252 ], "updated_at": [ - 4376 + 4493 ], "__typename": [ - 78 + 80 ] }, "player_steam_bot_friend_mutation_response": { "affected_rows": [ - 38 + 40 ], "returning": [ - 3613 + 3730 ], "__typename": [ - 78 + 80 ] }, "player_steam_bot_friend_on_conflict": { "constraint": [ - 3619 + 3736 ], "update_columns": [ - 3640 + 3757 ], "where": [ - 3618 + 3735 ], "__typename": [ - 78 + 80 ] }, "player_steam_bot_friend_order_by": { "bot_steam_account_id": [ - 2829 + 2946 ], "bot_steamid64": [ - 2829 + 2946 ], "created_at": [ - 2829 + 2946 ], "friended_at": [ - 2829 + 2946 ], "last_presence_state": [ - 2829 + 2946 ], "player": [ - 3800 + 3917 ], "status": [ - 2829 + 2946 ], "steam_id": [ - 2829 + 2946 ], "updated_at": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "player_steam_bot_friend_pk_columns_input": { "steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "player_steam_bot_friend_prepend_input": { "last_presence_state": [ - 1700 + 1817 ], "__typename": [ - 78 + 80 ] }, "player_steam_bot_friend_select_column": {}, "player_steam_bot_friend_set_input": { "bot_steam_account_id": [ - 4921 + 4993 ], "bot_steamid64": [ - 180 + 252 ], "created_at": [ - 4376 + 4493 ], "friended_at": [ - 4376 + 4493 ], "last_presence_state": [ - 1700 + 1817 ], "status": [ - 78 + 80 ], "steam_id": [ - 180 + 252 ], "updated_at": [ - 4376 + 4493 ], "__typename": [ - 78 + 80 ] }, "player_steam_bot_friend_stddev_fields": { "bot_steamid64": [ - 29 + 31 ], "steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "player_steam_bot_friend_stddev_pop_fields": { "bot_steamid64": [ - 29 + 31 ], "steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "player_steam_bot_friend_stddev_samp_fields": { "bot_steamid64": [ - 29 + 31 ], "steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "player_steam_bot_friend_stream_cursor_input": { "initial_value": [ - 3638 + 3755 ], "ordering": [ - 236 + 308 ], "__typename": [ - 78 + 80 ] }, "player_steam_bot_friend_stream_cursor_value_input": { "bot_steam_account_id": [ - 4921 + 4993 ], "bot_steamid64": [ - 180 + 252 ], "created_at": [ - 4376 + 4493 ], "friended_at": [ - 4376 + 4493 ], "last_presence_state": [ - 1700 + 1817 ], "status": [ - 78 + 80 ], "steam_id": [ - 180 + 252 ], "updated_at": [ - 4376 + 4493 ], "__typename": [ - 78 + 80 ] }, "player_steam_bot_friend_sum_fields": { "bot_steamid64": [ - 180 + 252 ], "steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "player_steam_bot_friend_update_column": {}, "player_steam_bot_friend_updates": { "_append": [ - 3616 + 3733 ], "_delete_at_path": [ - 3620 + 3737 ], "_delete_elem": [ - 3621 + 3738 ], "_delete_key": [ - 3622 + 3739 ], "_inc": [ - 3623 + 3740 ], "_prepend": [ - 3631 + 3748 ], "_set": [ - 3633 + 3750 ], "where": [ - 3618 + 3735 ], "__typename": [ - 78 + 80 ] }, "player_steam_bot_friend_var_pop_fields": { "bot_steamid64": [ - 29 + 31 ], "steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "player_steam_bot_friend_var_samp_fields": { "bot_steamid64": [ - 29 + 31 ], "steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "player_steam_bot_friend_variance_fields": { "bot_steamid64": [ - 29 + 31 ], "steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "player_steam_match_auth": { "auth_code": [ - 78 + 80 ], "created_at": [ - 4376 + 4493 ], "last_error": [ - 78 + 80 ], "last_known_share_code": [ - 78 + 80 ], "last_polled_at": [ - 4376 + 4493 ], "player": [ - 3787 + 3904 ], "steam_id": [ - 180 + 252 ], "updated_at": [ - 4376 + 4493 ], "__typename": [ - 78 + 80 ] }, "player_steam_match_auth_aggregate": { "aggregate": [ - 3647 + 3764 ], "nodes": [ - 3645 + 3762 ], "__typename": [ - 78 + 80 ] }, "player_steam_match_auth_aggregate_fields": { "avg": [ - 3648 + 3765 ], "count": [ - 38, + 40, { "columns": [ - 3659, + 3776, "[player_steam_match_auth_select_column!]" ], "distinct": [ - 3 + 5 ] } ], "max": [ - 3653 + 3770 ], "min": [ - 3654 + 3771 ], "stddev": [ - 3661 + 3778 ], "stddev_pop": [ - 3662 + 3779 ], "stddev_samp": [ - 3663 + 3780 ], "sum": [ - 3666 + 3783 ], "var_pop": [ - 3669 + 3786 ], "var_samp": [ - 3670 + 3787 ], "variance": [ - 3671 + 3788 ], "__typename": [ - 78 + 80 ] }, "player_steam_match_auth_avg_fields": { "steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "player_steam_match_auth_bool_exp": { "_and": [ - 3649 + 3766 ], "_not": [ - 3649 + 3766 ], "_or": [ - 3649 + 3766 ], "auth_code": [ - 80 + 82 ], "created_at": [ - 4377 + 4494 ], "last_error": [ - 80 + 82 ], "last_known_share_code": [ - 80 + 82 ], "last_polled_at": [ - 4377 + 4494 ], "player": [ - 3791 + 3908 ], "steam_id": [ - 182 + 254 ], "updated_at": [ - 4377 + 4494 ], "__typename": [ - 78 + 80 ] }, "player_steam_match_auth_constraint": {}, "player_steam_match_auth_inc_input": { "steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "player_steam_match_auth_insert_input": { "auth_code": [ - 78 + 80 ], "created_at": [ - 4376 + 4493 ], "last_error": [ - 78 + 80 ], "last_known_share_code": [ - 78 + 80 ], "last_polled_at": [ - 4376 + 4493 ], "player": [ - 3798 + 3915 ], "steam_id": [ - 180 + 252 ], "updated_at": [ - 4376 + 4493 ], "__typename": [ - 78 + 80 ] }, "player_steam_match_auth_max_fields": { "auth_code": [ - 78 + 80 ], "created_at": [ - 4376 + 4493 ], "last_error": [ - 78 + 80 ], "last_known_share_code": [ - 78 + 80 ], "last_polled_at": [ - 4376 + 4493 ], "steam_id": [ - 180 + 252 ], "updated_at": [ - 4376 + 4493 ], "__typename": [ - 78 + 80 ] }, "player_steam_match_auth_min_fields": { "auth_code": [ - 78 + 80 ], "created_at": [ - 4376 + 4493 ], "last_error": [ - 78 + 80 ], "last_known_share_code": [ - 78 + 80 ], "last_polled_at": [ - 4376 + 4493 ], "steam_id": [ - 180 + 252 ], "updated_at": [ - 4376 + 4493 ], "__typename": [ - 78 + 80 ] }, "player_steam_match_auth_mutation_response": { "affected_rows": [ - 38 + 40 ], "returning": [ - 3645 + 3762 ], "__typename": [ - 78 + 80 ] }, "player_steam_match_auth_on_conflict": { "constraint": [ - 3650 + 3767 ], "update_columns": [ - 3667 + 3784 ], "where": [ - 3649 + 3766 ], "__typename": [ - 78 + 80 ] }, "player_steam_match_auth_order_by": { "auth_code": [ - 2829 + 2946 ], "created_at": [ - 2829 + 2946 ], "last_error": [ - 2829 + 2946 ], "last_known_share_code": [ - 2829 + 2946 ], "last_polled_at": [ - 2829 + 2946 ], "player": [ - 3800 + 3917 ], "steam_id": [ - 2829 + 2946 ], "updated_at": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "player_steam_match_auth_pk_columns_input": { "steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "player_steam_match_auth_select_column": {}, "player_steam_match_auth_set_input": { "auth_code": [ - 78 + 80 ], "created_at": [ - 4376 + 4493 ], "last_error": [ - 78 + 80 ], "last_known_share_code": [ - 78 + 80 ], "last_polled_at": [ - 4376 + 4493 ], "steam_id": [ - 180 + 252 ], "updated_at": [ - 4376 + 4493 ], "__typename": [ - 78 + 80 ] }, "player_steam_match_auth_stddev_fields": { "steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "player_steam_match_auth_stddev_pop_fields": { "steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "player_steam_match_auth_stddev_samp_fields": { "steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "player_steam_match_auth_stream_cursor_input": { "initial_value": [ - 3665 + 3782 ], "ordering": [ - 236 + 308 ], "__typename": [ - 78 + 80 ] }, "player_steam_match_auth_stream_cursor_value_input": { "auth_code": [ - 78 + 80 ], "created_at": [ - 4376 + 4493 ], "last_error": [ - 78 + 80 ], "last_known_share_code": [ - 78 + 80 ], "last_polled_at": [ - 4376 + 4493 ], "steam_id": [ - 180 + 252 ], "updated_at": [ - 4376 + 4493 ], "__typename": [ - 78 + 80 ] }, "player_steam_match_auth_sum_fields": { "steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "player_steam_match_auth_update_column": {}, "player_steam_match_auth_updates": { "_inc": [ - 3651 + 3768 ], "_set": [ - 3660 + 3777 ], "where": [ - 3649 + 3766 ], "__typename": [ - 78 + 80 ] }, "player_steam_match_auth_var_pop_fields": { "steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "player_steam_match_auth_var_samp_fields": { "steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "player_steam_match_auth_variance_fields": { "steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "player_unused_utility": { "deleted_at": [ - 4376 + 4493 ], "match": [ - 2644 + 2761 ], "match_id": [ - 4921 + 4993 ], "match_map": [ - 2482 + 2599 ], "match_map_id": [ - 4921 + 4993 ], "player": [ - 3787 + 3904 ], "player_steam_id": [ - 180 + 252 ], "round": [ - 38 + 40 ], "unused": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "player_unused_utility_aggregate": { "aggregate": [ - 3676 + 3793 ], "nodes": [ - 3672 + 3789 ], "__typename": [ - 78 + 80 ] }, "player_unused_utility_aggregate_bool_exp": { "count": [ - 3675 + 3792 ], "__typename": [ - 78 + 80 ] }, "player_unused_utility_aggregate_bool_exp_count": { "arguments": [ - 3693 + 3810 ], "distinct": [ - 3 + 5 ], "filter": [ - 3681 + 3798 ], "predicate": [ - 39 + 41 ], "__typename": [ - 78 + 80 ] }, "player_unused_utility_aggregate_fields": { "avg": [ - 3679 + 3796 ], "count": [ - 38, + 40, { "columns": [ - 3693, + 3810, "[player_unused_utility_select_column!]" ], "distinct": [ - 3 + 5 ] } ], "max": [ - 3685 + 3802 ], "min": [ - 3687 + 3804 ], "stddev": [ - 3695 + 3812 ], "stddev_pop": [ - 3697 + 3814 ], "stddev_samp": [ - 3699 + 3816 ], "sum": [ - 3703 + 3820 ], "var_pop": [ - 3707 + 3824 ], "var_samp": [ - 3709 + 3826 ], "variance": [ - 3711 + 3828 ], "__typename": [ - 78 + 80 ] }, "player_unused_utility_aggregate_order_by": { "avg": [ - 3680 + 3797 ], "count": [ - 2829 + 2946 ], "max": [ - 3686 + 3803 ], "min": [ - 3688 + 3805 ], "stddev": [ - 3696 + 3813 ], "stddev_pop": [ - 3698 + 3815 ], "stddev_samp": [ - 3700 + 3817 ], "sum": [ - 3704 + 3821 ], "var_pop": [ - 3708 + 3825 ], "var_samp": [ - 3710 + 3827 ], "variance": [ - 3712 + 3829 ], "__typename": [ - 78 + 80 ] }, "player_unused_utility_arr_rel_insert_input": { "data": [ - 3684 + 3801 ], "on_conflict": [ - 3690 + 3807 ], "__typename": [ - 78 + 80 ] }, "player_unused_utility_avg_fields": { "player_steam_id": [ - 29 + 31 ], "round": [ - 29 + 31 ], "unused": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "player_unused_utility_avg_order_by": { "player_steam_id": [ - 2829 + 2946 ], "round": [ - 2829 + 2946 ], "unused": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "player_unused_utility_bool_exp": { "_and": [ - 3681 + 3798 ], "_not": [ - 3681 + 3798 ], "_or": [ - 3681 + 3798 ], "deleted_at": [ - 4377 + 4494 ], "match": [ - 2653 + 2770 ], "match_id": [ - 4923 + 4995 ], "match_map": [ - 2491 + 2608 ], "match_map_id": [ - 4923 + 4995 ], "player": [ - 3791 + 3908 ], "player_steam_id": [ - 182 + 254 ], "round": [ - 39 + 41 ], "unused": [ - 39 + 41 ], "__typename": [ - 78 + 80 ] }, "player_unused_utility_constraint": {}, "player_unused_utility_inc_input": { "player_steam_id": [ - 180 + 252 ], "round": [ - 38 + 40 ], "unused": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "player_unused_utility_insert_input": { "deleted_at": [ - 4376 + 4493 ], "match": [ - 2662 + 2779 ], "match_id": [ - 4921 + 4993 ], "match_map": [ - 2500 + 2617 ], "match_map_id": [ - 4921 + 4993 ], "player": [ - 3798 + 3915 ], "player_steam_id": [ - 180 + 252 ], "round": [ - 38 + 40 ], "unused": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "player_unused_utility_max_fields": { "deleted_at": [ - 4376 + 4493 ], "match_id": [ - 4921 + 4993 ], "match_map_id": [ - 4921 + 4993 ], "player_steam_id": [ - 180 + 252 ], "round": [ - 38 + 40 ], "unused": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "player_unused_utility_max_order_by": { "deleted_at": [ - 2829 + 2946 ], "match_id": [ - 2829 + 2946 ], "match_map_id": [ - 2829 + 2946 ], "player_steam_id": [ - 2829 + 2946 ], "round": [ - 2829 + 2946 ], "unused": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "player_unused_utility_min_fields": { "deleted_at": [ - 4376 + 4493 ], "match_id": [ - 4921 + 4993 ], "match_map_id": [ - 4921 + 4993 ], "player_steam_id": [ - 180 + 252 ], "round": [ - 38 + 40 ], "unused": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "player_unused_utility_min_order_by": { "deleted_at": [ - 2829 + 2946 ], "match_id": [ - 2829 + 2946 ], "match_map_id": [ - 2829 + 2946 ], "player_steam_id": [ - 2829 + 2946 ], "round": [ - 2829 + 2946 ], "unused": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "player_unused_utility_mutation_response": { "affected_rows": [ - 38 + 40 ], "returning": [ - 3672 + 3789 ], "__typename": [ - 78 + 80 ] }, "player_unused_utility_on_conflict": { "constraint": [ - 3682 + 3799 ], "update_columns": [ - 3705 + 3822 ], "where": [ - 3681 + 3798 ], "__typename": [ - 78 + 80 ] }, "player_unused_utility_order_by": { "deleted_at": [ - 2829 + 2946 ], "match": [ - 2664 + 2781 ], "match_id": [ - 2829 + 2946 ], "match_map": [ - 2502 + 2619 ], "match_map_id": [ - 2829 + 2946 ], "player": [ - 3800 + 3917 ], "player_steam_id": [ - 2829 + 2946 ], "round": [ - 2829 + 2946 ], "unused": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "player_unused_utility_pk_columns_input": { "match_map_id": [ - 4921 + 4993 ], "player_steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "player_unused_utility_select_column": {}, "player_unused_utility_set_input": { "deleted_at": [ - 4376 + 4493 ], "match_id": [ - 4921 + 4993 ], "match_map_id": [ - 4921 + 4993 ], "player_steam_id": [ - 180 + 252 ], "round": [ - 38 + 40 ], "unused": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "player_unused_utility_stddev_fields": { "player_steam_id": [ - 29 + 31 ], "round": [ - 29 + 31 ], "unused": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "player_unused_utility_stddev_order_by": { "player_steam_id": [ - 2829 + 2946 ], "round": [ - 2829 + 2946 ], "unused": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "player_unused_utility_stddev_pop_fields": { "player_steam_id": [ - 29 + 31 ], "round": [ - 29 + 31 ], "unused": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "player_unused_utility_stddev_pop_order_by": { "player_steam_id": [ - 2829 + 2946 ], "round": [ - 2829 + 2946 ], "unused": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "player_unused_utility_stddev_samp_fields": { "player_steam_id": [ - 29 + 31 ], "round": [ - 29 + 31 ], "unused": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "player_unused_utility_stddev_samp_order_by": { "player_steam_id": [ - 2829 + 2946 ], "round": [ - 2829 + 2946 ], "unused": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "player_unused_utility_stream_cursor_input": { "initial_value": [ - 3702 + 3819 ], "ordering": [ - 236 + 308 ], "__typename": [ - 78 + 80 ] }, "player_unused_utility_stream_cursor_value_input": { "deleted_at": [ - 4376 + 4493 ], "match_id": [ - 4921 + 4993 ], "match_map_id": [ - 4921 + 4993 ], "player_steam_id": [ - 180 + 252 ], "round": [ - 38 + 40 ], "unused": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "player_unused_utility_sum_fields": { "player_steam_id": [ - 180 + 252 ], "round": [ - 38 + 40 ], "unused": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "player_unused_utility_sum_order_by": { "player_steam_id": [ - 2829 + 2946 ], "round": [ - 2829 + 2946 ], "unused": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "player_unused_utility_update_column": {}, "player_unused_utility_updates": { "_inc": [ - 3683 + 3800 ], "_set": [ - 3694 + 3811 ], "where": [ - 3681 + 3798 ], "__typename": [ - 78 + 80 ] }, "player_unused_utility_var_pop_fields": { "player_steam_id": [ - 29 + 31 ], "round": [ - 29 + 31 ], "unused": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "player_unused_utility_var_pop_order_by": { "player_steam_id": [ - 2829 + 2946 ], "round": [ - 2829 + 2946 ], "unused": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "player_unused_utility_var_samp_fields": { "player_steam_id": [ - 29 + 31 ], "round": [ - 29 + 31 ], "unused": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "player_unused_utility_var_samp_order_by": { "player_steam_id": [ - 2829 + 2946 ], "round": [ - 2829 + 2946 ], "unused": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "player_unused_utility_variance_fields": { "player_steam_id": [ - 29 + 31 ], "round": [ - 29 + 31 ], "unused": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "player_unused_utility_variance_order_by": { "player_steam_id": [ - 2829 + 2946 ], "round": [ - 2829 + 2946 ], "unused": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "player_utility": { "attacker_location_coordinates": [ - 78 + 80 ], "attacker_steam_id": [ - 180 + 252 ], "deleted_at": [ - 4376 + 4493 ], "match": [ - 2644 + 2761 ], "match_id": [ - 4921 + 4993 ], "match_map": [ - 2482 + 2599 ], "match_map_id": [ - 4921 + 4993 ], "player": [ - 3787 + 3904 ], "round": [ - 38 + 40 ], "time": [ - 4376 + 4493 ], "type": [ - 1233 + 1350 ], "__typename": [ - 78 + 80 ] }, "player_utility_aggregate": { "aggregate": [ - 3717 + 3834 ], "nodes": [ - 3713 + 3830 ], "__typename": [ - 78 + 80 ] }, "player_utility_aggregate_bool_exp": { "count": [ - 3716 + 3833 ], "__typename": [ - 78 + 80 ] }, "player_utility_aggregate_bool_exp_count": { "arguments": [ - 3734 + 3851 ], "distinct": [ - 3 + 5 ], "filter": [ - 3722 + 3839 ], "predicate": [ - 39 + 41 ], "__typename": [ - 78 + 80 ] }, "player_utility_aggregate_fields": { "avg": [ - 3720 + 3837 ], "count": [ - 38, + 40, { "columns": [ - 3734, + 3851, "[player_utility_select_column!]" ], "distinct": [ - 3 + 5 ] } ], "max": [ - 3726 + 3843 ], "min": [ - 3728 + 3845 ], "stddev": [ - 3736 + 3853 ], "stddev_pop": [ - 3738 + 3855 ], "stddev_samp": [ - 3740 + 3857 ], "sum": [ - 3744 + 3861 ], "var_pop": [ - 3748 + 3865 ], "var_samp": [ - 3750 + 3867 ], "variance": [ - 3752 + 3869 ], "__typename": [ - 78 + 80 ] }, "player_utility_aggregate_order_by": { "avg": [ - 3721 + 3838 ], "count": [ - 2829 + 2946 ], "max": [ - 3727 + 3844 ], "min": [ - 3729 + 3846 ], "stddev": [ - 3737 + 3854 ], "stddev_pop": [ - 3739 + 3856 ], "stddev_samp": [ - 3741 + 3858 ], "sum": [ - 3745 + 3862 ], "var_pop": [ - 3749 + 3866 ], "var_samp": [ - 3751 + 3868 ], "variance": [ - 3753 + 3870 ], "__typename": [ - 78 + 80 ] }, "player_utility_arr_rel_insert_input": { "data": [ - 3725 + 3842 ], "on_conflict": [ - 3731 + 3848 ], "__typename": [ - 78 + 80 ] }, "player_utility_avg_fields": { "attacker_steam_id": [ - 29 + 31 ], "round": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "player_utility_avg_order_by": { "attacker_steam_id": [ - 2829 + 2946 ], "round": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "player_utility_bool_exp": { "_and": [ - 3722 + 3839 ], "_not": [ - 3722 + 3839 ], "_or": [ - 3722 + 3839 ], "attacker_location_coordinates": [ - 80 + 82 ], "attacker_steam_id": [ - 182 + 254 ], "deleted_at": [ - 4377 + 4494 ], "match": [ - 2653 + 2770 ], "match_id": [ - 4923 + 4995 ], "match_map": [ - 2491 + 2608 ], "match_map_id": [ - 4923 + 4995 ], "player": [ - 3791 + 3908 ], "round": [ - 39 + 41 ], "time": [ - 4377 + 4494 ], "type": [ - 1234 + 1351 ], "__typename": [ - 78 + 80 ] }, "player_utility_constraint": {}, "player_utility_inc_input": { "attacker_steam_id": [ - 180 + 252 ], "round": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "player_utility_insert_input": { "attacker_location_coordinates": [ - 78 + 80 ], "attacker_steam_id": [ - 180 + 252 ], "deleted_at": [ - 4376 + 4493 ], "match": [ - 2662 + 2779 ], "match_id": [ - 4921 + 4993 ], "match_map": [ - 2500 + 2617 ], "match_map_id": [ - 4921 + 4993 ], "player": [ - 3798 + 3915 ], "round": [ - 38 + 40 ], "time": [ - 4376 + 4493 ], "type": [ - 1233 + 1350 ], "__typename": [ - 78 + 80 ] }, "player_utility_max_fields": { "attacker_location_coordinates": [ - 78 + 80 ], "attacker_steam_id": [ - 180 + 252 ], "deleted_at": [ - 4376 + 4493 ], "match_id": [ - 4921 + 4993 ], "match_map_id": [ - 4921 + 4993 ], "round": [ - 38 + 40 ], "time": [ - 4376 + 4493 ], "__typename": [ - 78 + 80 ] }, "player_utility_max_order_by": { "attacker_location_coordinates": [ - 2829 + 2946 ], "attacker_steam_id": [ - 2829 + 2946 ], "deleted_at": [ - 2829 + 2946 ], "match_id": [ - 2829 + 2946 ], "match_map_id": [ - 2829 + 2946 ], "round": [ - 2829 + 2946 ], "time": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "player_utility_min_fields": { "attacker_location_coordinates": [ - 78 + 80 ], "attacker_steam_id": [ - 180 + 252 ], "deleted_at": [ - 4376 + 4493 ], "match_id": [ - 4921 + 4993 ], "match_map_id": [ - 4921 + 4993 ], "round": [ - 38 + 40 ], "time": [ - 4376 + 4493 ], "__typename": [ - 78 + 80 ] }, "player_utility_min_order_by": { "attacker_location_coordinates": [ - 2829 + 2946 ], "attacker_steam_id": [ - 2829 + 2946 ], "deleted_at": [ - 2829 + 2946 ], "match_id": [ - 2829 + 2946 ], "match_map_id": [ - 2829 + 2946 ], "round": [ - 2829 + 2946 ], "time": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "player_utility_mutation_response": { "affected_rows": [ - 38 + 40 ], "returning": [ - 3713 + 3830 ], "__typename": [ - 78 + 80 ] }, "player_utility_on_conflict": { "constraint": [ - 3723 + 3840 ], "update_columns": [ - 3746 + 3863 ], "where": [ - 3722 + 3839 ], "__typename": [ - 78 + 80 ] }, "player_utility_order_by": { "attacker_location_coordinates": [ - 2829 + 2946 ], "attacker_steam_id": [ - 2829 + 2946 ], "deleted_at": [ - 2829 + 2946 ], "match": [ - 2664 + 2781 ], "match_id": [ - 2829 + 2946 ], "match_map": [ - 2502 + 2619 ], "match_map_id": [ - 2829 + 2946 ], "player": [ - 3800 + 3917 ], "round": [ - 2829 + 2946 ], "time": [ - 2829 + 2946 ], "type": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "player_utility_pk_columns_input": { "attacker_steam_id": [ - 180 + 252 ], "match_map_id": [ - 4921 + 4993 ], "time": [ - 4376 + 4493 ], "__typename": [ - 78 + 80 ] }, "player_utility_select_column": {}, "player_utility_set_input": { "attacker_location_coordinates": [ - 78 + 80 ], "attacker_steam_id": [ - 180 + 252 ], "deleted_at": [ - 4376 + 4493 ], "match_id": [ - 4921 + 4993 ], "match_map_id": [ - 4921 + 4993 ], "round": [ - 38 + 40 ], "time": [ - 4376 + 4493 ], "type": [ - 1233 + 1350 ], "__typename": [ - 78 + 80 ] }, "player_utility_stddev_fields": { "attacker_steam_id": [ - 29 + 31 ], "round": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "player_utility_stddev_order_by": { "attacker_steam_id": [ - 2829 + 2946 ], "round": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "player_utility_stddev_pop_fields": { "attacker_steam_id": [ - 29 + 31 ], "round": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "player_utility_stddev_pop_order_by": { "attacker_steam_id": [ - 2829 + 2946 ], "round": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "player_utility_stddev_samp_fields": { "attacker_steam_id": [ - 29 + 31 ], "round": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "player_utility_stddev_samp_order_by": { "attacker_steam_id": [ - 2829 + 2946 ], "round": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "player_utility_stream_cursor_input": { "initial_value": [ - 3743 + 3860 ], "ordering": [ - 236 + 308 ], "__typename": [ - 78 + 80 ] }, "player_utility_stream_cursor_value_input": { "attacker_location_coordinates": [ - 78 + 80 ], "attacker_steam_id": [ - 180 + 252 ], "deleted_at": [ - 4376 + 4493 ], "match_id": [ - 4921 + 4993 ], "match_map_id": [ - 4921 + 4993 ], "round": [ - 38 + 40 ], "time": [ - 4376 + 4493 ], "type": [ - 1233 + 1350 ], "__typename": [ - 78 + 80 ] }, "player_utility_sum_fields": { "attacker_steam_id": [ - 180 + 252 ], "round": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "player_utility_sum_order_by": { "attacker_steam_id": [ - 2829 + 2946 ], "round": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "player_utility_update_column": {}, "player_utility_updates": { "_inc": [ - 3724 + 3841 ], "_set": [ - 3735 + 3852 ], "where": [ - 3722 + 3839 ], "__typename": [ - 78 + 80 ] }, "player_utility_var_pop_fields": { "attacker_steam_id": [ - 29 + 31 ], "round": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "player_utility_var_pop_order_by": { "attacker_steam_id": [ - 2829 + 2946 ], "round": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "player_utility_var_samp_fields": { "attacker_steam_id": [ - 29 + 31 ], "round": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "player_utility_var_samp_order_by": { "attacker_steam_id": [ - 2829 + 2946 ], "round": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "player_utility_variance_fields": { "attacker_steam_id": [ - 29 + 31 ], "round": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "player_utility_variance_order_by": { "attacker_steam_id": [ - 2829 + 2946 ], "round": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "player_weapon_stats_v": { "first_bullet_hits": [ - 38 + 40 ], "first_bullet_shots": [ - 38 + 40 ], "hits": [ - 38 + 40 ], "hits_spotted": [ - 38 + 40 ], "match_id": [ - 4921 + 4993 ], "shots": [ - 38 + 40 ], "shots_spotted": [ - 38 + 40 ], "steam_id": [ - 180 + 252 ], "weapon_class": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "player_weapon_stats_v_aggregate": { "aggregate": [ - 3758 + 3875 ], "nodes": [ - 3754 + 3871 ], "__typename": [ - 78 + 80 ] }, "player_weapon_stats_v_aggregate_bool_exp": { "count": [ - 3757 + 3874 ], "__typename": [ - 78 + 80 ] }, "player_weapon_stats_v_aggregate_bool_exp_count": { "arguments": [ - 3770 + 3887 ], "distinct": [ - 3 + 5 ], "filter": [ - 3763 + 3880 ], "predicate": [ - 39 + 41 ], "__typename": [ - 78 + 80 ] }, "player_weapon_stats_v_aggregate_fields": { "avg": [ - 3761 + 3878 ], "count": [ - 38, + 40, { "columns": [ - 3770, + 3887, "[player_weapon_stats_v_select_column!]" ], "distinct": [ - 3 + 5 ] } ], "max": [ - 3765 + 3882 ], "min": [ - 3767 + 3884 ], "stddev": [ - 3771 + 3888 ], "stddev_pop": [ - 3773 + 3890 ], "stddev_samp": [ - 3775 + 3892 ], "sum": [ - 3779 + 3896 ], "var_pop": [ - 3781 + 3898 ], "var_samp": [ - 3783 + 3900 ], "variance": [ - 3785 + 3902 ], "__typename": [ - 78 + 80 ] }, "player_weapon_stats_v_aggregate_order_by": { "avg": [ - 3762 + 3879 ], "count": [ - 2829 + 2946 ], "max": [ - 3766 + 3883 ], "min": [ - 3768 + 3885 ], "stddev": [ - 3772 + 3889 ], "stddev_pop": [ - 3774 + 3891 ], "stddev_samp": [ - 3776 + 3893 ], "sum": [ - 3780 + 3897 ], "var_pop": [ - 3782 + 3899 ], "var_samp": [ - 3784 + 3901 ], "variance": [ - 3786 + 3903 ], "__typename": [ - 78 + 80 ] }, "player_weapon_stats_v_arr_rel_insert_input": { "data": [ - 3764 + 3881 ], "__typename": [ - 78 + 80 ] }, "player_weapon_stats_v_avg_fields": { "first_bullet_hits": [ - 29 + 31 ], "first_bullet_shots": [ - 29 + 31 ], "hits": [ - 29 + 31 ], "hits_spotted": [ - 29 + 31 ], "shots": [ - 29 + 31 ], "shots_spotted": [ - 29 + 31 ], "steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "player_weapon_stats_v_avg_order_by": { "first_bullet_hits": [ - 2829 + 2946 ], "first_bullet_shots": [ - 2829 + 2946 ], "hits": [ - 2829 + 2946 ], "hits_spotted": [ - 2829 + 2946 ], "shots": [ - 2829 + 2946 ], "shots_spotted": [ - 2829 + 2946 ], "steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "player_weapon_stats_v_bool_exp": { "_and": [ - 3763 + 3880 ], "_not": [ - 3763 + 3880 ], "_or": [ - 3763 + 3880 ], "first_bullet_hits": [ - 39 + 41 ], "first_bullet_shots": [ - 39 + 41 ], "hits": [ - 39 + 41 ], "hits_spotted": [ - 39 + 41 ], "match_id": [ - 4923 + 4995 ], "shots": [ - 39 + 41 ], "shots_spotted": [ - 39 + 41 ], "steam_id": [ - 182 + 254 ], "weapon_class": [ - 80 + 82 ], "__typename": [ - 78 + 80 ] }, "player_weapon_stats_v_insert_input": { "first_bullet_hits": [ - 38 + 40 ], "first_bullet_shots": [ - 38 + 40 ], "hits": [ - 38 + 40 ], "hits_spotted": [ - 38 + 40 ], "match_id": [ - 4921 + 4993 ], "shots": [ - 38 + 40 ], "shots_spotted": [ - 38 + 40 ], "steam_id": [ - 180 + 252 ], "weapon_class": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "player_weapon_stats_v_max_fields": { "first_bullet_hits": [ - 38 + 40 ], "first_bullet_shots": [ - 38 + 40 ], "hits": [ - 38 + 40 ], "hits_spotted": [ - 38 + 40 ], "match_id": [ - 4921 + 4993 ], "shots": [ - 38 + 40 ], "shots_spotted": [ - 38 + 40 ], "steam_id": [ - 180 + 252 ], "weapon_class": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "player_weapon_stats_v_max_order_by": { "first_bullet_hits": [ - 2829 + 2946 ], "first_bullet_shots": [ - 2829 + 2946 ], "hits": [ - 2829 + 2946 ], "hits_spotted": [ - 2829 + 2946 ], "match_id": [ - 2829 + 2946 ], "shots": [ - 2829 + 2946 ], "shots_spotted": [ - 2829 + 2946 ], "steam_id": [ - 2829 + 2946 ], "weapon_class": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "player_weapon_stats_v_min_fields": { "first_bullet_hits": [ - 38 + 40 ], "first_bullet_shots": [ - 38 + 40 ], "hits": [ - 38 + 40 ], "hits_spotted": [ - 38 + 40 ], "match_id": [ - 4921 + 4993 ], "shots": [ - 38 + 40 ], "shots_spotted": [ - 38 + 40 ], "steam_id": [ - 180 + 252 ], "weapon_class": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "player_weapon_stats_v_min_order_by": { "first_bullet_hits": [ - 2829 + 2946 ], "first_bullet_shots": [ - 2829 + 2946 ], "hits": [ - 2829 + 2946 ], "hits_spotted": [ - 2829 + 2946 ], "match_id": [ - 2829 + 2946 ], "shots": [ - 2829 + 2946 ], "shots_spotted": [ - 2829 + 2946 ], "steam_id": [ - 2829 + 2946 ], "weapon_class": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "player_weapon_stats_v_order_by": { "first_bullet_hits": [ - 2829 + 2946 ], "first_bullet_shots": [ - 2829 + 2946 ], "hits": [ - 2829 + 2946 ], "hits_spotted": [ - 2829 + 2946 ], "match_id": [ - 2829 + 2946 ], "shots": [ - 2829 + 2946 ], "shots_spotted": [ - 2829 + 2946 ], "steam_id": [ - 2829 + 2946 ], "weapon_class": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "player_weapon_stats_v_select_column": {}, "player_weapon_stats_v_stddev_fields": { "first_bullet_hits": [ - 29 + 31 ], "first_bullet_shots": [ - 29 + 31 ], "hits": [ - 29 + 31 ], "hits_spotted": [ - 29 + 31 ], "shots": [ - 29 + 31 ], "shots_spotted": [ - 29 + 31 ], "steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "player_weapon_stats_v_stddev_order_by": { "first_bullet_hits": [ - 2829 + 2946 ], "first_bullet_shots": [ - 2829 + 2946 ], "hits": [ - 2829 + 2946 ], "hits_spotted": [ - 2829 + 2946 ], "shots": [ - 2829 + 2946 ], "shots_spotted": [ - 2829 + 2946 ], "steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "player_weapon_stats_v_stddev_pop_fields": { "first_bullet_hits": [ - 29 + 31 ], "first_bullet_shots": [ - 29 + 31 ], "hits": [ - 29 + 31 ], "hits_spotted": [ - 29 + 31 ], "shots": [ - 29 + 31 ], "shots_spotted": [ - 29 + 31 ], "steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "player_weapon_stats_v_stddev_pop_order_by": { "first_bullet_hits": [ - 2829 + 2946 ], "first_bullet_shots": [ - 2829 + 2946 ], "hits": [ - 2829 + 2946 ], "hits_spotted": [ - 2829 + 2946 ], "shots": [ - 2829 + 2946 ], "shots_spotted": [ - 2829 + 2946 ], "steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "player_weapon_stats_v_stddev_samp_fields": { "first_bullet_hits": [ - 29 + 31 ], "first_bullet_shots": [ - 29 + 31 ], "hits": [ - 29 + 31 ], "hits_spotted": [ - 29 + 31 ], "shots": [ - 29 + 31 ], "shots_spotted": [ - 29 + 31 ], "steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "player_weapon_stats_v_stddev_samp_order_by": { "first_bullet_hits": [ - 2829 + 2946 ], "first_bullet_shots": [ - 2829 + 2946 ], "hits": [ - 2829 + 2946 ], "hits_spotted": [ - 2829 + 2946 ], "shots": [ - 2829 + 2946 ], "shots_spotted": [ - 2829 + 2946 ], "steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "player_weapon_stats_v_stream_cursor_input": { "initial_value": [ - 3778 + 3895 ], "ordering": [ - 236 + 308 ], "__typename": [ - 78 + 80 ] }, "player_weapon_stats_v_stream_cursor_value_input": { "first_bullet_hits": [ - 38 + 40 ], "first_bullet_shots": [ - 38 + 40 ], "hits": [ - 38 + 40 ], "hits_spotted": [ - 38 + 40 ], "match_id": [ - 4921 + 4993 ], "shots": [ - 38 + 40 ], "shots_spotted": [ - 38 + 40 ], "steam_id": [ - 180 + 252 ], "weapon_class": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "player_weapon_stats_v_sum_fields": { "first_bullet_hits": [ - 38 + 40 ], "first_bullet_shots": [ - 38 + 40 ], "hits": [ - 38 + 40 ], "hits_spotted": [ - 38 + 40 ], "shots": [ - 38 + 40 ], "shots_spotted": [ - 38 + 40 ], "steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "player_weapon_stats_v_sum_order_by": { "first_bullet_hits": [ - 2829 + 2946 ], "first_bullet_shots": [ - 2829 + 2946 ], "hits": [ - 2829 + 2946 ], "hits_spotted": [ - 2829 + 2946 ], "shots": [ - 2829 + 2946 ], "shots_spotted": [ - 2829 + 2946 ], "steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "player_weapon_stats_v_var_pop_fields": { "first_bullet_hits": [ - 29 + 31 ], "first_bullet_shots": [ - 29 + 31 ], "hits": [ - 29 + 31 ], "hits_spotted": [ - 29 + 31 ], "shots": [ - 29 + 31 ], "shots_spotted": [ - 29 + 31 ], "steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "player_weapon_stats_v_var_pop_order_by": { "first_bullet_hits": [ - 2829 + 2946 ], "first_bullet_shots": [ - 2829 + 2946 ], "hits": [ - 2829 + 2946 ], "hits_spotted": [ - 2829 + 2946 ], "shots": [ - 2829 + 2946 ], "shots_spotted": [ - 2829 + 2946 ], "steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "player_weapon_stats_v_var_samp_fields": { "first_bullet_hits": [ - 29 + 31 ], "first_bullet_shots": [ - 29 + 31 ], "hits": [ - 29 + 31 ], "hits_spotted": [ - 29 + 31 ], "shots": [ - 29 + 31 ], "shots_spotted": [ - 29 + 31 ], "steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "player_weapon_stats_v_var_samp_order_by": { "first_bullet_hits": [ - 2829 + 2946 ], "first_bullet_shots": [ - 2829 + 2946 ], "hits": [ - 2829 + 2946 ], "hits_spotted": [ - 2829 + 2946 ], "shots": [ - 2829 + 2946 ], "shots_spotted": [ - 2829 + 2946 ], "steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "player_weapon_stats_v_variance_fields": { "first_bullet_hits": [ - 29 + 31 ], "first_bullet_shots": [ - 29 + 31 ], "hits": [ - 29 + 31 ], "hits_spotted": [ - 29 + 31 ], "shots": [ - 29 + 31 ], "shots_spotted": [ - 29 + 31 ], "steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "player_weapon_stats_v_variance_order_by": { "first_bullet_hits": [ - 2829 + 2946 ], "first_bullet_shots": [ - 2829 + 2946 ], "hits": [ - 2829 + 2946 ], "hits_spotted": [ - 2829 + 2946 ], "shots": [ - 2829 + 2946 ], "shots_spotted": [ - 2829 + 2946 ], "steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "players": { "abandoned_matches": [ - 111, + 114, { "distinct_on": [ - 132, + 135, "[abandoned_matches_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 130, + 133, "[abandoned_matches_order_by!]" ], "where": [ - 120 + 123 ] } ], "abandoned_matches_aggregate": [ - 112, + 115, { "distinct_on": [ - 132, + 135, "[abandoned_matches_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 130, + 133, "[abandoned_matches_order_by!]" ], "where": [ - 120 + 123 ] } ], "aim_weapon_stats": [ - 2926, + 3043, { "distinct_on": [ - 2947, + 3064, "[player_aim_weapon_stats_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2945, + 3062, "[player_aim_weapon_stats_order_by!]" ], "where": [ - 2935 + 3052 ] } ], "aim_weapon_stats_aggregate": [ - 2927, + 3044, { "distinct_on": [ - 2947, + 3064, "[player_aim_weapon_stats_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2945, + 3062, "[player_aim_weapon_stats_order_by!]" ], "where": [ - 2935 + 3052 ] } ], "assists": [ - 2967, + 3084, { "distinct_on": [ - 2990, + 3107, "[player_assists_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2988, + 3105, "[player_assists_order_by!]" ], "where": [ - 2978 + 3095 ] } ], "assists_aggregate": [ - 2968, + 3085, { "distinct_on": [ - 2990, + 3107, "[player_assists_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2988, + 3105, "[player_assists_order_by!]" ], "where": [ - 2978 + 3095 ] } ], "assited_by_players": [ - 2967, + 3084, { "distinct_on": [ - 2990, + 3107, "[player_assists_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2988, + 3105, "[player_assists_order_by!]" ], "where": [ - 2978 + 3095 ] } ], "assited_by_players_aggregate": [ - 2968, + 3085, { "distinct_on": [ - 2990, + 3107, "[player_assists_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2988, + 3105, "[player_assists_order_by!]" ], "where": [ - 2978 + 3095 ] } ], "avatar_url": [ - 78 + 80 + ], + "awards": [ + 183, + { + "distinct_on": [ + 204, + "[award_recipients_select_column!]" + ], + "limit": [ + 40 + ], + "offset": [ + 40 + ], + "order_by": [ + 202, + "[award_recipients_order_by!]" + ], + "where": [ + 192 + ] + } + ], + "awards_aggregate": [ + 184, + { + "distinct_on": [ + 204, + "[award_recipients_select_column!]" + ], + "limit": [ + 40 + ], + "offset": [ + 40 + ], + "order_by": [ + 202, + "[award_recipients_order_by!]" + ], + "where": [ + 192 + ] + } ], "coach_lineups": [ - 2324, + 2441, { "distinct_on": [ - 2346, + 2463, "[match_lineups_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2344, + 2461, "[match_lineups_order_by!]" ], "where": [ - 2333 + 2450 ] } ], "coach_lineups_aggregate": [ - 2325, + 2442, { "distinct_on": [ - 2346, + 2463, "[match_lineups_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2344, + 2461, "[match_lineups_order_by!]" ], "where": [ - 2333 + 2450 ] } ], "country": [ - 78 + 80 ], "created_at": [ - 4376 + 4493 ], "current_lobby_id": [ - 4921 + 4993 ], "custom_avatar_url": [ - 78 + 80 ], "damage_dealt": [ - 3030, + 3147, { "distinct_on": [ - 3051, + 3168, "[player_damages_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 3049, + 3166, "[player_damages_order_by!]" ], "where": [ - 3039 + 3156 ] } ], "damage_dealt_aggregate": [ - 3031, + 3148, { "distinct_on": [ - 3051, + 3168, "[player_damages_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 3049, + 3166, "[player_damages_order_by!]" ], "where": [ - 3039 + 3156 ] } ], "damage_taken": [ - 3030, + 3147, { "distinct_on": [ - 3051, + 3168, "[player_damages_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 3049, + 3166, "[player_damages_order_by!]" ], "where": [ - 3039 + 3156 ] } ], "damage_taken_aggregate": [ - 3031, + 3148, { "distinct_on": [ - 3051, + 3168, "[player_damages_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 3049, + 3166, "[player_damages_order_by!]" ], "where": [ - 3039 + 3156 ] } ], "days_since_last_ban": [ - 38 + 40 ], "deaths": [ - 3184, + 3301, { "distinct_on": [ - 3248, + 3365, "[player_kills_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 3246, + 3363, "[player_kills_order_by!]" ], "where": [ - 3195 + 3312 ] } ], "deaths_aggregate": [ - 3185, + 3302, { "distinct_on": [ - 3248, + 3365, "[player_kills_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 3246, + 3363, "[player_kills_order_by!]" ], "where": [ - 3195 + 3312 ] } ], "discord_id": [ - 78 + 80 ], "draft_game_players": [ - 336, + 413, { "distinct_on": [ - 359, + 436, "[draft_game_players_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 357, + 434, "[draft_game_players_order_by!]" ], "where": [ - 347 + 424 ] } ], "draft_game_players_aggregate": [ - 337, + 414, { "distinct_on": [ - 359, + 436, "[draft_game_players_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 357, + 434, "[draft_game_players_order_by!]" ], "where": [ - 347 + 424 ] } ], "elo": [ - 1700, + 1817, { "path": [ - 78 + 80 ] } ], "elo_history": [ - 5298, + 5370, { "distinct_on": [ - 5324, + 5396, "[v_player_elo_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 5323, + 5395, "[v_player_elo_order_by!]" ], "where": [ - 5317 + 5389 ] } ], "elo_history_aggregate": [ - 5299, + 5371, { "distinct_on": [ - 5324, + 5396, "[v_player_elo_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 5323, + 5395, "[v_player_elo_order_by!]" ], "where": [ - 5317 + 5389 ] } ], "faceit_elo": [ - 38 + 40 ], "faceit_nickname": [ - 78 + 80 ], "faceit_player_id": [ - 78 + 80 ], "faceit_rank_history": [ - 3098, + 3215, { "distinct_on": [ - 3119, + 3236, "[player_faceit_rank_history_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 3117, + 3234, "[player_faceit_rank_history_order_by!]" ], "where": [ - 3107 + 3224 ] } ], "faceit_rank_history_aggregate": [ - 3099, + 3216, { "distinct_on": [ - 3119, + 3236, "[player_faceit_rank_history_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 3117, + 3234, "[player_faceit_rank_history_order_by!]" ], "where": [ - 3107 + 3224 ] } ], "faceit_skill_level": [ - 38 + 40 ], "faceit_updated_at": [ - 4376 + 4493 ], "faceit_url": [ - 78 + 80 ], "flashed_by_players": [ - 3139, + 3256, { "distinct_on": [ - 3162, + 3279, "[player_flashes_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 3160, + 3277, "[player_flashes_order_by!]" ], "where": [ - 3150 + 3267 ] } ], "flashed_by_players_aggregate": [ - 3140, + 3257, { "distinct_on": [ - 3162, + 3279, "[player_flashes_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 3160, + 3277, "[player_flashes_order_by!]" ], "where": [ - 3150 + 3267 ] } ], "flashed_players": [ - 3139, + 3256, { "distinct_on": [ - 3162, + 3279, "[player_flashes_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 3160, + 3277, "[player_flashes_order_by!]" ], "where": [ - 3150 + 3267 ] } ], "flashed_players_aggregate": [ - 3140, + 3257, { "distinct_on": [ - 3162, + 3279, "[player_flashes_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 3160, + 3277, "[player_flashes_order_by!]" ], "where": [ - 3150 + 3267 ] } ], "friends": [ - 2704, + 2821, { "distinct_on": [ - 2729, + 2846, "[my_friends_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2727, + 2844, "[my_friends_order_by!]" ], "where": [ - 2716 + 2833 ] } ], "friends_aggregate": [ - 2705, + 2822, { "distinct_on": [ - 2729, + 2846, "[my_friends_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2727, + 2844, "[my_friends_order_by!]" ], "where": [ - 2716 + 2833 ] } ], "game_ban_count": [ - 38 + 40 ], "invited_players": [ - 4046, + 4163, { "distinct_on": [ - 4067, + 4184, "[team_invites_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 4065, + 4182, "[team_invites_order_by!]" ], "where": [ - 4055 + 4172 ] } ], "invited_players_aggregate": [ - 4047, + 4164, { "distinct_on": [ - 4067, + 4184, "[team_invites_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 4065, + 4182, "[team_invites_order_by!]" ], "where": [ - 4055 + 4172 ] } ], "is_banned": [ - 3 + 5 ], "is_gagged": [ - 3 + 5 ], "is_in_another_match": [ - 3 + 5 ], "is_in_draft": [ - 3 + 5 ], "is_in_lobby": [ - 3 + 5 ], "is_muted": [ - 3 + 5 ], "kills": [ - 3184, + 3301, { "distinct_on": [ - 3248, + 3365, "[player_kills_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 3246, + 3363, "[player_kills_order_by!]" ], "where": [ - 3195 + 3312 ] } ], "kills_aggregate": [ - 3185, + 3302, { "distinct_on": [ - 3248, + 3365, "[player_kills_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 3246, + 3363, "[player_kills_order_by!]" ], "where": [ - 3195 + 3312 ] } ], "kills_by_weapons": [ - 3196, + 3313, { "distinct_on": [ - 3217, + 3334, "[player_kills_by_weapon_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 3215, + 3332, "[player_kills_by_weapon_order_by!]" ], "where": [ - 3205 + 3322 ] } ], "kills_by_weapons_aggregate": [ - 3197, + 3314, { "distinct_on": [ - 3217, + 3334, "[player_kills_by_weapon_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 3215, + 3332, "[player_kills_by_weapon_order_by!]" ], "where": [ - 3205 + 3322 ] } ], "language": [ - 78 + 80 ], "last_read_news_at": [ - 4376 + 4493 ], "last_sign_in_at": [ - 4376 + 4493 ], "lobby_players": [ - 2098, + 2215, { "distinct_on": [ - 2121, + 2238, "[lobby_players_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2119, + 2236, "[lobby_players_order_by!]" ], "where": [ - 2109 + 2226 ] } ], "lobby_players_aggregate": [ - 2099, + 2216, { "distinct_on": [ - 2121, + 2238, "[lobby_players_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2119, + 2236, "[lobby_players_order_by!]" ], "where": [ - 2109 + 2226 ] } ], "losses": [ - 38 + 40 ], "losses_competitive": [ - 38 + 40 ], "losses_duel": [ - 38 + 40 ], "losses_wingman": [ - 38 + 40 ], "match_map_hltv": [ - 5403, + 5475, { "distinct_on": [ - 5421, + 5493, "[v_player_match_map_hltv_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 5420, + 5492, "[v_player_match_map_hltv_order_by!]" ], "where": [ - 5412 + 5484 ] } ], "match_map_hltv_aggregate": [ - 5404, + 5476, { "distinct_on": [ - 5421, + 5493, "[v_player_match_map_hltv_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 5420, + 5492, "[v_player_match_map_hltv_order_by!]" ], "where": [ - 5412 + 5484 ] } ], "match_map_stats": [ - 3293, + 3410, { "distinct_on": [ - 3314, + 3431, "[player_match_map_stats_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 3312, + 3429, "[player_match_map_stats_order_by!]" ], "where": [ - 3302 + 3419 ] } ], "match_map_stats_aggregate": [ - 3294, + 3411, { "distinct_on": [ - 3314, + 3431, "[player_match_map_stats_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 3312, + 3429, "[player_match_map_stats_order_by!]" ], "where": [ - 3302 + 3419 ] } ], "match_stats": [ - 3352, + 3469, { "distinct_on": [ - 3368, + 3485, "[player_match_stats_v_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 3367, + 3484, "[player_match_stats_v_order_by!]" ], "where": [ - 3361 + 3478 ] } ], "match_stats_aggregate": [ - 3353, + 3470, { "distinct_on": [ - 3368, + 3485, "[player_match_stats_v_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 3367, + 3484, "[player_match_stats_v_order_by!]" ], "where": [ - 3361 + 3478 ] } ], "matches": [ - 2644, + 2761, { "distinct_on": [ - 2666, + 2783, "[matches_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2664, + 2781, "[matches_order_by!]" ], "where": [ - 2653 + 2770 ] } ], "matchmaking_cooldown": [ - 4376 + 4493 ], "multi_kills": [ - 5494, + 5566, { "distinct_on": [ - 5510, + 5582, "[v_player_multi_kills_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 5509, + 5581, "[v_player_multi_kills_order_by!]" ], "where": [ - 5503 + 5575 ] } ], "multi_kills_aggregate": [ - 5495, + 5567, { "distinct_on": [ - 5510, + 5582, "[v_player_multi_kills_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 5509, + 5581, "[v_player_multi_kills_order_by!]" ], "where": [ - 5503 + 5575 ] } ], "name": [ - 78 + 80 ], "name_registered": [ - 3 + 5 ], "notifications": [ - 2777, + 2894, { "distinct_on": [ - 2805, + 2922, "[notifications_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2802, + 2919, "[notifications_order_by!]" ], "where": [ - 2789 + 2906 ] } ], "notifications_aggregate": [ - 2778, + 2895, { "distinct_on": [ - 2805, + 2922, "[notifications_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2802, + 2919, "[notifications_order_by!]" ], "where": [ - 2789 + 2906 ] } ], "objectives": [ - 3385, + 3502, { "distinct_on": [ - 3406, + 3523, "[player_objectives_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 3404, + 3521, "[player_objectives_order_by!]" ], "where": [ - 3394 + 3511 ] } ], "objectives_aggregate": [ - 3386, + 3503, { "distinct_on": [ - 3406, + 3523, "[player_objectives_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 3404, + 3521, "[player_objectives_order_by!]" ], "where": [ - 3394 + 3511 ] } ], "owned_teams": [ - 4329, + 4446, { "distinct_on": [ - 4353, + 4470, "[teams_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 4351, + 4468, "[teams_order_by!]" ], "where": [ - 4340 + 4457 ] } ], "owned_teams_aggregate": [ - 4330, + 4447, { "distinct_on": [ - 4353, + 4470, "[teams_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 4351, + 4468, "[teams_order_by!]" ], "where": [ - 4340 + 4457 ] } ], "peak_elo": [ - 1700, + 1817, { "path": [ - 78 + 80 ] } ], "pending_match_imports": [ - 2830, + 2947, { "distinct_on": [ - 2851, + 2968, "[pending_match_import_players_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2849, + 2966, "[pending_match_import_players_order_by!]" ], "where": [ - 2839 + 2956 ] } ], "pending_match_imports_aggregate": [ - 2831, + 2948, { "distinct_on": [ - 2851, + 2968, "[pending_match_import_players_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2849, + 2966, "[pending_match_import_players_order_by!]" ], "where": [ - 2839 + 2956 ] } ], "player_lineup": [ - 2279, + 2396, { "distinct_on": [ - 2302, + 2419, "[match_lineup_players_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2300, + 2417, "[match_lineup_players_order_by!]" ], "where": [ - 2290 + 2407 ] } ], "player_lineup_aggregate": [ - 2280, + 2397, { "distinct_on": [ - 2302, + 2419, "[match_lineup_players_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2300, + 2417, "[match_lineup_players_order_by!]" ], "where": [ - 2290 + 2407 ] } ], "player_unused_utilities": [ - 3672, + 3789, { "distinct_on": [ - 3693, + 3810, "[player_unused_utility_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 3691, + 3808, "[player_unused_utility_order_by!]" ], "where": [ - 3681 + 3798 ] } ], "player_unused_utilities_aggregate": [ - 3673, + 3790, { "distinct_on": [ - 3693, + 3810, "[player_unused_utility_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 3691, + 3808, "[player_unused_utility_order_by!]" ], "where": [ - 3681 + 3798 ] } ], "premier_rank": [ - 38 + 40 ], "premier_rank_history": [ - 3444, + 3561, { "distinct_on": [ - 3465, + 3582, "[player_premier_rank_history_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 3463, + 3580, "[player_premier_rank_history_order_by!]" ], "where": [ - 3453 + 3570 ] } ], "premier_rank_history_aggregate": [ - 3445, + 3562, { "distinct_on": [ - 3465, + 3582, "[player_premier_rank_history_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 3463, + 3580, "[player_premier_rank_history_order_by!]" ], "where": [ - 3453 + 3570 ] } ], "premier_rank_updated_at": [ - 4376 + 4493 ], "profile_url": [ - 78 + 80 ], "role": [ - 948 + 1065 ], "roster_image_url": [ - 78 + 80 ], "sanctions": [ - 3485, + 3602, { "distinct_on": [ - 3506, + 3623, "[player_sanctions_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 3504, + 3621, "[player_sanctions_order_by!]" ], "where": [ - 3494 + 3611 ] } ], "sanctions_aggregate": [ - 3486, + 3603, { "distinct_on": [ - 3506, + 3623, "[player_sanctions_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 3504, + 3621, "[player_sanctions_order_by!]" ], "where": [ - 3494 + 3611 ] } ], "season_stats": [ - 3526, + 3643, { "distinct_on": [ - 3557, + 3674, "[player_season_stats_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 3555, + 3672, "[player_season_stats_order_by!]" ], "where": [ - 3545 + 3662 ] } ], "season_stats_aggregate": [ - 3527, + 3644, { "distinct_on": [ - 3557, + 3674, "[player_season_stats_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 3555, + 3672, "[player_season_stats_order_by!]" ], "where": [ - 3545 + 3662 ] } ], "show_match_ready_modal": [ - 3 + 5 ], "stats": [ - 3585 + 3702 ], "steam_bans_checked_at": [ - 4376 + 4493 ], "steam_id": [ - 180 + 252 ], "team_invites": [ - 4046, + 4163, { "distinct_on": [ - 4067, + 4184, "[team_invites_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 4065, + 4182, "[team_invites_order_by!]" ], "where": [ - 4055 + 4172 ] } ], "team_invites_aggregate": [ - 4047, + 4164, { "distinct_on": [ - 4067, + 4184, "[team_invites_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 4065, + 4182, "[team_invites_order_by!]" ], "where": [ - 4055 + 4172 ] } ], "team_members": [ - 4087, + 4204, { "distinct_on": [ - 4110, + 4227, "[team_roster_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 4108, + 4225, "[team_roster_order_by!]" ], "where": [ - 4098 + 4215 ] } ], "team_members_aggregate": [ - 4088, + 4205, { "distinct_on": [ - 4110, + 4227, "[team_roster_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 4108, + 4225, "[team_roster_order_by!]" ], "where": [ - 4098 + 4215 ] } ], "teams": [ - 4329, + 4446, { "distinct_on": [ - 4353, + 4470, "[teams_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 4351, + 4468, "[teams_order_by!]" ], "where": [ - 4340 + 4457 ] } ], "total_matches": [ - 38 + 40 ], "tournament_organizers": [ - 4472, + 4631, { "distinct_on": [ - 4493, + 4652, "[tournament_organizers_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 4491, + 4650, "[tournament_organizers_order_by!]" ], "where": [ - 4481 + 4640 ] } ], "tournament_organizers_aggregate": [ - 4473, + 4632, { "distinct_on": [ - 4493, + 4652, "[tournament_organizers_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 4491, + 4650, "[tournament_organizers_order_by!]" ], "where": [ - 4481 + 4640 ] } ], "tournament_rosters": [ - 4687, + 4846, { "distinct_on": [ - 4708, + 4867, "[tournament_team_roster_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 4706, + 4865, "[tournament_team_roster_order_by!]" ], "where": [ - 4696 + 4855 ] } ], "tournament_rosters_aggregate": [ - 4688, + 4847, { "distinct_on": [ - 4708, + 4867, "[tournament_team_roster_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 4706, + 4865, "[tournament_team_roster_order_by!]" ], "where": [ - 4696 - ] - } - ], - "tournament_trophies": [ - 4770, - { - "distinct_on": [ - 4793, - "[tournament_trophies_select_column!]" - ], - "limit": [ - 38 - ], - "offset": [ - 38 - ], - "order_by": [ - 4791, - "[tournament_trophies_order_by!]" - ], - "where": [ - 4781 - ] - } - ], - "tournament_trophies_aggregate": [ - 4771, - { - "distinct_on": [ - 4793, - "[tournament_trophies_select_column!]" - ], - "limit": [ - 38 - ], - "offset": [ - 38 - ], - "order_by": [ - 4791, - "[tournament_trophies_order_by!]" - ], - "where": [ - 4781 + 4855 ] } ], "tournaments": [ - 4857, + 4929, { "distinct_on": [ - 4891, + 4963, "[tournaments_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 4889, + 4961, "[tournaments_order_by!]" ], "where": [ - 4878 + 4950 ] } ], "tournaments_aggregate": [ - 4858, + 4930, { "distinct_on": [ - 4891, + 4963, "[tournaments_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 4889, + 4961, "[tournaments_order_by!]" ], "where": [ - 4878 + 4950 ] } ], "utility_thrown": [ - 3713, + 3830, { "distinct_on": [ - 3734, + 3851, "[player_utility_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 3732, + 3849, "[player_utility_order_by!]" ], "where": [ - 3722 + 3839 ] } ], "utility_thrown_aggregate": [ - 3714, + 3831, { "distinct_on": [ - 3734, + 3851, "[player_utility_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 3732, + 3849, "[player_utility_order_by!]" ], "where": [ - 3722 + 3839 ] } ], "vac_ban_count": [ - 38 + 40 ], "vac_banned": [ - 3 + 5 ], "weapon_stats": [ - 3754, + 3871, { "distinct_on": [ - 3770, + 3887, "[player_weapon_stats_v_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 3769, + 3886, "[player_weapon_stats_v_order_by!]" ], "where": [ - 3763 + 3880 ] } ], "weapon_stats_aggregate": [ - 3755, + 3872, { "distinct_on": [ - 3770, + 3887, "[player_weapon_stats_v_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 3769, + 3886, "[player_weapon_stats_v_order_by!]" ], "where": [ - 3763 + 3880 ] } ], "wins": [ - 38 + 40 ], "wins_competitive": [ - 38 + 40 ], "wins_duel": [ - 38 + 40 ], "wins_wingman": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "players_aggregate": { "aggregate": [ - 3789 + 3906 ], "nodes": [ - 3787 + 3904 ], "__typename": [ - 78 + 80 ] }, "players_aggregate_fields": { "avg": [ - 3790 + 3907 ], "count": [ - 38, + 40, { "columns": [ - 3802, + 3919, "[players_select_column!]" ], "distinct": [ - 3 + 5 ] } ], "max": [ - 3795 + 3912 ], "min": [ - 3796 + 3913 ], "stddev": [ - 3804 + 3921 ], "stddev_pop": [ - 3805 + 3922 ], "stddev_samp": [ - 3806 + 3923 ], "sum": [ - 3809 + 3926 ], "var_pop": [ - 3812 + 3929 ], "var_samp": [ - 3813 + 3930 ], "variance": [ - 3814 + 3931 ], "__typename": [ - 78 + 80 ] }, "players_avg_fields": { "days_since_last_ban": [ - 29 + 31 ], "faceit_elo": [ - 29 + 31 ], "faceit_skill_level": [ - 29 + 31 ], "game_ban_count": [ - 29 + 31 ], "losses": [ - 38 + 40 ], "losses_competitive": [ - 38 + 40 ], "losses_duel": [ - 38 + 40 ], "losses_wingman": [ - 38 + 40 ], "premier_rank": [ - 29 + 31 ], "steam_id": [ - 29 + 31 ], "total_matches": [ - 38 + 40 ], "vac_ban_count": [ - 29 + 31 ], "wins": [ - 38 + 40 ], "wins_competitive": [ - 38 + 40 ], "wins_duel": [ - 38 + 40 ], "wins_wingman": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "players_bool_exp": { "_and": [ - 3791 + 3908 ], "_not": [ - 3791 + 3908 ], "_or": [ - 3791 + 3908 ], "abandoned_matches": [ - 120 + 123 ], "abandoned_matches_aggregate": [ - 113 + 116 ], "aim_weapon_stats": [ - 2935 + 3052 ], "aim_weapon_stats_aggregate": [ - 2928 + 3045 ], "assists": [ - 2978 + 3095 ], "assists_aggregate": [ - 2969 + 3086 ], "assited_by_players": [ - 2978 + 3095 ], "assited_by_players_aggregate": [ - 2969 + 3086 ], "avatar_url": [ - 80 + 82 + ], + "awards": [ + 192 + ], + "awards_aggregate": [ + 185 ], "coach_lineups": [ - 2333 + 2450 ], "coach_lineups_aggregate": [ - 2326 + 2443 ], "country": [ - 80 + 82 ], "created_at": [ - 4377 + 4494 ], "current_lobby_id": [ - 4923 + 4995 ], "custom_avatar_url": [ - 80 + 82 ], "damage_dealt": [ - 3039 + 3156 ], "damage_dealt_aggregate": [ - 3032 + 3149 ], "damage_taken": [ - 3039 + 3156 ], "damage_taken_aggregate": [ - 3032 + 3149 ], "days_since_last_ban": [ - 39 + 41 ], "deaths": [ - 3195 + 3312 ], "deaths_aggregate": [ - 3186 + 3303 ], "discord_id": [ - 80 + 82 ], "draft_game_players": [ - 347 + 424 ], "draft_game_players_aggregate": [ - 338 + 415 ], "elo": [ - 1702 + 1819 ], "elo_history": [ - 5317 + 5389 ], "elo_history_aggregate": [ - 5300 + 5372 ], "faceit_elo": [ - 39 + 41 ], "faceit_nickname": [ - 80 + 82 ], "faceit_player_id": [ - 80 + 82 ], "faceit_rank_history": [ - 3107 + 3224 ], "faceit_rank_history_aggregate": [ - 3100 + 3217 ], "faceit_skill_level": [ - 39 + 41 ], "faceit_updated_at": [ - 4377 + 4494 ], "faceit_url": [ - 80 + 82 ], "flashed_by_players": [ - 3150 + 3267 ], "flashed_by_players_aggregate": [ - 3141 + 3258 ], "flashed_players": [ - 3150 + 3267 ], "flashed_players_aggregate": [ - 3141 + 3258 ], "friends": [ - 2716 + 2833 ], "friends_aggregate": [ - 2706 + 2823 ], "game_ban_count": [ - 39 + 41 ], "invited_players": [ - 4055 + 4172 ], "invited_players_aggregate": [ - 4048 + 4165 ], "is_banned": [ - 4 + 6 ], "is_gagged": [ - 4 + 6 ], "is_in_another_match": [ - 4 + 6 ], "is_in_draft": [ - 4 + 6 ], "is_in_lobby": [ - 4 + 6 ], "is_muted": [ - 4 + 6 ], "kills": [ - 3195 + 3312 ], "kills_aggregate": [ - 3186 + 3303 ], "kills_by_weapons": [ - 3205 + 3322 ], "kills_by_weapons_aggregate": [ - 3198 + 3315 ], "language": [ - 80 + 82 ], "last_read_news_at": [ - 4377 + 4494 ], "last_sign_in_at": [ - 4377 + 4494 ], "lobby_players": [ - 2109 + 2226 ], "lobby_players_aggregate": [ - 2100 + 2217 ], "losses": [ - 39 + 41 ], "losses_competitive": [ - 39 + 41 ], "losses_duel": [ - 39 + 41 ], "losses_wingman": [ - 39 + 41 ], "match_map_hltv": [ - 5412 + 5484 ], "match_map_hltv_aggregate": [ - 5405 + 5477 ], "match_map_stats": [ - 3302 + 3419 ], "match_map_stats_aggregate": [ - 3295 + 3412 ], "match_stats": [ - 3361 + 3478 ], "match_stats_aggregate": [ - 3354 + 3471 ], "matches": [ - 2653 + 2770 ], "matchmaking_cooldown": [ - 4377 + 4494 ], "multi_kills": [ - 5503 + 5575 ], "multi_kills_aggregate": [ - 5496 + 5568 ], "name": [ - 80 + 82 ], "name_registered": [ - 4 + 6 ], "notifications": [ - 2789 + 2906 ], "notifications_aggregate": [ - 2779 + 2896 ], "objectives": [ - 3394 + 3511 ], "objectives_aggregate": [ - 3387 + 3504 ], "owned_teams": [ - 4340 + 4457 ], "owned_teams_aggregate": [ - 4331 + 4448 ], "peak_elo": [ - 1702 + 1819 ], "pending_match_imports": [ - 2839 + 2956 ], "pending_match_imports_aggregate": [ - 2832 + 2949 ], "player_lineup": [ - 2290 + 2407 ], "player_lineup_aggregate": [ - 2281 + 2398 ], "player_unused_utilities": [ - 3681 + 3798 ], "player_unused_utilities_aggregate": [ - 3674 + 3791 ], "premier_rank": [ - 39 + 41 ], "premier_rank_history": [ - 3453 + 3570 ], "premier_rank_history_aggregate": [ - 3446 + 3563 ], "premier_rank_updated_at": [ - 4377 + 4494 ], "profile_url": [ - 80 + 82 ], "role": [ - 949 + 1066 ], "roster_image_url": [ - 80 + 82 ], "sanctions": [ - 3494 + 3611 ], "sanctions_aggregate": [ - 3487 + 3604 ], "season_stats": [ - 3545 + 3662 ], "season_stats_aggregate": [ - 3528 + 3645 ], "show_match_ready_modal": [ - 4 + 6 ], "stats": [ - 3589 + 3706 ], "steam_bans_checked_at": [ - 4377 + 4494 ], "steam_id": [ - 182 + 254 ], "team_invites": [ - 4055 + 4172 ], "team_invites_aggregate": [ - 4048 + 4165 ], "team_members": [ - 4098 + 4215 ], "team_members_aggregate": [ - 4089 + 4206 ], "teams": [ - 4340 + 4457 ], "total_matches": [ - 39 + 41 ], "tournament_organizers": [ - 4481 + 4640 ], "tournament_organizers_aggregate": [ - 4474 + 4633 ], "tournament_rosters": [ - 4696 + 4855 ], "tournament_rosters_aggregate": [ - 4689 - ], - "tournament_trophies": [ - 4781 - ], - "tournament_trophies_aggregate": [ - 4772 + 4848 ], "tournaments": [ - 4878 + 4950 ], "tournaments_aggregate": [ - 4859 + 4931 ], "utility_thrown": [ - 3722 + 3839 ], "utility_thrown_aggregate": [ - 3715 + 3832 ], "vac_ban_count": [ - 39 + 41 ], "vac_banned": [ - 4 + 6 ], "weapon_stats": [ - 3763 + 3880 ], "weapon_stats_aggregate": [ - 3756 + 3873 ], "wins": [ - 39 + 41 ], "wins_competitive": [ - 39 + 41 ], "wins_duel": [ - 39 + 41 ], "wins_wingman": [ - 39 + 41 ], "__typename": [ - 78 + 80 ] }, "players_constraint": {}, "players_inc_input": { "days_since_last_ban": [ - 38 + 40 ], "faceit_elo": [ - 38 + 40 ], "faceit_skill_level": [ - 38 + 40 ], "game_ban_count": [ - 38 + 40 ], "premier_rank": [ - 38 + 40 ], "steam_id": [ - 180 + 252 ], "vac_ban_count": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "players_insert_input": { "abandoned_matches": [ - 117 + 120 ], "aim_weapon_stats": [ - 2932 + 3049 ], "assists": [ - 2975 + 3092 ], "assited_by_players": [ - 2975 + 3092 ], "avatar_url": [ - 78 + 80 + ], + "awards": [ + 189 ], "coach_lineups": [ - 2330 + 2447 ], "country": [ - 78 + 80 ], "created_at": [ - 4376 + 4493 ], "custom_avatar_url": [ - 78 + 80 ], "damage_dealt": [ - 3036 + 3153 ], "damage_taken": [ - 3036 + 3153 ], "days_since_last_ban": [ - 38 + 40 ], "deaths": [ - 3192 + 3309 ], "discord_id": [ - 78 + 80 ], "draft_game_players": [ - 344 + 421 ], "elo_history": [ - 5314 + 5386 ], "faceit_elo": [ - 38 + 40 ], "faceit_nickname": [ - 78 + 80 ], "faceit_player_id": [ - 78 + 80 ], "faceit_rank_history": [ - 3104 + 3221 ], "faceit_skill_level": [ - 38 + 40 ], "faceit_updated_at": [ - 4376 + 4493 ], "faceit_url": [ - 78 + 80 ], "flashed_by_players": [ - 3147 + 3264 ], "flashed_players": [ - 3147 + 3264 ], "friends": [ - 2713 + 2830 ], "game_ban_count": [ - 38 + 40 ], "invited_players": [ - 4052 + 4169 ], "kills": [ - 3192 + 3309 ], "kills_by_weapons": [ - 3202 + 3319 ], "language": [ - 78 + 80 ], "last_read_news_at": [ - 4376 + 4493 ], "last_sign_in_at": [ - 4376 + 4493 ], "lobby_players": [ - 2106 + 2223 ], "match_map_hltv": [ - 5409 + 5481 ], "match_map_stats": [ - 3299 + 3416 ], "match_stats": [ - 3358 + 3475 ], "multi_kills": [ - 5500 + 5572 ], "name": [ - 78 + 80 ], "name_registered": [ - 3 + 5 ], "notifications": [ - 2786 + 2903 ], "objectives": [ - 3391 + 3508 ], "owned_teams": [ - 4337 + 4454 ], "pending_match_imports": [ - 2836 + 2953 ], "player_lineup": [ - 2287 + 2404 ], "player_unused_utilities": [ - 3678 + 3795 ], "premier_rank": [ - 38 + 40 ], "premier_rank_history": [ - 3450 + 3567 ], "premier_rank_updated_at": [ - 4376 + 4493 ], "profile_url": [ - 78 + 80 ], "role": [ - 948 + 1065 ], "roster_image_url": [ - 78 + 80 ], "sanctions": [ - 3491 + 3608 ], "season_stats": [ - 3542 + 3659 ], "show_match_ready_modal": [ - 3 + 5 ], "stats": [ - 3596 + 3713 ], "steam_bans_checked_at": [ - 4376 + 4493 ], "steam_id": [ - 180 + 252 ], "team_invites": [ - 4052 + 4169 ], "team_members": [ - 4095 + 4212 ], "tournament_organizers": [ - 4478 + 4637 ], "tournament_rosters": [ - 4693 - ], - "tournament_trophies": [ - 4778 + 4852 ], "tournaments": [ - 4875 + 4947 ], "utility_thrown": [ - 3719 + 3836 ], "vac_ban_count": [ - 38 + 40 ], "vac_banned": [ - 3 + 5 ], "weapon_stats": [ - 3760 + 3877 ], "__typename": [ - 78 + 80 ] }, "players_max_fields": { "avatar_url": [ - 78 + 80 ], "country": [ - 78 + 80 ], "created_at": [ - 4376 + 4493 ], "current_lobby_id": [ - 4921 + 4993 ], "custom_avatar_url": [ - 78 + 80 ], "days_since_last_ban": [ - 38 + 40 ], "discord_id": [ - 78 + 80 ], "faceit_elo": [ - 38 + 40 ], "faceit_nickname": [ - 78 + 80 ], "faceit_player_id": [ - 78 + 80 ], "faceit_skill_level": [ - 38 + 40 ], "faceit_updated_at": [ - 4376 + 4493 ], "faceit_url": [ - 78 + 80 ], "game_ban_count": [ - 38 + 40 ], "language": [ - 78 + 80 ], "last_read_news_at": [ - 4376 + 4493 ], "last_sign_in_at": [ - 4376 + 4493 ], "losses": [ - 38 + 40 ], "losses_competitive": [ - 38 + 40 ], "losses_duel": [ - 38 + 40 ], "losses_wingman": [ - 38 + 40 ], "matchmaking_cooldown": [ - 4376 + 4493 ], "name": [ - 78 + 80 ], "premier_rank": [ - 38 + 40 ], "premier_rank_updated_at": [ - 4376 + 4493 ], "profile_url": [ - 78 + 80 ], "roster_image_url": [ - 78 + 80 ], "steam_bans_checked_at": [ - 4376 + 4493 ], "steam_id": [ - 180 + 252 ], "total_matches": [ - 38 + 40 ], "vac_ban_count": [ - 38 + 40 ], "wins": [ - 38 + 40 ], "wins_competitive": [ - 38 + 40 ], "wins_duel": [ - 38 + 40 ], "wins_wingman": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "players_min_fields": { "avatar_url": [ - 78 + 80 ], "country": [ - 78 + 80 ], "created_at": [ - 4376 + 4493 ], "current_lobby_id": [ - 4921 + 4993 ], "custom_avatar_url": [ - 78 + 80 ], "days_since_last_ban": [ - 38 + 40 ], "discord_id": [ - 78 + 80 ], "faceit_elo": [ - 38 + 40 ], "faceit_nickname": [ - 78 + 80 ], "faceit_player_id": [ - 78 + 80 ], "faceit_skill_level": [ - 38 + 40 ], "faceit_updated_at": [ - 4376 + 4493 ], "faceit_url": [ - 78 + 80 ], "game_ban_count": [ - 38 + 40 ], "language": [ - 78 + 80 ], "last_read_news_at": [ - 4376 + 4493 ], "last_sign_in_at": [ - 4376 + 4493 ], "losses": [ - 38 + 40 ], "losses_competitive": [ - 38 + 40 ], "losses_duel": [ - 38 + 40 ], "losses_wingman": [ - 38 + 40 ], "matchmaking_cooldown": [ - 4376 + 4493 ], "name": [ - 78 + 80 ], "premier_rank": [ - 38 + 40 ], "premier_rank_updated_at": [ - 4376 + 4493 ], "profile_url": [ - 78 + 80 ], "roster_image_url": [ - 78 + 80 ], "steam_bans_checked_at": [ - 4376 + 4493 ], "steam_id": [ - 180 + 252 ], "total_matches": [ - 38 + 40 ], "vac_ban_count": [ - 38 + 40 ], "wins": [ - 38 + 40 ], "wins_competitive": [ - 38 + 40 ], "wins_duel": [ - 38 + 40 ], "wins_wingman": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "players_mutation_response": { "affected_rows": [ - 38 + 40 ], "returning": [ - 3787 + 3904 ], "__typename": [ - 78 + 80 ] }, "players_obj_rel_insert_input": { "data": [ - 3794 + 3911 ], "on_conflict": [ - 3799 + 3916 ], "__typename": [ - 78 + 80 ] }, "players_on_conflict": { "constraint": [ - 3792 + 3909 ], "update_columns": [ - 3810 + 3927 ], "where": [ - 3791 + 3908 ], "__typename": [ - 78 + 80 ] }, "players_order_by": { "abandoned_matches_aggregate": [ - 116 + 119 ], "aim_weapon_stats_aggregate": [ - 2931 + 3048 ], "assists_aggregate": [ - 2974 + 3091 ], "assited_by_players_aggregate": [ - 2974 + 3091 ], "avatar_url": [ - 2829 + 2946 + ], + "awards_aggregate": [ + 188 ], "coach_lineups_aggregate": [ - 2329 + 2446 ], "country": [ - 2829 + 2946 ], "created_at": [ - 2829 + 2946 ], "current_lobby_id": [ - 2829 + 2946 ], "custom_avatar_url": [ - 2829 + 2946 ], "damage_dealt_aggregate": [ - 3035 + 3152 ], "damage_taken_aggregate": [ - 3035 + 3152 ], "days_since_last_ban": [ - 2829 + 2946 ], "deaths_aggregate": [ - 3191 + 3308 ], "discord_id": [ - 2829 + 2946 ], "draft_game_players_aggregate": [ - 343 + 420 ], "elo": [ - 2829 + 2946 ], "elo_history_aggregate": [ - 5313 + 5385 ], "faceit_elo": [ - 2829 + 2946 ], "faceit_nickname": [ - 2829 + 2946 ], "faceit_player_id": [ - 2829 + 2946 ], "faceit_rank_history_aggregate": [ - 3103 + 3220 ], "faceit_skill_level": [ - 2829 + 2946 ], "faceit_updated_at": [ - 2829 + 2946 ], "faceit_url": [ - 2829 + 2946 ], "flashed_by_players_aggregate": [ - 3146 + 3263 ], "flashed_players_aggregate": [ - 3146 + 3263 ], "friends_aggregate": [ - 2711 + 2828 ], "game_ban_count": [ - 2829 + 2946 ], "invited_players_aggregate": [ - 4051 + 4168 ], "is_banned": [ - 2829 + 2946 ], "is_gagged": [ - 2829 + 2946 ], "is_in_another_match": [ - 2829 + 2946 ], "is_in_draft": [ - 2829 + 2946 ], "is_in_lobby": [ - 2829 + 2946 ], "is_muted": [ - 2829 + 2946 ], "kills_aggregate": [ - 3191 + 3308 ], "kills_by_weapons_aggregate": [ - 3201 + 3318 ], "language": [ - 2829 + 2946 ], "last_read_news_at": [ - 2829 + 2946 ], "last_sign_in_at": [ - 2829 + 2946 ], "lobby_players_aggregate": [ - 2105 + 2222 ], "losses": [ - 2829 + 2946 ], "losses_competitive": [ - 2829 + 2946 ], "losses_duel": [ - 2829 + 2946 ], "losses_wingman": [ - 2829 + 2946 ], "match_map_hltv_aggregate": [ - 5408 + 5480 ], "match_map_stats_aggregate": [ - 3298 + 3415 ], "match_stats_aggregate": [ - 3357 + 3474 ], "matches_aggregate": [ - 2649 + 2766 ], "matchmaking_cooldown": [ - 2829 + 2946 ], "multi_kills_aggregate": [ - 5499 + 5571 ], "name": [ - 2829 + 2946 ], "name_registered": [ - 2829 + 2946 ], "notifications_aggregate": [ - 2784 + 2901 ], "objectives_aggregate": [ - 3390 + 3507 ], "owned_teams_aggregate": [ - 4336 + 4453 ], "peak_elo": [ - 2829 + 2946 ], "pending_match_imports_aggregate": [ - 2835 + 2952 ], "player_lineup_aggregate": [ - 2286 + 2403 ], "player_unused_utilities_aggregate": [ - 3677 + 3794 ], "premier_rank": [ - 2829 + 2946 ], "premier_rank_history_aggregate": [ - 3449 + 3566 ], "premier_rank_updated_at": [ - 2829 + 2946 ], "profile_url": [ - 2829 + 2946 ], "role": [ - 2829 + 2946 ], "roster_image_url": [ - 2829 + 2946 ], "sanctions_aggregate": [ - 3490 + 3607 ], "season_stats_aggregate": [ - 3541 + 3658 ], "show_match_ready_modal": [ - 2829 + 2946 ], "stats": [ - 3598 + 3715 ], "steam_bans_checked_at": [ - 2829 + 2946 ], "steam_id": [ - 2829 + 2946 ], "team_invites_aggregate": [ - 4051 + 4168 ], "team_members_aggregate": [ - 4094 + 4211 ], "teams_aggregate": [ - 4336 + 4453 ], "total_matches": [ - 2829 + 2946 ], "tournament_organizers_aggregate": [ - 4477 + 4636 ], "tournament_rosters_aggregate": [ - 4692 - ], - "tournament_trophies_aggregate": [ - 4777 + 4851 ], "tournaments_aggregate": [ - 4874 + 4946 ], "utility_thrown_aggregate": [ - 3718 + 3835 ], "vac_ban_count": [ - 2829 + 2946 ], "vac_banned": [ - 2829 + 2946 ], "weapon_stats_aggregate": [ - 3759 + 3876 ], "wins": [ - 2829 + 2946 ], "wins_competitive": [ - 2829 + 2946 ], "wins_duel": [ - 2829 + 2946 ], "wins_wingman": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "players_pk_columns_input": { "steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "players_select_column": {}, "players_set_input": { "avatar_url": [ - 78 + 80 ], "country": [ - 78 + 80 ], "created_at": [ - 4376 + 4493 ], "custom_avatar_url": [ - 78 + 80 ], "days_since_last_ban": [ - 38 + 40 ], "discord_id": [ - 78 + 80 ], "faceit_elo": [ - 38 + 40 ], "faceit_nickname": [ - 78 + 80 ], "faceit_player_id": [ - 78 + 80 ], "faceit_skill_level": [ - 38 + 40 ], "faceit_updated_at": [ - 4376 + 4493 ], "faceit_url": [ - 78 + 80 ], "game_ban_count": [ - 38 + 40 ], "language": [ - 78 + 80 ], "last_read_news_at": [ - 4376 + 4493 ], "last_sign_in_at": [ - 4376 + 4493 ], "name": [ - 78 + 80 ], "name_registered": [ - 3 + 5 ], "premier_rank": [ - 38 + 40 ], "premier_rank_updated_at": [ - 4376 + 4493 ], "profile_url": [ - 78 + 80 ], "role": [ - 948 + 1065 ], "roster_image_url": [ - 78 + 80 ], "show_match_ready_modal": [ - 3 + 5 ], "steam_bans_checked_at": [ - 4376 + 4493 ], "steam_id": [ - 180 + 252 ], "vac_ban_count": [ - 38 + 40 ], "vac_banned": [ - 3 + 5 ], "__typename": [ - 78 + 80 ] }, "players_stddev_fields": { "days_since_last_ban": [ - 29 + 31 ], "faceit_elo": [ - 29 + 31 ], "faceit_skill_level": [ - 29 + 31 ], "game_ban_count": [ - 29 + 31 ], "losses": [ - 38 + 40 ], "losses_competitive": [ - 38 + 40 ], "losses_duel": [ - 38 + 40 ], "losses_wingman": [ - 38 + 40 ], "premier_rank": [ - 29 + 31 ], "steam_id": [ - 29 + 31 ], "total_matches": [ - 38 + 40 ], "vac_ban_count": [ - 29 + 31 ], "wins": [ - 38 + 40 ], "wins_competitive": [ - 38 + 40 ], "wins_duel": [ - 38 + 40 ], "wins_wingman": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "players_stddev_pop_fields": { "days_since_last_ban": [ - 29 + 31 ], "faceit_elo": [ - 29 + 31 ], "faceit_skill_level": [ - 29 + 31 ], "game_ban_count": [ - 29 + 31 ], "losses": [ - 38 + 40 ], "losses_competitive": [ - 38 + 40 ], "losses_duel": [ - 38 + 40 ], "losses_wingman": [ - 38 + 40 ], "premier_rank": [ - 29 + 31 ], "steam_id": [ - 29 + 31 ], "total_matches": [ - 38 + 40 ], "vac_ban_count": [ - 29 + 31 ], "wins": [ - 38 + 40 ], "wins_competitive": [ - 38 + 40 ], "wins_duel": [ - 38 + 40 ], "wins_wingman": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "players_stddev_samp_fields": { "days_since_last_ban": [ - 29 + 31 ], "faceit_elo": [ - 29 + 31 ], "faceit_skill_level": [ - 29 + 31 ], "game_ban_count": [ - 29 + 31 ], "losses": [ - 38 + 40 ], "losses_competitive": [ - 38 + 40 ], "losses_duel": [ - 38 + 40 ], "losses_wingman": [ - 38 + 40 ], "premier_rank": [ - 29 + 31 ], "steam_id": [ - 29 + 31 ], "total_matches": [ - 38 + 40 ], "vac_ban_count": [ - 29 + 31 ], "wins": [ - 38 + 40 ], "wins_competitive": [ - 38 + 40 ], "wins_duel": [ - 38 + 40 ], "wins_wingman": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "players_stream_cursor_input": { "initial_value": [ - 3808 + 3925 ], "ordering": [ - 236 + 308 ], "__typename": [ - 78 + 80 ] }, "players_stream_cursor_value_input": { "avatar_url": [ - 78 + 80 ], "country": [ - 78 + 80 ], "created_at": [ - 4376 + 4493 ], "custom_avatar_url": [ - 78 + 80 ], "days_since_last_ban": [ - 38 + 40 ], "discord_id": [ - 78 + 80 ], "faceit_elo": [ - 38 + 40 ], "faceit_nickname": [ - 78 + 80 ], "faceit_player_id": [ - 78 + 80 ], "faceit_skill_level": [ - 38 + 40 ], "faceit_updated_at": [ - 4376 + 4493 ], "faceit_url": [ - 78 + 80 ], "game_ban_count": [ - 38 + 40 ], "language": [ - 78 + 80 ], "last_read_news_at": [ - 4376 + 4493 ], "last_sign_in_at": [ - 4376 + 4493 ], "name": [ - 78 + 80 ], "name_registered": [ - 3 + 5 ], "premier_rank": [ - 38 + 40 ], "premier_rank_updated_at": [ - 4376 + 4493 ], "profile_url": [ - 78 + 80 ], "role": [ - 948 + 1065 ], "roster_image_url": [ - 78 + 80 ], "show_match_ready_modal": [ - 3 + 5 ], "steam_bans_checked_at": [ - 4376 + 4493 ], "steam_id": [ - 180 + 252 ], "vac_ban_count": [ - 38 + 40 ], "vac_banned": [ - 3 + 5 ], "__typename": [ - 78 + 80 ] }, "players_sum_fields": { "days_since_last_ban": [ - 38 + 40 ], "faceit_elo": [ - 38 + 40 ], "faceit_skill_level": [ - 38 + 40 ], "game_ban_count": [ - 38 + 40 ], "losses": [ - 38 + 40 ], "losses_competitive": [ - 38 + 40 ], "losses_duel": [ - 38 + 40 ], "losses_wingman": [ - 38 + 40 ], "premier_rank": [ - 38 + 40 ], "steam_id": [ - 180 + 252 ], "total_matches": [ - 38 + 40 ], "vac_ban_count": [ - 38 + 40 ], "wins": [ - 38 + 40 ], "wins_competitive": [ - 38 + 40 ], "wins_duel": [ - 38 + 40 ], "wins_wingman": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "players_update_column": {}, "players_updates": { "_inc": [ - 3793 + 3910 ], "_set": [ - 3803 + 3920 ], "where": [ - 3791 + 3908 ], "__typename": [ - 78 + 80 ] }, "players_var_pop_fields": { "days_since_last_ban": [ - 29 + 31 ], "faceit_elo": [ - 29 + 31 ], "faceit_skill_level": [ - 29 + 31 ], "game_ban_count": [ - 29 + 31 ], "losses": [ - 38 + 40 ], "losses_competitive": [ - 38 + 40 ], "losses_duel": [ - 38 + 40 ], "losses_wingman": [ - 38 + 40 ], "premier_rank": [ - 29 + 31 ], "steam_id": [ - 29 + 31 ], "total_matches": [ - 38 + 40 ], "vac_ban_count": [ - 29 + 31 ], "wins": [ - 38 + 40 ], "wins_competitive": [ - 38 + 40 ], "wins_duel": [ - 38 + 40 ], "wins_wingman": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "players_var_samp_fields": { "days_since_last_ban": [ - 29 + 31 ], "faceit_elo": [ - 29 + 31 ], "faceit_skill_level": [ - 29 + 31 ], "game_ban_count": [ - 29 + 31 ], "losses": [ - 38 + 40 ], "losses_competitive": [ - 38 + 40 ], "losses_duel": [ - 38 + 40 ], "losses_wingman": [ - 38 + 40 ], "premier_rank": [ - 29 + 31 ], "steam_id": [ - 29 + 31 ], "total_matches": [ - 38 + 40 ], "vac_ban_count": [ - 29 + 31 ], "wins": [ - 38 + 40 ], "wins_competitive": [ - 38 + 40 ], "wins_duel": [ - 38 + 40 ], "wins_wingman": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "players_variance_fields": { "days_since_last_ban": [ - 29 + 31 ], "faceit_elo": [ - 29 + 31 ], "faceit_skill_level": [ - 29 + 31 ], "game_ban_count": [ - 29 + 31 ], "losses": [ - 38 + 40 ], "losses_competitive": [ - 38 + 40 ], "losses_duel": [ - 38 + 40 ], "losses_wingman": [ - 38 + 40 ], "premier_rank": [ - 29 + 31 ], "steam_id": [ - 29 + 31 ], "total_matches": [ - 38 + 40 ], "vac_ban_count": [ - 29 + 31 ], "wins": [ - 38 + 40 ], "wins_competitive": [ - 38 + 40 ], "wins_duel": [ - 38 + 40 ], "wins_wingman": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "plugin_versions": { "min_game_build_id": [ - 38 + 40 ], "published_at": [ - 4376 + 4493 ], "runtime": [ - 968 + 1085 ], "version": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "plugin_versions_aggregate": { "aggregate": [ - 3817 + 3934 ], "nodes": [ - 3815 + 3932 ], "__typename": [ - 78 + 80 ] }, "plugin_versions_aggregate_fields": { "avg": [ - 3818 + 3935 ], "count": [ - 38, + 40, { "columns": [ - 3829, + 3946, "[plugin_versions_select_column!]" ], "distinct": [ - 3 + 5 ] } ], "max": [ - 3823 + 3940 ], "min": [ - 3824 + 3941 ], "stddev": [ - 3831 + 3948 ], "stddev_pop": [ - 3832 + 3949 ], "stddev_samp": [ - 3833 + 3950 ], "sum": [ - 3836 + 3953 ], "var_pop": [ - 3839 + 3956 ], "var_samp": [ - 3840 + 3957 ], "variance": [ - 3841 + 3958 ], "__typename": [ - 78 + 80 ] }, "plugin_versions_avg_fields": { "min_game_build_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "plugin_versions_bool_exp": { "_and": [ - 3819 + 3936 ], "_not": [ - 3819 + 3936 ], "_or": [ - 3819 + 3936 ], "min_game_build_id": [ - 39 + 41 ], "published_at": [ - 4377 + 4494 ], "runtime": [ - 969 + 1086 ], "version": [ - 80 + 82 ], "__typename": [ - 78 + 80 ] }, "plugin_versions_constraint": {}, "plugin_versions_inc_input": { "min_game_build_id": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "plugin_versions_insert_input": { "min_game_build_id": [ - 38 + 40 ], "published_at": [ - 4376 + 4493 ], "runtime": [ - 968 + 1085 ], "version": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "plugin_versions_max_fields": { "min_game_build_id": [ - 38 + 40 ], "published_at": [ - 4376 + 4493 ], "version": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "plugin_versions_min_fields": { "min_game_build_id": [ - 38 + 40 ], "published_at": [ - 4376 + 4493 ], "version": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "plugin_versions_mutation_response": { "affected_rows": [ - 38 + 40 ], "returning": [ - 3815 + 3932 ], "__typename": [ - 78 + 80 ] }, "plugin_versions_on_conflict": { "constraint": [ - 3820 + 3937 ], "update_columns": [ - 3837 + 3954 ], "where": [ - 3819 + 3936 ], "__typename": [ - 78 + 80 ] }, "plugin_versions_order_by": { "min_game_build_id": [ - 2829 + 2946 ], "published_at": [ - 2829 + 2946 ], "runtime": [ - 2829 + 2946 ], "version": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "plugin_versions_pk_columns_input": { "runtime": [ - 968 + 1085 ], "version": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "plugin_versions_select_column": {}, "plugin_versions_set_input": { "min_game_build_id": [ - 38 + 40 ], "published_at": [ - 4376 + 4493 ], "runtime": [ - 968 + 1085 ], "version": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "plugin_versions_stddev_fields": { "min_game_build_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "plugin_versions_stddev_pop_fields": { "min_game_build_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "plugin_versions_stddev_samp_fields": { "min_game_build_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "plugin_versions_stream_cursor_input": { "initial_value": [ - 3835 + 3952 ], "ordering": [ - 236 + 308 ], "__typename": [ - 78 + 80 ] }, "plugin_versions_stream_cursor_value_input": { "min_game_build_id": [ - 38 + 40 ], "published_at": [ - 4376 + 4493 ], "runtime": [ - 968 + 1085 ], "version": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "plugin_versions_sum_fields": { "min_game_build_id": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "plugin_versions_update_column": {}, "plugin_versions_updates": { "_inc": [ - 3821 + 3938 ], "_set": [ - 3830 + 3947 ], "where": [ - 3819 + 3936 ], "__typename": [ - 78 + 80 ] }, "plugin_versions_var_pop_fields": { "min_game_build_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "plugin_versions_var_samp_fields": { "min_game_build_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "plugin_versions_variance_fields": { "min_game_build_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, - "recalculate_tournament_trophies_args": { + "recalculate_tournament_awards_args": { "_tournament_id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "remove_league_team_from_season_args": { "_league_team_season_id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "reorder_league_divisions_args": { "_division_ids": [ - 110 + 113 ], "__typename": [ - 78 + 80 ] }, "restart_league_season_args": { "_league_season_id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "seasons": { "created_at": [ - 4376 + 4493 ], "description": [ - 78 + 80 ], "ends_at": [ - 4376 + 4493 ], "id": [ - 4921 + 4993 ], "needs_rebuild": [ - 3 + 5 ], "number": [ - 38 + 40 ], "player_season_stats": [ - 3526, + 3643, { "distinct_on": [ - 3557, + 3674, "[player_season_stats_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 3555, + 3672, "[player_season_stats_order_by!]" ], "where": [ - 3545 + 3662 ] } ], "player_season_stats_aggregate": [ - 3527, + 3644, { "distinct_on": [ - 3557, + 3674, "[player_season_stats_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 3555, + 3672, "[player_season_stats_order_by!]" ], "where": [ - 3545 + 3662 ] } ], "starts_at": [ - 4376 + 4493 ], "__typename": [ - 78 + 80 ] }, "seasons_aggregate": { "aggregate": [ - 3848 + 3965 ], "nodes": [ - 3846 + 3963 ], "__typename": [ - 78 + 80 ] }, "seasons_aggregate_fields": { "avg": [ - 3849 + 3966 ], "count": [ - 38, + 40, { "columns": [ - 3861, + 3978, "[seasons_select_column!]" ], "distinct": [ - 3 + 5 ] } ], "max": [ - 3854 + 3971 ], "min": [ - 3855 + 3972 ], "stddev": [ - 3863 + 3980 ], "stddev_pop": [ - 3864 + 3981 ], "stddev_samp": [ - 3865 + 3982 ], "sum": [ - 3868 + 3985 ], "var_pop": [ - 3871 + 3988 ], "var_samp": [ - 3872 + 3989 ], "variance": [ - 3873 + 3990 ], "__typename": [ - 78 + 80 ] }, "seasons_avg_fields": { "number": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "seasons_bool_exp": { "_and": [ - 3850 + 3967 ], "_not": [ - 3850 + 3967 ], "_or": [ - 3850 + 3967 ], "created_at": [ - 4377 + 4494 ], "description": [ - 80 + 82 ], "ends_at": [ - 4377 + 4494 ], "id": [ - 4923 + 4995 ], "needs_rebuild": [ - 4 + 6 ], "number": [ - 39 + 41 ], "player_season_stats": [ - 3545 + 3662 ], "player_season_stats_aggregate": [ - 3528 + 3645 ], "starts_at": [ - 4377 + 4494 ], "__typename": [ - 78 + 80 ] }, "seasons_constraint": {}, "seasons_inc_input": { "number": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "seasons_insert_input": { "created_at": [ - 4376 + 4493 ], "description": [ - 78 + 80 ], "ends_at": [ - 4376 + 4493 ], "id": [ - 4921 + 4993 ], "needs_rebuild": [ - 3 + 5 ], "number": [ - 38 + 40 ], "player_season_stats": [ - 3542 + 3659 ], "starts_at": [ - 4376 + 4493 ], "__typename": [ - 78 + 80 ] }, "seasons_max_fields": { "created_at": [ - 4376 + 4493 ], "description": [ - 78 + 80 ], "ends_at": [ - 4376 + 4493 ], "id": [ - 4921 + 4993 ], "number": [ - 38 + 40 ], "starts_at": [ - 4376 + 4493 ], "__typename": [ - 78 + 80 ] }, "seasons_min_fields": { "created_at": [ - 4376 + 4493 ], "description": [ - 78 + 80 ], "ends_at": [ - 4376 + 4493 ], "id": [ - 4921 + 4993 ], "number": [ - 38 + 40 ], "starts_at": [ - 4376 + 4493 ], "__typename": [ - 78 + 80 ] }, "seasons_mutation_response": { "affected_rows": [ - 38 + 40 ], "returning": [ - 3846 + 3963 ], "__typename": [ - 78 + 80 ] }, "seasons_obj_rel_insert_input": { "data": [ - 3853 + 3970 ], "on_conflict": [ - 3858 + 3975 ], "__typename": [ - 78 + 80 ] }, "seasons_on_conflict": { "constraint": [ - 3851 + 3968 ], "update_columns": [ - 3869 + 3986 ], "where": [ - 3850 + 3967 ], "__typename": [ - 78 + 80 ] }, "seasons_order_by": { "created_at": [ - 2829 + 2946 ], "description": [ - 2829 + 2946 ], "ends_at": [ - 2829 + 2946 ], "id": [ - 2829 + 2946 ], "needs_rebuild": [ - 2829 + 2946 ], "number": [ - 2829 + 2946 ], "player_season_stats_aggregate": [ - 3541 + 3658 ], "starts_at": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "seasons_pk_columns_input": { "id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "seasons_select_column": {}, "seasons_set_input": { "created_at": [ - 4376 + 4493 ], "description": [ - 78 + 80 ], "ends_at": [ - 4376 + 4493 ], "id": [ - 4921 + 4993 ], "needs_rebuild": [ - 3 + 5 ], "number": [ - 38 + 40 ], "starts_at": [ - 4376 + 4493 ], "__typename": [ - 78 + 80 ] }, "seasons_stddev_fields": { "number": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "seasons_stddev_pop_fields": { "number": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "seasons_stddev_samp_fields": { "number": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "seasons_stream_cursor_input": { "initial_value": [ - 3867 + 3984 ], "ordering": [ - 236 + 308 ], "__typename": [ - 78 + 80 ] }, "seasons_stream_cursor_value_input": { "created_at": [ - 4376 + 4493 ], "description": [ - 78 + 80 ], "ends_at": [ - 4376 + 4493 ], "id": [ - 4921 + 4993 ], "needs_rebuild": [ - 3 + 5 ], "number": [ - 38 + 40 ], "starts_at": [ - 4376 + 4493 ], "__typename": [ - 78 + 80 ] }, "seasons_sum_fields": { "number": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "seasons_update_column": {}, "seasons_updates": { "_inc": [ - 3852 + 3969 ], "_set": [ - 3862 + 3979 ], "where": [ - 3850 + 3967 ], "__typename": [ - 78 + 80 ] }, "seasons_var_pop_fields": { "number": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "seasons_var_samp_fields": { "number": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "seasons_variance_fields": { "number": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "server_regions": { "available_server_count": [ - 38 + 40 ], "description": [ - 78 + 80 ], "game_server_nodes": [ - 1576, + 1693, { "distinct_on": [ - 1605, + 1722, "[game_server_nodes_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 1602, + 1719, "[game_server_nodes_order_by!]" ], "where": [ - 1588 + 1705 ] } ], "game_server_nodes_aggregate": [ - 1577, + 1694, { "distinct_on": [ - 1605, + 1722, "[game_server_nodes_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 1602, + 1719, "[game_server_nodes_order_by!]" ], "where": [ - 1588 + 1705 ] } ], "has_node": [ - 3 + 5 ], "is_lan": [ - 3 + 5 ], "status": [ - 78 + 80 ], "steam_relay": [ - 3 + 5 ], "total_server_count": [ - 38 + 40 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "server_regions_aggregate": { "aggregate": [ - 3876 + 3993 ], "nodes": [ - 3874 + 3991 ], "__typename": [ - 78 + 80 ] }, "server_regions_aggregate_fields": { "avg": [ - 3877 + 3994 ], "count": [ - 38, + 40, { "columns": [ - 3888, + 4005, "[server_regions_select_column!]" ], "distinct": [ - 3 + 5 ] } ], "max": [ - 3881 + 3998 ], "min": [ - 3882 + 3999 ], "stddev": [ - 3890 + 4007 ], "stddev_pop": [ - 3891 + 4008 ], "stddev_samp": [ - 3892 + 4009 ], "sum": [ - 3895 + 4012 ], "var_pop": [ - 3898 + 4015 ], "var_samp": [ - 3899 + 4016 ], "variance": [ - 3900 + 4017 ], "__typename": [ - 78 + 80 ] }, "server_regions_avg_fields": { "available_server_count": [ - 38 + 40 ], "total_server_count": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "server_regions_bool_exp": { "_and": [ - 3878 + 3995 ], "_not": [ - 3878 + 3995 ], "_or": [ - 3878 + 3995 ], "available_server_count": [ - 39 + 41 ], "description": [ - 80 + 82 ], "game_server_nodes": [ - 1588 + 1705 ], "game_server_nodes_aggregate": [ - 1578 + 1695 ], "has_node": [ - 4 + 6 ], "is_lan": [ - 4 + 6 ], "status": [ - 80 + 82 ], "steam_relay": [ - 4 + 6 ], "total_server_count": [ - 39 + 41 ], "value": [ - 80 + 82 ], "__typename": [ - 78 + 80 ] }, "server_regions_constraint": {}, "server_regions_insert_input": { "description": [ - 78 + 80 ], "game_server_nodes": [ - 1585 + 1702 ], "is_lan": [ - 3 + 5 ], "steam_relay": [ - 3 + 5 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "server_regions_max_fields": { "available_server_count": [ - 38 + 40 ], "description": [ - 78 + 80 ], "status": [ - 78 + 80 ], "total_server_count": [ - 38 + 40 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "server_regions_min_fields": { "available_server_count": [ - 38 + 40 ], "description": [ - 78 + 80 ], "status": [ - 78 + 80 ], "total_server_count": [ - 38 + 40 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "server_regions_mutation_response": { "affected_rows": [ - 38 + 40 ], "returning": [ - 3874 + 3991 ], "__typename": [ - 78 + 80 ] }, "server_regions_obj_rel_insert_input": { "data": [ - 3880 + 3997 ], "on_conflict": [ - 3885 + 4002 ], "__typename": [ - 78 + 80 ] }, "server_regions_on_conflict": { "constraint": [ - 3879 + 3996 ], "update_columns": [ - 3896 + 4013 ], "where": [ - 3878 + 3995 ], "__typename": [ - 78 + 80 ] }, "server_regions_order_by": { "available_server_count": [ - 2829 + 2946 ], "description": [ - 2829 + 2946 ], "game_server_nodes_aggregate": [ - 1583 + 1700 ], "has_node": [ - 2829 + 2946 ], "is_lan": [ - 2829 + 2946 ], "status": [ - 2829 + 2946 ], "steam_relay": [ - 2829 + 2946 ], "total_server_count": [ - 2829 + 2946 ], "value": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "server_regions_pk_columns_input": { "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "server_regions_select_column": {}, "server_regions_set_input": { "description": [ - 78 + 80 ], "is_lan": [ - 3 + 5 ], "steam_relay": [ - 3 + 5 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "server_regions_stddev_fields": { "available_server_count": [ - 38 + 40 ], "total_server_count": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "server_regions_stddev_pop_fields": { "available_server_count": [ - 38 + 40 ], "total_server_count": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "server_regions_stddev_samp_fields": { "available_server_count": [ - 38 + 40 ], "total_server_count": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "server_regions_stream_cursor_input": { "initial_value": [ - 3894 + 4011 ], "ordering": [ - 236 + 308 ], "__typename": [ - 78 + 80 ] }, "server_regions_stream_cursor_value_input": { "description": [ - 78 + 80 ], "is_lan": [ - 3 + 5 ], "steam_relay": [ - 3 + 5 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "server_regions_sum_fields": { "available_server_count": [ - 38 + 40 ], "total_server_count": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "server_regions_update_column": {}, "server_regions_updates": { "_set": [ - 3889 + 4006 ], "where": [ - 3878 + 3995 ], "__typename": [ - 78 + 80 ] }, "server_regions_var_pop_fields": { "available_server_count": [ - 38 + 40 ], "total_server_count": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "server_regions_var_samp_fields": { "available_server_count": [ - 38 + 40 ], "total_server_count": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "server_regions_variance_fields": { "available_server_count": [ - 38 + 40 ], "total_server_count": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "servers": { "api_password": [ - 4921 + 4993 ], "boot_status": [ - 78 + 80 ], "boot_status_detail": [ - 78 + 80 ], "connect_password": [ - 78 + 80 ], "connected": [ - 3 + 5 ], "connection_link": [ - 78 + 80 ], "connection_string": [ - 78 + 80 ], "current_match": [ - 2644 + 2761 ], "enabled": [ - 3 + 5 ], "game": [ - 78 + 80 ], "game_server_node": [ - 1576 + 1693 ], "game_server_node_id": [ - 78 + 80 ], "host": [ - 78 + 80 ], "id": [ - 4921 + 4993 ], "is_dedicated": [ - 3 + 5 ], "label": [ - 78 + 80 ], "matches": [ - 2644, + 2761, { "distinct_on": [ - 2666, + 2783, "[matches_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2664, + 2781, "[matches_order_by!]" ], "where": [ - 2653 + 2770 ] } ], "matches_aggregate": [ - 2645, + 2762, { "distinct_on": [ - 2666, + 2783, "[matches_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2664, + 2781, "[matches_order_by!]" ], "where": [ - 2653 + 2770 ] } ], "max_players": [ - 38 + 40 ], "offline_at": [ - 4376 + 4493 ], "plugin_runtime": [ - 968 + 1085 ], "plugin_version": [ - 78 + 80 ], "port": [ - 38 + 40 ], "rcon_password": [ - 183 + 255 ], "rcon_status": [ - 3 + 5 ], "region": [ - 78 + 80 ], "reserved_by_match_id": [ - 4921 + 4993 ], "server_region": [ - 3874 + 3991 ], "steam_relay": [ - 78 + 80 ], "tv_port": [ - 38 + 40 ], "type": [ - 1049 + 1166 ], "updated_at": [ - 4376 + 4493 ], "__typename": [ - 78 + 80 ] }, "servers_aggregate": { "aggregate": [ - 3907 + 4024 ], "nodes": [ - 3901 + 4018 ], "__typename": [ - 78 + 80 ] }, "servers_aggregate_bool_exp": { "bool_and": [ - 3904 + 4021 ], "bool_or": [ - 3905 + 4022 ], "count": [ - 3906 + 4023 ], "__typename": [ - 78 + 80 ] }, "servers_aggregate_bool_exp_bool_and": { "arguments": [ - 3926 + 4043 ], "distinct": [ - 3 + 5 ], "filter": [ - 3912 + 4029 ], "predicate": [ - 4 + 6 ], "__typename": [ - 78 + 80 ] }, "servers_aggregate_bool_exp_bool_or": { "arguments": [ - 3927 + 4044 ], "distinct": [ - 3 + 5 ], "filter": [ - 3912 + 4029 ], "predicate": [ - 4 + 6 ], "__typename": [ - 78 + 80 ] }, "servers_aggregate_bool_exp_count": { "arguments": [ - 3925 + 4042 ], "distinct": [ - 3 + 5 ], "filter": [ - 3912 + 4029 ], "predicate": [ - 39 + 41 ], "__typename": [ - 78 + 80 ] }, "servers_aggregate_fields": { "avg": [ - 3910 + 4027 ], "count": [ - 38, + 40, { "columns": [ - 3925, + 4042, "[servers_select_column!]" ], "distinct": [ - 3 + 5 ] } ], "max": [ - 3916 + 4033 ], "min": [ - 3918 + 4035 ], "stddev": [ - 3929 + 4046 ], "stddev_pop": [ - 3931 + 4048 ], "stddev_samp": [ - 3933 + 4050 ], "sum": [ - 3937 + 4054 ], "var_pop": [ - 3941 + 4058 ], "var_samp": [ - 3943 + 4060 ], "variance": [ - 3945 + 4062 ], "__typename": [ - 78 + 80 ] }, "servers_aggregate_order_by": { "avg": [ - 3911 + 4028 ], "count": [ - 2829 + 2946 ], "max": [ - 3917 + 4034 ], "min": [ - 3919 + 4036 ], "stddev": [ - 3930 + 4047 ], "stddev_pop": [ - 3932 + 4049 ], "stddev_samp": [ - 3934 + 4051 ], "sum": [ - 3938 + 4055 ], "var_pop": [ - 3942 + 4059 ], "var_samp": [ - 3944 + 4061 ], "variance": [ - 3946 + 4063 ], "__typename": [ - 78 + 80 ] }, "servers_arr_rel_insert_input": { "data": [ - 3915 + 4032 ], "on_conflict": [ - 3922 + 4039 ], "__typename": [ - 78 + 80 ] }, "servers_avg_fields": { "max_players": [ - 29 + 31 ], "port": [ - 29 + 31 ], "tv_port": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "servers_avg_order_by": { "max_players": [ - 2829 + 2946 ], "port": [ - 2829 + 2946 ], "tv_port": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "servers_bool_exp": { "_and": [ - 3912 + 4029 ], "_not": [ - 3912 + 4029 ], "_or": [ - 3912 + 4029 ], "api_password": [ - 4923 + 4995 ], "boot_status": [ - 80 + 82 ], "boot_status_detail": [ - 80 + 82 ], "connect_password": [ - 80 + 82 ], "connected": [ - 4 + 6 ], "connection_link": [ - 80 + 82 ], "connection_string": [ - 80 + 82 ], "current_match": [ - 2653 + 2770 ], "enabled": [ - 4 + 6 ], "game": [ - 80 + 82 ], "game_server_node": [ - 1588 + 1705 ], "game_server_node_id": [ - 80 + 82 ], "host": [ - 80 + 82 ], "id": [ - 4923 + 4995 ], "is_dedicated": [ - 4 + 6 ], "label": [ - 80 + 82 ], "matches": [ - 2653 + 2770 ], "matches_aggregate": [ - 2646 + 2763 ], "max_players": [ - 39 + 41 ], "offline_at": [ - 4377 + 4494 ], "plugin_runtime": [ - 969 + 1086 ], "plugin_version": [ - 80 + 82 ], "port": [ - 39 + 41 ], "rcon_password": [ - 184 + 256 ], "rcon_status": [ - 4 + 6 ], "region": [ - 80 + 82 ], "reserved_by_match_id": [ - 4923 + 4995 ], "server_region": [ - 3878 + 3995 ], "steam_relay": [ - 80 + 82 ], "tv_port": [ - 39 + 41 ], "type": [ - 1050 + 1167 ], "updated_at": [ - 4377 + 4494 ], "__typename": [ - 78 + 80 ] }, "servers_constraint": {}, "servers_inc_input": { "max_players": [ - 38 + 40 ], "port": [ - 38 + 40 ], "tv_port": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "servers_insert_input": { "api_password": [ - 4921 + 4993 ], "boot_status": [ - 78 + 80 ], "boot_status_detail": [ - 78 + 80 ], "connect_password": [ - 78 + 80 ], "connected": [ - 3 + 5 ], "current_match": [ - 2662 + 2779 ], "enabled": [ - 3 + 5 ], "game": [ - 78 + 80 ], "game_server_node": [ - 1600 + 1717 ], "game_server_node_id": [ - 78 + 80 ], "host": [ - 78 + 80 ], "id": [ - 4921 + 4993 ], "is_dedicated": [ - 3 + 5 ], "label": [ - 78 + 80 ], "matches": [ - 2650 + 2767 ], "max_players": [ - 38 + 40 ], "offline_at": [ - 4376 + 4493 ], "plugin_runtime": [ - 968 + 1085 ], "plugin_version": [ - 78 + 80 ], "port": [ - 38 + 40 ], "rcon_password": [ - 183 + 255 ], "rcon_status": [ - 3 + 5 ], "region": [ - 78 + 80 ], "reserved_by_match_id": [ - 4921 + 4993 ], "server_region": [ - 3884 + 4001 ], "steam_relay": [ - 78 + 80 ], "tv_port": [ - 38 + 40 ], "type": [ - 1049 + 1166 ], "updated_at": [ - 4376 + 4493 ], "__typename": [ - 78 + 80 ] }, "servers_max_fields": { "api_password": [ - 4921 + 4993 ], "boot_status": [ - 78 + 80 ], "boot_status_detail": [ - 78 + 80 ], "connect_password": [ - 78 + 80 ], "connection_link": [ - 78 + 80 ], "connection_string": [ - 78 + 80 ], "game": [ - 78 + 80 ], "game_server_node_id": [ - 78 + 80 ], "host": [ - 78 + 80 ], "id": [ - 4921 + 4993 ], "label": [ - 78 + 80 ], "max_players": [ - 38 + 40 ], "offline_at": [ - 4376 + 4493 ], "plugin_version": [ - 78 + 80 ], "port": [ - 38 + 40 ], "region": [ - 78 + 80 ], "reserved_by_match_id": [ - 4921 + 4993 ], "steam_relay": [ - 78 + 80 ], "tv_port": [ - 38 + 40 ], "updated_at": [ - 4376 + 4493 ], "__typename": [ - 78 + 80 ] }, "servers_max_order_by": { "api_password": [ - 2829 + 2946 ], "boot_status": [ - 2829 + 2946 ], "boot_status_detail": [ - 2829 + 2946 ], "connect_password": [ - 2829 + 2946 ], "game": [ - 2829 + 2946 ], "game_server_node_id": [ - 2829 + 2946 ], "host": [ - 2829 + 2946 ], "id": [ - 2829 + 2946 ], "label": [ - 2829 + 2946 ], "max_players": [ - 2829 + 2946 ], "offline_at": [ - 2829 + 2946 ], "plugin_version": [ - 2829 + 2946 ], "port": [ - 2829 + 2946 ], "region": [ - 2829 + 2946 ], "reserved_by_match_id": [ - 2829 + 2946 ], "steam_relay": [ - 2829 + 2946 ], "tv_port": [ - 2829 + 2946 ], "updated_at": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "servers_min_fields": { "api_password": [ - 4921 + 4993 ], "boot_status": [ - 78 + 80 ], "boot_status_detail": [ - 78 + 80 ], "connect_password": [ - 78 + 80 ], "connection_link": [ - 78 + 80 ], "connection_string": [ - 78 + 80 ], "game": [ - 78 + 80 ], "game_server_node_id": [ - 78 + 80 ], "host": [ - 78 + 80 ], "id": [ - 4921 + 4993 ], "label": [ - 78 + 80 ], "max_players": [ - 38 + 40 ], "offline_at": [ - 4376 + 4493 ], "plugin_version": [ - 78 + 80 ], "port": [ - 38 + 40 ], "region": [ - 78 + 80 ], "reserved_by_match_id": [ - 4921 + 4993 ], "steam_relay": [ - 78 + 80 ], "tv_port": [ - 38 + 40 ], "updated_at": [ - 4376 + 4493 ], "__typename": [ - 78 + 80 ] }, "servers_min_order_by": { "api_password": [ - 2829 + 2946 ], "boot_status": [ - 2829 + 2946 ], "boot_status_detail": [ - 2829 + 2946 ], "connect_password": [ - 2829 + 2946 ], "game": [ - 2829 + 2946 ], "game_server_node_id": [ - 2829 + 2946 ], "host": [ - 2829 + 2946 ], "id": [ - 2829 + 2946 ], "label": [ - 2829 + 2946 ], "max_players": [ - 2829 + 2946 ], "offline_at": [ - 2829 + 2946 ], "plugin_version": [ - 2829 + 2946 ], "port": [ - 2829 + 2946 ], "region": [ - 2829 + 2946 ], "reserved_by_match_id": [ - 2829 + 2946 ], "steam_relay": [ - 2829 + 2946 ], "tv_port": [ - 2829 + 2946 ], "updated_at": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "servers_mutation_response": { "affected_rows": [ - 38 + 40 ], "returning": [ - 3901 + 4018 ], "__typename": [ - 78 + 80 ] }, "servers_obj_rel_insert_input": { "data": [ - 3915 + 4032 ], "on_conflict": [ - 3922 + 4039 ], "__typename": [ - 78 + 80 ] }, "servers_on_conflict": { "constraint": [ - 3913 + 4030 ], "update_columns": [ - 3939 + 4056 ], "where": [ - 3912 + 4029 ], "__typename": [ - 78 + 80 ] }, "servers_order_by": { "api_password": [ - 2829 + 2946 ], "boot_status": [ - 2829 + 2946 ], "boot_status_detail": [ - 2829 + 2946 ], "connect_password": [ - 2829 + 2946 ], "connected": [ - 2829 + 2946 ], "connection_link": [ - 2829 + 2946 ], "connection_string": [ - 2829 + 2946 ], "current_match": [ - 2664 + 2781 ], "enabled": [ - 2829 + 2946 ], "game": [ - 2829 + 2946 ], "game_server_node": [ - 1602 + 1719 ], "game_server_node_id": [ - 2829 + 2946 ], "host": [ - 2829 + 2946 ], "id": [ - 2829 + 2946 ], "is_dedicated": [ - 2829 + 2946 ], "label": [ - 2829 + 2946 ], "matches_aggregate": [ - 2649 + 2766 ], "max_players": [ - 2829 + 2946 ], "offline_at": [ - 2829 + 2946 ], "plugin_runtime": [ - 2829 + 2946 ], "plugin_version": [ - 2829 + 2946 ], "port": [ - 2829 + 2946 ], "rcon_password": [ - 2829 + 2946 ], "rcon_status": [ - 2829 + 2946 ], "region": [ - 2829 + 2946 ], "reserved_by_match_id": [ - 2829 + 2946 ], "server_region": [ - 3886 + 4003 ], "steam_relay": [ - 2829 + 2946 ], "tv_port": [ - 2829 + 2946 ], "type": [ - 2829 + 2946 ], "updated_at": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "servers_pk_columns_input": { "id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "servers_select_column": {}, @@ -91942,3125 +94169,3125 @@ export default { "servers_select_column_servers_aggregate_bool_exp_bool_or_arguments_columns": {}, "servers_set_input": { "api_password": [ - 4921 + 4993 ], "boot_status": [ - 78 + 80 ], "boot_status_detail": [ - 78 + 80 ], "connect_password": [ - 78 + 80 ], "connected": [ - 3 + 5 ], "enabled": [ - 3 + 5 ], "game": [ - 78 + 80 ], "game_server_node_id": [ - 78 + 80 ], "host": [ - 78 + 80 ], "id": [ - 4921 + 4993 ], "is_dedicated": [ - 3 + 5 ], "label": [ - 78 + 80 ], "max_players": [ - 38 + 40 ], "offline_at": [ - 4376 + 4493 ], "plugin_runtime": [ - 968 + 1085 ], "plugin_version": [ - 78 + 80 ], "port": [ - 38 + 40 ], "rcon_password": [ - 183 + 255 ], "rcon_status": [ - 3 + 5 ], "region": [ - 78 + 80 ], "reserved_by_match_id": [ - 4921 + 4993 ], "steam_relay": [ - 78 + 80 ], "tv_port": [ - 38 + 40 ], "type": [ - 1049 + 1166 ], "updated_at": [ - 4376 + 4493 ], "__typename": [ - 78 + 80 ] }, "servers_stddev_fields": { "max_players": [ - 29 + 31 ], "port": [ - 29 + 31 ], "tv_port": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "servers_stddev_order_by": { "max_players": [ - 2829 + 2946 ], "port": [ - 2829 + 2946 ], "tv_port": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "servers_stddev_pop_fields": { "max_players": [ - 29 + 31 ], "port": [ - 29 + 31 ], "tv_port": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "servers_stddev_pop_order_by": { "max_players": [ - 2829 + 2946 ], "port": [ - 2829 + 2946 ], "tv_port": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "servers_stddev_samp_fields": { "max_players": [ - 29 + 31 ], "port": [ - 29 + 31 ], "tv_port": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "servers_stddev_samp_order_by": { "max_players": [ - 2829 + 2946 ], "port": [ - 2829 + 2946 ], "tv_port": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "servers_stream_cursor_input": { "initial_value": [ - 3936 + 4053 ], "ordering": [ - 236 + 308 ], "__typename": [ - 78 + 80 ] }, "servers_stream_cursor_value_input": { "api_password": [ - 4921 + 4993 ], "boot_status": [ - 78 + 80 ], "boot_status_detail": [ - 78 + 80 ], "connect_password": [ - 78 + 80 ], "connected": [ - 3 + 5 ], "enabled": [ - 3 + 5 ], "game": [ - 78 + 80 ], "game_server_node_id": [ - 78 + 80 ], "host": [ - 78 + 80 ], "id": [ - 4921 + 4993 ], "is_dedicated": [ - 3 + 5 ], "label": [ - 78 + 80 ], "max_players": [ - 38 + 40 ], "offline_at": [ - 4376 + 4493 ], "plugin_runtime": [ - 968 + 1085 ], "plugin_version": [ - 78 + 80 ], "port": [ - 38 + 40 ], "rcon_password": [ - 183 + 255 ], "rcon_status": [ - 3 + 5 ], "region": [ - 78 + 80 ], "reserved_by_match_id": [ - 4921 + 4993 ], "steam_relay": [ - 78 + 80 ], "tv_port": [ - 38 + 40 ], "type": [ - 1049 + 1166 ], "updated_at": [ - 4376 + 4493 ], "__typename": [ - 78 + 80 ] }, "servers_sum_fields": { "max_players": [ - 38 + 40 ], "port": [ - 38 + 40 ], "tv_port": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "servers_sum_order_by": { "max_players": [ - 2829 + 2946 ], "port": [ - 2829 + 2946 ], "tv_port": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "servers_update_column": {}, "servers_updates": { "_inc": [ - 3914 + 4031 ], "_set": [ - 3928 + 4045 ], "where": [ - 3912 + 4029 ], "__typename": [ - 78 + 80 ] }, "servers_var_pop_fields": { "max_players": [ - 29 + 31 ], "port": [ - 29 + 31 ], "tv_port": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "servers_var_pop_order_by": { "max_players": [ - 2829 + 2946 ], "port": [ - 2829 + 2946 ], "tv_port": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "servers_var_samp_fields": { "max_players": [ - 29 + 31 ], "port": [ - 29 + 31 ], "tv_port": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "servers_var_samp_order_by": { "max_players": [ - 2829 + 2946 ], "port": [ - 2829 + 2946 ], "tv_port": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "servers_variance_fields": { "max_players": [ - 29 + 31 ], "port": [ - 29 + 31 ], "tv_port": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "servers_variance_order_by": { "max_players": [ - 2829 + 2946 ], "port": [ - 2829 + 2946 ], "tv_port": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "settings": { "name": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "settings_aggregate": { "aggregate": [ - 3949 + 4066 ], "nodes": [ - 3947 + 4064 ], "__typename": [ - 78 + 80 ] }, "settings_aggregate_fields": { "count": [ - 38, + 40, { "columns": [ - 3959, + 4076, "[settings_select_column!]" ], "distinct": [ - 3 + 5 ] } ], "max": [ - 3953 + 4070 ], "min": [ - 3954 + 4071 ], "__typename": [ - 78 + 80 ] }, "settings_bool_exp": { "_and": [ - 3950 + 4067 ], "_not": [ - 3950 + 4067 ], "_or": [ - 3950 + 4067 ], "name": [ - 80 + 82 ], "value": [ - 80 + 82 ], "__typename": [ - 78 + 80 ] }, "settings_constraint": {}, "settings_insert_input": { "name": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "settings_max_fields": { "name": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "settings_min_fields": { "name": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "settings_mutation_response": { "affected_rows": [ - 38 + 40 ], "returning": [ - 3947 + 4064 ], "__typename": [ - 78 + 80 ] }, "settings_on_conflict": { "constraint": [ - 3951 + 4068 ], "update_columns": [ - 3963 + 4080 ], "where": [ - 3950 + 4067 ], "__typename": [ - 78 + 80 ] }, "settings_order_by": { "name": [ - 2829 + 2946 ], "value": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "settings_pk_columns_input": { "name": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "settings_select_column": {}, "settings_set_input": { "name": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "settings_stream_cursor_input": { "initial_value": [ - 3962 + 4079 ], "ordering": [ - 236 + 308 ], "__typename": [ - 78 + 80 ] }, "settings_stream_cursor_value_input": { "name": [ - 78 + 80 ], "value": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "settings_update_column": {}, "settings_updates": { "_set": [ - 3960 + 4077 ], "where": [ - 3950 + 4067 ], "__typename": [ - 78 + 80 ] }, "smallint": {}, "smallint_comparison_exp": { "_eq": [ - 3965 + 4082 ], "_gt": [ - 3965 + 4082 ], "_gte": [ - 3965 + 4082 ], "_in": [ - 3965 + 4082 ], "_is_null": [ - 3 + 5 ], "_lt": [ - 3965 + 4082 ], "_lte": [ - 3965 + 4082 ], "_neq": [ - 3965 + 4082 ], "_nin": [ - 3965 + 4082 ], "__typename": [ - 78 + 80 ] }, "steam_account_claims": { "created_at": [ - 4376 + 4493 ], "id": [ - 4921 + 4993 ], "k8s_job_name": [ - 78 + 80 ], "node": [ - 1576 + 1693 ], "node_id": [ - 78 + 80 ], "purpose": [ - 78 + 80 ], "steam_account": [ - 3991 + 4108 ], "steam_account_id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "steam_account_claims_aggregate": { "aggregate": [ - 3971 + 4088 ], "nodes": [ - 3967 + 4084 ], "__typename": [ - 78 + 80 ] }, "steam_account_claims_aggregate_bool_exp": { "count": [ - 3970 + 4087 ], "__typename": [ - 78 + 80 ] }, "steam_account_claims_aggregate_bool_exp_count": { "arguments": [ - 3985 + 4102 ], "distinct": [ - 3 + 5 ], "filter": [ - 3974 + 4091 ], "predicate": [ - 39 + 41 ], "__typename": [ - 78 + 80 ] }, "steam_account_claims_aggregate_fields": { "count": [ - 38, + 40, { "columns": [ - 3985, + 4102, "[steam_account_claims_select_column!]" ], "distinct": [ - 3 + 5 ] } ], "max": [ - 3977 + 4094 ], "min": [ - 3979 + 4096 ], "__typename": [ - 78 + 80 ] }, "steam_account_claims_aggregate_order_by": { "count": [ - 2829 + 2946 ], "max": [ - 3978 + 4095 ], "min": [ - 3980 + 4097 ], "__typename": [ - 78 + 80 ] }, "steam_account_claims_arr_rel_insert_input": { "data": [ - 3976 + 4093 ], "on_conflict": [ - 3982 + 4099 ], "__typename": [ - 78 + 80 ] }, "steam_account_claims_bool_exp": { "_and": [ - 3974 + 4091 ], "_not": [ - 3974 + 4091 ], "_or": [ - 3974 + 4091 ], "created_at": [ - 4377 + 4494 ], "id": [ - 4923 + 4995 ], "k8s_job_name": [ - 80 + 82 ], "node": [ - 1588 + 1705 ], "node_id": [ - 80 + 82 ], "purpose": [ - 80 + 82 ], "steam_account": [ - 3995 + 4112 ], "steam_account_id": [ - 4923 + 4995 ], "__typename": [ - 78 + 80 ] }, "steam_account_claims_constraint": {}, "steam_account_claims_insert_input": { "created_at": [ - 4376 + 4493 ], "id": [ - 4921 + 4993 ], "k8s_job_name": [ - 78 + 80 ], "node": [ - 1600 + 1717 ], "node_id": [ - 78 + 80 ], "purpose": [ - 78 + 80 ], "steam_account": [ - 4002 + 4119 ], "steam_account_id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "steam_account_claims_max_fields": { "created_at": [ - 4376 + 4493 ], "id": [ - 4921 + 4993 ], "k8s_job_name": [ - 78 + 80 ], "node_id": [ - 78 + 80 ], "purpose": [ - 78 + 80 ], "steam_account_id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "steam_account_claims_max_order_by": { "created_at": [ - 2829 + 2946 ], "id": [ - 2829 + 2946 ], "k8s_job_name": [ - 2829 + 2946 ], "node_id": [ - 2829 + 2946 ], "purpose": [ - 2829 + 2946 ], "steam_account_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "steam_account_claims_min_fields": { "created_at": [ - 4376 + 4493 ], "id": [ - 4921 + 4993 ], "k8s_job_name": [ - 78 + 80 ], "node_id": [ - 78 + 80 ], "purpose": [ - 78 + 80 ], "steam_account_id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "steam_account_claims_min_order_by": { "created_at": [ - 2829 + 2946 ], "id": [ - 2829 + 2946 ], "k8s_job_name": [ - 2829 + 2946 ], "node_id": [ - 2829 + 2946 ], "purpose": [ - 2829 + 2946 ], "steam_account_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "steam_account_claims_mutation_response": { "affected_rows": [ - 38 + 40 ], "returning": [ - 3967 + 4084 ], "__typename": [ - 78 + 80 ] }, "steam_account_claims_on_conflict": { "constraint": [ - 3975 + 4092 ], "update_columns": [ - 3989 + 4106 ], "where": [ - 3974 + 4091 ], "__typename": [ - 78 + 80 ] }, "steam_account_claims_order_by": { "created_at": [ - 2829 + 2946 ], "id": [ - 2829 + 2946 ], "k8s_job_name": [ - 2829 + 2946 ], "node": [ - 1602 + 1719 ], "node_id": [ - 2829 + 2946 ], "purpose": [ - 2829 + 2946 ], "steam_account": [ - 4004 + 4121 ], "steam_account_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "steam_account_claims_pk_columns_input": { "id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "steam_account_claims_select_column": {}, "steam_account_claims_set_input": { "created_at": [ - 4376 + 4493 ], "id": [ - 4921 + 4993 ], "k8s_job_name": [ - 78 + 80 ], "node_id": [ - 78 + 80 ], "purpose": [ - 78 + 80 ], "steam_account_id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "steam_account_claims_stream_cursor_input": { "initial_value": [ - 3988 + 4105 ], "ordering": [ - 236 + 308 ], "__typename": [ - 78 + 80 ] }, "steam_account_claims_stream_cursor_value_input": { "created_at": [ - 4376 + 4493 ], "id": [ - 4921 + 4993 ], "k8s_job_name": [ - 78 + 80 ], "node_id": [ - 78 + 80 ], "purpose": [ - 78 + 80 ], "steam_account_id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "steam_account_claims_update_column": {}, "steam_account_claims_updates": { "_set": [ - 3986 + 4103 ], "where": [ - 3974 + 4091 ], "__typename": [ - 78 + 80 ] }, "steam_accounts": { "claims": [ - 3967, + 4084, { "distinct_on": [ - 3985, + 4102, "[steam_account_claims_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 3983, + 4100, "[steam_account_claims_order_by!]" ], "where": [ - 3974 + 4091 ] } ], "claims_aggregate": [ - 3968, + 4085, { "distinct_on": [ - 3985, + 4102, "[steam_account_claims_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 3983, + 4100, "[steam_account_claims_order_by!]" ], "where": [ - 3974 + 4091 ] } ], "created_at": [ - 4376 + 4493 ], "friend_capacity": [ - 38 + 40 ], "id": [ - 4921 + 4993 ], "last_node": [ - 1576 + 1693 ], "last_node_id": [ - 78 + 80 ], "password": [ - 78 + 80 ], "role": [ - 78 + 80 ], "steam_level": [ - 38 + 40 ], "steamid64": [ - 180 + 252 ], "updated_at": [ - 4376 + 4493 ], "username": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "steam_accounts_aggregate": { "aggregate": [ - 3993 + 4110 ], "nodes": [ - 3991 + 4108 ], "__typename": [ - 78 + 80 ] }, "steam_accounts_aggregate_fields": { "avg": [ - 3994 + 4111 ], "count": [ - 38, + 40, { "columns": [ - 4006, + 4123, "[steam_accounts_select_column!]" ], "distinct": [ - 3 + 5 ] } ], "max": [ - 3999 + 4116 ], "min": [ - 4000 + 4117 ], "stddev": [ - 4008 + 4125 ], "stddev_pop": [ - 4009 + 4126 ], "stddev_samp": [ - 4010 + 4127 ], "sum": [ - 4013 + 4130 ], "var_pop": [ - 4016 + 4133 ], "var_samp": [ - 4017 + 4134 ], "variance": [ - 4018 + 4135 ], "__typename": [ - 78 + 80 ] }, "steam_accounts_avg_fields": { "friend_capacity": [ - 29 + 31 ], "steam_level": [ - 29 + 31 ], "steamid64": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "steam_accounts_bool_exp": { "_and": [ - 3995 + 4112 ], "_not": [ - 3995 + 4112 ], "_or": [ - 3995 + 4112 ], "claims": [ - 3974 + 4091 ], "claims_aggregate": [ - 3969 + 4086 ], "created_at": [ - 4377 + 4494 ], "friend_capacity": [ - 39 + 41 ], "id": [ - 4923 + 4995 ], "last_node": [ - 1588 + 1705 ], "last_node_id": [ - 80 + 82 ], "password": [ - 80 + 82 ], "role": [ - 80 + 82 ], "steam_level": [ - 39 + 41 ], "steamid64": [ - 182 + 254 ], "updated_at": [ - 4377 + 4494 ], "username": [ - 80 + 82 ], "__typename": [ - 78 + 80 ] }, "steam_accounts_constraint": {}, "steam_accounts_inc_input": { "friend_capacity": [ - 38 + 40 ], "steam_level": [ - 38 + 40 ], "steamid64": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "steam_accounts_insert_input": { "claims": [ - 3973 + 4090 ], "created_at": [ - 4376 + 4493 ], "friend_capacity": [ - 38 + 40 ], "id": [ - 4921 + 4993 ], "last_node": [ - 1600 + 1717 ], "last_node_id": [ - 78 + 80 ], "password": [ - 78 + 80 ], "role": [ - 78 + 80 ], "steam_level": [ - 38 + 40 ], "steamid64": [ - 180 + 252 ], "updated_at": [ - 4376 + 4493 ], "username": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "steam_accounts_max_fields": { "created_at": [ - 4376 + 4493 ], "friend_capacity": [ - 38 + 40 ], "id": [ - 4921 + 4993 ], "last_node_id": [ - 78 + 80 ], "password": [ - 78 + 80 ], "role": [ - 78 + 80 ], "steam_level": [ - 38 + 40 ], "steamid64": [ - 180 + 252 ], "updated_at": [ - 4376 + 4493 ], "username": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "steam_accounts_min_fields": { "created_at": [ - 4376 + 4493 ], "friend_capacity": [ - 38 + 40 ], "id": [ - 4921 + 4993 ], "last_node_id": [ - 78 + 80 ], "password": [ - 78 + 80 ], "role": [ - 78 + 80 ], "steam_level": [ - 38 + 40 ], "steamid64": [ - 180 + 252 ], "updated_at": [ - 4376 + 4493 ], "username": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "steam_accounts_mutation_response": { "affected_rows": [ - 38 + 40 ], "returning": [ - 3991 + 4108 ], "__typename": [ - 78 + 80 ] }, "steam_accounts_obj_rel_insert_input": { "data": [ - 3998 + 4115 ], "on_conflict": [ - 4003 + 4120 ], "__typename": [ - 78 + 80 ] }, "steam_accounts_on_conflict": { "constraint": [ - 3996 + 4113 ], "update_columns": [ - 4014 + 4131 ], "where": [ - 3995 + 4112 ], "__typename": [ - 78 + 80 ] }, "steam_accounts_order_by": { "claims_aggregate": [ - 3972 + 4089 ], "created_at": [ - 2829 + 2946 ], "friend_capacity": [ - 2829 + 2946 ], "id": [ - 2829 + 2946 ], "last_node": [ - 1602 + 1719 ], "last_node_id": [ - 2829 + 2946 ], "password": [ - 2829 + 2946 ], "role": [ - 2829 + 2946 ], "steam_level": [ - 2829 + 2946 ], "steamid64": [ - 2829 + 2946 ], "updated_at": [ - 2829 + 2946 ], "username": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "steam_accounts_pk_columns_input": { "id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "steam_accounts_select_column": {}, "steam_accounts_set_input": { "created_at": [ - 4376 + 4493 ], "friend_capacity": [ - 38 + 40 ], "id": [ - 4921 + 4993 ], "last_node_id": [ - 78 + 80 ], "password": [ - 78 + 80 ], "role": [ - 78 + 80 ], "steam_level": [ - 38 + 40 ], "steamid64": [ - 180 + 252 ], "updated_at": [ - 4376 + 4493 ], "username": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "steam_accounts_stddev_fields": { "friend_capacity": [ - 29 + 31 ], "steam_level": [ - 29 + 31 ], "steamid64": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "steam_accounts_stddev_pop_fields": { "friend_capacity": [ - 29 + 31 ], "steam_level": [ - 29 + 31 ], "steamid64": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "steam_accounts_stddev_samp_fields": { "friend_capacity": [ - 29 + 31 ], "steam_level": [ - 29 + 31 ], "steamid64": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "steam_accounts_stream_cursor_input": { "initial_value": [ - 4012 + 4129 ], "ordering": [ - 236 + 308 ], "__typename": [ - 78 + 80 ] }, "steam_accounts_stream_cursor_value_input": { "created_at": [ - 4376 + 4493 ], "friend_capacity": [ - 38 + 40 ], "id": [ - 4921 + 4993 ], "last_node_id": [ - 78 + 80 ], "password": [ - 78 + 80 ], "role": [ - 78 + 80 ], "steam_level": [ - 38 + 40 ], "steamid64": [ - 180 + 252 ], "updated_at": [ - 4376 + 4493 ], "username": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "steam_accounts_sum_fields": { "friend_capacity": [ - 38 + 40 ], "steam_level": [ - 38 + 40 ], "steamid64": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "steam_accounts_update_column": {}, "steam_accounts_updates": { "_inc": [ - 3997 + 4114 ], "_set": [ - 4007 + 4124 ], "where": [ - 3995 + 4112 ], "__typename": [ - 78 + 80 ] }, "steam_accounts_var_pop_fields": { "friend_capacity": [ - 29 + 31 ], "steam_level": [ - 29 + 31 ], "steamid64": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "steam_accounts_var_samp_fields": { "friend_capacity": [ - 29 + 31 ], "steam_level": [ - 29 + 31 ], "steamid64": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "steam_accounts_variance_fields": { "friend_capacity": [ - 29 + 31 ], "steam_level": [ - 29 + 31 ], "steamid64": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "system_alerts": { "created_at": [ - 4376 + 4493 ], "created_by": [ - 180 + 252 ], "dismissible": [ - 3 + 5 ], "expires_at": [ - 4376 + 4493 ], "id": [ - 4921 + 4993 ], "is_active": [ - 3 + 5 ], "message": [ - 78 + 80 ], "title": [ - 78 + 80 ], "type": [ - 1089 + 1206 ], "updated_at": [ - 4376 + 4493 ], "__typename": [ - 78 + 80 ] }, "system_alerts_aggregate": { "aggregate": [ - 4021 + 4138 ], "nodes": [ - 4019 + 4136 ], "__typename": [ - 78 + 80 ] }, "system_alerts_aggregate_fields": { "avg": [ - 4022 + 4139 ], "count": [ - 38, + 40, { "columns": [ - 4033, + 4150, "[system_alerts_select_column!]" ], "distinct": [ - 3 + 5 ] } ], "max": [ - 4027 + 4144 ], "min": [ - 4028 + 4145 ], "stddev": [ - 4035 + 4152 ], "stddev_pop": [ - 4036 + 4153 ], "stddev_samp": [ - 4037 + 4154 ], "sum": [ - 4040 + 4157 ], "var_pop": [ - 4043 + 4160 ], "var_samp": [ - 4044 + 4161 ], "variance": [ - 4045 + 4162 ], "__typename": [ - 78 + 80 ] }, "system_alerts_avg_fields": { "created_by": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "system_alerts_bool_exp": { "_and": [ - 4023 + 4140 ], "_not": [ - 4023 + 4140 ], "_or": [ - 4023 + 4140 ], "created_at": [ - 4377 + 4494 ], "created_by": [ - 182 + 254 ], "dismissible": [ - 4 + 6 ], "expires_at": [ - 4377 + 4494 ], "id": [ - 4923 + 4995 ], "is_active": [ - 4 + 6 ], "message": [ - 80 + 82 ], "title": [ - 80 + 82 ], "type": [ - 1090 + 1207 ], "updated_at": [ - 4377 + 4494 ], "__typename": [ - 78 + 80 ] }, "system_alerts_constraint": {}, "system_alerts_inc_input": { "created_by": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "system_alerts_insert_input": { "created_at": [ - 4376 + 4493 ], "created_by": [ - 180 + 252 ], "dismissible": [ - 3 + 5 ], "expires_at": [ - 4376 + 4493 ], "id": [ - 4921 + 4993 ], "is_active": [ - 3 + 5 ], "message": [ - 78 + 80 ], "title": [ - 78 + 80 ], "type": [ - 1089 + 1206 ], "updated_at": [ - 4376 + 4493 ], "__typename": [ - 78 + 80 ] }, "system_alerts_max_fields": { "created_at": [ - 4376 + 4493 ], "created_by": [ - 180 + 252 ], "expires_at": [ - 4376 + 4493 ], "id": [ - 4921 + 4993 ], "message": [ - 78 + 80 ], "title": [ - 78 + 80 ], "updated_at": [ - 4376 + 4493 ], "__typename": [ - 78 + 80 ] }, "system_alerts_min_fields": { "created_at": [ - 4376 + 4493 ], "created_by": [ - 180 + 252 ], "expires_at": [ - 4376 + 4493 ], "id": [ - 4921 + 4993 ], "message": [ - 78 + 80 ], "title": [ - 78 + 80 ], "updated_at": [ - 4376 + 4493 ], "__typename": [ - 78 + 80 ] }, "system_alerts_mutation_response": { "affected_rows": [ - 38 + 40 ], "returning": [ - 4019 + 4136 ], "__typename": [ - 78 + 80 ] }, "system_alerts_on_conflict": { "constraint": [ - 4024 + 4141 ], "update_columns": [ - 4041 + 4158 ], "where": [ - 4023 + 4140 ], "__typename": [ - 78 + 80 ] }, "system_alerts_order_by": { "created_at": [ - 2829 + 2946 ], "created_by": [ - 2829 + 2946 ], "dismissible": [ - 2829 + 2946 ], "expires_at": [ - 2829 + 2946 ], "id": [ - 2829 + 2946 ], "is_active": [ - 2829 + 2946 ], "message": [ - 2829 + 2946 ], "title": [ - 2829 + 2946 ], "type": [ - 2829 + 2946 ], "updated_at": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "system_alerts_pk_columns_input": { "id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "system_alerts_select_column": {}, "system_alerts_set_input": { "created_at": [ - 4376 + 4493 ], "created_by": [ - 180 + 252 ], "dismissible": [ - 3 + 5 ], "expires_at": [ - 4376 + 4493 ], "id": [ - 4921 + 4993 ], "is_active": [ - 3 + 5 ], "message": [ - 78 + 80 ], "title": [ - 78 + 80 ], "type": [ - 1089 + 1206 ], "updated_at": [ - 4376 + 4493 ], "__typename": [ - 78 + 80 ] }, "system_alerts_stddev_fields": { "created_by": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "system_alerts_stddev_pop_fields": { "created_by": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "system_alerts_stddev_samp_fields": { "created_by": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "system_alerts_stream_cursor_input": { "initial_value": [ - 4039 + 4156 ], "ordering": [ - 236 + 308 ], "__typename": [ - 78 + 80 ] }, "system_alerts_stream_cursor_value_input": { "created_at": [ - 4376 + 4493 ], "created_by": [ - 180 + 252 ], "dismissible": [ - 3 + 5 ], "expires_at": [ - 4376 + 4493 ], "id": [ - 4921 + 4993 ], "is_active": [ - 3 + 5 ], "message": [ - 78 + 80 ], "title": [ - 78 + 80 ], "type": [ - 1089 + 1206 ], "updated_at": [ - 4376 + 4493 ], "__typename": [ - 78 + 80 ] }, "system_alerts_sum_fields": { "created_by": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "system_alerts_update_column": {}, "system_alerts_updates": { "_inc": [ - 4025 + 4142 ], "_set": [ - 4034 + 4151 ], "where": [ - 4023 + 4140 ], "__typename": [ - 78 + 80 ] }, "system_alerts_var_pop_fields": { "created_by": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "system_alerts_var_samp_fields": { "created_by": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "system_alerts_variance_fields": { "created_by": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "team_invites": { "created_at": [ - 4376 + 4493 ], "id": [ - 4921 + 4993 ], "invited_by": [ - 3787 + 3904 ], "invited_by_player_steam_id": [ - 180 + 252 ], "player": [ - 3787 + 3904 ], "steam_id": [ - 180 + 252 ], "team": [ - 4329 + 4446 ], "team_id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "team_invites_aggregate": { "aggregate": [ - 4050 + 4167 ], "nodes": [ - 4046 + 4163 ], "__typename": [ - 78 + 80 ] }, "team_invites_aggregate_bool_exp": { "count": [ - 4049 + 4166 ], "__typename": [ - 78 + 80 ] }, "team_invites_aggregate_bool_exp_count": { "arguments": [ - 4067 + 4184 ], "distinct": [ - 3 + 5 ], "filter": [ - 4055 + 4172 ], "predicate": [ - 39 + 41 ], "__typename": [ - 78 + 80 ] }, "team_invites_aggregate_fields": { "avg": [ - 4053 + 4170 ], "count": [ - 38, + 40, { "columns": [ - 4067, + 4184, "[team_invites_select_column!]" ], "distinct": [ - 3 + 5 ] } ], "max": [ - 4059 + 4176 ], "min": [ - 4061 + 4178 ], "stddev": [ - 4069 + 4186 ], "stddev_pop": [ - 4071 + 4188 ], "stddev_samp": [ - 4073 + 4190 ], "sum": [ - 4077 + 4194 ], "var_pop": [ - 4081 + 4198 ], "var_samp": [ - 4083 + 4200 ], "variance": [ - 4085 + 4202 ], "__typename": [ - 78 + 80 ] }, "team_invites_aggregate_order_by": { "avg": [ - 4054 + 4171 ], "count": [ - 2829 + 2946 ], "max": [ - 4060 + 4177 ], "min": [ - 4062 + 4179 ], "stddev": [ - 4070 + 4187 ], "stddev_pop": [ - 4072 + 4189 ], "stddev_samp": [ - 4074 + 4191 ], "sum": [ - 4078 + 4195 ], "var_pop": [ - 4082 + 4199 ], "var_samp": [ - 4084 + 4201 ], "variance": [ - 4086 + 4203 ], "__typename": [ - 78 + 80 ] }, "team_invites_arr_rel_insert_input": { "data": [ - 4058 + 4175 ], "on_conflict": [ - 4064 + 4181 ], "__typename": [ - 78 + 80 ] }, "team_invites_avg_fields": { "invited_by_player_steam_id": [ - 29 + 31 ], "steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "team_invites_avg_order_by": { "invited_by_player_steam_id": [ - 2829 + 2946 ], "steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "team_invites_bool_exp": { "_and": [ - 4055 + 4172 ], "_not": [ - 4055 + 4172 ], "_or": [ - 4055 + 4172 ], "created_at": [ - 4377 + 4494 ], "id": [ - 4923 + 4995 ], "invited_by": [ - 3791 + 3908 ], "invited_by_player_steam_id": [ - 182 + 254 ], "player": [ - 3791 + 3908 ], "steam_id": [ - 182 + 254 ], "team": [ - 4340 + 4457 ], "team_id": [ - 4923 + 4995 ], "__typename": [ - 78 + 80 ] }, "team_invites_constraint": {}, "team_invites_inc_input": { "invited_by_player_steam_id": [ - 180 + 252 ], "steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "team_invites_insert_input": { "created_at": [ - 4376 + 4493 ], "id": [ - 4921 + 4993 ], "invited_by": [ - 3798 + 3915 ], "invited_by_player_steam_id": [ - 180 + 252 ], "player": [ - 3798 + 3915 ], "steam_id": [ - 180 + 252 ], "team": [ - 4349 + 4466 ], "team_id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "team_invites_max_fields": { "created_at": [ - 4376 + 4493 ], "id": [ - 4921 + 4993 ], "invited_by_player_steam_id": [ - 180 + 252 ], "steam_id": [ - 180 + 252 ], "team_id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "team_invites_max_order_by": { "created_at": [ - 2829 + 2946 ], "id": [ - 2829 + 2946 ], "invited_by_player_steam_id": [ - 2829 + 2946 ], "steam_id": [ - 2829 + 2946 ], "team_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "team_invites_min_fields": { "created_at": [ - 4376 + 4493 ], "id": [ - 4921 + 4993 ], "invited_by_player_steam_id": [ - 180 + 252 ], "steam_id": [ - 180 + 252 ], "team_id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "team_invites_min_order_by": { "created_at": [ - 2829 + 2946 ], "id": [ - 2829 + 2946 ], "invited_by_player_steam_id": [ - 2829 + 2946 ], "steam_id": [ - 2829 + 2946 ], "team_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "team_invites_mutation_response": { "affected_rows": [ - 38 + 40 ], "returning": [ - 4046 + 4163 ], "__typename": [ - 78 + 80 ] }, "team_invites_on_conflict": { "constraint": [ - 4056 + 4173 ], "update_columns": [ - 4079 + 4196 ], "where": [ - 4055 + 4172 ], "__typename": [ - 78 + 80 ] }, "team_invites_order_by": { "created_at": [ - 2829 + 2946 ], "id": [ - 2829 + 2946 ], "invited_by": [ - 3800 + 3917 ], "invited_by_player_steam_id": [ - 2829 + 2946 ], "player": [ - 3800 + 3917 ], "steam_id": [ - 2829 + 2946 ], "team": [ - 4351 + 4468 ], "team_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "team_invites_pk_columns_input": { "id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "team_invites_select_column": {}, "team_invites_set_input": { "created_at": [ - 4376 + 4493 ], "id": [ - 4921 + 4993 ], "invited_by_player_steam_id": [ - 180 + 252 ], "steam_id": [ - 180 + 252 ], "team_id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "team_invites_stddev_fields": { "invited_by_player_steam_id": [ - 29 + 31 ], "steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "team_invites_stddev_order_by": { "invited_by_player_steam_id": [ - 2829 + 2946 ], "steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "team_invites_stddev_pop_fields": { "invited_by_player_steam_id": [ - 29 + 31 ], "steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "team_invites_stddev_pop_order_by": { "invited_by_player_steam_id": [ - 2829 + 2946 ], "steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "team_invites_stddev_samp_fields": { "invited_by_player_steam_id": [ - 29 + 31 ], "steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "team_invites_stddev_samp_order_by": { "invited_by_player_steam_id": [ - 2829 + 2946 ], "steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "team_invites_stream_cursor_input": { "initial_value": [ - 4076 + 4193 ], "ordering": [ - 236 + 308 ], "__typename": [ - 78 + 80 ] }, "team_invites_stream_cursor_value_input": { "created_at": [ - 4376 + 4493 ], "id": [ - 4921 + 4993 ], "invited_by_player_steam_id": [ - 180 + 252 ], "steam_id": [ - 180 + 252 ], "team_id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "team_invites_sum_fields": { "invited_by_player_steam_id": [ - 180 + 252 ], "steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "team_invites_sum_order_by": { "invited_by_player_steam_id": [ - 2829 + 2946 ], "steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "team_invites_update_column": {}, "team_invites_updates": { "_inc": [ - 4057 + 4174 ], "_set": [ - 4068 + 4185 ], "where": [ - 4055 + 4172 ], "__typename": [ - 78 + 80 ] }, "team_invites_var_pop_fields": { "invited_by_player_steam_id": [ - 29 + 31 ], "steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "team_invites_var_pop_order_by": { "invited_by_player_steam_id": [ - 2829 + 2946 ], "steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "team_invites_var_samp_fields": { "invited_by_player_steam_id": [ - 29 + 31 ], "steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "team_invites_var_samp_order_by": { "invited_by_player_steam_id": [ - 2829 + 2946 ], "steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "team_invites_variance_fields": { "invited_by_player_steam_id": [ - 29 + 31 ], "steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "team_invites_variance_order_by": { "invited_by_player_steam_id": [ - 2829 + 2946 ], "steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "team_roster": { "coach": [ - 3 + 5 ], "player": [ - 3787 + 3904 ], "player_steam_id": [ - 180 + 252 ], "role": [ - 1109 + 1226 ], "roster_image_url": [ - 78 + 80 ], "status": [ - 1130 + 1247 ], "team": [ - 4329 + 4446 ], "team_id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "team_roster_aggregate": { "aggregate": [ - 4093 + 4210 ], "nodes": [ - 4087 + 4204 ], "__typename": [ - 78 + 80 ] }, "team_roster_aggregate_bool_exp": { "bool_and": [ - 4090 + 4207 ], "bool_or": [ - 4091 + 4208 ], "count": [ - 4092 + 4209 ], "__typename": [ - 78 + 80 ] }, "team_roster_aggregate_bool_exp_bool_and": { "arguments": [ - 4111 + 4228 ], "distinct": [ - 3 + 5 ], "filter": [ - 4098 + 4215 ], "predicate": [ - 4 + 6 ], "__typename": [ - 78 + 80 ] }, "team_roster_aggregate_bool_exp_bool_or": { "arguments": [ - 4112 + 4229 ], "distinct": [ - 3 + 5 ], "filter": [ - 4098 + 4215 ], "predicate": [ - 4 + 6 ], "__typename": [ - 78 + 80 ] }, "team_roster_aggregate_bool_exp_count": { "arguments": [ - 4110 + 4227 ], "distinct": [ - 3 + 5 ], "filter": [ - 4098 + 4215 ], "predicate": [ - 39 + 41 ], "__typename": [ - 78 + 80 ] }, "team_roster_aggregate_fields": { "avg": [ - 4096 + 4213 ], "count": [ - 38, + 40, { "columns": [ - 4110, + 4227, "[team_roster_select_column!]" ], "distinct": [ - 3 + 5 ] } ], "max": [ - 4102 + 4219 ], "min": [ - 4104 + 4221 ], "stddev": [ - 4114 + 4231 ], "stddev_pop": [ - 4116 + 4233 ], "stddev_samp": [ - 4118 + 4235 ], "sum": [ - 4122 + 4239 ], "var_pop": [ - 4126 + 4243 ], "var_samp": [ - 4128 + 4245 ], "variance": [ - 4130 + 4247 ], "__typename": [ - 78 + 80 ] }, "team_roster_aggregate_order_by": { "avg": [ - 4097 + 4214 ], "count": [ - 2829 + 2946 ], "max": [ - 4103 + 4220 ], "min": [ - 4105 + 4222 ], "stddev": [ - 4115 + 4232 ], "stddev_pop": [ - 4117 + 4234 ], "stddev_samp": [ - 4119 + 4236 ], "sum": [ - 4123 + 4240 ], "var_pop": [ - 4127 + 4244 ], "var_samp": [ - 4129 + 4246 ], "variance": [ - 4131 + 4248 ], "__typename": [ - 78 + 80 ] }, "team_roster_arr_rel_insert_input": { "data": [ - 4101 + 4218 ], "on_conflict": [ - 4107 + 4224 ], "__typename": [ - 78 + 80 ] }, "team_roster_avg_fields": { "player_steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "team_roster_avg_order_by": { "player_steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "team_roster_bool_exp": { "_and": [ - 4098 + 4215 ], "_not": [ - 4098 + 4215 ], "_or": [ - 4098 + 4215 ], "coach": [ - 4 + 6 ], "player": [ - 3791 + 3908 ], "player_steam_id": [ - 182 + 254 ], "role": [ - 1110 + 1227 ], "roster_image_url": [ - 80 + 82 ], "status": [ - 1131 + 1248 ], "team": [ - 4340 + 4457 ], "team_id": [ - 4923 + 4995 ], "__typename": [ - 78 + 80 ] }, "team_roster_constraint": {}, "team_roster_inc_input": { "player_steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "team_roster_insert_input": { "coach": [ - 3 + 5 ], "player": [ - 3798 + 3915 ], "player_steam_id": [ - 180 + 252 ], "role": [ - 1109 + 1226 ], "roster_image_url": [ - 78 + 80 ], "status": [ - 1130 + 1247 ], "team": [ - 4349 + 4466 ], "team_id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "team_roster_max_fields": { "player_steam_id": [ - 180 + 252 ], "roster_image_url": [ - 78 + 80 ], "team_id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "team_roster_max_order_by": { "player_steam_id": [ - 2829 + 2946 ], "roster_image_url": [ - 2829 + 2946 ], "team_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "team_roster_min_fields": { "player_steam_id": [ - 180 + 252 ], "roster_image_url": [ - 78 + 80 ], "team_id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "team_roster_min_order_by": { "player_steam_id": [ - 2829 + 2946 ], "roster_image_url": [ - 2829 + 2946 ], "team_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "team_roster_mutation_response": { "affected_rows": [ - 38 + 40 ], "returning": [ - 4087 + 4204 ], "__typename": [ - 78 + 80 ] }, "team_roster_on_conflict": { "constraint": [ - 4099 + 4216 ], "update_columns": [ - 4124 + 4241 ], "where": [ - 4098 + 4215 ], "__typename": [ - 78 + 80 ] }, "team_roster_order_by": { "coach": [ - 2829 + 2946 ], "player": [ - 3800 + 3917 ], "player_steam_id": [ - 2829 + 2946 ], "role": [ - 2829 + 2946 ], "roster_image_url": [ - 2829 + 2946 ], "status": [ - 2829 + 2946 ], "team": [ - 4351 + 4468 ], "team_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "team_roster_pk_columns_input": { "player_steam_id": [ - 180 + 252 ], "team_id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "team_roster_select_column": {}, @@ -95068,1002 +97295,1002 @@ export default { "team_roster_select_column_team_roster_aggregate_bool_exp_bool_or_arguments_columns": {}, "team_roster_set_input": { "coach": [ - 3 + 5 ], "player_steam_id": [ - 180 + 252 ], "role": [ - 1109 + 1226 ], "roster_image_url": [ - 78 + 80 ], "status": [ - 1130 + 1247 ], "team_id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "team_roster_stddev_fields": { "player_steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "team_roster_stddev_order_by": { "player_steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "team_roster_stddev_pop_fields": { "player_steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "team_roster_stddev_pop_order_by": { "player_steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "team_roster_stddev_samp_fields": { "player_steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "team_roster_stddev_samp_order_by": { "player_steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "team_roster_stream_cursor_input": { "initial_value": [ - 4121 + 4238 ], "ordering": [ - 236 + 308 ], "__typename": [ - 78 + 80 ] }, "team_roster_stream_cursor_value_input": { "coach": [ - 3 + 5 ], "player_steam_id": [ - 180 + 252 ], "role": [ - 1109 + 1226 ], "roster_image_url": [ - 78 + 80 ], "status": [ - 1130 + 1247 ], "team_id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "team_roster_sum_fields": { "player_steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "team_roster_sum_order_by": { "player_steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "team_roster_update_column": {}, "team_roster_updates": { "_inc": [ - 4100 + 4217 ], "_set": [ - 4113 + 4230 ], "where": [ - 4098 + 4215 ], "__typename": [ - 78 + 80 ] }, "team_roster_var_pop_fields": { "player_steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "team_roster_var_pop_order_by": { "player_steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "team_roster_var_samp_fields": { "player_steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "team_roster_var_samp_order_by": { "player_steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "team_roster_variance_fields": { "player_steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "team_roster_variance_order_by": { "player_steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "team_scrim_alerts": { "created_at": [ - 4376 + 4493 ], "elo_max": [ - 38 + 40 ], "elo_min": [ - 38 + 40 ], "enabled": [ - 3 + 5 ], "id": [ - 4921 + 4993 ], "last_notified_at": [ - 4376 + 4493 ], "regions": [ - 78 + 80 ], "team": [ - 4329 + 4446 ], "team_id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "team_scrim_alerts_aggregate": { "aggregate": [ - 4134 + 4251 ], "nodes": [ - 4132 + 4249 ], "__typename": [ - 78 + 80 ] }, "team_scrim_alerts_aggregate_fields": { "avg": [ - 4135 + 4252 ], "count": [ - 38, + 40, { "columns": [ - 4146, + 4263, "[team_scrim_alerts_select_column!]" ], "distinct": [ - 3 + 5 ] } ], "max": [ - 4140 + 4257 ], "min": [ - 4141 + 4258 ], "stddev": [ - 4148 + 4265 ], "stddev_pop": [ - 4149 + 4266 ], "stddev_samp": [ - 4150 + 4267 ], "sum": [ - 4153 + 4270 ], "var_pop": [ - 4156 + 4273 ], "var_samp": [ - 4157 + 4274 ], "variance": [ - 4158 + 4275 ], "__typename": [ - 78 + 80 ] }, "team_scrim_alerts_avg_fields": { "elo_max": [ - 29 + 31 ], "elo_min": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "team_scrim_alerts_bool_exp": { "_and": [ - 4136 + 4253 ], "_not": [ - 4136 + 4253 ], "_or": [ - 4136 + 4253 ], "created_at": [ - 4377 + 4494 ], "elo_max": [ - 39 + 41 ], "elo_min": [ - 39 + 41 ], "enabled": [ - 4 + 6 ], "id": [ - 4923 + 4995 ], "last_notified_at": [ - 4377 + 4494 ], "regions": [ - 79 + 81 ], "team": [ - 4340 + 4457 ], "team_id": [ - 4923 + 4995 ], "__typename": [ - 78 + 80 ] }, "team_scrim_alerts_constraint": {}, "team_scrim_alerts_inc_input": { "elo_max": [ - 38 + 40 ], "elo_min": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "team_scrim_alerts_insert_input": { "created_at": [ - 4376 + 4493 ], "elo_max": [ - 38 + 40 ], "elo_min": [ - 38 + 40 ], "enabled": [ - 3 + 5 ], "id": [ - 4921 + 4993 ], "last_notified_at": [ - 4376 + 4493 ], "regions": [ - 78 + 80 ], "team": [ - 4349 + 4466 ], "team_id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "team_scrim_alerts_max_fields": { "created_at": [ - 4376 + 4493 ], "elo_max": [ - 38 + 40 ], "elo_min": [ - 38 + 40 ], "id": [ - 4921 + 4993 ], "last_notified_at": [ - 4376 + 4493 ], "regions": [ - 78 + 80 ], "team_id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "team_scrim_alerts_min_fields": { "created_at": [ - 4376 + 4493 ], "elo_max": [ - 38 + 40 ], "elo_min": [ - 38 + 40 ], "id": [ - 4921 + 4993 ], "last_notified_at": [ - 4376 + 4493 ], "regions": [ - 78 + 80 ], "team_id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "team_scrim_alerts_mutation_response": { "affected_rows": [ - 38 + 40 ], "returning": [ - 4132 + 4249 ], "__typename": [ - 78 + 80 ] }, "team_scrim_alerts_on_conflict": { "constraint": [ - 4137 + 4254 ], "update_columns": [ - 4154 + 4271 ], "where": [ - 4136 + 4253 ], "__typename": [ - 78 + 80 ] }, "team_scrim_alerts_order_by": { "created_at": [ - 2829 + 2946 ], "elo_max": [ - 2829 + 2946 ], "elo_min": [ - 2829 + 2946 ], "enabled": [ - 2829 + 2946 ], "id": [ - 2829 + 2946 ], "last_notified_at": [ - 2829 + 2946 ], "regions": [ - 2829 + 2946 ], "team": [ - 4351 + 4468 ], "team_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "team_scrim_alerts_pk_columns_input": { "id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "team_scrim_alerts_select_column": {}, "team_scrim_alerts_set_input": { "created_at": [ - 4376 + 4493 ], "elo_max": [ - 38 + 40 ], "elo_min": [ - 38 + 40 ], "enabled": [ - 3 + 5 ], "id": [ - 4921 + 4993 ], "last_notified_at": [ - 4376 + 4493 ], "regions": [ - 78 + 80 ], "team_id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "team_scrim_alerts_stddev_fields": { "elo_max": [ - 29 + 31 ], "elo_min": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "team_scrim_alerts_stddev_pop_fields": { "elo_max": [ - 29 + 31 ], "elo_min": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "team_scrim_alerts_stddev_samp_fields": { "elo_max": [ - 29 + 31 ], "elo_min": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "team_scrim_alerts_stream_cursor_input": { "initial_value": [ - 4152 + 4269 ], "ordering": [ - 236 + 308 ], "__typename": [ - 78 + 80 ] }, "team_scrim_alerts_stream_cursor_value_input": { "created_at": [ - 4376 + 4493 ], "elo_max": [ - 38 + 40 ], "elo_min": [ - 38 + 40 ], "enabled": [ - 3 + 5 ], "id": [ - 4921 + 4993 ], "last_notified_at": [ - 4376 + 4493 ], "regions": [ - 78 + 80 ], "team_id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "team_scrim_alerts_sum_fields": { "elo_max": [ - 38 + 40 ], "elo_min": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "team_scrim_alerts_update_column": {}, "team_scrim_alerts_updates": { "_inc": [ - 4138 + 4255 ], "_set": [ - 4147 + 4264 ], "where": [ - 4136 + 4253 ], "__typename": [ - 78 + 80 ] }, "team_scrim_alerts_var_pop_fields": { "elo_max": [ - 29 + 31 ], "elo_min": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "team_scrim_alerts_var_samp_fields": { "elo_max": [ - 29 + 31 ], "elo_min": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "team_scrim_alerts_variance_fields": { "elo_max": [ - 29 + 31 ], "elo_min": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "team_scrim_availability": { "created_at": [ - 4376 + 4493 ], "ends_at": [ - 4376 + 4493 ], "id": [ - 4921 + 4993 ], "recurring_weekly": [ - 3 + 5 ], "starts_at": [ - 4376 + 4493 ], "team": [ - 4329 + 4446 ], "team_id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "team_scrim_availability_aggregate": { "aggregate": [ - 4165 + 4282 ], "nodes": [ - 4159 + 4276 ], "__typename": [ - 78 + 80 ] }, "team_scrim_availability_aggregate_bool_exp": { "bool_and": [ - 4162 + 4279 ], "bool_or": [ - 4163 + 4280 ], "count": [ - 4164 + 4281 ], "__typename": [ - 78 + 80 ] }, "team_scrim_availability_aggregate_bool_exp_bool_and": { "arguments": [ - 4180 + 4297 ], "distinct": [ - 3 + 5 ], "filter": [ - 4168 + 4285 ], "predicate": [ - 4 + 6 ], "__typename": [ - 78 + 80 ] }, "team_scrim_availability_aggregate_bool_exp_bool_or": { "arguments": [ - 4181 + 4298 ], "distinct": [ - 3 + 5 ], "filter": [ - 4168 + 4285 ], "predicate": [ - 4 + 6 ], "__typename": [ - 78 + 80 ] }, "team_scrim_availability_aggregate_bool_exp_count": { "arguments": [ - 4179 + 4296 ], "distinct": [ - 3 + 5 ], "filter": [ - 4168 + 4285 ], "predicate": [ - 39 + 41 ], "__typename": [ - 78 + 80 ] }, "team_scrim_availability_aggregate_fields": { "count": [ - 38, + 40, { "columns": [ - 4179, + 4296, "[team_scrim_availability_select_column!]" ], "distinct": [ - 3 + 5 ] } ], "max": [ - 4171 + 4288 ], "min": [ - 4173 + 4290 ], "__typename": [ - 78 + 80 ] }, "team_scrim_availability_aggregate_order_by": { "count": [ - 2829 + 2946 ], "max": [ - 4172 + 4289 ], "min": [ - 4174 + 4291 ], "__typename": [ - 78 + 80 ] }, "team_scrim_availability_arr_rel_insert_input": { "data": [ - 4170 + 4287 ], "on_conflict": [ - 4176 + 4293 ], "__typename": [ - 78 + 80 ] }, "team_scrim_availability_bool_exp": { "_and": [ - 4168 + 4285 ], "_not": [ - 4168 + 4285 ], "_or": [ - 4168 + 4285 ], "created_at": [ - 4377 + 4494 ], "ends_at": [ - 4377 + 4494 ], "id": [ - 4923 + 4995 ], "recurring_weekly": [ - 4 + 6 ], "starts_at": [ - 4377 + 4494 ], "team": [ - 4340 + 4457 ], "team_id": [ - 4923 + 4995 ], "__typename": [ - 78 + 80 ] }, "team_scrim_availability_constraint": {}, "team_scrim_availability_insert_input": { "created_at": [ - 4376 + 4493 ], "ends_at": [ - 4376 + 4493 ], "id": [ - 4921 + 4993 ], "recurring_weekly": [ - 3 + 5 ], "starts_at": [ - 4376 + 4493 ], "team": [ - 4349 + 4466 ], "team_id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "team_scrim_availability_max_fields": { "created_at": [ - 4376 + 4493 ], "ends_at": [ - 4376 + 4493 ], "id": [ - 4921 + 4993 ], "starts_at": [ - 4376 + 4493 ], "team_id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "team_scrim_availability_max_order_by": { "created_at": [ - 2829 + 2946 ], "ends_at": [ - 2829 + 2946 ], "id": [ - 2829 + 2946 ], "starts_at": [ - 2829 + 2946 ], "team_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "team_scrim_availability_min_fields": { "created_at": [ - 4376 + 4493 ], "ends_at": [ - 4376 + 4493 ], "id": [ - 4921 + 4993 ], "starts_at": [ - 4376 + 4493 ], "team_id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "team_scrim_availability_min_order_by": { "created_at": [ - 2829 + 2946 ], "ends_at": [ - 2829 + 2946 ], "id": [ - 2829 + 2946 ], "starts_at": [ - 2829 + 2946 ], "team_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "team_scrim_availability_mutation_response": { "affected_rows": [ - 38 + 40 ], "returning": [ - 4159 + 4276 ], "__typename": [ - 78 + 80 ] }, "team_scrim_availability_on_conflict": { "constraint": [ - 4169 + 4286 ], "update_columns": [ - 4185 + 4302 ], "where": [ - 4168 + 4285 ], "__typename": [ - 78 + 80 ] }, "team_scrim_availability_order_by": { "created_at": [ - 2829 + 2946 ], "ends_at": [ - 2829 + 2946 ], "id": [ - 2829 + 2946 ], "recurring_weekly": [ - 2829 + 2946 ], "starts_at": [ - 2829 + 2946 ], "team": [ - 4351 + 4468 ], "team_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "team_scrim_availability_pk_columns_input": { "id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "team_scrim_availability_select_column": {}, @@ -96071,1489 +98298,1489 @@ export default { "team_scrim_availability_select_column_team_scrim_availability_aggregate_bool_exp_bool_or_arguments_columns": {}, "team_scrim_availability_set_input": { "created_at": [ - 4376 + 4493 ], "ends_at": [ - 4376 + 4493 ], "id": [ - 4921 + 4993 ], "recurring_weekly": [ - 3 + 5 ], "starts_at": [ - 4376 + 4493 ], "team_id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "team_scrim_availability_stream_cursor_input": { "initial_value": [ - 4184 + 4301 ], "ordering": [ - 236 + 308 ], "__typename": [ - 78 + 80 ] }, "team_scrim_availability_stream_cursor_value_input": { "created_at": [ - 4376 + 4493 ], "ends_at": [ - 4376 + 4493 ], "id": [ - 4921 + 4993 ], "recurring_weekly": [ - 3 + 5 ], "starts_at": [ - 4376 + 4493 ], "team_id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "team_scrim_availability_update_column": {}, "team_scrim_availability_updates": { "_set": [ - 4182 + 4299 ], "where": [ - 4168 + 4285 ], "__typename": [ - 78 + 80 ] }, "team_scrim_request_proposals": { "created_at": [ - 4376 + 4493 ], "id": [ - 4921 + 4993 ], "proposed_by": [ - 3787 + 3904 ], "proposed_by_steam_id": [ - 180 + 252 ], "proposed_by_team": [ - 4329 + 4446 ], "proposed_by_team_id": [ - 4921 + 4993 ], "proposed_scheduled_at": [ - 4376 + 4493 ], "request": [ - 4228 + 4345 ], "request_id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "team_scrim_request_proposals_aggregate": { "aggregate": [ - 4191 + 4308 ], "nodes": [ - 4187 + 4304 ], "__typename": [ - 78 + 80 ] }, "team_scrim_request_proposals_aggregate_bool_exp": { "count": [ - 4190 + 4307 ], "__typename": [ - 78 + 80 ] }, "team_scrim_request_proposals_aggregate_bool_exp_count": { "arguments": [ - 4208 + 4325 ], "distinct": [ - 3 + 5 ], "filter": [ - 4196 + 4313 ], "predicate": [ - 39 + 41 ], "__typename": [ - 78 + 80 ] }, "team_scrim_request_proposals_aggregate_fields": { "avg": [ - 4194 + 4311 ], "count": [ - 38, + 40, { "columns": [ - 4208, + 4325, "[team_scrim_request_proposals_select_column!]" ], "distinct": [ - 3 + 5 ] } ], "max": [ - 4200 + 4317 ], "min": [ - 4202 + 4319 ], "stddev": [ - 4210 + 4327 ], "stddev_pop": [ - 4212 + 4329 ], "stddev_samp": [ - 4214 + 4331 ], "sum": [ - 4218 + 4335 ], "var_pop": [ - 4222 + 4339 ], "var_samp": [ - 4224 + 4341 ], "variance": [ - 4226 + 4343 ], "__typename": [ - 78 + 80 ] }, "team_scrim_request_proposals_aggregate_order_by": { "avg": [ - 4195 + 4312 ], "count": [ - 2829 + 2946 ], "max": [ - 4201 + 4318 ], "min": [ - 4203 + 4320 ], "stddev": [ - 4211 + 4328 ], "stddev_pop": [ - 4213 + 4330 ], "stddev_samp": [ - 4215 + 4332 ], "sum": [ - 4219 + 4336 ], "var_pop": [ - 4223 + 4340 ], "var_samp": [ - 4225 + 4342 ], "variance": [ - 4227 + 4344 ], "__typename": [ - 78 + 80 ] }, "team_scrim_request_proposals_arr_rel_insert_input": { "data": [ - 4199 + 4316 ], "on_conflict": [ - 4205 + 4322 ], "__typename": [ - 78 + 80 ] }, "team_scrim_request_proposals_avg_fields": { "proposed_by_steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "team_scrim_request_proposals_avg_order_by": { "proposed_by_steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "team_scrim_request_proposals_bool_exp": { "_and": [ - 4196 + 4313 ], "_not": [ - 4196 + 4313 ], "_or": [ - 4196 + 4313 ], "created_at": [ - 4377 + 4494 ], "id": [ - 4923 + 4995 ], "proposed_by": [ - 3791 + 3908 ], "proposed_by_steam_id": [ - 182 + 254 ], "proposed_by_team": [ - 4340 + 4457 ], "proposed_by_team_id": [ - 4923 + 4995 ], "proposed_scheduled_at": [ - 4377 + 4494 ], "request": [ - 4239 + 4356 ], "request_id": [ - 4923 + 4995 ], "__typename": [ - 78 + 80 ] }, "team_scrim_request_proposals_constraint": {}, "team_scrim_request_proposals_inc_input": { "proposed_by_steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "team_scrim_request_proposals_insert_input": { "created_at": [ - 4376 + 4493 ], "id": [ - 4921 + 4993 ], "proposed_by": [ - 3798 + 3915 ], "proposed_by_steam_id": [ - 180 + 252 ], "proposed_by_team": [ - 4349 + 4466 ], "proposed_by_team_id": [ - 4921 + 4993 ], "proposed_scheduled_at": [ - 4376 + 4493 ], "request": [ - 4248 + 4365 ], "request_id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "team_scrim_request_proposals_max_fields": { "created_at": [ - 4376 + 4493 ], "id": [ - 4921 + 4993 ], "proposed_by_steam_id": [ - 180 + 252 ], "proposed_by_team_id": [ - 4921 + 4993 ], "proposed_scheduled_at": [ - 4376 + 4493 ], "request_id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "team_scrim_request_proposals_max_order_by": { "created_at": [ - 2829 + 2946 ], "id": [ - 2829 + 2946 ], "proposed_by_steam_id": [ - 2829 + 2946 ], "proposed_by_team_id": [ - 2829 + 2946 ], "proposed_scheduled_at": [ - 2829 + 2946 ], "request_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "team_scrim_request_proposals_min_fields": { "created_at": [ - 4376 + 4493 ], "id": [ - 4921 + 4993 ], "proposed_by_steam_id": [ - 180 + 252 ], "proposed_by_team_id": [ - 4921 + 4993 ], "proposed_scheduled_at": [ - 4376 + 4493 ], "request_id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "team_scrim_request_proposals_min_order_by": { "created_at": [ - 2829 + 2946 ], "id": [ - 2829 + 2946 ], "proposed_by_steam_id": [ - 2829 + 2946 ], "proposed_by_team_id": [ - 2829 + 2946 ], "proposed_scheduled_at": [ - 2829 + 2946 ], "request_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "team_scrim_request_proposals_mutation_response": { "affected_rows": [ - 38 + 40 ], "returning": [ - 4187 + 4304 ], "__typename": [ - 78 + 80 ] }, "team_scrim_request_proposals_on_conflict": { "constraint": [ - 4197 + 4314 ], "update_columns": [ - 4220 + 4337 ], "where": [ - 4196 + 4313 ], "__typename": [ - 78 + 80 ] }, "team_scrim_request_proposals_order_by": { "created_at": [ - 2829 + 2946 ], "id": [ - 2829 + 2946 ], "proposed_by": [ - 3800 + 3917 ], "proposed_by_steam_id": [ - 2829 + 2946 ], "proposed_by_team": [ - 4351 + 4468 ], "proposed_by_team_id": [ - 2829 + 2946 ], "proposed_scheduled_at": [ - 2829 + 2946 ], "request": [ - 4250 + 4367 ], "request_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "team_scrim_request_proposals_pk_columns_input": { "id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "team_scrim_request_proposals_select_column": {}, "team_scrim_request_proposals_set_input": { "created_at": [ - 4376 + 4493 ], "id": [ - 4921 + 4993 ], "proposed_by_steam_id": [ - 180 + 252 ], "proposed_by_team_id": [ - 4921 + 4993 ], "proposed_scheduled_at": [ - 4376 + 4493 ], "request_id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "team_scrim_request_proposals_stddev_fields": { "proposed_by_steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "team_scrim_request_proposals_stddev_order_by": { "proposed_by_steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "team_scrim_request_proposals_stddev_pop_fields": { "proposed_by_steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "team_scrim_request_proposals_stddev_pop_order_by": { "proposed_by_steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "team_scrim_request_proposals_stddev_samp_fields": { "proposed_by_steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "team_scrim_request_proposals_stddev_samp_order_by": { "proposed_by_steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "team_scrim_request_proposals_stream_cursor_input": { "initial_value": [ - 4217 + 4334 ], "ordering": [ - 236 + 308 ], "__typename": [ - 78 + 80 ] }, "team_scrim_request_proposals_stream_cursor_value_input": { "created_at": [ - 4376 + 4493 ], "id": [ - 4921 + 4993 ], "proposed_by_steam_id": [ - 180 + 252 ], "proposed_by_team_id": [ - 4921 + 4993 ], "proposed_scheduled_at": [ - 4376 + 4493 ], "request_id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "team_scrim_request_proposals_sum_fields": { "proposed_by_steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "team_scrim_request_proposals_sum_order_by": { "proposed_by_steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "team_scrim_request_proposals_update_column": {}, "team_scrim_request_proposals_updates": { "_inc": [ - 4198 + 4315 ], "_set": [ - 4209 + 4326 ], "where": [ - 4196 + 4313 ], "__typename": [ - 78 + 80 ] }, "team_scrim_request_proposals_var_pop_fields": { "proposed_by_steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "team_scrim_request_proposals_var_pop_order_by": { "proposed_by_steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "team_scrim_request_proposals_var_samp_fields": { "proposed_by_steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "team_scrim_request_proposals_var_samp_order_by": { "proposed_by_steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "team_scrim_request_proposals_variance_fields": { "proposed_by_steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "team_scrim_request_proposals_variance_order_by": { "proposed_by_steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "team_scrim_requests": { "auto_generated": [ - 3 + 5 ], "awaiting_team": [ - 4329 + 4446 ], "awaiting_team_id": [ - 4921 + 4993 ], "canceled_by_team_id": [ - 4921 + 4993 ], "canceled_late": [ - 3 + 5 ], "created_at": [ - 4376 + 4493 ], "expires_at": [ - 4376 + 4493 ], "from_team": [ - 4329 + 4446 ], "from_team_checked_in": [ - 3 + 5 ], "from_team_id": [ - 4921 + 4993 ], "id": [ - 4921 + 4993 ], "match": [ - 2644 + 2761 ], "match_id": [ - 4921 + 4993 ], "match_options": [ - 2524 + 2641 ], "match_options_id": [ - 4921 + 4993 ], "match_outcome": [ - 78 + 80 ], "proposals": [ - 4187, + 4304, { "distinct_on": [ - 4208, + 4325, "[team_scrim_request_proposals_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 4206, + 4323, "[team_scrim_request_proposals_order_by!]" ], "where": [ - 4196 + 4313 ] } ], "proposals_aggregate": [ - 4188, + 4305, { "distinct_on": [ - 4208, + 4325, "[team_scrim_request_proposals_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 4206, + 4323, "[team_scrim_request_proposals_order_by!]" ], "where": [ - 4196 + 4313 ] } ], "proposed_scheduled_at": [ - 4376 + 4493 ], "region": [ - 78 + 80 ], "requested_by": [ - 3787 + 3904 ], "requested_by_steam_id": [ - 180 + 252 ], "responded_at": [ - 4376 + 4493 ], "status": [ - 1029 + 1146 ], "to_team": [ - 4329 + 4446 ], "to_team_checked_in": [ - 3 + 5 ], "to_team_id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "team_scrim_requests_aggregate": { "aggregate": [ - 4234 + 4351 ], "nodes": [ - 4228 + 4345 ], "__typename": [ - 78 + 80 ] }, "team_scrim_requests_aggregate_bool_exp": { "bool_and": [ - 4231 + 4348 ], "bool_or": [ - 4232 + 4349 ], "count": [ - 4233 + 4350 ], "__typename": [ - 78 + 80 ] }, "team_scrim_requests_aggregate_bool_exp_bool_and": { "arguments": [ - 4253 + 4370 ], "distinct": [ - 3 + 5 ], "filter": [ - 4239 + 4356 ], "predicate": [ - 4 + 6 ], "__typename": [ - 78 + 80 ] }, "team_scrim_requests_aggregate_bool_exp_bool_or": { "arguments": [ - 4254 + 4371 ], "distinct": [ - 3 + 5 ], "filter": [ - 4239 + 4356 ], "predicate": [ - 4 + 6 ], "__typename": [ - 78 + 80 ] }, "team_scrim_requests_aggregate_bool_exp_count": { "arguments": [ - 4252 + 4369 ], "distinct": [ - 3 + 5 ], "filter": [ - 4239 + 4356 ], "predicate": [ - 39 + 41 ], "__typename": [ - 78 + 80 ] }, "team_scrim_requests_aggregate_fields": { "avg": [ - 4237 + 4354 ], "count": [ - 38, + 40, { "columns": [ - 4252, + 4369, "[team_scrim_requests_select_column!]" ], "distinct": [ - 3 + 5 ] } ], "max": [ - 4243 + 4360 ], "min": [ - 4245 + 4362 ], "stddev": [ - 4256 + 4373 ], "stddev_pop": [ - 4258 + 4375 ], "stddev_samp": [ - 4260 + 4377 ], "sum": [ - 4264 + 4381 ], "var_pop": [ - 4268 + 4385 ], "var_samp": [ - 4270 + 4387 ], "variance": [ - 4272 + 4389 ], "__typename": [ - 78 + 80 ] }, "team_scrim_requests_aggregate_order_by": { "avg": [ - 4238 + 4355 ], "count": [ - 2829 + 2946 ], "max": [ - 4244 + 4361 ], "min": [ - 4246 + 4363 ], "stddev": [ - 4257 + 4374 ], "stddev_pop": [ - 4259 + 4376 ], "stddev_samp": [ - 4261 + 4378 ], "sum": [ - 4265 + 4382 ], "var_pop": [ - 4269 + 4386 ], "var_samp": [ - 4271 + 4388 ], "variance": [ - 4273 + 4390 ], "__typename": [ - 78 + 80 ] }, "team_scrim_requests_arr_rel_insert_input": { "data": [ - 4242 + 4359 ], "on_conflict": [ - 4249 + 4366 ], "__typename": [ - 78 + 80 ] }, "team_scrim_requests_avg_fields": { "requested_by_steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "team_scrim_requests_avg_order_by": { "requested_by_steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "team_scrim_requests_bool_exp": { "_and": [ - 4239 + 4356 ], "_not": [ - 4239 + 4356 ], "_or": [ - 4239 + 4356 ], "auto_generated": [ - 4 + 6 ], "awaiting_team": [ - 4340 + 4457 ], "awaiting_team_id": [ - 4923 + 4995 ], "canceled_by_team_id": [ - 4923 + 4995 ], "canceled_late": [ - 4 + 6 ], "created_at": [ - 4377 + 4494 ], "expires_at": [ - 4377 + 4494 ], "from_team": [ - 4340 + 4457 ], "from_team_checked_in": [ - 4 + 6 ], "from_team_id": [ - 4923 + 4995 ], "id": [ - 4923 + 4995 ], "match": [ - 2653 + 2770 ], "match_id": [ - 4923 + 4995 ], "match_options": [ - 2528 + 2645 ], "match_options_id": [ - 4923 + 4995 ], "match_outcome": [ - 80 + 82 ], "proposals": [ - 4196 + 4313 ], "proposals_aggregate": [ - 4189 + 4306 ], "proposed_scheduled_at": [ - 4377 + 4494 ], "region": [ - 80 + 82 ], "requested_by": [ - 3791 + 3908 ], "requested_by_steam_id": [ - 182 + 254 ], "responded_at": [ - 4377 + 4494 ], "status": [ - 1030 + 1147 ], "to_team": [ - 4340 + 4457 ], "to_team_checked_in": [ - 4 + 6 ], "to_team_id": [ - 4923 + 4995 ], "__typename": [ - 78 + 80 ] }, "team_scrim_requests_constraint": {}, "team_scrim_requests_inc_input": { "requested_by_steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "team_scrim_requests_insert_input": { "auto_generated": [ - 3 + 5 ], "awaiting_team": [ - 4349 + 4466 ], "awaiting_team_id": [ - 4921 + 4993 ], "canceled_by_team_id": [ - 4921 + 4993 ], "canceled_late": [ - 3 + 5 ], "created_at": [ - 4376 + 4493 ], "expires_at": [ - 4376 + 4493 ], "from_team": [ - 4349 + 4466 ], "from_team_checked_in": [ - 3 + 5 ], "from_team_id": [ - 4921 + 4993 ], "id": [ - 4921 + 4993 ], "match": [ - 2662 + 2779 ], "match_id": [ - 4921 + 4993 ], "match_options": [ - 2535 + 2652 ], "match_options_id": [ - 4921 + 4993 ], "match_outcome": [ - 78 + 80 ], "proposals": [ - 4193 + 4310 ], "proposed_scheduled_at": [ - 4376 + 4493 ], "region": [ - 78 + 80 ], "requested_by": [ - 3798 + 3915 ], "requested_by_steam_id": [ - 180 + 252 ], "responded_at": [ - 4376 + 4493 ], "status": [ - 1029 + 1146 ], "to_team": [ - 4349 + 4466 ], "to_team_checked_in": [ - 3 + 5 ], "to_team_id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "team_scrim_requests_max_fields": { "awaiting_team_id": [ - 4921 + 4993 ], "canceled_by_team_id": [ - 4921 + 4993 ], "created_at": [ - 4376 + 4493 ], "expires_at": [ - 4376 + 4493 ], "from_team_id": [ - 4921 + 4993 ], "id": [ - 4921 + 4993 ], "match_id": [ - 4921 + 4993 ], "match_options_id": [ - 4921 + 4993 ], "match_outcome": [ - 78 + 80 ], "proposed_scheduled_at": [ - 4376 + 4493 ], "region": [ - 78 + 80 ], "requested_by_steam_id": [ - 180 + 252 ], "responded_at": [ - 4376 + 4493 ], "to_team_id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "team_scrim_requests_max_order_by": { "awaiting_team_id": [ - 2829 + 2946 ], "canceled_by_team_id": [ - 2829 + 2946 ], "created_at": [ - 2829 + 2946 ], "expires_at": [ - 2829 + 2946 ], "from_team_id": [ - 2829 + 2946 ], "id": [ - 2829 + 2946 ], "match_id": [ - 2829 + 2946 ], "match_options_id": [ - 2829 + 2946 ], "match_outcome": [ - 2829 + 2946 ], "proposed_scheduled_at": [ - 2829 + 2946 ], "region": [ - 2829 + 2946 ], "requested_by_steam_id": [ - 2829 + 2946 ], "responded_at": [ - 2829 + 2946 ], "to_team_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "team_scrim_requests_min_fields": { "awaiting_team_id": [ - 4921 + 4993 ], "canceled_by_team_id": [ - 4921 + 4993 ], "created_at": [ - 4376 + 4493 ], "expires_at": [ - 4376 + 4493 ], "from_team_id": [ - 4921 + 4993 ], "id": [ - 4921 + 4993 ], "match_id": [ - 4921 + 4993 ], "match_options_id": [ - 4921 + 4993 ], "match_outcome": [ - 78 + 80 ], "proposed_scheduled_at": [ - 4376 + 4493 ], "region": [ - 78 + 80 ], "requested_by_steam_id": [ - 180 + 252 ], "responded_at": [ - 4376 + 4493 ], "to_team_id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "team_scrim_requests_min_order_by": { "awaiting_team_id": [ - 2829 + 2946 ], "canceled_by_team_id": [ - 2829 + 2946 ], "created_at": [ - 2829 + 2946 ], "expires_at": [ - 2829 + 2946 ], "from_team_id": [ - 2829 + 2946 ], "id": [ - 2829 + 2946 ], "match_id": [ - 2829 + 2946 ], "match_options_id": [ - 2829 + 2946 ], "match_outcome": [ - 2829 + 2946 ], "proposed_scheduled_at": [ - 2829 + 2946 ], "region": [ - 2829 + 2946 ], "requested_by_steam_id": [ - 2829 + 2946 ], "responded_at": [ - 2829 + 2946 ], "to_team_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "team_scrim_requests_mutation_response": { "affected_rows": [ - 38 + 40 ], "returning": [ - 4228 + 4345 ], "__typename": [ - 78 + 80 ] }, "team_scrim_requests_obj_rel_insert_input": { "data": [ - 4242 + 4359 ], "on_conflict": [ - 4249 + 4366 ], "__typename": [ - 78 + 80 ] }, "team_scrim_requests_on_conflict": { "constraint": [ - 4240 + 4357 ], "update_columns": [ - 4266 + 4383 ], "where": [ - 4239 + 4356 ], "__typename": [ - 78 + 80 ] }, "team_scrim_requests_order_by": { "auto_generated": [ - 2829 + 2946 ], "awaiting_team": [ - 4351 + 4468 ], "awaiting_team_id": [ - 2829 + 2946 ], "canceled_by_team_id": [ - 2829 + 2946 ], "canceled_late": [ - 2829 + 2946 ], "created_at": [ - 2829 + 2946 ], "expires_at": [ - 2829 + 2946 ], "from_team": [ - 4351 + 4468 ], "from_team_checked_in": [ - 2829 + 2946 ], "from_team_id": [ - 2829 + 2946 ], "id": [ - 2829 + 2946 ], "match": [ - 2664 + 2781 ], "match_id": [ - 2829 + 2946 ], "match_options": [ - 2537 + 2654 ], "match_options_id": [ - 2829 + 2946 ], "match_outcome": [ - 2829 + 2946 ], "proposals_aggregate": [ - 4192 + 4309 ], "proposed_scheduled_at": [ - 2829 + 2946 ], "region": [ - 2829 + 2946 ], "requested_by": [ - 3800 + 3917 ], "requested_by_steam_id": [ - 2829 + 2946 ], "responded_at": [ - 2829 + 2946 ], "status": [ - 2829 + 2946 ], "to_team": [ - 4351 + 4468 ], "to_team_checked_in": [ - 2829 + 2946 ], "to_team_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "team_scrim_requests_pk_columns_input": { "id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "team_scrim_requests_select_column": {}, @@ -97561,3283 +99788,4083 @@ export default { "team_scrim_requests_select_column_team_scrim_requests_aggregate_bool_exp_bool_or_arguments_columns": {}, "team_scrim_requests_set_input": { "auto_generated": [ - 3 + 5 ], "awaiting_team_id": [ - 4921 + 4993 ], "canceled_by_team_id": [ - 4921 + 4993 ], "canceled_late": [ - 3 + 5 ], "created_at": [ - 4376 + 4493 ], "expires_at": [ - 4376 + 4493 ], "from_team_checked_in": [ - 3 + 5 ], "from_team_id": [ - 4921 + 4993 ], "id": [ - 4921 + 4993 ], "match_id": [ - 4921 + 4993 ], "match_options_id": [ - 4921 + 4993 ], "match_outcome": [ - 78 + 80 ], "proposed_scheduled_at": [ - 4376 + 4493 ], "region": [ - 78 + 80 ], "requested_by_steam_id": [ - 180 + 252 ], "responded_at": [ - 4376 + 4493 ], "status": [ - 1029 + 1146 ], "to_team_checked_in": [ - 3 + 5 ], "to_team_id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "team_scrim_requests_stddev_fields": { "requested_by_steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "team_scrim_requests_stddev_order_by": { "requested_by_steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "team_scrim_requests_stddev_pop_fields": { "requested_by_steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "team_scrim_requests_stddev_pop_order_by": { "requested_by_steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "team_scrim_requests_stddev_samp_fields": { "requested_by_steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "team_scrim_requests_stddev_samp_order_by": { "requested_by_steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "team_scrim_requests_stream_cursor_input": { "initial_value": [ - 4263 + 4380 ], "ordering": [ - 236 + 308 ], "__typename": [ - 78 + 80 ] }, "team_scrim_requests_stream_cursor_value_input": { "auto_generated": [ - 3 + 5 ], "awaiting_team_id": [ - 4921 + 4993 ], "canceled_by_team_id": [ - 4921 + 4993 ], "canceled_late": [ - 3 + 5 ], "created_at": [ - 4376 + 4493 ], "expires_at": [ - 4376 + 4493 ], "from_team_checked_in": [ - 3 + 5 ], "from_team_id": [ - 4921 + 4993 ], "id": [ - 4921 + 4993 ], "match_id": [ - 4921 + 4993 ], "match_options_id": [ - 4921 + 4993 ], "match_outcome": [ - 78 + 80 ], "proposed_scheduled_at": [ - 4376 + 4493 ], "region": [ - 78 + 80 ], "requested_by_steam_id": [ - 180 + 252 ], "responded_at": [ - 4376 + 4493 ], "status": [ - 1029 + 1146 ], "to_team_checked_in": [ - 3 + 5 ], "to_team_id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "team_scrim_requests_sum_fields": { "requested_by_steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "team_scrim_requests_sum_order_by": { "requested_by_steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "team_scrim_requests_update_column": {}, "team_scrim_requests_updates": { "_inc": [ - 4241 + 4358 ], "_set": [ - 4255 + 4372 ], "where": [ - 4239 + 4356 ], "__typename": [ - 78 + 80 ] }, "team_scrim_requests_var_pop_fields": { "requested_by_steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "team_scrim_requests_var_pop_order_by": { "requested_by_steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "team_scrim_requests_var_samp_fields": { "requested_by_steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "team_scrim_requests_var_samp_order_by": { "requested_by_steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "team_scrim_requests_variance_fields": { "requested_by_steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "team_scrim_requests_variance_order_by": { "requested_by_steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "team_scrim_settings": { "allow_outside_availability": [ - 3 + 5 ], "created_at": [ - 4376 + 4493 ], "elo_max": [ - 38 + 40 ], "elo_min": [ - 38 + 40 ], "enabled": [ - 3 + 5 ], "id": [ - 4921 + 4993 ], "map_ids": [ - 4921 + 4993 ], "notes": [ - 78 + 80 ], "regions": [ - 78 + 80 ], "team": [ - 4329 + 4446 ], "team_id": [ - 4921 + 4993 ], "updated_at": [ - 4376 + 4493 ], "__typename": [ - 78 + 80 ] }, "team_scrim_settings_aggregate": { "aggregate": [ - 4276 + 4393 ], "nodes": [ - 4274 + 4391 ], "__typename": [ - 78 + 80 ] }, "team_scrim_settings_aggregate_fields": { "avg": [ - 4277 + 4394 ], "count": [ - 38, + 40, { "columns": [ - 4289, + 4406, "[team_scrim_settings_select_column!]" ], "distinct": [ - 3 + 5 ] } ], "max": [ - 4282 + 4399 ], "min": [ - 4283 + 4400 ], "stddev": [ - 4291 + 4408 ], "stddev_pop": [ - 4292 + 4409 ], "stddev_samp": [ - 4293 + 4410 ], "sum": [ - 4296 + 4413 ], "var_pop": [ - 4299 + 4416 ], "var_samp": [ - 4300 + 4417 ], "variance": [ - 4301 + 4418 ], "__typename": [ - 78 + 80 ] }, "team_scrim_settings_avg_fields": { "elo_max": [ - 29 + 31 ], "elo_min": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "team_scrim_settings_bool_exp": { "_and": [ - 4278 + 4395 ], "_not": [ - 4278 + 4395 ], "_or": [ - 4278 + 4395 ], "allow_outside_availability": [ - 4 + 6 ], "created_at": [ - 4377 + 4494 ], "elo_max": [ - 39 + 41 ], "elo_min": [ - 39 + 41 ], "enabled": [ - 4 + 6 ], "id": [ - 4923 + 4995 ], "map_ids": [ - 4922 + 4994 ], "notes": [ - 80 + 82 ], "regions": [ - 79 + 81 ], "team": [ - 4340 + 4457 ], "team_id": [ - 4923 + 4995 ], "updated_at": [ - 4377 + 4494 ], "__typename": [ - 78 + 80 ] }, "team_scrim_settings_constraint": {}, "team_scrim_settings_inc_input": { "elo_max": [ - 38 + 40 ], "elo_min": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "team_scrim_settings_insert_input": { "allow_outside_availability": [ - 3 + 5 ], "created_at": [ - 4376 + 4493 ], "elo_max": [ - 38 + 40 ], "elo_min": [ - 38 + 40 ], "enabled": [ - 3 + 5 ], "id": [ - 4921 + 4993 ], "map_ids": [ - 4921 + 4993 ], "notes": [ - 78 + 80 ], "regions": [ - 78 + 80 ], "team": [ - 4349 + 4466 ], "team_id": [ - 4921 + 4993 ], "updated_at": [ - 4376 + 4493 ], "__typename": [ - 78 + 80 ] }, "team_scrim_settings_max_fields": { "created_at": [ - 4376 + 4493 ], "elo_max": [ - 38 + 40 ], "elo_min": [ - 38 + 40 ], "id": [ - 4921 + 4993 ], "map_ids": [ - 4921 + 4993 ], "notes": [ - 78 + 80 ], "regions": [ - 78 + 80 ], "team_id": [ - 4921 + 4993 ], "updated_at": [ - 4376 + 4493 ], "__typename": [ - 78 + 80 ] }, "team_scrim_settings_min_fields": { "created_at": [ - 4376 + 4493 ], "elo_max": [ - 38 + 40 ], "elo_min": [ - 38 + 40 ], "id": [ - 4921 + 4993 ], "map_ids": [ - 4921 + 4993 ], "notes": [ - 78 + 80 ], "regions": [ - 78 + 80 ], "team_id": [ - 4921 + 4993 ], "updated_at": [ - 4376 + 4493 ], "__typename": [ - 78 + 80 ] }, "team_scrim_settings_mutation_response": { "affected_rows": [ - 38 + 40 ], "returning": [ - 4274 + 4391 ], "__typename": [ - 78 + 80 ] }, "team_scrim_settings_obj_rel_insert_input": { "data": [ - 4281 + 4398 ], "on_conflict": [ - 4286 + 4403 ], "__typename": [ - 78 + 80 ] }, "team_scrim_settings_on_conflict": { "constraint": [ - 4279 + 4396 ], "update_columns": [ - 4297 + 4414 ], "where": [ - 4278 + 4395 ], "__typename": [ - 78 + 80 ] }, "team_scrim_settings_order_by": { "allow_outside_availability": [ - 2829 + 2946 ], "created_at": [ - 2829 + 2946 ], "elo_max": [ - 2829 + 2946 ], "elo_min": [ - 2829 + 2946 ], "enabled": [ - 2829 + 2946 ], "id": [ - 2829 + 2946 ], "map_ids": [ - 2829 + 2946 ], "notes": [ - 2829 + 2946 ], "regions": [ - 2829 + 2946 ], "team": [ - 4351 + 4468 ], "team_id": [ - 2829 + 2946 ], "updated_at": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "team_scrim_settings_pk_columns_input": { "id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "team_scrim_settings_select_column": {}, "team_scrim_settings_set_input": { "allow_outside_availability": [ - 3 + 5 ], "created_at": [ - 4376 + 4493 ], "elo_max": [ - 38 + 40 ], "elo_min": [ - 38 + 40 ], "enabled": [ - 3 + 5 ], "id": [ - 4921 + 4993 ], "map_ids": [ - 4921 + 4993 ], "notes": [ - 78 + 80 ], "regions": [ - 78 + 80 ], "team_id": [ - 4921 + 4993 ], "updated_at": [ - 4376 + 4493 ], "__typename": [ - 78 + 80 ] }, "team_scrim_settings_stddev_fields": { "elo_max": [ - 29 + 31 ], "elo_min": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "team_scrim_settings_stddev_pop_fields": { "elo_max": [ - 29 + 31 ], "elo_min": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "team_scrim_settings_stddev_samp_fields": { "elo_max": [ - 29 + 31 ], "elo_min": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "team_scrim_settings_stream_cursor_input": { "initial_value": [ - 4295 + 4412 ], "ordering": [ - 236 + 308 ], "__typename": [ - 78 + 80 ] }, "team_scrim_settings_stream_cursor_value_input": { "allow_outside_availability": [ - 3 + 5 ], "created_at": [ - 4376 + 4493 ], "elo_max": [ - 38 + 40 ], "elo_min": [ - 38 + 40 ], "enabled": [ - 3 + 5 ], "id": [ - 4921 + 4993 ], "map_ids": [ - 4921 + 4993 ], "notes": [ - 78 + 80 ], "regions": [ - 78 + 80 ], "team_id": [ - 4921 + 4993 ], "updated_at": [ - 4376 + 4493 ], "__typename": [ - 78 + 80 ] }, "team_scrim_settings_sum_fields": { "elo_max": [ - 38 + 40 ], "elo_min": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "team_scrim_settings_update_column": {}, "team_scrim_settings_updates": { "_inc": [ - 4280 + 4397 ], "_set": [ - 4290 + 4407 ], "where": [ - 4278 + 4395 ], "__typename": [ - 78 + 80 ] }, "team_scrim_settings_var_pop_fields": { "elo_max": [ - 29 + 31 ], "elo_min": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "team_scrim_settings_var_samp_fields": { "elo_max": [ - 29 + 31 ], "elo_min": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "team_scrim_settings_variance_fields": { "elo_max": [ - 29 + 31 ], "elo_min": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "team_suggestions": { "created_at": [ - 4376 + 4493 ], "group_hash": [ - 78 + 80 ], "id": [ - 4921 + 4993 ], "last_notified_at": [ - 4376 + 4493 ], "member_steam_ids": [ - 180 + 252 ], "status": [ - 78 + 80 ], "together_count": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "team_suggestions_aggregate": { "aggregate": [ - 4304 + 4421 ], "nodes": [ - 4302 + 4419 ], "__typename": [ - 78 + 80 ] }, "team_suggestions_aggregate_fields": { "avg": [ - 4305 + 4422 ], "count": [ - 38, + 40, { "columns": [ - 4316, + 4433, "[team_suggestions_select_column!]" ], "distinct": [ - 3 + 5 ] } ], "max": [ - 4310 + 4427 ], "min": [ - 4311 + 4428 ], "stddev": [ - 4318 + 4435 ], "stddev_pop": [ - 4319 + 4436 ], "stddev_samp": [ - 4320 + 4437 ], "sum": [ - 4323 + 4440 ], "var_pop": [ - 4326 + 4443 ], "var_samp": [ - 4327 + 4444 ], "variance": [ - 4328 + 4445 ], "__typename": [ - 78 + 80 ] }, "team_suggestions_avg_fields": { "together_count": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "team_suggestions_bool_exp": { "_and": [ - 4306 + 4423 ], "_not": [ - 4306 + 4423 ], "_or": [ - 4306 + 4423 ], "created_at": [ - 4377 + 4494 ], "group_hash": [ - 80 + 82 ], "id": [ - 4923 + 4995 ], "last_notified_at": [ - 4377 + 4494 ], "member_steam_ids": [ - 181 + 253 ], "status": [ - 80 + 82 ], "together_count": [ - 39 + 41 ], "__typename": [ - 78 + 80 ] }, "team_suggestions_constraint": {}, "team_suggestions_inc_input": { "together_count": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "team_suggestions_insert_input": { "created_at": [ - 4376 + 4493 ], "group_hash": [ - 78 + 80 ], "id": [ - 4921 + 4993 ], "last_notified_at": [ - 4376 + 4493 ], "member_steam_ids": [ - 180 + 252 ], "status": [ - 78 + 80 ], "together_count": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "team_suggestions_max_fields": { "created_at": [ - 4376 + 4493 ], "group_hash": [ - 78 + 80 ], "id": [ - 4921 + 4993 ], "last_notified_at": [ - 4376 + 4493 ], "member_steam_ids": [ - 180 + 252 ], "status": [ - 78 + 80 ], "together_count": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "team_suggestions_min_fields": { "created_at": [ - 4376 + 4493 ], "group_hash": [ - 78 + 80 ], "id": [ - 4921 + 4993 ], "last_notified_at": [ - 4376 + 4493 ], "member_steam_ids": [ - 180 + 252 ], "status": [ - 78 + 80 ], "together_count": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "team_suggestions_mutation_response": { "affected_rows": [ - 38 + 40 ], "returning": [ - 4302 + 4419 ], "__typename": [ - 78 + 80 ] }, "team_suggestions_on_conflict": { "constraint": [ - 4307 + 4424 ], "update_columns": [ - 4324 + 4441 ], "where": [ - 4306 + 4423 ], "__typename": [ - 78 + 80 ] }, "team_suggestions_order_by": { "created_at": [ - 2829 + 2946 ], "group_hash": [ - 2829 + 2946 ], "id": [ - 2829 + 2946 ], "last_notified_at": [ - 2829 + 2946 ], "member_steam_ids": [ - 2829 + 2946 ], "status": [ - 2829 + 2946 ], "together_count": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "team_suggestions_pk_columns_input": { "id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "team_suggestions_select_column": {}, "team_suggestions_set_input": { "created_at": [ - 4376 + 4493 ], "group_hash": [ - 78 + 80 ], "id": [ - 4921 + 4993 ], "last_notified_at": [ - 4376 + 4493 ], "member_steam_ids": [ - 180 + 252 ], "status": [ - 78 + 80 ], "together_count": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "team_suggestions_stddev_fields": { "together_count": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "team_suggestions_stddev_pop_fields": { "together_count": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "team_suggestions_stddev_samp_fields": { "together_count": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "team_suggestions_stream_cursor_input": { "initial_value": [ - 4322 + 4439 ], "ordering": [ - 236 + 308 ], "__typename": [ - 78 + 80 ] }, "team_suggestions_stream_cursor_value_input": { "created_at": [ - 4376 + 4493 ], "group_hash": [ - 78 + 80 ], "id": [ - 4921 + 4993 ], "last_notified_at": [ - 4376 + 4493 ], "member_steam_ids": [ - 180 + 252 ], "status": [ - 78 + 80 ], "together_count": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "team_suggestions_sum_fields": { "together_count": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "team_suggestions_update_column": {}, "team_suggestions_updates": { "_inc": [ - 4308 + 4425 ], "_set": [ - 4317 + 4434 ], "where": [ - 4306 + 4423 ], "__typename": [ - 78 + 80 ] }, "team_suggestions_var_pop_fields": { "together_count": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "team_suggestions_var_samp_fields": { "together_count": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "team_suggestions_variance_fields": { "together_count": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "teams": { "avatar_url": [ - 78 + 80 + ], + "awards": [ + 183, + { + "distinct_on": [ + 204, + "[award_recipients_select_column!]" + ], + "limit": [ + 40 + ], + "offset": [ + 40 + ], + "order_by": [ + 202, + "[award_recipients_order_by!]" + ], + "where": [ + 192 + ] + } + ], + "awards_aggregate": [ + 184, + { + "distinct_on": [ + 204, + "[award_recipients_select_column!]" + ], + "limit": [ + 40 + ], + "offset": [ + 40 + ], + "order_by": [ + 202, + "[award_recipients_order_by!]" + ], + "where": [ + 192 + ] + } ], "can_change_role": [ - 3 + 5 ], "can_invite": [ - 3 + 5 ], "can_manage_scrims": [ - 3 + 5 ], "can_remove": [ - 3 + 5 ], "captain": [ - 3787 + 3904 ], "captain_steam_id": [ - 180 + 252 ], "id": [ - 4921 + 4993 ], "invites": [ - 4046, + 4163, { "distinct_on": [ - 4067, + 4184, "[team_invites_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 4065, + 4182, "[team_invites_order_by!]" ], "where": [ - 4055 + 4172 ] } ], "invites_aggregate": [ - 4047, + 4164, { "distinct_on": [ - 4067, + 4184, "[team_invites_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 4065, + 4182, "[team_invites_order_by!]" ], "where": [ - 4055 + 4172 ] } ], "is_organization": [ - 3 + 5 ], "match_lineups": [ - 2324, + 2441, { "distinct_on": [ - 2346, + 2463, "[match_lineups_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2344, + 2461, "[match_lineups_order_by!]" ], "where": [ - 2333 + 2450 ] } ], "match_lineups_aggregate": [ - 2325, + 2442, { "distinct_on": [ - 2346, + 2463, "[match_lineups_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2344, + 2461, "[match_lineups_order_by!]" ], "where": [ - 2333 + 2450 ] } ], "matches": [ - 2644, + 2761, { "distinct_on": [ - 2666, + 2783, "[matches_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2664, + 2781, "[matches_order_by!]" ], "where": [ - 2653 + 2770 ] } ], "name": [ - 78 + 80 ], "owner": [ - 3787 + 3904 ], "owner_steam_id": [ - 180 + 252 ], "ranks": [ - 5605 + 5677 ], "reputation": [ - 5625 + 5697 ], "role": [ - 78 + 80 ], "roster": [ - 4087, + 4204, { "distinct_on": [ - 4110, + 4227, "[team_roster_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 4108, + 4225, "[team_roster_order_by!]" ], "where": [ - 4098 + 4215 ] } ], "roster_aggregate": [ - 4088, + 4205, { "distinct_on": [ - 4110, + 4227, "[team_roster_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 4108, + 4225, "[team_roster_order_by!]" ], "where": [ - 4098 + 4215 ] } ], "scrim_availability": [ - 4159, + 4276, { "distinct_on": [ - 4179, + 4296, "[team_scrim_availability_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 4177, + 4294, "[team_scrim_availability_order_by!]" ], "where": [ - 4168 + 4285 ] } ], "scrim_availability_aggregate": [ - 4160, + 4277, { "distinct_on": [ - 4179, + 4296, "[team_scrim_availability_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 4177, + 4294, "[team_scrim_availability_order_by!]" ], "where": [ - 4168 + 4285 ] } ], "scrim_settings": [ - 4274 + 4391 ], "short_name": [ - 78 + 80 ], "tournament_teams": [ - 4728, + 4887, { "distinct_on": [ - 4750, + 4909, "[tournament_teams_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 4748, + 4907, "[tournament_teams_order_by!]" ], "where": [ - 4737 + 4896 ] } ], "tournament_teams_aggregate": [ - 4729, + 4888, { "distinct_on": [ - 4750, + 4909, "[tournament_teams_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 4748, + 4907, "[tournament_teams_order_by!]" ], "where": [ - 4737 + 4896 ] } ], "__typename": [ - 78 + 80 ] }, "teams_aggregate": { "aggregate": [ - 4335 + 4452 ], "nodes": [ - 4329 + 4446 ], "__typename": [ - 78 + 80 ] }, "teams_aggregate_bool_exp": { "bool_and": [ - 4332 + 4449 ], "bool_or": [ - 4333 + 4450 ], "count": [ - 4334 + 4451 ], "__typename": [ - 78 + 80 ] }, "teams_aggregate_bool_exp_bool_and": { "arguments": [ - 4354 + 4471 ], "distinct": [ - 3 + 5 ], "filter": [ - 4340 + 4457 ], "predicate": [ - 4 + 6 ], "__typename": [ - 78 + 80 ] }, "teams_aggregate_bool_exp_bool_or": { "arguments": [ - 4355 + 4472 ], "distinct": [ - 3 + 5 ], "filter": [ - 4340 + 4457 ], "predicate": [ - 4 + 6 ], "__typename": [ - 78 + 80 ] }, "teams_aggregate_bool_exp_count": { "arguments": [ - 4353 + 4470 ], "distinct": [ - 3 + 5 ], "filter": [ - 4340 + 4457 ], "predicate": [ - 39 + 41 ], "__typename": [ - 78 + 80 ] }, "teams_aggregate_fields": { "avg": [ - 4338 + 4455 ], "count": [ - 38, + 40, { "columns": [ - 4353, + 4470, "[teams_select_column!]" ], "distinct": [ - 3 + 5 ] } ], "max": [ - 4344 + 4461 ], "min": [ - 4346 + 4463 ], "stddev": [ - 4357 + 4474 ], "stddev_pop": [ - 4359 + 4476 ], "stddev_samp": [ - 4361 + 4478 ], "sum": [ - 4365 + 4482 ], "var_pop": [ - 4369 + 4486 ], "var_samp": [ - 4371 + 4488 ], "variance": [ - 4373 + 4490 ], "__typename": [ - 78 + 80 ] }, "teams_aggregate_order_by": { "avg": [ - 4339 + 4456 ], "count": [ - 2829 + 2946 ], "max": [ - 4345 + 4462 ], "min": [ - 4347 + 4464 ], "stddev": [ - 4358 + 4475 ], "stddev_pop": [ - 4360 + 4477 ], "stddev_samp": [ - 4362 + 4479 ], "sum": [ - 4366 + 4483 ], "var_pop": [ - 4370 + 4487 ], "var_samp": [ - 4372 + 4489 ], "variance": [ - 4374 + 4491 ], "__typename": [ - 78 + 80 ] }, "teams_arr_rel_insert_input": { "data": [ - 4343 + 4460 ], "on_conflict": [ - 4350 + 4467 ], "__typename": [ - 78 + 80 ] }, "teams_avg_fields": { "captain_steam_id": [ - 29 + 31 ], "owner_steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "teams_avg_order_by": { "captain_steam_id": [ - 2829 + 2946 ], "owner_steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "teams_bool_exp": { "_and": [ - 4340 + 4457 ], "_not": [ - 4340 + 4457 ], "_or": [ - 4340 + 4457 ], "avatar_url": [ - 80 + 82 + ], + "awards": [ + 192 + ], + "awards_aggregate": [ + 185 ], "can_change_role": [ - 4 + 6 ], "can_invite": [ - 4 + 6 ], "can_manage_scrims": [ - 4 + 6 ], "can_remove": [ - 4 + 6 ], "captain": [ - 3791 + 3908 ], "captain_steam_id": [ - 182 + 254 ], "id": [ - 4923 + 4995 ], "invites": [ - 4055 + 4172 ], "invites_aggregate": [ - 4048 + 4165 ], "is_organization": [ - 4 + 6 ], "match_lineups": [ - 2333 + 2450 ], "match_lineups_aggregate": [ - 2326 + 2443 ], "matches": [ - 2653 + 2770 ], "name": [ - 80 + 82 ], "owner": [ - 3791 + 3908 ], "owner_steam_id": [ - 182 + 254 ], "ranks": [ - 5609 + 5681 ], "reputation": [ - 5629 + 5701 ], "role": [ - 80 + 82 ], "roster": [ - 4098 + 4215 ], "roster_aggregate": [ - 4089 + 4206 ], "scrim_availability": [ - 4168 + 4285 ], "scrim_availability_aggregate": [ - 4161 + 4278 ], "scrim_settings": [ - 4278 + 4395 ], "short_name": [ - 80 + 82 ], "tournament_teams": [ - 4737 + 4896 ], "tournament_teams_aggregate": [ - 4730 + 4889 ], "__typename": [ - 78 + 80 ] }, "teams_constraint": {}, "teams_inc_input": { "captain_steam_id": [ - 180 + 252 ], "owner_steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "teams_insert_input": { "avatar_url": [ - 78 + 80 + ], + "awards": [ + 189 ], "captain": [ - 3798 + 3915 ], "captain_steam_id": [ - 180 + 252 ], "id": [ - 4921 + 4993 ], "invites": [ - 4052 + 4169 ], "is_organization": [ - 3 + 5 ], "match_lineups": [ - 2330 + 2447 ], "name": [ - 78 + 80 ], "owner": [ - 3798 + 3915 ], "owner_steam_id": [ - 180 + 252 ], "ranks": [ - 5613 + 5685 ], "reputation": [ - 5633 + 5705 ], "roster": [ - 4095 + 4212 ], "scrim_availability": [ - 4167 + 4284 ], "scrim_settings": [ - 4285 + 4402 ], "short_name": [ - 78 + 80 ], "tournament_teams": [ - 4734 + 4893 ], "__typename": [ - 78 + 80 ] }, "teams_max_fields": { "avatar_url": [ - 78 + 80 ], "captain_steam_id": [ - 180 + 252 ], "id": [ - 4921 + 4993 + ], + "name": [ + 80 + ], + "owner_steam_id": [ + 252 + ], + "role": [ + 80 + ], + "short_name": [ + 80 + ], + "__typename": [ + 80 + ] + }, + "teams_max_order_by": { + "avatar_url": [ + 2946 + ], + "captain_steam_id": [ + 2946 + ], + "id": [ + 2946 + ], + "name": [ + 2946 + ], + "owner_steam_id": [ + 2946 + ], + "short_name": [ + 2946 + ], + "__typename": [ + 80 + ] + }, + "teams_min_fields": { + "avatar_url": [ + 80 + ], + "captain_steam_id": [ + 252 + ], + "id": [ + 4993 + ], + "name": [ + 80 + ], + "owner_steam_id": [ + 252 + ], + "role": [ + 80 + ], + "short_name": [ + 80 + ], + "__typename": [ + 80 + ] + }, + "teams_min_order_by": { + "avatar_url": [ + 2946 + ], + "captain_steam_id": [ + 2946 + ], + "id": [ + 2946 + ], + "name": [ + 2946 + ], + "owner_steam_id": [ + 2946 + ], + "short_name": [ + 2946 + ], + "__typename": [ + 80 + ] + }, + "teams_mutation_response": { + "affected_rows": [ + 40 + ], + "returning": [ + 4446 + ], + "__typename": [ + 80 + ] + }, + "teams_obj_rel_insert_input": { + "data": [ + 4460 + ], + "on_conflict": [ + 4467 + ], + "__typename": [ + 80 + ] + }, + "teams_on_conflict": { + "constraint": [ + 4458 + ], + "update_columns": [ + 4484 + ], + "where": [ + 4457 + ], + "__typename": [ + 80 + ] + }, + "teams_order_by": { + "avatar_url": [ + 2946 + ], + "awards_aggregate": [ + 188 + ], + "can_change_role": [ + 2946 + ], + "can_invite": [ + 2946 + ], + "can_manage_scrims": [ + 2946 + ], + "can_remove": [ + 2946 + ], + "captain": [ + 3917 + ], + "captain_steam_id": [ + 2946 + ], + "id": [ + 2946 + ], + "invites_aggregate": [ + 4168 + ], + "is_organization": [ + 2946 + ], + "match_lineups_aggregate": [ + 2446 + ], + "matches_aggregate": [ + 2766 + ], + "name": [ + 2946 + ], + "owner": [ + 3917 + ], + "owner_steam_id": [ + 2946 + ], + "ranks": [ + 5686 + ], + "reputation": [ + 5706 + ], + "role": [ + 2946 + ], + "roster_aggregate": [ + 4211 + ], + "scrim_availability_aggregate": [ + 4283 + ], + "scrim_settings": [ + 4404 + ], + "short_name": [ + 2946 + ], + "tournament_teams_aggregate": [ + 4892 + ], + "__typename": [ + 80 + ] + }, + "teams_pk_columns_input": { + "id": [ + 4993 + ], + "__typename": [ + 80 + ] + }, + "teams_select_column": {}, + "teams_select_column_teams_aggregate_bool_exp_bool_and_arguments_columns": {}, + "teams_select_column_teams_aggregate_bool_exp_bool_or_arguments_columns": {}, + "teams_set_input": { + "avatar_url": [ + 80 + ], + "captain_steam_id": [ + 252 + ], + "id": [ + 4993 + ], + "is_organization": [ + 5 + ], + "name": [ + 80 + ], + "owner_steam_id": [ + 252 + ], + "short_name": [ + 80 + ], + "__typename": [ + 80 + ] + }, + "teams_stddev_fields": { + "captain_steam_id": [ + 31 + ], + "owner_steam_id": [ + 31 + ], + "__typename": [ + 80 + ] + }, + "teams_stddev_order_by": { + "captain_steam_id": [ + 2946 + ], + "owner_steam_id": [ + 2946 + ], + "__typename": [ + 80 + ] + }, + "teams_stddev_pop_fields": { + "captain_steam_id": [ + 31 + ], + "owner_steam_id": [ + 31 + ], + "__typename": [ + 80 + ] + }, + "teams_stddev_pop_order_by": { + "captain_steam_id": [ + 2946 + ], + "owner_steam_id": [ + 2946 + ], + "__typename": [ + 80 + ] + }, + "teams_stddev_samp_fields": { + "captain_steam_id": [ + 31 + ], + "owner_steam_id": [ + 31 + ], + "__typename": [ + 80 + ] + }, + "teams_stddev_samp_order_by": { + "captain_steam_id": [ + 2946 + ], + "owner_steam_id": [ + 2946 + ], + "__typename": [ + 80 + ] + }, + "teams_stream_cursor_input": { + "initial_value": [ + 4481 + ], + "ordering": [ + 308 + ], + "__typename": [ + 80 + ] + }, + "teams_stream_cursor_value_input": { + "avatar_url": [ + 80 + ], + "captain_steam_id": [ + 252 + ], + "id": [ + 4993 + ], + "is_organization": [ + 5 + ], + "name": [ + 80 + ], + "owner_steam_id": [ + 252 + ], + "short_name": [ + 80 + ], + "__typename": [ + 80 + ] + }, + "teams_sum_fields": { + "captain_steam_id": [ + 252 + ], + "owner_steam_id": [ + 252 + ], + "__typename": [ + 80 + ] + }, + "teams_sum_order_by": { + "captain_steam_id": [ + 2946 + ], + "owner_steam_id": [ + 2946 + ], + "__typename": [ + 80 + ] + }, + "teams_update_column": {}, + "teams_updates": { + "_inc": [ + 4459 + ], + "_set": [ + 4473 + ], + "where": [ + 4457 + ], + "__typename": [ + 80 + ] + }, + "teams_var_pop_fields": { + "captain_steam_id": [ + 31 + ], + "owner_steam_id": [ + 31 + ], + "__typename": [ + 80 + ] + }, + "teams_var_pop_order_by": { + "captain_steam_id": [ + 2946 + ], + "owner_steam_id": [ + 2946 + ], + "__typename": [ + 80 + ] + }, + "teams_var_samp_fields": { + "captain_steam_id": [ + 31 + ], + "owner_steam_id": [ + 31 + ], + "__typename": [ + 80 + ] + }, + "teams_var_samp_order_by": { + "captain_steam_id": [ + 2946 + ], + "owner_steam_id": [ + 2946 + ], + "__typename": [ + 80 + ] + }, + "teams_variance_fields": { + "captain_steam_id": [ + 31 + ], + "owner_steam_id": [ + 31 + ], + "__typename": [ + 80 + ] + }, + "teams_variance_order_by": { + "captain_steam_id": [ + 2946 + ], + "owner_steam_id": [ + 2946 + ], + "__typename": [ + 80 + ] + }, + "timestamp": {}, + "timestamptz": {}, + "timestamptz_comparison_exp": { + "_eq": [ + 4493 + ], + "_gt": [ + 4493 + ], + "_gte": [ + 4493 + ], + "_in": [ + 4493 + ], + "_is_null": [ + 5 + ], + "_lt": [ + 4493 + ], + "_lte": [ + 4493 + ], + "_neq": [ + 4493 + ], + "_nin": [ + 4493 + ], + "__typename": [ + 80 + ] + }, + "tournament_awards": { + "award": [ + 224 + ], + "award_id": [ + 4993 + ], + "created_at": [ + 4493 + ], + "custom_name": [ + 80 + ], + "id": [ + 4993 + ], + "image_url": [ + 80 + ], + "placement": [ + 40 + ], + "silhouette": [ + 40 + ], + "tournament": [ + 4929 + ], + "tournament_id": [ + 4993 + ], + "updated_at": [ + 4493 + ], + "__typename": [ + 80 + ] + }, + "tournament_awards_aggregate": { + "aggregate": [ + 4499 + ], + "nodes": [ + 4495 + ], + "__typename": [ + 80 + ] + }, + "tournament_awards_aggregate_bool_exp": { + "count": [ + 4498 + ], + "__typename": [ + 80 + ] + }, + "tournament_awards_aggregate_bool_exp_count": { + "arguments": [ + 4517 + ], + "distinct": [ + 5 + ], + "filter": [ + 4504 + ], + "predicate": [ + 41 + ], + "__typename": [ + 80 + ] + }, + "tournament_awards_aggregate_fields": { + "avg": [ + 4502 + ], + "count": [ + 40, + { + "columns": [ + 4517, + "[tournament_awards_select_column!]" + ], + "distinct": [ + 5 + ] + } + ], + "max": [ + 4508 + ], + "min": [ + 4510 + ], + "stddev": [ + 4519 + ], + "stddev_pop": [ + 4521 + ], + "stddev_samp": [ + 4523 + ], + "sum": [ + 4527 + ], + "var_pop": [ + 4531 + ], + "var_samp": [ + 4533 + ], + "variance": [ + 4535 + ], + "__typename": [ + 80 + ] + }, + "tournament_awards_aggregate_order_by": { + "avg": [ + 4503 + ], + "count": [ + 2946 + ], + "max": [ + 4509 + ], + "min": [ + 4511 + ], + "stddev": [ + 4520 + ], + "stddev_pop": [ + 4522 + ], + "stddev_samp": [ + 4524 + ], + "sum": [ + 4528 + ], + "var_pop": [ + 4532 + ], + "var_samp": [ + 4534 + ], + "variance": [ + 4536 + ], + "__typename": [ + 80 + ] + }, + "tournament_awards_arr_rel_insert_input": { + "data": [ + 4507 + ], + "on_conflict": [ + 4514 + ], + "__typename": [ + 80 + ] + }, + "tournament_awards_avg_fields": { + "placement": [ + 31 + ], + "silhouette": [ + 31 + ], + "__typename": [ + 80 + ] + }, + "tournament_awards_avg_order_by": { + "placement": [ + 2946 + ], + "silhouette": [ + 2946 + ], + "__typename": [ + 80 + ] + }, + "tournament_awards_bool_exp": { + "_and": [ + 4504 + ], + "_not": [ + 4504 + ], + "_or": [ + 4504 + ], + "award": [ + 228 + ], + "award_id": [ + 4995 + ], + "created_at": [ + 4494 + ], + "custom_name": [ + 82 + ], + "id": [ + 4995 + ], + "image_url": [ + 82 + ], + "placement": [ + 41 + ], + "silhouette": [ + 41 + ], + "tournament": [ + 4950 + ], + "tournament_id": [ + 4995 + ], + "updated_at": [ + 4494 + ], + "__typename": [ + 80 + ] + }, + "tournament_awards_constraint": {}, + "tournament_awards_inc_input": { + "placement": [ + 40 + ], + "silhouette": [ + 40 + ], + "__typename": [ + 80 + ] + }, + "tournament_awards_insert_input": { + "award": [ + 235 + ], + "award_id": [ + 4993 + ], + "created_at": [ + 4493 + ], + "custom_name": [ + 80 + ], + "id": [ + 4993 + ], + "image_url": [ + 80 + ], + "placement": [ + 40 + ], + "silhouette": [ + 40 + ], + "tournament": [ + 4959 + ], + "tournament_id": [ + 4993 + ], + "updated_at": [ + 4493 + ], + "__typename": [ + 80 + ] + }, + "tournament_awards_max_fields": { + "award_id": [ + 4993 + ], + "created_at": [ + 4493 + ], + "custom_name": [ + 80 + ], + "id": [ + 4993 ], - "name": [ - 78 + "image_url": [ + 80 ], - "owner_steam_id": [ - 180 + "placement": [ + 40 ], - "role": [ - 78 + "silhouette": [ + 40 ], - "short_name": [ - 78 + "tournament_id": [ + 4993 + ], + "updated_at": [ + 4493 ], "__typename": [ - 78 + 80 ] }, - "teams_max_order_by": { - "avatar_url": [ - 2829 + "tournament_awards_max_order_by": { + "award_id": [ + 2946 ], - "captain_steam_id": [ - 2829 + "created_at": [ + 2946 + ], + "custom_name": [ + 2946 ], "id": [ - 2829 + 2946 ], - "name": [ - 2829 + "image_url": [ + 2946 ], - "owner_steam_id": [ - 2829 + "placement": [ + 2946 ], - "short_name": [ - 2829 + "silhouette": [ + 2946 + ], + "tournament_id": [ + 2946 + ], + "updated_at": [ + 2946 ], "__typename": [ - 78 + 80 ] }, - "teams_min_fields": { - "avatar_url": [ - 78 + "tournament_awards_min_fields": { + "award_id": [ + 4993 ], - "captain_steam_id": [ - 180 + "created_at": [ + 4493 + ], + "custom_name": [ + 80 ], "id": [ - 4921 + 4993 ], - "name": [ - 78 + "image_url": [ + 80 ], - "owner_steam_id": [ - 180 + "placement": [ + 40 ], - "role": [ - 78 + "silhouette": [ + 40 ], - "short_name": [ - 78 + "tournament_id": [ + 4993 + ], + "updated_at": [ + 4493 ], "__typename": [ - 78 + 80 ] }, - "teams_min_order_by": { - "avatar_url": [ - 2829 + "tournament_awards_min_order_by": { + "award_id": [ + 2946 ], - "captain_steam_id": [ - 2829 + "created_at": [ + 2946 + ], + "custom_name": [ + 2946 ], "id": [ - 2829 + 2946 ], - "name": [ - 2829 + "image_url": [ + 2946 ], - "owner_steam_id": [ - 2829 + "placement": [ + 2946 ], - "short_name": [ - 2829 + "silhouette": [ + 2946 + ], + "tournament_id": [ + 2946 + ], + "updated_at": [ + 2946 ], "__typename": [ - 78 + 80 ] }, - "teams_mutation_response": { + "tournament_awards_mutation_response": { "affected_rows": [ - 38 + 40 ], "returning": [ - 4329 + 4495 ], "__typename": [ - 78 + 80 ] }, - "teams_obj_rel_insert_input": { + "tournament_awards_obj_rel_insert_input": { "data": [ - 4343 + 4507 ], "on_conflict": [ - 4350 + 4514 ], "__typename": [ - 78 + 80 ] }, - "teams_on_conflict": { + "tournament_awards_on_conflict": { "constraint": [ - 4341 + 4505 ], "update_columns": [ - 4367 + 4529 ], "where": [ - 4340 + 4504 ], "__typename": [ - 78 + 80 ] }, - "teams_order_by": { - "avatar_url": [ - 2829 - ], - "can_change_role": [ - 2829 - ], - "can_invite": [ - 2829 - ], - "can_manage_scrims": [ - 2829 + "tournament_awards_order_by": { + "award": [ + 237 ], - "can_remove": [ - 2829 + "award_id": [ + 2946 ], - "captain": [ - 3800 + "created_at": [ + 2946 ], - "captain_steam_id": [ - 2829 + "custom_name": [ + 2946 ], "id": [ - 2829 - ], - "invites_aggregate": [ - 4051 - ], - "is_organization": [ - 2829 - ], - "match_lineups_aggregate": [ - 2329 - ], - "matches_aggregate": [ - 2649 - ], - "name": [ - 2829 - ], - "owner": [ - 3800 + 2946 ], - "owner_steam_id": [ - 2829 - ], - "ranks": [ - 5614 - ], - "reputation": [ - 5634 - ], - "role": [ - 2829 + "image_url": [ + 2946 ], - "roster_aggregate": [ - 4094 + "placement": [ + 2946 ], - "scrim_availability_aggregate": [ - 4166 + "silhouette": [ + 2946 ], - "scrim_settings": [ - 4287 + "tournament": [ + 4961 ], - "short_name": [ - 2829 + "tournament_id": [ + 2946 ], - "tournament_teams_aggregate": [ - 4733 + "updated_at": [ + 2946 ], "__typename": [ - 78 + 80 ] }, - "teams_pk_columns_input": { + "tournament_awards_pk_columns_input": { "id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, - "teams_select_column": {}, - "teams_select_column_teams_aggregate_bool_exp_bool_and_arguments_columns": {}, - "teams_select_column_teams_aggregate_bool_exp_bool_or_arguments_columns": {}, - "teams_set_input": { - "avatar_url": [ - 78 + "tournament_awards_select_column": {}, + "tournament_awards_set_input": { + "award_id": [ + 4993 ], - "captain_steam_id": [ - 180 + "created_at": [ + 4493 + ], + "custom_name": [ + 80 ], "id": [ - 4921 + 4993 ], - "is_organization": [ - 3 + "image_url": [ + 80 ], - "name": [ - 78 + "placement": [ + 40 ], - "owner_steam_id": [ - 180 + "silhouette": [ + 40 ], - "short_name": [ - 78 + "tournament_id": [ + 4993 + ], + "updated_at": [ + 4493 ], "__typename": [ - 78 + 80 ] }, - "teams_stddev_fields": { - "captain_steam_id": [ - 29 + "tournament_awards_stddev_fields": { + "placement": [ + 31 ], - "owner_steam_id": [ - 29 + "silhouette": [ + 31 ], "__typename": [ - 78 + 80 ] }, - "teams_stddev_order_by": { - "captain_steam_id": [ - 2829 + "tournament_awards_stddev_order_by": { + "placement": [ + 2946 ], - "owner_steam_id": [ - 2829 + "silhouette": [ + 2946 ], "__typename": [ - 78 + 80 ] }, - "teams_stddev_pop_fields": { - "captain_steam_id": [ - 29 + "tournament_awards_stddev_pop_fields": { + "placement": [ + 31 ], - "owner_steam_id": [ - 29 + "silhouette": [ + 31 ], "__typename": [ - 78 + 80 ] }, - "teams_stddev_pop_order_by": { - "captain_steam_id": [ - 2829 + "tournament_awards_stddev_pop_order_by": { + "placement": [ + 2946 ], - "owner_steam_id": [ - 2829 + "silhouette": [ + 2946 ], "__typename": [ - 78 + 80 ] }, - "teams_stddev_samp_fields": { - "captain_steam_id": [ - 29 + "tournament_awards_stddev_samp_fields": { + "placement": [ + 31 ], - "owner_steam_id": [ - 29 + "silhouette": [ + 31 ], "__typename": [ - 78 + 80 ] }, - "teams_stddev_samp_order_by": { - "captain_steam_id": [ - 2829 + "tournament_awards_stddev_samp_order_by": { + "placement": [ + 2946 ], - "owner_steam_id": [ - 2829 + "silhouette": [ + 2946 ], "__typename": [ - 78 + 80 ] }, - "teams_stream_cursor_input": { + "tournament_awards_stream_cursor_input": { "initial_value": [ - 4364 + 4526 ], "ordering": [ - 236 + 308 ], "__typename": [ - 78 + 80 ] }, - "teams_stream_cursor_value_input": { - "avatar_url": [ - 78 + "tournament_awards_stream_cursor_value_input": { + "award_id": [ + 4993 ], - "captain_steam_id": [ - 180 + "created_at": [ + 4493 + ], + "custom_name": [ + 80 ], "id": [ - 4921 + 4993 ], - "is_organization": [ - 3 + "image_url": [ + 80 ], - "name": [ - 78 + "placement": [ + 40 ], - "owner_steam_id": [ - 180 + "silhouette": [ + 40 ], - "short_name": [ - 78 + "tournament_id": [ + 4993 + ], + "updated_at": [ + 4493 ], "__typename": [ - 78 + 80 ] }, - "teams_sum_fields": { - "captain_steam_id": [ - 180 + "tournament_awards_sum_fields": { + "placement": [ + 40 ], - "owner_steam_id": [ - 180 + "silhouette": [ + 40 ], "__typename": [ - 78 + 80 ] }, - "teams_sum_order_by": { - "captain_steam_id": [ - 2829 + "tournament_awards_sum_order_by": { + "placement": [ + 2946 ], - "owner_steam_id": [ - 2829 + "silhouette": [ + 2946 ], "__typename": [ - 78 + 80 ] }, - "teams_update_column": {}, - "teams_updates": { + "tournament_awards_update_column": {}, + "tournament_awards_updates": { "_inc": [ - 4342 + 4506 ], "_set": [ - 4356 + 4518 ], "where": [ - 4340 - ], - "__typename": [ - 78 - ] - }, - "teams_var_pop_fields": { - "captain_steam_id": [ - 29 - ], - "owner_steam_id": [ - 29 + 4504 ], "__typename": [ - 78 + 80 ] }, - "teams_var_pop_order_by": { - "captain_steam_id": [ - 2829 + "tournament_awards_var_pop_fields": { + "placement": [ + 31 ], - "owner_steam_id": [ - 2829 + "silhouette": [ + 31 ], "__typename": [ - 78 + 80 ] }, - "teams_var_samp_fields": { - "captain_steam_id": [ - 29 + "tournament_awards_var_pop_order_by": { + "placement": [ + 2946 ], - "owner_steam_id": [ - 29 + "silhouette": [ + 2946 ], "__typename": [ - 78 + 80 ] }, - "teams_var_samp_order_by": { - "captain_steam_id": [ - 2829 + "tournament_awards_var_samp_fields": { + "placement": [ + 31 ], - "owner_steam_id": [ - 2829 + "silhouette": [ + 31 ], "__typename": [ - 78 + 80 ] }, - "teams_variance_fields": { - "captain_steam_id": [ - 29 + "tournament_awards_var_samp_order_by": { + "placement": [ + 2946 ], - "owner_steam_id": [ - 29 + "silhouette": [ + 2946 ], "__typename": [ - 78 + 80 ] }, - "teams_variance_order_by": { - "captain_steam_id": [ - 2829 + "tournament_awards_variance_fields": { + "placement": [ + 31 ], - "owner_steam_id": [ - 2829 + "silhouette": [ + 31 ], "__typename": [ - 78 + 80 ] }, - "timestamp": {}, - "timestamptz": {}, - "timestamptz_comparison_exp": { - "_eq": [ - 4376 - ], - "_gt": [ - 4376 - ], - "_gte": [ - 4376 - ], - "_in": [ - 4376 - ], - "_is_null": [ - 3 - ], - "_lt": [ - 4376 - ], - "_lte": [ - 4376 - ], - "_neq": [ - 4376 + "tournament_awards_variance_order_by": { + "placement": [ + 2946 ], - "_nin": [ - 4376 + "silhouette": [ + 2946 ], "__typename": [ - 78 + 80 ] }, "tournament_brackets": { "bye": [ - 3 + 5 ], "created_at": [ - 4376 + 4493 ], "feeding_brackets": [ - 4378, + 4537, { "distinct_on": [ - 4402, + 4561, "[tournament_brackets_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 4400, + 4559, "[tournament_brackets_order_by!]" ], "where": [ - 4389 + 4548 ] } ], "finished": [ - 3 + 5 ], "group": [ - 2827 + 2944 ], "id": [ - 4921 + 4993 ], "loser_bracket": [ - 4378 + 4537 ], "loser_parent_bracket_id": [ - 4921 + 4993 ], "match": [ - 2644 + 2761 ], "match_id": [ - 4921 + 4993 ], "match_number": [ - 38 + 40 ], "match_options_id": [ - 4921 + 4993 ], "options": [ - 2524 + 2641 ], "parent_bracket": [ - 4378 + 4537 ], "parent_bracket_id": [ - 4921 + 4993 ], "path": [ - 78 + 80 ], "round": [ - 38 + 40 ], "scheduled_at": [ - 4376 + 4493 ], "scheduled_eta": [ - 4376 + 4493 ], "scheduling_proposals": [ - 1837, + 1954, { "distinct_on": [ - 1858, + 1975, "[league_scheduling_proposals_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 1856, + 1973, "[league_scheduling_proposals_order_by!]" ], "where": [ - 1846 + 1963 ] } ], "scheduling_proposals_aggregate": [ - 1838, + 1955, { "distinct_on": [ - 1858, + 1975, "[league_scheduling_proposals_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 1856, + 1973, "[league_scheduling_proposals_order_by!]" ], "where": [ - 1846 + 1963 ] } ], "stage": [ - 4595 + 4754 ], "team_1": [ - 4728 + 4887 ], "team_1_seed": [ - 38 + 40 ], "team_2": [ - 4728 + 4887 ], "team_2_seed": [ - 38 + 40 ], "tournament_stage_id": [ - 4921 + 4993 ], "tournament_team_id_1": [ - 4921 + 4993 ], "tournament_team_id_2": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "tournament_brackets_aggregate": { "aggregate": [ - 4384 + 4543 ], "nodes": [ - 4378 + 4537 ], "__typename": [ - 78 + 80 ] }, "tournament_brackets_aggregate_bool_exp": { "bool_and": [ - 4381 + 4540 ], "bool_or": [ - 4382 + 4541 ], "count": [ - 4383 + 4542 ], "__typename": [ - 78 + 80 ] }, "tournament_brackets_aggregate_bool_exp_bool_and": { "arguments": [ - 4403 + 4562 ], "distinct": [ - 3 + 5 ], "filter": [ - 4389 + 4548 ], "predicate": [ - 4 + 6 ], "__typename": [ - 78 + 80 ] }, "tournament_brackets_aggregate_bool_exp_bool_or": { "arguments": [ - 4404 + 4563 ], "distinct": [ - 3 + 5 ], "filter": [ - 4389 + 4548 ], "predicate": [ - 4 + 6 ], "__typename": [ - 78 + 80 ] }, "tournament_brackets_aggregate_bool_exp_count": { "arguments": [ - 4402 + 4561 ], "distinct": [ - 3 + 5 ], "filter": [ - 4389 + 4548 ], "predicate": [ - 39 + 41 ], "__typename": [ - 78 + 80 ] }, "tournament_brackets_aggregate_fields": { "avg": [ - 4387 + 4546 ], "count": [ - 38, + 40, { "columns": [ - 4402, + 4561, "[tournament_brackets_select_column!]" ], "distinct": [ - 3 + 5 ] } ], "max": [ - 4393 + 4552 ], "min": [ - 4395 + 4554 ], "stddev": [ - 4406 + 4565 ], "stddev_pop": [ - 4408 + 4567 ], "stddev_samp": [ - 4410 + 4569 ], "sum": [ - 4414 + 4573 ], "var_pop": [ - 4418 + 4577 ], "var_samp": [ - 4420 + 4579 ], "variance": [ - 4422 + 4581 ], "__typename": [ - 78 + 80 ] }, "tournament_brackets_aggregate_order_by": { "avg": [ - 4388 + 4547 ], "count": [ - 2829 + 2946 ], "max": [ - 4394 + 4553 ], "min": [ - 4396 + 4555 ], "stddev": [ - 4407 + 4566 ], "stddev_pop": [ - 4409 + 4568 ], "stddev_samp": [ - 4411 + 4570 ], "sum": [ - 4415 + 4574 ], "var_pop": [ - 4419 + 4578 ], "var_samp": [ - 4421 + 4580 ], "variance": [ - 4423 + 4582 ], "__typename": [ - 78 + 80 ] }, "tournament_brackets_arr_rel_insert_input": { "data": [ - 4392 + 4551 ], "on_conflict": [ - 4399 + 4558 ], "__typename": [ - 78 + 80 ] }, "tournament_brackets_avg_fields": { "group": [ - 29 + 31 ], "match_number": [ - 29 + 31 ], "round": [ - 29 + 31 ], "team_1_seed": [ - 29 + 31 ], "team_2_seed": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "tournament_brackets_avg_order_by": { "group": [ - 2829 + 2946 ], "match_number": [ - 2829 + 2946 ], "round": [ - 2829 + 2946 ], "team_1_seed": [ - 2829 + 2946 ], "team_2_seed": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "tournament_brackets_bool_exp": { "_and": [ - 4389 + 4548 ], "_not": [ - 4389 + 4548 ], "_or": [ - 4389 + 4548 ], "bye": [ - 4 + 6 ], "created_at": [ - 4377 + 4494 ], "feeding_brackets": [ - 4389 + 4548 ], "finished": [ - 4 + 6 ], "group": [ - 2828 + 2945 ], "id": [ - 4923 + 4995 ], "loser_bracket": [ - 4389 + 4548 ], "loser_parent_bracket_id": [ - 4923 + 4995 ], "match": [ - 2653 + 2770 ], "match_id": [ - 4923 + 4995 ], "match_number": [ - 39 + 41 ], "match_options_id": [ - 4923 + 4995 ], "options": [ - 2528 + 2645 ], "parent_bracket": [ - 4389 + 4548 ], "parent_bracket_id": [ - 4923 + 4995 ], "path": [ - 80 + 82 ], "round": [ - 39 + 41 ], "scheduled_at": [ - 4377 + 4494 ], "scheduled_eta": [ - 4377 + 4494 ], "scheduling_proposals": [ - 1846 + 1963 ], "scheduling_proposals_aggregate": [ - 1839 + 1956 ], "stage": [ - 4607 + 4766 ], "team_1": [ - 4737 + 4896 ], "team_1_seed": [ - 39 + 41 ], "team_2": [ - 4737 + 4896 ], "team_2_seed": [ - 39 + 41 ], "tournament_stage_id": [ - 4923 + 4995 ], "tournament_team_id_1": [ - 4923 + 4995 ], "tournament_team_id_2": [ - 4923 + 4995 ], "__typename": [ - 78 + 80 ] }, "tournament_brackets_constraint": {}, "tournament_brackets_inc_input": { "group": [ - 2827 + 2944 ], "match_number": [ - 38 + 40 ], "round": [ - 38 + 40 ], "team_1_seed": [ - 38 + 40 ], "team_2_seed": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "tournament_brackets_insert_input": { "bye": [ - 3 + 5 ], "created_at": [ - 4376 + 4493 ], "finished": [ - 3 + 5 ], "group": [ - 2827 + 2944 ], "id": [ - 4921 + 4993 ], "loser_bracket": [ - 4398 + 4557 ], "loser_parent_bracket_id": [ - 4921 + 4993 ], "match": [ - 2662 + 2779 ], "match_id": [ - 4921 + 4993 ], "match_number": [ - 38 + 40 ], "match_options_id": [ - 4921 + 4993 ], "options": [ - 2535 + 2652 ], "parent_bracket": [ - 4398 + 4557 ], "parent_bracket_id": [ - 4921 + 4993 ], "path": [ - 78 + 80 ], "round": [ - 38 + 40 ], "scheduled_at": [ - 4376 + 4493 ], "scheduled_eta": [ - 4376 + 4493 ], "scheduling_proposals": [ - 1843 + 1960 ], "stage": [ - 4619 + 4778 ], "team_1": [ - 4746 + 4905 ], "team_1_seed": [ - 38 + 40 ], "team_2": [ - 4746 + 4905 ], "team_2_seed": [ - 38 + 40 ], "tournament_stage_id": [ - 4921 + 4993 ], "tournament_team_id_1": [ - 4921 + 4993 ], "tournament_team_id_2": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "tournament_brackets_max_fields": { "created_at": [ - 4376 + 4493 ], "group": [ - 2827 + 2944 ], "id": [ - 4921 + 4993 ], "loser_parent_bracket_id": [ - 4921 + 4993 ], "match_id": [ - 4921 + 4993 ], "match_number": [ - 38 + 40 ], "match_options_id": [ - 4921 + 4993 ], "parent_bracket_id": [ - 4921 + 4993 ], "path": [ - 78 + 80 ], "round": [ - 38 + 40 ], "scheduled_at": [ - 4376 + 4493 ], "scheduled_eta": [ - 4376 + 4493 ], "team_1_seed": [ - 38 + 40 ], "team_2_seed": [ - 38 + 40 ], "tournament_stage_id": [ - 4921 + 4993 ], "tournament_team_id_1": [ - 4921 + 4993 ], "tournament_team_id_2": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "tournament_brackets_max_order_by": { "created_at": [ - 2829 + 2946 ], "group": [ - 2829 + 2946 ], "id": [ - 2829 + 2946 ], "loser_parent_bracket_id": [ - 2829 + 2946 ], "match_id": [ - 2829 + 2946 ], "match_number": [ - 2829 + 2946 ], "match_options_id": [ - 2829 + 2946 ], "parent_bracket_id": [ - 2829 + 2946 ], "path": [ - 2829 + 2946 ], "round": [ - 2829 + 2946 ], "scheduled_at": [ - 2829 + 2946 ], "scheduled_eta": [ - 2829 + 2946 ], "team_1_seed": [ - 2829 + 2946 ], "team_2_seed": [ - 2829 + 2946 ], "tournament_stage_id": [ - 2829 + 2946 ], "tournament_team_id_1": [ - 2829 + 2946 ], "tournament_team_id_2": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "tournament_brackets_min_fields": { "created_at": [ - 4376 + 4493 ], "group": [ - 2827 + 2944 ], "id": [ - 4921 + 4993 ], "loser_parent_bracket_id": [ - 4921 + 4993 ], "match_id": [ - 4921 + 4993 ], "match_number": [ - 38 + 40 ], "match_options_id": [ - 4921 + 4993 ], "parent_bracket_id": [ - 4921 + 4993 ], "path": [ - 78 + 80 ], "round": [ - 38 + 40 ], "scheduled_at": [ - 4376 + 4493 ], "scheduled_eta": [ - 4376 + 4493 ], "team_1_seed": [ - 38 + 40 ], "team_2_seed": [ - 38 + 40 ], "tournament_stage_id": [ - 4921 + 4993 ], "tournament_team_id_1": [ - 4921 + 4993 ], "tournament_team_id_2": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "tournament_brackets_min_order_by": { "created_at": [ - 2829 + 2946 ], "group": [ - 2829 + 2946 ], "id": [ - 2829 + 2946 ], "loser_parent_bracket_id": [ - 2829 + 2946 ], "match_id": [ - 2829 + 2946 ], "match_number": [ - 2829 + 2946 ], "match_options_id": [ - 2829 + 2946 ], "parent_bracket_id": [ - 2829 + 2946 ], "path": [ - 2829 + 2946 ], "round": [ - 2829 + 2946 ], "scheduled_at": [ - 2829 + 2946 ], "scheduled_eta": [ - 2829 + 2946 ], "team_1_seed": [ - 2829 + 2946 ], "team_2_seed": [ - 2829 + 2946 ], "tournament_stage_id": [ - 2829 + 2946 ], "tournament_team_id_1": [ - 2829 + 2946 ], "tournament_team_id_2": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "tournament_brackets_mutation_response": { "affected_rows": [ - 38 + 40 ], "returning": [ - 4378 + 4537 ], "__typename": [ - 78 + 80 ] }, "tournament_brackets_obj_rel_insert_input": { "data": [ - 4392 + 4551 ], "on_conflict": [ - 4399 + 4558 ], "__typename": [ - 78 + 80 ] }, "tournament_brackets_on_conflict": { "constraint": [ - 4390 + 4549 ], "update_columns": [ - 4416 + 4575 ], "where": [ - 4389 + 4548 ], "__typename": [ - 78 + 80 ] }, "tournament_brackets_order_by": { "bye": [ - 2829 + 2946 ], "created_at": [ - 2829 + 2946 ], "feeding_brackets_aggregate": [ - 4385 + 4544 ], "finished": [ - 2829 + 2946 ], "group": [ - 2829 + 2946 ], "id": [ - 2829 + 2946 ], "loser_bracket": [ - 4400 + 4559 ], "loser_parent_bracket_id": [ - 2829 + 2946 ], "match": [ - 2664 + 2781 ], "match_id": [ - 2829 + 2946 ], "match_number": [ - 2829 + 2946 ], "match_options_id": [ - 2829 + 2946 ], "options": [ - 2537 + 2654 ], "parent_bracket": [ - 4400 + 4559 ], "parent_bracket_id": [ - 2829 + 2946 ], "path": [ - 2829 + 2946 ], "round": [ - 2829 + 2946 ], "scheduled_at": [ - 2829 + 2946 ], "scheduled_eta": [ - 2829 + 2946 ], "scheduling_proposals_aggregate": [ - 1842 + 1959 ], "stage": [ - 4621 + 4780 ], "team_1": [ - 4748 + 4907 ], "team_1_seed": [ - 2829 + 2946 ], "team_2": [ - 4748 + 4907 ], "team_2_seed": [ - 2829 + 2946 ], "tournament_stage_id": [ - 2829 + 2946 ], "tournament_team_id_1": [ - 2829 + 2946 ], "tournament_team_id_2": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "tournament_brackets_pk_columns_input": { "id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "tournament_brackets_select_column": {}, @@ -100845,9759 +103872,8264 @@ export default { "tournament_brackets_select_column_tournament_brackets_aggregate_bool_exp_bool_or_arguments_columns": {}, "tournament_brackets_set_input": { "bye": [ - 3 + 5 ], "created_at": [ - 4376 + 4493 ], "finished": [ - 3 + 5 ], "group": [ - 2827 + 2944 ], "id": [ - 4921 + 4993 ], "loser_parent_bracket_id": [ - 4921 + 4993 ], "match_id": [ - 4921 + 4993 ], "match_number": [ - 38 + 40 ], "match_options_id": [ - 4921 + 4993 ], "parent_bracket_id": [ - 4921 + 4993 ], "path": [ - 78 + 80 ], "round": [ - 38 + 40 ], "scheduled_at": [ - 4376 + 4493 ], "scheduled_eta": [ - 4376 + 4493 ], "team_1_seed": [ - 38 + 40 ], "team_2_seed": [ - 38 + 40 ], "tournament_stage_id": [ - 4921 + 4993 ], "tournament_team_id_1": [ - 4921 + 4993 ], "tournament_team_id_2": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "tournament_brackets_stddev_fields": { "group": [ - 29 + 31 ], "match_number": [ - 29 + 31 ], "round": [ - 29 + 31 ], "team_1_seed": [ - 29 + 31 ], "team_2_seed": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "tournament_brackets_stddev_order_by": { "group": [ - 2829 + 2946 ], "match_number": [ - 2829 + 2946 ], "round": [ - 2829 + 2946 ], "team_1_seed": [ - 2829 + 2946 ], "team_2_seed": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "tournament_brackets_stddev_pop_fields": { "group": [ - 29 + 31 ], "match_number": [ - 29 + 31 ], "round": [ - 29 + 31 ], "team_1_seed": [ - 29 + 31 ], "team_2_seed": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "tournament_brackets_stddev_pop_order_by": { "group": [ - 2829 + 2946 ], "match_number": [ - 2829 + 2946 ], "round": [ - 2829 + 2946 ], "team_1_seed": [ - 2829 + 2946 ], "team_2_seed": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "tournament_brackets_stddev_samp_fields": { "group": [ - 29 + 31 ], "match_number": [ - 29 + 31 ], "round": [ - 29 + 31 ], "team_1_seed": [ - 29 + 31 ], "team_2_seed": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "tournament_brackets_stddev_samp_order_by": { "group": [ - 2829 + 2946 ], "match_number": [ - 2829 + 2946 ], "round": [ - 2829 + 2946 ], "team_1_seed": [ - 2829 + 2946 ], "team_2_seed": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "tournament_brackets_stream_cursor_input": { "initial_value": [ - 4413 + 4572 ], "ordering": [ - 236 + 308 ], "__typename": [ - 78 + 80 ] }, "tournament_brackets_stream_cursor_value_input": { "bye": [ - 3 + 5 ], "created_at": [ - 4376 + 4493 ], "finished": [ - 3 + 5 ], "group": [ - 2827 + 2944 ], "id": [ - 4921 + 4993 ], "loser_parent_bracket_id": [ - 4921 + 4993 ], "match_id": [ - 4921 + 4993 ], "match_number": [ - 38 + 40 ], "match_options_id": [ - 4921 + 4993 ], "parent_bracket_id": [ - 4921 + 4993 ], "path": [ - 78 + 80 ], "round": [ - 38 + 40 ], "scheduled_at": [ - 4376 + 4493 ], "scheduled_eta": [ - 4376 + 4493 ], "team_1_seed": [ - 38 + 40 ], "team_2_seed": [ - 38 + 40 ], "tournament_stage_id": [ - 4921 + 4993 ], "tournament_team_id_1": [ - 4921 + 4993 ], "tournament_team_id_2": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "tournament_brackets_sum_fields": { "group": [ - 2827 + 2944 ], "match_number": [ - 38 + 40 ], "round": [ - 38 + 40 ], "team_1_seed": [ - 38 + 40 ], "team_2_seed": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "tournament_brackets_sum_order_by": { "group": [ - 2829 + 2946 ], "match_number": [ - 2829 + 2946 ], "round": [ - 2829 + 2946 ], "team_1_seed": [ - 2829 + 2946 ], "team_2_seed": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "tournament_brackets_update_column": {}, "tournament_brackets_updates": { "_inc": [ - 4391 + 4550 ], "_set": [ - 4405 + 4564 ], "where": [ - 4389 + 4548 ], "__typename": [ - 78 + 80 ] }, "tournament_brackets_var_pop_fields": { "group": [ - 29 + 31 ], "match_number": [ - 29 + 31 ], "round": [ - 29 + 31 ], "team_1_seed": [ - 29 + 31 ], "team_2_seed": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "tournament_brackets_var_pop_order_by": { "group": [ - 2829 + 2946 ], "match_number": [ - 2829 + 2946 ], "round": [ - 2829 + 2946 ], "team_1_seed": [ - 2829 + 2946 ], "team_2_seed": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "tournament_brackets_var_samp_fields": { "group": [ - 29 + 31 ], "match_number": [ - 29 + 31 ], "round": [ - 29 + 31 ], "team_1_seed": [ - 29 + 31 ], "team_2_seed": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "tournament_brackets_var_samp_order_by": { "group": [ - 2829 + 2946 ], "match_number": [ - 2829 + 2946 ], "round": [ - 2829 + 2946 ], "team_1_seed": [ - 2829 + 2946 ], "team_2_seed": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "tournament_brackets_variance_fields": { "group": [ - 29 + 31 ], "match_number": [ - 29 + 31 ], "round": [ - 29 + 31 ], "team_1_seed": [ - 29 + 31 ], "team_2_seed": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "tournament_brackets_variance_order_by": { "group": [ - 2829 + 2946 ], "match_number": [ - 2829 + 2946 ], "round": [ - 2829 + 2946 ], "team_1_seed": [ - 2829 + 2946 ], "team_2_seed": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "tournament_categories": { "category": [ - 1170 + 1287 ], "e_tournament_category": [ - 1165 + 1282 ], "tournament": [ - 4857 + 4929 ], "tournament_id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "tournament_categories_aggregate": { "aggregate": [ - 4428 + 4587 ], "nodes": [ - 4424 + 4583 ], "__typename": [ - 78 + 80 ] }, "tournament_categories_aggregate_bool_exp": { "count": [ - 4427 + 4586 ], "__typename": [ - 78 + 80 ] }, "tournament_categories_aggregate_bool_exp_count": { "arguments": [ - 4442 + 4601 ], "distinct": [ - 3 + 5 ], "filter": [ - 4431 + 4590 ], "predicate": [ - 39 + 41 ], "__typename": [ - 78 + 80 ] }, "tournament_categories_aggregate_fields": { "count": [ - 38, + 40, { "columns": [ - 4442, + 4601, "[tournament_categories_select_column!]" ], "distinct": [ - 3 + 5 ] } ], "max": [ - 4434 + 4593 ], "min": [ - 4436 + 4595 ], "__typename": [ - 78 + 80 ] }, "tournament_categories_aggregate_order_by": { "count": [ - 2829 + 2946 ], "max": [ - 4435 + 4594 ], "min": [ - 4437 + 4596 ], "__typename": [ - 78 + 80 ] }, "tournament_categories_arr_rel_insert_input": { "data": [ - 4433 + 4592 ], "on_conflict": [ - 4439 + 4598 ], "__typename": [ - 78 + 80 ] }, "tournament_categories_bool_exp": { "_and": [ - 4431 + 4590 ], "_not": [ - 4431 + 4590 ], "_or": [ - 4431 + 4590 ], "category": [ - 1171 + 1288 ], "e_tournament_category": [ - 1168 + 1285 ], "tournament": [ - 4878 + 4950 ], "tournament_id": [ - 4923 + 4995 ], "__typename": [ - 78 + 80 ] }, "tournament_categories_constraint": {}, "tournament_categories_insert_input": { "category": [ - 1170 + 1287 ], "e_tournament_category": [ - 1176 + 1293 ], "tournament": [ - 4887 + 4959 ], "tournament_id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "tournament_categories_max_fields": { "tournament_id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "tournament_categories_max_order_by": { "tournament_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "tournament_categories_min_fields": { "tournament_id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "tournament_categories_min_order_by": { "tournament_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "tournament_categories_mutation_response": { "affected_rows": [ - 38 + 40 ], "returning": [ - 4424 + 4583 ], "__typename": [ - 78 + 80 ] }, "tournament_categories_on_conflict": { "constraint": [ - 4432 + 4591 ], "update_columns": [ - 4446 + 4605 ], "where": [ - 4431 + 4590 ], "__typename": [ - 78 + 80 ] }, "tournament_categories_order_by": { "category": [ - 2829 + 2946 ], "e_tournament_category": [ - 1178 + 1295 ], "tournament": [ - 4889 + 4961 ], "tournament_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "tournament_categories_pk_columns_input": { "category": [ - 1170 + 1287 ], "tournament_id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "tournament_categories_select_column": {}, "tournament_categories_set_input": { "category": [ - 1170 + 1287 ], "tournament_id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "tournament_categories_stream_cursor_input": { "initial_value": [ - 4445 + 4604 ], "ordering": [ - 236 + 308 ], "__typename": [ - 78 + 80 ] }, "tournament_categories_stream_cursor_value_input": { "category": [ - 1170 + 1287 ], "tournament_id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "tournament_categories_update_column": {}, "tournament_categories_updates": { "_set": [ - 4443 + 4602 ], "where": [ - 4431 + 4590 ], "__typename": [ - 78 + 80 ] }, "tournament_organizer_teams": { "created_at": [ - 4376 + 4493 ], "team": [ - 4329 + 4446 ], "team_id": [ - 4921 + 4993 ], "tournament": [ - 4857 + 4929 ], "tournament_id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "tournament_organizer_teams_aggregate": { "aggregate": [ - 4452 + 4611 ], "nodes": [ - 4448 + 4607 ], "__typename": [ - 78 + 80 ] }, "tournament_organizer_teams_aggregate_bool_exp": { "count": [ - 4451 + 4610 ], "__typename": [ - 78 + 80 ] }, "tournament_organizer_teams_aggregate_bool_exp_count": { "arguments": [ - 4466 + 4625 ], "distinct": [ - 3 + 5 ], "filter": [ - 4455 + 4614 ], "predicate": [ - 39 + 41 ], "__typename": [ - 78 + 80 ] }, "tournament_organizer_teams_aggregate_fields": { "count": [ - 38, + 40, { "columns": [ - 4466, + 4625, "[tournament_organizer_teams_select_column!]" ], "distinct": [ - 3 + 5 ] } ], "max": [ - 4458 + 4617 ], "min": [ - 4460 + 4619 ], "__typename": [ - 78 + 80 ] }, "tournament_organizer_teams_aggregate_order_by": { "count": [ - 2829 + 2946 ], "max": [ - 4459 + 4618 ], "min": [ - 4461 + 4620 ], "__typename": [ - 78 + 80 ] }, "tournament_organizer_teams_arr_rel_insert_input": { "data": [ - 4457 + 4616 ], "on_conflict": [ - 4463 + 4622 ], "__typename": [ - 78 + 80 ] }, "tournament_organizer_teams_bool_exp": { "_and": [ - 4455 + 4614 ], "_not": [ - 4455 + 4614 ], "_or": [ - 4455 + 4614 ], "created_at": [ - 4377 + 4494 ], "team": [ - 4340 + 4457 ], "team_id": [ - 4923 + 4995 ], "tournament": [ - 4878 + 4950 ], "tournament_id": [ - 4923 + 4995 ], "__typename": [ - 78 + 80 ] }, "tournament_organizer_teams_constraint": {}, "tournament_organizer_teams_insert_input": { "created_at": [ - 4376 + 4493 ], "team": [ - 4349 + 4466 ], "team_id": [ - 4921 + 4993 ], "tournament": [ - 4887 + 4959 ], "tournament_id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "tournament_organizer_teams_max_fields": { "created_at": [ - 4376 + 4493 ], "team_id": [ - 4921 + 4993 ], "tournament_id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "tournament_organizer_teams_max_order_by": { "created_at": [ - 2829 + 2946 ], "team_id": [ - 2829 + 2946 ], "tournament_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "tournament_organizer_teams_min_fields": { "created_at": [ - 4376 + 4493 ], "team_id": [ - 4921 + 4993 ], "tournament_id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "tournament_organizer_teams_min_order_by": { "created_at": [ - 2829 + 2946 ], "team_id": [ - 2829 + 2946 ], "tournament_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "tournament_organizer_teams_mutation_response": { "affected_rows": [ - 38 + 40 ], "returning": [ - 4448 + 4607 ], "__typename": [ - 78 + 80 ] }, "tournament_organizer_teams_on_conflict": { "constraint": [ - 4456 + 4615 ], "update_columns": [ - 4470 + 4629 ], "where": [ - 4455 + 4614 ], "__typename": [ - 78 + 80 ] }, "tournament_organizer_teams_order_by": { "created_at": [ - 2829 + 2946 ], "team": [ - 4351 + 4468 ], "team_id": [ - 2829 + 2946 ], "tournament": [ - 4889 + 4961 ], "tournament_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "tournament_organizer_teams_pk_columns_input": { "team_id": [ - 4921 + 4993 ], "tournament_id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "tournament_organizer_teams_select_column": {}, "tournament_organizer_teams_set_input": { "created_at": [ - 4376 + 4493 ], "team_id": [ - 4921 + 4993 ], "tournament_id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "tournament_organizer_teams_stream_cursor_input": { "initial_value": [ - 4469 + 4628 ], "ordering": [ - 236 + 308 ], "__typename": [ - 78 + 80 ] }, "tournament_organizer_teams_stream_cursor_value_input": { "created_at": [ - 4376 + 4493 ], "team_id": [ - 4921 + 4993 ], "tournament_id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "tournament_organizer_teams_update_column": {}, "tournament_organizer_teams_updates": { "_set": [ - 4467 + 4626 ], "where": [ - 4455 + 4614 ], "__typename": [ - 78 + 80 ] }, "tournament_organizers": { "organization_team": [ - 4329 + 4446 ], "organization_team_id": [ - 4921 + 4993 ], "organizer": [ - 3787 + 3904 ], "steam_id": [ - 180 + 252 ], "tournament": [ - 4857 + 4929 ], "tournament_id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "tournament_organizers_aggregate": { "aggregate": [ - 4476 + 4635 ], "nodes": [ - 4472 + 4631 ], "__typename": [ - 78 + 80 ] }, "tournament_organizers_aggregate_bool_exp": { "count": [ - 4475 + 4634 ], "__typename": [ - 78 + 80 ] }, "tournament_organizers_aggregate_bool_exp_count": { "arguments": [ - 4493 + 4652 ], "distinct": [ - 3 + 5 ], "filter": [ - 4481 + 4640 ], "predicate": [ - 39 + 41 ], "__typename": [ - 78 + 80 ] }, "tournament_organizers_aggregate_fields": { "avg": [ - 4479 + 4638 ], "count": [ - 38, + 40, { "columns": [ - 4493, + 4652, "[tournament_organizers_select_column!]" ], "distinct": [ - 3 + 5 ] } ], "max": [ - 4485 + 4644 ], "min": [ - 4487 + 4646 ], "stddev": [ - 4495 + 4654 ], "stddev_pop": [ - 4497 + 4656 ], "stddev_samp": [ - 4499 + 4658 ], "sum": [ - 4503 + 4662 ], "var_pop": [ - 4507 + 4666 ], "var_samp": [ - 4509 + 4668 ], "variance": [ - 4511 + 4670 ], "__typename": [ - 78 + 80 ] }, "tournament_organizers_aggregate_order_by": { "avg": [ - 4480 + 4639 ], "count": [ - 2829 + 2946 ], "max": [ - 4486 + 4645 ], "min": [ - 4488 + 4647 ], "stddev": [ - 4496 + 4655 ], "stddev_pop": [ - 4498 + 4657 ], "stddev_samp": [ - 4500 + 4659 ], "sum": [ - 4504 + 4663 ], "var_pop": [ - 4508 + 4667 ], "var_samp": [ - 4510 + 4669 ], "variance": [ - 4512 + 4671 ], "__typename": [ - 78 + 80 ] }, "tournament_organizers_arr_rel_insert_input": { "data": [ - 4484 + 4643 ], "on_conflict": [ - 4490 + 4649 ], "__typename": [ - 78 + 80 ] }, "tournament_organizers_avg_fields": { "steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "tournament_organizers_avg_order_by": { "steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "tournament_organizers_bool_exp": { "_and": [ - 4481 + 4640 ], "_not": [ - 4481 + 4640 ], "_or": [ - 4481 + 4640 ], "organization_team": [ - 4340 + 4457 ], "organization_team_id": [ - 4923 + 4995 ], "organizer": [ - 3791 + 3908 ], "steam_id": [ - 182 + 254 ], "tournament": [ - 4878 + 4950 ], "tournament_id": [ - 4923 + 4995 ], "__typename": [ - 78 + 80 ] }, "tournament_organizers_constraint": {}, "tournament_organizers_inc_input": { "steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "tournament_organizers_insert_input": { "organization_team": [ - 4349 + 4466 ], "organization_team_id": [ - 4921 + 4993 ], "organizer": [ - 3798 + 3915 ], "steam_id": [ - 180 + 252 ], "tournament": [ - 4887 + 4959 ], "tournament_id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "tournament_organizers_max_fields": { "organization_team_id": [ - 4921 + 4993 ], "steam_id": [ - 180 + 252 ], "tournament_id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "tournament_organizers_max_order_by": { "organization_team_id": [ - 2829 + 2946 ], "steam_id": [ - 2829 + 2946 ], "tournament_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "tournament_organizers_min_fields": { "organization_team_id": [ - 4921 + 4993 ], "steam_id": [ - 180 + 252 ], "tournament_id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "tournament_organizers_min_order_by": { "organization_team_id": [ - 2829 + 2946 ], "steam_id": [ - 2829 + 2946 ], "tournament_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "tournament_organizers_mutation_response": { "affected_rows": [ - 38 + 40 ], "returning": [ - 4472 + 4631 ], "__typename": [ - 78 + 80 ] }, "tournament_organizers_on_conflict": { "constraint": [ - 4482 + 4641 ], "update_columns": [ - 4505 + 4664 ], "where": [ - 4481 + 4640 ], "__typename": [ - 78 + 80 ] }, "tournament_organizers_order_by": { "organization_team": [ - 4351 + 4468 ], "organization_team_id": [ - 2829 + 2946 ], "organizer": [ - 3800 + 3917 ], "steam_id": [ - 2829 + 2946 ], "tournament": [ - 4889 + 4961 ], "tournament_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "tournament_organizers_pk_columns_input": { "steam_id": [ - 180 + 252 ], "tournament_id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "tournament_organizers_select_column": {}, "tournament_organizers_set_input": { "organization_team_id": [ - 4921 + 4993 ], "steam_id": [ - 180 + 252 ], "tournament_id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "tournament_organizers_stddev_fields": { "steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "tournament_organizers_stddev_order_by": { "steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "tournament_organizers_stddev_pop_fields": { "steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "tournament_organizers_stddev_pop_order_by": { "steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "tournament_organizers_stddev_samp_fields": { "steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "tournament_organizers_stddev_samp_order_by": { "steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "tournament_organizers_stream_cursor_input": { "initial_value": [ - 4502 + 4661 ], "ordering": [ - 236 + 308 ], "__typename": [ - 78 + 80 ] }, "tournament_organizers_stream_cursor_value_input": { "organization_team_id": [ - 4921 + 4993 ], "steam_id": [ - 180 + 252 ], "tournament_id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "tournament_organizers_sum_fields": { "steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "tournament_organizers_sum_order_by": { "steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "tournament_organizers_update_column": {}, "tournament_organizers_updates": { "_inc": [ - 4483 + 4642 ], "_set": [ - 4494 + 4653 ], "where": [ - 4481 + 4640 ], "__typename": [ - 78 + 80 ] }, "tournament_organizers_var_pop_fields": { "steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "tournament_organizers_var_pop_order_by": { "steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "tournament_organizers_var_samp_fields": { "steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "tournament_organizers_var_samp_order_by": { "steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "tournament_organizers_variance_fields": { "steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "tournament_organizers_variance_order_by": { "steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "tournament_prizes": { "created_at": [ - 4376 + 4493 ], "id": [ - 4921 + 4993 ], "order": [ - 38 + 40 ], "place": [ - 78 + 80 ], "prize": [ - 78 + 80 ], "tournament": [ - 4857 + 4929 ], "tournament_id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "tournament_prizes_aggregate": { "aggregate": [ - 4517 + 4676 ], "nodes": [ - 4513 + 4672 ], "__typename": [ - 78 + 80 ] }, "tournament_prizes_aggregate_bool_exp": { "count": [ - 4516 + 4675 ], "__typename": [ - 78 + 80 ] }, "tournament_prizes_aggregate_bool_exp_count": { "arguments": [ - 4534 + 4693 ], "distinct": [ - 3 + 5 ], "filter": [ - 4522 + 4681 ], "predicate": [ - 39 + 41 ], "__typename": [ - 78 + 80 ] }, "tournament_prizes_aggregate_fields": { "avg": [ - 4520 + 4679 ], "count": [ - 38, + 40, { "columns": [ - 4534, + 4693, "[tournament_prizes_select_column!]" ], "distinct": [ - 3 + 5 ] } ], "max": [ - 4526 + 4685 ], "min": [ - 4528 + 4687 ], "stddev": [ - 4536 + 4695 ], "stddev_pop": [ - 4538 + 4697 ], "stddev_samp": [ - 4540 + 4699 ], "sum": [ - 4544 + 4703 ], "var_pop": [ - 4548 + 4707 ], "var_samp": [ - 4550 + 4709 ], "variance": [ - 4552 + 4711 ], "__typename": [ - 78 + 80 ] }, "tournament_prizes_aggregate_order_by": { "avg": [ - 4521 + 4680 ], "count": [ - 2829 + 2946 ], "max": [ - 4527 + 4686 ], "min": [ - 4529 + 4688 ], "stddev": [ - 4537 + 4696 ], "stddev_pop": [ - 4539 + 4698 ], "stddev_samp": [ - 4541 + 4700 ], "sum": [ - 4545 + 4704 ], "var_pop": [ - 4549 + 4708 ], "var_samp": [ - 4551 + 4710 ], "variance": [ - 4553 + 4712 ], "__typename": [ - 78 + 80 ] }, "tournament_prizes_arr_rel_insert_input": { "data": [ - 4525 + 4684 ], "on_conflict": [ - 4531 + 4690 ], "__typename": [ - 78 + 80 ] }, "tournament_prizes_avg_fields": { "order": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "tournament_prizes_avg_order_by": { "order": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "tournament_prizes_bool_exp": { "_and": [ - 4522 + 4681 ], "_not": [ - 4522 + 4681 ], "_or": [ - 4522 + 4681 ], "created_at": [ - 4377 + 4494 ], "id": [ - 4923 + 4995 ], "order": [ - 39 + 41 ], "place": [ - 80 + 82 ], "prize": [ - 80 + 82 ], "tournament": [ - 4878 + 4950 ], "tournament_id": [ - 4923 + 4995 ], "__typename": [ - 78 + 80 ] }, "tournament_prizes_constraint": {}, "tournament_prizes_inc_input": { "order": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "tournament_prizes_insert_input": { "created_at": [ - 4376 + 4493 ], "id": [ - 4921 + 4993 ], "order": [ - 38 + 40 ], "place": [ - 78 + 80 ], "prize": [ - 78 + 80 ], "tournament": [ - 4887 + 4959 ], "tournament_id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "tournament_prizes_max_fields": { "created_at": [ - 4376 - ], - "id": [ - 4921 - ], - "order": [ - 38 - ], - "place": [ - 78 - ], - "prize": [ - 78 - ], - "tournament_id": [ - 4921 - ], - "__typename": [ - 78 - ] - }, - "tournament_prizes_max_order_by": { - "created_at": [ - 2829 - ], - "id": [ - 2829 - ], - "order": [ - 2829 - ], - "place": [ - 2829 - ], - "prize": [ - 2829 - ], - "tournament_id": [ - 2829 - ], - "__typename": [ - 78 - ] - }, - "tournament_prizes_min_fields": { - "created_at": [ - 4376 - ], - "id": [ - 4921 - ], - "order": [ - 38 - ], - "place": [ - 78 - ], - "prize": [ - 78 - ], - "tournament_id": [ - 4921 - ], - "__typename": [ - 78 - ] - }, - "tournament_prizes_min_order_by": { - "created_at": [ - 2829 - ], - "id": [ - 2829 - ], - "order": [ - 2829 - ], - "place": [ - 2829 - ], - "prize": [ - 2829 - ], - "tournament_id": [ - 2829 - ], - "__typename": [ - 78 - ] - }, - "tournament_prizes_mutation_response": { - "affected_rows": [ - 38 - ], - "returning": [ - 4513 - ], - "__typename": [ - 78 - ] - }, - "tournament_prizes_on_conflict": { - "constraint": [ - 4523 - ], - "update_columns": [ - 4546 - ], - "where": [ - 4522 - ], - "__typename": [ - 78 - ] - }, - "tournament_prizes_order_by": { - "created_at": [ - 2829 - ], - "id": [ - 2829 - ], - "order": [ - 2829 - ], - "place": [ - 2829 - ], - "prize": [ - 2829 - ], - "tournament": [ - 4889 - ], - "tournament_id": [ - 2829 - ], - "__typename": [ - 78 - ] - }, - "tournament_prizes_pk_columns_input": { - "id": [ - 4921 - ], - "__typename": [ - 78 - ] - }, - "tournament_prizes_select_column": {}, - "tournament_prizes_set_input": { - "created_at": [ - 4376 - ], - "id": [ - 4921 - ], - "order": [ - 38 - ], - "place": [ - 78 - ], - "prize": [ - 78 - ], - "tournament_id": [ - 4921 - ], - "__typename": [ - 78 - ] - }, - "tournament_prizes_stddev_fields": { - "order": [ - 29 - ], - "__typename": [ - 78 - ] - }, - "tournament_prizes_stddev_order_by": { - "order": [ - 2829 - ], - "__typename": [ - 78 - ] - }, - "tournament_prizes_stddev_pop_fields": { - "order": [ - 29 - ], - "__typename": [ - 78 - ] - }, - "tournament_prizes_stddev_pop_order_by": { - "order": [ - 2829 - ], - "__typename": [ - 78 - ] - }, - "tournament_prizes_stddev_samp_fields": { - "order": [ - 29 - ], - "__typename": [ - 78 - ] - }, - "tournament_prizes_stddev_samp_order_by": { - "order": [ - 2829 - ], - "__typename": [ - 78 - ] - }, - "tournament_prizes_stream_cursor_input": { - "initial_value": [ - 4543 - ], - "ordering": [ - 236 - ], - "__typename": [ - 78 - ] - }, - "tournament_prizes_stream_cursor_value_input": { - "created_at": [ - 4376 + 4493 ], "id": [ - 4921 + 4993 ], "order": [ - 38 + 40 ], "place": [ - 78 + 80 ], "prize": [ - 78 + 80 ], "tournament_id": [ - 4921 - ], - "__typename": [ - 78 - ] - }, - "tournament_prizes_sum_fields": { - "order": [ - 38 - ], - "__typename": [ - 78 - ] - }, - "tournament_prizes_sum_order_by": { - "order": [ - 2829 - ], - "__typename": [ - 78 - ] - }, - "tournament_prizes_update_column": {}, - "tournament_prizes_updates": { - "_inc": [ - 4524 - ], - "_set": [ - 4535 - ], - "where": [ - 4522 - ], - "__typename": [ - 78 - ] - }, - "tournament_prizes_var_pop_fields": { - "order": [ - 29 - ], - "__typename": [ - 78 - ] - }, - "tournament_prizes_var_pop_order_by": { - "order": [ - 2829 - ], - "__typename": [ - 78 - ] - }, - "tournament_prizes_var_samp_fields": { - "order": [ - 29 - ], - "__typename": [ - 78 - ] - }, - "tournament_prizes_var_samp_order_by": { - "order": [ - 2829 - ], - "__typename": [ - 78 - ] - }, - "tournament_prizes_variance_fields": { - "order": [ - 29 - ], - "__typename": [ - 78 - ] - }, - "tournament_prizes_variance_order_by": { - "order": [ - 2829 - ], - "__typename": [ - 78 - ] - }, - "tournament_stage_windows": { - "closes_at": [ - 4376 - ], - "created_at": [ - 4376 - ], - "default_match_at": [ - 4376 - ], - "id": [ - 4921 - ], - "opens_at": [ - 4376 - ], - "round": [ - 38 - ], - "stage": [ - 4595 - ], - "tournament_stage_id": [ - 4921 - ], - "__typename": [ - 78 - ] - }, - "tournament_stage_windows_aggregate": { - "aggregate": [ - 4558 - ], - "nodes": [ - 4554 - ], - "__typename": [ - 78 - ] - }, - "tournament_stage_windows_aggregate_bool_exp": { - "count": [ - 4557 - ], - "__typename": [ - 78 - ] - }, - "tournament_stage_windows_aggregate_bool_exp_count": { - "arguments": [ - 4575 - ], - "distinct": [ - 3 - ], - "filter": [ - 4563 - ], - "predicate": [ - 39 - ], - "__typename": [ - 78 - ] - }, - "tournament_stage_windows_aggregate_fields": { - "avg": [ - 4561 - ], - "count": [ - 38, - { - "columns": [ - 4575, - "[tournament_stage_windows_select_column!]" - ], - "distinct": [ - 3 - ] - } - ], - "max": [ - 4567 - ], - "min": [ - 4569 - ], - "stddev": [ - 4577 - ], - "stddev_pop": [ - 4579 - ], - "stddev_samp": [ - 4581 - ], - "sum": [ - 4585 - ], - "var_pop": [ - 4589 - ], - "var_samp": [ - 4591 - ], - "variance": [ - 4593 - ], - "__typename": [ - 78 - ] - }, - "tournament_stage_windows_aggregate_order_by": { - "avg": [ - 4562 - ], - "count": [ - 2829 - ], - "max": [ - 4568 - ], - "min": [ - 4570 - ], - "stddev": [ - 4578 - ], - "stddev_pop": [ - 4580 - ], - "stddev_samp": [ - 4582 - ], - "sum": [ - 4586 - ], - "var_pop": [ - 4590 - ], - "var_samp": [ - 4592 - ], - "variance": [ - 4594 - ], - "__typename": [ - 78 - ] - }, - "tournament_stage_windows_arr_rel_insert_input": { - "data": [ - 4566 - ], - "on_conflict": [ - 4572 - ], - "__typename": [ - 78 - ] - }, - "tournament_stage_windows_avg_fields": { - "round": [ - 29 - ], - "__typename": [ - 78 - ] - }, - "tournament_stage_windows_avg_order_by": { - "round": [ - 2829 - ], - "__typename": [ - 78 - ] - }, - "tournament_stage_windows_bool_exp": { - "_and": [ - 4563 - ], - "_not": [ - 4563 - ], - "_or": [ - 4563 - ], - "closes_at": [ - 4377 - ], - "created_at": [ - 4377 - ], - "default_match_at": [ - 4377 - ], - "id": [ - 4923 - ], - "opens_at": [ - 4377 - ], - "round": [ - 39 - ], - "stage": [ - 4607 - ], - "tournament_stage_id": [ - 4923 - ], - "__typename": [ - 78 - ] - }, - "tournament_stage_windows_constraint": {}, - "tournament_stage_windows_inc_input": { - "round": [ - 38 - ], - "__typename": [ - 78 - ] - }, - "tournament_stage_windows_insert_input": { - "closes_at": [ - 4376 - ], - "created_at": [ - 4376 - ], - "default_match_at": [ - 4376 - ], - "id": [ - 4921 - ], - "opens_at": [ - 4376 - ], - "round": [ - 38 - ], - "stage": [ - 4619 - ], - "tournament_stage_id": [ - 4921 - ], - "__typename": [ - 78 - ] - }, - "tournament_stage_windows_max_fields": { - "closes_at": [ - 4376 - ], - "created_at": [ - 4376 - ], - "default_match_at": [ - 4376 - ], - "id": [ - 4921 - ], - "opens_at": [ - 4376 - ], - "round": [ - 38 - ], - "tournament_stage_id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, - "tournament_stage_windows_max_order_by": { - "closes_at": [ - 2829 - ], + "tournament_prizes_max_order_by": { "created_at": [ - 2829 - ], - "default_match_at": [ - 2829 + 2946 ], "id": [ - 2829 + 2946 ], - "opens_at": [ - 2829 + "order": [ + 2946 ], - "round": [ - 2829 + "place": [ + 2946 ], - "tournament_stage_id": [ - 2829 + "prize": [ + 2946 + ], + "tournament_id": [ + 2946 ], "__typename": [ - 78 + 80 ] }, - "tournament_stage_windows_min_fields": { - "closes_at": [ - 4376 - ], + "tournament_prizes_min_fields": { "created_at": [ - 4376 - ], - "default_match_at": [ - 4376 + 4493 ], "id": [ - 4921 + 4993 ], - "opens_at": [ - 4376 + "order": [ + 40 ], - "round": [ - 38 + "place": [ + 80 ], - "tournament_stage_id": [ - 4921 + "prize": [ + 80 + ], + "tournament_id": [ + 4993 ], "__typename": [ - 78 + 80 ] }, - "tournament_stage_windows_min_order_by": { - "closes_at": [ - 2829 - ], + "tournament_prizes_min_order_by": { "created_at": [ - 2829 - ], - "default_match_at": [ - 2829 + 2946 ], "id": [ - 2829 + 2946 ], - "opens_at": [ - 2829 + "order": [ + 2946 ], - "round": [ - 2829 + "place": [ + 2946 ], - "tournament_stage_id": [ - 2829 + "prize": [ + 2946 + ], + "tournament_id": [ + 2946 ], "__typename": [ - 78 + 80 ] }, - "tournament_stage_windows_mutation_response": { + "tournament_prizes_mutation_response": { "affected_rows": [ - 38 + 40 ], "returning": [ - 4554 + 4672 ], "__typename": [ - 78 + 80 ] }, - "tournament_stage_windows_on_conflict": { + "tournament_prizes_on_conflict": { "constraint": [ - 4564 + 4682 ], "update_columns": [ - 4587 + 4705 ], "where": [ - 4563 + 4681 ], "__typename": [ - 78 + 80 ] }, - "tournament_stage_windows_order_by": { - "closes_at": [ - 2829 - ], + "tournament_prizes_order_by": { "created_at": [ - 2829 - ], - "default_match_at": [ - 2829 + 2946 ], "id": [ - 2829 + 2946 ], - "opens_at": [ - 2829 + "order": [ + 2946 ], - "round": [ - 2829 + "place": [ + 2946 ], - "stage": [ - 4621 + "prize": [ + 2946 ], - "tournament_stage_id": [ - 2829 + "tournament": [ + 4961 + ], + "tournament_id": [ + 2946 ], "__typename": [ - 78 + 80 ] }, - "tournament_stage_windows_pk_columns_input": { + "tournament_prizes_pk_columns_input": { "id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, - "tournament_stage_windows_select_column": {}, - "tournament_stage_windows_set_input": { - "closes_at": [ - 4376 - ], + "tournament_prizes_select_column": {}, + "tournament_prizes_set_input": { "created_at": [ - 4376 - ], - "default_match_at": [ - 4376 + 4493 ], "id": [ - 4921 + 4993 ], - "opens_at": [ - 4376 + "order": [ + 40 ], - "round": [ - 38 + "place": [ + 80 ], - "tournament_stage_id": [ - 4921 + "prize": [ + 80 + ], + "tournament_id": [ + 4993 ], "__typename": [ - 78 + 80 ] }, - "tournament_stage_windows_stddev_fields": { - "round": [ - 29 + "tournament_prizes_stddev_fields": { + "order": [ + 31 ], "__typename": [ - 78 + 80 ] }, - "tournament_stage_windows_stddev_order_by": { - "round": [ - 2829 + "tournament_prizes_stddev_order_by": { + "order": [ + 2946 ], "__typename": [ - 78 + 80 ] }, - "tournament_stage_windows_stddev_pop_fields": { - "round": [ - 29 + "tournament_prizes_stddev_pop_fields": { + "order": [ + 31 ], "__typename": [ - 78 + 80 ] }, - "tournament_stage_windows_stddev_pop_order_by": { - "round": [ - 2829 + "tournament_prizes_stddev_pop_order_by": { + "order": [ + 2946 ], "__typename": [ - 78 + 80 ] }, - "tournament_stage_windows_stddev_samp_fields": { - "round": [ - 29 + "tournament_prizes_stddev_samp_fields": { + "order": [ + 31 ], "__typename": [ - 78 + 80 ] }, - "tournament_stage_windows_stddev_samp_order_by": { - "round": [ - 2829 + "tournament_prizes_stddev_samp_order_by": { + "order": [ + 2946 ], "__typename": [ - 78 + 80 ] }, - "tournament_stage_windows_stream_cursor_input": { + "tournament_prizes_stream_cursor_input": { "initial_value": [ - 4584 + 4702 ], "ordering": [ - 236 + 308 ], "__typename": [ - 78 + 80 ] }, - "tournament_stage_windows_stream_cursor_value_input": { - "closes_at": [ - 4376 - ], + "tournament_prizes_stream_cursor_value_input": { "created_at": [ - 4376 - ], - "default_match_at": [ - 4376 + 4493 ], "id": [ - 4921 + 4993 ], - "opens_at": [ - 4376 + "order": [ + 40 ], - "round": [ - 38 + "place": [ + 80 ], - "tournament_stage_id": [ - 4921 + "prize": [ + 80 + ], + "tournament_id": [ + 4993 ], "__typename": [ - 78 + 80 ] }, - "tournament_stage_windows_sum_fields": { - "round": [ - 38 + "tournament_prizes_sum_fields": { + "order": [ + 40 ], "__typename": [ - 78 + 80 ] }, - "tournament_stage_windows_sum_order_by": { - "round": [ - 2829 + "tournament_prizes_sum_order_by": { + "order": [ + 2946 ], "__typename": [ - 78 + 80 ] }, - "tournament_stage_windows_update_column": {}, - "tournament_stage_windows_updates": { + "tournament_prizes_update_column": {}, + "tournament_prizes_updates": { "_inc": [ - 4565 + 4683 ], "_set": [ - 4576 + 4694 ], "where": [ - 4563 + 4681 ], "__typename": [ - 78 + 80 ] }, - "tournament_stage_windows_var_pop_fields": { - "round": [ - 29 + "tournament_prizes_var_pop_fields": { + "order": [ + 31 ], "__typename": [ - 78 + 80 ] }, - "tournament_stage_windows_var_pop_order_by": { - "round": [ - 2829 + "tournament_prizes_var_pop_order_by": { + "order": [ + 2946 ], "__typename": [ - 78 + 80 ] }, - "tournament_stage_windows_var_samp_fields": { - "round": [ - 29 + "tournament_prizes_var_samp_fields": { + "order": [ + 31 ], "__typename": [ - 78 + 80 ] }, - "tournament_stage_windows_var_samp_order_by": { - "round": [ - 2829 + "tournament_prizes_var_samp_order_by": { + "order": [ + 2946 ], "__typename": [ - 78 + 80 ] }, - "tournament_stage_windows_variance_fields": { - "round": [ - 29 + "tournament_prizes_variance_fields": { + "order": [ + 31 ], "__typename": [ - 78 + 80 ] }, - "tournament_stage_windows_variance_order_by": { - "round": [ - 2829 + "tournament_prizes_variance_order_by": { + "order": [ + 2946 ], "__typename": [ - 78 + 80 ] }, - "tournament_stages": { - "brackets": [ - 4378, - { - "distinct_on": [ - 4402, - "[tournament_brackets_select_column!]" - ], - "limit": [ - 38 - ], - "offset": [ - 38 - ], - "order_by": [ - 4400, - "[tournament_brackets_order_by!]" - ], - "where": [ - 4389 - ] - } - ], - "brackets_aggregate": [ - 4379, - { - "distinct_on": [ - 4402, - "[tournament_brackets_select_column!]" - ], - "limit": [ - 38 - ], - "offset": [ - 38 - ], - "order_by": [ - 4400, - "[tournament_brackets_order_by!]" - ], - "where": [ - 4389 - ] - } - ], - "decider_best_of": [ - 38 - ], - "default_best_of": [ - 38 - ], - "e_tournament_stage_type": [ - 1186 + "tournament_stage_windows": { + "closes_at": [ + 4493 ], - "final_map_advantage": [ - 38 + "created_at": [ + 4493 ], - "groups": [ - 38 + "default_match_at": [ + 4493 ], "id": [ - 4921 - ], - "match_options_id": [ - 4921 - ], - "max_rounds": [ - 38 - ], - "max_teams": [ - 38 - ], - "min_teams": [ - 38 - ], - "options": [ - 2524 - ], - "order": [ - 38 - ], - "results": [ - 5645, - { - "distinct_on": [ - 5677, - "[v_team_stage_results_select_column!]" - ], - "limit": [ - 38 - ], - "offset": [ - 38 - ], - "order_by": [ - 5675, - "[v_team_stage_results_order_by!]" - ], - "where": [ - 5664 - ] - } - ], - "results_aggregate": [ - 5646, - { - "distinct_on": [ - 5677, - "[v_team_stage_results_select_column!]" - ], - "limit": [ - 38 - ], - "offset": [ - 38 - ], - "order_by": [ - 5675, - "[v_team_stage_results_order_by!]" - ], - "where": [ - 5664 - ] - } - ], - "settings": [ - 1700, - { - "path": [ - 78 - ] - } - ], - "swiss_no_elimination": [ - 3 - ], - "third_place_match": [ - 3 - ], - "tournament": [ - 4857 + 4993 ], - "tournament_id": [ - 4921 + "opens_at": [ + 4493 ], - "type": [ - 1191 + "round": [ + 40 ], - "windows": [ - 4554, - { - "distinct_on": [ - 4575, - "[tournament_stage_windows_select_column!]" - ], - "limit": [ - 38 - ], - "offset": [ - 38 - ], - "order_by": [ - 4573, - "[tournament_stage_windows_order_by!]" - ], - "where": [ - 4563 - ] - } + "stage": [ + 4754 ], - "windows_aggregate": [ - 4555, - { - "distinct_on": [ - 4575, - "[tournament_stage_windows_select_column!]" - ], - "limit": [ - 38 - ], - "offset": [ - 38 - ], - "order_by": [ - 4573, - "[tournament_stage_windows_order_by!]" - ], - "where": [ - 4563 - ] - } + "tournament_stage_id": [ + 4993 ], "__typename": [ - 78 + 80 ] }, - "tournament_stages_aggregate": { + "tournament_stage_windows_aggregate": { "aggregate": [ - 4601 + 4717 ], "nodes": [ - 4595 + 4713 ], "__typename": [ - 78 + 80 ] }, - "tournament_stages_aggregate_bool_exp": { - "bool_and": [ - 4598 - ], - "bool_or": [ - 4599 - ], + "tournament_stage_windows_aggregate_bool_exp": { "count": [ - 4600 - ], - "__typename": [ - 78 - ] - }, - "tournament_stages_aggregate_bool_exp_bool_and": { - "arguments": [ - 4625 - ], - "distinct": [ - 3 - ], - "filter": [ - 4607 - ], - "predicate": [ - 4 - ], - "__typename": [ - 78 - ] - }, - "tournament_stages_aggregate_bool_exp_bool_or": { - "arguments": [ - 4626 - ], - "distinct": [ - 3 - ], - "filter": [ - 4607 - ], - "predicate": [ - 4 + 4716 ], "__typename": [ - 78 + 80 ] }, - "tournament_stages_aggregate_bool_exp_count": { + "tournament_stage_windows_aggregate_bool_exp_count": { "arguments": [ - 4624 + 4734 ], "distinct": [ - 3 + 5 ], "filter": [ - 4607 + 4722 ], "predicate": [ - 39 + 41 ], "__typename": [ - 78 + 80 ] }, - "tournament_stages_aggregate_fields": { + "tournament_stage_windows_aggregate_fields": { "avg": [ - 4605 + 4720 ], "count": [ - 38, + 40, { "columns": [ - 4624, - "[tournament_stages_select_column!]" + 4734, + "[tournament_stage_windows_select_column!]" ], "distinct": [ - 3 + 5 ] } ], "max": [ - 4614 + 4726 ], "min": [ - 4616 + 4728 ], "stddev": [ - 4628 + 4736 ], "stddev_pop": [ - 4630 + 4738 ], "stddev_samp": [ - 4632 + 4740 ], "sum": [ - 4636 + 4744 ], "var_pop": [ - 4640 + 4748 ], "var_samp": [ - 4642 + 4750 ], "variance": [ - 4644 + 4752 ], "__typename": [ - 78 + 80 ] }, - "tournament_stages_aggregate_order_by": { + "tournament_stage_windows_aggregate_order_by": { "avg": [ - 4606 + 4721 ], "count": [ - 2829 + 2946 ], "max": [ - 4615 + 4727 ], "min": [ - 4617 + 4729 ], "stddev": [ - 4629 + 4737 ], "stddev_pop": [ - 4631 + 4739 ], "stddev_samp": [ - 4633 + 4741 ], "sum": [ - 4637 + 4745 ], "var_pop": [ - 4641 + 4749 ], "var_samp": [ - 4643 + 4751 ], "variance": [ - 4645 - ], - "__typename": [ - 78 - ] - }, - "tournament_stages_append_input": { - "settings": [ - 1700 + 4753 ], "__typename": [ - 78 + 80 ] }, - "tournament_stages_arr_rel_insert_input": { + "tournament_stage_windows_arr_rel_insert_input": { "data": [ - 4613 + 4725 ], "on_conflict": [ - 4620 + 4731 ], "__typename": [ - 78 + 80 ] }, - "tournament_stages_avg_fields": { - "decider_best_of": [ - 29 - ], - "default_best_of": [ - 29 - ], - "final_map_advantage": [ - 29 - ], - "groups": [ - 29 - ], - "max_rounds": [ - 29 - ], - "max_teams": [ - 29 - ], - "min_teams": [ - 29 - ], - "order": [ - 29 + "tournament_stage_windows_avg_fields": { + "round": [ + 31 ], "__typename": [ - 78 + 80 ] }, - "tournament_stages_avg_order_by": { - "decider_best_of": [ - 2829 - ], - "default_best_of": [ - 2829 - ], - "final_map_advantage": [ - 2829 - ], - "groups": [ - 2829 - ], - "max_rounds": [ - 2829 - ], - "max_teams": [ - 2829 - ], - "min_teams": [ - 2829 - ], - "order": [ - 2829 + "tournament_stage_windows_avg_order_by": { + "round": [ + 2946 ], "__typename": [ - 78 + 80 ] }, - "tournament_stages_bool_exp": { + "tournament_stage_windows_bool_exp": { "_and": [ - 4607 + 4722 ], "_not": [ - 4607 + 4722 ], "_or": [ - 4607 - ], - "brackets": [ - 4389 - ], - "brackets_aggregate": [ - 4380 - ], - "decider_best_of": [ - 39 - ], - "default_best_of": [ - 39 - ], - "e_tournament_stage_type": [ - 1189 - ], - "final_map_advantage": [ - 39 - ], - "groups": [ - 39 - ], - "id": [ - 4923 - ], - "match_options_id": [ - 4923 - ], - "max_rounds": [ - 39 - ], - "max_teams": [ - 39 - ], - "min_teams": [ - 39 - ], - "options": [ - 2528 - ], - "order": [ - 39 - ], - "results": [ - 5664 - ], - "results_aggregate": [ - 5647 - ], - "settings": [ - 1702 - ], - "swiss_no_elimination": [ - 4 - ], - "third_place_match": [ - 4 - ], - "tournament": [ - 4878 - ], - "tournament_id": [ - 4923 - ], - "type": [ - 1192 - ], - "windows": [ - 4563 - ], - "windows_aggregate": [ - 4556 - ], - "__typename": [ - 78 - ] - }, - "tournament_stages_constraint": {}, - "tournament_stages_delete_at_path_input": { - "settings": [ - 78 - ], - "__typename": [ - 78 - ] - }, - "tournament_stages_delete_elem_input": { - "settings": [ - 38 - ], - "__typename": [ - 78 - ] - }, - "tournament_stages_delete_key_input": { - "settings": [ - 78 - ], - "__typename": [ - 78 - ] - }, - "tournament_stages_inc_input": { - "decider_best_of": [ - 38 - ], - "default_best_of": [ - 38 - ], - "final_map_advantage": [ - 38 - ], - "groups": [ - 38 - ], - "max_rounds": [ - 38 - ], - "max_teams": [ - 38 - ], - "min_teams": [ - 38 - ], - "order": [ - 38 - ], - "__typename": [ - 78 - ] - }, - "tournament_stages_insert_input": { - "brackets": [ - 4386 - ], - "decider_best_of": [ - 38 - ], - "default_best_of": [ - 38 - ], - "e_tournament_stage_type": [ - 1197 - ], - "final_map_advantage": [ - 38 - ], - "groups": [ - 38 - ], - "id": [ - 4921 - ], - "match_options_id": [ - 4921 - ], - "max_rounds": [ - 38 - ], - "max_teams": [ - 38 - ], - "min_teams": [ - 38 - ], - "options": [ - 2535 - ], - "order": [ - 38 - ], - "results": [ - 5661 - ], - "settings": [ - 1700 - ], - "swiss_no_elimination": [ - 3 - ], - "third_place_match": [ - 3 - ], - "tournament": [ - 4887 - ], - "tournament_id": [ - 4921 - ], - "type": [ - 1191 - ], - "windows": [ - 4560 - ], - "__typename": [ - 78 - ] - }, - "tournament_stages_max_fields": { - "decider_best_of": [ - 38 + 4722 ], - "default_best_of": [ - 38 + "closes_at": [ + 4494 ], - "final_map_advantage": [ - 38 + "created_at": [ + 4494 ], - "groups": [ - 38 + "default_match_at": [ + 4494 ], "id": [ - 4921 - ], - "match_options_id": [ - 4921 - ], - "max_rounds": [ - 38 + 4995 ], - "max_teams": [ - 38 + "opens_at": [ + 4494 ], - "min_teams": [ - 38 + "round": [ + 41 ], - "order": [ - 38 + "stage": [ + 4766 ], - "tournament_id": [ - 4921 + "tournament_stage_id": [ + 4995 ], "__typename": [ - 78 + 80 ] }, - "tournament_stages_max_order_by": { - "decider_best_of": [ - 2829 - ], - "default_best_of": [ - 2829 - ], - "final_map_advantage": [ - 2829 - ], - "groups": [ - 2829 - ], - "id": [ - 2829 - ], - "match_options_id": [ - 2829 - ], - "max_rounds": [ - 2829 - ], - "max_teams": [ - 2829 - ], - "min_teams": [ - 2829 - ], - "order": [ - 2829 - ], - "tournament_id": [ - 2829 + "tournament_stage_windows_constraint": {}, + "tournament_stage_windows_inc_input": { + "round": [ + 40 ], "__typename": [ - 78 + 80 ] }, - "tournament_stages_min_fields": { - "decider_best_of": [ - 38 - ], - "default_best_of": [ - 38 + "tournament_stage_windows_insert_input": { + "closes_at": [ + 4493 ], - "final_map_advantage": [ - 38 + "created_at": [ + 4493 ], - "groups": [ - 38 + "default_match_at": [ + 4493 ], "id": [ - 4921 - ], - "match_options_id": [ - 4921 - ], - "max_rounds": [ - 38 + 4993 ], - "max_teams": [ - 38 + "opens_at": [ + 4493 ], - "min_teams": [ - 38 + "round": [ + 40 ], - "order": [ - 38 + "stage": [ + 4778 ], - "tournament_id": [ - 4921 + "tournament_stage_id": [ + 4993 ], "__typename": [ - 78 + 80 ] }, - "tournament_stages_min_order_by": { - "decider_best_of": [ - 2829 - ], - "default_best_of": [ - 2829 + "tournament_stage_windows_max_fields": { + "closes_at": [ + 4493 ], - "final_map_advantage": [ - 2829 + "created_at": [ + 4493 ], - "groups": [ - 2829 + "default_match_at": [ + 4493 ], "id": [ - 2829 - ], - "match_options_id": [ - 2829 - ], - "max_rounds": [ - 2829 - ], - "max_teams": [ - 2829 - ], - "min_teams": [ - 2829 - ], - "order": [ - 2829 - ], - "tournament_id": [ - 2829 - ], - "__typename": [ - 78 - ] - }, - "tournament_stages_mutation_response": { - "affected_rows": [ - 38 - ], - "returning": [ - 4595 - ], - "__typename": [ - 78 - ] - }, - "tournament_stages_obj_rel_insert_input": { - "data": [ - 4613 - ], - "on_conflict": [ - 4620 + 4993 ], - "__typename": [ - 78 - ] - }, - "tournament_stages_on_conflict": { - "constraint": [ - 4608 + "opens_at": [ + 4493 ], - "update_columns": [ - 4638 + "round": [ + 40 ], - "where": [ - 4607 + "tournament_stage_id": [ + 4993 ], "__typename": [ - 78 + 80 ] }, - "tournament_stages_order_by": { - "brackets_aggregate": [ - 4385 - ], - "decider_best_of": [ - 2829 - ], - "default_best_of": [ - 2829 - ], - "e_tournament_stage_type": [ - 1199 + "tournament_stage_windows_max_order_by": { + "closes_at": [ + 2946 ], - "final_map_advantage": [ - 2829 + "created_at": [ + 2946 ], - "groups": [ - 2829 + "default_match_at": [ + 2946 ], "id": [ - 2829 - ], - "match_options_id": [ - 2829 - ], - "max_rounds": [ - 2829 - ], - "max_teams": [ - 2829 - ], - "min_teams": [ - 2829 + 2946 ], - "options": [ - 2537 - ], - "order": [ - 2829 - ], - "results_aggregate": [ - 5660 - ], - "settings": [ - 2829 - ], - "swiss_no_elimination": [ - 2829 - ], - "third_place_match": [ - 2829 - ], - "tournament": [ - 4889 - ], - "tournament_id": [ - 2829 - ], - "type": [ - 2829 - ], - "windows_aggregate": [ - 4559 + "opens_at": [ + 2946 ], - "__typename": [ - 78 - ] - }, - "tournament_stages_pk_columns_input": { - "id": [ - 4921 + "round": [ + 2946 ], - "__typename": [ - 78 - ] - }, - "tournament_stages_prepend_input": { - "settings": [ - 1700 + "tournament_stage_id": [ + 2946 ], "__typename": [ - 78 + 80 ] }, - "tournament_stages_select_column": {}, - "tournament_stages_select_column_tournament_stages_aggregate_bool_exp_bool_and_arguments_columns": {}, - "tournament_stages_select_column_tournament_stages_aggregate_bool_exp_bool_or_arguments_columns": {}, - "tournament_stages_set_input": { - "decider_best_of": [ - 38 - ], - "default_best_of": [ - 38 + "tournament_stage_windows_min_fields": { + "closes_at": [ + 4493 ], - "final_map_advantage": [ - 38 + "created_at": [ + 4493 ], - "groups": [ - 38 + "default_match_at": [ + 4493 ], "id": [ - 4921 + 4993 ], - "match_options_id": [ - 4921 + "opens_at": [ + 4493 ], - "max_rounds": [ - 38 + "round": [ + 40 ], - "max_teams": [ - 38 + "tournament_stage_id": [ + 4993 ], - "min_teams": [ - 38 + "__typename": [ + 80 + ] + }, + "tournament_stage_windows_min_order_by": { + "closes_at": [ + 2946 ], - "order": [ - 38 + "created_at": [ + 2946 ], - "settings": [ - 1700 + "default_match_at": [ + 2946 ], - "swiss_no_elimination": [ - 3 + "id": [ + 2946 ], - "third_place_match": [ - 3 + "opens_at": [ + 2946 ], - "tournament_id": [ - 4921 + "round": [ + 2946 ], - "type": [ - 1191 + "tournament_stage_id": [ + 2946 ], "__typename": [ - 78 + 80 ] }, - "tournament_stages_stddev_fields": { - "decider_best_of": [ - 29 - ], - "default_best_of": [ - 29 - ], - "final_map_advantage": [ - 29 - ], - "groups": [ - 29 + "tournament_stage_windows_mutation_response": { + "affected_rows": [ + 40 ], - "max_rounds": [ - 29 + "returning": [ + 4713 ], - "max_teams": [ - 29 + "__typename": [ + 80 + ] + }, + "tournament_stage_windows_on_conflict": { + "constraint": [ + 4723 ], - "min_teams": [ - 29 + "update_columns": [ + 4746 ], - "order": [ - 29 + "where": [ + 4722 ], "__typename": [ - 78 + 80 ] }, - "tournament_stages_stddev_order_by": { - "decider_best_of": [ - 2829 + "tournament_stage_windows_order_by": { + "closes_at": [ + 2946 ], - "default_best_of": [ - 2829 + "created_at": [ + 2946 ], - "final_map_advantage": [ - 2829 + "default_match_at": [ + 2946 ], - "groups": [ - 2829 + "id": [ + 2946 ], - "max_rounds": [ - 2829 + "opens_at": [ + 2946 ], - "max_teams": [ - 2829 + "round": [ + 2946 ], - "min_teams": [ - 2829 + "stage": [ + 4780 ], - "order": [ - 2829 + "tournament_stage_id": [ + 2946 ], "__typename": [ - 78 + 80 ] }, - "tournament_stages_stddev_pop_fields": { - "decider_best_of": [ - 29 + "tournament_stage_windows_pk_columns_input": { + "id": [ + 4993 ], - "default_best_of": [ - 29 + "__typename": [ + 80 + ] + }, + "tournament_stage_windows_select_column": {}, + "tournament_stage_windows_set_input": { + "closes_at": [ + 4493 ], - "final_map_advantage": [ - 29 + "created_at": [ + 4493 ], - "groups": [ - 29 + "default_match_at": [ + 4493 ], - "max_rounds": [ - 29 + "id": [ + 4993 ], - "max_teams": [ - 29 + "opens_at": [ + 4493 ], - "min_teams": [ - 29 + "round": [ + 40 ], - "order": [ - 29 + "tournament_stage_id": [ + 4993 ], "__typename": [ - 78 + 80 ] }, - "tournament_stages_stddev_pop_order_by": { - "decider_best_of": [ - 2829 + "tournament_stage_windows_stddev_fields": { + "round": [ + 31 ], - "default_best_of": [ - 2829 + "__typename": [ + 80 + ] + }, + "tournament_stage_windows_stddev_order_by": { + "round": [ + 2946 ], - "final_map_advantage": [ - 2829 + "__typename": [ + 80 + ] + }, + "tournament_stage_windows_stddev_pop_fields": { + "round": [ + 31 ], - "groups": [ - 2829 + "__typename": [ + 80 + ] + }, + "tournament_stage_windows_stddev_pop_order_by": { + "round": [ + 2946 ], - "max_rounds": [ - 2829 + "__typename": [ + 80 + ] + }, + "tournament_stage_windows_stddev_samp_fields": { + "round": [ + 31 ], - "max_teams": [ - 2829 + "__typename": [ + 80 + ] + }, + "tournament_stage_windows_stddev_samp_order_by": { + "round": [ + 2946 ], - "min_teams": [ - 2829 + "__typename": [ + 80 + ] + }, + "tournament_stage_windows_stream_cursor_input": { + "initial_value": [ + 4743 ], - "order": [ - 2829 + "ordering": [ + 308 ], "__typename": [ - 78 + 80 ] }, - "tournament_stages_stddev_samp_fields": { - "decider_best_of": [ - 29 + "tournament_stage_windows_stream_cursor_value_input": { + "closes_at": [ + 4493 ], - "default_best_of": [ - 29 + "created_at": [ + 4493 ], - "final_map_advantage": [ - 29 + "default_match_at": [ + 4493 ], - "groups": [ - 29 + "id": [ + 4993 ], - "max_rounds": [ - 29 + "opens_at": [ + 4493 ], - "max_teams": [ - 29 + "round": [ + 40 ], - "min_teams": [ - 29 + "tournament_stage_id": [ + 4993 ], - "order": [ - 29 + "__typename": [ + 80 + ] + }, + "tournament_stage_windows_sum_fields": { + "round": [ + 40 ], "__typename": [ - 78 + 80 ] }, - "tournament_stages_stddev_samp_order_by": { - "decider_best_of": [ - 2829 + "tournament_stage_windows_sum_order_by": { + "round": [ + 2946 ], - "default_best_of": [ - 2829 + "__typename": [ + 80 + ] + }, + "tournament_stage_windows_update_column": {}, + "tournament_stage_windows_updates": { + "_inc": [ + 4724 ], - "final_map_advantage": [ - 2829 + "_set": [ + 4735 ], - "groups": [ - 2829 + "where": [ + 4722 ], - "max_rounds": [ - 2829 + "__typename": [ + 80 + ] + }, + "tournament_stage_windows_var_pop_fields": { + "round": [ + 31 ], - "max_teams": [ - 2829 + "__typename": [ + 80 + ] + }, + "tournament_stage_windows_var_pop_order_by": { + "round": [ + 2946 ], - "min_teams": [ - 2829 + "__typename": [ + 80 + ] + }, + "tournament_stage_windows_var_samp_fields": { + "round": [ + 31 ], - "order": [ - 2829 + "__typename": [ + 80 + ] + }, + "tournament_stage_windows_var_samp_order_by": { + "round": [ + 2946 ], "__typename": [ - 78 + 80 ] }, - "tournament_stages_stream_cursor_input": { - "initial_value": [ - 4635 + "tournament_stage_windows_variance_fields": { + "round": [ + 31 ], - "ordering": [ - 236 + "__typename": [ + 80 + ] + }, + "tournament_stage_windows_variance_order_by": { + "round": [ + 2946 ], "__typename": [ - 78 + 80 ] }, - "tournament_stages_stream_cursor_value_input": { + "tournament_stages": { + "brackets": [ + 4537, + { + "distinct_on": [ + 4561, + "[tournament_brackets_select_column!]" + ], + "limit": [ + 40 + ], + "offset": [ + 40 + ], + "order_by": [ + 4559, + "[tournament_brackets_order_by!]" + ], + "where": [ + 4548 + ] + } + ], + "brackets_aggregate": [ + 4538, + { + "distinct_on": [ + 4561, + "[tournament_brackets_select_column!]" + ], + "limit": [ + 40 + ], + "offset": [ + 40 + ], + "order_by": [ + 4559, + "[tournament_brackets_order_by!]" + ], + "where": [ + 4548 + ] + } + ], "decider_best_of": [ - 38 + 40 ], "default_best_of": [ - 38 + 40 + ], + "e_tournament_stage_type": [ + 1303 ], "final_map_advantage": [ - 38 + 40 ], "groups": [ - 38 + 40 ], "id": [ - 4921 + 4993 ], "match_options_id": [ - 4921 + 4993 ], "max_rounds": [ - 38 + 40 ], "max_teams": [ - 38 + 40 ], "min_teams": [ - 38 + 40 + ], + "options": [ + 2641 ], "order": [ - 38 + 40 + ], + "results": [ + 5717, + { + "distinct_on": [ + 5749, + "[v_team_stage_results_select_column!]" + ], + "limit": [ + 40 + ], + "offset": [ + 40 + ], + "order_by": [ + 5747, + "[v_team_stage_results_order_by!]" + ], + "where": [ + 5736 + ] + } + ], + "results_aggregate": [ + 5718, + { + "distinct_on": [ + 5749, + "[v_team_stage_results_select_column!]" + ], + "limit": [ + 40 + ], + "offset": [ + 40 + ], + "order_by": [ + 5747, + "[v_team_stage_results_order_by!]" + ], + "where": [ + 5736 + ] + } ], "settings": [ - 1700 + 1817, + { + "path": [ + 80 + ] + } ], "swiss_no_elimination": [ - 3 + 5 ], "third_place_match": [ - 3 + 5 + ], + "tournament": [ + 4929 ], "tournament_id": [ - 4921 + 4993 ], "type": [ - 1191 + 1308 + ], + "windows": [ + 4713, + { + "distinct_on": [ + 4734, + "[tournament_stage_windows_select_column!]" + ], + "limit": [ + 40 + ], + "offset": [ + 40 + ], + "order_by": [ + 4732, + "[tournament_stage_windows_order_by!]" + ], + "where": [ + 4722 + ] + } + ], + "windows_aggregate": [ + 4714, + { + "distinct_on": [ + 4734, + "[tournament_stage_windows_select_column!]" + ], + "limit": [ + 40 + ], + "offset": [ + 40 + ], + "order_by": [ + 4732, + "[tournament_stage_windows_order_by!]" + ], + "where": [ + 4722 + ] + } ], "__typename": [ - 78 + 80 ] }, - "tournament_stages_sum_fields": { - "decider_best_of": [ - 38 + "tournament_stages_aggregate": { + "aggregate": [ + 4760 ], - "default_best_of": [ - 38 + "nodes": [ + 4754 ], - "final_map_advantage": [ - 38 + "__typename": [ + 80 + ] + }, + "tournament_stages_aggregate_bool_exp": { + "bool_and": [ + 4757 ], - "groups": [ - 38 + "bool_or": [ + 4758 ], - "max_rounds": [ - 38 + "count": [ + 4759 ], - "max_teams": [ - 38 + "__typename": [ + 80 + ] + }, + "tournament_stages_aggregate_bool_exp_bool_and": { + "arguments": [ + 4784 ], - "min_teams": [ - 38 + "distinct": [ + 5 ], - "order": [ - 38 + "filter": [ + 4766 + ], + "predicate": [ + 6 ], "__typename": [ - 78 + 80 ] }, - "tournament_stages_sum_order_by": { - "decider_best_of": [ - 2829 + "tournament_stages_aggregate_bool_exp_bool_or": { + "arguments": [ + 4785 ], - "default_best_of": [ - 2829 + "distinct": [ + 5 ], - "final_map_advantage": [ - 2829 + "filter": [ + 4766 ], - "groups": [ - 2829 + "predicate": [ + 6 ], - "max_rounds": [ - 2829 + "__typename": [ + 80 + ] + }, + "tournament_stages_aggregate_bool_exp_count": { + "arguments": [ + 4783 ], - "max_teams": [ - 2829 + "distinct": [ + 5 ], - "min_teams": [ - 2829 + "filter": [ + 4766 ], - "order": [ - 2829 + "predicate": [ + 41 ], "__typename": [ - 78 + 80 ] }, - "tournament_stages_update_column": {}, - "tournament_stages_updates": { - "_append": [ - 4603 + "tournament_stages_aggregate_fields": { + "avg": [ + 4764 ], - "_delete_at_path": [ - 4609 + "count": [ + 40, + { + "columns": [ + 4783, + "[tournament_stages_select_column!]" + ], + "distinct": [ + 5 + ] + } ], - "_delete_elem": [ - 4610 + "max": [ + 4773 ], - "_delete_key": [ - 4611 + "min": [ + 4775 ], - "_inc": [ - 4612 + "stddev": [ + 4787 ], - "_prepend": [ - 4623 + "stddev_pop": [ + 4789 ], - "_set": [ - 4627 + "stddev_samp": [ + 4791 ], - "where": [ - 4607 + "sum": [ + 4795 + ], + "var_pop": [ + 4799 + ], + "var_samp": [ + 4801 + ], + "variance": [ + 4803 ], "__typename": [ - 78 + 80 ] }, - "tournament_stages_var_pop_fields": { - "decider_best_of": [ - 29 - ], - "default_best_of": [ - 29 - ], - "final_map_advantage": [ - 29 + "tournament_stages_aggregate_order_by": { + "avg": [ + 4765 ], - "groups": [ - 29 + "count": [ + 2946 ], - "max_rounds": [ - 29 + "max": [ + 4774 ], - "max_teams": [ - 29 + "min": [ + 4776 ], - "min_teams": [ - 29 + "stddev": [ + 4788 ], - "order": [ - 29 + "stddev_pop": [ + 4790 ], - "__typename": [ - 78 - ] - }, - "tournament_stages_var_pop_order_by": { - "decider_best_of": [ - 2829 + "stddev_samp": [ + 4792 ], - "default_best_of": [ - 2829 + "sum": [ + 4796 ], - "final_map_advantage": [ - 2829 + "var_pop": [ + 4800 ], - "groups": [ - 2829 + "var_samp": [ + 4802 ], - "max_rounds": [ - 2829 + "variance": [ + 4804 ], - "max_teams": [ - 2829 + "__typename": [ + 80 + ] + }, + "tournament_stages_append_input": { + "settings": [ + 1817 ], - "min_teams": [ - 2829 + "__typename": [ + 80 + ] + }, + "tournament_stages_arr_rel_insert_input": { + "data": [ + 4772 ], - "order": [ - 2829 + "on_conflict": [ + 4779 ], "__typename": [ - 78 + 80 ] }, - "tournament_stages_var_samp_fields": { + "tournament_stages_avg_fields": { "decider_best_of": [ - 29 + 31 ], "default_best_of": [ - 29 + 31 ], "final_map_advantage": [ - 29 + 31 ], "groups": [ - 29 + 31 ], "max_rounds": [ - 29 + 31 ], "max_teams": [ - 29 + 31 ], "min_teams": [ - 29 + 31 ], "order": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, - "tournament_stages_var_samp_order_by": { + "tournament_stages_avg_order_by": { "decider_best_of": [ - 2829 + 2946 ], "default_best_of": [ - 2829 + 2946 ], "final_map_advantage": [ - 2829 + 2946 ], "groups": [ - 2829 + 2946 ], "max_rounds": [ - 2829 + 2946 ], "max_teams": [ - 2829 + 2946 ], "min_teams": [ - 2829 + 2946 ], "order": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, - "tournament_stages_variance_fields": { - "decider_best_of": [ - 29 - ], - "default_best_of": [ - 29 - ], - "final_map_advantage": [ - 29 - ], - "groups": [ - 29 + "tournament_stages_bool_exp": { + "_and": [ + 4766 ], - "max_rounds": [ - 29 + "_not": [ + 4766 ], - "max_teams": [ - 29 + "_or": [ + 4766 ], - "min_teams": [ - 29 + "brackets": [ + 4548 ], - "order": [ - 29 + "brackets_aggregate": [ + 4539 ], - "__typename": [ - 78 - ] - }, - "tournament_stages_variance_order_by": { "decider_best_of": [ - 2829 + 41 ], "default_best_of": [ - 2829 + 41 + ], + "e_tournament_stage_type": [ + 1306 ], "final_map_advantage": [ - 2829 + 41 ], "groups": [ - 2829 + 41 + ], + "id": [ + 4995 + ], + "match_options_id": [ + 4995 ], "max_rounds": [ - 2829 + 41 ], "max_teams": [ - 2829 + 41 ], "min_teams": [ - 2829 + 41 + ], + "options": [ + 2645 ], "order": [ - 2829 + 41 ], - "__typename": [ - 78 - ] - }, - "tournament_team_invites": { - "created_at": [ - 4376 + "results": [ + 5736 ], - "id": [ - 4921 + "results_aggregate": [ + 5719 ], - "invited_by": [ - 3787 + "settings": [ + 1819 ], - "invited_by_player_steam_id": [ - 180 + "swiss_no_elimination": [ + 6 ], - "player": [ - 3787 + "third_place_match": [ + 6 ], - "steam_id": [ - 180 + "tournament": [ + 4950 ], - "team": [ - 4728 + "tournament_id": [ + 4995 ], - "tournament_team_id": [ - 4921 + "type": [ + 1309 + ], + "windows": [ + 4722 + ], + "windows_aggregate": [ + 4715 ], "__typename": [ - 78 + 80 ] }, - "tournament_team_invites_aggregate": { - "aggregate": [ - 4650 - ], - "nodes": [ - 4646 + "tournament_stages_constraint": {}, + "tournament_stages_delete_at_path_input": { + "settings": [ + 80 ], "__typename": [ - 78 + 80 ] }, - "tournament_team_invites_aggregate_bool_exp": { - "count": [ - 4649 + "tournament_stages_delete_elem_input": { + "settings": [ + 40 ], "__typename": [ - 78 + 80 ] }, - "tournament_team_invites_aggregate_bool_exp_count": { - "arguments": [ - 4667 - ], - "distinct": [ - 3 - ], - "filter": [ - 4655 - ], - "predicate": [ - 39 + "tournament_stages_delete_key_input": { + "settings": [ + 80 ], "__typename": [ - 78 + 80 ] }, - "tournament_team_invites_aggregate_fields": { - "avg": [ - 4653 - ], - "count": [ - 38, - { - "columns": [ - 4667, - "[tournament_team_invites_select_column!]" - ], - "distinct": [ - 3 - ] - } - ], - "max": [ - 4659 - ], - "min": [ - 4661 + "tournament_stages_inc_input": { + "decider_best_of": [ + 40 ], - "stddev": [ - 4669 + "default_best_of": [ + 40 ], - "stddev_pop": [ - 4671 + "final_map_advantage": [ + 40 ], - "stddev_samp": [ - 4673 + "groups": [ + 40 ], - "sum": [ - 4677 + "max_rounds": [ + 40 ], - "var_pop": [ - 4681 + "max_teams": [ + 40 ], - "var_samp": [ - 4683 + "min_teams": [ + 40 ], - "variance": [ - 4685 + "order": [ + 40 ], "__typename": [ - 78 + 80 ] }, - "tournament_team_invites_aggregate_order_by": { - "avg": [ - 4654 + "tournament_stages_insert_input": { + "brackets": [ + 4545 ], - "count": [ - 2829 + "decider_best_of": [ + 40 ], - "max": [ - 4660 + "default_best_of": [ + 40 ], - "min": [ - 4662 + "e_tournament_stage_type": [ + 1314 ], - "stddev": [ - 4670 + "final_map_advantage": [ + 40 ], - "stddev_pop": [ - 4672 + "groups": [ + 40 ], - "stddev_samp": [ - 4674 + "id": [ + 4993 ], - "sum": [ - 4678 + "match_options_id": [ + 4993 ], - "var_pop": [ - 4682 + "max_rounds": [ + 40 ], - "var_samp": [ - 4684 + "max_teams": [ + 40 ], - "variance": [ - 4686 + "min_teams": [ + 40 ], - "__typename": [ - 78 - ] - }, - "tournament_team_invites_arr_rel_insert_input": { - "data": [ - 4658 + "options": [ + 2652 ], - "on_conflict": [ - 4664 + "order": [ + 40 ], - "__typename": [ - 78 - ] - }, - "tournament_team_invites_avg_fields": { - "invited_by_player_steam_id": [ - 29 + "results": [ + 5733 ], - "steam_id": [ - 29 + "settings": [ + 1817 ], - "__typename": [ - 78 - ] - }, - "tournament_team_invites_avg_order_by": { - "invited_by_player_steam_id": [ - 2829 + "swiss_no_elimination": [ + 5 ], - "steam_id": [ - 2829 + "third_place_match": [ + 5 + ], + "tournament": [ + 4959 + ], + "tournament_id": [ + 4993 + ], + "type": [ + 1308 + ], + "windows": [ + 4719 ], "__typename": [ - 78 + 80 ] }, - "tournament_team_invites_bool_exp": { - "_and": [ - 4655 + "tournament_stages_max_fields": { + "decider_best_of": [ + 40 ], - "_not": [ - 4655 + "default_best_of": [ + 40 ], - "_or": [ - 4655 + "final_map_advantage": [ + 40 ], - "created_at": [ - 4377 + "groups": [ + 40 ], "id": [ - 4923 + 4993 ], - "invited_by": [ - 3791 + "match_options_id": [ + 4993 ], - "invited_by_player_steam_id": [ - 182 + "max_rounds": [ + 40 ], - "player": [ - 3791 + "max_teams": [ + 40 ], - "steam_id": [ - 182 + "min_teams": [ + 40 ], - "team": [ - 4737 + "order": [ + 40 ], - "tournament_team_id": [ - 4923 + "tournament_id": [ + 4993 ], "__typename": [ - 78 + 80 ] }, - "tournament_team_invites_constraint": {}, - "tournament_team_invites_inc_input": { - "invited_by_player_steam_id": [ - 180 + "tournament_stages_max_order_by": { + "decider_best_of": [ + 2946 ], - "steam_id": [ - 180 + "default_best_of": [ + 2946 ], - "__typename": [ - 78 - ] - }, - "tournament_team_invites_insert_input": { - "created_at": [ - 4376 + "final_map_advantage": [ + 2946 + ], + "groups": [ + 2946 ], "id": [ - 4921 + 2946 ], - "invited_by": [ - 3798 + "match_options_id": [ + 2946 ], - "invited_by_player_steam_id": [ - 180 + "max_rounds": [ + 2946 ], - "player": [ - 3798 + "max_teams": [ + 2946 ], - "steam_id": [ - 180 + "min_teams": [ + 2946 ], - "team": [ - 4746 + "order": [ + 2946 ], - "tournament_team_id": [ - 4921 + "tournament_id": [ + 2946 ], "__typename": [ - 78 + 80 ] }, - "tournament_team_invites_max_fields": { - "created_at": [ - 4376 + "tournament_stages_min_fields": { + "decider_best_of": [ + 40 ], - "id": [ - 4921 + "default_best_of": [ + 40 ], - "invited_by_player_steam_id": [ - 180 + "final_map_advantage": [ + 40 ], - "steam_id": [ - 180 + "groups": [ + 40 ], - "tournament_team_id": [ - 4921 + "id": [ + 4993 ], - "__typename": [ - 78 - ] - }, - "tournament_team_invites_max_order_by": { - "created_at": [ - 2829 + "match_options_id": [ + 4993 + ], + "max_rounds": [ + 40 ], - "id": [ - 2829 + "max_teams": [ + 40 ], - "invited_by_player_steam_id": [ - 2829 + "min_teams": [ + 40 ], - "steam_id": [ - 2829 + "order": [ + 40 ], - "tournament_team_id": [ - 2829 + "tournament_id": [ + 4993 ], "__typename": [ - 78 + 80 ] }, - "tournament_team_invites_min_fields": { - "created_at": [ - 4376 + "tournament_stages_min_order_by": { + "decider_best_of": [ + 2946 ], - "id": [ - 4921 + "default_best_of": [ + 2946 ], - "invited_by_player_steam_id": [ - 180 + "final_map_advantage": [ + 2946 ], - "steam_id": [ - 180 + "groups": [ + 2946 ], - "tournament_team_id": [ - 4921 + "id": [ + 2946 ], - "__typename": [ - 78 - ] - }, - "tournament_team_invites_min_order_by": { - "created_at": [ - 2829 + "match_options_id": [ + 2946 ], - "id": [ - 2829 + "max_rounds": [ + 2946 ], - "invited_by_player_steam_id": [ - 2829 + "max_teams": [ + 2946 ], - "steam_id": [ - 2829 + "min_teams": [ + 2946 ], - "tournament_team_id": [ - 2829 + "order": [ + 2946 + ], + "tournament_id": [ + 2946 ], "__typename": [ - 78 + 80 ] }, - "tournament_team_invites_mutation_response": { + "tournament_stages_mutation_response": { "affected_rows": [ - 38 + 40 ], "returning": [ - 4646 + 4754 ], "__typename": [ - 78 + 80 ] }, - "tournament_team_invites_on_conflict": { + "tournament_stages_obj_rel_insert_input": { + "data": [ + 4772 + ], + "on_conflict": [ + 4779 + ], + "__typename": [ + 80 + ] + }, + "tournament_stages_on_conflict": { "constraint": [ - 4656 + 4767 ], "update_columns": [ - 4679 + 4797 ], "where": [ - 4655 + 4766 ], "__typename": [ - 78 + 80 ] }, - "tournament_team_invites_order_by": { - "created_at": [ - 2829 - ], - "id": [ - 2829 - ], - "invited_by": [ - 3800 + "tournament_stages_order_by": { + "brackets_aggregate": [ + 4544 ], - "invited_by_player_steam_id": [ - 2829 + "decider_best_of": [ + 2946 ], - "player": [ - 3800 + "default_best_of": [ + 2946 ], - "steam_id": [ - 2829 + "e_tournament_stage_type": [ + 1316 ], - "team": [ - 4748 + "final_map_advantage": [ + 2946 ], - "tournament_team_id": [ - 2829 + "groups": [ + 2946 ], - "__typename": [ - 78 - ] - }, - "tournament_team_invites_pk_columns_input": { "id": [ - 4921 + 2946 ], - "__typename": [ - 78 - ] - }, - "tournament_team_invites_select_column": {}, - "tournament_team_invites_set_input": { - "created_at": [ - 4376 + "match_options_id": [ + 2946 ], - "id": [ - 4921 + "max_rounds": [ + 2946 ], - "invited_by_player_steam_id": [ - 180 + "max_teams": [ + 2946 ], - "steam_id": [ - 180 + "min_teams": [ + 2946 ], - "tournament_team_id": [ - 4921 + "options": [ + 2654 ], - "__typename": [ - 78 - ] - }, - "tournament_team_invites_stddev_fields": { - "invited_by_player_steam_id": [ - 29 + "order": [ + 2946 ], - "steam_id": [ - 29 + "results_aggregate": [ + 5732 ], - "__typename": [ - 78 - ] - }, - "tournament_team_invites_stddev_order_by": { - "invited_by_player_steam_id": [ - 2829 + "settings": [ + 2946 ], - "steam_id": [ - 2829 + "swiss_no_elimination": [ + 2946 ], - "__typename": [ - 78 - ] - }, - "tournament_team_invites_stddev_pop_fields": { - "invited_by_player_steam_id": [ - 29 + "third_place_match": [ + 2946 ], - "steam_id": [ - 29 + "tournament": [ + 4961 ], - "__typename": [ - 78 - ] - }, - "tournament_team_invites_stddev_pop_order_by": { - "invited_by_player_steam_id": [ - 2829 + "tournament_id": [ + 2946 ], - "steam_id": [ - 2829 + "type": [ + 2946 + ], + "windows_aggregate": [ + 4718 ], "__typename": [ - 78 + 80 ] }, - "tournament_team_invites_stddev_samp_fields": { - "invited_by_player_steam_id": [ - 29 - ], - "steam_id": [ - 29 + "tournament_stages_pk_columns_input": { + "id": [ + 4993 ], "__typename": [ - 78 + 80 ] }, - "tournament_team_invites_stddev_samp_order_by": { - "invited_by_player_steam_id": [ - 2829 - ], - "steam_id": [ - 2829 + "tournament_stages_prepend_input": { + "settings": [ + 1817 ], "__typename": [ - 78 + 80 ] }, - "tournament_team_invites_stream_cursor_input": { - "initial_value": [ - 4676 + "tournament_stages_select_column": {}, + "tournament_stages_select_column_tournament_stages_aggregate_bool_exp_bool_and_arguments_columns": {}, + "tournament_stages_select_column_tournament_stages_aggregate_bool_exp_bool_or_arguments_columns": {}, + "tournament_stages_set_input": { + "decider_best_of": [ + 40 ], - "ordering": [ - 236 + "default_best_of": [ + 40 ], - "__typename": [ - 78 - ] - }, - "tournament_team_invites_stream_cursor_value_input": { - "created_at": [ - 4376 + "final_map_advantage": [ + 40 + ], + "groups": [ + 40 ], "id": [ - 4921 + 4993 ], - "invited_by_player_steam_id": [ - 180 + "match_options_id": [ + 4993 ], - "steam_id": [ - 180 + "max_rounds": [ + 40 ], - "tournament_team_id": [ - 4921 + "max_teams": [ + 40 ], - "__typename": [ - 78 - ] - }, - "tournament_team_invites_sum_fields": { - "invited_by_player_steam_id": [ - 180 + "min_teams": [ + 40 ], - "steam_id": [ - 180 + "order": [ + 40 ], - "__typename": [ - 78 - ] - }, - "tournament_team_invites_sum_order_by": { - "invited_by_player_steam_id": [ - 2829 + "settings": [ + 1817 ], - "steam_id": [ - 2829 + "swiss_no_elimination": [ + 5 ], - "__typename": [ - 78 - ] - }, - "tournament_team_invites_update_column": {}, - "tournament_team_invites_updates": { - "_inc": [ - 4657 + "third_place_match": [ + 5 ], - "_set": [ - 4668 + "tournament_id": [ + 4993 ], - "where": [ - 4655 + "type": [ + 1308 ], "__typename": [ - 78 + 80 ] }, - "tournament_team_invites_var_pop_fields": { - "invited_by_player_steam_id": [ - 29 + "tournament_stages_stddev_fields": { + "decider_best_of": [ + 31 ], - "steam_id": [ - 29 + "default_best_of": [ + 31 ], - "__typename": [ - 78 - ] - }, - "tournament_team_invites_var_pop_order_by": { - "invited_by_player_steam_id": [ - 2829 + "final_map_advantage": [ + 31 ], - "steam_id": [ - 2829 + "groups": [ + 31 ], - "__typename": [ - 78 - ] - }, - "tournament_team_invites_var_samp_fields": { - "invited_by_player_steam_id": [ - 29 + "max_rounds": [ + 31 ], - "steam_id": [ - 29 + "max_teams": [ + 31 ], - "__typename": [ - 78 - ] - }, - "tournament_team_invites_var_samp_order_by": { - "invited_by_player_steam_id": [ - 2829 + "min_teams": [ + 31 ], - "steam_id": [ - 2829 + "order": [ + 31 ], "__typename": [ - 78 + 80 ] }, - "tournament_team_invites_variance_fields": { - "invited_by_player_steam_id": [ - 29 + "tournament_stages_stddev_order_by": { + "decider_best_of": [ + 2946 ], - "steam_id": [ - 29 + "default_best_of": [ + 2946 ], - "__typename": [ - 78 - ] - }, - "tournament_team_invites_variance_order_by": { - "invited_by_player_steam_id": [ - 2829 + "final_map_advantage": [ + 2946 ], - "steam_id": [ - 2829 + "groups": [ + 2946 + ], + "max_rounds": [ + 2946 + ], + "max_teams": [ + 2946 + ], + "min_teams": [ + 2946 + ], + "order": [ + 2946 ], "__typename": [ - 78 + 80 ] }, - "tournament_team_roster": { - "e_team_role": [ - 1104 + "tournament_stages_stddev_pop_fields": { + "decider_best_of": [ + 31 ], - "player": [ - 3787 + "default_best_of": [ + 31 ], - "player_steam_id": [ - 180 + "final_map_advantage": [ + 31 ], - "role": [ - 1109 + "groups": [ + 31 ], - "tournament": [ - 4857 + "max_rounds": [ + 31 ], - "tournament_id": [ - 4921 + "max_teams": [ + 31 ], - "tournament_team": [ - 4728 + "min_teams": [ + 31 ], - "tournament_team_id": [ - 4921 + "order": [ + 31 ], "__typename": [ - 78 + 80 ] }, - "tournament_team_roster_aggregate": { - "aggregate": [ - 4691 + "tournament_stages_stddev_pop_order_by": { + "decider_best_of": [ + 2946 ], - "nodes": [ - 4687 + "default_best_of": [ + 2946 ], - "__typename": [ - 78 - ] - }, - "tournament_team_roster_aggregate_bool_exp": { - "count": [ - 4690 + "final_map_advantage": [ + 2946 ], - "__typename": [ - 78 - ] - }, - "tournament_team_roster_aggregate_bool_exp_count": { - "arguments": [ - 4708 + "groups": [ + 2946 ], - "distinct": [ - 3 + "max_rounds": [ + 2946 ], - "filter": [ - 4696 + "max_teams": [ + 2946 ], - "predicate": [ - 39 + "min_teams": [ + 2946 + ], + "order": [ + 2946 ], "__typename": [ - 78 + 80 ] }, - "tournament_team_roster_aggregate_fields": { - "avg": [ - 4694 - ], - "count": [ - 38, - { - "columns": [ - 4708, - "[tournament_team_roster_select_column!]" - ], - "distinct": [ - 3 - ] - } - ], - "max": [ - 4700 - ], - "min": [ - 4702 + "tournament_stages_stddev_samp_fields": { + "decider_best_of": [ + 31 ], - "stddev": [ - 4710 + "default_best_of": [ + 31 ], - "stddev_pop": [ - 4712 + "final_map_advantage": [ + 31 ], - "stddev_samp": [ - 4714 + "groups": [ + 31 ], - "sum": [ - 4718 + "max_rounds": [ + 31 ], - "var_pop": [ - 4722 + "max_teams": [ + 31 ], - "var_samp": [ - 4724 + "min_teams": [ + 31 ], - "variance": [ - 4726 + "order": [ + 31 ], "__typename": [ - 78 + 80 ] }, - "tournament_team_roster_aggregate_order_by": { - "avg": [ - 4695 - ], - "count": [ - 2829 - ], - "max": [ - 4701 - ], - "min": [ - 4703 + "tournament_stages_stddev_samp_order_by": { + "decider_best_of": [ + 2946 ], - "stddev": [ - 4711 + "default_best_of": [ + 2946 ], - "stddev_pop": [ - 4713 + "final_map_advantage": [ + 2946 ], - "stddev_samp": [ - 4715 + "groups": [ + 2946 ], - "sum": [ - 4719 + "max_rounds": [ + 2946 ], - "var_pop": [ - 4723 + "max_teams": [ + 2946 ], - "var_samp": [ - 4725 + "min_teams": [ + 2946 ], - "variance": [ - 4727 + "order": [ + 2946 ], "__typename": [ - 78 + 80 ] }, - "tournament_team_roster_arr_rel_insert_input": { - "data": [ - 4699 + "tournament_stages_stream_cursor_input": { + "initial_value": [ + 4794 ], - "on_conflict": [ - 4705 + "ordering": [ + 308 ], "__typename": [ - 78 + 80 ] }, - "tournament_team_roster_avg_fields": { - "player_steam_id": [ - 29 + "tournament_stages_stream_cursor_value_input": { + "decider_best_of": [ + 40 ], - "__typename": [ - 78 - ] - }, - "tournament_team_roster_avg_order_by": { - "player_steam_id": [ - 2829 + "default_best_of": [ + 40 ], - "__typename": [ - 78 - ] - }, - "tournament_team_roster_bool_exp": { - "_and": [ - 4696 + "final_map_advantage": [ + 40 ], - "_not": [ - 4696 + "groups": [ + 40 ], - "_or": [ - 4696 + "id": [ + 4993 ], - "e_team_role": [ - 1107 + "match_options_id": [ + 4993 ], - "player": [ - 3791 + "max_rounds": [ + 40 ], - "player_steam_id": [ - 182 + "max_teams": [ + 40 ], - "role": [ - 1110 + "min_teams": [ + 40 ], - "tournament": [ - 4878 + "order": [ + 40 ], - "tournament_id": [ - 4923 + "settings": [ + 1817 ], - "tournament_team": [ - 4737 + "swiss_no_elimination": [ + 5 ], - "tournament_team_id": [ - 4923 + "third_place_match": [ + 5 ], - "__typename": [ - 78 - ] - }, - "tournament_team_roster_constraint": {}, - "tournament_team_roster_inc_input": { - "player_steam_id": [ - 180 + "tournament_id": [ + 4993 + ], + "type": [ + 1308 ], "__typename": [ - 78 + 80 ] }, - "tournament_team_roster_insert_input": { - "e_team_role": [ - 1115 + "tournament_stages_sum_fields": { + "decider_best_of": [ + 40 ], - "player": [ - 3798 + "default_best_of": [ + 40 ], - "player_steam_id": [ - 180 + "final_map_advantage": [ + 40 ], - "role": [ - 1109 + "groups": [ + 40 ], - "tournament": [ - 4887 + "max_rounds": [ + 40 ], - "tournament_id": [ - 4921 + "max_teams": [ + 40 ], - "tournament_team": [ - 4746 + "min_teams": [ + 40 ], - "tournament_team_id": [ - 4921 + "order": [ + 40 ], "__typename": [ - 78 + 80 ] }, - "tournament_team_roster_max_fields": { - "player_steam_id": [ - 180 - ], - "tournament_id": [ - 4921 + "tournament_stages_sum_order_by": { + "decider_best_of": [ + 2946 ], - "tournament_team_id": [ - 4921 + "default_best_of": [ + 2946 ], - "__typename": [ - 78 - ] - }, - "tournament_team_roster_max_order_by": { - "player_steam_id": [ - 2829 + "final_map_advantage": [ + 2946 ], - "tournament_id": [ - 2829 + "groups": [ + 2946 ], - "tournament_team_id": [ - 2829 + "max_rounds": [ + 2946 ], - "__typename": [ - 78 - ] - }, - "tournament_team_roster_min_fields": { - "player_steam_id": [ - 180 + "max_teams": [ + 2946 ], - "tournament_id": [ - 4921 + "min_teams": [ + 2946 ], - "tournament_team_id": [ - 4921 + "order": [ + 2946 ], "__typename": [ - 78 + 80 ] }, - "tournament_team_roster_min_order_by": { - "player_steam_id": [ - 2829 + "tournament_stages_update_column": {}, + "tournament_stages_updates": { + "_append": [ + 4762 ], - "tournament_id": [ - 2829 + "_delete_at_path": [ + 4768 ], - "tournament_team_id": [ - 2829 + "_delete_elem": [ + 4769 ], - "__typename": [ - 78 - ] - }, - "tournament_team_roster_mutation_response": { - "affected_rows": [ - 38 + "_delete_key": [ + 4770 ], - "returning": [ - 4687 + "_inc": [ + 4771 ], - "__typename": [ - 78 - ] - }, - "tournament_team_roster_on_conflict": { - "constraint": [ - 4697 + "_prepend": [ + 4782 ], - "update_columns": [ - 4720 + "_set": [ + 4786 ], "where": [ - 4696 + 4766 ], "__typename": [ - 78 + 80 ] }, - "tournament_team_roster_order_by": { - "e_team_role": [ - 1117 + "tournament_stages_var_pop_fields": { + "decider_best_of": [ + 31 ], - "player": [ - 3800 + "default_best_of": [ + 31 ], - "player_steam_id": [ - 2829 + "final_map_advantage": [ + 31 ], - "role": [ - 2829 + "groups": [ + 31 ], - "tournament": [ - 4889 + "max_rounds": [ + 31 ], - "tournament_id": [ - 2829 + "max_teams": [ + 31 ], - "tournament_team": [ - 4748 + "min_teams": [ + 31 ], - "tournament_team_id": [ - 2829 + "order": [ + 31 ], "__typename": [ - 78 + 80 ] }, - "tournament_team_roster_pk_columns_input": { - "player_steam_id": [ - 180 + "tournament_stages_var_pop_order_by": { + "decider_best_of": [ + 2946 ], - "tournament_id": [ - 4921 + "default_best_of": [ + 2946 ], - "__typename": [ - 78 - ] - }, - "tournament_team_roster_select_column": {}, - "tournament_team_roster_set_input": { - "player_steam_id": [ - 180 + "final_map_advantage": [ + 2946 ], - "role": [ - 1109 + "groups": [ + 2946 ], - "tournament_id": [ - 4921 + "max_rounds": [ + 2946 ], - "tournament_team_id": [ - 4921 + "max_teams": [ + 2946 ], - "__typename": [ - 78 - ] - }, - "tournament_team_roster_stddev_fields": { - "player_steam_id": [ - 29 + "min_teams": [ + 2946 ], - "__typename": [ - 78 - ] - }, - "tournament_team_roster_stddev_order_by": { - "player_steam_id": [ - 2829 + "order": [ + 2946 ], "__typename": [ - 78 + 80 ] }, - "tournament_team_roster_stddev_pop_fields": { - "player_steam_id": [ - 29 + "tournament_stages_var_samp_fields": { + "decider_best_of": [ + 31 ], - "__typename": [ - 78 - ] - }, - "tournament_team_roster_stddev_pop_order_by": { - "player_steam_id": [ - 2829 + "default_best_of": [ + 31 ], - "__typename": [ - 78 - ] - }, - "tournament_team_roster_stddev_samp_fields": { - "player_steam_id": [ - 29 + "final_map_advantage": [ + 31 ], - "__typename": [ - 78 - ] - }, - "tournament_team_roster_stddev_samp_order_by": { - "player_steam_id": [ - 2829 + "groups": [ + 31 ], - "__typename": [ - 78 - ] - }, - "tournament_team_roster_stream_cursor_input": { - "initial_value": [ - 4717 + "max_rounds": [ + 31 ], - "ordering": [ - 236 + "max_teams": [ + 31 + ], + "min_teams": [ + 31 + ], + "order": [ + 31 ], "__typename": [ - 78 + 80 ] }, - "tournament_team_roster_stream_cursor_value_input": { - "player_steam_id": [ - 180 - ], - "role": [ - 1109 + "tournament_stages_var_samp_order_by": { + "decider_best_of": [ + 2946 ], - "tournament_id": [ - 4921 + "default_best_of": [ + 2946 ], - "tournament_team_id": [ - 4921 + "final_map_advantage": [ + 2946 ], - "__typename": [ - 78 - ] - }, - "tournament_team_roster_sum_fields": { - "player_steam_id": [ - 180 + "groups": [ + 2946 ], - "__typename": [ - 78 - ] - }, - "tournament_team_roster_sum_order_by": { - "player_steam_id": [ - 2829 + "max_rounds": [ + 2946 ], - "__typename": [ - 78 - ] - }, - "tournament_team_roster_update_column": {}, - "tournament_team_roster_updates": { - "_inc": [ - 4698 + "max_teams": [ + 2946 ], - "_set": [ - 4709 + "min_teams": [ + 2946 ], - "where": [ - 4696 + "order": [ + 2946 ], "__typename": [ - 78 + 80 ] }, - "tournament_team_roster_var_pop_fields": { - "player_steam_id": [ - 29 + "tournament_stages_variance_fields": { + "decider_best_of": [ + 31 ], - "__typename": [ - 78 - ] - }, - "tournament_team_roster_var_pop_order_by": { - "player_steam_id": [ - 2829 + "default_best_of": [ + 31 ], - "__typename": [ - 78 - ] - }, - "tournament_team_roster_var_samp_fields": { - "player_steam_id": [ - 29 + "final_map_advantage": [ + 31 ], - "__typename": [ - 78 - ] - }, - "tournament_team_roster_var_samp_order_by": { - "player_steam_id": [ - 2829 + "groups": [ + 31 ], - "__typename": [ - 78 - ] - }, - "tournament_team_roster_variance_fields": { - "player_steam_id": [ - 29 + "max_rounds": [ + 31 ], - "__typename": [ - 78 - ] - }, - "tournament_team_roster_variance_order_by": { - "player_steam_id": [ - 2829 + "max_teams": [ + 31 + ], + "min_teams": [ + 31 + ], + "order": [ + 31 ], "__typename": [ - 78 + 80 ] }, - "tournament_teams": { - "can_manage": [ - 3 - ], - "captain": [ - 3787 - ], - "captain_steam_id": [ - 180 + "tournament_stages_variance_order_by": { + "decider_best_of": [ + 2946 ], - "created_at": [ - 4376 + "default_best_of": [ + 2946 ], - "creator": [ - 3787 + "final_map_advantage": [ + 2946 ], - "eligible_at": [ - 4376 + "groups": [ + 2946 ], - "id": [ - 4921 + "max_rounds": [ + 2946 ], - "invites": [ - 4646, - { - "distinct_on": [ - 4667, - "[tournament_team_invites_select_column!]" - ], - "limit": [ - 38 - ], - "offset": [ - 38 - ], - "order_by": [ - 4665, - "[tournament_team_invites_order_by!]" - ], - "where": [ - 4655 - ] - } + "max_teams": [ + 2946 ], - "invites_aggregate": [ - 4647, - { - "distinct_on": [ - 4667, - "[tournament_team_invites_select_column!]" - ], - "limit": [ - 38 - ], - "offset": [ - 38 - ], - "order_by": [ - 4665, - "[tournament_team_invites_order_by!]" - ], - "where": [ - 4655 - ] - } + "min_teams": [ + 2946 ], - "name": [ - 78 + "order": [ + 2946 ], - "owner_steam_id": [ - 180 + "__typename": [ + 80 + ] + }, + "tournament_team_invites": { + "created_at": [ + 4493 ], - "results": [ - 5645 + "id": [ + 4993 ], - "roster": [ - 4687, - { - "distinct_on": [ - 4708, - "[tournament_team_roster_select_column!]" - ], - "limit": [ - 38 - ], - "offset": [ - 38 - ], - "order_by": [ - 4706, - "[tournament_team_roster_order_by!]" - ], - "where": [ - 4696 - ] - } + "invited_by": [ + 3904 ], - "roster_aggregate": [ - 4688, - { - "distinct_on": [ - 4708, - "[tournament_team_roster_select_column!]" - ], - "limit": [ - 38 - ], - "offset": [ - 38 - ], - "order_by": [ - 4706, - "[tournament_team_roster_order_by!]" - ], - "where": [ - 4696 - ] - } + "invited_by_player_steam_id": [ + 252 ], - "seed": [ - 38 + "player": [ + 3904 ], - "short_name": [ - 78 + "steam_id": [ + 252 ], "team": [ - 4329 - ], - "team_id": [ - 4921 - ], - "tournament": [ - 4857 + 4887 ], - "tournament_id": [ - 4921 + "tournament_team_id": [ + 4993 ], "__typename": [ - 78 + 80 ] }, - "tournament_teams_aggregate": { + "tournament_team_invites_aggregate": { "aggregate": [ - 4732 + 4809 ], "nodes": [ - 4728 + 4805 ], "__typename": [ - 78 + 80 ] }, - "tournament_teams_aggregate_bool_exp": { + "tournament_team_invites_aggregate_bool_exp": { "count": [ - 4731 + 4808 ], "__typename": [ - 78 + 80 ] }, - "tournament_teams_aggregate_bool_exp_count": { + "tournament_team_invites_aggregate_bool_exp_count": { "arguments": [ - 4750 + 4826 ], "distinct": [ - 3 + 5 ], "filter": [ - 4737 + 4814 ], "predicate": [ - 39 + 41 ], "__typename": [ - 78 + 80 ] }, - "tournament_teams_aggregate_fields": { + "tournament_team_invites_aggregate_fields": { "avg": [ - 4735 + 4812 ], "count": [ - 38, + 40, { "columns": [ - 4750, - "[tournament_teams_select_column!]" + 4826, + "[tournament_team_invites_select_column!]" ], "distinct": [ - 3 + 5 ] } ], "max": [ - 4741 + 4818 ], "min": [ - 4743 + 4820 ], "stddev": [ - 4752 + 4828 ], "stddev_pop": [ - 4754 + 4830 ], "stddev_samp": [ - 4756 + 4832 ], "sum": [ - 4760 + 4836 ], "var_pop": [ - 4764 + 4840 ], "var_samp": [ - 4766 + 4842 ], "variance": [ - 4768 + 4844 ], "__typename": [ - 78 + 80 ] }, - "tournament_teams_aggregate_order_by": { + "tournament_team_invites_aggregate_order_by": { "avg": [ - 4736 + 4813 ], "count": [ - 2829 + 2946 ], "max": [ - 4742 + 4819 ], "min": [ - 4744 + 4821 ], "stddev": [ - 4753 + 4829 ], "stddev_pop": [ - 4755 + 4831 ], "stddev_samp": [ - 4757 + 4833 ], "sum": [ - 4761 + 4837 ], "var_pop": [ - 4765 + 4841 ], "var_samp": [ - 4767 + 4843 ], "variance": [ - 4769 + 4845 ], "__typename": [ - 78 + 80 ] }, - "tournament_teams_arr_rel_insert_input": { + "tournament_team_invites_arr_rel_insert_input": { "data": [ - 4740 + 4817 ], "on_conflict": [ - 4747 + 4823 ], "__typename": [ - 78 + 80 ] }, - "tournament_teams_avg_fields": { - "captain_steam_id": [ - 29 - ], - "owner_steam_id": [ - 29 + "tournament_team_invites_avg_fields": { + "invited_by_player_steam_id": [ + 31 ], - "seed": [ - 29 + "steam_id": [ + 31 ], "__typename": [ - 78 + 80 ] }, - "tournament_teams_avg_order_by": { - "captain_steam_id": [ - 2829 - ], - "owner_steam_id": [ - 2829 + "tournament_team_invites_avg_order_by": { + "invited_by_player_steam_id": [ + 2946 ], - "seed": [ - 2829 + "steam_id": [ + 2946 ], "__typename": [ - 78 + 80 ] }, - "tournament_teams_bool_exp": { + "tournament_team_invites_bool_exp": { "_and": [ - 4737 + 4814 ], "_not": [ - 4737 + 4814 ], "_or": [ - 4737 - ], - "can_manage": [ - 4 - ], - "captain": [ - 3791 - ], - "captain_steam_id": [ - 182 + 4814 ], "created_at": [ - 4377 - ], - "creator": [ - 3791 - ], - "eligible_at": [ - 4377 + 4494 ], "id": [ - 4923 - ], - "invites": [ - 4655 - ], - "invites_aggregate": [ - 4648 - ], - "name": [ - 80 - ], - "owner_steam_id": [ - 182 - ], - "results": [ - 5664 + 4995 ], - "roster": [ - 4696 + "invited_by": [ + 3908 ], - "roster_aggregate": [ - 4689 + "invited_by_player_steam_id": [ + 254 ], - "seed": [ - 39 + "player": [ + 3908 ], - "short_name": [ - 80 + "steam_id": [ + 254 ], "team": [ - 4340 - ], - "team_id": [ - 4923 - ], - "tournament": [ - 4878 + 4896 ], - "tournament_id": [ - 4923 + "tournament_team_id": [ + 4995 ], "__typename": [ - 78 + 80 ] }, - "tournament_teams_constraint": {}, - "tournament_teams_inc_input": { - "captain_steam_id": [ - 180 - ], - "owner_steam_id": [ - 180 + "tournament_team_invites_constraint": {}, + "tournament_team_invites_inc_input": { + "invited_by_player_steam_id": [ + 252 ], - "seed": [ - 38 + "steam_id": [ + 252 ], "__typename": [ - 78 + 80 ] }, - "tournament_teams_insert_input": { - "captain": [ - 3798 - ], - "captain_steam_id": [ - 180 - ], + "tournament_team_invites_insert_input": { "created_at": [ - 4376 - ], - "creator": [ - 3798 - ], - "eligible_at": [ - 4376 + 4493 ], "id": [ - 4921 - ], - "invites": [ - 4652 - ], - "name": [ - 78 - ], - "owner_steam_id": [ - 180 + 4993 ], - "results": [ - 5673 + "invited_by": [ + 3915 ], - "roster": [ - 4693 + "invited_by_player_steam_id": [ + 252 ], - "seed": [ - 38 + "player": [ + 3915 ], - "short_name": [ - 78 + "steam_id": [ + 252 ], "team": [ - 4349 - ], - "team_id": [ - 4921 - ], - "tournament": [ - 4887 + 4905 ], - "tournament_id": [ - 4921 + "tournament_team_id": [ + 4993 ], "__typename": [ - 78 + 80 ] }, - "tournament_teams_max_fields": { - "captain_steam_id": [ - 180 - ], + "tournament_team_invites_max_fields": { "created_at": [ - 4376 - ], - "eligible_at": [ - 4376 + 4493 ], "id": [ - 4921 - ], - "name": [ - 78 - ], - "owner_steam_id": [ - 180 - ], - "seed": [ - 38 + 4993 ], - "short_name": [ - 78 + "invited_by_player_steam_id": [ + 252 ], - "team_id": [ - 4921 + "steam_id": [ + 252 ], - "tournament_id": [ - 4921 + "tournament_team_id": [ + 4993 ], "__typename": [ - 78 + 80 ] }, - "tournament_teams_max_order_by": { - "captain_steam_id": [ - 2829 - ], + "tournament_team_invites_max_order_by": { "created_at": [ - 2829 - ], - "eligible_at": [ - 2829 + 2946 ], "id": [ - 2829 - ], - "name": [ - 2829 - ], - "owner_steam_id": [ - 2829 - ], - "seed": [ - 2829 + 2946 ], - "short_name": [ - 2829 + "invited_by_player_steam_id": [ + 2946 ], - "team_id": [ - 2829 + "steam_id": [ + 2946 ], - "tournament_id": [ - 2829 + "tournament_team_id": [ + 2946 ], "__typename": [ - 78 + 80 ] }, - "tournament_teams_min_fields": { - "captain_steam_id": [ - 180 - ], + "tournament_team_invites_min_fields": { "created_at": [ - 4376 - ], - "eligible_at": [ - 4376 + 4493 ], "id": [ - 4921 - ], - "name": [ - 78 - ], - "owner_steam_id": [ - 180 - ], - "seed": [ - 38 + 4993 ], - "short_name": [ - 78 + "invited_by_player_steam_id": [ + 252 ], - "team_id": [ - 4921 + "steam_id": [ + 252 ], - "tournament_id": [ - 4921 + "tournament_team_id": [ + 4993 ], "__typename": [ - 78 + 80 ] }, - "tournament_teams_min_order_by": { - "captain_steam_id": [ - 2829 - ], + "tournament_team_invites_min_order_by": { "created_at": [ - 2829 - ], - "eligible_at": [ - 2829 + 2946 ], "id": [ - 2829 - ], - "name": [ - 2829 - ], - "owner_steam_id": [ - 2829 - ], - "seed": [ - 2829 + 2946 ], - "short_name": [ - 2829 + "invited_by_player_steam_id": [ + 2946 ], - "team_id": [ - 2829 + "steam_id": [ + 2946 ], - "tournament_id": [ - 2829 + "tournament_team_id": [ + 2946 ], "__typename": [ - 78 + 80 ] }, - "tournament_teams_mutation_response": { + "tournament_team_invites_mutation_response": { "affected_rows": [ - 38 + 40 ], "returning": [ - 4728 - ], - "__typename": [ - 78 - ] - }, - "tournament_teams_obj_rel_insert_input": { - "data": [ - 4740 - ], - "on_conflict": [ - 4747 + 4805 ], "__typename": [ - 78 + 80 ] }, - "tournament_teams_on_conflict": { + "tournament_team_invites_on_conflict": { "constraint": [ - 4738 + 4815 ], "update_columns": [ - 4762 + 4838 ], "where": [ - 4737 + 4814 ], "__typename": [ - 78 + 80 ] }, - "tournament_teams_order_by": { - "can_manage": [ - 2829 - ], - "captain": [ - 3800 - ], - "captain_steam_id": [ - 2829 - ], + "tournament_team_invites_order_by": { "created_at": [ - 2829 - ], - "creator": [ - 3800 - ], - "eligible_at": [ - 2829 + 2946 ], "id": [ - 2829 - ], - "invites_aggregate": [ - 4651 - ], - "name": [ - 2829 - ], - "owner_steam_id": [ - 2829 + 2946 ], - "results": [ - 5675 + "invited_by": [ + 3917 ], - "roster_aggregate": [ - 4692 + "invited_by_player_steam_id": [ + 2946 ], - "seed": [ - 2829 + "player": [ + 3917 ], - "short_name": [ - 2829 + "steam_id": [ + 2946 ], "team": [ - 4351 - ], - "team_id": [ - 2829 - ], - "tournament": [ - 4889 + 4907 ], - "tournament_id": [ - 2829 + "tournament_team_id": [ + 2946 ], "__typename": [ - 78 + 80 ] }, - "tournament_teams_pk_columns_input": { + "tournament_team_invites_pk_columns_input": { "id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, - "tournament_teams_select_column": {}, - "tournament_teams_set_input": { - "captain_steam_id": [ - 180 - ], + "tournament_team_invites_select_column": {}, + "tournament_team_invites_set_input": { "created_at": [ - 4376 - ], - "eligible_at": [ - 4376 + 4493 ], "id": [ - 4921 - ], - "name": [ - 78 - ], - "owner_steam_id": [ - 180 - ], - "seed": [ - 38 + 4993 ], - "short_name": [ - 78 + "invited_by_player_steam_id": [ + 252 ], - "team_id": [ - 4921 + "steam_id": [ + 252 ], - "tournament_id": [ - 4921 + "tournament_team_id": [ + 4993 ], "__typename": [ - 78 + 80 ] }, - "tournament_teams_stddev_fields": { - "captain_steam_id": [ - 29 - ], - "owner_steam_id": [ - 29 + "tournament_team_invites_stddev_fields": { + "invited_by_player_steam_id": [ + 31 ], - "seed": [ - 29 + "steam_id": [ + 31 ], "__typename": [ - 78 + 80 ] }, - "tournament_teams_stddev_order_by": { - "captain_steam_id": [ - 2829 - ], - "owner_steam_id": [ - 2829 + "tournament_team_invites_stddev_order_by": { + "invited_by_player_steam_id": [ + 2946 ], - "seed": [ - 2829 + "steam_id": [ + 2946 ], "__typename": [ - 78 + 80 ] }, - "tournament_teams_stddev_pop_fields": { - "captain_steam_id": [ - 29 - ], - "owner_steam_id": [ - 29 + "tournament_team_invites_stddev_pop_fields": { + "invited_by_player_steam_id": [ + 31 ], - "seed": [ - 29 + "steam_id": [ + 31 ], "__typename": [ - 78 + 80 ] }, - "tournament_teams_stddev_pop_order_by": { - "captain_steam_id": [ - 2829 - ], - "owner_steam_id": [ - 2829 + "tournament_team_invites_stddev_pop_order_by": { + "invited_by_player_steam_id": [ + 2946 ], - "seed": [ - 2829 + "steam_id": [ + 2946 ], "__typename": [ - 78 + 80 ] }, - "tournament_teams_stddev_samp_fields": { - "captain_steam_id": [ - 29 - ], - "owner_steam_id": [ - 29 + "tournament_team_invites_stddev_samp_fields": { + "invited_by_player_steam_id": [ + 31 ], - "seed": [ - 29 + "steam_id": [ + 31 ], "__typename": [ - 78 + 80 ] }, - "tournament_teams_stddev_samp_order_by": { - "captain_steam_id": [ - 2829 - ], - "owner_steam_id": [ - 2829 + "tournament_team_invites_stddev_samp_order_by": { + "invited_by_player_steam_id": [ + 2946 ], - "seed": [ - 2829 + "steam_id": [ + 2946 ], "__typename": [ - 78 + 80 ] }, - "tournament_teams_stream_cursor_input": { + "tournament_team_invites_stream_cursor_input": { "initial_value": [ - 4759 + 4835 ], "ordering": [ - 236 + 308 ], "__typename": [ - 78 + 80 ] }, - "tournament_teams_stream_cursor_value_input": { - "captain_steam_id": [ - 180 - ], + "tournament_team_invites_stream_cursor_value_input": { "created_at": [ - 4376 - ], - "eligible_at": [ - 4376 + 4493 ], "id": [ - 4921 - ], - "name": [ - 78 - ], - "owner_steam_id": [ - 180 - ], - "seed": [ - 38 + 4993 ], - "short_name": [ - 78 + "invited_by_player_steam_id": [ + 252 ], - "team_id": [ - 4921 + "steam_id": [ + 252 ], - "tournament_id": [ - 4921 + "tournament_team_id": [ + 4993 ], "__typename": [ - 78 + 80 ] }, - "tournament_teams_sum_fields": { - "captain_steam_id": [ - 180 - ], - "owner_steam_id": [ - 180 + "tournament_team_invites_sum_fields": { + "invited_by_player_steam_id": [ + 252 ], - "seed": [ - 38 + "steam_id": [ + 252 ], "__typename": [ - 78 + 80 ] }, - "tournament_teams_sum_order_by": { - "captain_steam_id": [ - 2829 - ], - "owner_steam_id": [ - 2829 + "tournament_team_invites_sum_order_by": { + "invited_by_player_steam_id": [ + 2946 ], - "seed": [ - 2829 + "steam_id": [ + 2946 ], "__typename": [ - 78 + 80 ] }, - "tournament_teams_update_column": {}, - "tournament_teams_updates": { + "tournament_team_invites_update_column": {}, + "tournament_team_invites_updates": { "_inc": [ - 4739 + 4816 ], "_set": [ - 4751 + 4827 ], "where": [ - 4737 + 4814 ], "__typename": [ - 78 + 80 ] }, - "tournament_teams_var_pop_fields": { - "captain_steam_id": [ - 29 - ], - "owner_steam_id": [ - 29 + "tournament_team_invites_var_pop_fields": { + "invited_by_player_steam_id": [ + 31 ], - "seed": [ - 29 + "steam_id": [ + 31 ], "__typename": [ - 78 + 80 ] }, - "tournament_teams_var_pop_order_by": { - "captain_steam_id": [ - 2829 - ], - "owner_steam_id": [ - 2829 + "tournament_team_invites_var_pop_order_by": { + "invited_by_player_steam_id": [ + 2946 ], - "seed": [ - 2829 + "steam_id": [ + 2946 ], "__typename": [ - 78 + 80 ] }, - "tournament_teams_var_samp_fields": { - "captain_steam_id": [ - 29 - ], - "owner_steam_id": [ - 29 + "tournament_team_invites_var_samp_fields": { + "invited_by_player_steam_id": [ + 31 ], - "seed": [ - 29 + "steam_id": [ + 31 ], "__typename": [ - 78 + 80 ] }, - "tournament_teams_var_samp_order_by": { - "captain_steam_id": [ - 2829 - ], - "owner_steam_id": [ - 2829 + "tournament_team_invites_var_samp_order_by": { + "invited_by_player_steam_id": [ + 2946 ], - "seed": [ - 2829 + "steam_id": [ + 2946 ], "__typename": [ - 78 + 80 ] }, - "tournament_teams_variance_fields": { - "captain_steam_id": [ - 29 - ], - "owner_steam_id": [ - 29 + "tournament_team_invites_variance_fields": { + "invited_by_player_steam_id": [ + 31 ], - "seed": [ - 29 + "steam_id": [ + 31 ], "__typename": [ - 78 + 80 ] }, - "tournament_teams_variance_order_by": { - "captain_steam_id": [ - 2829 - ], - "owner_steam_id": [ - 2829 + "tournament_team_invites_variance_order_by": { + "invited_by_player_steam_id": [ + 2946 ], - "seed": [ - 2829 + "steam_id": [ + 2946 ], "__typename": [ - 78 + 80 ] }, - "tournament_trophies": { - "created_at": [ - 4376 - ], - "id": [ - 4921 - ], - "manual": [ - 3 - ], - "placement": [ - 38 - ], - "placement_tier": [ - 78 + "tournament_team_roster": { + "e_team_role": [ + 1221 ], "player": [ - 3787 + 3904 ], "player_steam_id": [ - 180 - ], - "team": [ - 4329 + 252 ], - "team_id": [ - 4921 + "role": [ + 1226 ], "tournament": [ - 4857 + 4929 ], "tournament_id": [ - 4921 + 4993 ], "tournament_team": [ - 4728 + 4887 ], "tournament_team_id": [ - 4921 - ], - "trophy_config": [ - 4815 + 4993 ], "__typename": [ - 78 + 80 ] }, - "tournament_trophies_aggregate": { + "tournament_team_roster_aggregate": { "aggregate": [ - 4776 + 4850 ], "nodes": [ - 4770 + 4846 ], "__typename": [ - 78 + 80 ] }, - "tournament_trophies_aggregate_bool_exp": { - "bool_and": [ - 4773 - ], - "bool_or": [ - 4774 - ], + "tournament_team_roster_aggregate_bool_exp": { "count": [ - 4775 - ], - "__typename": [ - 78 - ] - }, - "tournament_trophies_aggregate_bool_exp_bool_and": { - "arguments": [ - 4794 - ], - "distinct": [ - 3 - ], - "filter": [ - 4781 - ], - "predicate": [ - 4 - ], - "__typename": [ - 78 - ] - }, - "tournament_trophies_aggregate_bool_exp_bool_or": { - "arguments": [ - 4795 - ], - "distinct": [ - 3 - ], - "filter": [ - 4781 - ], - "predicate": [ - 4 + 4849 ], "__typename": [ - 78 + 80 ] }, - "tournament_trophies_aggregate_bool_exp_count": { + "tournament_team_roster_aggregate_bool_exp_count": { "arguments": [ - 4793 + 4867 ], "distinct": [ - 3 + 5 ], "filter": [ - 4781 + 4855 ], "predicate": [ - 39 + 41 ], "__typename": [ - 78 + 80 ] }, - "tournament_trophies_aggregate_fields": { + "tournament_team_roster_aggregate_fields": { "avg": [ - 4779 + 4853 ], "count": [ - 38, + 40, { "columns": [ - 4793, - "[tournament_trophies_select_column!]" + 4867, + "[tournament_team_roster_select_column!]" ], "distinct": [ - 3 + 5 ] } ], "max": [ - 4785 + 4859 ], "min": [ - 4787 + 4861 ], "stddev": [ - 4797 + 4869 ], "stddev_pop": [ - 4799 + 4871 ], "stddev_samp": [ - 4801 + 4873 ], "sum": [ - 4805 + 4877 ], "var_pop": [ - 4809 + 4881 ], "var_samp": [ - 4811 + 4883 ], "variance": [ - 4813 + 4885 ], "__typename": [ - 78 + 80 ] }, - "tournament_trophies_aggregate_order_by": { + "tournament_team_roster_aggregate_order_by": { "avg": [ - 4780 + 4854 ], "count": [ - 2829 + 2946 ], "max": [ - 4786 + 4860 ], "min": [ - 4788 + 4862 ], "stddev": [ - 4798 + 4870 ], "stddev_pop": [ - 4800 + 4872 ], "stddev_samp": [ - 4802 + 4874 ], "sum": [ - 4806 + 4878 ], "var_pop": [ - 4810 + 4882 ], "var_samp": [ - 4812 + 4884 ], "variance": [ - 4814 + 4886 ], "__typename": [ - 78 + 80 ] }, - "tournament_trophies_arr_rel_insert_input": { + "tournament_team_roster_arr_rel_insert_input": { "data": [ - 4784 + 4858 ], "on_conflict": [ - 4790 + 4864 ], "__typename": [ - 78 + 80 ] }, - "tournament_trophies_avg_fields": { - "placement": [ - 29 - ], + "tournament_team_roster_avg_fields": { "player_steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, - "tournament_trophies_avg_order_by": { - "placement": [ - 2829 - ], + "tournament_team_roster_avg_order_by": { "player_steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, - "tournament_trophies_bool_exp": { + "tournament_team_roster_bool_exp": { "_and": [ - 4781 + 4855 ], "_not": [ - 4781 + 4855 ], "_or": [ - 4781 - ], - "created_at": [ - 4377 - ], - "id": [ - 4923 - ], - "manual": [ - 4 - ], - "placement": [ - 39 + 4855 ], - "placement_tier": [ - 80 + "e_team_role": [ + 1224 ], "player": [ - 3791 + 3908 ], "player_steam_id": [ - 182 - ], - "team": [ - 4340 + 254 ], - "team_id": [ - 4923 + "role": [ + 1227 ], "tournament": [ - 4878 + 4950 ], "tournament_id": [ - 4923 + 4995 ], "tournament_team": [ - 4737 + 4896 ], "tournament_team_id": [ - 4923 - ], - "trophy_config": [ - 4824 + 4995 ], "__typename": [ - 78 + 80 ] }, - "tournament_trophies_constraint": {}, - "tournament_trophies_inc_input": { - "placement": [ - 38 - ], + "tournament_team_roster_constraint": {}, + "tournament_team_roster_inc_input": { "player_steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, - "tournament_trophies_insert_input": { - "created_at": [ - 4376 - ], - "id": [ - 4921 - ], - "manual": [ - 3 - ], - "placement": [ - 38 + "tournament_team_roster_insert_input": { + "e_team_role": [ + 1232 ], "player": [ - 3798 + 3915 ], "player_steam_id": [ - 180 - ], - "team": [ - 4349 + 252 ], - "team_id": [ - 4921 + "role": [ + 1226 ], "tournament": [ - 4887 + 4959 ], "tournament_id": [ - 4921 + 4993 ], "tournament_team": [ - 4746 + 4905 ], "tournament_team_id": [ - 4921 - ], - "trophy_config": [ - 4833 + 4993 ], "__typename": [ - 78 + 80 ] }, - "tournament_trophies_max_fields": { - "created_at": [ - 4376 - ], - "id": [ - 4921 - ], - "placement": [ - 38 - ], - "placement_tier": [ - 78 - ], + "tournament_team_roster_max_fields": { "player_steam_id": [ - 180 - ], - "team_id": [ - 4921 + 252 ], "tournament_id": [ - 4921 + 4993 ], "tournament_team_id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, - "tournament_trophies_max_order_by": { - "created_at": [ - 2829 - ], - "id": [ - 2829 - ], - "placement": [ - 2829 - ], - "placement_tier": [ - 2829 - ], + "tournament_team_roster_max_order_by": { "player_steam_id": [ - 2829 - ], - "team_id": [ - 2829 + 2946 ], "tournament_id": [ - 2829 + 2946 ], "tournament_team_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, - "tournament_trophies_min_fields": { - "created_at": [ - 4376 - ], - "id": [ - 4921 - ], - "placement": [ - 38 - ], - "placement_tier": [ - 78 - ], + "tournament_team_roster_min_fields": { "player_steam_id": [ - 180 - ], - "team_id": [ - 4921 + 252 ], "tournament_id": [ - 4921 + 4993 ], "tournament_team_id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, - "tournament_trophies_min_order_by": { - "created_at": [ - 2829 - ], - "id": [ - 2829 - ], - "placement": [ - 2829 - ], - "placement_tier": [ - 2829 - ], + "tournament_team_roster_min_order_by": { "player_steam_id": [ - 2829 - ], - "team_id": [ - 2829 + 2946 ], "tournament_id": [ - 2829 + 2946 ], "tournament_team_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, - "tournament_trophies_mutation_response": { + "tournament_team_roster_mutation_response": { "affected_rows": [ - 38 + 40 ], "returning": [ - 4770 + 4846 ], "__typename": [ - 78 + 80 ] }, - "tournament_trophies_on_conflict": { + "tournament_team_roster_on_conflict": { "constraint": [ - 4782 + 4856 ], "update_columns": [ - 4807 + 4879 ], "where": [ - 4781 + 4855 ], "__typename": [ - 78 + 80 ] }, - "tournament_trophies_order_by": { - "created_at": [ - 2829 - ], - "id": [ - 2829 - ], - "manual": [ - 2829 - ], - "placement": [ - 2829 - ], - "placement_tier": [ - 2829 + "tournament_team_roster_order_by": { + "e_team_role": [ + 1234 ], "player": [ - 3800 + 3917 ], "player_steam_id": [ - 2829 - ], - "team": [ - 4351 + 2946 ], - "team_id": [ - 2829 + "role": [ + 2946 ], "tournament": [ - 4889 + 4961 ], "tournament_id": [ - 2829 + 2946 ], "tournament_team": [ - 4748 + 4907 ], "tournament_team_id": [ - 2829 - ], - "trophy_config": [ - 4835 + 2946 ], "__typename": [ - 78 + 80 ] }, - "tournament_trophies_pk_columns_input": { - "id": [ - 4921 + "tournament_team_roster_pk_columns_input": { + "player_steam_id": [ + 252 + ], + "tournament_id": [ + 4993 ], "__typename": [ - 78 + 80 ] }, - "tournament_trophies_select_column": {}, - "tournament_trophies_select_column_tournament_trophies_aggregate_bool_exp_bool_and_arguments_columns": {}, - "tournament_trophies_select_column_tournament_trophies_aggregate_bool_exp_bool_or_arguments_columns": {}, - "tournament_trophies_set_input": { - "created_at": [ - 4376 - ], - "id": [ - 4921 - ], - "manual": [ - 3 - ], - "placement": [ - 38 - ], + "tournament_team_roster_select_column": {}, + "tournament_team_roster_set_input": { "player_steam_id": [ - 180 + 252 ], - "team_id": [ - 4921 + "role": [ + 1226 ], "tournament_id": [ - 4921 + 4993 ], "tournament_team_id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, - "tournament_trophies_stddev_fields": { - "placement": [ - 29 - ], + "tournament_team_roster_stddev_fields": { "player_steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, - "tournament_trophies_stddev_order_by": { - "placement": [ - 2829 - ], + "tournament_team_roster_stddev_order_by": { "player_steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, - "tournament_trophies_stddev_pop_fields": { - "placement": [ - 29 - ], + "tournament_team_roster_stddev_pop_fields": { "player_steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, - "tournament_trophies_stddev_pop_order_by": { - "placement": [ - 2829 - ], + "tournament_team_roster_stddev_pop_order_by": { "player_steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, - "tournament_trophies_stddev_samp_fields": { - "placement": [ - 29 - ], + "tournament_team_roster_stddev_samp_fields": { "player_steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, - "tournament_trophies_stddev_samp_order_by": { - "placement": [ - 2829 - ], + "tournament_team_roster_stddev_samp_order_by": { "player_steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, - "tournament_trophies_stream_cursor_input": { + "tournament_team_roster_stream_cursor_input": { "initial_value": [ - 4804 + 4876 ], "ordering": [ - 236 + 308 ], "__typename": [ - 78 + 80 ] }, - "tournament_trophies_stream_cursor_value_input": { - "created_at": [ - 4376 - ], - "id": [ - 4921 - ], - "manual": [ - 3 - ], - "placement": [ - 38 - ], - "placement_tier": [ - 78 - ], + "tournament_team_roster_stream_cursor_value_input": { "player_steam_id": [ - 180 + 252 ], - "team_id": [ - 4921 + "role": [ + 1226 ], "tournament_id": [ - 4921 + 4993 ], "tournament_team_id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, - "tournament_trophies_sum_fields": { - "placement": [ - 38 - ], + "tournament_team_roster_sum_fields": { "player_steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, - "tournament_trophies_sum_order_by": { - "placement": [ - 2829 - ], + "tournament_team_roster_sum_order_by": { "player_steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, - "tournament_trophies_update_column": {}, - "tournament_trophies_updates": { + "tournament_team_roster_update_column": {}, + "tournament_team_roster_updates": { "_inc": [ - 4783 + 4857 ], "_set": [ - 4796 + 4868 ], "where": [ - 4781 + 4855 ], "__typename": [ - 78 + 80 ] }, - "tournament_trophies_var_pop_fields": { - "placement": [ - 29 - ], + "tournament_team_roster_var_pop_fields": { "player_steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, - "tournament_trophies_var_pop_order_by": { - "placement": [ - 2829 - ], + "tournament_team_roster_var_pop_order_by": { "player_steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, - "tournament_trophies_var_samp_fields": { - "placement": [ - 29 - ], + "tournament_team_roster_var_samp_fields": { "player_steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, - "tournament_trophies_var_samp_order_by": { - "placement": [ - 2829 - ], + "tournament_team_roster_var_samp_order_by": { "player_steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, - "tournament_trophies_variance_fields": { - "placement": [ - 29 - ], + "tournament_team_roster_variance_fields": { "player_steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, - "tournament_trophies_variance_order_by": { - "placement": [ - 2829 - ], + "tournament_team_roster_variance_order_by": { "player_steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, - "tournament_trophy_configs": { + "tournament_teams": { + "can_manage": [ + 5 + ], + "captain": [ + 3904 + ], + "captain_steam_id": [ + 252 + ], "created_at": [ - 4376 + 4493 ], - "custom_name": [ - 78 + "creator": [ + 3904 + ], + "eligible_at": [ + 4493 ], "id": [ - 4921 + 4993 ], - "image_url": [ - 78 + "invites": [ + 4805, + { + "distinct_on": [ + 4826, + "[tournament_team_invites_select_column!]" + ], + "limit": [ + 40 + ], + "offset": [ + 40 + ], + "order_by": [ + 4824, + "[tournament_team_invites_order_by!]" + ], + "where": [ + 4814 + ] + } ], - "placement": [ - 38 + "invites_aggregate": [ + 4806, + { + "distinct_on": [ + 4826, + "[tournament_team_invites_select_column!]" + ], + "limit": [ + 40 + ], + "offset": [ + 40 + ], + "order_by": [ + 4824, + "[tournament_team_invites_order_by!]" + ], + "where": [ + 4814 + ] + } ], - "silhouette": [ - 38 + "name": [ + 80 + ], + "owner_steam_id": [ + 252 + ], + "results": [ + 5717 + ], + "roster": [ + 4846, + { + "distinct_on": [ + 4867, + "[tournament_team_roster_select_column!]" + ], + "limit": [ + 40 + ], + "offset": [ + 40 + ], + "order_by": [ + 4865, + "[tournament_team_roster_order_by!]" + ], + "where": [ + 4855 + ] + } + ], + "roster_aggregate": [ + 4847, + { + "distinct_on": [ + 4867, + "[tournament_team_roster_select_column!]" + ], + "limit": [ + 40 + ], + "offset": [ + 40 + ], + "order_by": [ + 4865, + "[tournament_team_roster_order_by!]" + ], + "where": [ + 4855 + ] + } + ], + "seed": [ + 40 + ], + "short_name": [ + 80 + ], + "team": [ + 4446 + ], + "team_id": [ + 4993 ], "tournament": [ - 4857 + 4929 ], "tournament_id": [ - 4921 - ], - "updated_at": [ - 4376 + 4993 ], "__typename": [ - 78 + 80 ] }, - "tournament_trophy_configs_aggregate": { + "tournament_teams_aggregate": { "aggregate": [ - 4819 + 4891 ], "nodes": [ - 4815 + 4887 ], "__typename": [ - 78 + 80 ] }, - "tournament_trophy_configs_aggregate_bool_exp": { + "tournament_teams_aggregate_bool_exp": { "count": [ - 4818 + 4890 ], "__typename": [ - 78 + 80 ] }, - "tournament_trophy_configs_aggregate_bool_exp_count": { + "tournament_teams_aggregate_bool_exp_count": { "arguments": [ - 4837 + 4909 ], "distinct": [ - 3 + 5 ], "filter": [ - 4824 + 4896 ], "predicate": [ - 39 + 41 ], "__typename": [ - 78 + 80 ] }, - "tournament_trophy_configs_aggregate_fields": { + "tournament_teams_aggregate_fields": { "avg": [ - 4822 + 4894 ], "count": [ - 38, + 40, { "columns": [ - 4837, - "[tournament_trophy_configs_select_column!]" + 4909, + "[tournament_teams_select_column!]" ], "distinct": [ - 3 + 5 ] } ], "max": [ - 4828 + 4900 ], "min": [ - 4830 + 4902 ], "stddev": [ - 4839 + 4911 ], "stddev_pop": [ - 4841 + 4913 ], "stddev_samp": [ - 4843 + 4915 ], "sum": [ - 4847 + 4919 ], "var_pop": [ - 4851 + 4923 ], "var_samp": [ - 4853 + 4925 ], "variance": [ - 4855 + 4927 ], "__typename": [ - 78 + 80 ] }, - "tournament_trophy_configs_aggregate_order_by": { + "tournament_teams_aggregate_order_by": { "avg": [ - 4823 + 4895 ], "count": [ - 2829 + 2946 ], "max": [ - 4829 + 4901 ], "min": [ - 4831 + 4903 ], "stddev": [ - 4840 + 4912 ], "stddev_pop": [ - 4842 + 4914 ], "stddev_samp": [ - 4844 + 4916 ], "sum": [ - 4848 + 4920 ], "var_pop": [ - 4852 + 4924 ], "var_samp": [ - 4854 + 4926 ], "variance": [ - 4856 + 4928 ], "__typename": [ - 78 + 80 ] }, - "tournament_trophy_configs_arr_rel_insert_input": { + "tournament_teams_arr_rel_insert_input": { "data": [ - 4827 + 4899 ], "on_conflict": [ - 4834 + 4906 ], "__typename": [ - 78 + 80 ] }, - "tournament_trophy_configs_avg_fields": { - "placement": [ - 29 + "tournament_teams_avg_fields": { + "captain_steam_id": [ + 31 ], - "silhouette": [ - 29 + "owner_steam_id": [ + 31 + ], + "seed": [ + 31 ], "__typename": [ - 78 + 80 ] }, - "tournament_trophy_configs_avg_order_by": { - "placement": [ - 2829 + "tournament_teams_avg_order_by": { + "captain_steam_id": [ + 2946 ], - "silhouette": [ - 2829 + "owner_steam_id": [ + 2946 + ], + "seed": [ + 2946 ], "__typename": [ - 78 + 80 ] }, - "tournament_trophy_configs_bool_exp": { + "tournament_teams_bool_exp": { "_and": [ - 4824 + 4896 ], "_not": [ - 4824 + 4896 ], "_or": [ - 4824 + 4896 + ], + "can_manage": [ + 6 + ], + "captain": [ + 3908 + ], + "captain_steam_id": [ + 254 ], "created_at": [ - 4377 + 4494 ], - "custom_name": [ - 80 + "creator": [ + 3908 + ], + "eligible_at": [ + 4494 ], "id": [ - 4923 + 4995 ], - "image_url": [ - 80 + "invites": [ + 4814 ], - "placement": [ - 39 + "invites_aggregate": [ + 4807 ], - "silhouette": [ - 39 + "name": [ + 82 + ], + "owner_steam_id": [ + 254 + ], + "results": [ + 5736 + ], + "roster": [ + 4855 + ], + "roster_aggregate": [ + 4848 + ], + "seed": [ + 41 + ], + "short_name": [ + 82 + ], + "team": [ + 4457 + ], + "team_id": [ + 4995 ], "tournament": [ - 4878 + 4950 ], "tournament_id": [ - 4923 - ], - "updated_at": [ - 4377 + 4995 ], "__typename": [ - 78 + 80 ] }, - "tournament_trophy_configs_constraint": {}, - "tournament_trophy_configs_inc_input": { - "placement": [ - 38 + "tournament_teams_constraint": {}, + "tournament_teams_inc_input": { + "captain_steam_id": [ + 252 ], - "silhouette": [ - 38 + "owner_steam_id": [ + 252 + ], + "seed": [ + 40 ], "__typename": [ - 78 + 80 ] }, - "tournament_trophy_configs_insert_input": { + "tournament_teams_insert_input": { + "captain": [ + 3915 + ], + "captain_steam_id": [ + 252 + ], "created_at": [ - 4376 + 4493 ], - "custom_name": [ - 78 + "creator": [ + 3915 + ], + "eligible_at": [ + 4493 ], "id": [ - 4921 + 4993 ], - "image_url": [ - 78 + "invites": [ + 4811 ], - "placement": [ - 38 + "name": [ + 80 ], - "silhouette": [ - 38 + "owner_steam_id": [ + 252 + ], + "results": [ + 5745 + ], + "roster": [ + 4852 + ], + "seed": [ + 40 + ], + "short_name": [ + 80 + ], + "team": [ + 4466 + ], + "team_id": [ + 4993 ], "tournament": [ - 4887 + 4959 ], "tournament_id": [ - 4921 - ], - "updated_at": [ - 4376 + 4993 ], "__typename": [ - 78 + 80 ] }, - "tournament_trophy_configs_max_fields": { + "tournament_teams_max_fields": { + "captain_steam_id": [ + 252 + ], "created_at": [ - 4376 + 4493 ], - "custom_name": [ - 78 + "eligible_at": [ + 4493 ], "id": [ - 4921 + 4993 ], - "image_url": [ - 78 + "name": [ + 80 ], - "placement": [ - 38 + "owner_steam_id": [ + 252 ], - "silhouette": [ - 38 + "seed": [ + 40 ], - "tournament_id": [ - 4921 + "short_name": [ + 80 ], - "updated_at": [ - 4376 + "team_id": [ + 4993 + ], + "tournament_id": [ + 4993 ], "__typename": [ - 78 + 80 ] }, - "tournament_trophy_configs_max_order_by": { + "tournament_teams_max_order_by": { + "captain_steam_id": [ + 2946 + ], "created_at": [ - 2829 + 2946 ], - "custom_name": [ - 2829 + "eligible_at": [ + 2946 ], "id": [ - 2829 + 2946 ], - "image_url": [ - 2829 + "name": [ + 2946 ], - "placement": [ - 2829 + "owner_steam_id": [ + 2946 ], - "silhouette": [ - 2829 + "seed": [ + 2946 ], - "tournament_id": [ - 2829 + "short_name": [ + 2946 ], - "updated_at": [ - 2829 + "team_id": [ + 2946 + ], + "tournament_id": [ + 2946 ], "__typename": [ - 78 + 80 ] }, - "tournament_trophy_configs_min_fields": { + "tournament_teams_min_fields": { + "captain_steam_id": [ + 252 + ], "created_at": [ - 4376 + 4493 ], - "custom_name": [ - 78 + "eligible_at": [ + 4493 ], "id": [ - 4921 + 4993 ], - "image_url": [ - 78 + "name": [ + 80 ], - "placement": [ - 38 + "owner_steam_id": [ + 252 ], - "silhouette": [ - 38 + "seed": [ + 40 ], - "tournament_id": [ - 4921 + "short_name": [ + 80 ], - "updated_at": [ - 4376 + "team_id": [ + 4993 + ], + "tournament_id": [ + 4993 ], "__typename": [ - 78 + 80 ] }, - "tournament_trophy_configs_min_order_by": { + "tournament_teams_min_order_by": { + "captain_steam_id": [ + 2946 + ], "created_at": [ - 2829 + 2946 ], - "custom_name": [ - 2829 + "eligible_at": [ + 2946 ], "id": [ - 2829 + 2946 ], - "image_url": [ - 2829 + "name": [ + 2946 ], - "placement": [ - 2829 + "owner_steam_id": [ + 2946 ], - "silhouette": [ - 2829 + "seed": [ + 2946 ], - "tournament_id": [ - 2829 + "short_name": [ + 2946 ], - "updated_at": [ - 2829 + "team_id": [ + 2946 + ], + "tournament_id": [ + 2946 ], "__typename": [ - 78 + 80 ] }, - "tournament_trophy_configs_mutation_response": { + "tournament_teams_mutation_response": { "affected_rows": [ - 38 + 40 ], "returning": [ - 4815 + 4887 ], "__typename": [ - 78 + 80 ] }, - "tournament_trophy_configs_obj_rel_insert_input": { + "tournament_teams_obj_rel_insert_input": { "data": [ - 4827 + 4899 ], "on_conflict": [ - 4834 + 4906 ], "__typename": [ - 78 + 80 ] }, - "tournament_trophy_configs_on_conflict": { + "tournament_teams_on_conflict": { "constraint": [ - 4825 + 4897 ], "update_columns": [ - 4849 + 4921 ], "where": [ - 4824 + 4896 ], "__typename": [ - 78 + 80 ] }, - "tournament_trophy_configs_order_by": { + "tournament_teams_order_by": { + "can_manage": [ + 2946 + ], + "captain": [ + 3917 + ], + "captain_steam_id": [ + 2946 + ], "created_at": [ - 2829 + 2946 ], - "custom_name": [ - 2829 + "creator": [ + 3917 + ], + "eligible_at": [ + 2946 ], "id": [ - 2829 + 2946 ], - "image_url": [ - 2829 + "invites_aggregate": [ + 4810 ], - "placement": [ - 2829 + "name": [ + 2946 ], - "silhouette": [ - 2829 + "owner_steam_id": [ + 2946 + ], + "results": [ + 5747 + ], + "roster_aggregate": [ + 4851 + ], + "seed": [ + 2946 + ], + "short_name": [ + 2946 + ], + "team": [ + 4468 + ], + "team_id": [ + 2946 ], "tournament": [ - 4889 + 4961 ], "tournament_id": [ - 2829 - ], - "updated_at": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, - "tournament_trophy_configs_pk_columns_input": { + "tournament_teams_pk_columns_input": { "id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, - "tournament_trophy_configs_select_column": {}, - "tournament_trophy_configs_set_input": { + "tournament_teams_select_column": {}, + "tournament_teams_set_input": { + "captain_steam_id": [ + 252 + ], "created_at": [ - 4376 + 4493 ], - "custom_name": [ - 78 + "eligible_at": [ + 4493 ], "id": [ - 4921 + 4993 ], - "image_url": [ - 78 + "name": [ + 80 ], - "placement": [ - 38 + "owner_steam_id": [ + 252 ], - "silhouette": [ - 38 + "seed": [ + 40 ], - "tournament_id": [ - 4921 + "short_name": [ + 80 ], - "updated_at": [ - 4376 + "team_id": [ + 4993 + ], + "tournament_id": [ + 4993 ], "__typename": [ - 78 + 80 ] }, - "tournament_trophy_configs_stddev_fields": { - "placement": [ - 29 + "tournament_teams_stddev_fields": { + "captain_steam_id": [ + 31 ], - "silhouette": [ - 29 + "owner_steam_id": [ + 31 + ], + "seed": [ + 31 ], "__typename": [ - 78 + 80 ] }, - "tournament_trophy_configs_stddev_order_by": { - "placement": [ - 2829 + "tournament_teams_stddev_order_by": { + "captain_steam_id": [ + 2946 ], - "silhouette": [ - 2829 + "owner_steam_id": [ + 2946 + ], + "seed": [ + 2946 ], "__typename": [ - 78 + 80 ] }, - "tournament_trophy_configs_stddev_pop_fields": { - "placement": [ - 29 + "tournament_teams_stddev_pop_fields": { + "captain_steam_id": [ + 31 ], - "silhouette": [ - 29 + "owner_steam_id": [ + 31 + ], + "seed": [ + 31 ], "__typename": [ - 78 + 80 ] }, - "tournament_trophy_configs_stddev_pop_order_by": { - "placement": [ - 2829 + "tournament_teams_stddev_pop_order_by": { + "captain_steam_id": [ + 2946 ], - "silhouette": [ - 2829 + "owner_steam_id": [ + 2946 + ], + "seed": [ + 2946 ], "__typename": [ - 78 + 80 ] }, - "tournament_trophy_configs_stddev_samp_fields": { - "placement": [ - 29 + "tournament_teams_stddev_samp_fields": { + "captain_steam_id": [ + 31 ], - "silhouette": [ - 29 + "owner_steam_id": [ + 31 + ], + "seed": [ + 31 ], "__typename": [ - 78 + 80 ] }, - "tournament_trophy_configs_stddev_samp_order_by": { - "placement": [ - 2829 + "tournament_teams_stddev_samp_order_by": { + "captain_steam_id": [ + 2946 ], - "silhouette": [ - 2829 + "owner_steam_id": [ + 2946 + ], + "seed": [ + 2946 ], "__typename": [ - 78 + 80 ] }, - "tournament_trophy_configs_stream_cursor_input": { + "tournament_teams_stream_cursor_input": { "initial_value": [ - 4846 + 4918 ], "ordering": [ - 236 + 308 ], "__typename": [ - 78 + 80 ] }, - "tournament_trophy_configs_stream_cursor_value_input": { + "tournament_teams_stream_cursor_value_input": { + "captain_steam_id": [ + 252 + ], "created_at": [ - 4376 + 4493 ], - "custom_name": [ - 78 + "eligible_at": [ + 4493 ], "id": [ - 4921 + 4993 ], - "image_url": [ - 78 + "name": [ + 80 ], - "placement": [ - 38 + "owner_steam_id": [ + 252 ], - "silhouette": [ - 38 + "seed": [ + 40 ], - "tournament_id": [ - 4921 + "short_name": [ + 80 ], - "updated_at": [ - 4376 + "team_id": [ + 4993 + ], + "tournament_id": [ + 4993 ], "__typename": [ - 78 + 80 ] }, - "tournament_trophy_configs_sum_fields": { - "placement": [ - 38 + "tournament_teams_sum_fields": { + "captain_steam_id": [ + 252 ], - "silhouette": [ - 38 + "owner_steam_id": [ + 252 + ], + "seed": [ + 40 ], "__typename": [ - 78 + 80 ] }, - "tournament_trophy_configs_sum_order_by": { - "placement": [ - 2829 + "tournament_teams_sum_order_by": { + "captain_steam_id": [ + 2946 ], - "silhouette": [ - 2829 + "owner_steam_id": [ + 2946 + ], + "seed": [ + 2946 ], "__typename": [ - 78 + 80 ] }, - "tournament_trophy_configs_update_column": {}, - "tournament_trophy_configs_updates": { + "tournament_teams_update_column": {}, + "tournament_teams_updates": { "_inc": [ - 4826 + 4898 ], "_set": [ - 4838 + 4910 ], "where": [ - 4824 + 4896 ], "__typename": [ - 78 + 80 ] }, - "tournament_trophy_configs_var_pop_fields": { - "placement": [ - 29 + "tournament_teams_var_pop_fields": { + "captain_steam_id": [ + 31 ], - "silhouette": [ - 29 + "owner_steam_id": [ + 31 + ], + "seed": [ + 31 ], "__typename": [ - 78 + 80 ] }, - "tournament_trophy_configs_var_pop_order_by": { - "placement": [ - 2829 + "tournament_teams_var_pop_order_by": { + "captain_steam_id": [ + 2946 ], - "silhouette": [ - 2829 + "owner_steam_id": [ + 2946 + ], + "seed": [ + 2946 ], "__typename": [ - 78 + 80 ] }, - "tournament_trophy_configs_var_samp_fields": { - "placement": [ - 29 + "tournament_teams_var_samp_fields": { + "captain_steam_id": [ + 31 ], - "silhouette": [ - 29 + "owner_steam_id": [ + 31 + ], + "seed": [ + 31 ], "__typename": [ - 78 + 80 ] }, - "tournament_trophy_configs_var_samp_order_by": { - "placement": [ - 2829 + "tournament_teams_var_samp_order_by": { + "captain_steam_id": [ + 2946 ], - "silhouette": [ - 2829 + "owner_steam_id": [ + 2946 + ], + "seed": [ + 2946 ], "__typename": [ - 78 + 80 ] }, - "tournament_trophy_configs_variance_fields": { - "placement": [ - 29 + "tournament_teams_variance_fields": { + "captain_steam_id": [ + 31 ], - "silhouette": [ - 29 + "owner_steam_id": [ + 31 + ], + "seed": [ + 31 ], "__typename": [ - 78 + 80 ] }, - "tournament_trophy_configs_variance_order_by": { - "placement": [ - 2829 + "tournament_teams_variance_order_by": { + "captain_steam_id": [ + 2946 ], - "silhouette": [ - 2829 + "owner_steam_id": [ + 2946 + ], + "seed": [ + 2946 ], "__typename": [ - 78 + 80 ] }, "tournaments": { "admin": [ - 3787 + 3904 ], "auto_start": [ - 3 + 5 + ], + "award_configs": [ + 4495, + { + "distinct_on": [ + 4517, + "[tournament_awards_select_column!]" + ], + "limit": [ + 40 + ], + "offset": [ + 40 + ], + "order_by": [ + 4515, + "[tournament_awards_order_by!]" + ], + "where": [ + 4504 + ] + } + ], + "award_configs_aggregate": [ + 4496, + { + "distinct_on": [ + 4517, + "[tournament_awards_select_column!]" + ], + "limit": [ + 40 + ], + "offset": [ + 40 + ], + "order_by": [ + 4515, + "[tournament_awards_order_by!]" + ], + "where": [ + 4504 + ] + } + ], + "awards": [ + 183, + { + "distinct_on": [ + 204, + "[award_recipients_select_column!]" + ], + "limit": [ + 40 + ], + "offset": [ + 40 + ], + "order_by": [ + 202, + "[award_recipients_order_by!]" + ], + "where": [ + 192 + ] + } + ], + "awards_aggregate": [ + 184, + { + "distinct_on": [ + 204, + "[award_recipients_select_column!]" + ], + "limit": [ + 40 + ], + "offset": [ + 40 + ], + "order_by": [ + 202, + "[award_recipients_order_by!]" + ], + "where": [ + 192 + ] + } + ], + "awards_enabled": [ + 5 ], "banner": [ - 78 + 80 ], "can_cancel": [ - 3 + 5 ], "can_close_registration": [ - 3 + 5 ], "can_join": [ - 3 + 5 ], "can_open_registration": [ - 3 + 5 ], "can_pause": [ - 3 + 5 ], "can_resume": [ - 3 + 5 ], "can_setup": [ - 3 + 5 ], "can_start": [ - 3 + 5 ], "categories": [ - 4424, + 4583, { "distinct_on": [ - 4442, + 4601, "[tournament_categories_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 4440, + 4599, "[tournament_categories_order_by!]" ], "where": [ - 4431 + 4590 ] } ], "categories_aggregate": [ - 4425, + 4584, { "distinct_on": [ - 4442, + 4601, "[tournament_categories_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 4440, + 4599, "[tournament_categories_order_by!]" ], "where": [ - 4431 + 4590 ] } ], "created_at": [ - 4376 + 4493 ], "description": [ - 78 + 80 ], "discord_guild_id": [ - 78 + 80 ], "discord_notifications_enabled": [ - 3 + 5 ], "discord_notify_Canceled": [ - 3 + 5 ], "discord_notify_Finished": [ - 3 + 5 ], "discord_notify_Forfeit": [ - 3 + 5 ], "discord_notify_Live": [ - 3 + 5 ], "discord_notify_MapPaused": [ - 3 + 5 ], "discord_notify_PickingPlayers": [ - 3 + 5 ], "discord_notify_Scheduled": [ - 3 + 5 ], "discord_notify_Surrendered": [ - 3 + 5 ], "discord_notify_Tie": [ - 3 + 5 ], "discord_notify_Veto": [ - 3 + 5 ], "discord_notify_WaitingForCheckIn": [ - 3 + 5 ], "discord_notify_WaitingForServer": [ - 3 + 5 ], "discord_role_id": [ - 78 + 80 ], "discord_voice_enabled": [ - 3 + 5 ], "discord_webhook": [ - 78 + 80 ], "e_tournament_status": [ - 1207 + 1324 ], "has_min_teams": [ - 3 + 5 ], "homepage": [ - 78 + 80 ], "id": [ - 4921 + 4993 ], "is_league": [ - 3 + 5 ], "is_organizer": [ - 3 + 5 ], "joined_tournament": [ - 3 + 5 ], "latitude": [ - 1547 + 1664 ], "league_season_division": [ - 1878 + 1995 ], "location": [ - 78 + 80 ], "logo": [ - 78 + 80 ], "longitude": [ - 1547 + 1664 ], "match_options_id": [ - 4921 + 4993 ], "max_players_per_lineup": [ - 38 + 40 ], "min_players_per_lineup": [ - 38 + 40 ], "name": [ - 78 + 80 ], "options": [ - 2524 + 2641 ], "organizer_steam_id": [ - 180 + 252 ], "organizer_teams": [ - 4448, + 4607, { "distinct_on": [ - 4466, + 4625, "[tournament_organizer_teams_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 4464, + 4623, "[tournament_organizer_teams_order_by!]" ], "where": [ - 4455 + 4614 ] } ], "organizer_teams_aggregate": [ - 4449, + 4608, { "distinct_on": [ - 4466, + 4625, "[tournament_organizer_teams_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 4464, + 4623, "[tournament_organizer_teams_order_by!]" ], "where": [ - 4455 + 4614 ] } ], "organizers": [ - 4472, + 4631, { "distinct_on": [ - 4493, + 4652, "[tournament_organizers_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 4491, + 4650, "[tournament_organizers_order_by!]" ], "where": [ - 4481 + 4640 ] } ], "organizers_aggregate": [ - 4473, + 4632, { "distinct_on": [ - 4493, + 4652, "[tournament_organizers_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 4491, + 4650, "[tournament_organizers_order_by!]" ], "where": [ - 4481 + 4640 ] } ], "player_stats": [ - 5756, + 5828, { "distinct_on": [ - 5782, + 5854, "[v_tournament_player_stats_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 5781, + 5853, "[v_tournament_player_stats_order_by!]" ], "where": [ - 5775 + 5847 ] } ], "player_stats_aggregate": [ - 5757, + 5829, { "distinct_on": [ - 5782, + 5854, "[v_tournament_player_stats_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 5781, + 5853, "[v_tournament_player_stats_order_by!]" ], "where": [ - 5775 + 5847 ] } ], "prizes": [ - 4513, + 4672, { "distinct_on": [ - 4534, + 4693, "[tournament_prizes_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 4532, + 4691, "[tournament_prizes_order_by!]" ], "where": [ - 4522 + 4681 ] } ], "prizes_aggregate": [ - 4514, + 4673, { "distinct_on": [ - 4534, + 4693, "[tournament_prizes_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 4532, + 4691, "[tournament_prizes_order_by!]" ], "where": [ - 4522 + 4681 ] } ], "results": [ - 5705, + 5777, { "distinct_on": [ - 5731, + 5803, "[v_team_tournament_results_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 5730, + 5802, "[v_team_tournament_results_order_by!]" ], "where": [ - 5724 + 5796 ] } ], "results_aggregate": [ - 5706, + 5778, { "distinct_on": [ - 5731, + 5803, "[v_team_tournament_results_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 5730, + 5802, "[v_team_tournament_results_order_by!]" ], "where": [ - 5724 + 5796 ] } ], "rosters": [ - 4687, + 4846, { "distinct_on": [ - 4708, + 4867, "[tournament_team_roster_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 4706, + 4865, "[tournament_team_roster_order_by!]" ], "where": [ - 4696 + 4855 ] } ], "rosters_aggregate": [ - 4688, + 4847, { "distinct_on": [ - 4708, + 4867, "[tournament_team_roster_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 4706, + 4865, "[tournament_team_roster_order_by!]" ], "where": [ - 4696 + 4855 ] } ], "scheduling_mode": [ - 78 + 80 ], "stages": [ - 4595, + 4754, { "distinct_on": [ - 4624, + 4783, "[tournament_stages_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 4621, + 4780, "[tournament_stages_order_by!]" ], "where": [ - 4607 + 4766 ] } ], "stages_aggregate": [ - 4596, + 4755, { "distinct_on": [ - 4624, + 4783, "[tournament_stages_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 4621, + 4780, "[tournament_stages_order_by!]" ], "where": [ - 4607 + 4766 ] } ], "start": [ - 4376 + 4493 ], "status": [ - 1212 + 1329 ], "teams": [ - 4728, + 4887, { "distinct_on": [ - 4750, + 4909, "[tournament_teams_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 4748, + 4907, "[tournament_teams_order_by!]" ], "where": [ - 4737 + 4896 ] } ], "teams_aggregate": [ - 4729, + 4888, { "distinct_on": [ - 4750, + 4909, "[tournament_teams_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 4748, + 4907, "[tournament_teams_order_by!]" ], "where": [ - 4737 - ] - } - ], - "trophies": [ - 4770, - { - "distinct_on": [ - 4793, - "[tournament_trophies_select_column!]" - ], - "limit": [ - 38 - ], - "offset": [ - 38 - ], - "order_by": [ - 4791, - "[tournament_trophies_order_by!]" - ], - "where": [ - 4781 - ] - } - ], - "trophies_aggregate": [ - 4771, - { - "distinct_on": [ - 4793, - "[tournament_trophies_select_column!]" - ], - "limit": [ - 38 - ], - "offset": [ - 38 - ], - "order_by": [ - 4791, - "[tournament_trophies_order_by!]" - ], - "where": [ - 4781 - ] - } - ], - "trophies_enabled": [ - 3 - ], - "trophy_configs": [ - 4815, - { - "distinct_on": [ - 4837, - "[tournament_trophy_configs_select_column!]" - ], - "limit": [ - 38 - ], - "offset": [ - 38 - ], - "order_by": [ - 4835, - "[tournament_trophy_configs_order_by!]" - ], - "where": [ - 4824 - ] - } - ], - "trophy_configs_aggregate": [ - 4816, - { - "distinct_on": [ - 4837, - "[tournament_trophy_configs_select_column!]" - ], - "limit": [ - 38 - ], - "offset": [ - 38 - ], - "order_by": [ - 4835, - "[tournament_trophy_configs_order_by!]" - ], - "where": [ - 4824 + 4896 ] } ], "__typename": [ - 78 + 80 ] }, "tournaments_aggregate": { "aggregate": [ - 4873 + 4945 ], "nodes": [ - 4857 + 4929 ], "__typename": [ - 78 + 80 ] }, "tournaments_aggregate_bool_exp": { "avg": [ - 4860 + 4932 ], "bool_and": [ - 4861 + 4933 ], "bool_or": [ - 4862 + 4934 ], "corr": [ - 4863 + 4935 ], "count": [ - 4865 + 4937 ], "covar_samp": [ - 4866 + 4938 ], "max": [ - 4868 + 4940 ], "min": [ - 4869 + 4941 ], "stddev_samp": [ - 4870 + 4942 ], "sum": [ - 4871 + 4943 ], "var_samp": [ - 4872 + 4944 ], "__typename": [ - 78 + 80 ] }, "tournaments_aggregate_bool_exp_avg": { "arguments": [ - 4892 + 4964 ], "distinct": [ - 3 + 5 ], "filter": [ - 4878 + 4950 ], "predicate": [ - 1548 + 1665 ], "__typename": [ - 78 + 80 ] }, "tournaments_aggregate_bool_exp_bool_and": { "arguments": [ - 4893 + 4965 ], "distinct": [ - 3 + 5 ], "filter": [ - 4878 + 4950 ], "predicate": [ - 4 + 6 ], "__typename": [ - 78 + 80 ] }, "tournaments_aggregate_bool_exp_bool_or": { "arguments": [ - 4894 + 4966 ], "distinct": [ - 3 + 5 ], "filter": [ - 4878 + 4950 ], "predicate": [ - 4 + 6 ], "__typename": [ - 78 + 80 ] }, "tournaments_aggregate_bool_exp_corr": { "arguments": [ - 4864 + 4936 ], "distinct": [ - 3 + 5 ], "filter": [ - 4878 + 4950 ], "predicate": [ - 1548 + 1665 ], "__typename": [ - 78 + 80 ] }, "tournaments_aggregate_bool_exp_corr_arguments": { "X": [ - 4895 + 4967 ], "Y": [ - 4895 + 4967 ], "__typename": [ - 78 + 80 ] }, "tournaments_aggregate_bool_exp_count": { "arguments": [ - 4891 + 4963 ], "distinct": [ - 3 + 5 ], "filter": [ - 4878 + 4950 ], "predicate": [ - 39 + 41 ], "__typename": [ - 78 + 80 ] }, "tournaments_aggregate_bool_exp_covar_samp": { "arguments": [ - 4867 + 4939 ], "distinct": [ - 3 + 5 ], "filter": [ - 4878 + 4950 ], "predicate": [ - 1548 + 1665 ], "__typename": [ - 78 + 80 ] }, "tournaments_aggregate_bool_exp_covar_samp_arguments": { "X": [ - 4896 + 4968 ], "Y": [ - 4896 + 4968 ], "__typename": [ - 78 + 80 ] }, "tournaments_aggregate_bool_exp_max": { "arguments": [ - 4897 + 4969 ], "distinct": [ - 3 + 5 ], "filter": [ - 4878 + 4950 ], "predicate": [ - 1548 + 1665 ], "__typename": [ - 78 + 80 ] }, "tournaments_aggregate_bool_exp_min": { "arguments": [ - 4898 + 4970 ], "distinct": [ - 3 + 5 ], "filter": [ - 4878 + 4950 ], "predicate": [ - 1548 + 1665 ], "__typename": [ - 78 + 80 ] }, "tournaments_aggregate_bool_exp_stddev_samp": { "arguments": [ - 4899 + 4971 ], "distinct": [ - 3 + 5 ], "filter": [ - 4878 + 4950 ], "predicate": [ - 1548 + 1665 ], "__typename": [ - 78 + 80 ] }, "tournaments_aggregate_bool_exp_sum": { "arguments": [ - 4900 + 4972 ], "distinct": [ - 3 + 5 ], "filter": [ - 4878 + 4950 ], "predicate": [ - 1548 + 1665 ], "__typename": [ - 78 + 80 ] }, "tournaments_aggregate_bool_exp_var_samp": { "arguments": [ - 4901 + 4973 ], "distinct": [ - 3 + 5 ], "filter": [ - 4878 + 4950 ], "predicate": [ - 1548 + 1665 ], "__typename": [ - 78 + 80 ] }, "tournaments_aggregate_fields": { "avg": [ - 4876 + 4948 ], "count": [ - 38, + 40, { "columns": [ - 4891, + 4963, "[tournaments_select_column!]" ], "distinct": [ - 3 + 5 ] } ], "max": [ - 4882 + 4954 ], "min": [ - 4884 + 4956 ], "stddev": [ - 4903 + 4975 ], "stddev_pop": [ - 4905 + 4977 ], "stddev_samp": [ - 4907 + 4979 ], "sum": [ - 4911 + 4983 ], "var_pop": [ - 4915 + 4987 ], "var_samp": [ - 4917 + 4989 ], "variance": [ - 4919 + 4991 ], "__typename": [ - 78 + 80 ] }, "tournaments_aggregate_order_by": { "avg": [ - 4877 + 4949 ], "count": [ - 2829 + 2946 ], "max": [ - 4883 + 4955 ], "min": [ - 4885 + 4957 ], "stddev": [ - 4904 + 4976 ], "stddev_pop": [ - 4906 + 4978 ], "stddev_samp": [ - 4908 + 4980 ], "sum": [ - 4912 + 4984 ], "var_pop": [ - 4916 + 4988 ], "var_samp": [ - 4918 + 4990 ], "variance": [ - 4920 + 4992 ], "__typename": [ - 78 + 80 ] }, "tournaments_arr_rel_insert_input": { "data": [ - 4881 + 4953 ], "on_conflict": [ - 4888 + 4960 ], "__typename": [ - 78 + 80 ] }, "tournaments_avg_fields": { "latitude": [ - 29 + 31 ], "longitude": [ - 29 + 31 ], "max_players_per_lineup": [ - 38 + 40 ], "min_players_per_lineup": [ - 38 + 40 ], "organizer_steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "tournaments_avg_order_by": { "latitude": [ - 2829 + 2946 ], "longitude": [ - 2829 + 2946 ], "organizer_steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "tournaments_bool_exp": { "_and": [ - 4878 + 4950 ], "_not": [ - 4878 + 4950 ], "_or": [ - 4878 + 4950 ], "admin": [ - 3791 + 3908 ], "auto_start": [ - 4 + 6 + ], + "award_configs": [ + 4504 + ], + "award_configs_aggregate": [ + 4497 + ], + "awards": [ + 192 + ], + "awards_aggregate": [ + 185 + ], + "awards_enabled": [ + 6 ], "banner": [ - 80 + 82 ], "can_cancel": [ - 4 + 6 ], "can_close_registration": [ - 4 + 6 ], "can_join": [ - 4 + 6 ], "can_open_registration": [ - 4 + 6 ], "can_pause": [ - 4 + 6 ], "can_resume": [ - 4 + 6 ], "can_setup": [ - 4 + 6 ], "can_start": [ - 4 + 6 ], "categories": [ - 4431 + 4590 ], "categories_aggregate": [ - 4426 + 4585 ], "created_at": [ - 4377 + 4494 ], "description": [ - 80 + 82 ], "discord_guild_id": [ - 80 + 82 ], "discord_notifications_enabled": [ - 4 + 6 ], "discord_notify_Canceled": [ - 4 + 6 ], "discord_notify_Finished": [ - 4 + 6 ], "discord_notify_Forfeit": [ - 4 + 6 ], "discord_notify_Live": [ - 4 + 6 ], "discord_notify_MapPaused": [ - 4 + 6 ], "discord_notify_PickingPlayers": [ - 4 + 6 ], "discord_notify_Scheduled": [ - 4 + 6 ], "discord_notify_Surrendered": [ - 4 + 6 ], "discord_notify_Tie": [ - 4 + 6 ], "discord_notify_Veto": [ - 4 + 6 ], "discord_notify_WaitingForCheckIn": [ - 4 + 6 ], "discord_notify_WaitingForServer": [ - 4 + 6 ], "discord_role_id": [ - 80 + 82 ], "discord_voice_enabled": [ - 4 + 6 ], "discord_webhook": [ - 80 + 82 ], "e_tournament_status": [ - 1210 + 1327 ], "has_min_teams": [ - 4 + 6 ], "homepage": [ - 80 + 82 ], "id": [ - 4923 + 4995 ], "is_league": [ - 4 + 6 ], "is_organizer": [ - 4 + 6 ], "joined_tournament": [ - 4 + 6 ], "latitude": [ - 1548 + 1665 ], "league_season_division": [ - 1885 + 2002 ], "location": [ - 80 + 82 ], "logo": [ - 80 + 82 ], "longitude": [ - 1548 + 1665 ], "match_options_id": [ - 4923 + 4995 ], "max_players_per_lineup": [ - 39 + 41 ], "min_players_per_lineup": [ - 39 + 41 ], "name": [ - 80 + 82 ], "options": [ - 2528 + 2645 ], "organizer_steam_id": [ - 182 + 254 ], "organizer_teams": [ - 4455 + 4614 ], "organizer_teams_aggregate": [ - 4450 + 4609 ], "organizers": [ - 4481 + 4640 ], "organizers_aggregate": [ - 4474 + 4633 ], "player_stats": [ - 5775 + 5847 ], "player_stats_aggregate": [ - 5758 + 5830 ], "prizes": [ - 4522 + 4681 ], "prizes_aggregate": [ - 4515 + 4674 ], "results": [ - 5724 + 5796 ], "results_aggregate": [ - 5707 + 5779 ], "rosters": [ - 4696 + 4855 ], "rosters_aggregate": [ - 4689 + 4848 ], "scheduling_mode": [ - 80 + 82 ], "stages": [ - 4607 + 4766 ], "stages_aggregate": [ - 4597 + 4756 ], "start": [ - 4377 + 4494 ], "status": [ - 1213 + 1330 ], "teams": [ - 4737 + 4896 ], "teams_aggregate": [ - 4730 - ], - "trophies": [ - 4781 - ], - "trophies_aggregate": [ - 4772 - ], - "trophies_enabled": [ - 4 - ], - "trophy_configs": [ - 4824 - ], - "trophy_configs_aggregate": [ - 4817 + 4889 ], "__typename": [ - 78 + 80 ] }, "tournaments_constraint": {}, "tournaments_inc_input": { "latitude": [ - 1547 + 1664 ], "longitude": [ - 1547 + 1664 ], "organizer_steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "tournaments_insert_input": { "admin": [ - 3798 + 3915 ], "auto_start": [ - 3 + 5 + ], + "award_configs": [ + 4501 + ], + "awards": [ + 189 + ], + "awards_enabled": [ + 5 ], "banner": [ - 78 + 80 ], "categories": [ - 4430 + 4589 ], "created_at": [ - 4376 + 4493 ], "description": [ - 78 + 80 ], "discord_guild_id": [ - 78 + 80 ], "discord_notifications_enabled": [ - 3 + 5 ], "discord_notify_Canceled": [ - 3 + 5 ], "discord_notify_Finished": [ - 3 + 5 ], "discord_notify_Forfeit": [ - 3 + 5 ], "discord_notify_Live": [ - 3 + 5 ], "discord_notify_MapPaused": [ - 3 + 5 ], "discord_notify_PickingPlayers": [ - 3 + 5 ], "discord_notify_Scheduled": [ - 3 + 5 ], "discord_notify_Surrendered": [ - 3 + 5 ], "discord_notify_Tie": [ - 3 + 5 ], "discord_notify_Veto": [ - 3 + 5 ], "discord_notify_WaitingForCheckIn": [ - 3 + 5 ], "discord_notify_WaitingForServer": [ - 3 + 5 ], "discord_role_id": [ - 78 + 80 ], "discord_voice_enabled": [ - 3 + 5 ], "discord_webhook": [ - 78 + 80 ], "e_tournament_status": [ - 1218 + 1335 ], "homepage": [ - 78 + 80 ], "id": [ - 4921 + 4993 ], "is_league": [ - 3 + 5 ], "latitude": [ - 1547 + 1664 ], "league_season_division": [ - 1893 + 2010 ], "location": [ - 78 + 80 ], "logo": [ - 78 + 80 ], "longitude": [ - 1547 + 1664 ], "match_options_id": [ - 4921 + 4993 ], "name": [ - 78 + 80 ], "options": [ - 2535 + 2652 ], "organizer_steam_id": [ - 180 + 252 ], "organizer_teams": [ - 4454 + 4613 ], "organizers": [ - 4478 + 4637 ], "player_stats": [ - 5772 + 5844 ], "prizes": [ - 4519 + 4678 ], "results": [ - 5721 + 5793 ], "rosters": [ - 4693 + 4852 ], "scheduling_mode": [ - 78 + 80 ], "stages": [ - 4604 + 4763 ], "start": [ - 4376 + 4493 ], "status": [ - 1212 + 1329 ], "teams": [ - 4734 - ], - "trophies": [ - 4778 - ], - "trophies_enabled": [ - 3 - ], - "trophy_configs": [ - 4821 + 4893 ], "__typename": [ - 78 + 80 ] }, "tournaments_max_fields": { "banner": [ - 78 + 80 ], "created_at": [ - 4376 + 4493 ], "description": [ - 78 + 80 ], "discord_guild_id": [ - 78 + 80 ], "discord_role_id": [ - 78 + 80 ], "discord_webhook": [ - 78 + 80 ], "homepage": [ - 78 + 80 ], "id": [ - 4921 + 4993 ], "latitude": [ - 1547 + 1664 ], "location": [ - 78 + 80 ], "logo": [ - 78 + 80 ], "longitude": [ - 1547 + 1664 ], "match_options_id": [ - 4921 + 4993 ], "max_players_per_lineup": [ - 38 + 40 ], "min_players_per_lineup": [ - 38 + 40 ], "name": [ - 78 + 80 ], "organizer_steam_id": [ - 180 + 252 ], "scheduling_mode": [ - 78 + 80 ], "start": [ - 4376 + 4493 ], "__typename": [ - 78 + 80 ] }, "tournaments_max_order_by": { "banner": [ - 2829 + 2946 ], "created_at": [ - 2829 + 2946 ], "description": [ - 2829 + 2946 ], "discord_guild_id": [ - 2829 + 2946 ], "discord_role_id": [ - 2829 + 2946 ], "discord_webhook": [ - 2829 + 2946 ], "homepage": [ - 2829 + 2946 ], "id": [ - 2829 + 2946 ], "latitude": [ - 2829 + 2946 ], "location": [ - 2829 + 2946 ], "logo": [ - 2829 + 2946 ], "longitude": [ - 2829 + 2946 ], "match_options_id": [ - 2829 + 2946 ], "name": [ - 2829 + 2946 ], "organizer_steam_id": [ - 2829 + 2946 ], "scheduling_mode": [ - 2829 + 2946 ], "start": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "tournaments_min_fields": { "banner": [ - 78 + 80 ], "created_at": [ - 4376 + 4493 ], "description": [ - 78 + 80 ], "discord_guild_id": [ - 78 + 80 ], "discord_role_id": [ - 78 + 80 ], "discord_webhook": [ - 78 + 80 ], "homepage": [ - 78 + 80 ], "id": [ - 4921 + 4993 ], "latitude": [ - 1547 + 1664 ], "location": [ - 78 + 80 ], "logo": [ - 78 + 80 ], "longitude": [ - 1547 + 1664 ], "match_options_id": [ - 4921 + 4993 ], "max_players_per_lineup": [ - 38 + 40 ], "min_players_per_lineup": [ - 38 + 40 ], "name": [ - 78 + 80 ], "organizer_steam_id": [ - 180 + 252 ], "scheduling_mode": [ - 78 + 80 ], "start": [ - 4376 + 4493 ], "__typename": [ - 78 + 80 ] }, "tournaments_min_order_by": { "banner": [ - 2829 + 2946 ], "created_at": [ - 2829 + 2946 ], "description": [ - 2829 + 2946 ], "discord_guild_id": [ - 2829 + 2946 ], "discord_role_id": [ - 2829 + 2946 ], "discord_webhook": [ - 2829 + 2946 ], "homepage": [ - 2829 + 2946 ], "id": [ - 2829 + 2946 ], "latitude": [ - 2829 + 2946 ], "location": [ - 2829 + 2946 ], "logo": [ - 2829 + 2946 ], "longitude": [ - 2829 + 2946 ], "match_options_id": [ - 2829 + 2946 ], "name": [ - 2829 + 2946 ], "organizer_steam_id": [ - 2829 + 2946 ], "scheduling_mode": [ - 2829 + 2946 ], "start": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "tournaments_mutation_response": { "affected_rows": [ - 38 + 40 ], "returning": [ - 4857 + 4929 ], "__typename": [ - 78 + 80 ] }, "tournaments_obj_rel_insert_input": { "data": [ - 4881 + 4953 ], "on_conflict": [ - 4888 + 4960 ], "__typename": [ - 78 + 80 ] }, "tournaments_on_conflict": { "constraint": [ - 4879 + 4951 ], "update_columns": [ - 4913 + 4985 ], "where": [ - 4878 + 4950 ], "__typename": [ - 78 + 80 ] }, "tournaments_order_by": { "admin": [ - 3800 + 3917 ], "auto_start": [ - 2829 + 2946 + ], + "award_configs_aggregate": [ + 4500 + ], + "awards_aggregate": [ + 188 + ], + "awards_enabled": [ + 2946 ], "banner": [ - 2829 + 2946 ], "can_cancel": [ - 2829 + 2946 ], "can_close_registration": [ - 2829 + 2946 ], "can_join": [ - 2829 + 2946 ], "can_open_registration": [ - 2829 + 2946 ], "can_pause": [ - 2829 + 2946 ], "can_resume": [ - 2829 + 2946 ], "can_setup": [ - 2829 + 2946 ], "can_start": [ - 2829 + 2946 ], "categories_aggregate": [ - 4429 + 4588 ], "created_at": [ - 2829 + 2946 ], "description": [ - 2829 + 2946 ], "discord_guild_id": [ - 2829 + 2946 ], "discord_notifications_enabled": [ - 2829 + 2946 ], "discord_notify_Canceled": [ - 2829 + 2946 ], "discord_notify_Finished": [ - 2829 + 2946 ], "discord_notify_Forfeit": [ - 2829 + 2946 ], "discord_notify_Live": [ - 2829 + 2946 ], "discord_notify_MapPaused": [ - 2829 + 2946 ], "discord_notify_PickingPlayers": [ - 2829 + 2946 ], "discord_notify_Scheduled": [ - 2829 + 2946 ], "discord_notify_Surrendered": [ - 2829 + 2946 ], "discord_notify_Tie": [ - 2829 + 2946 ], "discord_notify_Veto": [ - 2829 + 2946 ], "discord_notify_WaitingForCheckIn": [ - 2829 + 2946 ], "discord_notify_WaitingForServer": [ - 2829 + 2946 ], "discord_role_id": [ - 2829 + 2946 ], "discord_voice_enabled": [ - 2829 + 2946 ], "discord_webhook": [ - 2829 + 2946 ], "e_tournament_status": [ - 1220 + 1337 ], "has_min_teams": [ - 2829 + 2946 ], "homepage": [ - 2829 + 2946 ], "id": [ - 2829 + 2946 ], "is_league": [ - 2829 + 2946 ], "is_organizer": [ - 2829 + 2946 ], "joined_tournament": [ - 2829 + 2946 ], "latitude": [ - 2829 + 2946 ], "league_season_division": [ - 1895 + 2012 ], "location": [ - 2829 + 2946 ], "logo": [ - 2829 + 2946 ], "longitude": [ - 2829 + 2946 ], "match_options_id": [ - 2829 + 2946 ], "max_players_per_lineup": [ - 2829 + 2946 ], "min_players_per_lineup": [ - 2829 + 2946 ], "name": [ - 2829 + 2946 ], "options": [ - 2537 + 2654 ], "organizer_steam_id": [ - 2829 + 2946 ], "organizer_teams_aggregate": [ - 4453 + 4612 ], "organizers_aggregate": [ - 4477 + 4636 ], "player_stats_aggregate": [ - 5771 + 5843 ], "prizes_aggregate": [ - 4518 + 4677 ], "results_aggregate": [ - 5720 + 5792 ], "rosters_aggregate": [ - 4692 + 4851 ], "scheduling_mode": [ - 2829 + 2946 ], "stages_aggregate": [ - 4602 + 4761 ], "start": [ - 2829 + 2946 ], "status": [ - 2829 + 2946 ], "teams_aggregate": [ - 4733 - ], - "trophies_aggregate": [ - 4777 - ], - "trophies_enabled": [ - 2829 - ], - "trophy_configs_aggregate": [ - 4820 + 4892 ], "__typename": [ - 78 + 80 ] }, "tournaments_pk_columns_input": { "id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "tournaments_select_column": {}, @@ -110613,1215 +112145,1215 @@ export default { "tournaments_select_column_tournaments_aggregate_bool_exp_var_samp_arguments_columns": {}, "tournaments_set_input": { "auto_start": [ - 3 + 5 + ], + "awards_enabled": [ + 5 ], "banner": [ - 78 + 80 ], "created_at": [ - 4376 + 4493 ], "description": [ - 78 + 80 ], "discord_guild_id": [ - 78 + 80 ], "discord_notifications_enabled": [ - 3 + 5 ], "discord_notify_Canceled": [ - 3 + 5 ], "discord_notify_Finished": [ - 3 + 5 ], "discord_notify_Forfeit": [ - 3 + 5 ], "discord_notify_Live": [ - 3 + 5 ], "discord_notify_MapPaused": [ - 3 + 5 ], "discord_notify_PickingPlayers": [ - 3 + 5 ], "discord_notify_Scheduled": [ - 3 + 5 ], "discord_notify_Surrendered": [ - 3 + 5 ], "discord_notify_Tie": [ - 3 + 5 ], "discord_notify_Veto": [ - 3 + 5 ], "discord_notify_WaitingForCheckIn": [ - 3 + 5 ], "discord_notify_WaitingForServer": [ - 3 + 5 ], "discord_role_id": [ - 78 + 80 ], "discord_voice_enabled": [ - 3 + 5 ], "discord_webhook": [ - 78 + 80 ], "homepage": [ - 78 + 80 ], "id": [ - 4921 + 4993 ], "is_league": [ - 3 + 5 ], "latitude": [ - 1547 + 1664 ], "location": [ - 78 + 80 ], "logo": [ - 78 + 80 ], "longitude": [ - 1547 + 1664 ], "match_options_id": [ - 4921 + 4993 ], "name": [ - 78 + 80 ], "organizer_steam_id": [ - 180 + 252 ], "scheduling_mode": [ - 78 + 80 ], "start": [ - 4376 + 4493 ], "status": [ - 1212 - ], - "trophies_enabled": [ - 3 + 1329 ], "__typename": [ - 78 + 80 ] }, "tournaments_stddev_fields": { "latitude": [ - 29 + 31 ], "longitude": [ - 29 + 31 ], "max_players_per_lineup": [ - 38 + 40 ], "min_players_per_lineup": [ - 38 + 40 ], "organizer_steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "tournaments_stddev_order_by": { "latitude": [ - 2829 + 2946 ], "longitude": [ - 2829 + 2946 ], "organizer_steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "tournaments_stddev_pop_fields": { "latitude": [ - 29 + 31 ], "longitude": [ - 29 + 31 ], "max_players_per_lineup": [ - 38 + 40 ], "min_players_per_lineup": [ - 38 + 40 ], "organizer_steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "tournaments_stddev_pop_order_by": { "latitude": [ - 2829 + 2946 ], "longitude": [ - 2829 + 2946 ], "organizer_steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "tournaments_stddev_samp_fields": { "latitude": [ - 29 + 31 ], "longitude": [ - 29 + 31 ], "max_players_per_lineup": [ - 38 + 40 ], "min_players_per_lineup": [ - 38 + 40 ], "organizer_steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "tournaments_stddev_samp_order_by": { "latitude": [ - 2829 + 2946 ], "longitude": [ - 2829 + 2946 ], "organizer_steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "tournaments_stream_cursor_input": { "initial_value": [ - 4910 + 4982 ], "ordering": [ - 236 + 308 ], "__typename": [ - 78 + 80 ] }, "tournaments_stream_cursor_value_input": { "auto_start": [ - 3 + 5 + ], + "awards_enabled": [ + 5 ], "banner": [ - 78 + 80 ], "created_at": [ - 4376 + 4493 ], "description": [ - 78 + 80 ], "discord_guild_id": [ - 78 + 80 ], "discord_notifications_enabled": [ - 3 + 5 ], "discord_notify_Canceled": [ - 3 + 5 ], "discord_notify_Finished": [ - 3 + 5 ], "discord_notify_Forfeit": [ - 3 + 5 ], "discord_notify_Live": [ - 3 + 5 ], "discord_notify_MapPaused": [ - 3 + 5 ], "discord_notify_PickingPlayers": [ - 3 + 5 ], "discord_notify_Scheduled": [ - 3 + 5 ], "discord_notify_Surrendered": [ - 3 + 5 ], "discord_notify_Tie": [ - 3 + 5 ], "discord_notify_Veto": [ - 3 + 5 ], "discord_notify_WaitingForCheckIn": [ - 3 + 5 ], "discord_notify_WaitingForServer": [ - 3 + 5 ], "discord_role_id": [ - 78 + 80 ], "discord_voice_enabled": [ - 3 + 5 ], "discord_webhook": [ - 78 + 80 ], "homepage": [ - 78 + 80 ], "id": [ - 4921 + 4993 ], "is_league": [ - 3 + 5 ], "latitude": [ - 1547 + 1664 ], "location": [ - 78 + 80 ], "logo": [ - 78 + 80 ], "longitude": [ - 1547 + 1664 ], "match_options_id": [ - 4921 + 4993 ], "name": [ - 78 + 80 ], "organizer_steam_id": [ - 180 + 252 ], "scheduling_mode": [ - 78 + 80 ], "start": [ - 4376 + 4493 ], "status": [ - 1212 - ], - "trophies_enabled": [ - 3 + 1329 ], "__typename": [ - 78 + 80 ] }, "tournaments_sum_fields": { "latitude": [ - 1547 + 1664 ], "longitude": [ - 1547 + 1664 ], "max_players_per_lineup": [ - 38 + 40 ], "min_players_per_lineup": [ - 38 + 40 ], "organizer_steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "tournaments_sum_order_by": { "latitude": [ - 2829 + 2946 ], "longitude": [ - 2829 + 2946 ], "organizer_steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "tournaments_update_column": {}, "tournaments_updates": { "_inc": [ - 4880 + 4952 ], "_set": [ - 4902 + 4974 ], "where": [ - 4878 + 4950 ], "__typename": [ - 78 + 80 ] }, "tournaments_var_pop_fields": { "latitude": [ - 29 + 31 ], "longitude": [ - 29 + 31 ], "max_players_per_lineup": [ - 38 + 40 ], "min_players_per_lineup": [ - 38 + 40 ], "organizer_steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "tournaments_var_pop_order_by": { "latitude": [ - 2829 + 2946 ], "longitude": [ - 2829 + 2946 ], "organizer_steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "tournaments_var_samp_fields": { "latitude": [ - 29 + 31 ], "longitude": [ - 29 + 31 ], "max_players_per_lineup": [ - 38 + 40 ], "min_players_per_lineup": [ - 38 + 40 ], "organizer_steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "tournaments_var_samp_order_by": { "latitude": [ - 2829 + 2946 ], "longitude": [ - 2829 + 2946 ], "organizer_steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "tournaments_variance_fields": { "latitude": [ - 29 + 31 ], "longitude": [ - 29 + 31 ], "max_players_per_lineup": [ - 38 + 40 ], "min_players_per_lineup": [ - 38 + 40 ], "organizer_steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "tournaments_variance_order_by": { "latitude": [ - 2829 + 2946 ], "longitude": [ - 2829 + 2946 ], "organizer_steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "uuid": {}, "uuid_array_comparison_exp": { "_contained_in": [ - 4921 + 4993 ], "_contains": [ - 4921 + 4993 ], "_eq": [ - 4921 + 4993 ], "_gt": [ - 4921 + 4993 ], "_gte": [ - 4921 + 4993 ], "_in": [ - 4921 + 4993 ], "_is_null": [ - 3 + 5 ], "_lt": [ - 4921 + 4993 ], "_lte": [ - 4921 + 4993 ], "_neq": [ - 4921 + 4993 ], "_nin": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "uuid_comparison_exp": { "_eq": [ - 4921 + 4993 ], "_gt": [ - 4921 + 4993 ], "_gte": [ - 4921 + 4993 ], "_in": [ - 4921 + 4993 ], "_is_null": [ - 3 + 5 ], "_lt": [ - 4921 + 4993 ], "_lte": [ - 4921 + 4993 ], "_neq": [ - 4921 + 4993 ], "_nin": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "v_event_player_stats": { "assists": [ - 38 + 40 ], "deaths": [ - 38 + 40 ], "event": [ - 1519 + 1636 ], "event_id": [ - 4921 + 4993 ], "headshot_percentage": [ - 1547 + 1664 ], "headshots": [ - 38 + 40 ], "kdr": [ - 1547 + 1664 ], "kills": [ - 38 + 40 ], "matches_played": [ - 38 + 40 ], "player": [ - 3787 + 3904 ], "player_steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "v_event_player_stats_aggregate": { "aggregate": [ - 4938 + 5010 ], "nodes": [ - 4924 + 4996 ], "__typename": [ - 78 + 80 ] }, "v_event_player_stats_aggregate_bool_exp": { "avg": [ - 4927 + 4999 ], "corr": [ - 4928 + 5000 ], "count": [ - 4930 + 5002 ], "covar_samp": [ - 4931 + 5003 ], "max": [ - 4933 + 5005 ], "min": [ - 4934 + 5006 ], "stddev_samp": [ - 4935 + 5007 ], "sum": [ - 4936 + 5008 ], "var_samp": [ - 4937 + 5009 ], "__typename": [ - 78 + 80 ] }, "v_event_player_stats_aggregate_bool_exp_avg": { "arguments": [ - 4951 + 5023 ], "distinct": [ - 3 + 5 ], "filter": [ - 4943 + 5015 ], "predicate": [ - 1548 + 1665 ], "__typename": [ - 78 + 80 ] }, "v_event_player_stats_aggregate_bool_exp_corr": { "arguments": [ - 4929 + 5001 ], "distinct": [ - 3 + 5 ], "filter": [ - 4943 + 5015 ], "predicate": [ - 1548 + 1665 ], "__typename": [ - 78 + 80 ] }, "v_event_player_stats_aggregate_bool_exp_corr_arguments": { "X": [ - 4952 + 5024 ], "Y": [ - 4952 + 5024 ], "__typename": [ - 78 + 80 ] }, "v_event_player_stats_aggregate_bool_exp_count": { "arguments": [ - 4950 + 5022 ], "distinct": [ - 3 + 5 ], "filter": [ - 4943 + 5015 ], "predicate": [ - 39 + 41 ], "__typename": [ - 78 + 80 ] }, "v_event_player_stats_aggregate_bool_exp_covar_samp": { "arguments": [ - 4932 + 5004 ], "distinct": [ - 3 + 5 ], "filter": [ - 4943 + 5015 ], "predicate": [ - 1548 + 1665 ], "__typename": [ - 78 + 80 ] }, "v_event_player_stats_aggregate_bool_exp_covar_samp_arguments": { "X": [ - 4953 + 5025 ], "Y": [ - 4953 + 5025 ], "__typename": [ - 78 + 80 ] }, "v_event_player_stats_aggregate_bool_exp_max": { "arguments": [ - 4954 + 5026 ], "distinct": [ - 3 + 5 ], "filter": [ - 4943 + 5015 ], "predicate": [ - 1548 + 1665 ], "__typename": [ - 78 + 80 ] }, "v_event_player_stats_aggregate_bool_exp_min": { "arguments": [ - 4955 + 5027 ], "distinct": [ - 3 + 5 ], "filter": [ - 4943 + 5015 ], "predicate": [ - 1548 + 1665 ], "__typename": [ - 78 + 80 ] }, "v_event_player_stats_aggregate_bool_exp_stddev_samp": { "arguments": [ - 4956 + 5028 ], "distinct": [ - 3 + 5 ], "filter": [ - 4943 + 5015 ], "predicate": [ - 1548 + 1665 ], "__typename": [ - 78 + 80 ] }, "v_event_player_stats_aggregate_bool_exp_sum": { "arguments": [ - 4957 + 5029 ], "distinct": [ - 3 + 5 ], "filter": [ - 4943 + 5015 ], "predicate": [ - 1548 + 1665 ], "__typename": [ - 78 + 80 ] }, "v_event_player_stats_aggregate_bool_exp_var_samp": { "arguments": [ - 4958 + 5030 ], "distinct": [ - 3 + 5 ], "filter": [ - 4943 + 5015 ], "predicate": [ - 1548 + 1665 ], "__typename": [ - 78 + 80 ] }, "v_event_player_stats_aggregate_fields": { "avg": [ - 4941 + 5013 ], "count": [ - 38, + 40, { "columns": [ - 4950, + 5022, "[v_event_player_stats_select_column!]" ], "distinct": [ - 3 + 5 ] } ], "max": [ - 4945 + 5017 ], "min": [ - 4947 + 5019 ], "stddev": [ - 4959 + 5031 ], "stddev_pop": [ - 4961 + 5033 ], "stddev_samp": [ - 4963 + 5035 ], "sum": [ - 4967 + 5039 ], "var_pop": [ - 4969 + 5041 ], "var_samp": [ - 4971 + 5043 ], "variance": [ - 4973 + 5045 ], "__typename": [ - 78 + 80 ] }, "v_event_player_stats_aggregate_order_by": { "avg": [ - 4942 + 5014 ], "count": [ - 2829 + 2946 ], "max": [ - 4946 + 5018 ], "min": [ - 4948 + 5020 ], "stddev": [ - 4960 + 5032 ], "stddev_pop": [ - 4962 + 5034 ], "stddev_samp": [ - 4964 + 5036 ], "sum": [ - 4968 + 5040 ], "var_pop": [ - 4970 + 5042 ], "var_samp": [ - 4972 + 5044 ], "variance": [ - 4974 + 5046 ], "__typename": [ - 78 + 80 ] }, "v_event_player_stats_arr_rel_insert_input": { "data": [ - 4944 + 5016 ], "__typename": [ - 78 + 80 ] }, "v_event_player_stats_avg_fields": { "assists": [ - 29 + 31 ], "deaths": [ - 29 + 31 ], "headshot_percentage": [ - 29 + 31 ], "headshots": [ - 29 + 31 ], "kdr": [ - 29 + 31 ], "kills": [ - 29 + 31 ], "matches_played": [ - 29 + 31 ], "player_steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_event_player_stats_avg_order_by": { "assists": [ - 2829 + 2946 ], "deaths": [ - 2829 + 2946 ], "headshot_percentage": [ - 2829 + 2946 ], "headshots": [ - 2829 + 2946 ], "kdr": [ - 2829 + 2946 ], "kills": [ - 2829 + 2946 ], "matches_played": [ - 2829 + 2946 ], "player_steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "v_event_player_stats_bool_exp": { "_and": [ - 4943 + 5015 ], "_not": [ - 4943 + 5015 ], "_or": [ - 4943 + 5015 ], "assists": [ - 39 + 41 ], "deaths": [ - 39 + 41 ], "event": [ - 1523 + 1640 ], "event_id": [ - 4923 + 4995 ], "headshot_percentage": [ - 1548 + 1665 ], "headshots": [ - 39 + 41 ], "kdr": [ - 1548 + 1665 ], "kills": [ - 39 + 41 ], "matches_played": [ - 39 + 41 ], "player": [ - 3791 + 3908 ], "player_steam_id": [ - 182 + 254 ], "__typename": [ - 78 + 80 ] }, "v_event_player_stats_insert_input": { "assists": [ - 38 + 40 ], "deaths": [ - 38 + 40 ], "event": [ - 1530 + 1647 ], "event_id": [ - 4921 + 4993 ], "headshot_percentage": [ - 1547 + 1664 ], "headshots": [ - 38 + 40 ], "kdr": [ - 1547 + 1664 ], "kills": [ - 38 + 40 ], "matches_played": [ - 38 + 40 ], "player": [ - 3798 + 3915 ], "player_steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "v_event_player_stats_max_fields": { "assists": [ - 38 + 40 ], "deaths": [ - 38 + 40 ], "event_id": [ - 4921 + 4993 ], "headshot_percentage": [ - 1547 + 1664 ], "headshots": [ - 38 + 40 ], "kdr": [ - 1547 + 1664 ], "kills": [ - 38 + 40 ], "matches_played": [ - 38 + 40 ], "player_steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "v_event_player_stats_max_order_by": { "assists": [ - 2829 + 2946 ], "deaths": [ - 2829 + 2946 ], "event_id": [ - 2829 + 2946 ], "headshot_percentage": [ - 2829 + 2946 ], "headshots": [ - 2829 + 2946 ], "kdr": [ - 2829 + 2946 ], "kills": [ - 2829 + 2946 ], "matches_played": [ - 2829 + 2946 ], "player_steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "v_event_player_stats_min_fields": { "assists": [ - 38 + 40 ], "deaths": [ - 38 + 40 ], "event_id": [ - 4921 + 4993 ], "headshot_percentage": [ - 1547 + 1664 ], "headshots": [ - 38 + 40 ], "kdr": [ - 1547 + 1664 ], "kills": [ - 38 + 40 ], "matches_played": [ - 38 + 40 ], "player_steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "v_event_player_stats_min_order_by": { "assists": [ - 2829 + 2946 ], "deaths": [ - 2829 + 2946 ], "event_id": [ - 2829 + 2946 ], "headshot_percentage": [ - 2829 + 2946 ], "headshots": [ - 2829 + 2946 ], "kdr": [ - 2829 + 2946 ], "kills": [ - 2829 + 2946 ], "matches_played": [ - 2829 + 2946 ], "player_steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "v_event_player_stats_order_by": { "assists": [ - 2829 + 2946 ], "deaths": [ - 2829 + 2946 ], "event": [ - 1532 + 1649 ], "event_id": [ - 2829 + 2946 ], "headshot_percentage": [ - 2829 + 2946 ], "headshots": [ - 2829 + 2946 ], "kdr": [ - 2829 + 2946 ], "kills": [ - 2829 + 2946 ], "matches_played": [ - 2829 + 2946 ], "player": [ - 3800 + 3917 ], "player_steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "v_event_player_stats_select_column": {}, @@ -111835,3195 +113367,3195 @@ export default { "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 + 31 ], "deaths": [ - 29 + 31 ], "headshot_percentage": [ - 29 + 31 ], "headshots": [ - 29 + 31 ], "kdr": [ - 29 + 31 ], "kills": [ - 29 + 31 ], "matches_played": [ - 29 + 31 ], "player_steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_event_player_stats_stddev_order_by": { "assists": [ - 2829 + 2946 ], "deaths": [ - 2829 + 2946 ], "headshot_percentage": [ - 2829 + 2946 ], "headshots": [ - 2829 + 2946 ], "kdr": [ - 2829 + 2946 ], "kills": [ - 2829 + 2946 ], "matches_played": [ - 2829 + 2946 ], "player_steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "v_event_player_stats_stddev_pop_fields": { "assists": [ - 29 + 31 ], "deaths": [ - 29 + 31 ], "headshot_percentage": [ - 29 + 31 ], "headshots": [ - 29 + 31 ], "kdr": [ - 29 + 31 ], "kills": [ - 29 + 31 ], "matches_played": [ - 29 + 31 ], "player_steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_event_player_stats_stddev_pop_order_by": { "assists": [ - 2829 + 2946 ], "deaths": [ - 2829 + 2946 ], "headshot_percentage": [ - 2829 + 2946 ], "headshots": [ - 2829 + 2946 ], "kdr": [ - 2829 + 2946 ], "kills": [ - 2829 + 2946 ], "matches_played": [ - 2829 + 2946 ], "player_steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "v_event_player_stats_stddev_samp_fields": { "assists": [ - 29 + 31 ], "deaths": [ - 29 + 31 ], "headshot_percentage": [ - 29 + 31 ], "headshots": [ - 29 + 31 ], "kdr": [ - 29 + 31 ], "kills": [ - 29 + 31 ], "matches_played": [ - 29 + 31 ], "player_steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_event_player_stats_stddev_samp_order_by": { "assists": [ - 2829 + 2946 ], "deaths": [ - 2829 + 2946 ], "headshot_percentage": [ - 2829 + 2946 ], "headshots": [ - 2829 + 2946 ], "kdr": [ - 2829 + 2946 ], "kills": [ - 2829 + 2946 ], "matches_played": [ - 2829 + 2946 ], "player_steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "v_event_player_stats_stream_cursor_input": { "initial_value": [ - 4966 + 5038 ], "ordering": [ - 236 + 308 ], "__typename": [ - 78 + 80 ] }, "v_event_player_stats_stream_cursor_value_input": { "assists": [ - 38 + 40 ], "deaths": [ - 38 + 40 ], "event_id": [ - 4921 + 4993 ], "headshot_percentage": [ - 1547 + 1664 ], "headshots": [ - 38 + 40 ], "kdr": [ - 1547 + 1664 ], "kills": [ - 38 + 40 ], "matches_played": [ - 38 + 40 ], "player_steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "v_event_player_stats_sum_fields": { "assists": [ - 38 + 40 ], "deaths": [ - 38 + 40 ], "headshot_percentage": [ - 1547 + 1664 ], "headshots": [ - 38 + 40 ], "kdr": [ - 1547 + 1664 ], "kills": [ - 38 + 40 ], "matches_played": [ - 38 + 40 ], "player_steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "v_event_player_stats_sum_order_by": { "assists": [ - 2829 + 2946 ], "deaths": [ - 2829 + 2946 ], "headshot_percentage": [ - 2829 + 2946 ], "headshots": [ - 2829 + 2946 ], "kdr": [ - 2829 + 2946 ], "kills": [ - 2829 + 2946 ], "matches_played": [ - 2829 + 2946 ], "player_steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "v_event_player_stats_var_pop_fields": { "assists": [ - 29 + 31 ], "deaths": [ - 29 + 31 ], "headshot_percentage": [ - 29 + 31 ], "headshots": [ - 29 + 31 ], "kdr": [ - 29 + 31 ], "kills": [ - 29 + 31 ], "matches_played": [ - 29 + 31 ], "player_steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_event_player_stats_var_pop_order_by": { "assists": [ - 2829 + 2946 ], "deaths": [ - 2829 + 2946 ], "headshot_percentage": [ - 2829 + 2946 ], "headshots": [ - 2829 + 2946 ], "kdr": [ - 2829 + 2946 ], "kills": [ - 2829 + 2946 ], "matches_played": [ - 2829 + 2946 ], "player_steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "v_event_player_stats_var_samp_fields": { "assists": [ - 29 + 31 ], "deaths": [ - 29 + 31 ], "headshot_percentage": [ - 29 + 31 ], "headshots": [ - 29 + 31 ], "kdr": [ - 29 + 31 ], "kills": [ - 29 + 31 ], "matches_played": [ - 29 + 31 ], "player_steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_event_player_stats_var_samp_order_by": { "assists": [ - 2829 + 2946 ], "deaths": [ - 2829 + 2946 ], "headshot_percentage": [ - 2829 + 2946 ], "headshots": [ - 2829 + 2946 ], "kdr": [ - 2829 + 2946 ], "kills": [ - 2829 + 2946 ], "matches_played": [ - 2829 + 2946 ], "player_steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "v_event_player_stats_variance_fields": { "assists": [ - 29 + 31 ], "deaths": [ - 29 + 31 ], "headshot_percentage": [ - 29 + 31 ], "headshots": [ - 29 + 31 ], "kdr": [ - 29 + 31 ], "kills": [ - 29 + 31 ], "matches_played": [ - 29 + 31 ], "player_steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_event_player_stats_variance_order_by": { "assists": [ - 2829 + 2946 ], "deaths": [ - 2829 + 2946 ], "headshot_percentage": [ - 2829 + 2946 ], "headshots": [ - 2829 + 2946 ], "kdr": [ - 2829 + 2946 ], "kills": [ - 2829 + 2946 ], "matches_played": [ - 2829 + 2946 ], "player_steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "v_gpu_pool_status": { "demo_free_gpu_nodes": [ - 38 + 40 ], "demo_in_progress": [ - 3 + 5 ], "demo_total_gpu_nodes": [ - 38 + 40 ], "free_gpu_nodes": [ - 38 + 40 ], "free_gpu_nodes_for_batch": [ - 38 + 40 ], "highlights_in_progress": [ - 3 + 5 ], "id": [ - 38 + 40 ], "live_in_progress": [ - 3 + 5 ], "registered_gpu_nodes": [ - 38 + 40 ], "rendering_total_gpu_nodes": [ - 38 + 40 ], "renders_paused_for_active_match": [ - 3 + 5 ], "streaming_free_gpu_nodes": [ - 38 + 40 ], "streaming_total_gpu_nodes": [ - 38 + 40 ], "total_gpu_nodes": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "v_gpu_pool_status_aggregate": { "aggregate": [ - 4977 + 5049 ], "nodes": [ - 4975 + 5047 ], "__typename": [ - 78 + 80 ] }, "v_gpu_pool_status_aggregate_fields": { "avg": [ - 4978 + 5050 ], "count": [ - 38, + 40, { "columns": [ - 4983, + 5055, "[v_gpu_pool_status_select_column!]" ], "distinct": [ - 3 + 5 ] } ], "max": [ - 4980 + 5052 ], "min": [ - 4981 + 5053 ], "stddev": [ - 4984 + 5056 ], "stddev_pop": [ - 4985 + 5057 ], "stddev_samp": [ - 4986 + 5058 ], "sum": [ - 4989 + 5061 ], "var_pop": [ - 4990 + 5062 ], "var_samp": [ - 4991 + 5063 ], "variance": [ - 4992 + 5064 ], "__typename": [ - 78 + 80 ] }, "v_gpu_pool_status_avg_fields": { "demo_free_gpu_nodes": [ - 29 + 31 ], "demo_total_gpu_nodes": [ - 29 + 31 ], "free_gpu_nodes": [ - 29 + 31 ], "free_gpu_nodes_for_batch": [ - 29 + 31 ], "id": [ - 29 + 31 ], "registered_gpu_nodes": [ - 29 + 31 ], "rendering_total_gpu_nodes": [ - 29 + 31 ], "streaming_free_gpu_nodes": [ - 29 + 31 ], "streaming_total_gpu_nodes": [ - 29 + 31 ], "total_gpu_nodes": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_gpu_pool_status_bool_exp": { "_and": [ - 4979 + 5051 ], "_not": [ - 4979 + 5051 ], "_or": [ - 4979 + 5051 ], "demo_free_gpu_nodes": [ - 39 + 41 ], "demo_in_progress": [ - 4 + 6 ], "demo_total_gpu_nodes": [ - 39 + 41 ], "free_gpu_nodes": [ - 39 + 41 ], "free_gpu_nodes_for_batch": [ - 39 + 41 ], "highlights_in_progress": [ - 4 + 6 ], "id": [ - 39 + 41 ], "live_in_progress": [ - 4 + 6 ], "registered_gpu_nodes": [ - 39 + 41 ], "rendering_total_gpu_nodes": [ - 39 + 41 ], "renders_paused_for_active_match": [ - 4 + 6 ], "streaming_free_gpu_nodes": [ - 39 + 41 ], "streaming_total_gpu_nodes": [ - 39 + 41 ], "total_gpu_nodes": [ - 39 + 41 ], "__typename": [ - 78 + 80 ] }, "v_gpu_pool_status_max_fields": { "demo_free_gpu_nodes": [ - 38 + 40 ], "demo_total_gpu_nodes": [ - 38 + 40 ], "free_gpu_nodes": [ - 38 + 40 ], "free_gpu_nodes_for_batch": [ - 38 + 40 ], "id": [ - 38 + 40 ], "registered_gpu_nodes": [ - 38 + 40 ], "rendering_total_gpu_nodes": [ - 38 + 40 ], "streaming_free_gpu_nodes": [ - 38 + 40 ], "streaming_total_gpu_nodes": [ - 38 + 40 ], "total_gpu_nodes": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "v_gpu_pool_status_min_fields": { "demo_free_gpu_nodes": [ - 38 + 40 ], "demo_total_gpu_nodes": [ - 38 + 40 ], "free_gpu_nodes": [ - 38 + 40 ], "free_gpu_nodes_for_batch": [ - 38 + 40 ], "id": [ - 38 + 40 ], "registered_gpu_nodes": [ - 38 + 40 ], "rendering_total_gpu_nodes": [ - 38 + 40 ], "streaming_free_gpu_nodes": [ - 38 + 40 ], "streaming_total_gpu_nodes": [ - 38 + 40 ], "total_gpu_nodes": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "v_gpu_pool_status_order_by": { "demo_free_gpu_nodes": [ - 2829 + 2946 ], "demo_in_progress": [ - 2829 + 2946 ], "demo_total_gpu_nodes": [ - 2829 + 2946 ], "free_gpu_nodes": [ - 2829 + 2946 ], "free_gpu_nodes_for_batch": [ - 2829 + 2946 ], "highlights_in_progress": [ - 2829 + 2946 ], "id": [ - 2829 + 2946 ], "live_in_progress": [ - 2829 + 2946 ], "registered_gpu_nodes": [ - 2829 + 2946 ], "rendering_total_gpu_nodes": [ - 2829 + 2946 ], "renders_paused_for_active_match": [ - 2829 + 2946 ], "streaming_free_gpu_nodes": [ - 2829 + 2946 ], "streaming_total_gpu_nodes": [ - 2829 + 2946 ], "total_gpu_nodes": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "v_gpu_pool_status_select_column": {}, "v_gpu_pool_status_stddev_fields": { "demo_free_gpu_nodes": [ - 29 + 31 ], "demo_total_gpu_nodes": [ - 29 + 31 ], "free_gpu_nodes": [ - 29 + 31 ], "free_gpu_nodes_for_batch": [ - 29 + 31 ], "id": [ - 29 + 31 ], "registered_gpu_nodes": [ - 29 + 31 ], "rendering_total_gpu_nodes": [ - 29 + 31 ], "streaming_free_gpu_nodes": [ - 29 + 31 ], "streaming_total_gpu_nodes": [ - 29 + 31 ], "total_gpu_nodes": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_gpu_pool_status_stddev_pop_fields": { "demo_free_gpu_nodes": [ - 29 + 31 ], "demo_total_gpu_nodes": [ - 29 + 31 ], "free_gpu_nodes": [ - 29 + 31 ], "free_gpu_nodes_for_batch": [ - 29 + 31 ], "id": [ - 29 + 31 ], "registered_gpu_nodes": [ - 29 + 31 ], "rendering_total_gpu_nodes": [ - 29 + 31 ], "streaming_free_gpu_nodes": [ - 29 + 31 ], "streaming_total_gpu_nodes": [ - 29 + 31 ], "total_gpu_nodes": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_gpu_pool_status_stddev_samp_fields": { "demo_free_gpu_nodes": [ - 29 + 31 ], "demo_total_gpu_nodes": [ - 29 + 31 ], "free_gpu_nodes": [ - 29 + 31 ], "free_gpu_nodes_for_batch": [ - 29 + 31 ], "id": [ - 29 + 31 ], "registered_gpu_nodes": [ - 29 + 31 ], "rendering_total_gpu_nodes": [ - 29 + 31 ], "streaming_free_gpu_nodes": [ - 29 + 31 ], "streaming_total_gpu_nodes": [ - 29 + 31 ], "total_gpu_nodes": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_gpu_pool_status_stream_cursor_input": { "initial_value": [ - 4988 + 5060 ], "ordering": [ - 236 + 308 ], "__typename": [ - 78 + 80 ] }, "v_gpu_pool_status_stream_cursor_value_input": { "demo_free_gpu_nodes": [ - 38 + 40 ], "demo_in_progress": [ - 3 + 5 ], "demo_total_gpu_nodes": [ - 38 + 40 ], "free_gpu_nodes": [ - 38 + 40 ], "free_gpu_nodes_for_batch": [ - 38 + 40 ], "highlights_in_progress": [ - 3 + 5 ], "id": [ - 38 + 40 ], "live_in_progress": [ - 3 + 5 ], "registered_gpu_nodes": [ - 38 + 40 ], "rendering_total_gpu_nodes": [ - 38 + 40 ], "renders_paused_for_active_match": [ - 3 + 5 ], "streaming_free_gpu_nodes": [ - 38 + 40 ], "streaming_total_gpu_nodes": [ - 38 + 40 ], "total_gpu_nodes": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "v_gpu_pool_status_sum_fields": { "demo_free_gpu_nodes": [ - 38 + 40 ], "demo_total_gpu_nodes": [ - 38 + 40 ], "free_gpu_nodes": [ - 38 + 40 ], "free_gpu_nodes_for_batch": [ - 38 + 40 ], "id": [ - 38 + 40 ], "registered_gpu_nodes": [ - 38 + 40 ], "rendering_total_gpu_nodes": [ - 38 + 40 ], "streaming_free_gpu_nodes": [ - 38 + 40 ], "streaming_total_gpu_nodes": [ - 38 + 40 ], "total_gpu_nodes": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "v_gpu_pool_status_var_pop_fields": { "demo_free_gpu_nodes": [ - 29 + 31 ], "demo_total_gpu_nodes": [ - 29 + 31 ], "free_gpu_nodes": [ - 29 + 31 ], "free_gpu_nodes_for_batch": [ - 29 + 31 ], "id": [ - 29 + 31 ], "registered_gpu_nodes": [ - 29 + 31 ], "rendering_total_gpu_nodes": [ - 29 + 31 ], "streaming_free_gpu_nodes": [ - 29 + 31 ], "streaming_total_gpu_nodes": [ - 29 + 31 ], "total_gpu_nodes": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_gpu_pool_status_var_samp_fields": { "demo_free_gpu_nodes": [ - 29 + 31 ], "demo_total_gpu_nodes": [ - 29 + 31 ], "free_gpu_nodes": [ - 29 + 31 ], "free_gpu_nodes_for_batch": [ - 29 + 31 ], "id": [ - 29 + 31 ], "registered_gpu_nodes": [ - 29 + 31 ], "rendering_total_gpu_nodes": [ - 29 + 31 ], "streaming_free_gpu_nodes": [ - 29 + 31 ], "streaming_total_gpu_nodes": [ - 29 + 31 ], "total_gpu_nodes": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_gpu_pool_status_variance_fields": { "demo_free_gpu_nodes": [ - 29 + 31 ], "demo_total_gpu_nodes": [ - 29 + 31 ], "free_gpu_nodes": [ - 29 + 31 ], "free_gpu_nodes_for_batch": [ - 29 + 31 ], "id": [ - 29 + 31 ], "registered_gpu_nodes": [ - 29 + 31 ], "rendering_total_gpu_nodes": [ - 29 + 31 ], "streaming_free_gpu_nodes": [ - 29 + 31 ], "streaming_total_gpu_nodes": [ - 29 + 31 ], "total_gpu_nodes": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_league_division_standings": { "head_to_head_match_wins": [ - 38 + 40 ], "head_to_head_rounds_won": [ - 38 + 40 ], "league_division_id": [ - 4921 + 4993 ], "league_season_division_id": [ - 4921 + 4993 ], "league_season_id": [ - 4921 + 4993 ], "league_team": [ - 2060 + 2177 ], "league_team_id": [ - 4921 + 4993 ], "league_team_season_id": [ - 4921 + 4993 ], "losses": [ - 38 + 40 ], "maps_lost": [ - 38 + 40 ], "maps_won": [ - 38 + 40 ], "matches_played": [ - 38 + 40 ], "matches_remaining": [ - 38 + 40 ], "rank": [ - 38 + 40 ], "round_diff": [ - 38 + 40 ], "rounds_lost": [ - 38 + 40 ], "rounds_won": [ - 38 + 40 ], "season_division": [ - 1878 + 1995 ], "team_season": [ - 2018 + 2135 ], "tournament_team_id": [ - 4921 + 4993 ], "wins": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "v_league_division_standings_aggregate": { "aggregate": [ - 4997 + 5069 ], "nodes": [ - 4993 + 5065 ], "__typename": [ - 78 + 80 ] }, "v_league_division_standings_aggregate_bool_exp": { "count": [ - 4996 + 5068 ], "__typename": [ - 78 + 80 ] }, "v_league_division_standings_aggregate_bool_exp_count": { "arguments": [ - 5009 + 5081 ], "distinct": [ - 3 + 5 ], "filter": [ - 5002 + 5074 ], "predicate": [ - 39 + 41 ], "__typename": [ - 78 + 80 ] }, "v_league_division_standings_aggregate_fields": { "avg": [ - 5000 + 5072 ], "count": [ - 38, + 40, { "columns": [ - 5009, + 5081, "[v_league_division_standings_select_column!]" ], "distinct": [ - 3 + 5 ] } ], "max": [ - 5004 + 5076 ], "min": [ - 5006 + 5078 ], "stddev": [ - 5010 + 5082 ], "stddev_pop": [ - 5012 + 5084 ], "stddev_samp": [ - 5014 + 5086 ], "sum": [ - 5018 + 5090 ], "var_pop": [ - 5020 + 5092 ], "var_samp": [ - 5022 + 5094 ], "variance": [ - 5024 + 5096 ], "__typename": [ - 78 + 80 ] }, "v_league_division_standings_aggregate_order_by": { "avg": [ - 5001 + 5073 ], "count": [ - 2829 + 2946 ], "max": [ - 5005 + 5077 ], "min": [ - 5007 + 5079 ], "stddev": [ - 5011 + 5083 ], "stddev_pop": [ - 5013 + 5085 ], "stddev_samp": [ - 5015 + 5087 ], "sum": [ - 5019 + 5091 ], "var_pop": [ - 5021 + 5093 ], "var_samp": [ - 5023 + 5095 ], "variance": [ - 5025 + 5097 ], "__typename": [ - 78 + 80 ] }, "v_league_division_standings_arr_rel_insert_input": { "data": [ - 5003 + 5075 ], "__typename": [ - 78 + 80 ] }, "v_league_division_standings_avg_fields": { "head_to_head_match_wins": [ - 29 + 31 ], "head_to_head_rounds_won": [ - 29 + 31 ], "losses": [ - 29 + 31 ], "maps_lost": [ - 29 + 31 ], "maps_won": [ - 29 + 31 ], "matches_played": [ - 29 + 31 ], "matches_remaining": [ - 29 + 31 ], "rank": [ - 29 + 31 ], "round_diff": [ - 29 + 31 ], "rounds_lost": [ - 29 + 31 ], "rounds_won": [ - 29 + 31 ], "wins": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_league_division_standings_avg_order_by": { "head_to_head_match_wins": [ - 2829 + 2946 ], "head_to_head_rounds_won": [ - 2829 + 2946 ], "losses": [ - 2829 + 2946 ], "maps_lost": [ - 2829 + 2946 ], "maps_won": [ - 2829 + 2946 ], "matches_played": [ - 2829 + 2946 ], "matches_remaining": [ - 2829 + 2946 ], "rank": [ - 2829 + 2946 ], "round_diff": [ - 2829 + 2946 ], "rounds_lost": [ - 2829 + 2946 ], "rounds_won": [ - 2829 + 2946 ], "wins": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "v_league_division_standings_bool_exp": { "_and": [ - 5002 + 5074 ], "_not": [ - 5002 + 5074 ], "_or": [ - 5002 + 5074 ], "head_to_head_match_wins": [ - 39 + 41 ], "head_to_head_rounds_won": [ - 39 + 41 ], "league_division_id": [ - 4923 + 4995 ], "league_season_division_id": [ - 4923 + 4995 ], "league_season_id": [ - 4923 + 4995 ], "league_team": [ - 2063 + 2180 ], "league_team_id": [ - 4923 + 4995 ], "league_team_season_id": [ - 4923 + 4995 ], "losses": [ - 39 + 41 ], "maps_lost": [ - 39 + 41 ], "maps_won": [ - 39 + 41 ], "matches_played": [ - 39 + 41 ], "matches_remaining": [ - 39 + 41 ], "rank": [ - 39 + 41 ], "round_diff": [ - 39 + 41 ], "rounds_lost": [ - 39 + 41 ], "rounds_won": [ - 39 + 41 ], "season_division": [ - 1885 + 2002 ], "team_season": [ - 2027 + 2144 ], "tournament_team_id": [ - 4923 + 4995 ], "wins": [ - 39 + 41 ], "__typename": [ - 78 + 80 ] }, "v_league_division_standings_insert_input": { "head_to_head_match_wins": [ - 38 + 40 ], "head_to_head_rounds_won": [ - 38 + 40 ], "league_division_id": [ - 4921 + 4993 ], "league_season_division_id": [ - 4921 + 4993 ], "league_season_id": [ - 4921 + 4993 ], "league_team": [ - 2069 + 2186 ], "league_team_id": [ - 4921 + 4993 ], "league_team_season_id": [ - 4921 + 4993 ], "losses": [ - 38 + 40 ], "maps_lost": [ - 38 + 40 ], "maps_won": [ - 38 + 40 ], "matches_played": [ - 38 + 40 ], "matches_remaining": [ - 38 + 40 ], "rank": [ - 38 + 40 ], "round_diff": [ - 38 + 40 ], "rounds_lost": [ - 38 + 40 ], "rounds_won": [ - 38 + 40 ], "season_division": [ - 1893 + 2010 ], "team_season": [ - 2036 + 2153 ], "tournament_team_id": [ - 4921 + 4993 ], "wins": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "v_league_division_standings_max_fields": { "head_to_head_match_wins": [ - 38 + 40 ], "head_to_head_rounds_won": [ - 38 + 40 ], "league_division_id": [ - 4921 + 4993 ], "league_season_division_id": [ - 4921 + 4993 ], "league_season_id": [ - 4921 + 4993 ], "league_team_id": [ - 4921 + 4993 ], "league_team_season_id": [ - 4921 + 4993 ], "losses": [ - 38 + 40 ], "maps_lost": [ - 38 + 40 ], "maps_won": [ - 38 + 40 ], "matches_played": [ - 38 + 40 ], "matches_remaining": [ - 38 + 40 ], "rank": [ - 38 + 40 ], "round_diff": [ - 38 + 40 ], "rounds_lost": [ - 38 + 40 ], "rounds_won": [ - 38 + 40 ], "tournament_team_id": [ - 4921 + 4993 ], "wins": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "v_league_division_standings_max_order_by": { "head_to_head_match_wins": [ - 2829 + 2946 ], "head_to_head_rounds_won": [ - 2829 + 2946 ], "league_division_id": [ - 2829 + 2946 ], "league_season_division_id": [ - 2829 + 2946 ], "league_season_id": [ - 2829 + 2946 ], "league_team_id": [ - 2829 + 2946 ], "league_team_season_id": [ - 2829 + 2946 ], "losses": [ - 2829 + 2946 ], "maps_lost": [ - 2829 + 2946 ], "maps_won": [ - 2829 + 2946 ], "matches_played": [ - 2829 + 2946 ], "matches_remaining": [ - 2829 + 2946 ], "rank": [ - 2829 + 2946 ], "round_diff": [ - 2829 + 2946 ], "rounds_lost": [ - 2829 + 2946 ], "rounds_won": [ - 2829 + 2946 ], "tournament_team_id": [ - 2829 + 2946 ], "wins": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "v_league_division_standings_min_fields": { "head_to_head_match_wins": [ - 38 + 40 ], "head_to_head_rounds_won": [ - 38 + 40 ], "league_division_id": [ - 4921 + 4993 ], "league_season_division_id": [ - 4921 + 4993 ], "league_season_id": [ - 4921 + 4993 ], "league_team_id": [ - 4921 + 4993 ], "league_team_season_id": [ - 4921 + 4993 ], "losses": [ - 38 + 40 ], "maps_lost": [ - 38 + 40 ], "maps_won": [ - 38 + 40 ], "matches_played": [ - 38 + 40 ], "matches_remaining": [ - 38 + 40 ], "rank": [ - 38 + 40 ], "round_diff": [ - 38 + 40 ], "rounds_lost": [ - 38 + 40 ], "rounds_won": [ - 38 + 40 ], "tournament_team_id": [ - 4921 + 4993 ], "wins": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "v_league_division_standings_min_order_by": { "head_to_head_match_wins": [ - 2829 + 2946 ], "head_to_head_rounds_won": [ - 2829 + 2946 ], "league_division_id": [ - 2829 + 2946 ], "league_season_division_id": [ - 2829 + 2946 ], "league_season_id": [ - 2829 + 2946 ], "league_team_id": [ - 2829 + 2946 ], "league_team_season_id": [ - 2829 + 2946 ], "losses": [ - 2829 + 2946 ], "maps_lost": [ - 2829 + 2946 ], "maps_won": [ - 2829 + 2946 ], "matches_played": [ - 2829 + 2946 ], "matches_remaining": [ - 2829 + 2946 ], "rank": [ - 2829 + 2946 ], "round_diff": [ - 2829 + 2946 ], "rounds_lost": [ - 2829 + 2946 ], "rounds_won": [ - 2829 + 2946 ], "tournament_team_id": [ - 2829 + 2946 ], "wins": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "v_league_division_standings_order_by": { "head_to_head_match_wins": [ - 2829 + 2946 ], "head_to_head_rounds_won": [ - 2829 + 2946 ], "league_division_id": [ - 2829 + 2946 ], "league_season_division_id": [ - 2829 + 2946 ], "league_season_id": [ - 2829 + 2946 ], "league_team": [ - 2071 + 2188 ], "league_team_id": [ - 2829 + 2946 ], "league_team_season_id": [ - 2829 + 2946 ], "losses": [ - 2829 + 2946 ], "maps_lost": [ - 2829 + 2946 ], "maps_won": [ - 2829 + 2946 ], "matches_played": [ - 2829 + 2946 ], "matches_remaining": [ - 2829 + 2946 ], "rank": [ - 2829 + 2946 ], "round_diff": [ - 2829 + 2946 ], "rounds_lost": [ - 2829 + 2946 ], "rounds_won": [ - 2829 + 2946 ], "season_division": [ - 1895 + 2012 ], "team_season": [ - 2038 + 2155 ], "tournament_team_id": [ - 2829 + 2946 ], "wins": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "v_league_division_standings_select_column": {}, "v_league_division_standings_stddev_fields": { "head_to_head_match_wins": [ - 29 + 31 ], "head_to_head_rounds_won": [ - 29 + 31 ], "losses": [ - 29 + 31 ], "maps_lost": [ - 29 + 31 ], "maps_won": [ - 29 + 31 ], "matches_played": [ - 29 + 31 ], "matches_remaining": [ - 29 + 31 ], "rank": [ - 29 + 31 ], "round_diff": [ - 29 + 31 ], "rounds_lost": [ - 29 + 31 ], "rounds_won": [ - 29 + 31 ], "wins": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_league_division_standings_stddev_order_by": { "head_to_head_match_wins": [ - 2829 + 2946 ], "head_to_head_rounds_won": [ - 2829 + 2946 ], "losses": [ - 2829 + 2946 ], "maps_lost": [ - 2829 + 2946 ], "maps_won": [ - 2829 + 2946 ], "matches_played": [ - 2829 + 2946 ], "matches_remaining": [ - 2829 + 2946 ], "rank": [ - 2829 + 2946 ], "round_diff": [ - 2829 + 2946 ], "rounds_lost": [ - 2829 + 2946 ], "rounds_won": [ - 2829 + 2946 ], "wins": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "v_league_division_standings_stddev_pop_fields": { "head_to_head_match_wins": [ - 29 + 31 ], "head_to_head_rounds_won": [ - 29 + 31 ], "losses": [ - 29 + 31 ], "maps_lost": [ - 29 + 31 ], "maps_won": [ - 29 + 31 ], "matches_played": [ - 29 + 31 ], "matches_remaining": [ - 29 + 31 ], "rank": [ - 29 + 31 ], "round_diff": [ - 29 + 31 ], "rounds_lost": [ - 29 + 31 ], "rounds_won": [ - 29 + 31 ], "wins": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_league_division_standings_stddev_pop_order_by": { "head_to_head_match_wins": [ - 2829 + 2946 ], "head_to_head_rounds_won": [ - 2829 + 2946 ], "losses": [ - 2829 + 2946 ], "maps_lost": [ - 2829 + 2946 ], "maps_won": [ - 2829 + 2946 ], "matches_played": [ - 2829 + 2946 ], "matches_remaining": [ - 2829 + 2946 ], "rank": [ - 2829 + 2946 ], "round_diff": [ - 2829 + 2946 ], "rounds_lost": [ - 2829 + 2946 ], "rounds_won": [ - 2829 + 2946 ], "wins": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "v_league_division_standings_stddev_samp_fields": { "head_to_head_match_wins": [ - 29 + 31 ], "head_to_head_rounds_won": [ - 29 + 31 ], "losses": [ - 29 + 31 ], "maps_lost": [ - 29 + 31 ], "maps_won": [ - 29 + 31 ], "matches_played": [ - 29 + 31 ], "matches_remaining": [ - 29 + 31 ], "rank": [ - 29 + 31 ], "round_diff": [ - 29 + 31 ], "rounds_lost": [ - 29 + 31 ], "rounds_won": [ - 29 + 31 ], "wins": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_league_division_standings_stddev_samp_order_by": { "head_to_head_match_wins": [ - 2829 + 2946 ], "head_to_head_rounds_won": [ - 2829 + 2946 ], "losses": [ - 2829 + 2946 ], "maps_lost": [ - 2829 + 2946 ], "maps_won": [ - 2829 + 2946 ], "matches_played": [ - 2829 + 2946 ], "matches_remaining": [ - 2829 + 2946 ], "rank": [ - 2829 + 2946 ], "round_diff": [ - 2829 + 2946 ], "rounds_lost": [ - 2829 + 2946 ], "rounds_won": [ - 2829 + 2946 ], "wins": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "v_league_division_standings_stream_cursor_input": { "initial_value": [ - 5017 + 5089 ], "ordering": [ - 236 + 308 ], "__typename": [ - 78 + 80 ] }, "v_league_division_standings_stream_cursor_value_input": { "head_to_head_match_wins": [ - 38 + 40 ], "head_to_head_rounds_won": [ - 38 + 40 ], "league_division_id": [ - 4921 + 4993 ], "league_season_division_id": [ - 4921 + 4993 ], "league_season_id": [ - 4921 + 4993 ], "league_team_id": [ - 4921 + 4993 ], "league_team_season_id": [ - 4921 + 4993 ], "losses": [ - 38 + 40 ], "maps_lost": [ - 38 + 40 ], "maps_won": [ - 38 + 40 ], "matches_played": [ - 38 + 40 ], "matches_remaining": [ - 38 + 40 ], "rank": [ - 38 + 40 ], "round_diff": [ - 38 + 40 ], "rounds_lost": [ - 38 + 40 ], "rounds_won": [ - 38 + 40 ], "tournament_team_id": [ - 4921 + 4993 ], "wins": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "v_league_division_standings_sum_fields": { "head_to_head_match_wins": [ - 38 + 40 ], "head_to_head_rounds_won": [ - 38 + 40 ], "losses": [ - 38 + 40 ], "maps_lost": [ - 38 + 40 ], "maps_won": [ - 38 + 40 ], "matches_played": [ - 38 + 40 ], "matches_remaining": [ - 38 + 40 ], "rank": [ - 38 + 40 ], "round_diff": [ - 38 + 40 ], "rounds_lost": [ - 38 + 40 ], "rounds_won": [ - 38 + 40 ], "wins": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "v_league_division_standings_sum_order_by": { "head_to_head_match_wins": [ - 2829 + 2946 ], "head_to_head_rounds_won": [ - 2829 + 2946 ], "losses": [ - 2829 + 2946 ], "maps_lost": [ - 2829 + 2946 ], "maps_won": [ - 2829 + 2946 ], "matches_played": [ - 2829 + 2946 ], "matches_remaining": [ - 2829 + 2946 ], "rank": [ - 2829 + 2946 ], "round_diff": [ - 2829 + 2946 ], "rounds_lost": [ - 2829 + 2946 ], "rounds_won": [ - 2829 + 2946 ], "wins": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "v_league_division_standings_var_pop_fields": { "head_to_head_match_wins": [ - 29 + 31 ], "head_to_head_rounds_won": [ - 29 + 31 ], "losses": [ - 29 + 31 ], "maps_lost": [ - 29 + 31 ], "maps_won": [ - 29 + 31 ], "matches_played": [ - 29 + 31 ], "matches_remaining": [ - 29 + 31 ], "rank": [ - 29 + 31 ], "round_diff": [ - 29 + 31 ], "rounds_lost": [ - 29 + 31 ], "rounds_won": [ - 29 + 31 ], "wins": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_league_division_standings_var_pop_order_by": { "head_to_head_match_wins": [ - 2829 + 2946 ], "head_to_head_rounds_won": [ - 2829 + 2946 ], "losses": [ - 2829 + 2946 ], "maps_lost": [ - 2829 + 2946 ], "maps_won": [ - 2829 + 2946 ], "matches_played": [ - 2829 + 2946 ], "matches_remaining": [ - 2829 + 2946 ], "rank": [ - 2829 + 2946 ], "round_diff": [ - 2829 + 2946 ], "rounds_lost": [ - 2829 + 2946 ], "rounds_won": [ - 2829 + 2946 ], "wins": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "v_league_division_standings_var_samp_fields": { "head_to_head_match_wins": [ - 29 + 31 ], "head_to_head_rounds_won": [ - 29 + 31 ], "losses": [ - 29 + 31 ], "maps_lost": [ - 29 + 31 ], "maps_won": [ - 29 + 31 ], "matches_played": [ - 29 + 31 ], "matches_remaining": [ - 29 + 31 ], "rank": [ - 29 + 31 ], "round_diff": [ - 29 + 31 ], "rounds_lost": [ - 29 + 31 ], "rounds_won": [ - 29 + 31 ], "wins": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_league_division_standings_var_samp_order_by": { "head_to_head_match_wins": [ - 2829 + 2946 ], "head_to_head_rounds_won": [ - 2829 + 2946 ], "losses": [ - 2829 + 2946 ], "maps_lost": [ - 2829 + 2946 ], "maps_won": [ - 2829 + 2946 ], "matches_played": [ - 2829 + 2946 ], "matches_remaining": [ - 2829 + 2946 ], "rank": [ - 2829 + 2946 ], "round_diff": [ - 2829 + 2946 ], "rounds_lost": [ - 2829 + 2946 ], "rounds_won": [ - 2829 + 2946 ], "wins": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "v_league_division_standings_variance_fields": { "head_to_head_match_wins": [ - 29 + 31 ], "head_to_head_rounds_won": [ - 29 + 31 ], "losses": [ - 29 + 31 ], "maps_lost": [ - 29 + 31 ], "maps_won": [ - 29 + 31 ], "matches_played": [ - 29 + 31 ], "matches_remaining": [ - 29 + 31 ], "rank": [ - 29 + 31 ], "round_diff": [ - 29 + 31 ], "rounds_lost": [ - 29 + 31 ], "rounds_won": [ - 29 + 31 ], "wins": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_league_division_standings_variance_order_by": { "head_to_head_match_wins": [ - 2829 + 2946 ], "head_to_head_rounds_won": [ - 2829 + 2946 ], "losses": [ - 2829 + 2946 ], "maps_lost": [ - 2829 + 2946 ], "maps_won": [ - 2829 + 2946 ], "matches_played": [ - 2829 + 2946 ], "matches_remaining": [ - 2829 + 2946 ], "rank": [ - 2829 + 2946 ], "round_diff": [ - 2829 + 2946 ], "rounds_lost": [ - 2829 + 2946 ], "rounds_won": [ - 2829 + 2946 ], "wins": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "v_league_season_player_stats": { "assists": [ - 38 + 40 ], "deaths": [ - 38 + 40 ], "headshot_percentage": [ - 1547 + 1664 ], "headshots": [ - 38 + 40 ], "kdr": [ - 1547 + 1664 ], "kills": [ - 38 + 40 ], "league_division_id": [ - 4921 + 4993 ], "league_season_division_id": [ - 4921 + 4993 ], "league_season_id": [ - 4921 + 4993 ], "league_team": [ - 2060 + 2177 ], "league_team_id": [ - 4921 + 4993 ], "league_team_season_id": [ - 4921 + 4993 ], "matches_played": [ - 38 + 40 ], "player": [ - 3787 + 3904 ], "player_steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "v_league_season_player_stats_aggregate": { "aggregate": [ - 5040 + 5112 ], "nodes": [ - 5026 + 5098 ], "__typename": [ - 78 + 80 ] }, "v_league_season_player_stats_aggregate_bool_exp": { "avg": [ - 5029 + 5101 ], "corr": [ - 5030 + 5102 ], "count": [ - 5032 + 5104 ], "covar_samp": [ - 5033 + 5105 ], "max": [ - 5035 + 5107 ], "min": [ - 5036 + 5108 ], "stddev_samp": [ - 5037 + 5109 ], "sum": [ - 5038 + 5110 ], "var_samp": [ - 5039 + 5111 ], "__typename": [ - 78 + 80 ] }, "v_league_season_player_stats_aggregate_bool_exp_avg": { "arguments": [ - 5053 + 5125 ], "distinct": [ - 3 + 5 ], "filter": [ - 5045 + 5117 ], "predicate": [ - 1548 + 1665 ], "__typename": [ - 78 + 80 ] }, "v_league_season_player_stats_aggregate_bool_exp_corr": { "arguments": [ - 5031 + 5103 ], "distinct": [ - 3 + 5 ], "filter": [ - 5045 + 5117 ], "predicate": [ - 1548 + 1665 ], "__typename": [ - 78 + 80 ] }, "v_league_season_player_stats_aggregate_bool_exp_corr_arguments": { "X": [ - 5054 + 5126 ], "Y": [ - 5054 + 5126 ], "__typename": [ - 78 + 80 ] }, "v_league_season_player_stats_aggregate_bool_exp_count": { "arguments": [ - 5052 + 5124 ], "distinct": [ - 3 + 5 ], "filter": [ - 5045 + 5117 ], "predicate": [ - 39 + 41 ], "__typename": [ - 78 + 80 ] }, "v_league_season_player_stats_aggregate_bool_exp_covar_samp": { "arguments": [ - 5034 + 5106 ], "distinct": [ - 3 + 5 ], "filter": [ - 5045 + 5117 ], "predicate": [ - 1548 + 1665 ], "__typename": [ - 78 + 80 ] }, "v_league_season_player_stats_aggregate_bool_exp_covar_samp_arguments": { "X": [ - 5055 + 5127 ], "Y": [ - 5055 + 5127 ], "__typename": [ - 78 + 80 ] }, "v_league_season_player_stats_aggregate_bool_exp_max": { "arguments": [ - 5056 + 5128 ], "distinct": [ - 3 + 5 ], "filter": [ - 5045 + 5117 ], "predicate": [ - 1548 + 1665 ], "__typename": [ - 78 + 80 ] }, "v_league_season_player_stats_aggregate_bool_exp_min": { "arguments": [ - 5057 + 5129 ], "distinct": [ - 3 + 5 ], "filter": [ - 5045 + 5117 ], "predicate": [ - 1548 + 1665 ], "__typename": [ - 78 + 80 ] }, "v_league_season_player_stats_aggregate_bool_exp_stddev_samp": { "arguments": [ - 5058 + 5130 ], "distinct": [ - 3 + 5 ], "filter": [ - 5045 + 5117 ], "predicate": [ - 1548 + 1665 ], "__typename": [ - 78 + 80 ] }, "v_league_season_player_stats_aggregate_bool_exp_sum": { "arguments": [ - 5059 + 5131 ], "distinct": [ - 3 + 5 ], "filter": [ - 5045 + 5117 ], "predicate": [ - 1548 + 1665 ], "__typename": [ - 78 + 80 ] }, "v_league_season_player_stats_aggregate_bool_exp_var_samp": { "arguments": [ - 5060 + 5132 ], "distinct": [ - 3 + 5 ], "filter": [ - 5045 + 5117 ], "predicate": [ - 1548 + 1665 ], "__typename": [ - 78 + 80 ] }, "v_league_season_player_stats_aggregate_fields": { "avg": [ - 5043 + 5115 ], "count": [ - 38, + 40, { "columns": [ - 5052, + 5124, "[v_league_season_player_stats_select_column!]" ], "distinct": [ - 3 + 5 ] } ], "max": [ - 5047 + 5119 ], "min": [ - 5049 + 5121 ], "stddev": [ - 5061 + 5133 ], "stddev_pop": [ - 5063 + 5135 ], "stddev_samp": [ - 5065 + 5137 ], "sum": [ - 5069 + 5141 ], "var_pop": [ - 5071 + 5143 ], "var_samp": [ - 5073 + 5145 ], "variance": [ - 5075 + 5147 ], "__typename": [ - 78 + 80 ] }, "v_league_season_player_stats_aggregate_order_by": { "avg": [ - 5044 + 5116 ], "count": [ - 2829 + 2946 ], "max": [ - 5048 + 5120 ], "min": [ - 5050 + 5122 ], "stddev": [ - 5062 + 5134 ], "stddev_pop": [ - 5064 + 5136 ], "stddev_samp": [ - 5066 + 5138 ], "sum": [ - 5070 + 5142 ], "var_pop": [ - 5072 + 5144 ], "var_samp": [ - 5074 + 5146 ], "variance": [ - 5076 + 5148 ], "__typename": [ - 78 + 80 ] }, "v_league_season_player_stats_arr_rel_insert_input": { "data": [ - 5046 + 5118 ], "__typename": [ - 78 + 80 ] }, "v_league_season_player_stats_avg_fields": { "assists": [ - 29 + 31 ], "deaths": [ - 29 + 31 ], "headshot_percentage": [ - 29 + 31 ], "headshots": [ - 29 + 31 ], "kdr": [ - 29 + 31 ], "kills": [ - 29 + 31 ], "matches_played": [ - 29 + 31 ], "player_steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_league_season_player_stats_avg_order_by": { "assists": [ - 2829 + 2946 ], "deaths": [ - 2829 + 2946 ], "headshot_percentage": [ - 2829 + 2946 ], "headshots": [ - 2829 + 2946 ], "kdr": [ - 2829 + 2946 ], "kills": [ - 2829 + 2946 ], "matches_played": [ - 2829 + 2946 ], "player_steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "v_league_season_player_stats_bool_exp": { "_and": [ - 5045 + 5117 ], "_not": [ - 5045 + 5117 ], "_or": [ - 5045 + 5117 ], "assists": [ - 39 + 41 ], "deaths": [ - 39 + 41 ], "headshot_percentage": [ - 1548 + 1665 ], "headshots": [ - 39 + 41 ], "kdr": [ - 1548 + 1665 ], "kills": [ - 39 + 41 ], "league_division_id": [ - 4923 + 4995 ], "league_season_division_id": [ - 4923 + 4995 ], "league_season_id": [ - 4923 + 4995 ], "league_team": [ - 2063 + 2180 ], "league_team_id": [ - 4923 + 4995 ], "league_team_season_id": [ - 4923 + 4995 ], "matches_played": [ - 39 + 41 ], "player": [ - 3791 + 3908 ], "player_steam_id": [ - 182 + 254 ], "__typename": [ - 78 + 80 ] }, "v_league_season_player_stats_insert_input": { "assists": [ - 38 + 40 ], "deaths": [ - 38 + 40 ], "headshot_percentage": [ - 1547 + 1664 ], "headshots": [ - 38 + 40 ], "kdr": [ - 1547 + 1664 ], "kills": [ - 38 + 40 ], "league_division_id": [ - 4921 + 4993 ], "league_season_division_id": [ - 4921 + 4993 ], "league_season_id": [ - 4921 + 4993 ], "league_team": [ - 2069 + 2186 ], "league_team_id": [ - 4921 + 4993 ], "league_team_season_id": [ - 4921 + 4993 ], "matches_played": [ - 38 + 40 ], "player": [ - 3798 + 3915 ], "player_steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "v_league_season_player_stats_max_fields": { "assists": [ - 38 + 40 ], "deaths": [ - 38 + 40 ], "headshot_percentage": [ - 1547 + 1664 ], "headshots": [ - 38 + 40 ], "kdr": [ - 1547 + 1664 ], "kills": [ - 38 + 40 ], "league_division_id": [ - 4921 + 4993 ], "league_season_division_id": [ - 4921 + 4993 ], "league_season_id": [ - 4921 + 4993 ], "league_team_id": [ - 4921 + 4993 ], "league_team_season_id": [ - 4921 + 4993 ], "matches_played": [ - 38 + 40 ], "player_steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "v_league_season_player_stats_max_order_by": { "assists": [ - 2829 + 2946 ], "deaths": [ - 2829 + 2946 ], "headshot_percentage": [ - 2829 + 2946 ], "headshots": [ - 2829 + 2946 ], "kdr": [ - 2829 + 2946 ], "kills": [ - 2829 + 2946 ], "league_division_id": [ - 2829 + 2946 ], "league_season_division_id": [ - 2829 + 2946 ], "league_season_id": [ - 2829 + 2946 ], "league_team_id": [ - 2829 + 2946 ], "league_team_season_id": [ - 2829 + 2946 ], "matches_played": [ - 2829 + 2946 ], "player_steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "v_league_season_player_stats_min_fields": { "assists": [ - 38 + 40 ], "deaths": [ - 38 + 40 ], "headshot_percentage": [ - 1547 + 1664 ], "headshots": [ - 38 + 40 ], "kdr": [ - 1547 + 1664 ], "kills": [ - 38 + 40 ], "league_division_id": [ - 4921 + 4993 ], "league_season_division_id": [ - 4921 + 4993 ], "league_season_id": [ - 4921 + 4993 ], "league_team_id": [ - 4921 + 4993 ], "league_team_season_id": [ - 4921 + 4993 ], "matches_played": [ - 38 + 40 ], "player_steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "v_league_season_player_stats_min_order_by": { "assists": [ - 2829 + 2946 ], "deaths": [ - 2829 + 2946 ], "headshot_percentage": [ - 2829 + 2946 ], "headshots": [ - 2829 + 2946 ], "kdr": [ - 2829 + 2946 ], "kills": [ - 2829 + 2946 ], "league_division_id": [ - 2829 + 2946 ], "league_season_division_id": [ - 2829 + 2946 ], "league_season_id": [ - 2829 + 2946 ], "league_team_id": [ - 2829 + 2946 ], "league_team_season_id": [ - 2829 + 2946 ], "matches_played": [ - 2829 + 2946 ], "player_steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "v_league_season_player_stats_order_by": { "assists": [ - 2829 + 2946 ], "deaths": [ - 2829 + 2946 ], "headshot_percentage": [ - 2829 + 2946 ], "headshots": [ - 2829 + 2946 ], "kdr": [ - 2829 + 2946 ], "kills": [ - 2829 + 2946 ], "league_division_id": [ - 2829 + 2946 ], "league_season_division_id": [ - 2829 + 2946 ], "league_season_id": [ - 2829 + 2946 ], "league_team": [ - 2071 + 2188 ], "league_team_id": [ - 2829 + 2946 ], "league_team_season_id": [ - 2829 + 2946 ], "matches_played": [ - 2829 + 2946 ], "player": [ - 3800 + 3917 ], "player_steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "v_league_season_player_stats_select_column": {}, @@ -115037,6482 +116569,6482 @@ export default { "v_league_season_player_stats_select_column_v_league_season_player_stats_aggregate_bool_exp_var_samp_arguments_columns": {}, "v_league_season_player_stats_stddev_fields": { "assists": [ - 29 + 31 ], "deaths": [ - 29 + 31 ], "headshot_percentage": [ - 29 + 31 ], "headshots": [ - 29 + 31 ], "kdr": [ - 29 + 31 ], "kills": [ - 29 + 31 ], "matches_played": [ - 29 + 31 ], "player_steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_league_season_player_stats_stddev_order_by": { "assists": [ - 2829 + 2946 ], "deaths": [ - 2829 + 2946 ], "headshot_percentage": [ - 2829 + 2946 ], "headshots": [ - 2829 + 2946 ], "kdr": [ - 2829 + 2946 ], "kills": [ - 2829 + 2946 ], "matches_played": [ - 2829 + 2946 ], "player_steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "v_league_season_player_stats_stddev_pop_fields": { "assists": [ - 29 + 31 ], "deaths": [ - 29 + 31 ], "headshot_percentage": [ - 29 + 31 ], "headshots": [ - 29 + 31 ], "kdr": [ - 29 + 31 ], "kills": [ - 29 + 31 ], "matches_played": [ - 29 + 31 ], "player_steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_league_season_player_stats_stddev_pop_order_by": { "assists": [ - 2829 + 2946 ], "deaths": [ - 2829 + 2946 ], "headshot_percentage": [ - 2829 + 2946 ], "headshots": [ - 2829 + 2946 ], "kdr": [ - 2829 + 2946 ], "kills": [ - 2829 + 2946 ], "matches_played": [ - 2829 + 2946 ], "player_steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "v_league_season_player_stats_stddev_samp_fields": { "assists": [ - 29 + 31 ], "deaths": [ - 29 + 31 ], "headshot_percentage": [ - 29 + 31 ], "headshots": [ - 29 + 31 ], "kdr": [ - 29 + 31 ], "kills": [ - 29 + 31 ], "matches_played": [ - 29 + 31 ], "player_steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_league_season_player_stats_stddev_samp_order_by": { "assists": [ - 2829 + 2946 ], "deaths": [ - 2829 + 2946 ], "headshot_percentage": [ - 2829 + 2946 ], "headshots": [ - 2829 + 2946 ], "kdr": [ - 2829 + 2946 ], "kills": [ - 2829 + 2946 ], "matches_played": [ - 2829 + 2946 ], "player_steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "v_league_season_player_stats_stream_cursor_input": { "initial_value": [ - 5068 + 5140 ], "ordering": [ - 236 + 308 ], "__typename": [ - 78 + 80 ] }, "v_league_season_player_stats_stream_cursor_value_input": { "assists": [ - 38 + 40 ], "deaths": [ - 38 + 40 ], "headshot_percentage": [ - 1547 + 1664 ], "headshots": [ - 38 + 40 ], "kdr": [ - 1547 + 1664 ], "kills": [ - 38 + 40 ], "league_division_id": [ - 4921 + 4993 ], "league_season_division_id": [ - 4921 + 4993 ], "league_season_id": [ - 4921 + 4993 ], "league_team_id": [ - 4921 + 4993 ], "league_team_season_id": [ - 4921 + 4993 ], "matches_played": [ - 38 + 40 ], "player_steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "v_league_season_player_stats_sum_fields": { "assists": [ - 38 + 40 ], "deaths": [ - 38 + 40 ], "headshot_percentage": [ - 1547 + 1664 ], "headshots": [ - 38 + 40 ], "kdr": [ - 1547 + 1664 ], "kills": [ - 38 + 40 ], "matches_played": [ - 38 + 40 ], "player_steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "v_league_season_player_stats_sum_order_by": { "assists": [ - 2829 + 2946 ], "deaths": [ - 2829 + 2946 ], "headshot_percentage": [ - 2829 + 2946 ], "headshots": [ - 2829 + 2946 ], "kdr": [ - 2829 + 2946 ], "kills": [ - 2829 + 2946 ], "matches_played": [ - 2829 + 2946 ], "player_steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "v_league_season_player_stats_var_pop_fields": { "assists": [ - 29 + 31 ], "deaths": [ - 29 + 31 ], "headshot_percentage": [ - 29 + 31 ], "headshots": [ - 29 + 31 ], "kdr": [ - 29 + 31 ], "kills": [ - 29 + 31 ], "matches_played": [ - 29 + 31 ], "player_steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_league_season_player_stats_var_pop_order_by": { "assists": [ - 2829 + 2946 ], "deaths": [ - 2829 + 2946 ], "headshot_percentage": [ - 2829 + 2946 ], "headshots": [ - 2829 + 2946 ], "kdr": [ - 2829 + 2946 ], "kills": [ - 2829 + 2946 ], "matches_played": [ - 2829 + 2946 ], "player_steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "v_league_season_player_stats_var_samp_fields": { "assists": [ - 29 + 31 ], "deaths": [ - 29 + 31 ], "headshot_percentage": [ - 29 + 31 ], "headshots": [ - 29 + 31 ], "kdr": [ - 29 + 31 ], "kills": [ - 29 + 31 ], "matches_played": [ - 29 + 31 ], "player_steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_league_season_player_stats_var_samp_order_by": { "assists": [ - 2829 + 2946 ], "deaths": [ - 2829 + 2946 ], "headshot_percentage": [ - 2829 + 2946 ], "headshots": [ - 2829 + 2946 ], "kdr": [ - 2829 + 2946 ], "kills": [ - 2829 + 2946 ], "matches_played": [ - 2829 + 2946 ], "player_steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "v_league_season_player_stats_variance_fields": { "assists": [ - 29 + 31 ], "deaths": [ - 29 + 31 ], "headshot_percentage": [ - 29 + 31 ], "headshots": [ - 29 + 31 ], "kdr": [ - 29 + 31 ], "kills": [ - 29 + 31 ], "matches_played": [ - 29 + 31 ], "player_steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_league_season_player_stats_variance_order_by": { "assists": [ - 2829 + 2946 ], "deaths": [ - 2829 + 2946 ], "headshot_percentage": [ - 2829 + 2946 ], "headshots": [ - 2829 + 2946 ], "kdr": [ - 2829 + 2946 ], "kills": [ - 2829 + 2946 ], "matches_played": [ - 2829 + 2946 ], "player_steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "v_match_captains": { "captain": [ - 3 + 5 ], "discord_id": [ - 78 + 80 ], "id": [ - 4921 + 4993 ], "lineup": [ - 2324 + 2441 ], "match_lineup_id": [ - 4921 + 4993 ], "placeholder_name": [ - 78 + 80 ], "player": [ - 3787 + 3904 ], "steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "v_match_captains_aggregate": { "aggregate": [ - 5079 + 5151 ], "nodes": [ - 5077 + 5149 ], "__typename": [ - 78 + 80 ] }, "v_match_captains_aggregate_fields": { "avg": [ - 5080 + 5152 ], "count": [ - 38, + 40, { "columns": [ - 5089, + 5161, "[v_match_captains_select_column!]" ], "distinct": [ - 3 + 5 ] } ], "max": [ - 5084 + 5156 ], "min": [ - 5085 + 5157 ], "stddev": [ - 5091 + 5163 ], "stddev_pop": [ - 5092 + 5164 ], "stddev_samp": [ - 5093 + 5165 ], "sum": [ - 5096 + 5168 ], "var_pop": [ - 5098 + 5170 ], "var_samp": [ - 5099 + 5171 ], "variance": [ - 5100 + 5172 ], "__typename": [ - 78 + 80 ] }, "v_match_captains_avg_fields": { "steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_match_captains_bool_exp": { "_and": [ - 5081 + 5153 ], "_not": [ - 5081 + 5153 ], "_or": [ - 5081 + 5153 ], "captain": [ - 4 + 6 ], "discord_id": [ - 80 + 82 ], "id": [ - 4923 + 4995 ], "lineup": [ - 2333 + 2450 ], "match_lineup_id": [ - 4923 + 4995 ], "placeholder_name": [ - 80 + 82 ], "player": [ - 3791 + 3908 ], "steam_id": [ - 182 + 254 ], "__typename": [ - 78 + 80 ] }, "v_match_captains_inc_input": { "steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "v_match_captains_insert_input": { "captain": [ - 3 + 5 ], "discord_id": [ - 78 + 80 ], "id": [ - 4921 + 4993 ], "lineup": [ - 2342 + 2459 ], "match_lineup_id": [ - 4921 + 4993 ], "placeholder_name": [ - 78 + 80 ], "player": [ - 3798 + 3915 ], "steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "v_match_captains_max_fields": { "discord_id": [ - 78 + 80 ], "id": [ - 4921 + 4993 ], "match_lineup_id": [ - 4921 + 4993 ], "placeholder_name": [ - 78 + 80 ], "steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "v_match_captains_min_fields": { "discord_id": [ - 78 + 80 ], "id": [ - 4921 + 4993 ], "match_lineup_id": [ - 4921 + 4993 ], "placeholder_name": [ - 78 + 80 ], "steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "v_match_captains_mutation_response": { "affected_rows": [ - 38 + 40 ], "returning": [ - 5077 + 5149 ], "__typename": [ - 78 + 80 ] }, "v_match_captains_obj_rel_insert_input": { "data": [ - 5083 + 5155 ], "__typename": [ - 78 + 80 ] }, "v_match_captains_order_by": { "captain": [ - 2829 + 2946 ], "discord_id": [ - 2829 + 2946 ], "id": [ - 2829 + 2946 ], "lineup": [ - 2344 + 2461 ], "match_lineup_id": [ - 2829 + 2946 ], "placeholder_name": [ - 2829 + 2946 ], "player": [ - 3800 + 3917 ], "steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "v_match_captains_select_column": {}, "v_match_captains_set_input": { "captain": [ - 3 + 5 ], "discord_id": [ - 78 + 80 ], "id": [ - 4921 + 4993 ], "match_lineup_id": [ - 4921 + 4993 ], "placeholder_name": [ - 78 + 80 ], "steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "v_match_captains_stddev_fields": { "steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_match_captains_stddev_pop_fields": { "steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_match_captains_stddev_samp_fields": { "steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_match_captains_stream_cursor_input": { "initial_value": [ - 5095 + 5167 ], "ordering": [ - 236 + 308 ], "__typename": [ - 78 + 80 ] }, "v_match_captains_stream_cursor_value_input": { "captain": [ - 3 + 5 ], "discord_id": [ - 78 + 80 ], "id": [ - 4921 + 4993 ], "match_lineup_id": [ - 4921 + 4993 ], "placeholder_name": [ - 78 + 80 ], "steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "v_match_captains_sum_fields": { "steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "v_match_captains_updates": { "_inc": [ - 5082 + 5154 ], "_set": [ - 5090 + 5162 ], "where": [ - 5081 + 5153 ], "__typename": [ - 78 + 80 ] }, "v_match_captains_var_pop_fields": { "steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_match_captains_var_samp_fields": { "steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_match_captains_variance_fields": { "steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_match_clutches": { "against_count": [ - 38 + 40 ], "clutcher": [ - 3787 + 3904 ], "clutcher_steam_id": [ - 180 + 252 ], "kills_in_clutch": [ - 38 + 40 ], "match": [ - 2644 + 2761 ], "match_id": [ - 4921 + 4993 ], "match_lineup": [ - 2324 + 2441 ], "match_lineup_id": [ - 4921 + 4993 ], "match_map": [ - 2482 + 2599 ], "match_map_id": [ - 4921 + 4993 ], "outcome": [ - 78 + 80 ], "round": [ - 38 + 40 ], "side": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "v_match_clutches_aggregate": { "aggregate": [ - 5105 + 5177 ], "nodes": [ - 5101 + 5173 ], "__typename": [ - 78 + 80 ] }, "v_match_clutches_aggregate_bool_exp": { "count": [ - 5104 + 5176 ], "__typename": [ - 78 + 80 ] }, "v_match_clutches_aggregate_bool_exp_count": { "arguments": [ - 5117 + 5189 ], "distinct": [ - 3 + 5 ], "filter": [ - 5110 + 5182 ], "predicate": [ - 39 + 41 ], "__typename": [ - 78 + 80 ] }, "v_match_clutches_aggregate_fields": { "avg": [ - 5108 + 5180 ], "count": [ - 38, + 40, { "columns": [ - 5117, + 5189, "[v_match_clutches_select_column!]" ], "distinct": [ - 3 + 5 ] } ], "max": [ - 5112 + 5184 ], "min": [ - 5114 + 5186 ], "stddev": [ - 5118 + 5190 ], "stddev_pop": [ - 5120 + 5192 ], "stddev_samp": [ - 5122 + 5194 ], "sum": [ - 5126 + 5198 ], "var_pop": [ - 5128 + 5200 ], "var_samp": [ - 5130 + 5202 ], "variance": [ - 5132 + 5204 ], "__typename": [ - 78 + 80 ] }, "v_match_clutches_aggregate_order_by": { "avg": [ - 5109 + 5181 ], "count": [ - 2829 + 2946 ], "max": [ - 5113 + 5185 ], "min": [ - 5115 + 5187 ], "stddev": [ - 5119 + 5191 ], "stddev_pop": [ - 5121 + 5193 ], "stddev_samp": [ - 5123 + 5195 ], "sum": [ - 5127 + 5199 ], "var_pop": [ - 5129 + 5201 ], "var_samp": [ - 5131 + 5203 ], "variance": [ - 5133 + 5205 ], "__typename": [ - 78 + 80 ] }, "v_match_clutches_arr_rel_insert_input": { "data": [ - 5111 + 5183 ], "__typename": [ - 78 + 80 ] }, "v_match_clutches_avg_fields": { "against_count": [ - 29 + 31 ], "clutcher_steam_id": [ - 29 + 31 ], "kills_in_clutch": [ - 29 + 31 ], "round": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_match_clutches_avg_order_by": { "against_count": [ - 2829 + 2946 ], "clutcher_steam_id": [ - 2829 + 2946 ], "kills_in_clutch": [ - 2829 + 2946 ], "round": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "v_match_clutches_bool_exp": { "_and": [ - 5110 + 5182 ], "_not": [ - 5110 + 5182 ], "_or": [ - 5110 + 5182 ], "against_count": [ - 39 + 41 ], "clutcher": [ - 3791 + 3908 ], "clutcher_steam_id": [ - 182 + 254 ], "kills_in_clutch": [ - 39 + 41 ], "match": [ - 2653 + 2770 ], "match_id": [ - 4923 + 4995 ], "match_lineup": [ - 2333 + 2450 ], "match_lineup_id": [ - 4923 + 4995 ], "match_map": [ - 2491 + 2608 ], "match_map_id": [ - 4923 + 4995 ], "outcome": [ - 80 + 82 ], "round": [ - 39 + 41 ], "side": [ - 80 + 82 ], "__typename": [ - 78 + 80 ] }, "v_match_clutches_insert_input": { "against_count": [ - 38 + 40 ], "clutcher": [ - 3798 + 3915 ], "clutcher_steam_id": [ - 180 + 252 ], "kills_in_clutch": [ - 38 + 40 ], "match": [ - 2662 + 2779 ], "match_id": [ - 4921 + 4993 ], "match_lineup": [ - 2342 + 2459 ], "match_lineup_id": [ - 4921 + 4993 ], "match_map": [ - 2500 + 2617 ], "match_map_id": [ - 4921 + 4993 ], "outcome": [ - 78 + 80 ], "round": [ - 38 + 40 ], "side": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "v_match_clutches_max_fields": { "against_count": [ - 38 + 40 ], "clutcher_steam_id": [ - 180 + 252 ], "kills_in_clutch": [ - 38 + 40 ], "match_id": [ - 4921 + 4993 ], "match_lineup_id": [ - 4921 + 4993 ], "match_map_id": [ - 4921 + 4993 ], "outcome": [ - 78 + 80 ], "round": [ - 38 + 40 ], "side": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "v_match_clutches_max_order_by": { "against_count": [ - 2829 + 2946 ], "clutcher_steam_id": [ - 2829 + 2946 ], "kills_in_clutch": [ - 2829 + 2946 ], "match_id": [ - 2829 + 2946 ], "match_lineup_id": [ - 2829 + 2946 ], "match_map_id": [ - 2829 + 2946 ], "outcome": [ - 2829 + 2946 ], "round": [ - 2829 + 2946 ], "side": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "v_match_clutches_min_fields": { "against_count": [ - 38 + 40 ], "clutcher_steam_id": [ - 180 + 252 ], "kills_in_clutch": [ - 38 + 40 ], "match_id": [ - 4921 + 4993 ], "match_lineup_id": [ - 4921 + 4993 ], "match_map_id": [ - 4921 + 4993 ], "outcome": [ - 78 + 80 ], "round": [ - 38 + 40 ], "side": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "v_match_clutches_min_order_by": { "against_count": [ - 2829 + 2946 ], "clutcher_steam_id": [ - 2829 + 2946 ], "kills_in_clutch": [ - 2829 + 2946 ], "match_id": [ - 2829 + 2946 ], "match_lineup_id": [ - 2829 + 2946 ], "match_map_id": [ - 2829 + 2946 ], "outcome": [ - 2829 + 2946 ], "round": [ - 2829 + 2946 ], "side": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "v_match_clutches_order_by": { "against_count": [ - 2829 + 2946 ], "clutcher": [ - 3800 + 3917 ], "clutcher_steam_id": [ - 2829 + 2946 ], "kills_in_clutch": [ - 2829 + 2946 ], "match": [ - 2664 + 2781 ], "match_id": [ - 2829 + 2946 ], "match_lineup": [ - 2344 + 2461 ], "match_lineup_id": [ - 2829 + 2946 ], "match_map": [ - 2502 + 2619 ], "match_map_id": [ - 2829 + 2946 ], "outcome": [ - 2829 + 2946 ], "round": [ - 2829 + 2946 ], "side": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "v_match_clutches_select_column": {}, "v_match_clutches_stddev_fields": { "against_count": [ - 29 + 31 ], "clutcher_steam_id": [ - 29 + 31 ], "kills_in_clutch": [ - 29 + 31 ], "round": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_match_clutches_stddev_order_by": { "against_count": [ - 2829 + 2946 ], "clutcher_steam_id": [ - 2829 + 2946 ], "kills_in_clutch": [ - 2829 + 2946 ], "round": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "v_match_clutches_stddev_pop_fields": { "against_count": [ - 29 + 31 ], "clutcher_steam_id": [ - 29 + 31 ], "kills_in_clutch": [ - 29 + 31 ], "round": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_match_clutches_stddev_pop_order_by": { "against_count": [ - 2829 + 2946 ], "clutcher_steam_id": [ - 2829 + 2946 ], "kills_in_clutch": [ - 2829 + 2946 ], "round": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "v_match_clutches_stddev_samp_fields": { "against_count": [ - 29 + 31 ], "clutcher_steam_id": [ - 29 + 31 ], "kills_in_clutch": [ - 29 + 31 ], "round": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_match_clutches_stddev_samp_order_by": { "against_count": [ - 2829 + 2946 ], "clutcher_steam_id": [ - 2829 + 2946 ], "kills_in_clutch": [ - 2829 + 2946 ], "round": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "v_match_clutches_stream_cursor_input": { "initial_value": [ - 5125 + 5197 ], "ordering": [ - 236 + 308 ], "__typename": [ - 78 + 80 ] }, "v_match_clutches_stream_cursor_value_input": { "against_count": [ - 38 + 40 ], "clutcher_steam_id": [ - 180 + 252 ], "kills_in_clutch": [ - 38 + 40 ], "match_id": [ - 4921 + 4993 ], "match_lineup_id": [ - 4921 + 4993 ], "match_map_id": [ - 4921 + 4993 ], "outcome": [ - 78 + 80 ], "round": [ - 38 + 40 ], "side": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "v_match_clutches_sum_fields": { "against_count": [ - 38 + 40 ], "clutcher_steam_id": [ - 180 + 252 ], "kills_in_clutch": [ - 38 + 40 ], "round": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "v_match_clutches_sum_order_by": { "against_count": [ - 2829 + 2946 ], "clutcher_steam_id": [ - 2829 + 2946 ], "kills_in_clutch": [ - 2829 + 2946 ], "round": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "v_match_clutches_var_pop_fields": { "against_count": [ - 29 + 31 ], "clutcher_steam_id": [ - 29 + 31 ], "kills_in_clutch": [ - 29 + 31 ], "round": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_match_clutches_var_pop_order_by": { "against_count": [ - 2829 + 2946 ], "clutcher_steam_id": [ - 2829 + 2946 ], "kills_in_clutch": [ - 2829 + 2946 ], "round": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "v_match_clutches_var_samp_fields": { "against_count": [ - 29 + 31 ], "clutcher_steam_id": [ - 29 + 31 ], "kills_in_clutch": [ - 29 + 31 ], "round": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_match_clutches_var_samp_order_by": { "against_count": [ - 2829 + 2946 ], "clutcher_steam_id": [ - 2829 + 2946 ], "kills_in_clutch": [ - 2829 + 2946 ], "round": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "v_match_clutches_variance_fields": { "against_count": [ - 29 + 31 ], "clutcher_steam_id": [ - 29 + 31 ], "kills_in_clutch": [ - 29 + 31 ], "round": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_match_clutches_variance_order_by": { "against_count": [ - 2829 + 2946 ], "clutcher_steam_id": [ - 2829 + 2946 ], "kills_in_clutch": [ - 2829 + 2946 ], "round": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "v_match_kill_pairs": { "killer_side": [ - 78 + 80 ], "killer_steam_id": [ - 180 + 252 ], "kills": [ - 38 + 40 ], "match": [ - 2644 + 2761 ], "match_id": [ - 4921 + 4993 ], "match_map": [ - 2482 + 2599 ], "match_map_id": [ - 4921 + 4993 ], "victim_side": [ - 78 + 80 ], "victim_steam_id": [ - 180 + 252 ], "weapon": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "v_match_kill_pairs_aggregate": { "aggregate": [ - 5136 + 5208 ], "nodes": [ - 5134 + 5206 ], "__typename": [ - 78 + 80 ] }, "v_match_kill_pairs_aggregate_fields": { "avg": [ - 5137 + 5209 ], "count": [ - 38, + 40, { "columns": [ - 5142, + 5214, "[v_match_kill_pairs_select_column!]" ], "distinct": [ - 3 + 5 ] } ], "max": [ - 5139 + 5211 ], "min": [ - 5140 + 5212 ], "stddev": [ - 5143 + 5215 ], "stddev_pop": [ - 5144 + 5216 ], "stddev_samp": [ - 5145 + 5217 ], "sum": [ - 5148 + 5220 ], "var_pop": [ - 5149 + 5221 ], "var_samp": [ - 5150 + 5222 ], "variance": [ - 5151 + 5223 ], "__typename": [ - 78 + 80 ] }, "v_match_kill_pairs_avg_fields": { "killer_steam_id": [ - 29 + 31 ], "kills": [ - 29 + 31 ], "victim_steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_match_kill_pairs_bool_exp": { "_and": [ - 5138 + 5210 ], "_not": [ - 5138 + 5210 ], "_or": [ - 5138 + 5210 ], "killer_side": [ - 80 + 82 ], "killer_steam_id": [ - 182 + 254 ], "kills": [ - 39 + 41 ], "match": [ - 2653 + 2770 ], "match_id": [ - 4923 + 4995 ], "match_map": [ - 2491 + 2608 ], "match_map_id": [ - 4923 + 4995 ], "victim_side": [ - 80 + 82 ], "victim_steam_id": [ - 182 + 254 ], "weapon": [ - 80 + 82 ], "__typename": [ - 78 + 80 ] }, "v_match_kill_pairs_max_fields": { "killer_side": [ - 78 + 80 ], "killer_steam_id": [ - 180 + 252 ], "kills": [ - 38 + 40 ], "match_id": [ - 4921 + 4993 ], "match_map_id": [ - 4921 + 4993 ], "victim_side": [ - 78 + 80 ], "victim_steam_id": [ - 180 + 252 ], "weapon": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "v_match_kill_pairs_min_fields": { "killer_side": [ - 78 + 80 ], "killer_steam_id": [ - 180 + 252 ], "kills": [ - 38 + 40 ], "match_id": [ - 4921 + 4993 ], "match_map_id": [ - 4921 + 4993 ], "victim_side": [ - 78 + 80 ], "victim_steam_id": [ - 180 + 252 ], "weapon": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "v_match_kill_pairs_order_by": { "killer_side": [ - 2829 + 2946 ], "killer_steam_id": [ - 2829 + 2946 ], "kills": [ - 2829 + 2946 ], "match": [ - 2664 + 2781 ], "match_id": [ - 2829 + 2946 ], "match_map": [ - 2502 + 2619 ], "match_map_id": [ - 2829 + 2946 ], "victim_side": [ - 2829 + 2946 ], "victim_steam_id": [ - 2829 + 2946 ], "weapon": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "v_match_kill_pairs_select_column": {}, "v_match_kill_pairs_stddev_fields": { "killer_steam_id": [ - 29 + 31 ], "kills": [ - 29 + 31 ], "victim_steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_match_kill_pairs_stddev_pop_fields": { "killer_steam_id": [ - 29 + 31 ], "kills": [ - 29 + 31 ], "victim_steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_match_kill_pairs_stddev_samp_fields": { "killer_steam_id": [ - 29 + 31 ], "kills": [ - 29 + 31 ], "victim_steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_match_kill_pairs_stream_cursor_input": { "initial_value": [ - 5147 + 5219 ], "ordering": [ - 236 + 308 ], "__typename": [ - 78 + 80 ] }, "v_match_kill_pairs_stream_cursor_value_input": { "killer_side": [ - 78 + 80 ], "killer_steam_id": [ - 180 + 252 ], "kills": [ - 38 + 40 ], "match_id": [ - 4921 + 4993 ], "match_map_id": [ - 4921 + 4993 ], "victim_side": [ - 78 + 80 ], "victim_steam_id": [ - 180 + 252 ], "weapon": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "v_match_kill_pairs_sum_fields": { "killer_steam_id": [ - 180 + 252 ], "kills": [ - 38 + 40 ], "victim_steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "v_match_kill_pairs_var_pop_fields": { "killer_steam_id": [ - 29 + 31 ], "kills": [ - 29 + 31 ], "victim_steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_match_kill_pairs_var_samp_fields": { "killer_steam_id": [ - 29 + 31 ], "kills": [ - 29 + 31 ], "victim_steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_match_kill_pairs_variance_fields": { "killer_steam_id": [ - 29 + 31 ], "kills": [ - 29 + 31 ], "victim_steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_match_lineup_buy_types": { "match": [ - 2644 + 2761 ], "match_id": [ - 4921 + 4993 ], "match_lineup": [ - 2324 + 2441 ], "match_lineup_id": [ - 4921 + 4993 ], "match_map": [ - 2482 + 2599 ], "match_map_id": [ - 4921 + 4993 ], "matchup": [ - 78 + 80 ], "rounds": [ - 38 + 40 ], "side": [ - 78 + 80 ], "wins": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "v_match_lineup_buy_types_aggregate": { "aggregate": [ - 5154 + 5226 ], "nodes": [ - 5152 + 5224 ], "__typename": [ - 78 + 80 ] }, "v_match_lineup_buy_types_aggregate_fields": { "avg": [ - 5155 + 5227 ], "count": [ - 38, + 40, { "columns": [ - 5160, + 5232, "[v_match_lineup_buy_types_select_column!]" ], "distinct": [ - 3 + 5 ] } ], "max": [ - 5157 + 5229 ], "min": [ - 5158 + 5230 ], "stddev": [ - 5161 + 5233 ], "stddev_pop": [ - 5162 + 5234 ], "stddev_samp": [ - 5163 + 5235 ], "sum": [ - 5166 + 5238 ], "var_pop": [ - 5167 + 5239 ], "var_samp": [ - 5168 + 5240 ], "variance": [ - 5169 + 5241 ], "__typename": [ - 78 + 80 ] }, "v_match_lineup_buy_types_avg_fields": { "rounds": [ - 29 + 31 ], "wins": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_match_lineup_buy_types_bool_exp": { "_and": [ - 5156 + 5228 ], "_not": [ - 5156 + 5228 ], "_or": [ - 5156 + 5228 ], "match": [ - 2653 + 2770 ], "match_id": [ - 4923 + 4995 ], "match_lineup": [ - 2333 + 2450 ], "match_lineup_id": [ - 4923 + 4995 ], "match_map": [ - 2491 + 2608 ], "match_map_id": [ - 4923 + 4995 ], "matchup": [ - 80 + 82 ], "rounds": [ - 39 + 41 ], "side": [ - 80 + 82 ], "wins": [ - 39 + 41 ], "__typename": [ - 78 + 80 ] }, "v_match_lineup_buy_types_max_fields": { "match_id": [ - 4921 + 4993 ], "match_lineup_id": [ - 4921 + 4993 ], "match_map_id": [ - 4921 + 4993 ], "matchup": [ - 78 + 80 ], "rounds": [ - 38 + 40 ], "side": [ - 78 + 80 ], "wins": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "v_match_lineup_buy_types_min_fields": { "match_id": [ - 4921 + 4993 ], "match_lineup_id": [ - 4921 + 4993 ], "match_map_id": [ - 4921 + 4993 ], "matchup": [ - 78 + 80 ], "rounds": [ - 38 + 40 ], "side": [ - 78 + 80 ], "wins": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "v_match_lineup_buy_types_order_by": { "match": [ - 2664 + 2781 ], "match_id": [ - 2829 + 2946 ], "match_lineup": [ - 2344 + 2461 ], "match_lineup_id": [ - 2829 + 2946 ], "match_map": [ - 2502 + 2619 ], "match_map_id": [ - 2829 + 2946 ], "matchup": [ - 2829 + 2946 ], "rounds": [ - 2829 + 2946 ], "side": [ - 2829 + 2946 ], "wins": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "v_match_lineup_buy_types_select_column": {}, "v_match_lineup_buy_types_stddev_fields": { "rounds": [ - 29 + 31 ], "wins": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_match_lineup_buy_types_stddev_pop_fields": { "rounds": [ - 29 + 31 ], "wins": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_match_lineup_buy_types_stddev_samp_fields": { "rounds": [ - 29 + 31 ], "wins": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_match_lineup_buy_types_stream_cursor_input": { "initial_value": [ - 5165 + 5237 ], "ordering": [ - 236 + 308 ], "__typename": [ - 78 + 80 ] }, "v_match_lineup_buy_types_stream_cursor_value_input": { "match_id": [ - 4921 + 4993 ], "match_lineup_id": [ - 4921 + 4993 ], "match_map_id": [ - 4921 + 4993 ], "matchup": [ - 78 + 80 ], "rounds": [ - 38 + 40 ], "side": [ - 78 + 80 ], "wins": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "v_match_lineup_buy_types_sum_fields": { "rounds": [ - 38 + 40 ], "wins": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "v_match_lineup_buy_types_var_pop_fields": { "rounds": [ - 29 + 31 ], "wins": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_match_lineup_buy_types_var_samp_fields": { "rounds": [ - 29 + 31 ], "wins": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_match_lineup_buy_types_variance_fields": { "rounds": [ - 29 + 31 ], "wins": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_match_lineup_map_stats": { "man_adv_rounds": [ - 38 + 40 ], "man_adv_wins": [ - 38 + 40 ], "man_dis_rounds": [ - 38 + 40 ], "man_dis_wins": [ - 38 + 40 ], "match": [ - 2644 + 2761 ], "match_id": [ - 4921 + 4993 ], "match_lineup": [ - 2324 + 2441 ], "match_lineup_id": [ - 4921 + 4993 ], "match_map": [ - 2482 + 2599 ], "match_map_id": [ - 4921 + 4993 ], "opening_attempts": [ - 38 + 40 ], "opening_wins": [ - 38 + 40 ], "pistol_rounds": [ - 38 + 40 ], "pistol_wins": [ - 38 + 40 ], "round_wins": [ - 38 + 40 ], "rounds": [ - 38 + 40 ], "side": [ - 78 + 80 ], "won_buy_eco": [ - 38 + 40 ], "won_buy_force": [ - 38 + 40 ], "won_buy_full": [ - 38 + 40 ], "won_buy_pistol": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "v_match_lineup_map_stats_aggregate": { "aggregate": [ - 5172 + 5244 ], "nodes": [ - 5170 + 5242 ], "__typename": [ - 78 + 80 ] }, "v_match_lineup_map_stats_aggregate_fields": { "avg": [ - 5173 + 5245 ], "count": [ - 38, + 40, { "columns": [ - 5178, + 5250, "[v_match_lineup_map_stats_select_column!]" ], "distinct": [ - 3 + 5 ] } ], "max": [ - 5175 + 5247 ], "min": [ - 5176 + 5248 ], "stddev": [ - 5179 + 5251 ], "stddev_pop": [ - 5180 + 5252 ], "stddev_samp": [ - 5181 + 5253 ], "sum": [ - 5184 + 5256 ], "var_pop": [ - 5185 + 5257 ], "var_samp": [ - 5186 + 5258 ], "variance": [ - 5187 + 5259 ], "__typename": [ - 78 + 80 ] }, "v_match_lineup_map_stats_avg_fields": { "man_adv_rounds": [ - 29 + 31 ], "man_adv_wins": [ - 29 + 31 ], "man_dis_rounds": [ - 29 + 31 ], "man_dis_wins": [ - 29 + 31 ], "opening_attempts": [ - 29 + 31 ], "opening_wins": [ - 29 + 31 ], "pistol_rounds": [ - 29 + 31 ], "pistol_wins": [ - 29 + 31 ], "round_wins": [ - 29 + 31 ], "rounds": [ - 29 + 31 ], "won_buy_eco": [ - 29 + 31 ], "won_buy_force": [ - 29 + 31 ], "won_buy_full": [ - 29 + 31 ], "won_buy_pistol": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_match_lineup_map_stats_bool_exp": { "_and": [ - 5174 + 5246 ], "_not": [ - 5174 + 5246 ], "_or": [ - 5174 + 5246 ], "man_adv_rounds": [ - 39 + 41 ], "man_adv_wins": [ - 39 + 41 ], "man_dis_rounds": [ - 39 + 41 ], "man_dis_wins": [ - 39 + 41 ], "match": [ - 2653 + 2770 ], "match_id": [ - 4923 + 4995 ], "match_lineup": [ - 2333 + 2450 ], "match_lineup_id": [ - 4923 + 4995 ], "match_map": [ - 2491 + 2608 ], "match_map_id": [ - 4923 + 4995 ], "opening_attempts": [ - 39 + 41 ], "opening_wins": [ - 39 + 41 ], "pistol_rounds": [ - 39 + 41 ], "pistol_wins": [ - 39 + 41 ], "round_wins": [ - 39 + 41 ], "rounds": [ - 39 + 41 ], "side": [ - 80 + 82 ], "won_buy_eco": [ - 39 + 41 ], "won_buy_force": [ - 39 + 41 ], "won_buy_full": [ - 39 + 41 ], "won_buy_pistol": [ - 39 + 41 ], "__typename": [ - 78 + 80 ] }, "v_match_lineup_map_stats_max_fields": { "man_adv_rounds": [ - 38 + 40 ], "man_adv_wins": [ - 38 + 40 ], "man_dis_rounds": [ - 38 + 40 ], "man_dis_wins": [ - 38 + 40 ], "match_id": [ - 4921 + 4993 ], "match_lineup_id": [ - 4921 + 4993 ], "match_map_id": [ - 4921 + 4993 ], "opening_attempts": [ - 38 + 40 ], "opening_wins": [ - 38 + 40 ], "pistol_rounds": [ - 38 + 40 ], "pistol_wins": [ - 38 + 40 ], "round_wins": [ - 38 + 40 ], "rounds": [ - 38 + 40 ], "side": [ - 78 + 80 ], "won_buy_eco": [ - 38 + 40 ], "won_buy_force": [ - 38 + 40 ], "won_buy_full": [ - 38 + 40 ], "won_buy_pistol": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "v_match_lineup_map_stats_min_fields": { "man_adv_rounds": [ - 38 + 40 ], "man_adv_wins": [ - 38 + 40 ], "man_dis_rounds": [ - 38 + 40 ], "man_dis_wins": [ - 38 + 40 ], "match_id": [ - 4921 + 4993 ], "match_lineup_id": [ - 4921 + 4993 ], "match_map_id": [ - 4921 + 4993 ], "opening_attempts": [ - 38 + 40 ], "opening_wins": [ - 38 + 40 ], "pistol_rounds": [ - 38 + 40 ], "pistol_wins": [ - 38 + 40 ], "round_wins": [ - 38 + 40 ], "rounds": [ - 38 + 40 ], "side": [ - 78 + 80 ], "won_buy_eco": [ - 38 + 40 ], "won_buy_force": [ - 38 + 40 ], "won_buy_full": [ - 38 + 40 ], "won_buy_pistol": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "v_match_lineup_map_stats_order_by": { "man_adv_rounds": [ - 2829 + 2946 ], "man_adv_wins": [ - 2829 + 2946 ], "man_dis_rounds": [ - 2829 + 2946 ], "man_dis_wins": [ - 2829 + 2946 ], "match": [ - 2664 + 2781 ], "match_id": [ - 2829 + 2946 ], "match_lineup": [ - 2344 + 2461 ], "match_lineup_id": [ - 2829 + 2946 ], "match_map": [ - 2502 + 2619 ], "match_map_id": [ - 2829 + 2946 ], "opening_attempts": [ - 2829 + 2946 ], "opening_wins": [ - 2829 + 2946 ], "pistol_rounds": [ - 2829 + 2946 ], "pistol_wins": [ - 2829 + 2946 ], "round_wins": [ - 2829 + 2946 ], "rounds": [ - 2829 + 2946 ], "side": [ - 2829 + 2946 ], "won_buy_eco": [ - 2829 + 2946 ], "won_buy_force": [ - 2829 + 2946 ], "won_buy_full": [ - 2829 + 2946 ], "won_buy_pistol": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "v_match_lineup_map_stats_select_column": {}, "v_match_lineup_map_stats_stddev_fields": { "man_adv_rounds": [ - 29 + 31 ], "man_adv_wins": [ - 29 + 31 ], "man_dis_rounds": [ - 29 + 31 ], "man_dis_wins": [ - 29 + 31 ], "opening_attempts": [ - 29 + 31 ], "opening_wins": [ - 29 + 31 ], "pistol_rounds": [ - 29 + 31 ], "pistol_wins": [ - 29 + 31 ], "round_wins": [ - 29 + 31 ], "rounds": [ - 29 + 31 ], "won_buy_eco": [ - 29 + 31 ], "won_buy_force": [ - 29 + 31 ], "won_buy_full": [ - 29 + 31 ], "won_buy_pistol": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_match_lineup_map_stats_stddev_pop_fields": { "man_adv_rounds": [ - 29 + 31 ], "man_adv_wins": [ - 29 + 31 ], "man_dis_rounds": [ - 29 + 31 ], "man_dis_wins": [ - 29 + 31 ], "opening_attempts": [ - 29 + 31 ], "opening_wins": [ - 29 + 31 ], "pistol_rounds": [ - 29 + 31 ], "pistol_wins": [ - 29 + 31 ], "round_wins": [ - 29 + 31 ], "rounds": [ - 29 + 31 ], "won_buy_eco": [ - 29 + 31 ], "won_buy_force": [ - 29 + 31 ], "won_buy_full": [ - 29 + 31 ], "won_buy_pistol": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_match_lineup_map_stats_stddev_samp_fields": { "man_adv_rounds": [ - 29 + 31 ], "man_adv_wins": [ - 29 + 31 ], "man_dis_rounds": [ - 29 + 31 ], "man_dis_wins": [ - 29 + 31 ], "opening_attempts": [ - 29 + 31 ], "opening_wins": [ - 29 + 31 ], "pistol_rounds": [ - 29 + 31 ], "pistol_wins": [ - 29 + 31 ], "round_wins": [ - 29 + 31 ], "rounds": [ - 29 + 31 ], "won_buy_eco": [ - 29 + 31 ], "won_buy_force": [ - 29 + 31 ], "won_buy_full": [ - 29 + 31 ], "won_buy_pistol": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_match_lineup_map_stats_stream_cursor_input": { "initial_value": [ - 5183 + 5255 ], "ordering": [ - 236 + 308 ], "__typename": [ - 78 + 80 ] }, "v_match_lineup_map_stats_stream_cursor_value_input": { "man_adv_rounds": [ - 38 + 40 ], "man_adv_wins": [ - 38 + 40 ], "man_dis_rounds": [ - 38 + 40 ], "man_dis_wins": [ - 38 + 40 ], "match_id": [ - 4921 + 4993 ], "match_lineup_id": [ - 4921 + 4993 ], "match_map_id": [ - 4921 + 4993 ], "opening_attempts": [ - 38 + 40 ], "opening_wins": [ - 38 + 40 ], "pistol_rounds": [ - 38 + 40 ], "pistol_wins": [ - 38 + 40 ], "round_wins": [ - 38 + 40 ], "rounds": [ - 38 + 40 ], "side": [ - 78 + 80 ], "won_buy_eco": [ - 38 + 40 ], "won_buy_force": [ - 38 + 40 ], "won_buy_full": [ - 38 + 40 ], "won_buy_pistol": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "v_match_lineup_map_stats_sum_fields": { "man_adv_rounds": [ - 38 + 40 ], "man_adv_wins": [ - 38 + 40 ], "man_dis_rounds": [ - 38 + 40 ], "man_dis_wins": [ - 38 + 40 ], "opening_attempts": [ - 38 + 40 ], "opening_wins": [ - 38 + 40 ], "pistol_rounds": [ - 38 + 40 ], "pistol_wins": [ - 38 + 40 ], "round_wins": [ - 38 + 40 ], "rounds": [ - 38 + 40 ], "won_buy_eco": [ - 38 + 40 ], "won_buy_force": [ - 38 + 40 ], "won_buy_full": [ - 38 + 40 ], "won_buy_pistol": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "v_match_lineup_map_stats_var_pop_fields": { "man_adv_rounds": [ - 29 + 31 ], "man_adv_wins": [ - 29 + 31 ], "man_dis_rounds": [ - 29 + 31 ], "man_dis_wins": [ - 29 + 31 ], "opening_attempts": [ - 29 + 31 ], "opening_wins": [ - 29 + 31 ], "pistol_rounds": [ - 29 + 31 ], "pistol_wins": [ - 29 + 31 ], "round_wins": [ - 29 + 31 ], "rounds": [ - 29 + 31 ], "won_buy_eco": [ - 29 + 31 ], "won_buy_force": [ - 29 + 31 ], "won_buy_full": [ - 29 + 31 ], "won_buy_pistol": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_match_lineup_map_stats_var_samp_fields": { "man_adv_rounds": [ - 29 + 31 ], "man_adv_wins": [ - 29 + 31 ], "man_dis_rounds": [ - 29 + 31 ], "man_dis_wins": [ - 29 + 31 ], "opening_attempts": [ - 29 + 31 ], "opening_wins": [ - 29 + 31 ], "pistol_rounds": [ - 29 + 31 ], "pistol_wins": [ - 29 + 31 ], "round_wins": [ - 29 + 31 ], "rounds": [ - 29 + 31 ], "won_buy_eco": [ - 29 + 31 ], "won_buy_force": [ - 29 + 31 ], "won_buy_full": [ - 29 + 31 ], "won_buy_pistol": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_match_lineup_map_stats_variance_fields": { "man_adv_rounds": [ - 29 + 31 ], "man_adv_wins": [ - 29 + 31 ], "man_dis_rounds": [ - 29 + 31 ], "man_dis_wins": [ - 29 + 31 ], "opening_attempts": [ - 29 + 31 ], "opening_wins": [ - 29 + 31 ], "pistol_rounds": [ - 29 + 31 ], "pistol_wins": [ - 29 + 31 ], "round_wins": [ - 29 + 31 ], "rounds": [ - 29 + 31 ], "won_buy_eco": [ - 29 + 31 ], "won_buy_force": [ - 29 + 31 ], "won_buy_full": [ - 29 + 31 ], "won_buy_pistol": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_match_map_backup_rounds": { "has_backup_file": [ - 3 + 5 ], "match_map_id": [ - 4921 + 4993 ], "round": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "v_match_map_backup_rounds_aggregate": { "aggregate": [ - 5190 + 5262 ], "nodes": [ - 5188 + 5260 ], "__typename": [ - 78 + 80 ] }, "v_match_map_backup_rounds_aggregate_fields": { "avg": [ - 5191 + 5263 ], "count": [ - 38, + 40, { "columns": [ - 5199, + 5271, "[v_match_map_backup_rounds_select_column!]" ], "distinct": [ - 3 + 5 ] } ], "max": [ - 5195 + 5267 ], "min": [ - 5196 + 5268 ], "stddev": [ - 5201 + 5273 ], "stddev_pop": [ - 5202 + 5274 ], "stddev_samp": [ - 5203 + 5275 ], "sum": [ - 5206 + 5278 ], "var_pop": [ - 5208 + 5280 ], "var_samp": [ - 5209 + 5281 ], "variance": [ - 5210 + 5282 ], "__typename": [ - 78 + 80 ] }, "v_match_map_backup_rounds_avg_fields": { "round": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_match_map_backup_rounds_bool_exp": { "_and": [ - 5192 + 5264 ], "_not": [ - 5192 + 5264 ], "_or": [ - 5192 + 5264 ], "has_backup_file": [ - 4 + 6 ], "match_map_id": [ - 4923 + 4995 ], "round": [ - 39 + 41 ], "__typename": [ - 78 + 80 ] }, "v_match_map_backup_rounds_inc_input": { "round": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "v_match_map_backup_rounds_insert_input": { "has_backup_file": [ - 3 + 5 ], "match_map_id": [ - 4921 + 4993 ], "round": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "v_match_map_backup_rounds_max_fields": { "match_map_id": [ - 4921 + 4993 ], "round": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "v_match_map_backup_rounds_min_fields": { "match_map_id": [ - 4921 + 4993 ], "round": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "v_match_map_backup_rounds_mutation_response": { "affected_rows": [ - 38 + 40 ], "returning": [ - 5188 + 5260 ], "__typename": [ - 78 + 80 ] }, "v_match_map_backup_rounds_order_by": { "has_backup_file": [ - 2829 + 2946 ], "match_map_id": [ - 2829 + 2946 ], "round": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "v_match_map_backup_rounds_select_column": {}, "v_match_map_backup_rounds_set_input": { "has_backup_file": [ - 3 + 5 ], "match_map_id": [ - 4921 + 4993 ], "round": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "v_match_map_backup_rounds_stddev_fields": { "round": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_match_map_backup_rounds_stddev_pop_fields": { "round": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_match_map_backup_rounds_stddev_samp_fields": { "round": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_match_map_backup_rounds_stream_cursor_input": { "initial_value": [ - 5205 + 5277 ], "ordering": [ - 236 + 308 ], "__typename": [ - 78 + 80 ] }, "v_match_map_backup_rounds_stream_cursor_value_input": { "has_backup_file": [ - 3 + 5 ], "match_map_id": [ - 4921 + 4993 ], "round": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "v_match_map_backup_rounds_sum_fields": { "round": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "v_match_map_backup_rounds_updates": { "_inc": [ - 5193 + 5265 ], "_set": [ - 5200 + 5272 ], "where": [ - 5192 + 5264 ], "__typename": [ - 78 + 80 ] }, "v_match_map_backup_rounds_var_pop_fields": { "round": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_match_map_backup_rounds_var_samp_fields": { "round": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_match_map_backup_rounds_variance_fields": { "round": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_match_player_buy_types": { "deaths": [ - 38 + 40 ], "kills": [ - 38 + 40 ], "match": [ - 2644 + 2761 ], "match_id": [ - 4921 + 4993 ], "match_lineup": [ - 2324 + 2441 ], "match_lineup_id": [ - 4921 + 4993 ], "match_map": [ - 2482 + 2599 ], "match_map_id": [ - 4921 + 4993 ], "matchup": [ - 78 + 80 ], "player": [ - 3787 + 3904 ], "rounds": [ - 38 + 40 ], "side": [ - 78 + 80 ], "steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "v_match_player_buy_types_aggregate": { "aggregate": [ - 5213 + 5285 ], "nodes": [ - 5211 + 5283 ], "__typename": [ - 78 + 80 ] }, "v_match_player_buy_types_aggregate_fields": { "avg": [ - 5214 + 5286 ], "count": [ - 38, + 40, { "columns": [ - 5219, + 5291, "[v_match_player_buy_types_select_column!]" ], "distinct": [ - 3 + 5 ] } ], "max": [ - 5216 + 5288 ], "min": [ - 5217 + 5289 ], "stddev": [ - 5220 + 5292 ], "stddev_pop": [ - 5221 + 5293 ], "stddev_samp": [ - 5222 + 5294 ], "sum": [ - 5225 + 5297 ], "var_pop": [ - 5226 + 5298 ], "var_samp": [ - 5227 + 5299 ], "variance": [ - 5228 + 5300 ], "__typename": [ - 78 + 80 ] }, "v_match_player_buy_types_avg_fields": { "deaths": [ - 29 + 31 ], "kills": [ - 29 + 31 ], "rounds": [ - 29 + 31 ], "steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_match_player_buy_types_bool_exp": { "_and": [ - 5215 + 5287 ], "_not": [ - 5215 + 5287 ], "_or": [ - 5215 + 5287 ], "deaths": [ - 39 + 41 ], "kills": [ - 39 + 41 ], "match": [ - 2653 + 2770 ], "match_id": [ - 4923 + 4995 ], "match_lineup": [ - 2333 + 2450 ], "match_lineup_id": [ - 4923 + 4995 ], "match_map": [ - 2491 + 2608 ], "match_map_id": [ - 4923 + 4995 ], "matchup": [ - 80 + 82 ], "player": [ - 3791 + 3908 ], "rounds": [ - 39 + 41 ], "side": [ - 80 + 82 ], "steam_id": [ - 182 + 254 ], "__typename": [ - 78 + 80 ] }, "v_match_player_buy_types_max_fields": { "deaths": [ - 38 + 40 ], "kills": [ - 38 + 40 ], "match_id": [ - 4921 + 4993 ], "match_lineup_id": [ - 4921 + 4993 ], "match_map_id": [ - 4921 + 4993 ], "matchup": [ - 78 + 80 ], "rounds": [ - 38 + 40 ], "side": [ - 78 + 80 ], "steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "v_match_player_buy_types_min_fields": { "deaths": [ - 38 + 40 ], "kills": [ - 38 + 40 ], "match_id": [ - 4921 + 4993 ], "match_lineup_id": [ - 4921 + 4993 ], "match_map_id": [ - 4921 + 4993 ], "matchup": [ - 78 + 80 ], "rounds": [ - 38 + 40 ], "side": [ - 78 + 80 ], "steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "v_match_player_buy_types_order_by": { "deaths": [ - 2829 + 2946 ], "kills": [ - 2829 + 2946 ], "match": [ - 2664 + 2781 ], "match_id": [ - 2829 + 2946 ], "match_lineup": [ - 2344 + 2461 ], "match_lineup_id": [ - 2829 + 2946 ], "match_map": [ - 2502 + 2619 ], "match_map_id": [ - 2829 + 2946 ], "matchup": [ - 2829 + 2946 ], "player": [ - 3800 + 3917 ], "rounds": [ - 2829 + 2946 ], "side": [ - 2829 + 2946 ], "steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "v_match_player_buy_types_select_column": {}, "v_match_player_buy_types_stddev_fields": { "deaths": [ - 29 + 31 ], "kills": [ - 29 + 31 ], "rounds": [ - 29 + 31 ], "steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_match_player_buy_types_stddev_pop_fields": { "deaths": [ - 29 + 31 ], "kills": [ - 29 + 31 ], "rounds": [ - 29 + 31 ], "steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_match_player_buy_types_stddev_samp_fields": { "deaths": [ - 29 + 31 ], "kills": [ - 29 + 31 ], "rounds": [ - 29 + 31 ], "steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_match_player_buy_types_stream_cursor_input": { "initial_value": [ - 5224 + 5296 ], "ordering": [ - 236 + 308 ], "__typename": [ - 78 + 80 ] }, "v_match_player_buy_types_stream_cursor_value_input": { "deaths": [ - 38 + 40 ], "kills": [ - 38 + 40 ], "match_id": [ - 4921 + 4993 ], "match_lineup_id": [ - 4921 + 4993 ], "match_map_id": [ - 4921 + 4993 ], "matchup": [ - 78 + 80 ], "rounds": [ - 38 + 40 ], "side": [ - 78 + 80 ], "steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "v_match_player_buy_types_sum_fields": { "deaths": [ - 38 + 40 ], "kills": [ - 38 + 40 ], "rounds": [ - 38 + 40 ], "steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "v_match_player_buy_types_var_pop_fields": { "deaths": [ - 29 + 31 ], "kills": [ - 29 + 31 ], "rounds": [ - 29 + 31 ], "steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_match_player_buy_types_var_samp_fields": { "deaths": [ - 29 + 31 ], "kills": [ - 29 + 31 ], "rounds": [ - 29 + 31 ], "steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_match_player_buy_types_variance_fields": { "deaths": [ - 29 + 31 ], "kills": [ - 29 + 31 ], "rounds": [ - 29 + 31 ], "steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_match_player_opening_duels": { "attempts": [ - 38 + 40 ], "deaths": [ - 38 + 40 ], "match": [ - 2644 + 2761 ], "match_id": [ - 4921 + 4993 ], "match_lineup": [ - 2324 + 2441 ], "match_lineup_id": [ - 4921 + 4993 ], "match_map": [ - 2482 + 2599 ], "match_map_id": [ - 4921 + 4993 ], "player": [ - 3787 + 3904 ], "side": [ - 78 + 80 ], "steam_id": [ - 180 + 252 ], "traded_deaths": [ - 38 + 40 ], "wins": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "v_match_player_opening_duels_aggregate": { "aggregate": [ - 5233 + 5305 ], "nodes": [ - 5229 + 5301 ], "__typename": [ - 78 + 80 ] }, "v_match_player_opening_duels_aggregate_bool_exp": { "count": [ - 5232 + 5304 ], "__typename": [ - 78 + 80 ] }, "v_match_player_opening_duels_aggregate_bool_exp_count": { "arguments": [ - 5245 + 5317 ], "distinct": [ - 3 + 5 ], "filter": [ - 5238 + 5310 ], "predicate": [ - 39 + 41 ], "__typename": [ - 78 + 80 ] }, "v_match_player_opening_duels_aggregate_fields": { "avg": [ - 5236 + 5308 ], "count": [ - 38, + 40, { "columns": [ - 5245, + 5317, "[v_match_player_opening_duels_select_column!]" ], "distinct": [ - 3 + 5 ] } ], "max": [ - 5240 + 5312 ], "min": [ - 5242 + 5314 ], "stddev": [ - 5246 + 5318 ], "stddev_pop": [ - 5248 + 5320 ], "stddev_samp": [ - 5250 + 5322 ], "sum": [ - 5254 + 5326 ], "var_pop": [ - 5256 + 5328 ], "var_samp": [ - 5258 + 5330 ], "variance": [ - 5260 + 5332 ], "__typename": [ - 78 + 80 ] }, "v_match_player_opening_duels_aggregate_order_by": { "avg": [ - 5237 + 5309 ], "count": [ - 2829 + 2946 ], "max": [ - 5241 + 5313 ], "min": [ - 5243 + 5315 ], "stddev": [ - 5247 + 5319 ], "stddev_pop": [ - 5249 + 5321 ], "stddev_samp": [ - 5251 + 5323 ], "sum": [ - 5255 + 5327 ], "var_pop": [ - 5257 + 5329 ], "var_samp": [ - 5259 + 5331 ], "variance": [ - 5261 + 5333 ], "__typename": [ - 78 + 80 ] }, "v_match_player_opening_duels_arr_rel_insert_input": { "data": [ - 5239 + 5311 ], "__typename": [ - 78 + 80 ] }, "v_match_player_opening_duels_avg_fields": { "attempts": [ - 29 + 31 ], "deaths": [ - 29 + 31 ], "steam_id": [ - 29 + 31 ], "traded_deaths": [ - 29 + 31 ], "wins": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_match_player_opening_duels_avg_order_by": { "attempts": [ - 2829 + 2946 ], "deaths": [ - 2829 + 2946 ], "steam_id": [ - 2829 + 2946 ], "traded_deaths": [ - 2829 + 2946 ], "wins": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "v_match_player_opening_duels_bool_exp": { "_and": [ - 5238 + 5310 ], "_not": [ - 5238 + 5310 ], "_or": [ - 5238 + 5310 ], "attempts": [ - 39 + 41 ], "deaths": [ - 39 + 41 ], "match": [ - 2653 + 2770 ], "match_id": [ - 4923 + 4995 ], "match_lineup": [ - 2333 + 2450 ], "match_lineup_id": [ - 4923 + 4995 ], "match_map": [ - 2491 + 2608 ], "match_map_id": [ - 4923 + 4995 ], "player": [ - 3791 + 3908 ], "side": [ - 80 + 82 ], "steam_id": [ - 182 + 254 ], "traded_deaths": [ - 39 + 41 ], "wins": [ - 39 + 41 ], "__typename": [ - 78 + 80 ] }, "v_match_player_opening_duels_insert_input": { "attempts": [ - 38 + 40 ], "deaths": [ - 38 + 40 ], "match": [ - 2662 + 2779 ], "match_id": [ - 4921 + 4993 ], "match_lineup": [ - 2342 + 2459 ], "match_lineup_id": [ - 4921 + 4993 ], "match_map": [ - 2500 + 2617 ], "match_map_id": [ - 4921 + 4993 ], "player": [ - 3798 + 3915 ], "side": [ - 78 + 80 ], "steam_id": [ - 180 + 252 ], "traded_deaths": [ - 38 + 40 ], "wins": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "v_match_player_opening_duels_max_fields": { "attempts": [ - 38 + 40 ], "deaths": [ - 38 + 40 ], "match_id": [ - 4921 + 4993 ], "match_lineup_id": [ - 4921 + 4993 ], "match_map_id": [ - 4921 + 4993 ], "side": [ - 78 + 80 ], "steam_id": [ - 180 + 252 ], "traded_deaths": [ - 38 + 40 ], "wins": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "v_match_player_opening_duels_max_order_by": { "attempts": [ - 2829 + 2946 ], "deaths": [ - 2829 + 2946 ], "match_id": [ - 2829 + 2946 ], "match_lineup_id": [ - 2829 + 2946 ], "match_map_id": [ - 2829 + 2946 ], "side": [ - 2829 + 2946 ], "steam_id": [ - 2829 + 2946 ], "traded_deaths": [ - 2829 + 2946 ], "wins": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "v_match_player_opening_duels_min_fields": { "attempts": [ - 38 + 40 ], "deaths": [ - 38 + 40 ], "match_id": [ - 4921 + 4993 ], "match_lineup_id": [ - 4921 + 4993 ], "match_map_id": [ - 4921 + 4993 ], "side": [ - 78 + 80 ], "steam_id": [ - 180 + 252 ], "traded_deaths": [ - 38 + 40 ], "wins": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "v_match_player_opening_duels_min_order_by": { "attempts": [ - 2829 + 2946 ], "deaths": [ - 2829 + 2946 ], "match_id": [ - 2829 + 2946 ], "match_lineup_id": [ - 2829 + 2946 ], "match_map_id": [ - 2829 + 2946 ], "side": [ - 2829 + 2946 ], "steam_id": [ - 2829 + 2946 ], "traded_deaths": [ - 2829 + 2946 ], "wins": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "v_match_player_opening_duels_order_by": { "attempts": [ - 2829 + 2946 ], "deaths": [ - 2829 + 2946 ], "match": [ - 2664 + 2781 ], "match_id": [ - 2829 + 2946 ], "match_lineup": [ - 2344 + 2461 ], "match_lineup_id": [ - 2829 + 2946 ], "match_map": [ - 2502 + 2619 ], "match_map_id": [ - 2829 + 2946 ], "player": [ - 3800 + 3917 ], "side": [ - 2829 + 2946 ], "steam_id": [ - 2829 + 2946 ], "traded_deaths": [ - 2829 + 2946 ], "wins": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "v_match_player_opening_duels_select_column": {}, "v_match_player_opening_duels_stddev_fields": { "attempts": [ - 29 + 31 ], "deaths": [ - 29 + 31 ], "steam_id": [ - 29 + 31 ], "traded_deaths": [ - 29 + 31 ], "wins": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_match_player_opening_duels_stddev_order_by": { "attempts": [ - 2829 + 2946 ], "deaths": [ - 2829 + 2946 ], "steam_id": [ - 2829 + 2946 ], "traded_deaths": [ - 2829 + 2946 ], "wins": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "v_match_player_opening_duels_stddev_pop_fields": { "attempts": [ - 29 + 31 ], "deaths": [ - 29 + 31 ], "steam_id": [ - 29 + 31 ], "traded_deaths": [ - 29 + 31 ], "wins": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_match_player_opening_duels_stddev_pop_order_by": { "attempts": [ - 2829 + 2946 ], "deaths": [ - 2829 + 2946 ], "steam_id": [ - 2829 + 2946 ], "traded_deaths": [ - 2829 + 2946 ], "wins": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "v_match_player_opening_duels_stddev_samp_fields": { "attempts": [ - 29 + 31 ], "deaths": [ - 29 + 31 ], "steam_id": [ - 29 + 31 ], "traded_deaths": [ - 29 + 31 ], "wins": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_match_player_opening_duels_stddev_samp_order_by": { "attempts": [ - 2829 + 2946 ], "deaths": [ - 2829 + 2946 ], "steam_id": [ - 2829 + 2946 ], "traded_deaths": [ - 2829 + 2946 ], "wins": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "v_match_player_opening_duels_stream_cursor_input": { "initial_value": [ - 5253 + 5325 ], "ordering": [ - 236 + 308 ], "__typename": [ - 78 + 80 ] }, "v_match_player_opening_duels_stream_cursor_value_input": { "attempts": [ - 38 + 40 ], "deaths": [ - 38 + 40 ], "match_id": [ - 4921 + 4993 ], "match_lineup_id": [ - 4921 + 4993 ], "match_map_id": [ - 4921 + 4993 ], "side": [ - 78 + 80 ], "steam_id": [ - 180 + 252 ], "traded_deaths": [ - 38 + 40 ], "wins": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "v_match_player_opening_duels_sum_fields": { "attempts": [ - 38 + 40 ], "deaths": [ - 38 + 40 ], "steam_id": [ - 180 + 252 ], "traded_deaths": [ - 38 + 40 ], "wins": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "v_match_player_opening_duels_sum_order_by": { "attempts": [ - 2829 + 2946 ], "deaths": [ - 2829 + 2946 ], "steam_id": [ - 2829 + 2946 ], "traded_deaths": [ - 2829 + 2946 ], "wins": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "v_match_player_opening_duels_var_pop_fields": { "attempts": [ - 29 + 31 ], "deaths": [ - 29 + 31 ], "steam_id": [ - 29 + 31 ], "traded_deaths": [ - 29 + 31 ], "wins": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_match_player_opening_duels_var_pop_order_by": { "attempts": [ - 2829 + 2946 ], "deaths": [ - 2829 + 2946 ], "steam_id": [ - 2829 + 2946 ], "traded_deaths": [ - 2829 + 2946 ], "wins": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "v_match_player_opening_duels_var_samp_fields": { "attempts": [ - 29 + 31 ], "deaths": [ - 29 + 31 ], "steam_id": [ - 29 + 31 ], "traded_deaths": [ - 29 + 31 ], "wins": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_match_player_opening_duels_var_samp_order_by": { "attempts": [ - 2829 + 2946 ], "deaths": [ - 2829 + 2946 ], "steam_id": [ - 2829 + 2946 ], "traded_deaths": [ - 2829 + 2946 ], "wins": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "v_match_player_opening_duels_variance_fields": { "attempts": [ - 29 + 31 ], "deaths": [ - 29 + 31 ], "steam_id": [ - 29 + 31 ], "traded_deaths": [ - 29 + 31 ], "wins": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_match_player_opening_duels_variance_order_by": { "attempts": [ - 2829 + 2946 ], "deaths": [ - 2829 + 2946 ], "steam_id": [ - 2829 + 2946 ], "traded_deaths": [ - 2829 + 2946 ], "wins": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "v_player_arch_nemesis": { "attacker_id": [ - 180 + 252 ], "kill_count": [ - 180 + 252 ], "nemsis": [ - 3787 + 3904 ], "player": [ - 3787 + 3904 ], "victim_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "v_player_arch_nemesis_aggregate": { "aggregate": [ - 5264 + 5336 ], "nodes": [ - 5262 + 5334 ], "__typename": [ - 78 + 80 ] }, "v_player_arch_nemesis_aggregate_fields": { "avg": [ - 5265 + 5337 ], "count": [ - 38, + 40, { "columns": [ - 5270, + 5342, "[v_player_arch_nemesis_select_column!]" ], "distinct": [ - 3 + 5 ] } ], "max": [ - 5267 + 5339 ], "min": [ - 5268 + 5340 ], "stddev": [ - 5271 + 5343 ], "stddev_pop": [ - 5272 + 5344 ], "stddev_samp": [ - 5273 + 5345 ], "sum": [ - 5276 + 5348 ], "var_pop": [ - 5277 + 5349 ], "var_samp": [ - 5278 + 5350 ], "variance": [ - 5279 + 5351 ], "__typename": [ - 78 + 80 ] }, "v_player_arch_nemesis_avg_fields": { "attacker_id": [ - 29 + 31 ], "kill_count": [ - 29 + 31 ], "victim_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_player_arch_nemesis_bool_exp": { "_and": [ - 5266 + 5338 ], "_not": [ - 5266 + 5338 ], "_or": [ - 5266 + 5338 ], "attacker_id": [ - 182 + 254 ], "kill_count": [ - 182 + 254 ], "nemsis": [ - 3791 + 3908 ], "player": [ - 3791 + 3908 ], "victim_id": [ - 182 + 254 ], "__typename": [ - 78 + 80 ] }, "v_player_arch_nemesis_max_fields": { "attacker_id": [ - 180 + 252 ], "kill_count": [ - 180 + 252 ], "victim_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "v_player_arch_nemesis_min_fields": { "attacker_id": [ - 180 + 252 ], "kill_count": [ - 180 + 252 ], "victim_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "v_player_arch_nemesis_order_by": { "attacker_id": [ - 2829 + 2946 ], "kill_count": [ - 2829 + 2946 ], "nemsis": [ - 3800 + 3917 ], "player": [ - 3800 + 3917 ], "victim_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "v_player_arch_nemesis_select_column": {}, "v_player_arch_nemesis_stddev_fields": { "attacker_id": [ - 29 + 31 ], "kill_count": [ - 29 + 31 ], "victim_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_player_arch_nemesis_stddev_pop_fields": { "attacker_id": [ - 29 + 31 ], "kill_count": [ - 29 + 31 ], "victim_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_player_arch_nemesis_stddev_samp_fields": { "attacker_id": [ - 29 + 31 ], "kill_count": [ - 29 + 31 ], "victim_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_player_arch_nemesis_stream_cursor_input": { "initial_value": [ - 5275 + 5347 ], "ordering": [ - 236 + 308 ], "__typename": [ - 78 + 80 ] }, "v_player_arch_nemesis_stream_cursor_value_input": { "attacker_id": [ - 180 + 252 ], "kill_count": [ - 180 + 252 ], "victim_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "v_player_arch_nemesis_sum_fields": { "attacker_id": [ - 180 + 252 ], "kill_count": [ - 180 + 252 ], "victim_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "v_player_arch_nemesis_var_pop_fields": { "attacker_id": [ - 29 + 31 ], "kill_count": [ - 29 + 31 ], "victim_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_player_arch_nemesis_var_samp_fields": { "attacker_id": [ - 29 + 31 ], "kill_count": [ - 29 + 31 ], "victim_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_player_arch_nemesis_variance_fields": { "attacker_id": [ - 29 + 31 ], "kill_count": [ - 29 + 31 ], "victim_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_player_damage": { "avg_damage_per_round": [ - 180 + 252 ], "player": [ - 3787 + 3904 ], "player_steam_id": [ - 180 + 252 ], "total_damage": [ - 180 + 252 ], "total_rounds": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "v_player_damage_aggregate": { "aggregate": [ - 5282 + 5354 ], "nodes": [ - 5280 + 5352 ], "__typename": [ - 78 + 80 ] }, "v_player_damage_aggregate_fields": { "avg": [ - 5283 + 5355 ], "count": [ - 38, + 40, { "columns": [ - 5288, + 5360, "[v_player_damage_select_column!]" ], "distinct": [ - 3 + 5 ] } ], "max": [ - 5285 + 5357 ], "min": [ - 5286 + 5358 ], "stddev": [ - 5289 + 5361 ], "stddev_pop": [ - 5290 + 5362 ], "stddev_samp": [ - 5291 + 5363 ], "sum": [ - 5294 + 5366 ], "var_pop": [ - 5295 + 5367 ], "var_samp": [ - 5296 + 5368 ], "variance": [ - 5297 + 5369 ], "__typename": [ - 78 + 80 ] }, "v_player_damage_avg_fields": { "avg_damage_per_round": [ - 29 + 31 ], "player_steam_id": [ - 29 + 31 ], "total_damage": [ - 29 + 31 ], "total_rounds": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_player_damage_bool_exp": { "_and": [ - 5284 + 5356 ], "_not": [ - 5284 + 5356 ], "_or": [ - 5284 + 5356 ], "avg_damage_per_round": [ - 182 + 254 ], "player": [ - 3791 + 3908 ], "player_steam_id": [ - 182 + 254 ], "total_damage": [ - 182 + 254 ], "total_rounds": [ - 182 + 254 ], "__typename": [ - 78 + 80 ] }, "v_player_damage_max_fields": { "avg_damage_per_round": [ - 180 + 252 ], "player_steam_id": [ - 180 + 252 ], "total_damage": [ - 180 + 252 ], "total_rounds": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "v_player_damage_min_fields": { "avg_damage_per_round": [ - 180 + 252 ], "player_steam_id": [ - 180 + 252 ], "total_damage": [ - 180 + 252 ], "total_rounds": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "v_player_damage_order_by": { "avg_damage_per_round": [ - 2829 + 2946 ], "player": [ - 3800 + 3917 ], "player_steam_id": [ - 2829 + 2946 ], "total_damage": [ - 2829 + 2946 ], "total_rounds": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "v_player_damage_select_column": {}, "v_player_damage_stddev_fields": { "avg_damage_per_round": [ - 29 + 31 ], "player_steam_id": [ - 29 + 31 ], "total_damage": [ - 29 + 31 ], "total_rounds": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_player_damage_stddev_pop_fields": { "avg_damage_per_round": [ - 29 + 31 ], "player_steam_id": [ - 29 + 31 ], "total_damage": [ - 29 + 31 ], "total_rounds": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_player_damage_stddev_samp_fields": { "avg_damage_per_round": [ - 29 + 31 ], "player_steam_id": [ - 29 + 31 ], "total_damage": [ - 29 + 31 ], "total_rounds": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_player_damage_stream_cursor_input": { "initial_value": [ - 5293 + 5365 ], "ordering": [ - 236 + 308 ], "__typename": [ - 78 + 80 ] }, "v_player_damage_stream_cursor_value_input": { "avg_damage_per_round": [ - 180 + 252 ], "player_steam_id": [ - 180 + 252 ], "total_damage": [ - 180 + 252 ], "total_rounds": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "v_player_damage_sum_fields": { "avg_damage_per_round": [ - 180 + 252 ], "player_steam_id": [ - 180 + 252 ], "total_damage": [ - 180 + 252 ], "total_rounds": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "v_player_damage_var_pop_fields": { "avg_damage_per_round": [ - 29 + 31 ], "player_steam_id": [ - 29 + 31 ], "total_damage": [ - 29 + 31 ], "total_rounds": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_player_damage_var_samp_fields": { "avg_damage_per_round": [ - 29 + 31 ], "player_steam_id": [ - 29 + 31 ], "total_damage": [ - 29 + 31 ], "total_rounds": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_player_damage_variance_fields": { "avg_damage_per_round": [ - 29 + 31 ], "player_steam_id": [ - 29 + 31 ], "total_damage": [ - 29 + 31 ], "total_rounds": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_player_elo": { "actual_score": [ - 1547 + 1664 ], "assists": [ - 38 + 40 ], "current_elo": [ - 38 + 40 ], "damage": [ - 38 + 40 ], "damage_percent": [ - 1547 + 1664 ], "deaths": [ - 38 + 40 ], "elo_change": [ - 38 + 40 ], "expected_score": [ - 1547 + 1664 ], "impact": [ - 1547 + 1664 ], "k_factor": [ - 38 + 40 ], "kda": [ - 1547 + 1664 ], "kills": [ - 38 + 40 ], "map_losses": [ - 38 + 40 ], "map_wins": [ - 38 + 40 ], "match": [ - 2644 + 2761 ], "match_created_at": [ - 4376 + 4493 ], "match_id": [ - 4921 + 4993 ], "match_result": [ - 78 + 80 ], "opponent_team_elo_avg": [ - 1547 + 1664 ], "performance_multiplier": [ - 1547 + 1664 ], "player_name": [ - 78 + 80 ], "player_steam_id": [ - 180 + 252 ], "player_team_elo_avg": [ - 1547 + 1664 ], "season_id": [ - 4921 + 4993 ], "series_multiplier": [ - 38 + 40 ], "team_avg_kda": [ - 1547 + 1664 ], "type": [ - 78 + 80 ], "updated_elo": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "v_player_elo_aggregate": { "aggregate": [ - 5312 + 5384 ], "nodes": [ - 5298 + 5370 ], "__typename": [ - 78 + 80 ] }, "v_player_elo_aggregate_bool_exp": { "avg": [ - 5301 + 5373 ], "corr": [ - 5302 + 5374 ], "count": [ - 5304 + 5376 ], "covar_samp": [ - 5305 + 5377 ], "max": [ - 5307 + 5379 ], "min": [ - 5308 + 5380 ], "stddev_samp": [ - 5309 + 5381 ], "sum": [ - 5310 + 5382 ], "var_samp": [ - 5311 + 5383 ], "__typename": [ - 78 + 80 ] }, "v_player_elo_aggregate_bool_exp_avg": { "arguments": [ - 5325 + 5397 ], "distinct": [ - 3 + 5 ], "filter": [ - 5317 + 5389 ], "predicate": [ - 1548 + 1665 ], "__typename": [ - 78 + 80 ] }, "v_player_elo_aggregate_bool_exp_corr": { "arguments": [ - 5303 + 5375 ], "distinct": [ - 3 + 5 ], "filter": [ - 5317 + 5389 ], "predicate": [ - 1548 + 1665 ], "__typename": [ - 78 + 80 ] }, "v_player_elo_aggregate_bool_exp_corr_arguments": { "X": [ - 5326 + 5398 ], "Y": [ - 5326 + 5398 ], "__typename": [ - 78 + 80 ] }, "v_player_elo_aggregate_bool_exp_count": { "arguments": [ - 5324 + 5396 ], "distinct": [ - 3 + 5 ], "filter": [ - 5317 + 5389 ], "predicate": [ - 39 + 41 ], "__typename": [ - 78 + 80 ] }, "v_player_elo_aggregate_bool_exp_covar_samp": { "arguments": [ - 5306 + 5378 ], "distinct": [ - 3 + 5 ], "filter": [ - 5317 + 5389 ], "predicate": [ - 1548 + 1665 ], "__typename": [ - 78 + 80 ] }, "v_player_elo_aggregate_bool_exp_covar_samp_arguments": { "X": [ - 5327 + 5399 ], "Y": [ - 5327 + 5399 ], "__typename": [ - 78 + 80 ] }, "v_player_elo_aggregate_bool_exp_max": { "arguments": [ - 5328 + 5400 ], "distinct": [ - 3 + 5 ], "filter": [ - 5317 + 5389 ], "predicate": [ - 1548 + 1665 ], "__typename": [ - 78 + 80 ] }, "v_player_elo_aggregate_bool_exp_min": { "arguments": [ - 5329 + 5401 ], "distinct": [ - 3 + 5 ], "filter": [ - 5317 + 5389 ], "predicate": [ - 1548 + 1665 ], "__typename": [ - 78 + 80 ] }, "v_player_elo_aggregate_bool_exp_stddev_samp": { "arguments": [ - 5330 + 5402 ], "distinct": [ - 3 + 5 ], "filter": [ - 5317 + 5389 ], "predicate": [ - 1548 + 1665 ], "__typename": [ - 78 + 80 ] }, "v_player_elo_aggregate_bool_exp_sum": { "arguments": [ - 5331 + 5403 ], "distinct": [ - 3 + 5 ], "filter": [ - 5317 + 5389 ], "predicate": [ - 1548 + 1665 ], "__typename": [ - 78 + 80 ] }, "v_player_elo_aggregate_bool_exp_var_samp": { "arguments": [ - 5332 + 5404 ], "distinct": [ - 3 + 5 ], "filter": [ - 5317 + 5389 ], "predicate": [ - 1548 + 1665 ], "__typename": [ - 78 + 80 ] }, "v_player_elo_aggregate_fields": { "avg": [ - 5315 + 5387 ], "count": [ - 38, + 40, { "columns": [ - 5324, + 5396, "[v_player_elo_select_column!]" ], "distinct": [ - 3 + 5 ] } ], "max": [ - 5319 + 5391 ], "min": [ - 5321 + 5393 ], "stddev": [ - 5333 + 5405 ], "stddev_pop": [ - 5335 + 5407 ], "stddev_samp": [ - 5337 + 5409 ], "sum": [ - 5341 + 5413 ], "var_pop": [ - 5343 + 5415 ], "var_samp": [ - 5345 + 5417 ], "variance": [ - 5347 + 5419 ], "__typename": [ - 78 + 80 ] }, "v_player_elo_aggregate_order_by": { "avg": [ - 5316 + 5388 ], "count": [ - 2829 + 2946 ], "max": [ - 5320 + 5392 ], "min": [ - 5322 + 5394 ], "stddev": [ - 5334 + 5406 ], "stddev_pop": [ - 5336 + 5408 ], "stddev_samp": [ - 5338 + 5410 ], "sum": [ - 5342 + 5414 ], "var_pop": [ - 5344 + 5416 ], "var_samp": [ - 5346 + 5418 ], "variance": [ - 5348 + 5420 ], "__typename": [ - 78 + 80 ] }, "v_player_elo_arr_rel_insert_input": { "data": [ - 5318 + 5390 ], "__typename": [ - 78 + 80 ] }, "v_player_elo_avg_fields": { "actual_score": [ - 29 + 31 ], "assists": [ - 29 + 31 ], "current_elo": [ - 29 + 31 ], "damage": [ - 29 + 31 ], "damage_percent": [ - 29 + 31 ], "deaths": [ - 29 + 31 ], "elo_change": [ - 29 + 31 ], "expected_score": [ - 29 + 31 ], "impact": [ - 29 + 31 ], "k_factor": [ - 29 + 31 ], "kda": [ - 29 + 31 ], "kills": [ - 29 + 31 ], "map_losses": [ - 29 + 31 ], "map_wins": [ - 29 + 31 ], "opponent_team_elo_avg": [ - 29 + 31 ], "performance_multiplier": [ - 29 + 31 ], "player_steam_id": [ - 29 + 31 ], "player_team_elo_avg": [ - 29 + 31 ], "series_multiplier": [ - 29 + 31 ], "team_avg_kda": [ - 29 + 31 ], "updated_elo": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_player_elo_avg_order_by": { "actual_score": [ - 2829 + 2946 ], "assists": [ - 2829 + 2946 ], "current_elo": [ - 2829 + 2946 ], "damage": [ - 2829 + 2946 ], "damage_percent": [ - 2829 + 2946 ], "deaths": [ - 2829 + 2946 ], "elo_change": [ - 2829 + 2946 ], "expected_score": [ - 2829 + 2946 ], "impact": [ - 2829 + 2946 ], "k_factor": [ - 2829 + 2946 ], "kda": [ - 2829 + 2946 ], "kills": [ - 2829 + 2946 ], "map_losses": [ - 2829 + 2946 ], "map_wins": [ - 2829 + 2946 ], "opponent_team_elo_avg": [ - 2829 + 2946 ], "performance_multiplier": [ - 2829 + 2946 ], "player_steam_id": [ - 2829 + 2946 ], "player_team_elo_avg": [ - 2829 + 2946 ], "series_multiplier": [ - 2829 + 2946 ], "team_avg_kda": [ - 2829 + 2946 ], "updated_elo": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "v_player_elo_bool_exp": { "_and": [ - 5317 + 5389 ], "_not": [ - 5317 + 5389 ], "_or": [ - 5317 + 5389 ], "actual_score": [ - 1548 + 1665 ], "assists": [ - 39 + 41 ], "current_elo": [ - 39 + 41 ], "damage": [ - 39 + 41 ], "damage_percent": [ - 1548 + 1665 ], "deaths": [ - 39 + 41 ], "elo_change": [ - 39 + 41 ], "expected_score": [ - 1548 + 1665 ], "impact": [ - 1548 + 1665 ], "k_factor": [ - 39 + 41 ], "kda": [ - 1548 + 1665 ], "kills": [ - 39 + 41 ], "map_losses": [ - 39 + 41 ], "map_wins": [ - 39 + 41 ], "match": [ - 2653 + 2770 ], "match_created_at": [ - 4377 + 4494 ], "match_id": [ - 4923 + 4995 ], "match_result": [ - 80 + 82 ], "opponent_team_elo_avg": [ - 1548 + 1665 ], "performance_multiplier": [ - 1548 + 1665 ], "player_name": [ - 80 + 82 ], "player_steam_id": [ - 182 + 254 ], "player_team_elo_avg": [ - 1548 + 1665 ], "season_id": [ - 4923 + 4995 ], "series_multiplier": [ - 39 + 41 ], "team_avg_kda": [ - 1548 + 1665 ], "type": [ - 80 + 82 ], "updated_elo": [ - 39 + 41 ], "__typename": [ - 78 + 80 ] }, "v_player_elo_insert_input": { "actual_score": [ - 1547 + 1664 ], "assists": [ - 38 + 40 ], "current_elo": [ - 38 + 40 ], "damage": [ - 38 + 40 ], "damage_percent": [ - 1547 + 1664 ], "deaths": [ - 38 + 40 ], "elo_change": [ - 38 + 40 ], "expected_score": [ - 1547 + 1664 ], "impact": [ - 1547 + 1664 ], "k_factor": [ - 38 + 40 ], "kda": [ - 1547 + 1664 ], "kills": [ - 38 + 40 ], "map_losses": [ - 38 + 40 ], "map_wins": [ - 38 + 40 ], "match": [ - 2662 + 2779 ], "match_created_at": [ - 4376 + 4493 ], "match_id": [ - 4921 + 4993 ], "match_result": [ - 78 + 80 ], "opponent_team_elo_avg": [ - 1547 + 1664 ], "performance_multiplier": [ - 1547 + 1664 ], "player_name": [ - 78 + 80 ], "player_steam_id": [ - 180 + 252 ], "player_team_elo_avg": [ - 1547 + 1664 ], "season_id": [ - 4921 + 4993 ], "series_multiplier": [ - 38 + 40 ], "team_avg_kda": [ - 1547 + 1664 ], "type": [ - 78 + 80 ], "updated_elo": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "v_player_elo_max_fields": { "actual_score": [ - 1547 + 1664 ], "assists": [ - 38 + 40 ], "current_elo": [ - 38 + 40 ], "damage": [ - 38 + 40 ], "damage_percent": [ - 1547 + 1664 ], "deaths": [ - 38 + 40 ], "elo_change": [ - 38 + 40 ], "expected_score": [ - 1547 + 1664 ], "impact": [ - 1547 + 1664 ], "k_factor": [ - 38 + 40 ], "kda": [ - 1547 + 1664 ], "kills": [ - 38 + 40 ], "map_losses": [ - 38 + 40 ], "map_wins": [ - 38 + 40 ], "match_created_at": [ - 4376 + 4493 ], "match_id": [ - 4921 + 4993 ], "match_result": [ - 78 + 80 ], "opponent_team_elo_avg": [ - 1547 + 1664 ], "performance_multiplier": [ - 1547 + 1664 ], "player_name": [ - 78 + 80 ], "player_steam_id": [ - 180 + 252 ], "player_team_elo_avg": [ - 1547 + 1664 ], "season_id": [ - 4921 + 4993 ], "series_multiplier": [ - 38 + 40 ], "team_avg_kda": [ - 1547 + 1664 ], "type": [ - 78 + 80 ], "updated_elo": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "v_player_elo_max_order_by": { "actual_score": [ - 2829 + 2946 ], "assists": [ - 2829 + 2946 ], "current_elo": [ - 2829 + 2946 ], "damage": [ - 2829 + 2946 ], "damage_percent": [ - 2829 + 2946 ], "deaths": [ - 2829 + 2946 ], "elo_change": [ - 2829 + 2946 ], "expected_score": [ - 2829 + 2946 ], "impact": [ - 2829 + 2946 ], "k_factor": [ - 2829 + 2946 ], "kda": [ - 2829 + 2946 ], "kills": [ - 2829 + 2946 ], "map_losses": [ - 2829 + 2946 ], "map_wins": [ - 2829 + 2946 ], "match_created_at": [ - 2829 + 2946 ], "match_id": [ - 2829 + 2946 ], "match_result": [ - 2829 + 2946 ], "opponent_team_elo_avg": [ - 2829 + 2946 ], "performance_multiplier": [ - 2829 + 2946 ], "player_name": [ - 2829 + 2946 ], "player_steam_id": [ - 2829 + 2946 ], "player_team_elo_avg": [ - 2829 + 2946 ], "season_id": [ - 2829 + 2946 ], "series_multiplier": [ - 2829 + 2946 ], "team_avg_kda": [ - 2829 + 2946 ], "type": [ - 2829 + 2946 ], "updated_elo": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "v_player_elo_min_fields": { "actual_score": [ - 1547 + 1664 ], "assists": [ - 38 + 40 ], "current_elo": [ - 38 + 40 ], "damage": [ - 38 + 40 ], "damage_percent": [ - 1547 + 1664 ], "deaths": [ - 38 + 40 ], "elo_change": [ - 38 + 40 ], "expected_score": [ - 1547 + 1664 ], "impact": [ - 1547 + 1664 ], "k_factor": [ - 38 + 40 ], "kda": [ - 1547 + 1664 ], "kills": [ - 38 + 40 ], "map_losses": [ - 38 + 40 ], "map_wins": [ - 38 + 40 ], "match_created_at": [ - 4376 + 4493 ], "match_id": [ - 4921 + 4993 ], "match_result": [ - 78 + 80 ], "opponent_team_elo_avg": [ - 1547 + 1664 ], "performance_multiplier": [ - 1547 + 1664 ], "player_name": [ - 78 + 80 ], "player_steam_id": [ - 180 + 252 ], "player_team_elo_avg": [ - 1547 + 1664 ], "season_id": [ - 4921 + 4993 ], "series_multiplier": [ - 38 + 40 ], "team_avg_kda": [ - 1547 + 1664 ], "type": [ - 78 + 80 ], "updated_elo": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "v_player_elo_min_order_by": { "actual_score": [ - 2829 + 2946 ], "assists": [ - 2829 + 2946 ], "current_elo": [ - 2829 + 2946 ], "damage": [ - 2829 + 2946 ], "damage_percent": [ - 2829 + 2946 ], "deaths": [ - 2829 + 2946 ], "elo_change": [ - 2829 + 2946 ], "expected_score": [ - 2829 + 2946 ], "impact": [ - 2829 + 2946 ], "k_factor": [ - 2829 + 2946 ], "kda": [ - 2829 + 2946 ], "kills": [ - 2829 + 2946 ], "map_losses": [ - 2829 + 2946 ], "map_wins": [ - 2829 + 2946 ], "match_created_at": [ - 2829 + 2946 ], "match_id": [ - 2829 + 2946 ], "match_result": [ - 2829 + 2946 ], "opponent_team_elo_avg": [ - 2829 + 2946 ], "performance_multiplier": [ - 2829 + 2946 ], "player_name": [ - 2829 + 2946 ], "player_steam_id": [ - 2829 + 2946 ], "player_team_elo_avg": [ - 2829 + 2946 ], "season_id": [ - 2829 + 2946 ], "series_multiplier": [ - 2829 + 2946 ], "team_avg_kda": [ - 2829 + 2946 ], "type": [ - 2829 + 2946 ], "updated_elo": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "v_player_elo_order_by": { "actual_score": [ - 2829 + 2946 ], "assists": [ - 2829 + 2946 ], "current_elo": [ - 2829 + 2946 ], "damage": [ - 2829 + 2946 ], "damage_percent": [ - 2829 + 2946 ], "deaths": [ - 2829 + 2946 ], "elo_change": [ - 2829 + 2946 ], "expected_score": [ - 2829 + 2946 ], "impact": [ - 2829 + 2946 ], "k_factor": [ - 2829 + 2946 ], "kda": [ - 2829 + 2946 ], "kills": [ - 2829 + 2946 ], "map_losses": [ - 2829 + 2946 ], "map_wins": [ - 2829 + 2946 ], "match": [ - 2664 + 2781 ], "match_created_at": [ - 2829 + 2946 ], "match_id": [ - 2829 + 2946 ], "match_result": [ - 2829 + 2946 ], "opponent_team_elo_avg": [ - 2829 + 2946 ], "performance_multiplier": [ - 2829 + 2946 ], "player_name": [ - 2829 + 2946 ], "player_steam_id": [ - 2829 + 2946 ], "player_team_elo_avg": [ - 2829 + 2946 ], "season_id": [ - 2829 + 2946 ], "series_multiplier": [ - 2829 + 2946 ], "team_avg_kda": [ - 2829 + 2946 ], "type": [ - 2829 + 2946 ], "updated_elo": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "v_player_elo_select_column": {}, @@ -121526,6753 +123058,6753 @@ export default { "v_player_elo_select_column_v_player_elo_aggregate_bool_exp_var_samp_arguments_columns": {}, "v_player_elo_stddev_fields": { "actual_score": [ - 29 + 31 ], "assists": [ - 29 + 31 ], "current_elo": [ - 29 + 31 ], "damage": [ - 29 + 31 ], "damage_percent": [ - 29 + 31 ], "deaths": [ - 29 + 31 ], "elo_change": [ - 29 + 31 ], "expected_score": [ - 29 + 31 ], "impact": [ - 29 + 31 ], "k_factor": [ - 29 + 31 ], "kda": [ - 29 + 31 ], "kills": [ - 29 + 31 ], "map_losses": [ - 29 + 31 ], "map_wins": [ - 29 + 31 ], "opponent_team_elo_avg": [ - 29 + 31 ], "performance_multiplier": [ - 29 + 31 ], "player_steam_id": [ - 29 + 31 ], "player_team_elo_avg": [ - 29 + 31 ], "series_multiplier": [ - 29 + 31 ], "team_avg_kda": [ - 29 + 31 ], "updated_elo": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_player_elo_stddev_order_by": { "actual_score": [ - 2829 + 2946 ], "assists": [ - 2829 + 2946 ], "current_elo": [ - 2829 + 2946 ], "damage": [ - 2829 + 2946 ], "damage_percent": [ - 2829 + 2946 ], "deaths": [ - 2829 + 2946 ], "elo_change": [ - 2829 + 2946 ], "expected_score": [ - 2829 + 2946 ], "impact": [ - 2829 + 2946 ], "k_factor": [ - 2829 + 2946 ], "kda": [ - 2829 + 2946 ], "kills": [ - 2829 + 2946 ], "map_losses": [ - 2829 + 2946 ], "map_wins": [ - 2829 + 2946 ], "opponent_team_elo_avg": [ - 2829 + 2946 ], "performance_multiplier": [ - 2829 + 2946 ], "player_steam_id": [ - 2829 + 2946 ], "player_team_elo_avg": [ - 2829 + 2946 ], "series_multiplier": [ - 2829 + 2946 ], "team_avg_kda": [ - 2829 + 2946 ], "updated_elo": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "v_player_elo_stddev_pop_fields": { "actual_score": [ - 29 + 31 ], "assists": [ - 29 + 31 ], "current_elo": [ - 29 + 31 ], "damage": [ - 29 + 31 ], "damage_percent": [ - 29 + 31 ], "deaths": [ - 29 + 31 ], "elo_change": [ - 29 + 31 ], "expected_score": [ - 29 + 31 ], "impact": [ - 29 + 31 ], "k_factor": [ - 29 + 31 ], "kda": [ - 29 + 31 ], "kills": [ - 29 + 31 ], "map_losses": [ - 29 + 31 ], "map_wins": [ - 29 + 31 ], "opponent_team_elo_avg": [ - 29 + 31 ], "performance_multiplier": [ - 29 + 31 ], "player_steam_id": [ - 29 + 31 ], "player_team_elo_avg": [ - 29 + 31 ], "series_multiplier": [ - 29 + 31 ], "team_avg_kda": [ - 29 + 31 ], "updated_elo": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_player_elo_stddev_pop_order_by": { "actual_score": [ - 2829 + 2946 ], "assists": [ - 2829 + 2946 ], "current_elo": [ - 2829 + 2946 ], "damage": [ - 2829 + 2946 ], "damage_percent": [ - 2829 + 2946 ], "deaths": [ - 2829 + 2946 ], "elo_change": [ - 2829 + 2946 ], "expected_score": [ - 2829 + 2946 ], "impact": [ - 2829 + 2946 ], "k_factor": [ - 2829 + 2946 ], "kda": [ - 2829 + 2946 ], "kills": [ - 2829 + 2946 ], "map_losses": [ - 2829 + 2946 ], "map_wins": [ - 2829 + 2946 ], "opponent_team_elo_avg": [ - 2829 + 2946 ], "performance_multiplier": [ - 2829 + 2946 ], "player_steam_id": [ - 2829 + 2946 ], "player_team_elo_avg": [ - 2829 + 2946 ], "series_multiplier": [ - 2829 + 2946 ], "team_avg_kda": [ - 2829 + 2946 ], "updated_elo": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "v_player_elo_stddev_samp_fields": { "actual_score": [ - 29 + 31 ], "assists": [ - 29 + 31 ], "current_elo": [ - 29 + 31 ], "damage": [ - 29 + 31 ], "damage_percent": [ - 29 + 31 ], "deaths": [ - 29 + 31 ], "elo_change": [ - 29 + 31 ], "expected_score": [ - 29 + 31 ], "impact": [ - 29 + 31 ], "k_factor": [ - 29 + 31 ], "kda": [ - 29 + 31 ], "kills": [ - 29 + 31 ], "map_losses": [ - 29 + 31 ], "map_wins": [ - 29 + 31 ], "opponent_team_elo_avg": [ - 29 + 31 ], "performance_multiplier": [ - 29 + 31 ], "player_steam_id": [ - 29 + 31 ], "player_team_elo_avg": [ - 29 + 31 ], "series_multiplier": [ - 29 + 31 ], "team_avg_kda": [ - 29 + 31 ], "updated_elo": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_player_elo_stddev_samp_order_by": { "actual_score": [ - 2829 + 2946 ], "assists": [ - 2829 + 2946 ], "current_elo": [ - 2829 + 2946 ], "damage": [ - 2829 + 2946 ], "damage_percent": [ - 2829 + 2946 ], "deaths": [ - 2829 + 2946 ], "elo_change": [ - 2829 + 2946 ], "expected_score": [ - 2829 + 2946 ], "impact": [ - 2829 + 2946 ], "k_factor": [ - 2829 + 2946 ], "kda": [ - 2829 + 2946 ], "kills": [ - 2829 + 2946 ], "map_losses": [ - 2829 + 2946 ], "map_wins": [ - 2829 + 2946 ], "opponent_team_elo_avg": [ - 2829 + 2946 ], "performance_multiplier": [ - 2829 + 2946 ], "player_steam_id": [ - 2829 + 2946 ], "player_team_elo_avg": [ - 2829 + 2946 ], "series_multiplier": [ - 2829 + 2946 ], "team_avg_kda": [ - 2829 + 2946 ], "updated_elo": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "v_player_elo_stream_cursor_input": { "initial_value": [ - 5340 + 5412 ], "ordering": [ - 236 + 308 ], "__typename": [ - 78 + 80 ] }, "v_player_elo_stream_cursor_value_input": { "actual_score": [ - 1547 + 1664 ], "assists": [ - 38 + 40 ], "current_elo": [ - 38 + 40 ], "damage": [ - 38 + 40 ], "damage_percent": [ - 1547 + 1664 ], "deaths": [ - 38 + 40 ], "elo_change": [ - 38 + 40 ], "expected_score": [ - 1547 + 1664 ], "impact": [ - 1547 + 1664 ], "k_factor": [ - 38 + 40 ], "kda": [ - 1547 + 1664 ], "kills": [ - 38 + 40 ], "map_losses": [ - 38 + 40 ], "map_wins": [ - 38 + 40 ], "match_created_at": [ - 4376 + 4493 ], "match_id": [ - 4921 + 4993 ], "match_result": [ - 78 + 80 ], "opponent_team_elo_avg": [ - 1547 + 1664 ], "performance_multiplier": [ - 1547 + 1664 ], "player_name": [ - 78 + 80 ], "player_steam_id": [ - 180 + 252 ], "player_team_elo_avg": [ - 1547 + 1664 ], "season_id": [ - 4921 + 4993 ], "series_multiplier": [ - 38 + 40 ], "team_avg_kda": [ - 1547 + 1664 ], "type": [ - 78 + 80 ], "updated_elo": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "v_player_elo_sum_fields": { "actual_score": [ - 1547 + 1664 ], "assists": [ - 38 + 40 ], "current_elo": [ - 38 + 40 ], "damage": [ - 38 + 40 ], "damage_percent": [ - 1547 + 1664 ], "deaths": [ - 38 + 40 ], "elo_change": [ - 38 + 40 ], "expected_score": [ - 1547 + 1664 ], "impact": [ - 1547 + 1664 ], "k_factor": [ - 38 + 40 ], "kda": [ - 1547 + 1664 ], "kills": [ - 38 + 40 ], "map_losses": [ - 38 + 40 ], "map_wins": [ - 38 + 40 ], "opponent_team_elo_avg": [ - 1547 + 1664 ], "performance_multiplier": [ - 1547 + 1664 ], "player_steam_id": [ - 180 + 252 ], "player_team_elo_avg": [ - 1547 + 1664 ], "series_multiplier": [ - 38 + 40 ], "team_avg_kda": [ - 1547 + 1664 ], "updated_elo": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "v_player_elo_sum_order_by": { "actual_score": [ - 2829 + 2946 ], "assists": [ - 2829 + 2946 ], "current_elo": [ - 2829 + 2946 ], "damage": [ - 2829 + 2946 ], "damage_percent": [ - 2829 + 2946 ], "deaths": [ - 2829 + 2946 ], "elo_change": [ - 2829 + 2946 ], "expected_score": [ - 2829 + 2946 ], "impact": [ - 2829 + 2946 ], "k_factor": [ - 2829 + 2946 ], "kda": [ - 2829 + 2946 ], "kills": [ - 2829 + 2946 ], "map_losses": [ - 2829 + 2946 ], "map_wins": [ - 2829 + 2946 ], "opponent_team_elo_avg": [ - 2829 + 2946 ], "performance_multiplier": [ - 2829 + 2946 ], "player_steam_id": [ - 2829 + 2946 ], "player_team_elo_avg": [ - 2829 + 2946 ], "series_multiplier": [ - 2829 + 2946 ], "team_avg_kda": [ - 2829 + 2946 ], "updated_elo": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "v_player_elo_var_pop_fields": { "actual_score": [ - 29 + 31 ], "assists": [ - 29 + 31 ], "current_elo": [ - 29 + 31 ], "damage": [ - 29 + 31 ], "damage_percent": [ - 29 + 31 ], "deaths": [ - 29 + 31 ], "elo_change": [ - 29 + 31 ], "expected_score": [ - 29 + 31 ], "impact": [ - 29 + 31 ], "k_factor": [ - 29 + 31 ], "kda": [ - 29 + 31 ], "kills": [ - 29 + 31 ], "map_losses": [ - 29 + 31 ], "map_wins": [ - 29 + 31 ], "opponent_team_elo_avg": [ - 29 + 31 ], "performance_multiplier": [ - 29 + 31 ], "player_steam_id": [ - 29 + 31 ], "player_team_elo_avg": [ - 29 + 31 ], "series_multiplier": [ - 29 + 31 ], "team_avg_kda": [ - 29 + 31 ], "updated_elo": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_player_elo_var_pop_order_by": { "actual_score": [ - 2829 + 2946 ], "assists": [ - 2829 + 2946 ], "current_elo": [ - 2829 + 2946 ], "damage": [ - 2829 + 2946 ], "damage_percent": [ - 2829 + 2946 ], "deaths": [ - 2829 + 2946 ], "elo_change": [ - 2829 + 2946 ], "expected_score": [ - 2829 + 2946 ], "impact": [ - 2829 + 2946 ], "k_factor": [ - 2829 + 2946 ], "kda": [ - 2829 + 2946 ], "kills": [ - 2829 + 2946 ], "map_losses": [ - 2829 + 2946 ], "map_wins": [ - 2829 + 2946 ], "opponent_team_elo_avg": [ - 2829 + 2946 ], "performance_multiplier": [ - 2829 + 2946 ], "player_steam_id": [ - 2829 + 2946 ], "player_team_elo_avg": [ - 2829 + 2946 ], "series_multiplier": [ - 2829 + 2946 ], "team_avg_kda": [ - 2829 + 2946 ], "updated_elo": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "v_player_elo_var_samp_fields": { "actual_score": [ - 29 + 31 ], "assists": [ - 29 + 31 ], "current_elo": [ - 29 + 31 ], "damage": [ - 29 + 31 ], "damage_percent": [ - 29 + 31 ], "deaths": [ - 29 + 31 ], "elo_change": [ - 29 + 31 ], "expected_score": [ - 29 + 31 ], "impact": [ - 29 + 31 ], "k_factor": [ - 29 + 31 ], "kda": [ - 29 + 31 ], "kills": [ - 29 + 31 ], "map_losses": [ - 29 + 31 ], "map_wins": [ - 29 + 31 ], "opponent_team_elo_avg": [ - 29 + 31 ], "performance_multiplier": [ - 29 + 31 ], "player_steam_id": [ - 29 + 31 ], "player_team_elo_avg": [ - 29 + 31 ], "series_multiplier": [ - 29 + 31 ], "team_avg_kda": [ - 29 + 31 ], "updated_elo": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_player_elo_var_samp_order_by": { "actual_score": [ - 2829 + 2946 ], "assists": [ - 2829 + 2946 ], "current_elo": [ - 2829 + 2946 ], "damage": [ - 2829 + 2946 ], "damage_percent": [ - 2829 + 2946 ], "deaths": [ - 2829 + 2946 ], "elo_change": [ - 2829 + 2946 ], "expected_score": [ - 2829 + 2946 ], "impact": [ - 2829 + 2946 ], "k_factor": [ - 2829 + 2946 ], "kda": [ - 2829 + 2946 ], "kills": [ - 2829 + 2946 ], "map_losses": [ - 2829 + 2946 ], "map_wins": [ - 2829 + 2946 ], "opponent_team_elo_avg": [ - 2829 + 2946 ], "performance_multiplier": [ - 2829 + 2946 ], "player_steam_id": [ - 2829 + 2946 ], "player_team_elo_avg": [ - 2829 + 2946 ], "series_multiplier": [ - 2829 + 2946 ], "team_avg_kda": [ - 2829 + 2946 ], "updated_elo": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "v_player_elo_variance_fields": { "actual_score": [ - 29 + 31 ], "assists": [ - 29 + 31 ], "current_elo": [ - 29 + 31 ], "damage": [ - 29 + 31 ], "damage_percent": [ - 29 + 31 ], "deaths": [ - 29 + 31 ], "elo_change": [ - 29 + 31 ], "expected_score": [ - 29 + 31 ], "impact": [ - 29 + 31 ], "k_factor": [ - 29 + 31 ], "kda": [ - 29 + 31 ], "kills": [ - 29 + 31 ], "map_losses": [ - 29 + 31 ], "map_wins": [ - 29 + 31 ], "opponent_team_elo_avg": [ - 29 + 31 ], "performance_multiplier": [ - 29 + 31 ], "player_steam_id": [ - 29 + 31 ], "player_team_elo_avg": [ - 29 + 31 ], "series_multiplier": [ - 29 + 31 ], "team_avg_kda": [ - 29 + 31 ], "updated_elo": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_player_elo_variance_order_by": { "actual_score": [ - 2829 + 2946 ], "assists": [ - 2829 + 2946 ], "current_elo": [ - 2829 + 2946 ], "damage": [ - 2829 + 2946 ], "damage_percent": [ - 2829 + 2946 ], "deaths": [ - 2829 + 2946 ], "elo_change": [ - 2829 + 2946 ], "expected_score": [ - 2829 + 2946 ], "impact": [ - 2829 + 2946 ], "k_factor": [ - 2829 + 2946 ], "kda": [ - 2829 + 2946 ], "kills": [ - 2829 + 2946 ], "map_losses": [ - 2829 + 2946 ], "map_wins": [ - 2829 + 2946 ], "opponent_team_elo_avg": [ - 2829 + 2946 ], "performance_multiplier": [ - 2829 + 2946 ], "player_steam_id": [ - 2829 + 2946 ], "player_team_elo_avg": [ - 2829 + 2946 ], "series_multiplier": [ - 2829 + 2946 ], "team_avg_kda": [ - 2829 + 2946 ], "updated_elo": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "v_player_map_losses": { "map": [ - 2162 + 2279 ], "map_id": [ - 4921 + 4993 ], "match": [ - 2644 + 2761 ], "match_id": [ - 4921 + 4993 ], "started_at": [ - 4376 + 4493 ], "steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "v_player_map_losses_aggregate": { "aggregate": [ - 5351 + 5423 ], "nodes": [ - 5349 + 5421 ], "__typename": [ - 78 + 80 ] }, "v_player_map_losses_aggregate_fields": { "avg": [ - 5352 + 5424 ], "count": [ - 38, + 40, { "columns": [ - 5357, + 5429, "[v_player_map_losses_select_column!]" ], "distinct": [ - 3 + 5 ] } ], "max": [ - 5354 + 5426 ], "min": [ - 5355 + 5427 ], "stddev": [ - 5358 + 5430 ], "stddev_pop": [ - 5359 + 5431 ], "stddev_samp": [ - 5360 + 5432 ], "sum": [ - 5363 + 5435 ], "var_pop": [ - 5364 + 5436 ], "var_samp": [ - 5365 + 5437 ], "variance": [ - 5366 + 5438 ], "__typename": [ - 78 + 80 ] }, "v_player_map_losses_avg_fields": { "steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_player_map_losses_bool_exp": { "_and": [ - 5353 + 5425 ], "_not": [ - 5353 + 5425 ], "_or": [ - 5353 + 5425 ], "map": [ - 2171 + 2288 ], "map_id": [ - 4923 + 4995 ], "match": [ - 2653 + 2770 ], "match_id": [ - 4923 + 4995 ], "started_at": [ - 4377 + 4494 ], "steam_id": [ - 182 + 254 ], "__typename": [ - 78 + 80 ] }, "v_player_map_losses_max_fields": { "map_id": [ - 4921 + 4993 ], "match_id": [ - 4921 + 4993 ], "started_at": [ - 4376 + 4493 ], "steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "v_player_map_losses_min_fields": { "map_id": [ - 4921 + 4993 ], "match_id": [ - 4921 + 4993 ], "started_at": [ - 4376 + 4493 ], "steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "v_player_map_losses_order_by": { "map": [ - 2181 + 2298 ], "map_id": [ - 2829 + 2946 ], "match": [ - 2664 + 2781 ], "match_id": [ - 2829 + 2946 ], "started_at": [ - 2829 + 2946 ], "steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "v_player_map_losses_select_column": {}, "v_player_map_losses_stddev_fields": { "steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_player_map_losses_stddev_pop_fields": { "steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_player_map_losses_stddev_samp_fields": { "steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_player_map_losses_stream_cursor_input": { "initial_value": [ - 5362 + 5434 ], "ordering": [ - 236 + 308 ], "__typename": [ - 78 + 80 ] }, "v_player_map_losses_stream_cursor_value_input": { "map_id": [ - 4921 + 4993 ], "match_id": [ - 4921 + 4993 ], "started_at": [ - 4376 + 4493 ], "steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "v_player_map_losses_sum_fields": { "steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "v_player_map_losses_var_pop_fields": { "steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_player_map_losses_var_samp_fields": { "steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_player_map_losses_variance_fields": { "steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_player_map_wins": { "map": [ - 2162 + 2279 ], "map_id": [ - 4921 + 4993 ], "match": [ - 2644 + 2761 ], "match_id": [ - 4921 + 4993 ], "started_at": [ - 4376 + 4493 ], "steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "v_player_map_wins_aggregate": { "aggregate": [ - 5369 + 5441 ], "nodes": [ - 5367 + 5439 ], "__typename": [ - 78 + 80 ] }, "v_player_map_wins_aggregate_fields": { "avg": [ - 5370 + 5442 ], "count": [ - 38, + 40, { "columns": [ - 5375, + 5447, "[v_player_map_wins_select_column!]" ], "distinct": [ - 3 + 5 ] } ], "max": [ - 5372 + 5444 ], "min": [ - 5373 + 5445 ], "stddev": [ - 5376 + 5448 ], "stddev_pop": [ - 5377 + 5449 ], "stddev_samp": [ - 5378 + 5450 ], "sum": [ - 5381 + 5453 ], "var_pop": [ - 5382 + 5454 ], "var_samp": [ - 5383 + 5455 ], "variance": [ - 5384 + 5456 ], "__typename": [ - 78 + 80 ] }, "v_player_map_wins_avg_fields": { "steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_player_map_wins_bool_exp": { "_and": [ - 5371 + 5443 ], "_not": [ - 5371 + 5443 ], "_or": [ - 5371 + 5443 ], "map": [ - 2171 + 2288 ], "map_id": [ - 4923 + 4995 ], "match": [ - 2653 + 2770 ], "match_id": [ - 4923 + 4995 ], "started_at": [ - 4377 + 4494 ], "steam_id": [ - 182 + 254 ], "__typename": [ - 78 + 80 ] }, "v_player_map_wins_max_fields": { "map_id": [ - 4921 + 4993 ], "match_id": [ - 4921 + 4993 ], "started_at": [ - 4376 + 4493 ], "steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "v_player_map_wins_min_fields": { "map_id": [ - 4921 + 4993 ], "match_id": [ - 4921 + 4993 ], "started_at": [ - 4376 + 4493 ], "steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "v_player_map_wins_order_by": { "map": [ - 2181 + 2298 ], "map_id": [ - 2829 + 2946 ], "match": [ - 2664 + 2781 ], "match_id": [ - 2829 + 2946 ], "started_at": [ - 2829 + 2946 ], "steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "v_player_map_wins_select_column": {}, "v_player_map_wins_stddev_fields": { "steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_player_map_wins_stddev_pop_fields": { "steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_player_map_wins_stddev_samp_fields": { "steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_player_map_wins_stream_cursor_input": { "initial_value": [ - 5380 + 5452 ], "ordering": [ - 236 + 308 ], "__typename": [ - 78 + 80 ] }, "v_player_map_wins_stream_cursor_value_input": { "map_id": [ - 4921 + 4993 ], "match_id": [ - 4921 + 4993 ], "started_at": [ - 4376 + 4493 ], "steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "v_player_map_wins_sum_fields": { "steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "v_player_map_wins_var_pop_fields": { "steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_player_map_wins_var_samp_fields": { "steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_player_map_wins_variance_fields": { "steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_player_match_head_to_head": { "attacked": [ - 3787 + 3904 ], "attacked_steam_id": [ - 180 + 252 ], "attacker": [ - 3787 + 3904 ], "attacker_steam_id": [ - 180 + 252 ], "damage_dealt": [ - 38 + 40 ], "flash_count": [ - 180 + 252 ], "headshot_kills": [ - 180 + 252 ], "hits": [ - 180 + 252 ], "kills": [ - 180 + 252 ], "match": [ - 2644 + 2761 ], "match_id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "v_player_match_head_to_head_aggregate": { "aggregate": [ - 5387 + 5459 ], "nodes": [ - 5385 + 5457 ], "__typename": [ - 78 + 80 ] }, "v_player_match_head_to_head_aggregate_fields": { "avg": [ - 5388 + 5460 ], "count": [ - 38, + 40, { "columns": [ - 5393, + 5465, "[v_player_match_head_to_head_select_column!]" ], "distinct": [ - 3 + 5 ] } ], "max": [ - 5390 + 5462 ], "min": [ - 5391 + 5463 ], "stddev": [ - 5394 + 5466 ], "stddev_pop": [ - 5395 + 5467 ], "stddev_samp": [ - 5396 + 5468 ], "sum": [ - 5399 + 5471 ], "var_pop": [ - 5400 + 5472 ], "var_samp": [ - 5401 + 5473 ], "variance": [ - 5402 + 5474 ], "__typename": [ - 78 + 80 ] }, "v_player_match_head_to_head_avg_fields": { "attacked_steam_id": [ - 29 + 31 ], "attacker_steam_id": [ - 29 + 31 ], "damage_dealt": [ - 29 + 31 ], "flash_count": [ - 29 + 31 ], "headshot_kills": [ - 29 + 31 ], "hits": [ - 29 + 31 ], "kills": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_player_match_head_to_head_bool_exp": { "_and": [ - 5389 + 5461 ], "_not": [ - 5389 + 5461 ], "_or": [ - 5389 + 5461 ], "attacked": [ - 3791 + 3908 ], "attacked_steam_id": [ - 182 + 254 ], "attacker": [ - 3791 + 3908 ], "attacker_steam_id": [ - 182 + 254 ], "damage_dealt": [ - 39 + 41 ], "flash_count": [ - 182 + 254 ], "headshot_kills": [ - 182 + 254 ], "hits": [ - 182 + 254 ], "kills": [ - 182 + 254 ], "match": [ - 2653 + 2770 ], "match_id": [ - 4923 + 4995 ], "__typename": [ - 78 + 80 ] }, "v_player_match_head_to_head_max_fields": { "attacked_steam_id": [ - 180 + 252 ], "attacker_steam_id": [ - 180 + 252 ], "damage_dealt": [ - 38 + 40 ], "flash_count": [ - 180 + 252 ], "headshot_kills": [ - 180 + 252 ], "hits": [ - 180 + 252 ], "kills": [ - 180 + 252 ], "match_id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "v_player_match_head_to_head_min_fields": { "attacked_steam_id": [ - 180 + 252 ], "attacker_steam_id": [ - 180 + 252 ], "damage_dealt": [ - 38 + 40 ], "flash_count": [ - 180 + 252 ], "headshot_kills": [ - 180 + 252 ], "hits": [ - 180 + 252 ], "kills": [ - 180 + 252 ], "match_id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "v_player_match_head_to_head_order_by": { "attacked": [ - 3800 + 3917 ], "attacked_steam_id": [ - 2829 + 2946 ], "attacker": [ - 3800 + 3917 ], "attacker_steam_id": [ - 2829 + 2946 ], "damage_dealt": [ - 2829 + 2946 ], "flash_count": [ - 2829 + 2946 ], "headshot_kills": [ - 2829 + 2946 ], "hits": [ - 2829 + 2946 ], "kills": [ - 2829 + 2946 ], "match": [ - 2664 + 2781 ], "match_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "v_player_match_head_to_head_select_column": {}, "v_player_match_head_to_head_stddev_fields": { "attacked_steam_id": [ - 29 + 31 ], "attacker_steam_id": [ - 29 + 31 ], "damage_dealt": [ - 29 + 31 ], "flash_count": [ - 29 + 31 ], "headshot_kills": [ - 29 + 31 ], "hits": [ - 29 + 31 ], "kills": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_player_match_head_to_head_stddev_pop_fields": { "attacked_steam_id": [ - 29 + 31 ], "attacker_steam_id": [ - 29 + 31 ], "damage_dealt": [ - 29 + 31 ], "flash_count": [ - 29 + 31 ], "headshot_kills": [ - 29 + 31 ], "hits": [ - 29 + 31 ], "kills": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_player_match_head_to_head_stddev_samp_fields": { "attacked_steam_id": [ - 29 + 31 ], "attacker_steam_id": [ - 29 + 31 ], "damage_dealt": [ - 29 + 31 ], "flash_count": [ - 29 + 31 ], "headshot_kills": [ - 29 + 31 ], "hits": [ - 29 + 31 ], "kills": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_player_match_head_to_head_stream_cursor_input": { "initial_value": [ - 5398 + 5470 ], "ordering": [ - 236 + 308 ], "__typename": [ - 78 + 80 ] }, "v_player_match_head_to_head_stream_cursor_value_input": { "attacked_steam_id": [ - 180 + 252 ], "attacker_steam_id": [ - 180 + 252 ], "damage_dealt": [ - 38 + 40 ], "flash_count": [ - 180 + 252 ], "headshot_kills": [ - 180 + 252 ], "hits": [ - 180 + 252 ], "kills": [ - 180 + 252 ], "match_id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "v_player_match_head_to_head_sum_fields": { "attacked_steam_id": [ - 180 + 252 ], "attacker_steam_id": [ - 180 + 252 ], "damage_dealt": [ - 38 + 40 ], "flash_count": [ - 180 + 252 ], "headshot_kills": [ - 180 + 252 ], "hits": [ - 180 + 252 ], "kills": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "v_player_match_head_to_head_var_pop_fields": { "attacked_steam_id": [ - 29 + 31 ], "attacker_steam_id": [ - 29 + 31 ], "damage_dealt": [ - 29 + 31 ], "flash_count": [ - 29 + 31 ], "headshot_kills": [ - 29 + 31 ], "hits": [ - 29 + 31 ], "kills": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_player_match_head_to_head_var_samp_fields": { "attacked_steam_id": [ - 29 + 31 ], "attacker_steam_id": [ - 29 + 31 ], "damage_dealt": [ - 29 + 31 ], "flash_count": [ - 29 + 31 ], "headshot_kills": [ - 29 + 31 ], "hits": [ - 29 + 31 ], "kills": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_player_match_head_to_head_variance_fields": { "attacked_steam_id": [ - 29 + 31 ], "attacker_steam_id": [ - 29 + 31 ], "damage_dealt": [ - 29 + 31 ], "flash_count": [ - 29 + 31 ], "headshot_kills": [ - 29 + 31 ], "hits": [ - 29 + 31 ], "kills": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_player_match_map_hltv": { "adr": [ - 2827 + 2944 ], "apr": [ - 2827 + 2944 ], "dpr": [ - 2827 + 2944 ], "hltv_rating": [ - 2827 + 2944 ], "kast_pct": [ - 2827 + 2944 ], "kpr": [ - 2827 + 2944 ], "match": [ - 2644 + 2761 ], "match_id": [ - 4921 + 4993 ], "match_map": [ - 2482 + 2599 ], "match_map_id": [ - 4921 + 4993 ], "player": [ - 3787 + 3904 ], "rounds_played": [ - 38 + 40 ], "steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "v_player_match_map_hltv_aggregate": { "aggregate": [ - 5407 + 5479 ], "nodes": [ - 5403 + 5475 ], "__typename": [ - 78 + 80 ] }, "v_player_match_map_hltv_aggregate_bool_exp": { "count": [ - 5406 + 5478 ], "__typename": [ - 78 + 80 ] }, "v_player_match_map_hltv_aggregate_bool_exp_count": { "arguments": [ - 5421 + 5493 ], "distinct": [ - 3 + 5 ], "filter": [ - 5412 + 5484 ], "predicate": [ - 39 + 41 ], "__typename": [ - 78 + 80 ] }, "v_player_match_map_hltv_aggregate_fields": { "avg": [ - 5410 + 5482 ], "count": [ - 38, + 40, { "columns": [ - 5421, + 5493, "[v_player_match_map_hltv_select_column!]" ], "distinct": [ - 3 + 5 ] } ], "max": [ - 5415 + 5487 ], "min": [ - 5417 + 5489 ], "stddev": [ - 5423 + 5495 ], "stddev_pop": [ - 5425 + 5497 ], "stddev_samp": [ - 5427 + 5499 ], "sum": [ - 5431 + 5503 ], "var_pop": [ - 5434 + 5506 ], "var_samp": [ - 5436 + 5508 ], "variance": [ - 5438 + 5510 ], "__typename": [ - 78 + 80 ] }, "v_player_match_map_hltv_aggregate_order_by": { "avg": [ - 5411 + 5483 ], "count": [ - 2829 + 2946 ], "max": [ - 5416 + 5488 ], "min": [ - 5418 + 5490 ], "stddev": [ - 5424 + 5496 ], "stddev_pop": [ - 5426 + 5498 ], "stddev_samp": [ - 5428 + 5500 ], "sum": [ - 5432 + 5504 ], "var_pop": [ - 5435 + 5507 ], "var_samp": [ - 5437 + 5509 ], "variance": [ - 5439 + 5511 ], "__typename": [ - 78 + 80 ] }, "v_player_match_map_hltv_arr_rel_insert_input": { "data": [ - 5414 + 5486 ], "__typename": [ - 78 + 80 ] }, "v_player_match_map_hltv_avg_fields": { "adr": [ - 29 + 31 ], "apr": [ - 29 + 31 ], "dpr": [ - 29 + 31 ], "hltv_rating": [ - 29 + 31 ], "kast_pct": [ - 29 + 31 ], "kpr": [ - 29 + 31 ], "rounds_played": [ - 29 + 31 ], "steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_player_match_map_hltv_avg_order_by": { "adr": [ - 2829 + 2946 ], "apr": [ - 2829 + 2946 ], "dpr": [ - 2829 + 2946 ], "hltv_rating": [ - 2829 + 2946 ], "kast_pct": [ - 2829 + 2946 ], "kpr": [ - 2829 + 2946 ], "rounds_played": [ - 2829 + 2946 ], "steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "v_player_match_map_hltv_bool_exp": { "_and": [ - 5412 + 5484 ], "_not": [ - 5412 + 5484 ], "_or": [ - 5412 + 5484 ], "adr": [ - 2828 + 2945 ], "apr": [ - 2828 + 2945 ], "dpr": [ - 2828 + 2945 ], "hltv_rating": [ - 2828 + 2945 ], "kast_pct": [ - 2828 + 2945 ], "kpr": [ - 2828 + 2945 ], "match": [ - 2653 + 2770 ], "match_id": [ - 4923 + 4995 ], "match_map": [ - 2491 + 2608 ], "match_map_id": [ - 4923 + 4995 ], "player": [ - 3791 + 3908 ], "rounds_played": [ - 39 + 41 ], "steam_id": [ - 182 + 254 ], "__typename": [ - 78 + 80 ] }, "v_player_match_map_hltv_inc_input": { "adr": [ - 2827 + 2944 ], "apr": [ - 2827 + 2944 ], "dpr": [ - 2827 + 2944 ], "hltv_rating": [ - 2827 + 2944 ], "kast_pct": [ - 2827 + 2944 ], "kpr": [ - 2827 + 2944 ], "rounds_played": [ - 38 + 40 ], "steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "v_player_match_map_hltv_insert_input": { "adr": [ - 2827 + 2944 ], "apr": [ - 2827 + 2944 ], "dpr": [ - 2827 + 2944 ], "hltv_rating": [ - 2827 + 2944 ], "kast_pct": [ - 2827 + 2944 ], "kpr": [ - 2827 + 2944 ], "match": [ - 2662 + 2779 ], "match_id": [ - 4921 + 4993 ], "match_map": [ - 2500 + 2617 ], "match_map_id": [ - 4921 + 4993 ], "player": [ - 3798 + 3915 ], "rounds_played": [ - 38 + 40 ], "steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "v_player_match_map_hltv_max_fields": { "adr": [ - 2827 + 2944 ], "apr": [ - 2827 + 2944 ], "dpr": [ - 2827 + 2944 ], "hltv_rating": [ - 2827 + 2944 ], "kast_pct": [ - 2827 + 2944 ], "kpr": [ - 2827 + 2944 ], "match_id": [ - 4921 + 4993 ], "match_map_id": [ - 4921 + 4993 ], "rounds_played": [ - 38 + 40 ], "steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "v_player_match_map_hltv_max_order_by": { "adr": [ - 2829 + 2946 ], "apr": [ - 2829 + 2946 ], "dpr": [ - 2829 + 2946 ], "hltv_rating": [ - 2829 + 2946 ], "kast_pct": [ - 2829 + 2946 ], "kpr": [ - 2829 + 2946 ], "match_id": [ - 2829 + 2946 ], "match_map_id": [ - 2829 + 2946 ], "rounds_played": [ - 2829 + 2946 ], "steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "v_player_match_map_hltv_min_fields": { "adr": [ - 2827 + 2944 ], "apr": [ - 2827 + 2944 ], "dpr": [ - 2827 + 2944 ], "hltv_rating": [ - 2827 + 2944 ], "kast_pct": [ - 2827 + 2944 ], "kpr": [ - 2827 + 2944 ], "match_id": [ - 4921 + 4993 ], "match_map_id": [ - 4921 + 4993 ], "rounds_played": [ - 38 + 40 ], "steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "v_player_match_map_hltv_min_order_by": { "adr": [ - 2829 + 2946 ], "apr": [ - 2829 + 2946 ], "dpr": [ - 2829 + 2946 ], "hltv_rating": [ - 2829 + 2946 ], "kast_pct": [ - 2829 + 2946 ], "kpr": [ - 2829 + 2946 ], "match_id": [ - 2829 + 2946 ], "match_map_id": [ - 2829 + 2946 ], "rounds_played": [ - 2829 + 2946 ], "steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "v_player_match_map_hltv_mutation_response": { "affected_rows": [ - 38 + 40 ], "returning": [ - 5403 + 5475 ], "__typename": [ - 78 + 80 ] }, "v_player_match_map_hltv_order_by": { "adr": [ - 2829 + 2946 ], "apr": [ - 2829 + 2946 ], "dpr": [ - 2829 + 2946 ], "hltv_rating": [ - 2829 + 2946 ], "kast_pct": [ - 2829 + 2946 ], "kpr": [ - 2829 + 2946 ], "match": [ - 2664 + 2781 ], "match_id": [ - 2829 + 2946 ], "match_map": [ - 2502 + 2619 ], "match_map_id": [ - 2829 + 2946 ], "player": [ - 3800 + 3917 ], "rounds_played": [ - 2829 + 2946 ], "steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "v_player_match_map_hltv_select_column": {}, "v_player_match_map_hltv_set_input": { "adr": [ - 2827 + 2944 ], "apr": [ - 2827 + 2944 ], "dpr": [ - 2827 + 2944 ], "hltv_rating": [ - 2827 + 2944 ], "kast_pct": [ - 2827 + 2944 ], "kpr": [ - 2827 + 2944 ], "match_id": [ - 4921 + 4993 ], "match_map_id": [ - 4921 + 4993 ], "rounds_played": [ - 38 + 40 ], "steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "v_player_match_map_hltv_stddev_fields": { "adr": [ - 29 + 31 ], "apr": [ - 29 + 31 ], "dpr": [ - 29 + 31 ], "hltv_rating": [ - 29 + 31 ], "kast_pct": [ - 29 + 31 ], "kpr": [ - 29 + 31 ], "rounds_played": [ - 29 + 31 ], "steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_player_match_map_hltv_stddev_order_by": { "adr": [ - 2829 + 2946 ], "apr": [ - 2829 + 2946 ], "dpr": [ - 2829 + 2946 ], "hltv_rating": [ - 2829 + 2946 ], "kast_pct": [ - 2829 + 2946 ], "kpr": [ - 2829 + 2946 ], "rounds_played": [ - 2829 + 2946 ], "steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "v_player_match_map_hltv_stddev_pop_fields": { "adr": [ - 29 + 31 ], "apr": [ - 29 + 31 ], "dpr": [ - 29 + 31 ], "hltv_rating": [ - 29 + 31 ], "kast_pct": [ - 29 + 31 ], "kpr": [ - 29 + 31 ], "rounds_played": [ - 29 + 31 ], "steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_player_match_map_hltv_stddev_pop_order_by": { "adr": [ - 2829 + 2946 ], "apr": [ - 2829 + 2946 ], "dpr": [ - 2829 + 2946 ], "hltv_rating": [ - 2829 + 2946 ], "kast_pct": [ - 2829 + 2946 ], "kpr": [ - 2829 + 2946 ], "rounds_played": [ - 2829 + 2946 ], "steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "v_player_match_map_hltv_stddev_samp_fields": { "adr": [ - 29 + 31 ], "apr": [ - 29 + 31 ], "dpr": [ - 29 + 31 ], "hltv_rating": [ - 29 + 31 ], "kast_pct": [ - 29 + 31 ], "kpr": [ - 29 + 31 ], "rounds_played": [ - 29 + 31 ], "steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_player_match_map_hltv_stddev_samp_order_by": { "adr": [ - 2829 + 2946 ], "apr": [ - 2829 + 2946 ], "dpr": [ - 2829 + 2946 ], "hltv_rating": [ - 2829 + 2946 ], "kast_pct": [ - 2829 + 2946 ], "kpr": [ - 2829 + 2946 ], "rounds_played": [ - 2829 + 2946 ], "steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "v_player_match_map_hltv_stream_cursor_input": { "initial_value": [ - 5430 + 5502 ], "ordering": [ - 236 + 308 ], "__typename": [ - 78 + 80 ] }, "v_player_match_map_hltv_stream_cursor_value_input": { "adr": [ - 2827 + 2944 ], "apr": [ - 2827 + 2944 ], "dpr": [ - 2827 + 2944 ], "hltv_rating": [ - 2827 + 2944 ], "kast_pct": [ - 2827 + 2944 ], "kpr": [ - 2827 + 2944 ], "match_id": [ - 4921 + 4993 ], "match_map_id": [ - 4921 + 4993 ], "rounds_played": [ - 38 + 40 ], "steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "v_player_match_map_hltv_sum_fields": { "adr": [ - 2827 + 2944 ], "apr": [ - 2827 + 2944 ], "dpr": [ - 2827 + 2944 ], "hltv_rating": [ - 2827 + 2944 ], "kast_pct": [ - 2827 + 2944 ], "kpr": [ - 2827 + 2944 ], "rounds_played": [ - 38 + 40 ], "steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "v_player_match_map_hltv_sum_order_by": { "adr": [ - 2829 + 2946 ], "apr": [ - 2829 + 2946 ], "dpr": [ - 2829 + 2946 ], "hltv_rating": [ - 2829 + 2946 ], "kast_pct": [ - 2829 + 2946 ], "kpr": [ - 2829 + 2946 ], "rounds_played": [ - 2829 + 2946 ], "steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "v_player_match_map_hltv_updates": { "_inc": [ - 5413 + 5485 ], "_set": [ - 5422 + 5494 ], "where": [ - 5412 + 5484 ], "__typename": [ - 78 + 80 ] }, "v_player_match_map_hltv_var_pop_fields": { "adr": [ - 29 + 31 ], "apr": [ - 29 + 31 ], "dpr": [ - 29 + 31 ], "hltv_rating": [ - 29 + 31 ], "kast_pct": [ - 29 + 31 ], "kpr": [ - 29 + 31 ], "rounds_played": [ - 29 + 31 ], "steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_player_match_map_hltv_var_pop_order_by": { "adr": [ - 2829 + 2946 ], "apr": [ - 2829 + 2946 ], "dpr": [ - 2829 + 2946 ], "hltv_rating": [ - 2829 + 2946 ], "kast_pct": [ - 2829 + 2946 ], "kpr": [ - 2829 + 2946 ], "rounds_played": [ - 2829 + 2946 ], "steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "v_player_match_map_hltv_var_samp_fields": { "adr": [ - 29 + 31 ], "apr": [ - 29 + 31 ], "dpr": [ - 29 + 31 ], "hltv_rating": [ - 29 + 31 ], "kast_pct": [ - 29 + 31 ], "kpr": [ - 29 + 31 ], "rounds_played": [ - 29 + 31 ], "steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_player_match_map_hltv_var_samp_order_by": { "adr": [ - 2829 + 2946 ], "apr": [ - 2829 + 2946 ], "dpr": [ - 2829 + 2946 ], "hltv_rating": [ - 2829 + 2946 ], "kast_pct": [ - 2829 + 2946 ], "kpr": [ - 2829 + 2946 ], "rounds_played": [ - 2829 + 2946 ], "steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "v_player_match_map_hltv_variance_fields": { "adr": [ - 29 + 31 ], "apr": [ - 29 + 31 ], "dpr": [ - 29 + 31 ], "hltv_rating": [ - 29 + 31 ], "kast_pct": [ - 29 + 31 ], "kpr": [ - 29 + 31 ], "rounds_played": [ - 29 + 31 ], "steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_player_match_map_hltv_variance_order_by": { "adr": [ - 2829 + 2946 ], "apr": [ - 2829 + 2946 ], "dpr": [ - 2829 + 2946 ], "hltv_rating": [ - 2829 + 2946 ], "kast_pct": [ - 2829 + 2946 ], "kpr": [ - 2829 + 2946 ], "rounds_played": [ - 2829 + 2946 ], "steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "v_player_match_map_roles": { "adr": [ - 2827 + 2944 ], "awp_kills": [ - 38 + 40 ], "awp_share": [ - 2827 + 2944 ], "deaths": [ - 38 + 40 ], "dpr": [ - 2827 + 2944 ], "entry_rate": [ - 2827 + 2944 ], "flash_assists": [ - 38 + 40 ], "hltv_rating": [ - 2827 + 2944 ], "kast_pct": [ - 2827 + 2944 ], "kills": [ - 38 + 40 ], "kpr": [ - 2827 + 2944 ], "lineup_id": [ - 4921 + 4993 ], "match": [ - 2644 + 2761 ], "match_id": [ - 4921 + 4993 ], "match_map": [ - 2482 + 2599 ], "match_map_id": [ - 4921 + 4993 ], "open_deaths": [ - 38 + 40 ], "open_kills": [ - 38 + 40 ], "opening_attempts": [ - 38 + 40 ], "player": [ - 3787 + 3904 ], "role": [ - 78 + 80 ], "rounds": [ - 38 + 40 ], "steam_id": [ - 180 + 252 ], "support_idx": [ - 2827 + 2944 ], "total_kills": [ - 38 + 40 ], "trade_kill_successes": [ - 38 + 40 ], "traded_death_successes": [ - 38 + 40 ], "util_damage": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "v_player_match_map_roles_aggregate": { "aggregate": [ - 5442 + 5514 ], "nodes": [ - 5440 + 5512 ], "__typename": [ - 78 + 80 ] }, "v_player_match_map_roles_aggregate_fields": { "avg": [ - 5443 + 5515 ], "count": [ - 38, + 40, { "columns": [ - 5448, + 5520, "[v_player_match_map_roles_select_column!]" ], "distinct": [ - 3 + 5 ] } ], "max": [ - 5445 + 5517 ], "min": [ - 5446 + 5518 ], "stddev": [ - 5449 + 5521 ], "stddev_pop": [ - 5450 + 5522 ], "stddev_samp": [ - 5451 + 5523 ], "sum": [ - 5454 + 5526 ], "var_pop": [ - 5455 + 5527 ], "var_samp": [ - 5456 + 5528 ], "variance": [ - 5457 + 5529 ], "__typename": [ - 78 + 80 ] }, "v_player_match_map_roles_avg_fields": { "adr": [ - 29 + 31 ], "awp_kills": [ - 29 + 31 ], "awp_share": [ - 29 + 31 ], "deaths": [ - 29 + 31 ], "dpr": [ - 29 + 31 ], "entry_rate": [ - 29 + 31 ], "flash_assists": [ - 29 + 31 ], "hltv_rating": [ - 29 + 31 ], "kast_pct": [ - 29 + 31 ], "kills": [ - 29 + 31 ], "kpr": [ - 29 + 31 ], "open_deaths": [ - 29 + 31 ], "open_kills": [ - 29 + 31 ], "opening_attempts": [ - 29 + 31 ], "rounds": [ - 29 + 31 ], "steam_id": [ - 29 + 31 ], "support_idx": [ - 29 + 31 ], "total_kills": [ - 29 + 31 ], "trade_kill_successes": [ - 29 + 31 ], "traded_death_successes": [ - 29 + 31 ], "util_damage": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_player_match_map_roles_bool_exp": { "_and": [ - 5444 + 5516 ], "_not": [ - 5444 + 5516 ], "_or": [ - 5444 + 5516 ], "adr": [ - 2828 + 2945 ], "awp_kills": [ - 39 + 41 ], "awp_share": [ - 2828 + 2945 ], "deaths": [ - 39 + 41 ], "dpr": [ - 2828 + 2945 ], "entry_rate": [ - 2828 + 2945 ], "flash_assists": [ - 39 + 41 ], "hltv_rating": [ - 2828 + 2945 ], "kast_pct": [ - 2828 + 2945 ], "kills": [ - 39 + 41 ], "kpr": [ - 2828 + 2945 ], "lineup_id": [ - 4923 + 4995 ], "match": [ - 2653 + 2770 ], "match_id": [ - 4923 + 4995 ], "match_map": [ - 2491 + 2608 ], "match_map_id": [ - 4923 + 4995 ], "open_deaths": [ - 39 + 41 ], "open_kills": [ - 39 + 41 ], "opening_attempts": [ - 39 + 41 ], "player": [ - 3791 + 3908 ], "role": [ - 80 + 82 ], "rounds": [ - 39 + 41 ], "steam_id": [ - 182 + 254 ], "support_idx": [ - 2828 + 2945 ], "total_kills": [ - 39 + 41 ], "trade_kill_successes": [ - 39 + 41 ], "traded_death_successes": [ - 39 + 41 ], "util_damage": [ - 39 + 41 ], "__typename": [ - 78 + 80 ] }, "v_player_match_map_roles_max_fields": { "adr": [ - 2827 + 2944 ], "awp_kills": [ - 38 + 40 ], "awp_share": [ - 2827 + 2944 ], "deaths": [ - 38 + 40 ], "dpr": [ - 2827 + 2944 ], "entry_rate": [ - 2827 + 2944 ], "flash_assists": [ - 38 + 40 ], "hltv_rating": [ - 2827 + 2944 ], "kast_pct": [ - 2827 + 2944 ], "kills": [ - 38 + 40 ], "kpr": [ - 2827 + 2944 ], "lineup_id": [ - 4921 + 4993 ], "match_id": [ - 4921 + 4993 ], "match_map_id": [ - 4921 + 4993 ], "open_deaths": [ - 38 + 40 ], "open_kills": [ - 38 + 40 ], "opening_attempts": [ - 38 + 40 ], "role": [ - 78 + 80 ], "rounds": [ - 38 + 40 ], "steam_id": [ - 180 + 252 ], "support_idx": [ - 2827 + 2944 ], "total_kills": [ - 38 + 40 ], "trade_kill_successes": [ - 38 + 40 ], "traded_death_successes": [ - 38 + 40 ], "util_damage": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "v_player_match_map_roles_min_fields": { "adr": [ - 2827 + 2944 ], "awp_kills": [ - 38 + 40 ], "awp_share": [ - 2827 + 2944 ], "deaths": [ - 38 + 40 ], "dpr": [ - 2827 + 2944 ], "entry_rate": [ - 2827 + 2944 ], "flash_assists": [ - 38 + 40 ], "hltv_rating": [ - 2827 + 2944 ], "kast_pct": [ - 2827 + 2944 ], "kills": [ - 38 + 40 ], "kpr": [ - 2827 + 2944 ], "lineup_id": [ - 4921 + 4993 ], "match_id": [ - 4921 + 4993 ], "match_map_id": [ - 4921 + 4993 ], "open_deaths": [ - 38 + 40 ], "open_kills": [ - 38 + 40 ], "opening_attempts": [ - 38 + 40 ], "role": [ - 78 + 80 ], "rounds": [ - 38 + 40 ], "steam_id": [ - 180 + 252 ], "support_idx": [ - 2827 + 2944 ], "total_kills": [ - 38 + 40 ], "trade_kill_successes": [ - 38 + 40 ], "traded_death_successes": [ - 38 + 40 ], "util_damage": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "v_player_match_map_roles_order_by": { "adr": [ - 2829 + 2946 ], "awp_kills": [ - 2829 + 2946 ], "awp_share": [ - 2829 + 2946 ], "deaths": [ - 2829 + 2946 ], "dpr": [ - 2829 + 2946 ], "entry_rate": [ - 2829 + 2946 ], "flash_assists": [ - 2829 + 2946 ], "hltv_rating": [ - 2829 + 2946 ], "kast_pct": [ - 2829 + 2946 ], "kills": [ - 2829 + 2946 ], "kpr": [ - 2829 + 2946 ], "lineup_id": [ - 2829 + 2946 ], "match": [ - 2664 + 2781 ], "match_id": [ - 2829 + 2946 ], "match_map": [ - 2502 + 2619 ], "match_map_id": [ - 2829 + 2946 ], "open_deaths": [ - 2829 + 2946 ], "open_kills": [ - 2829 + 2946 ], "opening_attempts": [ - 2829 + 2946 ], "player": [ - 3800 + 3917 ], "role": [ - 2829 + 2946 ], "rounds": [ - 2829 + 2946 ], "steam_id": [ - 2829 + 2946 ], "support_idx": [ - 2829 + 2946 ], "total_kills": [ - 2829 + 2946 ], "trade_kill_successes": [ - 2829 + 2946 ], "traded_death_successes": [ - 2829 + 2946 ], "util_damage": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "v_player_match_map_roles_select_column": {}, "v_player_match_map_roles_stddev_fields": { "adr": [ - 29 + 31 ], "awp_kills": [ - 29 + 31 ], "awp_share": [ - 29 + 31 ], "deaths": [ - 29 + 31 ], "dpr": [ - 29 + 31 ], "entry_rate": [ - 29 + 31 ], "flash_assists": [ - 29 + 31 ], "hltv_rating": [ - 29 + 31 ], "kast_pct": [ - 29 + 31 ], "kills": [ - 29 + 31 ], "kpr": [ - 29 + 31 ], "open_deaths": [ - 29 + 31 ], "open_kills": [ - 29 + 31 ], "opening_attempts": [ - 29 + 31 ], "rounds": [ - 29 + 31 ], "steam_id": [ - 29 + 31 ], "support_idx": [ - 29 + 31 ], "total_kills": [ - 29 + 31 ], "trade_kill_successes": [ - 29 + 31 ], "traded_death_successes": [ - 29 + 31 ], "util_damage": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_player_match_map_roles_stddev_pop_fields": { "adr": [ - 29 + 31 ], "awp_kills": [ - 29 + 31 ], "awp_share": [ - 29 + 31 ], "deaths": [ - 29 + 31 ], "dpr": [ - 29 + 31 ], "entry_rate": [ - 29 + 31 ], "flash_assists": [ - 29 + 31 ], "hltv_rating": [ - 29 + 31 ], "kast_pct": [ - 29 + 31 ], "kills": [ - 29 + 31 ], "kpr": [ - 29 + 31 ], "open_deaths": [ - 29 + 31 ], "open_kills": [ - 29 + 31 ], "opening_attempts": [ - 29 + 31 ], "rounds": [ - 29 + 31 ], "steam_id": [ - 29 + 31 ], "support_idx": [ - 29 + 31 ], "total_kills": [ - 29 + 31 ], "trade_kill_successes": [ - 29 + 31 ], "traded_death_successes": [ - 29 + 31 ], "util_damage": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_player_match_map_roles_stddev_samp_fields": { "adr": [ - 29 + 31 ], "awp_kills": [ - 29 + 31 ], "awp_share": [ - 29 + 31 ], "deaths": [ - 29 + 31 ], "dpr": [ - 29 + 31 ], "entry_rate": [ - 29 + 31 ], "flash_assists": [ - 29 + 31 ], "hltv_rating": [ - 29 + 31 ], "kast_pct": [ - 29 + 31 ], "kills": [ - 29 + 31 ], "kpr": [ - 29 + 31 ], "open_deaths": [ - 29 + 31 ], "open_kills": [ - 29 + 31 ], "opening_attempts": [ - 29 + 31 ], "rounds": [ - 29 + 31 ], "steam_id": [ - 29 + 31 ], "support_idx": [ - 29 + 31 ], "total_kills": [ - 29 + 31 ], "trade_kill_successes": [ - 29 + 31 ], "traded_death_successes": [ - 29 + 31 ], "util_damage": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_player_match_map_roles_stream_cursor_input": { "initial_value": [ - 5453 + 5525 ], "ordering": [ - 236 + 308 ], "__typename": [ - 78 + 80 ] }, "v_player_match_map_roles_stream_cursor_value_input": { "adr": [ - 2827 + 2944 ], "awp_kills": [ - 38 + 40 ], "awp_share": [ - 2827 + 2944 ], "deaths": [ - 38 + 40 ], "dpr": [ - 2827 + 2944 ], "entry_rate": [ - 2827 + 2944 ], "flash_assists": [ - 38 + 40 ], "hltv_rating": [ - 2827 + 2944 ], "kast_pct": [ - 2827 + 2944 ], "kills": [ - 38 + 40 ], "kpr": [ - 2827 + 2944 ], "lineup_id": [ - 4921 + 4993 ], "match_id": [ - 4921 + 4993 ], "match_map_id": [ - 4921 + 4993 ], "open_deaths": [ - 38 + 40 ], "open_kills": [ - 38 + 40 ], "opening_attempts": [ - 38 + 40 ], "role": [ - 78 + 80 ], "rounds": [ - 38 + 40 ], "steam_id": [ - 180 + 252 ], "support_idx": [ - 2827 + 2944 ], "total_kills": [ - 38 + 40 ], "trade_kill_successes": [ - 38 + 40 ], "traded_death_successes": [ - 38 + 40 ], "util_damage": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "v_player_match_map_roles_sum_fields": { "adr": [ - 2827 + 2944 ], "awp_kills": [ - 38 + 40 ], "awp_share": [ - 2827 + 2944 ], "deaths": [ - 38 + 40 ], "dpr": [ - 2827 + 2944 ], "entry_rate": [ - 2827 + 2944 ], "flash_assists": [ - 38 + 40 ], "hltv_rating": [ - 2827 + 2944 ], "kast_pct": [ - 2827 + 2944 ], "kills": [ - 38 + 40 ], "kpr": [ - 2827 + 2944 ], "open_deaths": [ - 38 + 40 ], "open_kills": [ - 38 + 40 ], "opening_attempts": [ - 38 + 40 ], "rounds": [ - 38 + 40 ], "steam_id": [ - 180 + 252 ], "support_idx": [ - 2827 + 2944 ], "total_kills": [ - 38 + 40 ], "trade_kill_successes": [ - 38 + 40 ], "traded_death_successes": [ - 38 + 40 ], "util_damage": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "v_player_match_map_roles_var_pop_fields": { "adr": [ - 29 + 31 ], "awp_kills": [ - 29 + 31 ], "awp_share": [ - 29 + 31 ], "deaths": [ - 29 + 31 ], "dpr": [ - 29 + 31 ], "entry_rate": [ - 29 + 31 ], "flash_assists": [ - 29 + 31 ], "hltv_rating": [ - 29 + 31 ], "kast_pct": [ - 29 + 31 ], "kills": [ - 29 + 31 ], "kpr": [ - 29 + 31 ], "open_deaths": [ - 29 + 31 ], "open_kills": [ - 29 + 31 ], "opening_attempts": [ - 29 + 31 ], "rounds": [ - 29 + 31 ], "steam_id": [ - 29 + 31 ], "support_idx": [ - 29 + 31 ], "total_kills": [ - 29 + 31 ], "trade_kill_successes": [ - 29 + 31 ], "traded_death_successes": [ - 29 + 31 ], "util_damage": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_player_match_map_roles_var_samp_fields": { "adr": [ - 29 + 31 ], "awp_kills": [ - 29 + 31 ], "awp_share": [ - 29 + 31 ], "deaths": [ - 29 + 31 ], "dpr": [ - 29 + 31 ], "entry_rate": [ - 29 + 31 ], "flash_assists": [ - 29 + 31 ], "hltv_rating": [ - 29 + 31 ], "kast_pct": [ - 29 + 31 ], "kills": [ - 29 + 31 ], "kpr": [ - 29 + 31 ], "open_deaths": [ - 29 + 31 ], "open_kills": [ - 29 + 31 ], "opening_attempts": [ - 29 + 31 ], "rounds": [ - 29 + 31 ], "steam_id": [ - 29 + 31 ], "support_idx": [ - 29 + 31 ], "total_kills": [ - 29 + 31 ], "trade_kill_successes": [ - 29 + 31 ], "traded_death_successes": [ - 29 + 31 ], "util_damage": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_player_match_map_roles_variance_fields": { "adr": [ - 29 + 31 ], "awp_kills": [ - 29 + 31 ], "awp_share": [ - 29 + 31 ], "deaths": [ - 29 + 31 ], "dpr": [ - 29 + 31 ], "entry_rate": [ - 29 + 31 ], "flash_assists": [ - 29 + 31 ], "hltv_rating": [ - 29 + 31 ], "kast_pct": [ - 29 + 31 ], "kills": [ - 29 + 31 ], "kpr": [ - 29 + 31 ], "open_deaths": [ - 29 + 31 ], "open_kills": [ - 29 + 31 ], "opening_attempts": [ - 29 + 31 ], "rounds": [ - 29 + 31 ], "steam_id": [ - 29 + 31 ], "support_idx": [ - 29 + 31 ], "total_kills": [ - 29 + 31 ], "trade_kill_successes": [ - 29 + 31 ], "traded_death_successes": [ - 29 + 31 ], "util_damage": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_player_match_performance": { "assists": [ - 38 + 40 ], "deaths": [ - 38 + 40 ], "kills": [ - 38 + 40 ], "map": [ - 2162 + 2279 ], "map_id": [ - 4921 + 4993 ], "match": [ - 2644 + 2761 ], "match_created_at": [ - 4376 + 4493 ], "match_id": [ - 4921 + 4993 ], "match_result": [ - 78 + 80 ], "player_steam_id": [ - 180 + 252 ], "source": [ - 78 + 80 ], "type": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "v_player_match_performance_aggregate": { "aggregate": [ - 5460 + 5532 ], "nodes": [ - 5458 + 5530 ], "__typename": [ - 78 + 80 ] }, "v_player_match_performance_aggregate_fields": { "avg": [ - 5461 + 5533 ], "count": [ - 38, + 40, { "columns": [ - 5466, + 5538, "[v_player_match_performance_select_column!]" ], "distinct": [ - 3 + 5 ] } ], "max": [ - 5463 + 5535 ], "min": [ - 5464 + 5536 ], "stddev": [ - 5467 + 5539 ], "stddev_pop": [ - 5468 + 5540 ], "stddev_samp": [ - 5469 + 5541 ], "sum": [ - 5472 + 5544 ], "var_pop": [ - 5473 + 5545 ], "var_samp": [ - 5474 + 5546 ], "variance": [ - 5475 + 5547 ], "__typename": [ - 78 + 80 ] }, "v_player_match_performance_avg_fields": { "assists": [ - 29 + 31 ], "deaths": [ - 29 + 31 ], "kills": [ - 29 + 31 ], "player_steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_player_match_performance_bool_exp": { "_and": [ - 5462 + 5534 ], "_not": [ - 5462 + 5534 ], "_or": [ - 5462 + 5534 ], "assists": [ - 39 + 41 ], "deaths": [ - 39 + 41 ], "kills": [ - 39 + 41 ], "map": [ - 2171 + 2288 ], "map_id": [ - 4923 + 4995 ], "match": [ - 2653 + 2770 ], "match_created_at": [ - 4377 + 4494 ], "match_id": [ - 4923 + 4995 ], "match_result": [ - 80 + 82 ], "player_steam_id": [ - 182 + 254 ], "source": [ - 80 + 82 ], "type": [ - 80 + 82 ], "__typename": [ - 78 + 80 ] }, "v_player_match_performance_max_fields": { "assists": [ - 38 + 40 ], "deaths": [ - 38 + 40 ], "kills": [ - 38 + 40 ], "map_id": [ - 4921 + 4993 ], "match_created_at": [ - 4376 + 4493 ], "match_id": [ - 4921 + 4993 ], "match_result": [ - 78 + 80 ], "player_steam_id": [ - 180 + 252 ], "source": [ - 78 + 80 ], "type": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "v_player_match_performance_min_fields": { "assists": [ - 38 + 40 ], "deaths": [ - 38 + 40 ], "kills": [ - 38 + 40 ], "map_id": [ - 4921 + 4993 ], "match_created_at": [ - 4376 + 4493 ], "match_id": [ - 4921 + 4993 ], "match_result": [ - 78 + 80 ], "player_steam_id": [ - 180 + 252 ], "source": [ - 78 + 80 ], "type": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "v_player_match_performance_order_by": { "assists": [ - 2829 + 2946 ], "deaths": [ - 2829 + 2946 ], "kills": [ - 2829 + 2946 ], "map": [ - 2181 + 2298 ], "map_id": [ - 2829 + 2946 ], "match": [ - 2664 + 2781 ], "match_created_at": [ - 2829 + 2946 ], "match_id": [ - 2829 + 2946 ], "match_result": [ - 2829 + 2946 ], "player_steam_id": [ - 2829 + 2946 ], "source": [ - 2829 + 2946 ], "type": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "v_player_match_performance_select_column": {}, "v_player_match_performance_stddev_fields": { "assists": [ - 29 + 31 ], "deaths": [ - 29 + 31 ], "kills": [ - 29 + 31 ], "player_steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_player_match_performance_stddev_pop_fields": { "assists": [ - 29 + 31 ], "deaths": [ - 29 + 31 ], "kills": [ - 29 + 31 ], "player_steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_player_match_performance_stddev_samp_fields": { "assists": [ - 29 + 31 ], "deaths": [ - 29 + 31 ], "kills": [ - 29 + 31 ], "player_steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_player_match_performance_stream_cursor_input": { "initial_value": [ - 5471 + 5543 ], "ordering": [ - 236 + 308 ], "__typename": [ - 78 + 80 ] }, "v_player_match_performance_stream_cursor_value_input": { "assists": [ - 38 + 40 ], "deaths": [ - 38 + 40 ], "kills": [ - 38 + 40 ], "map_id": [ - 4921 + 4993 ], "match_created_at": [ - 4376 + 4493 ], "match_id": [ - 4921 + 4993 ], "match_result": [ - 78 + 80 ], "player_steam_id": [ - 180 + 252 ], "source": [ - 78 + 80 ], "type": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "v_player_match_performance_sum_fields": { "assists": [ - 38 + 40 ], "deaths": [ - 38 + 40 ], "kills": [ - 38 + 40 ], "player_steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "v_player_match_performance_var_pop_fields": { "assists": [ - 29 + 31 ], "deaths": [ - 29 + 31 ], "kills": [ - 29 + 31 ], "player_steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_player_match_performance_var_samp_fields": { "assists": [ - 29 + 31 ], "deaths": [ - 29 + 31 ], "kills": [ - 29 + 31 ], "player_steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_player_match_performance_variance_fields": { "assists": [ - 29 + 31 ], "deaths": [ - 29 + 31 ], "kills": [ - 29 + 31 ], "player_steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_player_match_rating": { "adr": [ - 2827 + 2944 ], "dpr": [ - 2827 + 2944 ], "hltv_rating": [ - 2827 + 2944 ], "kast_pct": [ - 2827 + 2944 ], "kpr": [ - 2827 + 2944 ], "match": [ - 2644 + 2761 ], "match_id": [ - 4921 + 4993 ], "player": [ - 3787 + 3904 ], "rounds_played": [ - 38 + 40 ], "steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "v_player_match_rating_aggregate": { "aggregate": [ - 5478 + 5550 ], "nodes": [ - 5476 + 5548 ], "__typename": [ - 78 + 80 ] }, "v_player_match_rating_aggregate_fields": { "avg": [ - 5479 + 5551 ], "count": [ - 38, + 40, { "columns": [ - 5484, + 5556, "[v_player_match_rating_select_column!]" ], "distinct": [ - 3 + 5 ] } ], "max": [ - 5481 + 5553 ], "min": [ - 5482 + 5554 ], "stddev": [ - 5485 + 5557 ], "stddev_pop": [ - 5486 + 5558 ], "stddev_samp": [ - 5487 + 5559 ], "sum": [ - 5490 + 5562 ], "var_pop": [ - 5491 + 5563 ], "var_samp": [ - 5492 + 5564 ], "variance": [ - 5493 + 5565 ], "__typename": [ - 78 + 80 ] }, "v_player_match_rating_avg_fields": { "adr": [ - 29 + 31 ], "dpr": [ - 29 + 31 ], "hltv_rating": [ - 29 + 31 ], "kast_pct": [ - 29 + 31 ], "kpr": [ - 29 + 31 ], "rounds_played": [ - 29 + 31 ], "steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_player_match_rating_bool_exp": { "_and": [ - 5480 + 5552 ], "_not": [ - 5480 + 5552 ], "_or": [ - 5480 + 5552 ], "adr": [ - 2828 + 2945 ], "dpr": [ - 2828 + 2945 ], "hltv_rating": [ - 2828 + 2945 ], "kast_pct": [ - 2828 + 2945 ], "kpr": [ - 2828 + 2945 ], "match": [ - 2653 + 2770 ], "match_id": [ - 4923 + 4995 ], "player": [ - 3791 + 3908 ], "rounds_played": [ - 39 + 41 ], "steam_id": [ - 182 + 254 ], "__typename": [ - 78 + 80 ] }, "v_player_match_rating_max_fields": { "adr": [ - 2827 + 2944 ], "dpr": [ - 2827 + 2944 ], "hltv_rating": [ - 2827 + 2944 ], "kast_pct": [ - 2827 + 2944 ], "kpr": [ - 2827 + 2944 ], "match_id": [ - 4921 + 4993 ], "rounds_played": [ - 38 + 40 ], "steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "v_player_match_rating_min_fields": { "adr": [ - 2827 + 2944 ], "dpr": [ - 2827 + 2944 ], "hltv_rating": [ - 2827 + 2944 ], "kast_pct": [ - 2827 + 2944 ], "kpr": [ - 2827 + 2944 ], "match_id": [ - 4921 + 4993 ], "rounds_played": [ - 38 + 40 ], "steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "v_player_match_rating_order_by": { "adr": [ - 2829 + 2946 ], "dpr": [ - 2829 + 2946 ], "hltv_rating": [ - 2829 + 2946 ], "kast_pct": [ - 2829 + 2946 ], "kpr": [ - 2829 + 2946 ], "match": [ - 2664 + 2781 ], "match_id": [ - 2829 + 2946 ], "player": [ - 3800 + 3917 ], "rounds_played": [ - 2829 + 2946 ], "steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "v_player_match_rating_select_column": {}, "v_player_match_rating_stddev_fields": { "adr": [ - 29 + 31 ], "dpr": [ - 29 + 31 ], "hltv_rating": [ - 29 + 31 ], "kast_pct": [ - 29 + 31 ], "kpr": [ - 29 + 31 ], "rounds_played": [ - 29 + 31 ], "steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_player_match_rating_stddev_pop_fields": { "adr": [ - 29 + 31 ], "dpr": [ - 29 + 31 ], "hltv_rating": [ - 29 + 31 ], "kast_pct": [ - 29 + 31 ], "kpr": [ - 29 + 31 ], "rounds_played": [ - 29 + 31 ], "steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_player_match_rating_stddev_samp_fields": { "adr": [ - 29 + 31 ], "dpr": [ - 29 + 31 ], "hltv_rating": [ - 29 + 31 ], "kast_pct": [ - 29 + 31 ], "kpr": [ - 29 + 31 ], "rounds_played": [ - 29 + 31 ], "steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_player_match_rating_stream_cursor_input": { "initial_value": [ - 5489 + 5561 ], "ordering": [ - 236 + 308 ], "__typename": [ - 78 + 80 ] }, "v_player_match_rating_stream_cursor_value_input": { "adr": [ - 2827 + 2944 ], "dpr": [ - 2827 + 2944 ], "hltv_rating": [ - 2827 + 2944 ], "kast_pct": [ - 2827 + 2944 ], "kpr": [ - 2827 + 2944 ], "match_id": [ - 4921 + 4993 ], "rounds_played": [ - 38 + 40 ], "steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "v_player_match_rating_sum_fields": { "adr": [ - 2827 + 2944 ], "dpr": [ - 2827 + 2944 ], "hltv_rating": [ - 2827 + 2944 ], "kast_pct": [ - 2827 + 2944 ], "kpr": [ - 2827 + 2944 ], "rounds_played": [ - 38 + 40 ], "steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "v_player_match_rating_var_pop_fields": { "adr": [ - 29 + 31 ], "dpr": [ - 29 + 31 ], "hltv_rating": [ - 29 + 31 ], "kast_pct": [ - 29 + 31 ], "kpr": [ - 29 + 31 ], "rounds_played": [ - 29 + 31 ], "steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_player_match_rating_var_samp_fields": { "adr": [ - 29 + 31 ], "dpr": [ - 29 + 31 ], "hltv_rating": [ - 29 + 31 ], "kast_pct": [ - 29 + 31 ], "kpr": [ - 29 + 31 ], "rounds_played": [ - 29 + 31 ], "steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_player_match_rating_variance_fields": { "adr": [ - 29 + 31 ], "dpr": [ - 29 + 31 ], "hltv_rating": [ - 29 + 31 ], "kast_pct": [ - 29 + 31 ], "kpr": [ - 29 + 31 ], "rounds_played": [ - 29 + 31 ], "steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_player_multi_kills": { "attacker_steam_id": [ - 180 + 252 ], "kills": [ - 180 + 252 ], "match_id": [ - 4921 + 4993 ], "round": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "v_player_multi_kills_aggregate": { "aggregate": [ - 5498 + 5570 ], "nodes": [ - 5494 + 5566 ], "__typename": [ - 78 + 80 ] }, "v_player_multi_kills_aggregate_bool_exp": { "count": [ - 5497 + 5569 ], "__typename": [ - 78 + 80 ] }, "v_player_multi_kills_aggregate_bool_exp_count": { "arguments": [ - 5510 + 5582 ], "distinct": [ - 3 + 5 ], "filter": [ - 5503 + 5575 ], "predicate": [ - 39 + 41 ], "__typename": [ - 78 + 80 ] }, "v_player_multi_kills_aggregate_fields": { "avg": [ - 5501 + 5573 ], "count": [ - 38, + 40, { "columns": [ - 5510, + 5582, "[v_player_multi_kills_select_column!]" ], "distinct": [ - 3 + 5 ] } ], "max": [ - 5505 + 5577 ], "min": [ - 5507 + 5579 ], "stddev": [ - 5511 + 5583 ], "stddev_pop": [ - 5513 + 5585 ], "stddev_samp": [ - 5515 + 5587 ], "sum": [ - 5519 + 5591 ], "var_pop": [ - 5521 + 5593 ], "var_samp": [ - 5523 + 5595 ], "variance": [ - 5525 + 5597 ], "__typename": [ - 78 + 80 ] }, "v_player_multi_kills_aggregate_order_by": { "avg": [ - 5502 + 5574 ], "count": [ - 2829 + 2946 ], "max": [ - 5506 + 5578 ], "min": [ - 5508 + 5580 ], "stddev": [ - 5512 + 5584 ], "stddev_pop": [ - 5514 + 5586 ], "stddev_samp": [ - 5516 + 5588 ], "sum": [ - 5520 + 5592 ], "var_pop": [ - 5522 + 5594 ], "var_samp": [ - 5524 + 5596 ], "variance": [ - 5526 + 5598 ], "__typename": [ - 78 + 80 ] }, "v_player_multi_kills_arr_rel_insert_input": { "data": [ - 5504 + 5576 ], "__typename": [ - 78 + 80 ] }, "v_player_multi_kills_avg_fields": { "attacker_steam_id": [ - 29 + 31 ], "kills": [ - 29 + 31 ], "round": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_player_multi_kills_avg_order_by": { "attacker_steam_id": [ - 2829 + 2946 ], "kills": [ - 2829 + 2946 ], "round": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "v_player_multi_kills_bool_exp": { "_and": [ - 5503 + 5575 ], "_not": [ - 5503 + 5575 ], "_or": [ - 5503 + 5575 ], "attacker_steam_id": [ - 182 + 254 ], "kills": [ - 182 + 254 ], "match_id": [ - 4923 + 4995 ], "round": [ - 39 + 41 ], "__typename": [ - 78 + 80 ] }, "v_player_multi_kills_insert_input": { "attacker_steam_id": [ - 180 + 252 ], "kills": [ - 180 + 252 ], "match_id": [ - 4921 + 4993 ], "round": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "v_player_multi_kills_max_fields": { "attacker_steam_id": [ - 180 + 252 ], "kills": [ - 180 + 252 ], "match_id": [ - 4921 + 4993 ], "round": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "v_player_multi_kills_max_order_by": { "attacker_steam_id": [ - 2829 + 2946 ], "kills": [ - 2829 + 2946 ], "match_id": [ - 2829 + 2946 ], "round": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "v_player_multi_kills_min_fields": { "attacker_steam_id": [ - 180 + 252 ], "kills": [ - 180 + 252 ], "match_id": [ - 4921 + 4993 ], "round": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "v_player_multi_kills_min_order_by": { "attacker_steam_id": [ - 2829 + 2946 ], "kills": [ - 2829 + 2946 ], "match_id": [ - 2829 + 2946 ], "round": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "v_player_multi_kills_order_by": { "attacker_steam_id": [ - 2829 + 2946 ], "kills": [ - 2829 + 2946 ], "match_id": [ - 2829 + 2946 ], "round": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "v_player_multi_kills_select_column": {}, "v_player_multi_kills_stddev_fields": { "attacker_steam_id": [ - 29 + 31 ], "kills": [ - 29 + 31 ], "round": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_player_multi_kills_stddev_order_by": { "attacker_steam_id": [ - 2829 + 2946 ], "kills": [ - 2829 + 2946 ], "round": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "v_player_multi_kills_stddev_pop_fields": { "attacker_steam_id": [ - 29 + 31 ], "kills": [ - 29 + 31 ], "round": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_player_multi_kills_stddev_pop_order_by": { "attacker_steam_id": [ - 2829 + 2946 ], "kills": [ - 2829 + 2946 ], "round": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "v_player_multi_kills_stddev_samp_fields": { "attacker_steam_id": [ - 29 + 31 ], "kills": [ - 29 + 31 ], "round": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_player_multi_kills_stddev_samp_order_by": { "attacker_steam_id": [ - 2829 + 2946 ], "kills": [ - 2829 + 2946 ], "round": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "v_player_multi_kills_stream_cursor_input": { "initial_value": [ - 5518 + 5590 ], "ordering": [ - 236 + 308 ], "__typename": [ - 78 + 80 ] }, "v_player_multi_kills_stream_cursor_value_input": { "attacker_steam_id": [ - 180 + 252 ], "kills": [ - 180 + 252 ], "match_id": [ - 4921 + 4993 ], "round": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "v_player_multi_kills_sum_fields": { "attacker_steam_id": [ - 180 + 252 ], "kills": [ - 180 + 252 ], "round": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "v_player_multi_kills_sum_order_by": { "attacker_steam_id": [ - 2829 + 2946 ], "kills": [ - 2829 + 2946 ], "round": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "v_player_multi_kills_var_pop_fields": { "attacker_steam_id": [ - 29 + 31 ], "kills": [ - 29 + 31 ], "round": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_player_multi_kills_var_pop_order_by": { "attacker_steam_id": [ - 2829 + 2946 ], "kills": [ - 2829 + 2946 ], "round": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "v_player_multi_kills_var_samp_fields": { "attacker_steam_id": [ - 29 + 31 ], "kills": [ - 29 + 31 ], "round": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_player_multi_kills_var_samp_order_by": { "attacker_steam_id": [ - 2829 + 2946 ], "kills": [ - 2829 + 2946 ], "round": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "v_player_multi_kills_variance_fields": { "attacker_steam_id": [ - 29 + 31 ], "kills": [ - 29 + 31 ], "round": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_player_multi_kills_variance_order_by": { "attacker_steam_id": [ - 2829 + 2946 ], "kills": [ - 2829 + 2946 ], "round": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "v_player_weapon_damage": { "damage": [ - 180 + 252 ], "hits": [ - 180 + 252 ], "player_steam_id": [ - 180 + 252 ], "source": [ - 78 + 80 ], "type": [ - 78 + 80 ], "with": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "v_player_weapon_damage_aggregate": { "aggregate": [ - 5529 + 5601 ], "nodes": [ - 5527 + 5599 ], "__typename": [ - 78 + 80 ] }, "v_player_weapon_damage_aggregate_fields": { "avg": [ - 5530 + 5602 ], "count": [ - 38, + 40, { "columns": [ - 5535, + 5607, "[v_player_weapon_damage_select_column!]" ], "distinct": [ - 3 + 5 ] } ], "max": [ - 5532 + 5604 ], "min": [ - 5533 + 5605 ], "stddev": [ - 5536 + 5608 ], "stddev_pop": [ - 5537 + 5609 ], "stddev_samp": [ - 5538 + 5610 ], "sum": [ - 5541 + 5613 ], "var_pop": [ - 5542 + 5614 ], "var_samp": [ - 5543 + 5615 ], "variance": [ - 5544 + 5616 ], "__typename": [ - 78 + 80 ] }, "v_player_weapon_damage_avg_fields": { "damage": [ - 29 + 31 ], "hits": [ - 29 + 31 ], "player_steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_player_weapon_damage_bool_exp": { "_and": [ - 5531 + 5603 ], "_not": [ - 5531 + 5603 ], "_or": [ - 5531 + 5603 ], "damage": [ - 182 + 254 ], "hits": [ - 182 + 254 ], "player_steam_id": [ - 182 + 254 ], "source": [ - 80 + 82 ], "type": [ - 80 + 82 ], "with": [ - 80 + 82 ], "__typename": [ - 78 + 80 ] }, "v_player_weapon_damage_max_fields": { "damage": [ - 180 + 252 ], "hits": [ - 180 + 252 ], "player_steam_id": [ - 180 + 252 ], "source": [ - 78 + 80 ], "type": [ - 78 + 80 ], "with": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "v_player_weapon_damage_min_fields": { "damage": [ - 180 + 252 ], "hits": [ - 180 + 252 ], "player_steam_id": [ - 180 + 252 ], "source": [ - 78 + 80 ], "type": [ - 78 + 80 ], "with": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "v_player_weapon_damage_order_by": { "damage": [ - 2829 + 2946 ], "hits": [ - 2829 + 2946 ], "player_steam_id": [ - 2829 + 2946 ], "source": [ - 2829 + 2946 ], "type": [ - 2829 + 2946 ], "with": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "v_player_weapon_damage_select_column": {}, "v_player_weapon_damage_stddev_fields": { "damage": [ - 29 + 31 ], "hits": [ - 29 + 31 ], "player_steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_player_weapon_damage_stddev_pop_fields": { "damage": [ - 29 + 31 ], "hits": [ - 29 + 31 ], "player_steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_player_weapon_damage_stddev_samp_fields": { "damage": [ - 29 + 31 ], "hits": [ - 29 + 31 ], "player_steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_player_weapon_damage_stream_cursor_input": { "initial_value": [ - 5540 + 5612 ], "ordering": [ - 236 + 308 ], "__typename": [ - 78 + 80 ] }, "v_player_weapon_damage_stream_cursor_value_input": { "damage": [ - 180 + 252 ], "hits": [ - 180 + 252 ], "player_steam_id": [ - 180 + 252 ], "source": [ - 78 + 80 ], "type": [ - 78 + 80 ], "with": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "v_player_weapon_damage_sum_fields": { "damage": [ - 180 + 252 ], "hits": [ - 180 + 252 ], "player_steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "v_player_weapon_damage_var_pop_fields": { "damage": [ - 29 + 31 ], "hits": [ - 29 + 31 ], "player_steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_player_weapon_damage_var_samp_fields": { "damage": [ - 29 + 31 ], "hits": [ - 29 + 31 ], "player_steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_player_weapon_damage_variance_fields": { "damage": [ - 29 + 31 ], "hits": [ - 29 + 31 ], "player_steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_player_weapon_kills": { "kill_count": [ - 180 + 252 ], "player_steam_id": [ - 180 + 252 ], "rounds": [ - 180 + 252 ], "source": [ - 78 + 80 ], "type": [ - 78 + 80 ], "with": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "v_player_weapon_kills_aggregate": { "aggregate": [ - 5547 + 5619 ], "nodes": [ - 5545 + 5617 ], "__typename": [ - 78 + 80 ] }, "v_player_weapon_kills_aggregate_fields": { "avg": [ - 5548 + 5620 ], "count": [ - 38, + 40, { "columns": [ - 5553, + 5625, "[v_player_weapon_kills_select_column!]" ], "distinct": [ - 3 + 5 ] } ], "max": [ - 5550 + 5622 ], "min": [ - 5551 + 5623 ], "stddev": [ - 5554 + 5626 ], "stddev_pop": [ - 5555 + 5627 ], "stddev_samp": [ - 5556 + 5628 ], "sum": [ - 5559 + 5631 ], "var_pop": [ - 5560 + 5632 ], "var_samp": [ - 5561 + 5633 ], "variance": [ - 5562 + 5634 ], "__typename": [ - 78 + 80 ] }, "v_player_weapon_kills_avg_fields": { "kill_count": [ - 29 + 31 ], "player_steam_id": [ - 29 + 31 ], "rounds": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_player_weapon_kills_bool_exp": { "_and": [ - 5549 + 5621 ], "_not": [ - 5549 + 5621 ], "_or": [ - 5549 + 5621 ], "kill_count": [ - 182 + 254 ], "player_steam_id": [ - 182 + 254 ], "rounds": [ - 182 + 254 ], "source": [ - 80 + 82 ], "type": [ - 80 + 82 ], "with": [ - 80 + 82 ], "__typename": [ - 78 + 80 ] }, "v_player_weapon_kills_max_fields": { "kill_count": [ - 180 + 252 ], "player_steam_id": [ - 180 + 252 ], "rounds": [ - 180 + 252 ], "source": [ - 78 + 80 ], "type": [ - 78 + 80 ], "with": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "v_player_weapon_kills_min_fields": { "kill_count": [ - 180 + 252 ], "player_steam_id": [ - 180 + 252 ], "rounds": [ - 180 + 252 ], "source": [ - 78 + 80 ], "type": [ - 78 + 80 ], "with": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "v_player_weapon_kills_order_by": { "kill_count": [ - 2829 + 2946 ], "player_steam_id": [ - 2829 + 2946 ], "rounds": [ - 2829 + 2946 ], "source": [ - 2829 + 2946 ], "type": [ - 2829 + 2946 ], "with": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "v_player_weapon_kills_select_column": {}, "v_player_weapon_kills_stddev_fields": { "kill_count": [ - 29 + 31 ], "player_steam_id": [ - 29 + 31 ], "rounds": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_player_weapon_kills_stddev_pop_fields": { "kill_count": [ - 29 + 31 ], "player_steam_id": [ - 29 + 31 ], "rounds": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_player_weapon_kills_stddev_samp_fields": { "kill_count": [ - 29 + 31 ], "player_steam_id": [ - 29 + 31 ], "rounds": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_player_weapon_kills_stream_cursor_input": { "initial_value": [ - 5558 + 5630 ], "ordering": [ - 236 + 308 ], "__typename": [ - 78 + 80 ] }, "v_player_weapon_kills_stream_cursor_value_input": { "kill_count": [ - 180 + 252 ], "player_steam_id": [ - 180 + 252 ], "rounds": [ - 180 + 252 ], "source": [ - 78 + 80 ], "type": [ - 78 + 80 ], "with": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "v_player_weapon_kills_sum_fields": { "kill_count": [ - 180 + 252 ], "player_steam_id": [ - 180 + 252 ], "rounds": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "v_player_weapon_kills_var_pop_fields": { "kill_count": [ - 29 + 31 ], "player_steam_id": [ - 29 + 31 ], "rounds": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_player_weapon_kills_var_samp_fields": { "kill_count": [ - 29 + 31 ], "player_steam_id": [ - 29 + 31 ], "rounds": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_player_weapon_kills_variance_fields": { "kill_count": [ - 29 + 31 ], "player_steam_id": [ - 29 + 31 ], "rounds": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_pool_maps": { "active_pool": [ - 3 + 5 ], "id": [ - 4921 + 4993 ], "label": [ - 78 + 80 ], "map_pool": [ - 2143 + 2260 ], "map_pool_id": [ - 4921 + 4993 ], "name": [ - 78 + 80 ], "patch": [ - 78 + 80 ], "poster": [ - 78 + 80 ], "type": [ - 78 + 80 ], "workshop_map_id": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "v_pool_maps_aggregate": { "aggregate": [ - 5569 + 5641 ], "nodes": [ - 5563 + 5635 ], "__typename": [ - 78 + 80 ] }, "v_pool_maps_aggregate_bool_exp": { "bool_and": [ - 5566 + 5638 ], "bool_or": [ - 5567 + 5639 ], "count": [ - 5568 + 5640 ], "__typename": [ - 78 + 80 ] }, "v_pool_maps_aggregate_bool_exp_bool_and": { "arguments": [ - 5581 + 5653 ], "distinct": [ - 3 + 5 ], "filter": [ - 5572 + 5644 ], "predicate": [ - 4 + 6 ], "__typename": [ - 78 + 80 ] }, "v_pool_maps_aggregate_bool_exp_bool_or": { "arguments": [ - 5582 + 5654 ], "distinct": [ - 3 + 5 ], "filter": [ - 5572 + 5644 ], "predicate": [ - 4 + 6 ], "__typename": [ - 78 + 80 ] }, "v_pool_maps_aggregate_bool_exp_count": { "arguments": [ - 5580 + 5652 ], "distinct": [ - 3 + 5 ], "filter": [ - 5572 + 5644 ], "predicate": [ - 39 + 41 ], "__typename": [ - 78 + 80 ] }, "v_pool_maps_aggregate_fields": { "count": [ - 38, + 40, { "columns": [ - 5580, + 5652, "[v_pool_maps_select_column!]" ], "distinct": [ - 3 + 5 ] } ], "max": [ - 5574 + 5646 ], "min": [ - 5576 + 5648 ], "__typename": [ - 78 + 80 ] }, "v_pool_maps_aggregate_order_by": { "count": [ - 2829 + 2946 ], "max": [ - 5575 + 5647 ], "min": [ - 5577 + 5649 ], "__typename": [ - 78 + 80 ] }, "v_pool_maps_arr_rel_insert_input": { "data": [ - 5573 + 5645 ], "__typename": [ - 78 + 80 ] }, "v_pool_maps_bool_exp": { "_and": [ - 5572 + 5644 ], "_not": [ - 5572 + 5644 ], "_or": [ - 5572 + 5644 ], "active_pool": [ - 4 + 6 ], "id": [ - 4923 + 4995 ], "label": [ - 80 + 82 ], "map_pool": [ - 2146 + 2263 ], "map_pool_id": [ - 4923 + 4995 ], "name": [ - 80 + 82 ], "patch": [ - 80 + 82 ], "poster": [ - 80 + 82 ], "type": [ - 80 + 82 ], "workshop_map_id": [ - 80 + 82 ], "__typename": [ - 78 + 80 ] }, "v_pool_maps_insert_input": { "active_pool": [ - 3 + 5 ], "id": [ - 4921 + 4993 ], "label": [ - 78 + 80 ], "map_pool": [ - 2152 + 2269 ], "map_pool_id": [ - 4921 + 4993 ], "name": [ - 78 + 80 ], "patch": [ - 78 + 80 ], "poster": [ - 78 + 80 ], "type": [ - 78 + 80 ], "workshop_map_id": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "v_pool_maps_max_fields": { "id": [ - 4921 + 4993 ], "label": [ - 78 + 80 ], "map_pool_id": [ - 4921 + 4993 ], "name": [ - 78 + 80 ], "patch": [ - 78 + 80 ], "poster": [ - 78 + 80 ], "type": [ - 78 + 80 ], "workshop_map_id": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "v_pool_maps_max_order_by": { "id": [ - 2829 + 2946 ], "label": [ - 2829 + 2946 ], "map_pool_id": [ - 2829 + 2946 ], "name": [ - 2829 + 2946 ], "patch": [ - 2829 + 2946 ], "poster": [ - 2829 + 2946 ], "type": [ - 2829 + 2946 ], "workshop_map_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "v_pool_maps_min_fields": { "id": [ - 4921 + 4993 ], "label": [ - 78 + 80 ], "map_pool_id": [ - 4921 + 4993 ], "name": [ - 78 + 80 ], "patch": [ - 78 + 80 ], "poster": [ - 78 + 80 ], "type": [ - 78 + 80 ], "workshop_map_id": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "v_pool_maps_min_order_by": { "id": [ - 2829 + 2946 ], "label": [ - 2829 + 2946 ], "map_pool_id": [ - 2829 + 2946 ], "name": [ - 2829 + 2946 ], "patch": [ - 2829 + 2946 ], "poster": [ - 2829 + 2946 ], "type": [ - 2829 + 2946 ], "workshop_map_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "v_pool_maps_mutation_response": { "affected_rows": [ - 38 + 40 ], "returning": [ - 5563 + 5635 ], "__typename": [ - 78 + 80 ] }, "v_pool_maps_order_by": { "active_pool": [ - 2829 + 2946 ], "id": [ - 2829 + 2946 ], "label": [ - 2829 + 2946 ], "map_pool": [ - 2154 + 2271 ], "map_pool_id": [ - 2829 + 2946 ], "name": [ - 2829 + 2946 ], "patch": [ - 2829 + 2946 ], "poster": [ - 2829 + 2946 ], "type": [ - 2829 + 2946 ], "workshop_map_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "v_pool_maps_select_column": {}, @@ -128280,2316 +129812,2316 @@ export default { "v_pool_maps_select_column_v_pool_maps_aggregate_bool_exp_bool_or_arguments_columns": {}, "v_pool_maps_set_input": { "active_pool": [ - 3 + 5 ], "id": [ - 4921 + 4993 ], "label": [ - 78 + 80 ], "map_pool_id": [ - 4921 + 4993 ], "name": [ - 78 + 80 ], "patch": [ - 78 + 80 ], "poster": [ - 78 + 80 ], "type": [ - 78 + 80 ], "workshop_map_id": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "v_pool_maps_stream_cursor_input": { "initial_value": [ - 5585 + 5657 ], "ordering": [ - 236 + 308 ], "__typename": [ - 78 + 80 ] }, "v_pool_maps_stream_cursor_value_input": { "active_pool": [ - 3 + 5 ], "id": [ - 4921 + 4993 ], "label": [ - 78 + 80 ], "map_pool_id": [ - 4921 + 4993 ], "name": [ - 78 + 80 ], "patch": [ - 78 + 80 ], "poster": [ - 78 + 80 ], "type": [ - 78 + 80 ], "workshop_map_id": [ - 78 + 80 ], "__typename": [ - 78 + 80 ] }, "v_pool_maps_updates": { "_set": [ - 5583 + 5655 ], "where": [ - 5572 + 5644 ], "__typename": [ - 78 + 80 ] }, "v_steam_account_pool_status": { "busy_accounts": [ - 38 + 40 ], "free_accounts": [ - 38 + 40 ], "id": [ - 38 + 40 ], "total_accounts": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "v_steam_account_pool_status_aggregate": { "aggregate": [ - 5589 + 5661 ], "nodes": [ - 5587 + 5659 ], "__typename": [ - 78 + 80 ] }, "v_steam_account_pool_status_aggregate_fields": { "avg": [ - 5590 + 5662 ], "count": [ - 38, + 40, { "columns": [ - 5595, + 5667, "[v_steam_account_pool_status_select_column!]" ], "distinct": [ - 3 + 5 ] } ], "max": [ - 5592 + 5664 ], "min": [ - 5593 + 5665 ], "stddev": [ - 5596 + 5668 ], "stddev_pop": [ - 5597 + 5669 ], "stddev_samp": [ - 5598 + 5670 ], "sum": [ - 5601 + 5673 ], "var_pop": [ - 5602 + 5674 ], "var_samp": [ - 5603 + 5675 ], "variance": [ - 5604 + 5676 ], "__typename": [ - 78 + 80 ] }, "v_steam_account_pool_status_avg_fields": { "busy_accounts": [ - 29 + 31 ], "free_accounts": [ - 29 + 31 ], "id": [ - 29 + 31 ], "total_accounts": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_steam_account_pool_status_bool_exp": { "_and": [ - 5591 + 5663 ], "_not": [ - 5591 + 5663 ], "_or": [ - 5591 + 5663 ], "busy_accounts": [ - 39 + 41 ], "free_accounts": [ - 39 + 41 ], "id": [ - 39 + 41 ], "total_accounts": [ - 39 + 41 ], "__typename": [ - 78 + 80 ] }, "v_steam_account_pool_status_max_fields": { "busy_accounts": [ - 38 + 40 ], "free_accounts": [ - 38 + 40 ], "id": [ - 38 + 40 ], "total_accounts": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "v_steam_account_pool_status_min_fields": { "busy_accounts": [ - 38 + 40 ], "free_accounts": [ - 38 + 40 ], "id": [ - 38 + 40 ], "total_accounts": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "v_steam_account_pool_status_order_by": { "busy_accounts": [ - 2829 + 2946 ], "free_accounts": [ - 2829 + 2946 ], "id": [ - 2829 + 2946 ], "total_accounts": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "v_steam_account_pool_status_select_column": {}, "v_steam_account_pool_status_stddev_fields": { "busy_accounts": [ - 29 + 31 ], "free_accounts": [ - 29 + 31 ], "id": [ - 29 + 31 ], "total_accounts": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_steam_account_pool_status_stddev_pop_fields": { "busy_accounts": [ - 29 + 31 ], "free_accounts": [ - 29 + 31 ], "id": [ - 29 + 31 ], "total_accounts": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_steam_account_pool_status_stddev_samp_fields": { "busy_accounts": [ - 29 + 31 ], "free_accounts": [ - 29 + 31 ], "id": [ - 29 + 31 ], "total_accounts": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_steam_account_pool_status_stream_cursor_input": { "initial_value": [ - 5600 + 5672 ], "ordering": [ - 236 + 308 ], "__typename": [ - 78 + 80 ] }, "v_steam_account_pool_status_stream_cursor_value_input": { "busy_accounts": [ - 38 + 40 ], "free_accounts": [ - 38 + 40 ], "id": [ - 38 + 40 ], "total_accounts": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "v_steam_account_pool_status_sum_fields": { "busy_accounts": [ - 38 + 40 ], "free_accounts": [ - 38 + 40 ], "id": [ - 38 + 40 ], "total_accounts": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "v_steam_account_pool_status_var_pop_fields": { "busy_accounts": [ - 29 + 31 ], "free_accounts": [ - 29 + 31 ], "id": [ - 29 + 31 ], "total_accounts": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_steam_account_pool_status_var_samp_fields": { "busy_accounts": [ - 29 + 31 ], "free_accounts": [ - 29 + 31 ], "id": [ - 29 + 31 ], "total_accounts": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_steam_account_pool_status_variance_fields": { "busy_accounts": [ - 29 + 31 ], "free_accounts": [ - 29 + 31 ], "id": [ - 29 + 31 ], "total_accounts": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_team_ranks": { "avg_elo": [ - 38 + 40 ], "avg_faceit_elo": [ - 38 + 40 ], "avg_faceit_level": [ - 1547 + 1664 ], "avg_premier": [ - 38 + 40 ], "max_elo": [ - 38 + 40 ], "min_elo": [ - 38 + 40 ], "roster_size": [ - 180 + 252 ], "team": [ - 4329 + 4446 ], "team_id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "v_team_ranks_aggregate": { "aggregate": [ - 5607 + 5679 ], "nodes": [ - 5605 + 5677 ], "__typename": [ - 78 + 80 ] }, "v_team_ranks_aggregate_fields": { "avg": [ - 5608 + 5680 ], "count": [ - 38, + 40, { "columns": [ - 5615, + 5687, "[v_team_ranks_select_column!]" ], "distinct": [ - 3 + 5 ] } ], "max": [ - 5611 + 5683 ], "min": [ - 5612 + 5684 ], "stddev": [ - 5616 + 5688 ], "stddev_pop": [ - 5617 + 5689 ], "stddev_samp": [ - 5618 + 5690 ], "sum": [ - 5621 + 5693 ], "var_pop": [ - 5622 + 5694 ], "var_samp": [ - 5623 + 5695 ], "variance": [ - 5624 + 5696 ], "__typename": [ - 78 + 80 ] }, "v_team_ranks_avg_fields": { "avg_elo": [ - 29 + 31 ], "avg_faceit_elo": [ - 29 + 31 ], "avg_faceit_level": [ - 29 + 31 ], "avg_premier": [ - 29 + 31 ], "max_elo": [ - 29 + 31 ], "min_elo": [ - 29 + 31 ], "roster_size": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_team_ranks_bool_exp": { "_and": [ - 5609 + 5681 ], "_not": [ - 5609 + 5681 ], "_or": [ - 5609 + 5681 ], "avg_elo": [ - 39 + 41 ], "avg_faceit_elo": [ - 39 + 41 ], "avg_faceit_level": [ - 1548 + 1665 ], "avg_premier": [ - 39 + 41 ], "max_elo": [ - 39 + 41 ], "min_elo": [ - 39 + 41 ], "roster_size": [ - 182 + 254 ], "team": [ - 4340 + 4457 ], "team_id": [ - 4923 + 4995 ], "__typename": [ - 78 + 80 ] }, "v_team_ranks_insert_input": { "avg_elo": [ - 38 + 40 ], "avg_faceit_elo": [ - 38 + 40 ], "avg_faceit_level": [ - 1547 + 1664 ], "avg_premier": [ - 38 + 40 ], "max_elo": [ - 38 + 40 ], "min_elo": [ - 38 + 40 ], "roster_size": [ - 180 + 252 ], "team": [ - 4349 + 4466 ], "team_id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "v_team_ranks_max_fields": { "avg_elo": [ - 38 + 40 ], "avg_faceit_elo": [ - 38 + 40 ], "avg_faceit_level": [ - 1547 + 1664 ], "avg_premier": [ - 38 + 40 ], "max_elo": [ - 38 + 40 ], "min_elo": [ - 38 + 40 ], "roster_size": [ - 180 + 252 ], "team_id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "v_team_ranks_min_fields": { "avg_elo": [ - 38 + 40 ], "avg_faceit_elo": [ - 38 + 40 ], "avg_faceit_level": [ - 1547 + 1664 ], "avg_premier": [ - 38 + 40 ], "max_elo": [ - 38 + 40 ], "min_elo": [ - 38 + 40 ], "roster_size": [ - 180 + 252 ], "team_id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "v_team_ranks_obj_rel_insert_input": { "data": [ - 5610 + 5682 ], "__typename": [ - 78 + 80 ] }, "v_team_ranks_order_by": { "avg_elo": [ - 2829 + 2946 ], "avg_faceit_elo": [ - 2829 + 2946 ], "avg_faceit_level": [ - 2829 + 2946 ], "avg_premier": [ - 2829 + 2946 ], "max_elo": [ - 2829 + 2946 ], "min_elo": [ - 2829 + 2946 ], "roster_size": [ - 2829 + 2946 ], "team": [ - 4351 + 4468 ], "team_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "v_team_ranks_select_column": {}, "v_team_ranks_stddev_fields": { "avg_elo": [ - 29 + 31 ], "avg_faceit_elo": [ - 29 + 31 ], "avg_faceit_level": [ - 29 + 31 ], "avg_premier": [ - 29 + 31 ], "max_elo": [ - 29 + 31 ], "min_elo": [ - 29 + 31 ], "roster_size": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_team_ranks_stddev_pop_fields": { "avg_elo": [ - 29 + 31 ], "avg_faceit_elo": [ - 29 + 31 ], "avg_faceit_level": [ - 29 + 31 ], "avg_premier": [ - 29 + 31 ], "max_elo": [ - 29 + 31 ], "min_elo": [ - 29 + 31 ], "roster_size": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_team_ranks_stddev_samp_fields": { "avg_elo": [ - 29 + 31 ], "avg_faceit_elo": [ - 29 + 31 ], "avg_faceit_level": [ - 29 + 31 ], "avg_premier": [ - 29 + 31 ], "max_elo": [ - 29 + 31 ], "min_elo": [ - 29 + 31 ], "roster_size": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_team_ranks_stream_cursor_input": { "initial_value": [ - 5620 + 5692 ], "ordering": [ - 236 + 308 ], "__typename": [ - 78 + 80 ] }, "v_team_ranks_stream_cursor_value_input": { "avg_elo": [ - 38 + 40 ], "avg_faceit_elo": [ - 38 + 40 ], "avg_faceit_level": [ - 1547 + 1664 ], "avg_premier": [ - 38 + 40 ], "max_elo": [ - 38 + 40 ], "min_elo": [ - 38 + 40 ], "roster_size": [ - 180 + 252 ], "team_id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "v_team_ranks_sum_fields": { "avg_elo": [ - 38 + 40 ], "avg_faceit_elo": [ - 38 + 40 ], "avg_faceit_level": [ - 1547 + 1664 ], "avg_premier": [ - 38 + 40 ], "max_elo": [ - 38 + 40 ], "min_elo": [ - 38 + 40 ], "roster_size": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "v_team_ranks_var_pop_fields": { "avg_elo": [ - 29 + 31 ], "avg_faceit_elo": [ - 29 + 31 ], "avg_faceit_level": [ - 29 + 31 ], "avg_premier": [ - 29 + 31 ], "max_elo": [ - 29 + 31 ], "min_elo": [ - 29 + 31 ], "roster_size": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_team_ranks_var_samp_fields": { "avg_elo": [ - 29 + 31 ], "avg_faceit_elo": [ - 29 + 31 ], "avg_faceit_level": [ - 29 + 31 ], "avg_premier": [ - 29 + 31 ], "max_elo": [ - 29 + 31 ], "min_elo": [ - 29 + 31 ], "roster_size": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_team_ranks_variance_fields": { "avg_elo": [ - 29 + 31 ], "avg_faceit_elo": [ - 29 + 31 ], "avg_faceit_level": [ - 29 + 31 ], "avg_premier": [ - 29 + 31 ], "max_elo": [ - 29 + 31 ], "min_elo": [ - 29 + 31 ], "roster_size": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_team_reputation": { "late_cancels": [ - 180 + 252 ], "no_shows": [ - 180 + 252 ], "reliability_pct": [ - 2827 + 2944 ], "scrims_completed": [ - 180 + 252 ], "team": [ - 4329 + 4446 ], "team_id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "v_team_reputation_aggregate": { "aggregate": [ - 5627 + 5699 ], "nodes": [ - 5625 + 5697 ], "__typename": [ - 78 + 80 ] }, "v_team_reputation_aggregate_fields": { "avg": [ - 5628 + 5700 ], "count": [ - 38, + 40, { "columns": [ - 5635, + 5707, "[v_team_reputation_select_column!]" ], "distinct": [ - 3 + 5 ] } ], "max": [ - 5631 + 5703 ], "min": [ - 5632 + 5704 ], "stddev": [ - 5636 + 5708 ], "stddev_pop": [ - 5637 + 5709 ], "stddev_samp": [ - 5638 + 5710 ], "sum": [ - 5641 + 5713 ], "var_pop": [ - 5642 + 5714 ], "var_samp": [ - 5643 + 5715 ], "variance": [ - 5644 + 5716 ], "__typename": [ - 78 + 80 ] }, "v_team_reputation_avg_fields": { "late_cancels": [ - 29 + 31 ], "no_shows": [ - 29 + 31 ], "reliability_pct": [ - 29 + 31 ], "scrims_completed": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_team_reputation_bool_exp": { "_and": [ - 5629 + 5701 ], "_not": [ - 5629 + 5701 ], "_or": [ - 5629 + 5701 ], "late_cancels": [ - 182 + 254 ], "no_shows": [ - 182 + 254 ], "reliability_pct": [ - 2828 + 2945 ], "scrims_completed": [ - 182 + 254 ], "team": [ - 4340 + 4457 ], "team_id": [ - 4923 + 4995 ], "__typename": [ - 78 + 80 ] }, "v_team_reputation_insert_input": { "late_cancels": [ - 180 + 252 ], "no_shows": [ - 180 + 252 ], "reliability_pct": [ - 2827 + 2944 ], "scrims_completed": [ - 180 + 252 ], "team": [ - 4349 + 4466 ], "team_id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "v_team_reputation_max_fields": { "late_cancels": [ - 180 + 252 ], "no_shows": [ - 180 + 252 ], "reliability_pct": [ - 2827 + 2944 ], "scrims_completed": [ - 180 + 252 ], "team_id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "v_team_reputation_min_fields": { "late_cancels": [ - 180 + 252 ], "no_shows": [ - 180 + 252 ], "reliability_pct": [ - 2827 + 2944 ], "scrims_completed": [ - 180 + 252 ], "team_id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "v_team_reputation_obj_rel_insert_input": { "data": [ - 5630 + 5702 ], "__typename": [ - 78 + 80 ] }, "v_team_reputation_order_by": { "late_cancels": [ - 2829 + 2946 ], "no_shows": [ - 2829 + 2946 ], "reliability_pct": [ - 2829 + 2946 ], "scrims_completed": [ - 2829 + 2946 ], "team": [ - 4351 + 4468 ], "team_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "v_team_reputation_select_column": {}, "v_team_reputation_stddev_fields": { "late_cancels": [ - 29 + 31 ], "no_shows": [ - 29 + 31 ], "reliability_pct": [ - 29 + 31 ], "scrims_completed": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_team_reputation_stddev_pop_fields": { "late_cancels": [ - 29 + 31 ], "no_shows": [ - 29 + 31 ], "reliability_pct": [ - 29 + 31 ], "scrims_completed": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_team_reputation_stddev_samp_fields": { "late_cancels": [ - 29 + 31 ], "no_shows": [ - 29 + 31 ], "reliability_pct": [ - 29 + 31 ], "scrims_completed": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_team_reputation_stream_cursor_input": { "initial_value": [ - 5640 + 5712 ], "ordering": [ - 236 + 308 ], "__typename": [ - 78 + 80 ] }, "v_team_reputation_stream_cursor_value_input": { "late_cancels": [ - 180 + 252 ], "no_shows": [ - 180 + 252 ], "reliability_pct": [ - 2827 + 2944 ], "scrims_completed": [ - 180 + 252 ], "team_id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "v_team_reputation_sum_fields": { "late_cancels": [ - 180 + 252 ], "no_shows": [ - 180 + 252 ], "reliability_pct": [ - 2827 + 2944 ], "scrims_completed": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "v_team_reputation_var_pop_fields": { "late_cancels": [ - 29 + 31 ], "no_shows": [ - 29 + 31 ], "reliability_pct": [ - 29 + 31 ], "scrims_completed": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_team_reputation_var_samp_fields": { "late_cancels": [ - 29 + 31 ], "no_shows": [ - 29 + 31 ], "reliability_pct": [ - 29 + 31 ], "scrims_completed": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_team_reputation_variance_fields": { "late_cancels": [ - 29 + 31 ], "no_shows": [ - 29 + 31 ], "reliability_pct": [ - 29 + 31 ], "scrims_completed": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_team_stage_results": { "group_number": [ - 38 + 40 ], "head_to_head_match_wins": [ - 38 + 40 ], "head_to_head_rounds_won": [ - 38 + 40 ], "losses": [ - 38 + 40 ], "maps_lost": [ - 38 + 40 ], "maps_won": [ - 38 + 40 ], "matches_played": [ - 38 + 40 ], "matches_remaining": [ - 38 + 40 ], "placement": [ - 38 + 40 ], "rank": [ - 38 + 40 ], "rounds_lost": [ - 38 + 40 ], "rounds_won": [ - 38 + 40 ], "stage": [ - 4595 + 4754 ], "team": [ - 4728 + 4887 ], "team_kdr": [ - 1547 + 1664 ], "total_deaths": [ - 38 + 40 ], "total_kills": [ - 38 + 40 ], "tournament_stage_id": [ - 4921 + 4993 ], "tournament_team_id": [ - 4921 + 4993 ], "wins": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "v_team_stage_results_aggregate": { "aggregate": [ - 5659 + 5731 ], "nodes": [ - 5645 + 5717 ], "__typename": [ - 78 + 80 ] }, "v_team_stage_results_aggregate_bool_exp": { "avg": [ - 5648 + 5720 ], "corr": [ - 5649 + 5721 ], "count": [ - 5651 + 5723 ], "covar_samp": [ - 5652 + 5724 ], "max": [ - 5654 + 5726 ], "min": [ - 5655 + 5727 ], "stddev_samp": [ - 5656 + 5728 ], "sum": [ - 5657 + 5729 ], "var_samp": [ - 5658 + 5730 ], "__typename": [ - 78 + 80 ] }, "v_team_stage_results_aggregate_bool_exp_avg": { "arguments": [ - 5678 + 5750 ], "distinct": [ - 3 + 5 ], "filter": [ - 5664 + 5736 ], "predicate": [ - 1548 + 1665 ], "__typename": [ - 78 + 80 ] }, "v_team_stage_results_aggregate_bool_exp_corr": { "arguments": [ - 5650 + 5722 ], "distinct": [ - 3 + 5 ], "filter": [ - 5664 + 5736 ], "predicate": [ - 1548 + 1665 ], "__typename": [ - 78 + 80 ] }, "v_team_stage_results_aggregate_bool_exp_corr_arguments": { "X": [ - 5679 + 5751 ], "Y": [ - 5679 + 5751 ], "__typename": [ - 78 + 80 ] }, "v_team_stage_results_aggregate_bool_exp_count": { "arguments": [ - 5677 + 5749 ], "distinct": [ - 3 + 5 ], "filter": [ - 5664 + 5736 ], "predicate": [ - 39 + 41 ], "__typename": [ - 78 + 80 ] }, "v_team_stage_results_aggregate_bool_exp_covar_samp": { "arguments": [ - 5653 + 5725 ], "distinct": [ - 3 + 5 ], "filter": [ - 5664 + 5736 ], "predicate": [ - 1548 + 1665 ], "__typename": [ - 78 + 80 ] }, "v_team_stage_results_aggregate_bool_exp_covar_samp_arguments": { "X": [ - 5680 + 5752 ], "Y": [ - 5680 + 5752 ], "__typename": [ - 78 + 80 ] }, "v_team_stage_results_aggregate_bool_exp_max": { "arguments": [ - 5681 + 5753 ], "distinct": [ - 3 + 5 ], "filter": [ - 5664 + 5736 ], "predicate": [ - 1548 + 1665 ], "__typename": [ - 78 + 80 ] }, "v_team_stage_results_aggregate_bool_exp_min": { "arguments": [ - 5682 + 5754 ], "distinct": [ - 3 + 5 ], "filter": [ - 5664 + 5736 ], "predicate": [ - 1548 + 1665 ], "__typename": [ - 78 + 80 ] }, "v_team_stage_results_aggregate_bool_exp_stddev_samp": { "arguments": [ - 5683 + 5755 ], "distinct": [ - 3 + 5 ], "filter": [ - 5664 + 5736 ], "predicate": [ - 1548 + 1665 ], "__typename": [ - 78 + 80 ] }, "v_team_stage_results_aggregate_bool_exp_sum": { "arguments": [ - 5684 + 5756 ], "distinct": [ - 3 + 5 ], "filter": [ - 5664 + 5736 ], "predicate": [ - 1548 + 1665 ], "__typename": [ - 78 + 80 ] }, "v_team_stage_results_aggregate_bool_exp_var_samp": { "arguments": [ - 5685 + 5757 ], "distinct": [ - 3 + 5 ], "filter": [ - 5664 + 5736 ], "predicate": [ - 1548 + 1665 ], "__typename": [ - 78 + 80 ] }, "v_team_stage_results_aggregate_fields": { "avg": [ - 5662 + 5734 ], "count": [ - 38, + 40, { "columns": [ - 5677, + 5749, "[v_team_stage_results_select_column!]" ], "distinct": [ - 3 + 5 ] } ], "max": [ - 5668 + 5740 ], "min": [ - 5670 + 5742 ], "stddev": [ - 5687 + 5759 ], "stddev_pop": [ - 5689 + 5761 ], "stddev_samp": [ - 5691 + 5763 ], "sum": [ - 5695 + 5767 ], "var_pop": [ - 5699 + 5771 ], "var_samp": [ - 5701 + 5773 ], "variance": [ - 5703 + 5775 ], "__typename": [ - 78 + 80 ] }, "v_team_stage_results_aggregate_order_by": { "avg": [ - 5663 + 5735 ], "count": [ - 2829 + 2946 ], "max": [ - 5669 + 5741 ], "min": [ - 5671 + 5743 ], "stddev": [ - 5688 + 5760 ], "stddev_pop": [ - 5690 + 5762 ], "stddev_samp": [ - 5692 + 5764 ], "sum": [ - 5696 + 5768 ], "var_pop": [ - 5700 + 5772 ], "var_samp": [ - 5702 + 5774 ], "variance": [ - 5704 + 5776 ], "__typename": [ - 78 + 80 ] }, "v_team_stage_results_arr_rel_insert_input": { "data": [ - 5667 + 5739 ], "on_conflict": [ - 5674 + 5746 ], "__typename": [ - 78 + 80 ] }, "v_team_stage_results_avg_fields": { "group_number": [ - 29 + 31 ], "head_to_head_match_wins": [ - 29 + 31 ], "head_to_head_rounds_won": [ - 29 + 31 ], "losses": [ - 29 + 31 ], "maps_lost": [ - 29 + 31 ], "maps_won": [ - 29 + 31 ], "matches_played": [ - 29 + 31 ], "matches_remaining": [ - 29 + 31 ], "placement": [ - 29 + 31 ], "rank": [ - 29 + 31 ], "rounds_lost": [ - 29 + 31 ], "rounds_won": [ - 29 + 31 ], "team_kdr": [ - 29 + 31 ], "total_deaths": [ - 29 + 31 ], "total_kills": [ - 29 + 31 ], "wins": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_team_stage_results_avg_order_by": { "group_number": [ - 2829 + 2946 ], "head_to_head_match_wins": [ - 2829 + 2946 ], "head_to_head_rounds_won": [ - 2829 + 2946 ], "losses": [ - 2829 + 2946 ], "maps_lost": [ - 2829 + 2946 ], "maps_won": [ - 2829 + 2946 ], "matches_played": [ - 2829 + 2946 ], "matches_remaining": [ - 2829 + 2946 ], "placement": [ - 2829 + 2946 ], "rank": [ - 2829 + 2946 ], "rounds_lost": [ - 2829 + 2946 ], "rounds_won": [ - 2829 + 2946 ], "team_kdr": [ - 2829 + 2946 ], "total_deaths": [ - 2829 + 2946 ], "total_kills": [ - 2829 + 2946 ], "wins": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "v_team_stage_results_bool_exp": { "_and": [ - 5664 + 5736 ], "_not": [ - 5664 + 5736 ], "_or": [ - 5664 + 5736 ], "group_number": [ - 39 + 41 ], "head_to_head_match_wins": [ - 39 + 41 ], "head_to_head_rounds_won": [ - 39 + 41 ], "losses": [ - 39 + 41 ], "maps_lost": [ - 39 + 41 ], "maps_won": [ - 39 + 41 ], "matches_played": [ - 39 + 41 ], "matches_remaining": [ - 39 + 41 ], "placement": [ - 39 + 41 ], "rank": [ - 39 + 41 ], "rounds_lost": [ - 39 + 41 ], "rounds_won": [ - 39 + 41 ], "stage": [ - 4607 + 4766 ], "team": [ - 4737 + 4896 ], "team_kdr": [ - 1548 + 1665 ], "total_deaths": [ - 39 + 41 ], "total_kills": [ - 39 + 41 ], "tournament_stage_id": [ - 4923 + 4995 ], "tournament_team_id": [ - 4923 + 4995 ], "wins": [ - 39 + 41 ], "__typename": [ - 78 + 80 ] }, "v_team_stage_results_constraint": {}, "v_team_stage_results_inc_input": { "group_number": [ - 38 + 40 ], "head_to_head_match_wins": [ - 38 + 40 ], "head_to_head_rounds_won": [ - 38 + 40 ], "losses": [ - 38 + 40 ], "maps_lost": [ - 38 + 40 ], "maps_won": [ - 38 + 40 ], "matches_played": [ - 38 + 40 ], "matches_remaining": [ - 38 + 40 ], "placement": [ - 38 + 40 ], "rank": [ - 38 + 40 ], "rounds_lost": [ - 38 + 40 ], "rounds_won": [ - 38 + 40 ], "team_kdr": [ - 1547 + 1664 ], "total_deaths": [ - 38 + 40 ], "total_kills": [ - 38 + 40 ], "wins": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "v_team_stage_results_insert_input": { "group_number": [ - 38 + 40 ], "head_to_head_match_wins": [ - 38 + 40 ], "head_to_head_rounds_won": [ - 38 + 40 ], "losses": [ - 38 + 40 ], "maps_lost": [ - 38 + 40 ], "maps_won": [ - 38 + 40 ], "matches_played": [ - 38 + 40 ], "matches_remaining": [ - 38 + 40 ], "placement": [ - 38 + 40 ], "rank": [ - 38 + 40 ], "rounds_lost": [ - 38 + 40 ], "rounds_won": [ - 38 + 40 ], "stage": [ - 4619 + 4778 ], "team": [ - 4746 + 4905 ], "team_kdr": [ - 1547 + 1664 ], "total_deaths": [ - 38 + 40 ], "total_kills": [ - 38 + 40 ], "tournament_stage_id": [ - 4921 + 4993 ], "tournament_team_id": [ - 4921 + 4993 ], "wins": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "v_team_stage_results_max_fields": { "group_number": [ - 38 + 40 ], "head_to_head_match_wins": [ - 38 + 40 ], "head_to_head_rounds_won": [ - 38 + 40 ], "losses": [ - 38 + 40 ], "maps_lost": [ - 38 + 40 ], "maps_won": [ - 38 + 40 ], "matches_played": [ - 38 + 40 ], "matches_remaining": [ - 38 + 40 ], "placement": [ - 38 + 40 ], "rank": [ - 38 + 40 ], "rounds_lost": [ - 38 + 40 ], "rounds_won": [ - 38 + 40 ], "team_kdr": [ - 1547 + 1664 ], "total_deaths": [ - 38 + 40 ], "total_kills": [ - 38 + 40 ], "tournament_stage_id": [ - 4921 + 4993 ], "tournament_team_id": [ - 4921 + 4993 ], "wins": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "v_team_stage_results_max_order_by": { "group_number": [ - 2829 + 2946 ], "head_to_head_match_wins": [ - 2829 + 2946 ], "head_to_head_rounds_won": [ - 2829 + 2946 ], "losses": [ - 2829 + 2946 ], "maps_lost": [ - 2829 + 2946 ], "maps_won": [ - 2829 + 2946 ], "matches_played": [ - 2829 + 2946 ], "matches_remaining": [ - 2829 + 2946 ], "placement": [ - 2829 + 2946 ], "rank": [ - 2829 + 2946 ], "rounds_lost": [ - 2829 + 2946 ], "rounds_won": [ - 2829 + 2946 ], "team_kdr": [ - 2829 + 2946 ], "total_deaths": [ - 2829 + 2946 ], "total_kills": [ - 2829 + 2946 ], "tournament_stage_id": [ - 2829 + 2946 ], "tournament_team_id": [ - 2829 + 2946 ], "wins": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "v_team_stage_results_min_fields": { "group_number": [ - 38 + 40 ], "head_to_head_match_wins": [ - 38 + 40 ], "head_to_head_rounds_won": [ - 38 + 40 ], "losses": [ - 38 + 40 ], "maps_lost": [ - 38 + 40 ], "maps_won": [ - 38 + 40 ], "matches_played": [ - 38 + 40 ], "matches_remaining": [ - 38 + 40 ], "placement": [ - 38 + 40 ], "rank": [ - 38 + 40 ], "rounds_lost": [ - 38 + 40 ], "rounds_won": [ - 38 + 40 ], "team_kdr": [ - 1547 + 1664 ], "total_deaths": [ - 38 + 40 ], "total_kills": [ - 38 + 40 ], "tournament_stage_id": [ - 4921 + 4993 ], "tournament_team_id": [ - 4921 + 4993 ], "wins": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "v_team_stage_results_min_order_by": { "group_number": [ - 2829 + 2946 ], "head_to_head_match_wins": [ - 2829 + 2946 ], "head_to_head_rounds_won": [ - 2829 + 2946 ], "losses": [ - 2829 + 2946 ], "maps_lost": [ - 2829 + 2946 ], "maps_won": [ - 2829 + 2946 ], "matches_played": [ - 2829 + 2946 ], "matches_remaining": [ - 2829 + 2946 ], "placement": [ - 2829 + 2946 ], "rank": [ - 2829 + 2946 ], "rounds_lost": [ - 2829 + 2946 ], "rounds_won": [ - 2829 + 2946 ], "team_kdr": [ - 2829 + 2946 ], "total_deaths": [ - 2829 + 2946 ], "total_kills": [ - 2829 + 2946 ], "tournament_stage_id": [ - 2829 + 2946 ], "tournament_team_id": [ - 2829 + 2946 ], "wins": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "v_team_stage_results_mutation_response": { "affected_rows": [ - 38 + 40 ], "returning": [ - 5645 + 5717 ], "__typename": [ - 78 + 80 ] }, "v_team_stage_results_obj_rel_insert_input": { "data": [ - 5667 + 5739 ], "on_conflict": [ - 5674 + 5746 ], "__typename": [ - 78 + 80 ] }, "v_team_stage_results_on_conflict": { "constraint": [ - 5665 + 5737 ], "update_columns": [ - 5697 + 5769 ], "where": [ - 5664 + 5736 ], "__typename": [ - 78 + 80 ] }, "v_team_stage_results_order_by": { "group_number": [ - 2829 + 2946 ], "head_to_head_match_wins": [ - 2829 + 2946 ], "head_to_head_rounds_won": [ - 2829 + 2946 ], "losses": [ - 2829 + 2946 ], "maps_lost": [ - 2829 + 2946 ], "maps_won": [ - 2829 + 2946 ], "matches_played": [ - 2829 + 2946 ], "matches_remaining": [ - 2829 + 2946 ], "placement": [ - 2829 + 2946 ], "rank": [ - 2829 + 2946 ], "rounds_lost": [ - 2829 + 2946 ], "rounds_won": [ - 2829 + 2946 ], "stage": [ - 4621 + 4780 ], "team": [ - 4748 + 4907 ], "team_kdr": [ - 2829 + 2946 ], "total_deaths": [ - 2829 + 2946 ], "total_kills": [ - 2829 + 2946 ], "tournament_stage_id": [ - 2829 + 2946 ], "tournament_team_id": [ - 2829 + 2946 ], "wins": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "v_team_stage_results_pk_columns_input": { "tournament_stage_id": [ - 4921 + 4993 ], "tournament_team_id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "v_team_stage_results_select_column": {}, @@ -130603,1720 +132135,1720 @@ export default { "v_team_stage_results_select_column_v_team_stage_results_aggregate_bool_exp_var_samp_arguments_columns": {}, "v_team_stage_results_set_input": { "group_number": [ - 38 + 40 ], "head_to_head_match_wins": [ - 38 + 40 ], "head_to_head_rounds_won": [ - 38 + 40 ], "losses": [ - 38 + 40 ], "maps_lost": [ - 38 + 40 ], "maps_won": [ - 38 + 40 ], "matches_played": [ - 38 + 40 ], "matches_remaining": [ - 38 + 40 ], "placement": [ - 38 + 40 ], "rank": [ - 38 + 40 ], "rounds_lost": [ - 38 + 40 ], "rounds_won": [ - 38 + 40 ], "team_kdr": [ - 1547 + 1664 ], "total_deaths": [ - 38 + 40 ], "total_kills": [ - 38 + 40 ], "tournament_stage_id": [ - 4921 + 4993 ], "tournament_team_id": [ - 4921 + 4993 ], "wins": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "v_team_stage_results_stddev_fields": { "group_number": [ - 29 + 31 ], "head_to_head_match_wins": [ - 29 + 31 ], "head_to_head_rounds_won": [ - 29 + 31 ], "losses": [ - 29 + 31 ], "maps_lost": [ - 29 + 31 ], "maps_won": [ - 29 + 31 ], "matches_played": [ - 29 + 31 ], "matches_remaining": [ - 29 + 31 ], "placement": [ - 29 + 31 ], "rank": [ - 29 + 31 ], "rounds_lost": [ - 29 + 31 ], "rounds_won": [ - 29 + 31 ], "team_kdr": [ - 29 + 31 ], "total_deaths": [ - 29 + 31 ], "total_kills": [ - 29 + 31 ], "wins": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_team_stage_results_stddev_order_by": { "group_number": [ - 2829 + 2946 ], "head_to_head_match_wins": [ - 2829 + 2946 ], "head_to_head_rounds_won": [ - 2829 + 2946 ], "losses": [ - 2829 + 2946 ], "maps_lost": [ - 2829 + 2946 ], "maps_won": [ - 2829 + 2946 ], "matches_played": [ - 2829 + 2946 ], "matches_remaining": [ - 2829 + 2946 ], "placement": [ - 2829 + 2946 ], "rank": [ - 2829 + 2946 ], "rounds_lost": [ - 2829 + 2946 ], "rounds_won": [ - 2829 + 2946 ], "team_kdr": [ - 2829 + 2946 ], "total_deaths": [ - 2829 + 2946 ], "total_kills": [ - 2829 + 2946 ], "wins": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "v_team_stage_results_stddev_pop_fields": { "group_number": [ - 29 + 31 ], "head_to_head_match_wins": [ - 29 + 31 ], "head_to_head_rounds_won": [ - 29 + 31 ], "losses": [ - 29 + 31 ], "maps_lost": [ - 29 + 31 ], "maps_won": [ - 29 + 31 ], "matches_played": [ - 29 + 31 ], "matches_remaining": [ - 29 + 31 ], "placement": [ - 29 + 31 ], "rank": [ - 29 + 31 ], "rounds_lost": [ - 29 + 31 ], "rounds_won": [ - 29 + 31 ], "team_kdr": [ - 29 + 31 ], "total_deaths": [ - 29 + 31 ], "total_kills": [ - 29 + 31 ], "wins": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_team_stage_results_stddev_pop_order_by": { "group_number": [ - 2829 + 2946 ], "head_to_head_match_wins": [ - 2829 + 2946 ], "head_to_head_rounds_won": [ - 2829 + 2946 ], "losses": [ - 2829 + 2946 ], "maps_lost": [ - 2829 + 2946 ], "maps_won": [ - 2829 + 2946 ], "matches_played": [ - 2829 + 2946 ], "matches_remaining": [ - 2829 + 2946 ], "placement": [ - 2829 + 2946 ], "rank": [ - 2829 + 2946 ], "rounds_lost": [ - 2829 + 2946 ], "rounds_won": [ - 2829 + 2946 ], "team_kdr": [ - 2829 + 2946 ], "total_deaths": [ - 2829 + 2946 ], "total_kills": [ - 2829 + 2946 ], "wins": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "v_team_stage_results_stddev_samp_fields": { "group_number": [ - 29 + 31 ], "head_to_head_match_wins": [ - 29 + 31 ], "head_to_head_rounds_won": [ - 29 + 31 ], "losses": [ - 29 + 31 ], "maps_lost": [ - 29 + 31 ], "maps_won": [ - 29 + 31 ], "matches_played": [ - 29 + 31 ], "matches_remaining": [ - 29 + 31 ], "placement": [ - 29 + 31 ], "rank": [ - 29 + 31 ], "rounds_lost": [ - 29 + 31 ], "rounds_won": [ - 29 + 31 ], "team_kdr": [ - 29 + 31 ], "total_deaths": [ - 29 + 31 ], "total_kills": [ - 29 + 31 ], "wins": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_team_stage_results_stddev_samp_order_by": { "group_number": [ - 2829 + 2946 ], "head_to_head_match_wins": [ - 2829 + 2946 ], "head_to_head_rounds_won": [ - 2829 + 2946 ], "losses": [ - 2829 + 2946 ], "maps_lost": [ - 2829 + 2946 ], "maps_won": [ - 2829 + 2946 ], "matches_played": [ - 2829 + 2946 ], "matches_remaining": [ - 2829 + 2946 ], "placement": [ - 2829 + 2946 ], "rank": [ - 2829 + 2946 ], "rounds_lost": [ - 2829 + 2946 ], "rounds_won": [ - 2829 + 2946 ], "team_kdr": [ - 2829 + 2946 ], "total_deaths": [ - 2829 + 2946 ], "total_kills": [ - 2829 + 2946 ], "wins": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "v_team_stage_results_stream_cursor_input": { "initial_value": [ - 5694 + 5766 ], "ordering": [ - 236 + 308 ], "__typename": [ - 78 + 80 ] }, "v_team_stage_results_stream_cursor_value_input": { "group_number": [ - 38 + 40 ], "head_to_head_match_wins": [ - 38 + 40 ], "head_to_head_rounds_won": [ - 38 + 40 ], "losses": [ - 38 + 40 ], "maps_lost": [ - 38 + 40 ], "maps_won": [ - 38 + 40 ], "matches_played": [ - 38 + 40 ], "matches_remaining": [ - 38 + 40 ], "placement": [ - 38 + 40 ], "rank": [ - 38 + 40 ], "rounds_lost": [ - 38 + 40 ], "rounds_won": [ - 38 + 40 ], "team_kdr": [ - 1547 + 1664 ], "total_deaths": [ - 38 + 40 ], "total_kills": [ - 38 + 40 ], "tournament_stage_id": [ - 4921 + 4993 ], "tournament_team_id": [ - 4921 + 4993 ], "wins": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "v_team_stage_results_sum_fields": { "group_number": [ - 38 + 40 ], "head_to_head_match_wins": [ - 38 + 40 ], "head_to_head_rounds_won": [ - 38 + 40 ], "losses": [ - 38 + 40 ], "maps_lost": [ - 38 + 40 ], "maps_won": [ - 38 + 40 ], "matches_played": [ - 38 + 40 ], "matches_remaining": [ - 38 + 40 ], "placement": [ - 38 + 40 ], "rank": [ - 38 + 40 ], "rounds_lost": [ - 38 + 40 ], "rounds_won": [ - 38 + 40 ], "team_kdr": [ - 1547 + 1664 ], "total_deaths": [ - 38 + 40 ], "total_kills": [ - 38 + 40 ], "wins": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "v_team_stage_results_sum_order_by": { "group_number": [ - 2829 + 2946 ], "head_to_head_match_wins": [ - 2829 + 2946 ], "head_to_head_rounds_won": [ - 2829 + 2946 ], "losses": [ - 2829 + 2946 ], "maps_lost": [ - 2829 + 2946 ], "maps_won": [ - 2829 + 2946 ], "matches_played": [ - 2829 + 2946 ], "matches_remaining": [ - 2829 + 2946 ], "placement": [ - 2829 + 2946 ], "rank": [ - 2829 + 2946 ], "rounds_lost": [ - 2829 + 2946 ], "rounds_won": [ - 2829 + 2946 ], "team_kdr": [ - 2829 + 2946 ], "total_deaths": [ - 2829 + 2946 ], "total_kills": [ - 2829 + 2946 ], "wins": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "v_team_stage_results_update_column": {}, "v_team_stage_results_updates": { "_inc": [ - 5666 + 5738 ], "_set": [ - 5686 + 5758 ], "where": [ - 5664 + 5736 ], "__typename": [ - 78 + 80 ] }, "v_team_stage_results_var_pop_fields": { "group_number": [ - 29 + 31 ], "head_to_head_match_wins": [ - 29 + 31 ], "head_to_head_rounds_won": [ - 29 + 31 ], "losses": [ - 29 + 31 ], "maps_lost": [ - 29 + 31 ], "maps_won": [ - 29 + 31 ], "matches_played": [ - 29 + 31 ], "matches_remaining": [ - 29 + 31 ], "placement": [ - 29 + 31 ], "rank": [ - 29 + 31 ], "rounds_lost": [ - 29 + 31 ], "rounds_won": [ - 29 + 31 ], "team_kdr": [ - 29 + 31 ], "total_deaths": [ - 29 + 31 ], "total_kills": [ - 29 + 31 ], "wins": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_team_stage_results_var_pop_order_by": { "group_number": [ - 2829 + 2946 ], "head_to_head_match_wins": [ - 2829 + 2946 ], "head_to_head_rounds_won": [ - 2829 + 2946 ], "losses": [ - 2829 + 2946 ], "maps_lost": [ - 2829 + 2946 ], "maps_won": [ - 2829 + 2946 ], "matches_played": [ - 2829 + 2946 ], "matches_remaining": [ - 2829 + 2946 ], "placement": [ - 2829 + 2946 ], "rank": [ - 2829 + 2946 ], "rounds_lost": [ - 2829 + 2946 ], "rounds_won": [ - 2829 + 2946 ], "team_kdr": [ - 2829 + 2946 ], "total_deaths": [ - 2829 + 2946 ], "total_kills": [ - 2829 + 2946 ], "wins": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "v_team_stage_results_var_samp_fields": { "group_number": [ - 29 + 31 ], "head_to_head_match_wins": [ - 29 + 31 ], "head_to_head_rounds_won": [ - 29 + 31 ], "losses": [ - 29 + 31 ], "maps_lost": [ - 29 + 31 ], "maps_won": [ - 29 + 31 ], "matches_played": [ - 29 + 31 ], "matches_remaining": [ - 29 + 31 ], "placement": [ - 29 + 31 ], "rank": [ - 29 + 31 ], "rounds_lost": [ - 29 + 31 ], "rounds_won": [ - 29 + 31 ], "team_kdr": [ - 29 + 31 ], "total_deaths": [ - 29 + 31 ], "total_kills": [ - 29 + 31 ], "wins": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_team_stage_results_var_samp_order_by": { "group_number": [ - 2829 + 2946 ], "head_to_head_match_wins": [ - 2829 + 2946 ], "head_to_head_rounds_won": [ - 2829 + 2946 ], "losses": [ - 2829 + 2946 ], "maps_lost": [ - 2829 + 2946 ], "maps_won": [ - 2829 + 2946 ], "matches_played": [ - 2829 + 2946 ], "matches_remaining": [ - 2829 + 2946 ], "placement": [ - 2829 + 2946 ], "rank": [ - 2829 + 2946 ], "rounds_lost": [ - 2829 + 2946 ], "rounds_won": [ - 2829 + 2946 ], "team_kdr": [ - 2829 + 2946 ], "total_deaths": [ - 2829 + 2946 ], "total_kills": [ - 2829 + 2946 ], "wins": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "v_team_stage_results_variance_fields": { "group_number": [ - 29 + 31 ], "head_to_head_match_wins": [ - 29 + 31 ], "head_to_head_rounds_won": [ - 29 + 31 ], "losses": [ - 29 + 31 ], "maps_lost": [ - 29 + 31 ], "maps_won": [ - 29 + 31 ], "matches_played": [ - 29 + 31 ], "matches_remaining": [ - 29 + 31 ], "placement": [ - 29 + 31 ], "rank": [ - 29 + 31 ], "rounds_lost": [ - 29 + 31 ], "rounds_won": [ - 29 + 31 ], "team_kdr": [ - 29 + 31 ], "total_deaths": [ - 29 + 31 ], "total_kills": [ - 29 + 31 ], "wins": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_team_stage_results_variance_order_by": { "group_number": [ - 2829 + 2946 ], "head_to_head_match_wins": [ - 2829 + 2946 ], "head_to_head_rounds_won": [ - 2829 + 2946 ], "losses": [ - 2829 + 2946 ], "maps_lost": [ - 2829 + 2946 ], "maps_won": [ - 2829 + 2946 ], "matches_played": [ - 2829 + 2946 ], "matches_remaining": [ - 2829 + 2946 ], "placement": [ - 2829 + 2946 ], "rank": [ - 2829 + 2946 ], "rounds_lost": [ - 2829 + 2946 ], "rounds_won": [ - 2829 + 2946 ], "team_kdr": [ - 2829 + 2946 ], "total_deaths": [ - 2829 + 2946 ], "total_kills": [ - 2829 + 2946 ], "wins": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "v_team_tournament_results": { "head_to_head_match_wins": [ - 38 + 40 ], "head_to_head_rounds_won": [ - 38 + 40 ], "losses": [ - 38 + 40 ], "maps_lost": [ - 38 + 40 ], "maps_won": [ - 38 + 40 ], "matches_played": [ - 38 + 40 ], "matches_remaining": [ - 38 + 40 ], "rounds_lost": [ - 38 + 40 ], "rounds_won": [ - 38 + 40 ], "team": [ - 4728 + 4887 ], "team_kdr": [ - 1547 + 1664 ], "total_deaths": [ - 38 + 40 ], "total_kills": [ - 38 + 40 ], "tournament": [ - 4857 + 4929 ], "tournament_id": [ - 4921 + 4993 ], "tournament_team_id": [ - 4921 + 4993 ], "wins": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "v_team_tournament_results_aggregate": { "aggregate": [ - 5719 + 5791 ], "nodes": [ - 5705 + 5777 ], "__typename": [ - 78 + 80 ] }, "v_team_tournament_results_aggregate_bool_exp": { "avg": [ - 5708 + 5780 ], "corr": [ - 5709 + 5781 ], "count": [ - 5711 + 5783 ], "covar_samp": [ - 5712 + 5784 ], "max": [ - 5714 + 5786 ], "min": [ - 5715 + 5787 ], "stddev_samp": [ - 5716 + 5788 ], "sum": [ - 5717 + 5789 ], "var_samp": [ - 5718 + 5790 ], "__typename": [ - 78 + 80 ] }, "v_team_tournament_results_aggregate_bool_exp_avg": { "arguments": [ - 5732 + 5804 ], "distinct": [ - 3 + 5 ], "filter": [ - 5724 + 5796 ], "predicate": [ - 1548 + 1665 ], "__typename": [ - 78 + 80 ] }, "v_team_tournament_results_aggregate_bool_exp_corr": { "arguments": [ - 5710 + 5782 ], "distinct": [ - 3 + 5 ], "filter": [ - 5724 + 5796 ], "predicate": [ - 1548 + 1665 ], "__typename": [ - 78 + 80 ] }, "v_team_tournament_results_aggregate_bool_exp_corr_arguments": { "X": [ - 5733 + 5805 ], "Y": [ - 5733 + 5805 ], "__typename": [ - 78 + 80 ] }, "v_team_tournament_results_aggregate_bool_exp_count": { "arguments": [ - 5731 + 5803 ], "distinct": [ - 3 + 5 ], "filter": [ - 5724 + 5796 ], "predicate": [ - 39 + 41 ], "__typename": [ - 78 + 80 ] }, "v_team_tournament_results_aggregate_bool_exp_covar_samp": { "arguments": [ - 5713 + 5785 ], "distinct": [ - 3 + 5 ], "filter": [ - 5724 + 5796 ], "predicate": [ - 1548 + 1665 ], "__typename": [ - 78 + 80 ] }, "v_team_tournament_results_aggregate_bool_exp_covar_samp_arguments": { "X": [ - 5734 + 5806 ], "Y": [ - 5734 + 5806 ], "__typename": [ - 78 + 80 ] }, "v_team_tournament_results_aggregate_bool_exp_max": { "arguments": [ - 5735 + 5807 ], "distinct": [ - 3 + 5 ], "filter": [ - 5724 + 5796 ], "predicate": [ - 1548 + 1665 ], "__typename": [ - 78 + 80 ] }, "v_team_tournament_results_aggregate_bool_exp_min": { "arguments": [ - 5736 + 5808 ], "distinct": [ - 3 + 5 ], "filter": [ - 5724 + 5796 ], "predicate": [ - 1548 + 1665 ], "__typename": [ - 78 + 80 ] }, "v_team_tournament_results_aggregate_bool_exp_stddev_samp": { "arguments": [ - 5737 + 5809 ], "distinct": [ - 3 + 5 ], "filter": [ - 5724 + 5796 ], "predicate": [ - 1548 + 1665 ], "__typename": [ - 78 + 80 ] }, "v_team_tournament_results_aggregate_bool_exp_sum": { "arguments": [ - 5738 + 5810 ], "distinct": [ - 3 + 5 ], "filter": [ - 5724 + 5796 ], "predicate": [ - 1548 + 1665 ], "__typename": [ - 78 + 80 ] }, "v_team_tournament_results_aggregate_bool_exp_var_samp": { "arguments": [ - 5739 + 5811 ], "distinct": [ - 3 + 5 ], "filter": [ - 5724 + 5796 ], "predicate": [ - 1548 + 1665 ], "__typename": [ - 78 + 80 ] }, "v_team_tournament_results_aggregate_fields": { "avg": [ - 5722 + 5794 ], "count": [ - 38, + 40, { "columns": [ - 5731, + 5803, "[v_team_tournament_results_select_column!]" ], "distinct": [ - 3 + 5 ] } ], "max": [ - 5726 + 5798 ], "min": [ - 5728 + 5800 ], "stddev": [ - 5740 + 5812 ], "stddev_pop": [ - 5742 + 5814 ], "stddev_samp": [ - 5744 + 5816 ], "sum": [ - 5748 + 5820 ], "var_pop": [ - 5750 + 5822 ], "var_samp": [ - 5752 + 5824 ], "variance": [ - 5754 + 5826 ], "__typename": [ - 78 + 80 ] }, "v_team_tournament_results_aggregate_order_by": { "avg": [ - 5723 + 5795 ], "count": [ - 2829 + 2946 ], "max": [ - 5727 + 5799 ], "min": [ - 5729 + 5801 ], "stddev": [ - 5741 + 5813 ], "stddev_pop": [ - 5743 + 5815 ], "stddev_samp": [ - 5745 + 5817 ], "sum": [ - 5749 + 5821 ], "var_pop": [ - 5751 + 5823 ], "var_samp": [ - 5753 + 5825 ], "variance": [ - 5755 + 5827 ], "__typename": [ - 78 + 80 ] }, "v_team_tournament_results_arr_rel_insert_input": { "data": [ - 5725 + 5797 ], "__typename": [ - 78 + 80 ] }, "v_team_tournament_results_avg_fields": { "head_to_head_match_wins": [ - 29 + 31 ], "head_to_head_rounds_won": [ - 29 + 31 ], "losses": [ - 29 + 31 ], "maps_lost": [ - 29 + 31 ], "maps_won": [ - 29 + 31 ], "matches_played": [ - 29 + 31 ], "matches_remaining": [ - 29 + 31 ], "rounds_lost": [ - 29 + 31 ], "rounds_won": [ - 29 + 31 ], "team_kdr": [ - 29 + 31 ], "total_deaths": [ - 29 + 31 ], "total_kills": [ - 29 + 31 ], "wins": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_team_tournament_results_avg_order_by": { "head_to_head_match_wins": [ - 2829 + 2946 ], "head_to_head_rounds_won": [ - 2829 + 2946 ], "losses": [ - 2829 + 2946 ], "maps_lost": [ - 2829 + 2946 ], "maps_won": [ - 2829 + 2946 ], "matches_played": [ - 2829 + 2946 ], "matches_remaining": [ - 2829 + 2946 ], "rounds_lost": [ - 2829 + 2946 ], "rounds_won": [ - 2829 + 2946 ], "team_kdr": [ - 2829 + 2946 ], "total_deaths": [ - 2829 + 2946 ], "total_kills": [ - 2829 + 2946 ], "wins": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "v_team_tournament_results_bool_exp": { "_and": [ - 5724 + 5796 ], "_not": [ - 5724 + 5796 ], "_or": [ - 5724 + 5796 ], "head_to_head_match_wins": [ - 39 + 41 ], "head_to_head_rounds_won": [ - 39 + 41 ], "losses": [ - 39 + 41 ], "maps_lost": [ - 39 + 41 ], "maps_won": [ - 39 + 41 ], "matches_played": [ - 39 + 41 ], "matches_remaining": [ - 39 + 41 ], "rounds_lost": [ - 39 + 41 ], "rounds_won": [ - 39 + 41 ], "team": [ - 4737 + 4896 ], "team_kdr": [ - 1548 + 1665 ], "total_deaths": [ - 39 + 41 ], "total_kills": [ - 39 + 41 ], "tournament": [ - 4878 + 4950 ], "tournament_id": [ - 4923 + 4995 ], "tournament_team_id": [ - 4923 + 4995 ], "wins": [ - 39 + 41 ], "__typename": [ - 78 + 80 ] }, "v_team_tournament_results_insert_input": { "head_to_head_match_wins": [ - 38 + 40 ], "head_to_head_rounds_won": [ - 38 + 40 ], "losses": [ - 38 + 40 ], "maps_lost": [ - 38 + 40 ], "maps_won": [ - 38 + 40 ], "matches_played": [ - 38 + 40 ], "matches_remaining": [ - 38 + 40 ], "rounds_lost": [ - 38 + 40 ], "rounds_won": [ - 38 + 40 ], "team": [ - 4746 + 4905 ], "team_kdr": [ - 1547 + 1664 ], "total_deaths": [ - 38 + 40 ], "total_kills": [ - 38 + 40 ], "tournament": [ - 4887 + 4959 ], "tournament_id": [ - 4921 + 4993 ], "tournament_team_id": [ - 4921 + 4993 ], "wins": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "v_team_tournament_results_max_fields": { "head_to_head_match_wins": [ - 38 + 40 ], "head_to_head_rounds_won": [ - 38 + 40 ], "losses": [ - 38 + 40 ], "maps_lost": [ - 38 + 40 ], "maps_won": [ - 38 + 40 ], "matches_played": [ - 38 + 40 ], "matches_remaining": [ - 38 + 40 ], "rounds_lost": [ - 38 + 40 ], "rounds_won": [ - 38 + 40 ], "team_kdr": [ - 1547 + 1664 ], "total_deaths": [ - 38 + 40 ], "total_kills": [ - 38 + 40 ], "tournament_id": [ - 4921 + 4993 ], "tournament_team_id": [ - 4921 + 4993 ], "wins": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "v_team_tournament_results_max_order_by": { "head_to_head_match_wins": [ - 2829 + 2946 ], "head_to_head_rounds_won": [ - 2829 + 2946 ], "losses": [ - 2829 + 2946 ], "maps_lost": [ - 2829 + 2946 ], "maps_won": [ - 2829 + 2946 ], "matches_played": [ - 2829 + 2946 ], "matches_remaining": [ - 2829 + 2946 ], "rounds_lost": [ - 2829 + 2946 ], "rounds_won": [ - 2829 + 2946 ], "team_kdr": [ - 2829 + 2946 ], "total_deaths": [ - 2829 + 2946 ], "total_kills": [ - 2829 + 2946 ], "tournament_id": [ - 2829 + 2946 ], "tournament_team_id": [ - 2829 + 2946 ], "wins": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "v_team_tournament_results_min_fields": { "head_to_head_match_wins": [ - 38 + 40 ], "head_to_head_rounds_won": [ - 38 + 40 ], "losses": [ - 38 + 40 ], "maps_lost": [ - 38 + 40 ], "maps_won": [ - 38 + 40 ], "matches_played": [ - 38 + 40 ], "matches_remaining": [ - 38 + 40 ], "rounds_lost": [ - 38 + 40 ], "rounds_won": [ - 38 + 40 ], "team_kdr": [ - 1547 + 1664 ], "total_deaths": [ - 38 + 40 ], "total_kills": [ - 38 + 40 ], "tournament_id": [ - 4921 + 4993 ], "tournament_team_id": [ - 4921 + 4993 ], "wins": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "v_team_tournament_results_min_order_by": { "head_to_head_match_wins": [ - 2829 + 2946 ], "head_to_head_rounds_won": [ - 2829 + 2946 ], "losses": [ - 2829 + 2946 ], "maps_lost": [ - 2829 + 2946 ], "maps_won": [ - 2829 + 2946 ], "matches_played": [ - 2829 + 2946 ], "matches_remaining": [ - 2829 + 2946 ], "rounds_lost": [ - 2829 + 2946 ], "rounds_won": [ - 2829 + 2946 ], "team_kdr": [ - 2829 + 2946 ], "total_deaths": [ - 2829 + 2946 ], "total_kills": [ - 2829 + 2946 ], "tournament_id": [ - 2829 + 2946 ], "tournament_team_id": [ - 2829 + 2946 ], "wins": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "v_team_tournament_results_order_by": { "head_to_head_match_wins": [ - 2829 + 2946 ], "head_to_head_rounds_won": [ - 2829 + 2946 ], "losses": [ - 2829 + 2946 ], "maps_lost": [ - 2829 + 2946 ], "maps_won": [ - 2829 + 2946 ], "matches_played": [ - 2829 + 2946 ], "matches_remaining": [ - 2829 + 2946 ], "rounds_lost": [ - 2829 + 2946 ], "rounds_won": [ - 2829 + 2946 ], "team": [ - 4748 + 4907 ], "team_kdr": [ - 2829 + 2946 ], "total_deaths": [ - 2829 + 2946 ], "total_kills": [ - 2829 + 2946 ], "tournament": [ - 4889 + 4961 ], "tournament_id": [ - 2829 + 2946 ], "tournament_team_id": [ - 2829 + 2946 ], "wins": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "v_team_tournament_results_select_column": {}, @@ -132330,1337 +133862,1337 @@ export default { "v_team_tournament_results_select_column_v_team_tournament_results_aggregate_bool_exp_var_samp_arguments_columns": {}, "v_team_tournament_results_stddev_fields": { "head_to_head_match_wins": [ - 29 + 31 ], "head_to_head_rounds_won": [ - 29 + 31 ], "losses": [ - 29 + 31 ], "maps_lost": [ - 29 + 31 ], "maps_won": [ - 29 + 31 ], "matches_played": [ - 29 + 31 ], "matches_remaining": [ - 29 + 31 ], "rounds_lost": [ - 29 + 31 ], "rounds_won": [ - 29 + 31 ], "team_kdr": [ - 29 + 31 ], "total_deaths": [ - 29 + 31 ], "total_kills": [ - 29 + 31 ], "wins": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_team_tournament_results_stddev_order_by": { "head_to_head_match_wins": [ - 2829 + 2946 ], "head_to_head_rounds_won": [ - 2829 + 2946 ], "losses": [ - 2829 + 2946 ], "maps_lost": [ - 2829 + 2946 ], "maps_won": [ - 2829 + 2946 ], "matches_played": [ - 2829 + 2946 ], "matches_remaining": [ - 2829 + 2946 ], "rounds_lost": [ - 2829 + 2946 ], "rounds_won": [ - 2829 + 2946 ], "team_kdr": [ - 2829 + 2946 ], "total_deaths": [ - 2829 + 2946 ], "total_kills": [ - 2829 + 2946 ], "wins": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "v_team_tournament_results_stddev_pop_fields": { "head_to_head_match_wins": [ - 29 + 31 ], "head_to_head_rounds_won": [ - 29 + 31 ], "losses": [ - 29 + 31 ], "maps_lost": [ - 29 + 31 ], "maps_won": [ - 29 + 31 ], "matches_played": [ - 29 + 31 ], "matches_remaining": [ - 29 + 31 ], "rounds_lost": [ - 29 + 31 ], "rounds_won": [ - 29 + 31 ], "team_kdr": [ - 29 + 31 ], "total_deaths": [ - 29 + 31 ], "total_kills": [ - 29 + 31 ], "wins": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_team_tournament_results_stddev_pop_order_by": { "head_to_head_match_wins": [ - 2829 + 2946 ], "head_to_head_rounds_won": [ - 2829 + 2946 ], "losses": [ - 2829 + 2946 ], "maps_lost": [ - 2829 + 2946 ], "maps_won": [ - 2829 + 2946 ], "matches_played": [ - 2829 + 2946 ], "matches_remaining": [ - 2829 + 2946 ], "rounds_lost": [ - 2829 + 2946 ], "rounds_won": [ - 2829 + 2946 ], "team_kdr": [ - 2829 + 2946 ], "total_deaths": [ - 2829 + 2946 ], "total_kills": [ - 2829 + 2946 ], "wins": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "v_team_tournament_results_stddev_samp_fields": { "head_to_head_match_wins": [ - 29 + 31 ], "head_to_head_rounds_won": [ - 29 + 31 ], "losses": [ - 29 + 31 ], "maps_lost": [ - 29 + 31 ], "maps_won": [ - 29 + 31 ], "matches_played": [ - 29 + 31 ], "matches_remaining": [ - 29 + 31 ], "rounds_lost": [ - 29 + 31 ], "rounds_won": [ - 29 + 31 ], "team_kdr": [ - 29 + 31 ], "total_deaths": [ - 29 + 31 ], "total_kills": [ - 29 + 31 ], "wins": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_team_tournament_results_stddev_samp_order_by": { "head_to_head_match_wins": [ - 2829 + 2946 ], "head_to_head_rounds_won": [ - 2829 + 2946 ], "losses": [ - 2829 + 2946 ], "maps_lost": [ - 2829 + 2946 ], "maps_won": [ - 2829 + 2946 ], "matches_played": [ - 2829 + 2946 ], "matches_remaining": [ - 2829 + 2946 ], "rounds_lost": [ - 2829 + 2946 ], "rounds_won": [ - 2829 + 2946 ], "team_kdr": [ - 2829 + 2946 ], "total_deaths": [ - 2829 + 2946 ], "total_kills": [ - 2829 + 2946 ], "wins": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "v_team_tournament_results_stream_cursor_input": { "initial_value": [ - 5747 + 5819 ], "ordering": [ - 236 + 308 ], "__typename": [ - 78 + 80 ] }, "v_team_tournament_results_stream_cursor_value_input": { "head_to_head_match_wins": [ - 38 + 40 ], "head_to_head_rounds_won": [ - 38 + 40 ], "losses": [ - 38 + 40 ], "maps_lost": [ - 38 + 40 ], "maps_won": [ - 38 + 40 ], "matches_played": [ - 38 + 40 ], "matches_remaining": [ - 38 + 40 ], "rounds_lost": [ - 38 + 40 ], "rounds_won": [ - 38 + 40 ], "team_kdr": [ - 1547 + 1664 ], "total_deaths": [ - 38 + 40 ], "total_kills": [ - 38 + 40 ], "tournament_id": [ - 4921 + 4993 ], "tournament_team_id": [ - 4921 + 4993 ], "wins": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "v_team_tournament_results_sum_fields": { "head_to_head_match_wins": [ - 38 + 40 ], "head_to_head_rounds_won": [ - 38 + 40 ], "losses": [ - 38 + 40 ], "maps_lost": [ - 38 + 40 ], "maps_won": [ - 38 + 40 ], "matches_played": [ - 38 + 40 ], "matches_remaining": [ - 38 + 40 ], "rounds_lost": [ - 38 + 40 ], "rounds_won": [ - 38 + 40 ], "team_kdr": [ - 1547 + 1664 ], "total_deaths": [ - 38 + 40 ], "total_kills": [ - 38 + 40 ], "wins": [ - 38 + 40 ], "__typename": [ - 78 + 80 ] }, "v_team_tournament_results_sum_order_by": { "head_to_head_match_wins": [ - 2829 + 2946 ], "head_to_head_rounds_won": [ - 2829 + 2946 ], "losses": [ - 2829 + 2946 ], "maps_lost": [ - 2829 + 2946 ], "maps_won": [ - 2829 + 2946 ], "matches_played": [ - 2829 + 2946 ], "matches_remaining": [ - 2829 + 2946 ], "rounds_lost": [ - 2829 + 2946 ], "rounds_won": [ - 2829 + 2946 ], "team_kdr": [ - 2829 + 2946 ], "total_deaths": [ - 2829 + 2946 ], "total_kills": [ - 2829 + 2946 ], "wins": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "v_team_tournament_results_var_pop_fields": { "head_to_head_match_wins": [ - 29 + 31 ], "head_to_head_rounds_won": [ - 29 + 31 ], "losses": [ - 29 + 31 ], "maps_lost": [ - 29 + 31 ], "maps_won": [ - 29 + 31 ], "matches_played": [ - 29 + 31 ], "matches_remaining": [ - 29 + 31 ], "rounds_lost": [ - 29 + 31 ], "rounds_won": [ - 29 + 31 ], "team_kdr": [ - 29 + 31 ], "total_deaths": [ - 29 + 31 ], "total_kills": [ - 29 + 31 ], "wins": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_team_tournament_results_var_pop_order_by": { "head_to_head_match_wins": [ - 2829 + 2946 ], "head_to_head_rounds_won": [ - 2829 + 2946 ], "losses": [ - 2829 + 2946 ], "maps_lost": [ - 2829 + 2946 ], "maps_won": [ - 2829 + 2946 ], "matches_played": [ - 2829 + 2946 ], "matches_remaining": [ - 2829 + 2946 ], "rounds_lost": [ - 2829 + 2946 ], "rounds_won": [ - 2829 + 2946 ], "team_kdr": [ - 2829 + 2946 ], "total_deaths": [ - 2829 + 2946 ], "total_kills": [ - 2829 + 2946 ], "wins": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "v_team_tournament_results_var_samp_fields": { "head_to_head_match_wins": [ - 29 + 31 ], "head_to_head_rounds_won": [ - 29 + 31 ], "losses": [ - 29 + 31 ], "maps_lost": [ - 29 + 31 ], "maps_won": [ - 29 + 31 ], "matches_played": [ - 29 + 31 ], "matches_remaining": [ - 29 + 31 ], "rounds_lost": [ - 29 + 31 ], "rounds_won": [ - 29 + 31 ], "team_kdr": [ - 29 + 31 ], "total_deaths": [ - 29 + 31 ], "total_kills": [ - 29 + 31 ], "wins": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_team_tournament_results_var_samp_order_by": { "head_to_head_match_wins": [ - 2829 + 2946 ], "head_to_head_rounds_won": [ - 2829 + 2946 ], "losses": [ - 2829 + 2946 ], "maps_lost": [ - 2829 + 2946 ], "maps_won": [ - 2829 + 2946 ], "matches_played": [ - 2829 + 2946 ], "matches_remaining": [ - 2829 + 2946 ], "rounds_lost": [ - 2829 + 2946 ], "rounds_won": [ - 2829 + 2946 ], "team_kdr": [ - 2829 + 2946 ], "total_deaths": [ - 2829 + 2946 ], "total_kills": [ - 2829 + 2946 ], "wins": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "v_team_tournament_results_variance_fields": { "head_to_head_match_wins": [ - 29 + 31 ], "head_to_head_rounds_won": [ - 29 + 31 ], "losses": [ - 29 + 31 ], "maps_lost": [ - 29 + 31 ], "maps_won": [ - 29 + 31 ], "matches_played": [ - 29 + 31 ], "matches_remaining": [ - 29 + 31 ], "rounds_lost": [ - 29 + 31 ], "rounds_won": [ - 29 + 31 ], "team_kdr": [ - 29 + 31 ], "total_deaths": [ - 29 + 31 ], "total_kills": [ - 29 + 31 ], "wins": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_team_tournament_results_variance_order_by": { "head_to_head_match_wins": [ - 2829 + 2946 ], "head_to_head_rounds_won": [ - 2829 + 2946 ], "losses": [ - 2829 + 2946 ], "maps_lost": [ - 2829 + 2946 ], "maps_won": [ - 2829 + 2946 ], "matches_played": [ - 2829 + 2946 ], "matches_remaining": [ - 2829 + 2946 ], "rounds_lost": [ - 2829 + 2946 ], "rounds_won": [ - 2829 + 2946 ], "team_kdr": [ - 2829 + 2946 ], "total_deaths": [ - 2829 + 2946 ], "total_kills": [ - 2829 + 2946 ], "wins": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "v_tournament_player_stats": { "assists": [ - 38 + 40 ], "deaths": [ - 38 + 40 ], "headshot_percentage": [ - 1547 + 1664 ], "headshots": [ - 38 + 40 ], "kdr": [ - 1547 + 1664 ], "kills": [ - 38 + 40 ], "matches_played": [ - 38 + 40 ], "player": [ - 3787 + 3904 ], "player_steam_id": [ - 180 + 252 ], "tournament": [ - 4857 + 4929 ], "tournament_id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "v_tournament_player_stats_aggregate": { "aggregate": [ - 5770 + 5842 ], "nodes": [ - 5756 + 5828 ], "__typename": [ - 78 + 80 ] }, "v_tournament_player_stats_aggregate_bool_exp": { "avg": [ - 5759 + 5831 ], "corr": [ - 5760 + 5832 ], "count": [ - 5762 + 5834 ], "covar_samp": [ - 5763 + 5835 ], "max": [ - 5765 + 5837 ], "min": [ - 5766 + 5838 ], "stddev_samp": [ - 5767 + 5839 ], "sum": [ - 5768 + 5840 ], "var_samp": [ - 5769 + 5841 ], "__typename": [ - 78 + 80 ] }, "v_tournament_player_stats_aggregate_bool_exp_avg": { "arguments": [ - 5783 + 5855 ], "distinct": [ - 3 + 5 ], "filter": [ - 5775 + 5847 ], "predicate": [ - 1548 + 1665 ], "__typename": [ - 78 + 80 ] }, "v_tournament_player_stats_aggregate_bool_exp_corr": { "arguments": [ - 5761 + 5833 ], "distinct": [ - 3 + 5 ], "filter": [ - 5775 + 5847 ], "predicate": [ - 1548 + 1665 ], "__typename": [ - 78 + 80 ] }, "v_tournament_player_stats_aggregate_bool_exp_corr_arguments": { "X": [ - 5784 + 5856 ], "Y": [ - 5784 + 5856 ], "__typename": [ - 78 + 80 ] }, "v_tournament_player_stats_aggregate_bool_exp_count": { "arguments": [ - 5782 + 5854 ], "distinct": [ - 3 + 5 ], "filter": [ - 5775 + 5847 ], "predicate": [ - 39 + 41 ], "__typename": [ - 78 + 80 ] }, "v_tournament_player_stats_aggregate_bool_exp_covar_samp": { "arguments": [ - 5764 + 5836 ], "distinct": [ - 3 + 5 ], "filter": [ - 5775 + 5847 ], "predicate": [ - 1548 + 1665 ], "__typename": [ - 78 + 80 ] }, "v_tournament_player_stats_aggregate_bool_exp_covar_samp_arguments": { "X": [ - 5785 + 5857 ], "Y": [ - 5785 + 5857 ], "__typename": [ - 78 + 80 ] }, "v_tournament_player_stats_aggregate_bool_exp_max": { "arguments": [ - 5786 + 5858 ], "distinct": [ - 3 + 5 ], "filter": [ - 5775 + 5847 ], "predicate": [ - 1548 + 1665 ], "__typename": [ - 78 + 80 ] }, "v_tournament_player_stats_aggregate_bool_exp_min": { "arguments": [ - 5787 + 5859 ], "distinct": [ - 3 + 5 ], "filter": [ - 5775 + 5847 ], "predicate": [ - 1548 + 1665 ], "__typename": [ - 78 + 80 ] }, "v_tournament_player_stats_aggregate_bool_exp_stddev_samp": { "arguments": [ - 5788 + 5860 ], "distinct": [ - 3 + 5 ], "filter": [ - 5775 + 5847 ], "predicate": [ - 1548 + 1665 ], "__typename": [ - 78 + 80 ] }, "v_tournament_player_stats_aggregate_bool_exp_sum": { "arguments": [ - 5789 + 5861 ], "distinct": [ - 3 + 5 ], "filter": [ - 5775 + 5847 ], "predicate": [ - 1548 + 1665 ], "__typename": [ - 78 + 80 ] }, "v_tournament_player_stats_aggregate_bool_exp_var_samp": { "arguments": [ - 5790 + 5862 ], "distinct": [ - 3 + 5 ], "filter": [ - 5775 + 5847 ], "predicate": [ - 1548 + 1665 ], "__typename": [ - 78 + 80 ] }, "v_tournament_player_stats_aggregate_fields": { "avg": [ - 5773 + 5845 ], "count": [ - 38, + 40, { "columns": [ - 5782, + 5854, "[v_tournament_player_stats_select_column!]" ], "distinct": [ - 3 + 5 ] } ], "max": [ - 5777 + 5849 ], "min": [ - 5779 + 5851 ], "stddev": [ - 5791 + 5863 ], "stddev_pop": [ - 5793 + 5865 ], "stddev_samp": [ - 5795 + 5867 ], "sum": [ - 5799 + 5871 ], "var_pop": [ - 5801 + 5873 ], "var_samp": [ - 5803 + 5875 ], "variance": [ - 5805 + 5877 ], "__typename": [ - 78 + 80 ] }, "v_tournament_player_stats_aggregate_order_by": { "avg": [ - 5774 + 5846 ], "count": [ - 2829 + 2946 ], "max": [ - 5778 + 5850 ], "min": [ - 5780 + 5852 ], "stddev": [ - 5792 + 5864 ], "stddev_pop": [ - 5794 + 5866 ], "stddev_samp": [ - 5796 + 5868 ], "sum": [ - 5800 + 5872 ], "var_pop": [ - 5802 + 5874 ], "var_samp": [ - 5804 + 5876 ], "variance": [ - 5806 + 5878 ], "__typename": [ - 78 + 80 ] }, "v_tournament_player_stats_arr_rel_insert_input": { "data": [ - 5776 + 5848 ], "__typename": [ - 78 + 80 ] }, "v_tournament_player_stats_avg_fields": { "assists": [ - 29 + 31 ], "deaths": [ - 29 + 31 ], "headshot_percentage": [ - 29 + 31 ], "headshots": [ - 29 + 31 ], "kdr": [ - 29 + 31 ], "kills": [ - 29 + 31 ], "matches_played": [ - 29 + 31 ], "player_steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_tournament_player_stats_avg_order_by": { "assists": [ - 2829 + 2946 ], "deaths": [ - 2829 + 2946 ], "headshot_percentage": [ - 2829 + 2946 ], "headshots": [ - 2829 + 2946 ], "kdr": [ - 2829 + 2946 ], "kills": [ - 2829 + 2946 ], "matches_played": [ - 2829 + 2946 ], "player_steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "v_tournament_player_stats_bool_exp": { "_and": [ - 5775 + 5847 ], "_not": [ - 5775 + 5847 ], "_or": [ - 5775 + 5847 ], "assists": [ - 39 + 41 ], "deaths": [ - 39 + 41 ], "headshot_percentage": [ - 1548 + 1665 ], "headshots": [ - 39 + 41 ], "kdr": [ - 1548 + 1665 ], "kills": [ - 39 + 41 ], "matches_played": [ - 39 + 41 ], "player": [ - 3791 + 3908 ], "player_steam_id": [ - 182 + 254 ], "tournament": [ - 4878 + 4950 ], "tournament_id": [ - 4923 + 4995 ], "__typename": [ - 78 + 80 ] }, "v_tournament_player_stats_insert_input": { "assists": [ - 38 + 40 ], "deaths": [ - 38 + 40 ], "headshot_percentage": [ - 1547 + 1664 ], "headshots": [ - 38 + 40 ], "kdr": [ - 1547 + 1664 ], "kills": [ - 38 + 40 ], "matches_played": [ - 38 + 40 ], "player": [ - 3798 + 3915 ], "player_steam_id": [ - 180 + 252 ], "tournament": [ - 4887 + 4959 ], "tournament_id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "v_tournament_player_stats_max_fields": { "assists": [ - 38 + 40 ], "deaths": [ - 38 + 40 ], "headshot_percentage": [ - 1547 + 1664 ], "headshots": [ - 38 + 40 ], "kdr": [ - 1547 + 1664 ], "kills": [ - 38 + 40 ], "matches_played": [ - 38 + 40 ], "player_steam_id": [ - 180 + 252 ], "tournament_id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "v_tournament_player_stats_max_order_by": { "assists": [ - 2829 + 2946 ], "deaths": [ - 2829 + 2946 ], "headshot_percentage": [ - 2829 + 2946 ], "headshots": [ - 2829 + 2946 ], "kdr": [ - 2829 + 2946 ], "kills": [ - 2829 + 2946 ], "matches_played": [ - 2829 + 2946 ], "player_steam_id": [ - 2829 + 2946 ], "tournament_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "v_tournament_player_stats_min_fields": { "assists": [ - 38 + 40 ], "deaths": [ - 38 + 40 ], "headshot_percentage": [ - 1547 + 1664 ], "headshots": [ - 38 + 40 ], "kdr": [ - 1547 + 1664 ], "kills": [ - 38 + 40 ], "matches_played": [ - 38 + 40 ], "player_steam_id": [ - 180 + 252 ], "tournament_id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "v_tournament_player_stats_min_order_by": { "assists": [ - 2829 + 2946 ], "deaths": [ - 2829 + 2946 ], "headshot_percentage": [ - 2829 + 2946 ], "headshots": [ - 2829 + 2946 ], "kdr": [ - 2829 + 2946 ], "kills": [ - 2829 + 2946 ], "matches_played": [ - 2829 + 2946 ], "player_steam_id": [ - 2829 + 2946 ], "tournament_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "v_tournament_player_stats_order_by": { "assists": [ - 2829 + 2946 ], "deaths": [ - 2829 + 2946 ], "headshot_percentage": [ - 2829 + 2946 ], "headshots": [ - 2829 + 2946 ], "kdr": [ - 2829 + 2946 ], "kills": [ - 2829 + 2946 ], "matches_played": [ - 2829 + 2946 ], "player": [ - 3800 + 3917 ], "player_steam_id": [ - 2829 + 2946 ], "tournament": [ - 4889 + 4961 ], "tournament_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "v_tournament_player_stats_select_column": {}, @@ -133674,3828 +135206,4040 @@ export default { "v_tournament_player_stats_select_column_v_tournament_player_stats_aggregate_bool_exp_var_samp_arguments_columns": {}, "v_tournament_player_stats_stddev_fields": { "assists": [ - 29 + 31 ], "deaths": [ - 29 + 31 ], "headshot_percentage": [ - 29 + 31 ], "headshots": [ - 29 + 31 ], "kdr": [ - 29 + 31 ], "kills": [ - 29 + 31 ], "matches_played": [ - 29 + 31 ], "player_steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_tournament_player_stats_stddev_order_by": { "assists": [ - 2829 + 2946 ], "deaths": [ - 2829 + 2946 ], "headshot_percentage": [ - 2829 + 2946 ], "headshots": [ - 2829 + 2946 ], "kdr": [ - 2829 + 2946 ], "kills": [ - 2829 + 2946 ], "matches_played": [ - 2829 + 2946 ], "player_steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "v_tournament_player_stats_stddev_pop_fields": { "assists": [ - 29 + 31 ], "deaths": [ - 29 + 31 ], "headshot_percentage": [ - 29 + 31 ], "headshots": [ - 29 + 31 ], "kdr": [ - 29 + 31 ], "kills": [ - 29 + 31 ], "matches_played": [ - 29 + 31 ], "player_steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_tournament_player_stats_stddev_pop_order_by": { "assists": [ - 2829 + 2946 ], "deaths": [ - 2829 + 2946 ], "headshot_percentage": [ - 2829 + 2946 ], "headshots": [ - 2829 + 2946 ], "kdr": [ - 2829 + 2946 ], "kills": [ - 2829 + 2946 ], "matches_played": [ - 2829 + 2946 ], "player_steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "v_tournament_player_stats_stddev_samp_fields": { "assists": [ - 29 + 31 ], "deaths": [ - 29 + 31 ], "headshot_percentage": [ - 29 + 31 ], "headshots": [ - 29 + 31 ], "kdr": [ - 29 + 31 ], "kills": [ - 29 + 31 ], "matches_played": [ - 29 + 31 ], "player_steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_tournament_player_stats_stddev_samp_order_by": { "assists": [ - 2829 + 2946 ], "deaths": [ - 2829 + 2946 ], "headshot_percentage": [ - 2829 + 2946 ], "headshots": [ - 2829 + 2946 ], "kdr": [ - 2829 + 2946 ], "kills": [ - 2829 + 2946 ], "matches_played": [ - 2829 + 2946 ], "player_steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "v_tournament_player_stats_stream_cursor_input": { "initial_value": [ - 5798 + 5870 ], "ordering": [ - 236 + 308 ], "__typename": [ - 78 + 80 ] }, "v_tournament_player_stats_stream_cursor_value_input": { "assists": [ - 38 + 40 ], "deaths": [ - 38 + 40 ], "headshot_percentage": [ - 1547 + 1664 ], "headshots": [ - 38 + 40 ], "kdr": [ - 1547 + 1664 ], "kills": [ - 38 + 40 ], "matches_played": [ - 38 + 40 ], "player_steam_id": [ - 180 + 252 ], "tournament_id": [ - 4921 + 4993 ], "__typename": [ - 78 + 80 ] }, "v_tournament_player_stats_sum_fields": { "assists": [ - 38 + 40 ], "deaths": [ - 38 + 40 ], "headshot_percentage": [ - 1547 + 1664 ], "headshots": [ - 38 + 40 ], "kdr": [ - 1547 + 1664 ], "kills": [ - 38 + 40 ], "matches_played": [ - 38 + 40 ], "player_steam_id": [ - 180 + 252 ], "__typename": [ - 78 + 80 ] }, "v_tournament_player_stats_sum_order_by": { "assists": [ - 2829 + 2946 ], "deaths": [ - 2829 + 2946 ], "headshot_percentage": [ - 2829 + 2946 ], "headshots": [ - 2829 + 2946 ], "kdr": [ - 2829 + 2946 ], "kills": [ - 2829 + 2946 ], "matches_played": [ - 2829 + 2946 ], "player_steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "v_tournament_player_stats_var_pop_fields": { "assists": [ - 29 + 31 ], "deaths": [ - 29 + 31 ], "headshot_percentage": [ - 29 + 31 ], "headshots": [ - 29 + 31 ], "kdr": [ - 29 + 31 ], "kills": [ - 29 + 31 ], "matches_played": [ - 29 + 31 ], "player_steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_tournament_player_stats_var_pop_order_by": { "assists": [ - 2829 + 2946 ], "deaths": [ - 2829 + 2946 ], "headshot_percentage": [ - 2829 + 2946 ], "headshots": [ - 2829 + 2946 ], "kdr": [ - 2829 + 2946 ], "kills": [ - 2829 + 2946 ], "matches_played": [ - 2829 + 2946 ], "player_steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "v_tournament_player_stats_var_samp_fields": { "assists": [ - 29 + 31 ], "deaths": [ - 29 + 31 ], "headshot_percentage": [ - 29 + 31 ], "headshots": [ - 29 + 31 ], "kdr": [ - 29 + 31 ], "kills": [ - 29 + 31 ], "matches_played": [ - 29 + 31 ], "player_steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_tournament_player_stats_var_samp_order_by": { "assists": [ - 2829 + 2946 ], "deaths": [ - 2829 + 2946 ], "headshot_percentage": [ - 2829 + 2946 ], "headshots": [ - 2829 + 2946 ], "kdr": [ - 2829 + 2946 ], "kills": [ - 2829 + 2946 ], "matches_played": [ - 2829 + 2946 ], "player_steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "v_tournament_player_stats_variance_fields": { "assists": [ - 29 + 31 ], "deaths": [ - 29 + 31 ], "headshot_percentage": [ - 29 + 31 ], "headshots": [ - 29 + 31 ], "kdr": [ - 29 + 31 ], "kills": [ - 29 + 31 ], "matches_played": [ - 29 + 31 ], "player_steam_id": [ - 29 + 31 ], "__typename": [ - 78 + 80 ] }, "v_tournament_player_stats_variance_order_by": { "assists": [ - 2829 + 2946 ], "deaths": [ - 2829 + 2946 ], "headshot_percentage": [ - 2829 + 2946 ], "headshots": [ - 2829 + 2946 ], "kdr": [ - 2829 + 2946 ], "kills": [ - 2829 + 2946 ], "matches_played": [ - 2829 + 2946 ], "player_steam_id": [ - 2829 + 2946 ], "__typename": [ - 78 + 80 ] }, "Query": { "_map_pool": [ - 92, + 95, { "distinct_on": [ - 104, + 107, "[_map_pool_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 102, + 105, "[_map_pool_order_by!]" ], "where": [ - 95 + 98 ] } ], "_map_pool_aggregate": [ - 93, + 96, { "distinct_on": [ - 104, + 107, "[_map_pool_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 102, + 105, "[_map_pool_order_by!]" ], "where": [ - 95 + 98 ] } ], "_map_pool_by_pk": [ - 92, + 95, { "map_id": [ - 4921, + 4993, "uuid!" ], "map_pool_id": [ - 4921, + 4993, "uuid!" ] } ], "abandoned_matches": [ - 111, + 114, { "distinct_on": [ - 132, + 135, "[abandoned_matches_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 130, + 133, "[abandoned_matches_order_by!]" ], "where": [ - 120 + 123 ] } ], "abandoned_matches_aggregate": [ - 112, + 115, { "distinct_on": [ - 132, + 135, "[abandoned_matches_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 130, + 133, "[abandoned_matches_order_by!]" ], "where": [ - 120 + 123 ] } ], "abandoned_matches_by_pk": [ - 111, + 114, { "id": [ - 4921, + 4993, "uuid!" ] } ], "api_keys": [ - 152, + 155, { "distinct_on": [ - 166, + 169, "[api_keys_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 164, + 167, "[api_keys_order_by!]" ], "where": [ - 156 + 159 ] } ], "api_keys_aggregate": [ - 153, + 156, { "distinct_on": [ - 166, + 169, "[api_keys_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 164, + 167, "[api_keys_order_by!]" ], "where": [ - 156 + 159 ] } ], "api_keys_by_pk": [ - 152, + 155, { "id": [ - 4921, + 4993, + "uuid!" + ] + } + ], + "award_recipients": [ + 183, + { + "distinct_on": [ + 204, + "[award_recipients_select_column!]" + ], + "limit": [ + 40 + ], + "offset": [ + 40 + ], + "order_by": [ + 202, + "[award_recipients_order_by!]" + ], + "where": [ + 192 + ] + } + ], + "award_recipients_aggregate": [ + 184, + { + "distinct_on": [ + 204, + "[award_recipients_select_column!]" + ], + "limit": [ + 40 + ], + "offset": [ + 40 + ], + "order_by": [ + 202, + "[award_recipients_order_by!]" + ], + "where": [ + 192 + ] + } + ], + "award_recipients_by_pk": [ + 183, + { + "id": [ + 4993, + "uuid!" + ] + } + ], + "awards": [ + 224, + { + "distinct_on": [ + 239, + "[awards_select_column!]" + ], + "limit": [ + 40 + ], + "offset": [ + 40 + ], + "order_by": [ + 237, + "[awards_order_by!]" + ], + "where": [ + 228 + ] + } + ], + "awards_aggregate": [ + 225, + { + "distinct_on": [ + 239, + "[awards_select_column!]" + ], + "limit": [ + 40 + ], + "offset": [ + 40 + ], + "order_by": [ + 237, + "[awards_order_by!]" + ], + "where": [ + 228 + ] + } + ], + "awards_by_pk": [ + 224, + { + "id": [ + 4993, "uuid!" ] } ], "clip_render_jobs": [ - 185, + 257, { "distinct_on": [ - 213, + 285, "[clip_render_jobs_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 210, + 282, "[clip_render_jobs_order_by!]" ], "where": [ - 197 + 269 ] } ], "clip_render_jobs_aggregate": [ - 186, + 258, { "distinct_on": [ - 213, + 285, "[clip_render_jobs_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 210, + 282, "[clip_render_jobs_order_by!]" ], "where": [ - 197 + 269 ] } ], "clip_render_jobs_by_pk": [ - 185, + 257, { "id": [ - 4921, + 4993, "uuid!" ] } ], "custom_pages": [ - 237, + 309, { "distinct_on": [ - 251, + 328, "[custom_pages_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 249, + 325, "[custom_pages_order_by!]" ], "where": [ - 241 + 314 ] } ], "custom_pages_aggregate": [ - 238, + 310, { "distinct_on": [ - 251, + 328, "[custom_pages_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 249, + 325, "[custom_pages_order_by!]" ], "where": [ - 241 + 314 ] } ], "custom_pages_by_pk": [ - 237, + 309, { "id": [ - 4921, + 4993, "uuid!" ] } ], "dbStats": [ - 17 + 19 ], "db_backups": [ - 264, + 341, { "distinct_on": [ - 278, + 355, "[db_backups_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 276, + 353, "[db_backups_order_by!]" ], "where": [ - 268 + 345 ] } ], "db_backups_aggregate": [ - 265, + 342, { "distinct_on": [ - 278, + 355, "[db_backups_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 276, + 353, "[db_backups_order_by!]" ], "where": [ - 268 + 345 ] } ], "db_backups_by_pk": [ - 264, + 341, { "id": [ - 4921, + 4993, "uuid!" ] } ], "draft_game_picks": [ - 291, + 368, { "distinct_on": [ - 314, + 391, "[draft_game_picks_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 312, + 389, "[draft_game_picks_order_by!]" ], "where": [ - 302 + 379 ] } ], "draft_game_picks_aggregate": [ - 292, + 369, { "distinct_on": [ - 314, + 391, "[draft_game_picks_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 312, + 389, "[draft_game_picks_order_by!]" ], "where": [ - 302 + 379 ] } ], "draft_game_picks_by_pk": [ - 291, + 368, { "id": [ - 4921, + 4993, "uuid!" ] } ], "draft_game_players": [ - 336, + 413, { "distinct_on": [ - 359, + 436, "[draft_game_players_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 357, + 434, "[draft_game_players_order_by!]" ], "where": [ - 347 + 424 ] } ], "draft_game_players_aggregate": [ - 337, + 414, { "distinct_on": [ - 359, + 436, "[draft_game_players_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 357, + 434, "[draft_game_players_order_by!]" ], "where": [ - 347 + 424 ] } ], "draft_game_players_by_pk": [ - 336, + 413, { "draft_game_id": [ - 4921, + 4993, "uuid!" ], "steam_id": [ - 180, + 252, "bigint!" ] } ], "draft_games": [ - 381, + 458, { "distinct_on": [ - 405, + 482, "[draft_games_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 403, + 480, "[draft_games_order_by!]" ], "where": [ - 392 + 469 ] } ], "draft_games_aggregate": [ - 382, + 459, { "distinct_on": [ - 405, + 482, "[draft_games_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 403, + 480, "[draft_games_order_by!]" ], "where": [ - 392 + 469 ] } ], "draft_games_by_pk": [ - 381, + 458, { "id": [ - 4921, + 4993, "uuid!" ] } ], + "e_award_sources": [ + 504, + { + "distinct_on": [ + 518, + "[e_award_sources_select_column!]" + ], + "limit": [ + 40 + ], + "offset": [ + 40 + ], + "order_by": [ + 516, + "[e_award_sources_order_by!]" + ], + "where": [ + 507 + ] + } + ], + "e_award_sources_aggregate": [ + 505, + { + "distinct_on": [ + 518, + "[e_award_sources_select_column!]" + ], + "limit": [ + 40 + ], + "offset": [ + 40 + ], + "order_by": [ + 516, + "[e_award_sources_order_by!]" + ], + "where": [ + 507 + ] + } + ], + "e_award_sources_by_pk": [ + 504, + { + "value": [ + 80, + "String!" + ] + } + ], + "e_award_tiers": [ + 524, + { + "distinct_on": [ + 538, + "[e_award_tiers_select_column!]" + ], + "limit": [ + 40 + ], + "offset": [ + 40 + ], + "order_by": [ + 536, + "[e_award_tiers_order_by!]" + ], + "where": [ + 527 + ] + } + ], + "e_award_tiers_aggregate": [ + 525, + { + "distinct_on": [ + 538, + "[e_award_tiers_select_column!]" + ], + "limit": [ + 40 + ], + "offset": [ + 40 + ], + "order_by": [ + 536, + "[e_award_tiers_order_by!]" + ], + "where": [ + 527 + ] + } + ], + "e_award_tiers_by_pk": [ + 524, + { + "value": [ + 80, + "String!" + ] + } + ], "e_check_in_settings": [ - 427, + 544, { "distinct_on": [ - 441, + 558, "[e_check_in_settings_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 439, + 556, "[e_check_in_settings_order_by!]" ], "where": [ - 430 + 547 ] } ], "e_check_in_settings_aggregate": [ - 428, + 545, { "distinct_on": [ - 441, + 558, "[e_check_in_settings_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 439, + 556, "[e_check_in_settings_order_by!]" ], "where": [ - 430 + 547 ] } ], "e_check_in_settings_by_pk": [ - 427, + 544, { "value": [ - 78, + 80, "String!" ] } ], "e_draft_game_captain_selection": [ - 447, + 564, { "distinct_on": [ - 462, + 579, "[e_draft_game_captain_selection_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 460, + 577, "[e_draft_game_captain_selection_order_by!]" ], "where": [ - 450 + 567 ] } ], "e_draft_game_captain_selection_aggregate": [ - 448, + 565, { "distinct_on": [ - 462, + 579, "[e_draft_game_captain_selection_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 460, + 577, "[e_draft_game_captain_selection_order_by!]" ], "where": [ - 450 + 567 ] } ], "e_draft_game_captain_selection_by_pk": [ - 447, + 564, { "value": [ - 78, + 80, "String!" ] } ], "e_draft_game_draft_order": [ - 468, + 585, { "distinct_on": [ - 483, + 600, "[e_draft_game_draft_order_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 481, + 598, "[e_draft_game_draft_order_order_by!]" ], "where": [ - 471 + 588 ] } ], "e_draft_game_draft_order_aggregate": [ - 469, + 586, { "distinct_on": [ - 483, + 600, "[e_draft_game_draft_order_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 481, + 598, "[e_draft_game_draft_order_order_by!]" ], "where": [ - 471 + 588 ] } ], "e_draft_game_draft_order_by_pk": [ - 468, + 585, { "value": [ - 78, + 80, "String!" ] } ], "e_draft_game_mode": [ - 489, + 606, { "distinct_on": [ - 504, + 621, "[e_draft_game_mode_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 502, + 619, "[e_draft_game_mode_order_by!]" ], "where": [ - 492 + 609 ] } ], "e_draft_game_mode_aggregate": [ - 490, + 607, { "distinct_on": [ - 504, + 621, "[e_draft_game_mode_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 502, + 619, "[e_draft_game_mode_order_by!]" ], "where": [ - 492 + 609 ] } ], "e_draft_game_mode_by_pk": [ - 489, + 606, { "value": [ - 78, + 80, "String!" ] } ], "e_draft_game_player_status": [ - 510, + 627, { "distinct_on": [ - 525, + 642, "[e_draft_game_player_status_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 523, + 640, "[e_draft_game_player_status_order_by!]" ], "where": [ - 513 + 630 ] } ], "e_draft_game_player_status_aggregate": [ - 511, + 628, { "distinct_on": [ - 525, + 642, "[e_draft_game_player_status_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 523, + 640, "[e_draft_game_player_status_order_by!]" ], "where": [ - 513 + 630 ] } ], "e_draft_game_player_status_by_pk": [ - 510, + 627, { "value": [ - 78, + 80, "String!" ] } ], "e_draft_game_status": [ - 531, + 648, { "distinct_on": [ - 546, + 663, "[e_draft_game_status_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 544, + 661, "[e_draft_game_status_order_by!]" ], "where": [ - 534 + 651 ] } ], "e_draft_game_status_aggregate": [ - 532, + 649, { "distinct_on": [ - 546, + 663, "[e_draft_game_status_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 544, + 661, "[e_draft_game_status_order_by!]" ], "where": [ - 534 + 651 ] } ], "e_draft_game_status_by_pk": [ - 531, + 648, { "value": [ - 78, + 80, "String!" ] } ], "e_event_media_access": [ - 552, + 669, { "distinct_on": [ - 566, + 683, "[e_event_media_access_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 564, + 681, "[e_event_media_access_order_by!]" ], "where": [ - 555 + 672 ] } ], "e_event_media_access_aggregate": [ - 553, + 670, { "distinct_on": [ - 566, + 683, "[e_event_media_access_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 564, + 681, "[e_event_media_access_order_by!]" ], "where": [ - 555 + 672 ] } ], "e_event_media_access_by_pk": [ - 552, + 669, { "value": [ - 78, + 80, "String!" ] } ], "e_event_visibility": [ - 572, + 689, { "distinct_on": [ - 586, + 703, "[e_event_visibility_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 584, + 701, "[e_event_visibility_order_by!]" ], "where": [ - 575 + 692 ] } ], "e_event_visibility_aggregate": [ - 573, + 690, { "distinct_on": [ - 586, + 703, "[e_event_visibility_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 584, + 701, "[e_event_visibility_order_by!]" ], "where": [ - 575 + 692 ] } ], "e_event_visibility_by_pk": [ - 572, + 689, { "value": [ - 78, + 80, "String!" ] } ], "e_friend_status": [ - 592, + 709, { "distinct_on": [ - 607, + 724, "[e_friend_status_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 605, + 722, "[e_friend_status_order_by!]" ], "where": [ - 595 + 712 ] } ], "e_friend_status_aggregate": [ - 593, + 710, { "distinct_on": [ - 607, + 724, "[e_friend_status_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 605, + 722, "[e_friend_status_order_by!]" ], "where": [ - 595 + 712 ] } ], "e_friend_status_by_pk": [ - 592, + 709, { "value": [ - 78, + 80, "String!" ] } ], "e_game_cfg_types": [ - 613, + 730, { "distinct_on": [ - 627, + 744, "[e_game_cfg_types_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 625, + 742, "[e_game_cfg_types_order_by!]" ], "where": [ - 616 + 733 ] } ], "e_game_cfg_types_aggregate": [ - 614, + 731, { "distinct_on": [ - 627, + 744, "[e_game_cfg_types_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 625, + 742, "[e_game_cfg_types_order_by!]" ], "where": [ - 616 + 733 ] } ], "e_game_cfg_types_by_pk": [ - 613, + 730, { "value": [ - 78, + 80, "String!" ] } ], "e_game_server_node_statuses": [ - 633, + 750, { "distinct_on": [ - 648, + 765, "[e_game_server_node_statuses_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 646, + 763, "[e_game_server_node_statuses_order_by!]" ], "where": [ - 636 + 753 ] } ], "e_game_server_node_statuses_aggregate": [ - 634, + 751, { "distinct_on": [ - 648, + 765, "[e_game_server_node_statuses_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 646, + 763, "[e_game_server_node_statuses_order_by!]" ], "where": [ - 636 + 753 ] } ], "e_game_server_node_statuses_by_pk": [ - 633, + 750, { "value": [ - 78, + 80, "String!" ] } ], "e_league_movement_types": [ - 654, + 771, { "distinct_on": [ - 669, + 786, "[e_league_movement_types_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 667, + 784, "[e_league_movement_types_order_by!]" ], "where": [ - 657 + 774 ] } ], "e_league_movement_types_aggregate": [ - 655, + 772, { "distinct_on": [ - 669, + 786, "[e_league_movement_types_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 667, + 784, "[e_league_movement_types_order_by!]" ], "where": [ - 657 + 774 ] } ], "e_league_movement_types_by_pk": [ - 654, + 771, { "value": [ - 78, + 80, "String!" ] } ], "e_league_proposal_statuses": [ - 675, + 792, { "distinct_on": [ - 690, + 807, "[e_league_proposal_statuses_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 688, + 805, "[e_league_proposal_statuses_order_by!]" ], "where": [ - 678 + 795 ] } ], "e_league_proposal_statuses_aggregate": [ - 676, + 793, { "distinct_on": [ - 690, + 807, "[e_league_proposal_statuses_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 688, + 805, "[e_league_proposal_statuses_order_by!]" ], "where": [ - 678 + 795 ] } ], "e_league_proposal_statuses_by_pk": [ - 675, + 792, { "value": [ - 78, + 80, "String!" ] } ], "e_league_registration_statuses": [ - 696, + 813, { "distinct_on": [ - 711, + 828, "[e_league_registration_statuses_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 709, + 826, "[e_league_registration_statuses_order_by!]" ], "where": [ - 699 + 816 ] } ], "e_league_registration_statuses_aggregate": [ - 697, + 814, { "distinct_on": [ - 711, + 828, "[e_league_registration_statuses_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 709, + 826, "[e_league_registration_statuses_order_by!]" ], "where": [ - 699 + 816 ] } ], "e_league_registration_statuses_by_pk": [ - 696, + 813, { "value": [ - 78, + 80, "String!" ] } ], "e_league_season_statuses": [ - 717, + 834, { "distinct_on": [ - 732, + 849, "[e_league_season_statuses_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 730, + 847, "[e_league_season_statuses_order_by!]" ], "where": [ - 720 + 837 ] } ], "e_league_season_statuses_aggregate": [ - 718, + 835, { "distinct_on": [ - 732, + 849, "[e_league_season_statuses_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 730, + 847, "[e_league_season_statuses_order_by!]" ], "where": [ - 720 + 837 ] } ], "e_league_season_statuses_by_pk": [ - 717, + 834, { "value": [ - 78, + 80, "String!" ] } ], "e_lobby_access": [ - 738, + 855, { "distinct_on": [ - 753, + 870, "[e_lobby_access_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 751, + 868, "[e_lobby_access_order_by!]" ], "where": [ - 741 + 858 ] } ], "e_lobby_access_aggregate": [ - 739, + 856, { "distinct_on": [ - 753, + 870, "[e_lobby_access_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 751, + 868, "[e_lobby_access_order_by!]" ], "where": [ - 741 + 858 ] } ], "e_lobby_access_by_pk": [ - 738, + 855, { "value": [ - 78, + 80, "String!" ] } ], "e_lobby_player_status": [ - 759, + 876, { "distinct_on": [ - 773, + 890, "[e_lobby_player_status_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 771, + 888, "[e_lobby_player_status_order_by!]" ], "where": [ - 762 + 879 ] } ], "e_lobby_player_status_aggregate": [ - 760, + 877, { "distinct_on": [ - 773, + 890, "[e_lobby_player_status_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 771, + 888, "[e_lobby_player_status_order_by!]" ], "where": [ - 762 + 879 ] } ], "e_lobby_player_status_by_pk": [ - 759, + 876, { "value": [ - 78, + 80, "String!" ] } ], "e_map_pool_types": [ - 779, + 896, { "distinct_on": [ - 794, + 911, "[e_map_pool_types_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 792, + 909, "[e_map_pool_types_order_by!]" ], "where": [ - 782 + 899 ] } ], "e_map_pool_types_aggregate": [ - 780, + 897, { "distinct_on": [ - 794, + 911, "[e_map_pool_types_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 792, + 909, "[e_map_pool_types_order_by!]" ], "where": [ - 782 + 899 ] } ], "e_map_pool_types_by_pk": [ - 779, + 896, { "value": [ - 78, + 80, "String!" ] } ], "e_match_clip_visibility": [ - 800, + 917, { "distinct_on": [ - 814, + 931, "[e_match_clip_visibility_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 812, + 929, "[e_match_clip_visibility_order_by!]" ], "where": [ - 803 + 920 ] } ], "e_match_clip_visibility_aggregate": [ - 801, + 918, { "distinct_on": [ - 814, + 931, "[e_match_clip_visibility_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 812, + 929, "[e_match_clip_visibility_order_by!]" ], "where": [ - 803 + 920 ] } ], "e_match_clip_visibility_by_pk": [ - 800, + 917, { "value": [ - 78, + 80, "String!" ] } ], "e_match_map_status": [ - 820, + 937, { "distinct_on": [ - 835, + 952, "[e_match_map_status_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 833, + 950, "[e_match_map_status_order_by!]" ], "where": [ - 823 + 940 ] } ], "e_match_map_status_aggregate": [ - 821, + 938, { "distinct_on": [ - 835, + 952, "[e_match_map_status_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 833, + 950, "[e_match_map_status_order_by!]" ], "where": [ - 823 + 940 ] } ], "e_match_map_status_by_pk": [ - 820, + 937, { "value": [ - 78, + 80, "String!" ] } ], "e_match_mode": [ - 841, + 958, { "distinct_on": [ - 855, + 972, "[e_match_mode_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 853, + 970, "[e_match_mode_order_by!]" ], "where": [ - 844 + 961 ] } ], "e_match_mode_aggregate": [ - 842, + 959, { "distinct_on": [ - 855, + 972, "[e_match_mode_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 853, + 970, "[e_match_mode_order_by!]" ], "where": [ - 844 + 961 ] } ], "e_match_mode_by_pk": [ - 841, + 958, { "value": [ - 78, + 80, "String!" ] } ], "e_match_status": [ - 861, + 978, { "distinct_on": [ - 876, + 993, "[e_match_status_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 874, + 991, "[e_match_status_order_by!]" ], "where": [ - 864 + 981 ] } ], "e_match_status_aggregate": [ - 862, + 979, { "distinct_on": [ - 876, + 993, "[e_match_status_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 874, + 991, "[e_match_status_order_by!]" ], "where": [ - 864 + 981 ] } ], "e_match_status_by_pk": [ - 861, + 978, { "value": [ - 78, + 80, "String!" ] } ], "e_match_types": [ - 882, + 999, { "distinct_on": [ - 897, + 1014, "[e_match_types_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 895, + 1012, "[e_match_types_order_by!]" ], "where": [ - 885 + 1002 ] } ], "e_match_types_aggregate": [ - 883, + 1000, { "distinct_on": [ - 897, + 1014, "[e_match_types_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 895, + 1012, "[e_match_types_order_by!]" ], "where": [ - 885 + 1002 ] } ], "e_match_types_by_pk": [ - 882, + 999, { "value": [ - 78, + 80, "String!" ] } ], "e_notification_types": [ - 903, + 1020, { "distinct_on": [ - 917, + 1034, "[e_notification_types_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 915, + 1032, "[e_notification_types_order_by!]" ], "where": [ - 906 + 1023 ] } ], "e_notification_types_aggregate": [ - 904, + 1021, { "distinct_on": [ - 917, + 1034, "[e_notification_types_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 915, + 1032, "[e_notification_types_order_by!]" ], "where": [ - 906 + 1023 ] } ], "e_notification_types_by_pk": [ - 903, + 1020, { "value": [ - 78, + 80, "String!" ] } ], "e_objective_types": [ - 923, + 1040, { "distinct_on": [ - 937, + 1054, "[e_objective_types_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 935, + 1052, "[e_objective_types_order_by!]" ], "where": [ - 926 + 1043 ] } ], "e_objective_types_aggregate": [ - 924, + 1041, { "distinct_on": [ - 937, + 1054, "[e_objective_types_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 935, + 1052, "[e_objective_types_order_by!]" ], "where": [ - 926 + 1043 ] } ], "e_objective_types_by_pk": [ - 923, + 1040, { "value": [ - 78, + 80, "String!" ] } ], "e_player_roles": [ - 943, + 1060, { "distinct_on": [ - 957, + 1074, "[e_player_roles_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 955, + 1072, "[e_player_roles_order_by!]" ], "where": [ - 946 + 1063 ] } ], "e_player_roles_aggregate": [ - 944, + 1061, { "distinct_on": [ - 957, + 1074, "[e_player_roles_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 955, + 1072, "[e_player_roles_order_by!]" ], "where": [ - 946 + 1063 ] } ], "e_player_roles_by_pk": [ - 943, + 1060, { "value": [ - 78, + 80, "String!" ] } ], "e_plugin_runtimes": [ - 963, + 1080, { "distinct_on": [ - 977, + 1094, "[e_plugin_runtimes_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 975, + 1092, "[e_plugin_runtimes_order_by!]" ], "where": [ - 966 + 1083 ] } ], "e_plugin_runtimes_aggregate": [ - 964, + 1081, { "distinct_on": [ - 977, + 1094, "[e_plugin_runtimes_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 975, + 1092, "[e_plugin_runtimes_order_by!]" ], "where": [ - 966 + 1083 ] } ], "e_plugin_runtimes_by_pk": [ - 963, + 1080, { "value": [ - 78, + 80, "String!" ] } ], "e_ready_settings": [ - 983, + 1100, { "distinct_on": [ - 997, + 1114, "[e_ready_settings_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 995, + 1112, "[e_ready_settings_order_by!]" ], "where": [ - 986 + 1103 ] } ], "e_ready_settings_aggregate": [ - 984, + 1101, { "distinct_on": [ - 997, + 1114, "[e_ready_settings_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 995, + 1112, "[e_ready_settings_order_by!]" ], "where": [ - 986 + 1103 ] } ], "e_ready_settings_by_pk": [ - 983, + 1100, { "value": [ - 78, + 80, "String!" ] } ], "e_sanction_types": [ - 1003, + 1120, { "distinct_on": [ - 1018, + 1135, "[e_sanction_types_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 1016, + 1133, "[e_sanction_types_order_by!]" ], "where": [ - 1006 + 1123 ] } ], "e_sanction_types_aggregate": [ - 1004, + 1121, { "distinct_on": [ - 1018, + 1135, "[e_sanction_types_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 1016, + 1133, "[e_sanction_types_order_by!]" ], "where": [ - 1006 + 1123 ] } ], "e_sanction_types_by_pk": [ - 1003, + 1120, { "value": [ - 78, + 80, "String!" ] } ], "e_scrim_request_statuses": [ - 1024, + 1141, { "distinct_on": [ - 1038, + 1155, "[e_scrim_request_statuses_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 1036, + 1153, "[e_scrim_request_statuses_order_by!]" ], "where": [ - 1027 + 1144 ] } ], "e_scrim_request_statuses_aggregate": [ - 1025, + 1142, { "distinct_on": [ - 1038, + 1155, "[e_scrim_request_statuses_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 1036, + 1153, "[e_scrim_request_statuses_order_by!]" ], "where": [ - 1027 + 1144 ] } ], "e_scrim_request_statuses_by_pk": [ - 1024, + 1141, { "value": [ - 78, + 80, "String!" ] } ], "e_server_types": [ - 1044, + 1161, { "distinct_on": [ - 1058, + 1175, "[e_server_types_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 1056, + 1173, "[e_server_types_order_by!]" ], "where": [ - 1047 + 1164 ] } ], "e_server_types_aggregate": [ - 1045, + 1162, { "distinct_on": [ - 1058, + 1175, "[e_server_types_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 1056, + 1173, "[e_server_types_order_by!]" ], "where": [ - 1047 + 1164 ] } ], "e_server_types_by_pk": [ - 1044, + 1161, { "value": [ - 78, + 80, "String!" ] } ], "e_sides": [ - 1064, + 1181, { "distinct_on": [ - 1078, + 1195, "[e_sides_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 1076, + 1193, "[e_sides_order_by!]" ], "where": [ - 1067 + 1184 ] } ], "e_sides_aggregate": [ - 1065, + 1182, { "distinct_on": [ - 1078, + 1195, "[e_sides_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 1076, + 1193, "[e_sides_order_by!]" ], "where": [ - 1067 + 1184 ] } ], "e_sides_by_pk": [ - 1064, + 1181, { "value": [ - 78, + 80, "String!" ] } ], "e_system_alert_types": [ - 1084, + 1201, { "distinct_on": [ - 1098, + 1215, "[e_system_alert_types_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 1096, + 1213, "[e_system_alert_types_order_by!]" ], "where": [ - 1087 + 1204 ] } ], "e_system_alert_types_aggregate": [ - 1085, + 1202, { "distinct_on": [ - 1098, + 1215, "[e_system_alert_types_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 1096, + 1213, "[e_system_alert_types_order_by!]" ], "where": [ - 1087 + 1204 ] } ], "e_system_alert_types_by_pk": [ - 1084, + 1201, { "value": [ - 78, + 80, "String!" ] } ], "e_team_roles": [ - 1104, + 1221, { "distinct_on": [ - 1119, + 1236, "[e_team_roles_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 1117, + 1234, "[e_team_roles_order_by!]" ], "where": [ - 1107 + 1224 ] } ], "e_team_roles_aggregate": [ - 1105, + 1222, { "distinct_on": [ - 1119, + 1236, "[e_team_roles_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 1117, + 1234, "[e_team_roles_order_by!]" ], "where": [ - 1107 + 1224 ] } ], "e_team_roles_by_pk": [ - 1104, + 1221, { "value": [ - 78, + 80, "String!" ] } ], "e_team_roster_statuses": [ - 1125, + 1242, { "distinct_on": [ - 1139, + 1256, "[e_team_roster_statuses_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 1137, + 1254, "[e_team_roster_statuses_order_by!]" ], "where": [ - 1128 + 1245 ] } ], "e_team_roster_statuses_aggregate": [ - 1126, + 1243, { "distinct_on": [ - 1139, + 1256, "[e_team_roster_statuses_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 1137, + 1254, "[e_team_roster_statuses_order_by!]" ], "where": [ - 1128 + 1245 ] } ], "e_team_roster_statuses_by_pk": [ - 1125, + 1242, { "value": [ - 78, + 80, "String!" ] } ], "e_timeout_settings": [ - 1145, + 1262, { "distinct_on": [ - 1159, + 1276, "[e_timeout_settings_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 1157, + 1274, "[e_timeout_settings_order_by!]" ], "where": [ - 1148 + 1265 ] } ], "e_timeout_settings_aggregate": [ - 1146, + 1263, { "distinct_on": [ - 1159, + 1276, "[e_timeout_settings_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 1157, + 1274, "[e_timeout_settings_order_by!]" ], "where": [ - 1148 + 1265 ] } ], "e_timeout_settings_by_pk": [ - 1145, + 1262, { "value": [ - 78, + 80, "String!" ] } ], "e_tournament_categories": [ - 1165, + 1282, { "distinct_on": [ - 1180, + 1297, "[e_tournament_categories_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 1178, + 1295, "[e_tournament_categories_order_by!]" ], "where": [ - 1168 + 1285 ] } ], "e_tournament_categories_aggregate": [ - 1166, + 1283, { "distinct_on": [ - 1180, + 1297, "[e_tournament_categories_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 1178, + 1295, "[e_tournament_categories_order_by!]" ], "where": [ - 1168 + 1285 ] } ], "e_tournament_categories_by_pk": [ - 1165, + 1282, { "value": [ - 78, + 80, "String!" ] } ], "e_tournament_stage_types": [ - 1186, + 1303, { "distinct_on": [ - 1201, + 1318, "[e_tournament_stage_types_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 1199, + 1316, "[e_tournament_stage_types_order_by!]" ], "where": [ - 1189 + 1306 ] } ], "e_tournament_stage_types_aggregate": [ - 1187, + 1304, { "distinct_on": [ - 1201, + 1318, "[e_tournament_stage_types_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 1199, + 1316, "[e_tournament_stage_types_order_by!]" ], "where": [ - 1189 + 1306 ] } ], "e_tournament_stage_types_by_pk": [ - 1186, + 1303, { "value": [ - 78, + 80, "String!" ] } ], "e_tournament_status": [ - 1207, + 1324, { "distinct_on": [ - 1222, + 1339, "[e_tournament_status_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 1220, + 1337, "[e_tournament_status_order_by!]" ], "where": [ - 1210 + 1327 ] } ], "e_tournament_status_aggregate": [ - 1208, + 1325, { "distinct_on": [ - 1222, + 1339, "[e_tournament_status_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 1220, + 1337, "[e_tournament_status_order_by!]" ], "where": [ - 1210 + 1327 ] } ], "e_tournament_status_by_pk": [ - 1207, + 1324, { "value": [ - 78, + 80, "String!" ] } ], "e_utility_types": [ - 1228, + 1345, { "distinct_on": [ - 1242, + 1359, "[e_utility_types_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 1240, + 1357, "[e_utility_types_order_by!]" ], "where": [ - 1231 + 1348 ] } ], "e_utility_types_aggregate": [ - 1229, + 1346, { "distinct_on": [ - 1242, + 1359, "[e_utility_types_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 1240, + 1357, "[e_utility_types_order_by!]" ], "where": [ - 1231 + 1348 ] } ], "e_utility_types_by_pk": [ - 1228, + 1345, { "value": [ - 78, + 80, "String!" ] } ], "e_veto_pick_types": [ - 1248, + 1365, { "distinct_on": [ - 1262, + 1379, "[e_veto_pick_types_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 1260, + 1377, "[e_veto_pick_types_order_by!]" ], "where": [ - 1251 + 1368 ] } ], "e_veto_pick_types_aggregate": [ - 1249, + 1366, { "distinct_on": [ - 1262, + 1379, "[e_veto_pick_types_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 1260, + 1377, "[e_veto_pick_types_order_by!]" ], "where": [ - 1251 + 1368 ] } ], "e_veto_pick_types_by_pk": [ - 1248, + 1365, { "value": [ - 78, + 80, "String!" ] } ], "e_winning_reasons": [ - 1268, + 1385, { "distinct_on": [ - 1282, + 1399, "[e_winning_reasons_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 1280, + 1397, "[e_winning_reasons_order_by!]" ], "where": [ - 1271 + 1388 ] } ], "e_winning_reasons_aggregate": [ - 1269, + 1386, { "distinct_on": [ - 1282, + 1399, "[e_winning_reasons_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 1280, + 1397, "[e_winning_reasons_order_by!]" ], "where": [ - 1271 + 1388 ] } ], "e_winning_reasons_by_pk": [ - 1268, + 1385, { "value": [ - 78, + 80, "String!" ] } ], "event_match_links": [ - 1288, + 1405, { "distinct_on": [ - 1300, + 1417, "[event_match_links_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 1298, + 1415, "[event_match_links_order_by!]" ], "where": [ - 1291 + 1408 ] } ], "event_match_links_aggregate": [ - 1289, + 1406, { "distinct_on": [ - 1300, + 1417, "[event_match_links_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 1298, + 1415, "[event_match_links_order_by!]" ], "where": [ - 1291 + 1408 ] } ], "event_match_links_by_pk": [ - 1288, + 1405, { "event_id": [ - 4921, + 4993, "uuid!" ], "match_id": [ - 4921, + 4993, "uuid!" ] } ], "event_media": [ - 1306, + 1423, { "distinct_on": [ - 1369, + 1486, "[event_media_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 1326, + 1443, "[event_media_order_by!]" ], "where": [ - 1315 + 1432 ] } ], "event_media_aggregate": [ - 1307, + 1424, { "distinct_on": [ - 1369, + 1486, "[event_media_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 1326, + 1443, "[event_media_order_by!]" ], "where": [ - 1315 + 1432 ] } ], "event_media_by_pk": [ - 1306, + 1423, { "id": [ - 4921, + 4993, "uuid!" ] } ], "event_media_players": [ - 1328, + 1445, { "distinct_on": [ - 1349, + 1466, "[event_media_players_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 1347, + 1464, "[event_media_players_order_by!]" ], "where": [ - 1337 + 1454 ] } ], "event_media_players_aggregate": [ - 1329, + 1446, { "distinct_on": [ - 1349, + 1466, "[event_media_players_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 1347, + 1464, "[event_media_players_order_by!]" ], "where": [ - 1337 + 1454 ] } ], "event_media_players_by_pk": [ - 1328, + 1445, { "media_id": [ - 4921, + 4993, "uuid!" ], "steam_id": [ - 180, + 252, "bigint!" ] } ], "event_organizers": [ - 1389, + 1506, { "distinct_on": [ - 1410, + 1527, "[event_organizers_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 1408, + 1525, "[event_organizers_order_by!]" ], "where": [ - 1398 + 1515 ] } ], "event_organizers_aggregate": [ - 1390, + 1507, { "distinct_on": [ - 1410, + 1527, "[event_organizers_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 1408, + 1525, "[event_organizers_order_by!]" ], "where": [ - 1398 + 1515 ] } ], "event_organizers_by_pk": [ - 1389, + 1506, { "event_id": [ - 4921, + 4993, "uuid!" ], "steam_id": [ - 180, + 252, "bigint!" ] } ], "event_players": [ - 1430, + 1547, { "distinct_on": [ - 1451, + 1568, "[event_players_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 1449, + 1566, "[event_players_order_by!]" ], "where": [ - 1439 + 1556 ] } ], "event_players_aggregate": [ - 1431, + 1548, { "distinct_on": [ - 1451, + 1568, "[event_players_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 1449, + 1566, "[event_players_order_by!]" ], "where": [ - 1439 + 1556 ] } ], "event_players_by_pk": [ - 1430, + 1547, { "event_id": [ - 4921, + 4993, "uuid!" ], "steam_id": [ - 180, + 252, "bigint!" ] } ], "event_teams": [ - 1471, + 1588, { "distinct_on": [ - 1489, + 1606, "[event_teams_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 1487, + 1604, "[event_teams_order_by!]" ], "where": [ - 1478 + 1595 ] } ], "event_teams_aggregate": [ - 1472, + 1589, { "distinct_on": [ - 1489, + 1606, "[event_teams_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 1487, + 1604, "[event_teams_order_by!]" ], "where": [ - 1478 + 1595 ] } ], "event_teams_by_pk": [ - 1471, + 1588, { "event_id": [ - 4921, + 4993, "uuid!" ], "team_id": [ - 4921, + 4993, "uuid!" ] } ], "event_tournaments": [ - 1495, + 1612, { "distinct_on": [ - 1513, + 1630, "[event_tournaments_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 1511, + 1628, "[event_tournaments_order_by!]" ], "where": [ - 1502 + 1619 ] } ], "event_tournaments_aggregate": [ - 1496, + 1613, { "distinct_on": [ - 1513, + 1630, "[event_tournaments_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 1511, + 1628, "[event_tournaments_order_by!]" ], "where": [ - 1502 + 1619 ] } ], "event_tournaments_by_pk": [ - 1495, + 1612, { "event_id": [ - 4921, + 4993, "uuid!" ], "tournament_id": [ - 4921, + 4993, "uuid!" ] } ], "events": [ - 1519, + 1636, { "distinct_on": [ - 1534, + 1651, "[events_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 1532, + 1649, "[events_order_by!]" ], "where": [ - 1523 + 1640 ] } ], "events_aggregate": [ - 1520, + 1637, { "distinct_on": [ - 1534, + 1651, "[events_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 1532, + 1649, "[events_order_by!]" ], "where": [ - 1523 + 1640 ] } ], "events_by_pk": [ - 1519, + 1636, { "id": [ - 4921, + 4993, "uuid!" ] } ], "friends": [ - 1549, + 1666, { "distinct_on": [ - 1563, + 1680, "[friends_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 1561, + 1678, "[friends_order_by!]" ], "where": [ - 1553 + 1670 ] } ], "friends_aggregate": [ - 1550, + 1667, { "distinct_on": [ - 1563, + 1680, "[friends_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 1561, + 1678, "[friends_order_by!]" ], "where": [ - 1553 + 1670 ] } ], "friends_by_pk": [ - 1549, + 1666, { "other_player_steam_id": [ - 180, + 252, "bigint!" ], "player_steam_id": [ - 180, + 252, "bigint!" ] } ], "game_server_nodes": [ - 1576, + 1693, { "distinct_on": [ - 1605, + 1722, "[game_server_nodes_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 1602, + 1719, "[game_server_nodes_order_by!]" ], "where": [ - 1588 + 1705 ] } ], "game_server_nodes_aggregate": [ - 1577, + 1694, { "distinct_on": [ - 1605, + 1722, "[game_server_nodes_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 1602, + 1719, "[game_server_nodes_order_by!]" ], "where": [ - 1588 + 1705 ] } ], "game_server_nodes_by_pk": [ - 1576, + 1693, { "id": [ - 78, + 80, "String!" ] } ], "game_versions": [ - 1627, + 1744, { "distinct_on": [ - 1647, + 1764, "[game_versions_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 1644, + 1761, "[game_versions_order_by!]" ], "where": [ - 1632 + 1749 ] } ], "game_versions_aggregate": [ - 1628, + 1745, { "distinct_on": [ - 1647, + 1764, "[game_versions_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 1644, + 1761, "[game_versions_order_by!]" ], "where": [ - 1632 + 1749 ] } ], "game_versions_by_pk": [ - 1627, + 1744, { "build_id": [ - 38, + 40, "Int!" ] } ], "gamedata_signature_validations": [ - 1660, + 1777, { "distinct_on": [ - 1679, + 1796, "[gamedata_signature_validations_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 1676, + 1793, "[gamedata_signature_validations_order_by!]" ], "where": [ - 1665 + 1782 ] } ], "gamedata_signature_validations_aggregate": [ - 1661, + 1778, { "distinct_on": [ - 1679, + 1796, "[gamedata_signature_validations_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 1676, + 1793, "[gamedata_signature_validations_order_by!]" ], "where": [ - 1665 + 1782 ] } ], "gamedata_signature_validations_by_pk": [ - 1660, + 1777, { "id": [ - 4921, + 4993, "uuid!" ] } @@ -137507,6909 +139251,6856 @@ export default { 1 ], "getConnectionStats": [ - 11 + 13 ], "getCurrentLocks": [ - 44 + 46 ], "getDatabaseStats": [ - 16 + 18 ], "getDedicatedServerInfo": [ - 18 + 20 ], "getDedicatedServerPlayers": [ - 68, + 70, { "serverId": [ - 78, + 80, "String!" ] } ], "getHighlightPresetAvailability": [ - 34, + 36, { "match_map_id": [ - 4921, + 4993, "uuid!" ], "target_steam_id": [ - 78, + 80, "String!" ] } ], "getIndexIOStats": [ - 36, + 38, { "schemas": [ - 78, + 80, "[String!]" ] } ], "getIndexStats": [ - 37, + 39, { "schemas": [ - 78, + 80, "[String!]" ] } ], "getNodeStats": [ - 50, + 52, { "node": [ - 78, + 80, "String!" ] } ], "getQueryDetail": [ - 56, + 58, { "queryid": [ - 78, + 80, "String!" ] } ], "getQueryStats": [ - 57 + 59 ], "getSchemas": [ - 78 + 80 ], "getServiceStats": [ - 54 + 56 ], "getStorageStats": [ - 76, + 78, { "schemas": [ - 78, + 80, "[String!]" ] } ], "getTableIOStats": [ - 82, + 84, { "schemas": [ - 78, + 80, "[String!]" ] } ], "getTableStats": [ - 84, + 86, { "schemas": [ - 78, + 80, "[String!]" ] } ], "getTimescaleStats": [ - 89 + 91 ], "get_event_leaderboard": [ - 1703, + 1820, { "args": [ - 1692, + 1809, "get_event_leaderboard_args!" ], "distinct_on": [ - 1714, + 1831, "[leaderboard_entries_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 1713, + 1830, "[leaderboard_entries_order_by!]" ], "where": [ - 1707 + 1824 ] } ], "get_event_leaderboard_aggregate": [ - 1704, + 1821, { "args": [ - 1692, + 1809, "get_event_leaderboard_args!" ], "distinct_on": [ - 1714, + 1831, "[leaderboard_entries_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 1713, + 1830, "[leaderboard_entries_order_by!]" ], "where": [ - 1707 + 1824 ] } ], "get_leaderboard": [ - 1703, + 1820, { "args": [ - 1693, + 1810, "get_leaderboard_args!" ], "distinct_on": [ - 1714, + 1831, "[leaderboard_entries_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 1713, + 1830, "[leaderboard_entries_order_by!]" ], "where": [ - 1707 + 1824 ] } ], "get_leaderboard_aggregate": [ - 1704, + 1821, { "args": [ - 1693, + 1810, "get_leaderboard_args!" ], "distinct_on": [ - 1714, + 1831, "[leaderboard_entries_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 1713, + 1830, "[leaderboard_entries_order_by!]" ], "where": [ - 1707 + 1824 ] } ], "get_league_season_leaderboard": [ - 1703, + 1820, { "args": [ - 1694, + 1811, "get_league_season_leaderboard_args!" ], "distinct_on": [ - 1714, + 1831, "[leaderboard_entries_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 1713, + 1830, "[leaderboard_entries_order_by!]" ], "where": [ - 1707 + 1824 ] } ], "get_league_season_leaderboard_aggregate": [ - 1704, + 1821, { "args": [ - 1694, + 1811, "get_league_season_leaderboard_args!" ], "distinct_on": [ - 1714, + 1831, "[leaderboard_entries_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 1713, + 1830, "[leaderboard_entries_order_by!]" ], "where": [ - 1707 + 1824 ] } ], "get_player_leaderboard_rank": [ - 3270, + 3387, { "args": [ - 1695, + 1812, "get_player_leaderboard_rank_args!" ], "distinct_on": [ - 3281, + 3398, "[player_leaderboard_rank_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 3280, + 3397, "[player_leaderboard_rank_order_by!]" ], "where": [ - 3274 + 3391 ] } ], "get_player_leaderboard_rank_aggregate": [ - 3271, + 3388, { "args": [ - 1695, + 1812, "get_player_leaderboard_rank_args!" ], "distinct_on": [ - 3281, + 3398, "[player_leaderboard_rank_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 3280, + 3397, "[player_leaderboard_rank_order_by!]" ], "where": [ - 3274 + 3391 ] } ], "leaderboard_entries": [ - 1703, + 1820, { "distinct_on": [ - 1714, + 1831, "[leaderboard_entries_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 1713, + 1830, "[leaderboard_entries_order_by!]" ], "where": [ - 1707 + 1824 ] } ], "leaderboard_entries_aggregate": [ - 1704, + 1821, { "distinct_on": [ - 1714, + 1831, "[leaderboard_entries_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 1713, + 1830, "[leaderboard_entries_order_by!]" ], "where": [ - 1707 + 1824 ] } ], "league_divisions": [ - 1727, + 1844, { "distinct_on": [ - 1742, + 1859, "[league_divisions_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 1740, + 1857, "[league_divisions_order_by!]" ], "where": [ - 1731 + 1848 ] } ], "league_divisions_aggregate": [ - 1728, + 1845, { "distinct_on": [ - 1742, + 1859, "[league_divisions_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 1740, + 1857, "[league_divisions_order_by!]" ], "where": [ - 1731 + 1848 ] } ], "league_divisions_by_pk": [ - 1727, + 1844, { "id": [ - 4921, + 4993, "uuid!" ] } ], "league_match_weeks": [ - 1755, + 1872, { "distinct_on": [ - 1776, + 1893, "[league_match_weeks_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 1774, + 1891, "[league_match_weeks_order_by!]" ], "where": [ - 1764 + 1881 ] } ], "league_match_weeks_aggregate": [ - 1756, + 1873, { "distinct_on": [ - 1776, + 1893, "[league_match_weeks_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 1774, + 1891, "[league_match_weeks_order_by!]" ], "where": [ - 1764 + 1881 ] } ], "league_match_weeks_by_pk": [ - 1755, + 1872, { "id": [ - 4921, + 4993, "uuid!" ] } ], "league_relegation_playoffs": [ - 1796, + 1913, { "distinct_on": [ - 1817, + 1934, "[league_relegation_playoffs_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 1815, + 1932, "[league_relegation_playoffs_order_by!]" ], "where": [ - 1805 + 1922 ] } ], "league_relegation_playoffs_aggregate": [ - 1797, + 1914, { "distinct_on": [ - 1817, + 1934, "[league_relegation_playoffs_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 1815, + 1932, "[league_relegation_playoffs_order_by!]" ], "where": [ - 1805 + 1922 ] } ], "league_relegation_playoffs_by_pk": [ - 1796, + 1913, { "id": [ - 4921, + 4993, "uuid!" ] } ], "league_scheduling_proposals": [ - 1837, + 1954, { "distinct_on": [ - 1858, + 1975, "[league_scheduling_proposals_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 1856, + 1973, "[league_scheduling_proposals_order_by!]" ], "where": [ - 1846 + 1963 ] } ], "league_scheduling_proposals_aggregate": [ - 1838, + 1955, { "distinct_on": [ - 1858, + 1975, "[league_scheduling_proposals_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 1856, + 1973, "[league_scheduling_proposals_order_by!]" ], "where": [ - 1846 + 1963 ] } ], "league_scheduling_proposals_by_pk": [ - 1837, + 1954, { "id": [ - 4921, + 4993, "uuid!" ] } ], "league_season_divisions": [ - 1878, + 1995, { "distinct_on": [ - 1897, + 2014, "[league_season_divisions_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 1895, + 2012, "[league_season_divisions_order_by!]" ], "where": [ - 1885 + 2002 ] } ], "league_season_divisions_aggregate": [ - 1879, + 1996, { "distinct_on": [ - 1897, + 2014, "[league_season_divisions_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 1895, + 2012, "[league_season_divisions_order_by!]" ], "where": [ - 1885 + 2002 ] } ], "league_season_divisions_by_pk": [ - 1878, + 1995, { "id": [ - 4921, + 4993, "uuid!" ] } ], "league_seasons": [ - 1903, + 2020, { "distinct_on": [ - 1923, + 2040, "[league_seasons_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 1920, + 2037, "[league_seasons_order_by!]" ], "where": [ - 1908 + 2025 ] } ], "league_seasons_aggregate": [ - 1904, + 2021, { "distinct_on": [ - 1923, + 2040, "[league_seasons_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 1920, + 2037, "[league_seasons_order_by!]" ], "where": [ - 1908 + 2025 ] } ], "league_seasons_by_pk": [ - 1903, + 2020, { "id": [ - 4921, + 4993, "uuid!" ] } ], "league_team_movements": [ - 1936, + 2053, { "distinct_on": [ - 1957, + 2074, "[league_team_movements_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 1955, + 2072, "[league_team_movements_order_by!]" ], "where": [ - 1945 + 2062 ] } ], "league_team_movements_aggregate": [ - 1937, + 2054, { "distinct_on": [ - 1957, + 2074, "[league_team_movements_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 1955, + 2072, "[league_team_movements_order_by!]" ], "where": [ - 1945 + 2062 ] } ], "league_team_movements_by_pk": [ - 1936, + 2053, { "id": [ - 4921, + 4993, "uuid!" ] } ], "league_team_rosters": [ - 1977, + 2094, { "distinct_on": [ - 1998, + 2115, "[league_team_rosters_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 1996, + 2113, "[league_team_rosters_order_by!]" ], "where": [ - 1986 + 2103 ] } ], "league_team_rosters_aggregate": [ - 1978, + 2095, { "distinct_on": [ - 1998, + 2115, "[league_team_rosters_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 1996, + 2113, "[league_team_rosters_order_by!]" ], "where": [ - 1986 + 2103 ] } ], "league_team_rosters_by_pk": [ - 1977, + 2094, { "league_team_season_id": [ - 4921, + 4993, "uuid!" ], "player_steam_id": [ - 180, + 252, "bigint!" ] } ], "league_team_seasons": [ - 2018, + 2135, { "distinct_on": [ - 2040, + 2157, "[league_team_seasons_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2038, + 2155, "[league_team_seasons_order_by!]" ], "where": [ - 2027 + 2144 ] } ], "league_team_seasons_aggregate": [ - 2019, + 2136, { "distinct_on": [ - 2040, + 2157, "[league_team_seasons_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2038, + 2155, "[league_team_seasons_order_by!]" ], "where": [ - 2027 + 2144 ] } ], "league_team_seasons_by_pk": [ - 2018, + 2135, { "id": [ - 4921, + 4993, "uuid!" ] } ], "league_teams": [ - 2060, + 2177, { "distinct_on": [ - 2073, + 2190, "[league_teams_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2071, + 2188, "[league_teams_order_by!]" ], "where": [ - 2063 + 2180 ] } ], "league_teams_aggregate": [ - 2061, + 2178, { "distinct_on": [ - 2073, + 2190, "[league_teams_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2071, + 2188, "[league_teams_order_by!]" ], "where": [ - 2063 + 2180 ] } ], "league_teams_by_pk": [ - 2060, + 2177, { "id": [ - 4921, + 4993, "uuid!" ] } ], "listServerFiles": [ - 28, + 30, { "node_id": [ - 78, + 80, "String!" ], "path": [ - 78 + 80 ], "server_id": [ - 78 + 80 ] } ], "lobbies": [ - 2079, + 2196, { "distinct_on": [ - 2092, + 2209, "[lobbies_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2090, + 2207, "[lobbies_order_by!]" ], "where": [ - 2082 + 2199 ] } ], "lobbies_aggregate": [ - 2080, + 2197, { "distinct_on": [ - 2092, + 2209, "[lobbies_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2090, + 2207, "[lobbies_order_by!]" ], "where": [ - 2082 + 2199 ] } ], "lobbies_by_pk": [ - 2079, + 2196, { "id": [ - 4921, + 4993, "uuid!" ] } ], "lobby_players": [ - 2098, + 2215, { "distinct_on": [ - 2121, + 2238, "[lobby_players_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2119, + 2236, "[lobby_players_order_by!]" ], "where": [ - 2109 + 2226 ] } ], "lobby_players_aggregate": [ - 2099, + 2216, { "distinct_on": [ - 2121, + 2238, "[lobby_players_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2119, + 2236, "[lobby_players_order_by!]" ], "where": [ - 2109 + 2226 ] } ], "lobby_players_by_pk": [ - 2098, + 2215, { "lobby_id": [ - 4921, + 4993, "uuid!" ], "steam_id": [ - 180, + 252, "bigint!" ] } ], "map_pools": [ - 2143, + 2260, { "distinct_on": [ - 2156, + 2273, "[map_pools_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2154, + 2271, "[map_pools_order_by!]" ], "where": [ - 2146 + 2263 ] } ], "map_pools_aggregate": [ - 2144, + 2261, { "distinct_on": [ - 2156, + 2273, "[map_pools_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2154, + 2271, "[map_pools_order_by!]" ], "where": [ - 2146 + 2263 ] } ], "map_pools_by_pk": [ - 2143, + 2260, { "id": [ - 4921, + 4993, "uuid!" ] } ], "maps": [ - 2162, + 2279, { "distinct_on": [ - 2183, + 2300, "[maps_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2181, + 2298, "[maps_order_by!]" ], "where": [ - 2171 + 2288 ] } ], "maps_aggregate": [ - 2163, + 2280, { "distinct_on": [ - 2183, + 2300, "[maps_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2181, + 2298, "[maps_order_by!]" ], "where": [ - 2171 + 2288 ] } ], "maps_by_pk": [ - 2162, + 2279, { "id": [ - 4921, + 4993, "uuid!" ] } ], "match_clips": [ - 2191, + 2308, { "distinct_on": [ - 2213, + 2330, "[match_clips_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2211, + 2328, "[match_clips_order_by!]" ], "where": [ - 2200 + 2317 ] } ], "match_clips_aggregate": [ - 2192, + 2309, { "distinct_on": [ - 2213, + 2330, "[match_clips_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2211, + 2328, "[match_clips_order_by!]" ], "where": [ - 2200 + 2317 ] } ], "match_clips_by_pk": [ - 2191, + 2308, { "id": [ - 4921, + 4993, "uuid!" ] } ], "match_demo_sessions": [ - 2233, + 2350, { "distinct_on": [ - 2259, + 2376, "[match_demo_sessions_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2256, + 2373, "[match_demo_sessions_order_by!]" ], "where": [ - 2243 + 2360 ] } ], "match_demo_sessions_aggregate": [ - 2234, + 2351, { "distinct_on": [ - 2259, + 2376, "[match_demo_sessions_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2256, + 2373, "[match_demo_sessions_order_by!]" ], "where": [ - 2243 + 2360 ] } ], "match_demo_sessions_by_pk": [ - 2233, + 2350, { "id": [ - 4921, + 4993, "uuid!" ] } ], "match_lineup_players": [ - 2279, + 2396, { "distinct_on": [ - 2302, + 2419, "[match_lineup_players_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2300, + 2417, "[match_lineup_players_order_by!]" ], "where": [ - 2290 + 2407 ] } ], "match_lineup_players_aggregate": [ - 2280, + 2397, { "distinct_on": [ - 2302, + 2419, "[match_lineup_players_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2300, + 2417, "[match_lineup_players_order_by!]" ], "where": [ - 2290 + 2407 ] } ], "match_lineup_players_by_pk": [ - 2279, + 2396, { "id": [ - 4921, + 4993, "uuid!" ] } ], "match_lineups": [ - 2324, + 2441, { "distinct_on": [ - 2346, + 2463, "[match_lineups_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2344, + 2461, "[match_lineups_order_by!]" ], "where": [ - 2333 + 2450 ] } ], "match_lineups_aggregate": [ - 2325, + 2442, { "distinct_on": [ - 2346, + 2463, "[match_lineups_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2344, + 2461, "[match_lineups_order_by!]" ], "where": [ - 2333 + 2450 ] } ], "match_lineups_by_pk": [ - 2324, + 2441, { "id": [ - 4921, + 4993, "uuid!" ] } ], "match_map_demos": [ - 2366, + 2483, { "distinct_on": [ - 2395, + 2512, "[match_map_demos_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2392, + 2509, "[match_map_demos_order_by!]" ], "where": [ - 2378 + 2495 ] } ], "match_map_demos_aggregate": [ - 2367, + 2484, { "distinct_on": [ - 2395, + 2512, "[match_map_demos_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2392, + 2509, "[match_map_demos_order_by!]" ], "where": [ - 2378 + 2495 ] } ], "match_map_demos_by_pk": [ - 2366, + 2483, { "id": [ - 4921, + 4993, "uuid!" ] } ], "match_map_rounds": [ - 2417, + 2534, { "distinct_on": [ - 2438, + 2555, "[match_map_rounds_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2436, + 2553, "[match_map_rounds_order_by!]" ], "where": [ - 2426 + 2543 ] } ], "match_map_rounds_aggregate": [ - 2418, + 2535, { "distinct_on": [ - 2438, + 2555, "[match_map_rounds_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2436, + 2553, "[match_map_rounds_order_by!]" ], "where": [ - 2426 + 2543 ] } ], "match_map_rounds_by_pk": [ - 2417, + 2534, { "id": [ - 4921, + 4993, "uuid!" ] } ], "match_map_veto_picks": [ - 2458, + 2575, { "distinct_on": [ - 2476, + 2593, "[match_map_veto_picks_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2474, + 2591, "[match_map_veto_picks_order_by!]" ], "where": [ - 2465 + 2582 ] } ], "match_map_veto_picks_aggregate": [ - 2459, + 2576, { "distinct_on": [ - 2476, + 2593, "[match_map_veto_picks_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2474, + 2591, "[match_map_veto_picks_order_by!]" ], "where": [ - 2465 + 2582 ] } ], "match_map_veto_picks_by_pk": [ - 2458, + 2575, { "id": [ - 4921, + 4993, "uuid!" ] } ], "match_maps": [ - 2482, + 2599, { "distinct_on": [ - 2504, + 2621, "[match_maps_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2502, + 2619, "[match_maps_order_by!]" ], "where": [ - 2491 + 2608 ] } ], "match_maps_aggregate": [ - 2483, + 2600, { "distinct_on": [ - 2504, + 2621, "[match_maps_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2502, + 2619, "[match_maps_order_by!]" ], "where": [ - 2491 + 2608 ] } ], "match_maps_by_pk": [ - 2482, + 2599, { "id": [ - 4921, + 4993, "uuid!" ] } ], "match_options": [ - 2524, + 2641, { "distinct_on": [ - 2539, + 2656, "[match_options_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2537, + 2654, "[match_options_order_by!]" ], "where": [ - 2528 + 2645 ] } ], "match_options_aggregate": [ - 2525, + 2642, { "distinct_on": [ - 2539, + 2656, "[match_options_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2537, + 2654, "[match_options_order_by!]" ], "where": [ - 2528 + 2645 ] } ], "match_options_by_pk": [ - 2524, + 2641, { "id": [ - 4921, + 4993, "uuid!" ] } ], "match_region_veto_picks": [ - 2552, + 2669, { "distinct_on": [ - 2570, + 2687, "[match_region_veto_picks_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2568, + 2685, "[match_region_veto_picks_order_by!]" ], "where": [ - 2559 + 2676 ] } ], "match_region_veto_picks_aggregate": [ - 2553, + 2670, { "distinct_on": [ - 2570, + 2687, "[match_region_veto_picks_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2568, + 2685, "[match_region_veto_picks_order_by!]" ], "where": [ - 2559 + 2676 ] } ], "match_region_veto_picks_by_pk": [ - 2552, + 2669, { "id": [ - 4921, + 4993, "uuid!" ] } ], "match_streams": [ - 2576, + 2693, { "distinct_on": [ - 2604, + 2721, "[match_streams_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2601, + 2718, "[match_streams_order_by!]" ], "where": [ - 2588 + 2705 ] } ], "match_streams_aggregate": [ - 2577, + 2694, { "distinct_on": [ - 2604, + 2721, "[match_streams_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2601, + 2718, "[match_streams_order_by!]" ], "where": [ - 2588 + 2705 ] } ], "match_streams_by_pk": [ - 2576, + 2693, { "id": [ - 4921, + 4993, "uuid!" ] } ], "match_type_cfgs": [ - 2626, + 2743, { "distinct_on": [ - 2638, + 2755, "[match_type_cfgs_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2636, + 2753, "[match_type_cfgs_order_by!]" ], "where": [ - 2629 + 2746 ] } ], "match_type_cfgs_aggregate": [ - 2627, + 2744, { "distinct_on": [ - 2638, + 2755, "[match_type_cfgs_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2636, + 2753, "[match_type_cfgs_order_by!]" ], "where": [ - 2629 + 2746 ] } ], "match_type_cfgs_by_pk": [ - 2626, + 2743, { "type": [ - 618, + 735, "e_game_cfg_types_enum!" ] } ], "matches": [ - 2644, + 2761, { "distinct_on": [ - 2666, + 2783, "[matches_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2664, + 2781, "[matches_order_by!]" ], "where": [ - 2653 + 2770 ] } ], "matches_aggregate": [ - 2645, + 2762, { "distinct_on": [ - 2666, + 2783, "[matches_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2664, + 2781, "[matches_order_by!]" ], "where": [ - 2653 + 2770 ] } ], "matches_by_pk": [ - 2644, + 2761, { "id": [ - 4921, + 4993, "uuid!" ] } ], "me": [ - 45 + 47 ], "migration_hashes_hashes": [ - 2686, + 2803, { "distinct_on": [ - 2698, + 2815, "[migration_hashes_hashes_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2696, + 2813, "[migration_hashes_hashes_order_by!]" ], "where": [ - 2689 + 2806 ] } ], "migration_hashes_hashes_aggregate": [ - 2687, + 2804, { "distinct_on": [ - 2698, + 2815, "[migration_hashes_hashes_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2696, + 2813, "[migration_hashes_hashes_order_by!]" ], "where": [ - 2689 + 2806 ] } ], "migration_hashes_hashes_by_pk": [ - 2686, + 2803, { "name": [ - 78, + 80, "String!" ] } ], "my_friends": [ - 2704, + 2821, { "distinct_on": [ - 2729, + 2846, "[my_friends_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2727, + 2844, "[my_friends_order_by!]" ], "where": [ - 2716 + 2833 ] } ], "my_friends_aggregate": [ - 2705, + 2822, { "distinct_on": [ - 2729, + 2846, "[my_friends_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2727, + 2844, "[my_friends_order_by!]" ], "where": [ - 2716 + 2833 ] } ], "newsPostAdmin": [ - 48, + 50, { "id": [ - 4921, + 4993, "uuid!" ] } ], "newsPostsAdmin": [ - 48 + 50 ], "news_articles": [ - 2750, + 2867, { "distinct_on": [ - 2764, + 2881, "[news_articles_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2762, + 2879, "[news_articles_order_by!]" ], "where": [ - 2754 + 2871 ] } ], "news_articles_aggregate": [ - 2751, + 2868, { "distinct_on": [ - 2764, + 2881, "[news_articles_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2762, + 2879, "[news_articles_order_by!]" ], "where": [ - 2754 + 2871 ] } ], "news_articles_by_pk": [ - 2750, + 2867, { "id": [ - 4921, + 4993, "uuid!" ] } ], "notifications": [ - 2777, + 2894, { "distinct_on": [ - 2805, + 2922, "[notifications_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2802, + 2919, "[notifications_order_by!]" ], "where": [ - 2789 + 2906 ] } ], "notifications_aggregate": [ - 2778, + 2895, { "distinct_on": [ - 2805, + 2922, "[notifications_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2802, + 2919, "[notifications_order_by!]" ], "where": [ - 2789 + 2906 ] } ], "notifications_by_pk": [ - 2777, + 2894, { "id": [ - 4921, + 4993, "uuid!" ] } ], "pending_match_import_players": [ - 2830, + 2947, { "distinct_on": [ - 2851, + 2968, "[pending_match_import_players_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2849, + 2966, "[pending_match_import_players_order_by!]" ], "where": [ - 2839 + 2956 ] } ], "pending_match_import_players_aggregate": [ - 2831, + 2948, { "distinct_on": [ - 2851, + 2968, "[pending_match_import_players_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2849, + 2966, "[pending_match_import_players_order_by!]" ], "where": [ - 2839 + 2956 ] } ], "pending_match_import_players_by_pk": [ - 2830, + 2947, { "steam_id": [ - 180, + 252, "bigint!" ], "valve_match_id": [ - 2827, + 2944, "numeric!" ] } ], "pending_match_imports": [ - 2871, + 2988, { "distinct_on": [ - 2886, + 3003, "[pending_match_imports_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2884, + 3001, "[pending_match_imports_order_by!]" ], "where": [ - 2875 + 2992 ] } ], "pending_match_imports_aggregate": [ - 2872, + 2989, { "distinct_on": [ - 2886, + 3003, "[pending_match_imports_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2884, + 3001, "[pending_match_imports_order_by!]" ], "where": [ - 2875 + 2992 ] } ], "pending_match_imports_by_pk": [ - 2871, + 2988, { "valve_match_id": [ - 2827, + 2944, "numeric!" ] } ], "player_aim_stats_demo": [ - 2899, + 3016, { "distinct_on": [ - 2913, + 3030, "[player_aim_stats_demo_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2911, + 3028, "[player_aim_stats_demo_order_by!]" ], "where": [ - 2903 + 3020 ] } ], "player_aim_stats_demo_aggregate": [ - 2900, + 3017, { "distinct_on": [ - 2913, + 3030, "[player_aim_stats_demo_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2911, + 3028, "[player_aim_stats_demo_order_by!]" ], "where": [ - 2903 + 3020 ] } ], "player_aim_stats_demo_by_pk": [ - 2899, + 3016, { "attacker_steam_id": [ - 180, + 252, "bigint!" ], "match_map_id": [ - 4921, + 4993, "uuid!" ] } ], "player_aim_weapon_stats": [ - 2926, + 3043, { "distinct_on": [ - 2947, + 3064, "[player_aim_weapon_stats_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2945, + 3062, "[player_aim_weapon_stats_order_by!]" ], "where": [ - 2935 + 3052 ] } ], "player_aim_weapon_stats_aggregate": [ - 2927, + 3044, { "distinct_on": [ - 2947, + 3064, "[player_aim_weapon_stats_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2945, + 3062, "[player_aim_weapon_stats_order_by!]" ], "where": [ - 2935 + 3052 ] } ], "player_aim_weapon_stats_by_pk": [ - 2926, + 3043, { "match_map_id": [ - 4921, + 4993, "uuid!" ], "steam_id": [ - 180, + 252, "bigint!" ], "weapon_class": [ - 78, + 80, "String!" ] } ], "player_assists": [ - 2967, + 3084, { "distinct_on": [ - 2990, + 3107, "[player_assists_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2988, + 3105, "[player_assists_order_by!]" ], "where": [ - 2978 + 3095 ] } ], "player_assists_aggregate": [ - 2968, + 3085, { "distinct_on": [ - 2990, + 3107, "[player_assists_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2988, + 3105, "[player_assists_order_by!]" ], "where": [ - 2978 + 3095 ] } ], "player_assists_by_pk": [ - 2967, + 3084, { "attacked_steam_id": [ - 180, + 252, "bigint!" ], "attacker_steam_id": [ - 180, + 252, "bigint!" ], "match_map_id": [ - 4921, + 4993, "uuid!" ], "time": [ - 4376, + 4493, "timestamptz!" ] } ], "player_career_stats_v": [ - 3012, + 3129, { "distinct_on": [ - 3020, + 3137, "[player_career_stats_v_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 3019, + 3136, "[player_career_stats_v_order_by!]" ], "where": [ - 3016 + 3133 ] } ], "player_career_stats_v_aggregate": [ - 3013, + 3130, { "distinct_on": [ - 3020, + 3137, "[player_career_stats_v_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 3019, + 3136, "[player_career_stats_v_order_by!]" ], "where": [ - 3016 + 3133 ] } ], "player_damages": [ - 3030, + 3147, { "distinct_on": [ - 3051, + 3168, "[player_damages_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 3049, + 3166, "[player_damages_order_by!]" ], "where": [ - 3039 + 3156 ] } ], "player_damages_aggregate": [ - 3031, + 3148, { "distinct_on": [ - 3051, + 3168, "[player_damages_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 3049, + 3166, "[player_damages_order_by!]" ], "where": [ - 3039 + 3156 ] } ], "player_damages_by_pk": [ - 3030, + 3147, { "id": [ - 4921, + 4993, "uuid!" ], "match_map_id": [ - 4921, + 4993, "uuid!" ], "time": [ - 4376, + 4493, "timestamptz!" ] } ], "player_elo": [ - 3071, + 3188, { "distinct_on": [ - 3085, + 3202, "[player_elo_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 3083, + 3200, "[player_elo_order_by!]" ], "where": [ - 3075 + 3192 ] } ], "player_elo_aggregate": [ - 3072, + 3189, { "distinct_on": [ - 3085, + 3202, "[player_elo_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 3083, + 3200, "[player_elo_order_by!]" ], "where": [ - 3075 + 3192 ] } ], "player_elo_by_pk": [ - 3071, + 3188, { "match_id": [ - 4921, + 4993, "uuid!" ], "steam_id": [ - 180, + 252, "bigint!" ], "type": [ - 887, + 1004, "e_match_types_enum!" ] } ], "player_faceit_rank_history": [ - 3098, + 3215, { "distinct_on": [ - 3119, + 3236, "[player_faceit_rank_history_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 3117, + 3234, "[player_faceit_rank_history_order_by!]" ], "where": [ - 3107 + 3224 ] } ], "player_faceit_rank_history_aggregate": [ - 3099, + 3216, { "distinct_on": [ - 3119, + 3236, "[player_faceit_rank_history_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 3117, + 3234, "[player_faceit_rank_history_order_by!]" ], "where": [ - 3107 + 3224 ] } ], "player_faceit_rank_history_by_pk": [ - 3098, + 3215, { "id": [ - 4921, + 4993, "uuid!" ] } ], "player_flashes": [ - 3139, + 3256, { "distinct_on": [ - 3162, + 3279, "[player_flashes_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 3160, + 3277, "[player_flashes_order_by!]" ], "where": [ - 3150 + 3267 ] } ], "player_flashes_aggregate": [ - 3140, + 3257, { "distinct_on": [ - 3162, + 3279, "[player_flashes_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 3160, + 3277, "[player_flashes_order_by!]" ], "where": [ - 3150 + 3267 ] } ], "player_flashes_by_pk": [ - 3139, + 3256, { "attacked_steam_id": [ - 180, + 252, "bigint!" ], "attacker_steam_id": [ - 180, + 252, "bigint!" ], "match_map_id": [ - 4921, + 4993, "uuid!" ], "time": [ - 4376, + 4493, "timestamptz!" ] } ], "player_kills": [ - 3184, + 3301, { "distinct_on": [ - 3248, + 3365, "[player_kills_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 3246, + 3363, "[player_kills_order_by!]" ], "where": [ - 3195 + 3312 ] } ], "player_kills_aggregate": [ - 3185, + 3302, { "distinct_on": [ - 3248, + 3365, "[player_kills_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 3246, + 3363, "[player_kills_order_by!]" ], "where": [ - 3195 + 3312 ] } ], "player_kills_by_pk": [ - 3184, + 3301, { "attacked_steam_id": [ - 180, + 252, "bigint!" ], "attacker_steam_id": [ - 180, + 252, "bigint!" ], "match_map_id": [ - 4921, + 4993, "uuid!" ], "time": [ - 4376, + 4493, "timestamptz!" ] } ], "player_kills_by_weapon": [ - 3196, + 3313, { "distinct_on": [ - 3217, + 3334, "[player_kills_by_weapon_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 3215, + 3332, "[player_kills_by_weapon_order_by!]" ], "where": [ - 3205 + 3322 ] } ], "player_kills_by_weapon_aggregate": [ - 3197, + 3314, { "distinct_on": [ - 3217, + 3334, "[player_kills_by_weapon_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 3215, + 3332, "[player_kills_by_weapon_order_by!]" ], "where": [ - 3205 + 3322 ] } ], "player_kills_by_weapon_by_pk": [ - 3196, + 3313, { "player_steam_id": [ - 180, + 252, "bigint!" ], "with": [ - 78, + 80, "String!" ] } ], "player_leaderboard_rank": [ - 3270, + 3387, { "distinct_on": [ - 3281, + 3398, "[player_leaderboard_rank_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 3280, + 3397, "[player_leaderboard_rank_order_by!]" ], "where": [ - 3274 + 3391 ] } ], "player_leaderboard_rank_aggregate": [ - 3271, + 3388, { "distinct_on": [ - 3281, + 3398, "[player_leaderboard_rank_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 3280, + 3397, "[player_leaderboard_rank_order_by!]" ], "where": [ - 3274 + 3391 ] } ], "player_match_map_stats": [ - 3293, + 3410, { "distinct_on": [ - 3314, + 3431, "[player_match_map_stats_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 3312, + 3429, "[player_match_map_stats_order_by!]" ], "where": [ - 3302 + 3419 ] } ], "player_match_map_stats_aggregate": [ - 3294, + 3411, { "distinct_on": [ - 3314, + 3431, "[player_match_map_stats_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 3312, + 3429, "[player_match_map_stats_order_by!]" ], "where": [ - 3302 + 3419 ] } ], "player_match_map_stats_by_pk": [ - 3293, + 3410, { "match_map_id": [ - 4921, + 4993, "uuid!" ], "steam_id": [ - 180, + 252, "bigint!" ] } ], "player_match_performance_v": [ - 3334, + 3451, { "distinct_on": [ - 3342, + 3459, "[player_match_performance_v_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 3341, + 3458, "[player_match_performance_v_order_by!]" ], "where": [ - 3338 + 3455 ] } ], "player_match_performance_v_aggregate": [ - 3335, + 3452, { "distinct_on": [ - 3342, + 3459, "[player_match_performance_v_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 3341, + 3458, "[player_match_performance_v_order_by!]" ], "where": [ - 3338 + 3455 ] } ], "player_match_stats_v": [ - 3352, + 3469, { "distinct_on": [ - 3368, + 3485, "[player_match_stats_v_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 3367, + 3484, "[player_match_stats_v_order_by!]" ], "where": [ - 3361 + 3478 ] } ], "player_match_stats_v_aggregate": [ - 3353, + 3470, { "distinct_on": [ - 3368, + 3485, "[player_match_stats_v_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 3367, + 3484, "[player_match_stats_v_order_by!]" ], "where": [ - 3361 + 3478 ] } ], "player_objectives": [ - 3385, + 3502, { "distinct_on": [ - 3406, + 3523, "[player_objectives_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 3404, + 3521, "[player_objectives_order_by!]" ], "where": [ - 3394 + 3511 ] } ], "player_objectives_aggregate": [ - 3386, + 3503, { "distinct_on": [ - 3406, + 3523, "[player_objectives_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 3404, + 3521, "[player_objectives_order_by!]" ], "where": [ - 3394 + 3511 ] } ], "player_objectives_by_pk": [ - 3385, + 3502, { "match_map_id": [ - 4921, + 4993, "uuid!" ], "player_steam_id": [ - 180, + 252, "bigint!" ], "time": [ - 4376, + 4493, "timestamptz!" ] } ], "player_performance_v": [ - 3426, + 3543, { "distinct_on": [ - 3434, + 3551, "[player_performance_v_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 3433, + 3550, "[player_performance_v_order_by!]" ], "where": [ - 3430 + 3547 ] } ], "player_performance_v_aggregate": [ - 3427, + 3544, { "distinct_on": [ - 3434, + 3551, "[player_performance_v_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 3433, + 3550, "[player_performance_v_order_by!]" ], "where": [ - 3430 + 3547 ] } ], "player_premier_rank_history": [ - 3444, + 3561, { "distinct_on": [ - 3465, + 3582, "[player_premier_rank_history_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 3463, + 3580, "[player_premier_rank_history_order_by!]" ], "where": [ - 3453 + 3570 ] } ], "player_premier_rank_history_aggregate": [ - 3445, + 3562, { "distinct_on": [ - 3465, + 3582, "[player_premier_rank_history_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 3463, + 3580, "[player_premier_rank_history_order_by!]" ], "where": [ - 3453 + 3570 ] } ], "player_premier_rank_history_by_pk": [ - 3444, + 3561, { "id": [ - 4921, + 4993, "uuid!" ] } ], "player_sanctions": [ - 3485, + 3602, { "distinct_on": [ - 3506, + 3623, "[player_sanctions_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 3504, + 3621, "[player_sanctions_order_by!]" ], "where": [ - 3494 + 3611 ] } ], "player_sanctions_aggregate": [ - 3486, + 3603, { "distinct_on": [ - 3506, + 3623, "[player_sanctions_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 3504, + 3621, "[player_sanctions_order_by!]" ], "where": [ - 3494 + 3611 ] } ], "player_sanctions_by_pk": [ - 3485, + 3602, { "created_at": [ - 4376, + 4493, "timestamptz!" ], "id": [ - 4921, + 4993, "uuid!" ] } ], "player_season_stats": [ - 3526, + 3643, { "distinct_on": [ - 3557, + 3674, "[player_season_stats_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 3555, + 3672, "[player_season_stats_order_by!]" ], "where": [ - 3545 + 3662 ] } ], "player_season_stats_aggregate": [ - 3527, + 3644, { "distinct_on": [ - 3557, + 3674, "[player_season_stats_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 3555, + 3672, "[player_season_stats_order_by!]" ], "where": [ - 3545 + 3662 ] } ], "player_season_stats_by_pk": [ - 3526, + 3643, { "player_steam_id": [ - 180, + 252, "bigint!" ], "season_id": [ - 4921, + 4993, "uuid!" ] } ], "player_stats": [ - 3585, + 3702, { "distinct_on": [ - 3600, + 3717, "[player_stats_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 3598, + 3715, "[player_stats_order_by!]" ], "where": [ - 3589 + 3706 ] } ], "player_stats_aggregate": [ - 3586, + 3703, { "distinct_on": [ - 3600, + 3717, "[player_stats_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 3598, + 3715, "[player_stats_order_by!]" ], "where": [ - 3589 + 3706 ] } ], "player_stats_by_pk": [ - 3585, + 3702, { "player_steam_id": [ - 180, + 252, "bigint!" ] } ], "player_steam_bot_friend": [ - 3613, + 3730, { "distinct_on": [ - 3632, + 3749, "[player_steam_bot_friend_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 3629, + 3746, "[player_steam_bot_friend_order_by!]" ], "where": [ - 3618 + 3735 ] } ], "player_steam_bot_friend_aggregate": [ - 3614, + 3731, { "distinct_on": [ - 3632, + 3749, "[player_steam_bot_friend_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 3629, + 3746, "[player_steam_bot_friend_order_by!]" ], "where": [ - 3618 + 3735 ] } ], "player_steam_bot_friend_by_pk": [ - 3613, + 3730, { "steam_id": [ - 180, + 252, "bigint!" ] } ], "player_steam_match_auth": [ - 3645, + 3762, { "distinct_on": [ - 3659, + 3776, "[player_steam_match_auth_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 3657, + 3774, "[player_steam_match_auth_order_by!]" ], "where": [ - 3649 + 3766 ] } ], "player_steam_match_auth_aggregate": [ - 3646, + 3763, { "distinct_on": [ - 3659, + 3776, "[player_steam_match_auth_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 3657, + 3774, "[player_steam_match_auth_order_by!]" ], "where": [ - 3649 + 3766 ] } ], "player_steam_match_auth_by_pk": [ - 3645, + 3762, { "steam_id": [ - 180, + 252, "bigint!" ] } ], "player_unused_utility": [ - 3672, + 3789, { "distinct_on": [ - 3693, + 3810, "[player_unused_utility_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 3691, + 3808, "[player_unused_utility_order_by!]" ], "where": [ - 3681 + 3798 ] } ], "player_unused_utility_aggregate": [ - 3673, + 3790, { "distinct_on": [ - 3693, + 3810, "[player_unused_utility_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 3691, + 3808, "[player_unused_utility_order_by!]" ], "where": [ - 3681 + 3798 ] } ], "player_unused_utility_by_pk": [ - 3672, + 3789, { "match_map_id": [ - 4921, + 4993, "uuid!" ], "player_steam_id": [ - 180, + 252, "bigint!" ] } ], "player_utility": [ - 3713, + 3830, { "distinct_on": [ - 3734, + 3851, "[player_utility_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 3732, + 3849, "[player_utility_order_by!]" ], "where": [ - 3722 + 3839 ] } ], "player_utility_aggregate": [ - 3714, + 3831, { "distinct_on": [ - 3734, + 3851, "[player_utility_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 3732, + 3849, "[player_utility_order_by!]" ], "where": [ - 3722 + 3839 ] } ], "player_utility_by_pk": [ - 3713, + 3830, { "attacker_steam_id": [ - 180, + 252, "bigint!" ], "match_map_id": [ - 4921, + 4993, "uuid!" ], "time": [ - 4376, + 4493, "timestamptz!" ] } ], "player_weapon_stats_v": [ - 3754, + 3871, { "distinct_on": [ - 3770, + 3887, "[player_weapon_stats_v_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 3769, + 3886, "[player_weapon_stats_v_order_by!]" ], "where": [ - 3763 + 3880 ] } ], "player_weapon_stats_v_aggregate": [ - 3755, + 3872, { "distinct_on": [ - 3770, + 3887, "[player_weapon_stats_v_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 3769, + 3886, "[player_weapon_stats_v_order_by!]" ], "where": [ - 3763 + 3880 ] } ], "players": [ - 3787, + 3904, { "distinct_on": [ - 3802, + 3919, "[players_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 3800, + 3917, "[players_order_by!]" ], "where": [ - 3791 + 3908 ] } ], "players_aggregate": [ - 3788, + 3905, { "distinct_on": [ - 3802, + 3919, "[players_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 3800, + 3917, "[players_order_by!]" ], "where": [ - 3791 + 3908 ] } ], "players_by_pk": [ - 3787, + 3904, { "steam_id": [ - 180, + 252, "bigint!" ] } ], "plugin_versions": [ - 3815, + 3932, { "distinct_on": [ - 3829, + 3946, "[plugin_versions_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 3827, + 3944, "[plugin_versions_order_by!]" ], "where": [ - 3819 + 3936 ] } ], "plugin_versions_aggregate": [ - 3816, + 3933, { "distinct_on": [ - 3829, + 3946, "[plugin_versions_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 3827, + 3944, "[plugin_versions_order_by!]" ], "where": [ - 3819 + 3936 ] } ], "plugin_versions_by_pk": [ - 3815, + 3932, { "runtime": [ - 968, + 1085, "e_plugin_runtimes_enum!" ], "version": [ - 78, + 80, "String!" ] } ], "readServerFile": [ - 26, + 28, { "file_path": [ - 78, + 80, "String!" ], "node_id": [ - 78, + 80, "String!" ], "server_id": [ - 78 + 80 ] } ], "seasons": [ - 3846, + 3963, { "distinct_on": [ - 3861, + 3978, "[seasons_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 3859, + 3976, "[seasons_order_by!]" ], "where": [ - 3850 + 3967 ] } ], "seasons_aggregate": [ - 3847, + 3964, { "distinct_on": [ - 3861, + 3978, "[seasons_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 3859, + 3976, "[seasons_order_by!]" ], "where": [ - 3850 + 3967 ] } ], "seasons_by_pk": [ - 3846, + 3963, { "id": [ - 4921, + 4993, "uuid!" ] } ], "server_regions": [ - 3874, + 3991, { "distinct_on": [ - 3888, + 4005, "[server_regions_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 3886, + 4003, "[server_regions_order_by!]" ], "where": [ - 3878 + 3995 ] } ], "server_regions_aggregate": [ - 3875, + 3992, { "distinct_on": [ - 3888, + 4005, "[server_regions_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 3886, + 4003, "[server_regions_order_by!]" ], "where": [ - 3878 + 3995 ] } ], "server_regions_by_pk": [ - 3874, + 3991, { "value": [ - 78, + 80, "String!" ] } ], "servers": [ - 3901, + 4018, { "distinct_on": [ - 3925, + 4042, "[servers_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 3923, + 4040, "[servers_order_by!]" ], "where": [ - 3912 + 4029 ] } ], "servers_aggregate": [ - 3902, + 4019, { "distinct_on": [ - 3925, + 4042, "[servers_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 3923, + 4040, "[servers_order_by!]" ], "where": [ - 3912 + 4029 ] } ], "servers_by_pk": [ - 3901, + 4018, { "id": [ - 4921, + 4993, "uuid!" ] } ], "settings": [ - 3947, + 4064, { "distinct_on": [ - 3959, + 4076, "[settings_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 3957, + 4074, "[settings_order_by!]" ], "where": [ - 3950 + 4067 ] } ], "settings_aggregate": [ - 3948, + 4065, { "distinct_on": [ - 3959, + 4076, "[settings_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 3957, + 4074, "[settings_order_by!]" ], "where": [ - 3950 + 4067 ] } ], "settings_by_pk": [ - 3947, + 4064, { "name": [ - 78, + 80, "String!" ] } ], "steamPresenceAdminStatus": [ - 72 + 74 ], "steam_account_claims": [ - 3967, + 4084, { "distinct_on": [ - 3985, + 4102, "[steam_account_claims_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 3983, + 4100, "[steam_account_claims_order_by!]" ], "where": [ - 3974 + 4091 ] } ], "steam_account_claims_aggregate": [ - 3968, + 4085, { "distinct_on": [ - 3985, + 4102, "[steam_account_claims_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 3983, + 4100, "[steam_account_claims_order_by!]" ], "where": [ - 3974 + 4091 ] } ], "steam_account_claims_by_pk": [ - 3967, + 4084, { "id": [ - 4921, + 4993, "uuid!" ] } ], "steam_accounts": [ - 3991, + 4108, { "distinct_on": [ - 4006, + 4123, "[steam_accounts_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 4004, + 4121, "[steam_accounts_order_by!]" ], "where": [ - 3995 + 4112 ] } ], "steam_accounts_aggregate": [ - 3992, + 4109, { "distinct_on": [ - 4006, + 4123, "[steam_accounts_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 4004, + 4121, "[steam_accounts_order_by!]" ], "where": [ - 3995 + 4112 ] } ], "steam_accounts_by_pk": [ - 3991, + 4108, { "id": [ - 4921, + 4993, "uuid!" ] } ], "system_alerts": [ - 4019, + 4136, { "distinct_on": [ - 4033, + 4150, "[system_alerts_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 4031, + 4148, "[system_alerts_order_by!]" ], "where": [ - 4023 + 4140 ] } ], "system_alerts_aggregate": [ - 4020, + 4137, { "distinct_on": [ - 4033, + 4150, "[system_alerts_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 4031, + 4148, "[system_alerts_order_by!]" ], "where": [ - 4023 + 4140 ] } ], "system_alerts_by_pk": [ - 4019, + 4136, { "id": [ - 4921, + 4993, "uuid!" ] } ], "teamCalendarUrl": [ - 85, + 87, { "team_id": [ - 4921, + 4993, "uuid!" ] } ], "team_invites": [ - 4046, + 4163, { "distinct_on": [ - 4067, + 4184, "[team_invites_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 4065, + 4182, "[team_invites_order_by!]" ], "where": [ - 4055 + 4172 ] } ], "team_invites_aggregate": [ - 4047, + 4164, { "distinct_on": [ - 4067, + 4184, "[team_invites_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 4065, + 4182, "[team_invites_order_by!]" ], "where": [ - 4055 + 4172 ] } ], "team_invites_by_pk": [ - 4046, + 4163, { "id": [ - 4921, + 4993, "uuid!" ] } ], "team_roster": [ - 4087, + 4204, { "distinct_on": [ - 4110, + 4227, "[team_roster_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 4108, + 4225, "[team_roster_order_by!]" ], "where": [ - 4098 + 4215 ] } ], "team_roster_aggregate": [ - 4088, + 4205, { "distinct_on": [ - 4110, + 4227, "[team_roster_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 4108, + 4225, "[team_roster_order_by!]" ], "where": [ - 4098 + 4215 ] } ], "team_roster_by_pk": [ - 4087, + 4204, { "player_steam_id": [ - 180, + 252, "bigint!" ], "team_id": [ - 4921, + 4993, "uuid!" ] } ], "team_scrim_alerts": [ - 4132, + 4249, { "distinct_on": [ - 4146, + 4263, "[team_scrim_alerts_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 4144, + 4261, "[team_scrim_alerts_order_by!]" ], "where": [ - 4136 + 4253 ] } ], "team_scrim_alerts_aggregate": [ - 4133, + 4250, { "distinct_on": [ - 4146, + 4263, "[team_scrim_alerts_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 4144, + 4261, "[team_scrim_alerts_order_by!]" ], "where": [ - 4136 + 4253 ] } ], "team_scrim_alerts_by_pk": [ - 4132, + 4249, { "id": [ - 4921, + 4993, "uuid!" ] } ], "team_scrim_availability": [ - 4159, + 4276, { "distinct_on": [ - 4179, + 4296, "[team_scrim_availability_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 4177, + 4294, "[team_scrim_availability_order_by!]" ], "where": [ - 4168 + 4285 ] } ], "team_scrim_availability_aggregate": [ - 4160, + 4277, { "distinct_on": [ - 4179, + 4296, "[team_scrim_availability_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 4177, + 4294, "[team_scrim_availability_order_by!]" ], "where": [ - 4168 + 4285 ] } ], "team_scrim_availability_by_pk": [ - 4159, + 4276, { "id": [ - 4921, + 4993, "uuid!" ] } ], "team_scrim_request_proposals": [ - 4187, + 4304, { "distinct_on": [ - 4208, + 4325, "[team_scrim_request_proposals_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 4206, + 4323, "[team_scrim_request_proposals_order_by!]" ], "where": [ - 4196 + 4313 ] } ], "team_scrim_request_proposals_aggregate": [ - 4188, + 4305, { "distinct_on": [ - 4208, + 4325, "[team_scrim_request_proposals_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 4206, + 4323, "[team_scrim_request_proposals_order_by!]" ], "where": [ - 4196 + 4313 ] } ], "team_scrim_request_proposals_by_pk": [ - 4187, + 4304, { "id": [ - 4921, + 4993, "uuid!" ] } ], "team_scrim_requests": [ - 4228, + 4345, { "distinct_on": [ - 4252, + 4369, "[team_scrim_requests_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 4250, + 4367, "[team_scrim_requests_order_by!]" ], "where": [ - 4239 + 4356 ] } ], "team_scrim_requests_aggregate": [ - 4229, + 4346, { "distinct_on": [ - 4252, + 4369, "[team_scrim_requests_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 4250, + 4367, "[team_scrim_requests_order_by!]" ], "where": [ - 4239 + 4356 ] } ], "team_scrim_requests_by_pk": [ - 4228, + 4345, { "id": [ - 4921, + 4993, "uuid!" ] } ], "team_scrim_settings": [ - 4274, + 4391, { "distinct_on": [ - 4289, + 4406, "[team_scrim_settings_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 4287, + 4404, "[team_scrim_settings_order_by!]" ], "where": [ - 4278 + 4395 ] } ], "team_scrim_settings_aggregate": [ - 4275, + 4392, { "distinct_on": [ - 4289, + 4406, "[team_scrim_settings_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 4287, + 4404, "[team_scrim_settings_order_by!]" ], "where": [ - 4278 + 4395 ] } ], "team_scrim_settings_by_pk": [ - 4274, + 4391, { "id": [ - 4921, + 4993, "uuid!" ] } ], "team_suggestions": [ - 4302, + 4419, { "distinct_on": [ - 4316, + 4433, "[team_suggestions_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 4314, + 4431, "[team_suggestions_order_by!]" ], "where": [ - 4306 + 4423 ] } ], "team_suggestions_aggregate": [ - 4303, + 4420, { "distinct_on": [ - 4316, + 4433, "[team_suggestions_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 4314, + 4431, "[team_suggestions_order_by!]" ], "where": [ - 4306 + 4423 ] } ], "team_suggestions_by_pk": [ - 4302, + 4419, { "id": [ - 4921, + 4993, "uuid!" ] } ], "teams": [ - 4329, + 4446, { "distinct_on": [ - 4353, + 4470, "[teams_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 4351, + 4468, "[teams_order_by!]" ], "where": [ - 4340 + 4457 ] } ], "teams_aggregate": [ - 4330, + 4447, { "distinct_on": [ - 4353, + 4470, "[teams_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 4351, + 4468, "[teams_order_by!]" ], "where": [ - 4340 + 4457 ] } ], "teams_by_pk": [ - 4329, + 4446, { "id": [ - 4921, + 4993, "uuid!" ] } ], "telemetryStats": [ - 86 + 88 + ], + "tournament_awards": [ + 4495, + { + "distinct_on": [ + 4517, + "[tournament_awards_select_column!]" + ], + "limit": [ + 40 + ], + "offset": [ + 40 + ], + "order_by": [ + 4515, + "[tournament_awards_order_by!]" + ], + "where": [ + 4504 + ] + } + ], + "tournament_awards_aggregate": [ + 4496, + { + "distinct_on": [ + 4517, + "[tournament_awards_select_column!]" + ], + "limit": [ + 40 + ], + "offset": [ + 40 + ], + "order_by": [ + 4515, + "[tournament_awards_order_by!]" + ], + "where": [ + 4504 + ] + } + ], + "tournament_awards_by_pk": [ + 4495, + { + "id": [ + 4993, + "uuid!" + ] + } ], "tournament_brackets": [ - 4378, + 4537, { "distinct_on": [ - 4402, + 4561, "[tournament_brackets_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 4400, + 4559, "[tournament_brackets_order_by!]" ], "where": [ - 4389 + 4548 ] } ], "tournament_brackets_aggregate": [ - 4379, + 4538, { "distinct_on": [ - 4402, + 4561, "[tournament_brackets_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 4400, + 4559, "[tournament_brackets_order_by!]" ], "where": [ - 4389 + 4548 ] } ], "tournament_brackets_by_pk": [ - 4378, + 4537, { "id": [ - 4921, + 4993, "uuid!" ] } ], "tournament_categories": [ - 4424, + 4583, { "distinct_on": [ - 4442, + 4601, "[tournament_categories_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 4440, + 4599, "[tournament_categories_order_by!]" ], "where": [ - 4431 + 4590 ] } ], "tournament_categories_aggregate": [ - 4425, + 4584, { "distinct_on": [ - 4442, + 4601, "[tournament_categories_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 4440, + 4599, "[tournament_categories_order_by!]" ], "where": [ - 4431 + 4590 ] } ], "tournament_categories_by_pk": [ - 4424, + 4583, { "category": [ - 1170, + 1287, "e_tournament_categories_enum!" ], "tournament_id": [ - 4921, + 4993, "uuid!" ] } ], "tournament_organizer_teams": [ - 4448, + 4607, { "distinct_on": [ - 4466, + 4625, "[tournament_organizer_teams_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 4464, + 4623, "[tournament_organizer_teams_order_by!]" ], "where": [ - 4455 + 4614 ] } ], "tournament_organizer_teams_aggregate": [ - 4449, + 4608, { "distinct_on": [ - 4466, + 4625, "[tournament_organizer_teams_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 4464, + 4623, "[tournament_organizer_teams_order_by!]" ], "where": [ - 4455 + 4614 ] } ], "tournament_organizer_teams_by_pk": [ - 4448, + 4607, { "team_id": [ - 4921, + 4993, "uuid!" ], "tournament_id": [ - 4921, + 4993, "uuid!" ] } ], "tournament_organizers": [ - 4472, + 4631, { "distinct_on": [ - 4493, + 4652, "[tournament_organizers_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 4491, + 4650, "[tournament_organizers_order_by!]" ], "where": [ - 4481 + 4640 ] } ], "tournament_organizers_aggregate": [ - 4473, + 4632, { "distinct_on": [ - 4493, + 4652, "[tournament_organizers_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 4491, + 4650, "[tournament_organizers_order_by!]" ], "where": [ - 4481 + 4640 ] } ], "tournament_organizers_by_pk": [ - 4472, + 4631, { "steam_id": [ - 180, + 252, "bigint!" ], "tournament_id": [ - 4921, + 4993, "uuid!" ] } ], "tournament_prizes": [ - 4513, + 4672, { "distinct_on": [ - 4534, + 4693, "[tournament_prizes_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 4532, + 4691, "[tournament_prizes_order_by!]" ], "where": [ - 4522 + 4681 ] } ], "tournament_prizes_aggregate": [ - 4514, + 4673, { "distinct_on": [ - 4534, + 4693, "[tournament_prizes_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 4532, + 4691, "[tournament_prizes_order_by!]" ], "where": [ - 4522 + 4681 ] } ], "tournament_prizes_by_pk": [ - 4513, + 4672, { "id": [ - 4921, + 4993, "uuid!" ] } ], "tournament_stage_windows": [ - 4554, + 4713, { "distinct_on": [ - 4575, + 4734, "[tournament_stage_windows_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 4573, + 4732, "[tournament_stage_windows_order_by!]" ], "where": [ - 4563 + 4722 ] } ], "tournament_stage_windows_aggregate": [ - 4555, + 4714, { "distinct_on": [ - 4575, + 4734, "[tournament_stage_windows_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 4573, + 4732, "[tournament_stage_windows_order_by!]" ], "where": [ - 4563 + 4722 ] } ], "tournament_stage_windows_by_pk": [ - 4554, + 4713, { "id": [ - 4921, + 4993, "uuid!" ] } ], "tournament_stages": [ - 4595, + 4754, { "distinct_on": [ - 4624, + 4783, "[tournament_stages_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 4621, + 4780, "[tournament_stages_order_by!]" ], "where": [ - 4607 + 4766 ] } ], "tournament_stages_aggregate": [ - 4596, + 4755, { "distinct_on": [ - 4624, + 4783, "[tournament_stages_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 4621, + 4780, "[tournament_stages_order_by!]" ], "where": [ - 4607 + 4766 ] } ], "tournament_stages_by_pk": [ - 4595, + 4754, { "id": [ - 4921, + 4993, "uuid!" ] } ], "tournament_team_invites": [ - 4646, + 4805, { "distinct_on": [ - 4667, + 4826, "[tournament_team_invites_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 4665, + 4824, "[tournament_team_invites_order_by!]" ], "where": [ - 4655 + 4814 ] } ], "tournament_team_invites_aggregate": [ - 4647, + 4806, { "distinct_on": [ - 4667, + 4826, "[tournament_team_invites_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 4665, + 4824, "[tournament_team_invites_order_by!]" ], "where": [ - 4655 + 4814 ] } ], "tournament_team_invites_by_pk": [ - 4646, + 4805, { "id": [ - 4921, + 4993, "uuid!" ] } ], "tournament_team_roster": [ - 4687, + 4846, { "distinct_on": [ - 4708, + 4867, "[tournament_team_roster_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 4706, + 4865, "[tournament_team_roster_order_by!]" ], "where": [ - 4696 + 4855 ] } ], "tournament_team_roster_aggregate": [ - 4688, + 4847, { "distinct_on": [ - 4708, + 4867, "[tournament_team_roster_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 4706, + 4865, "[tournament_team_roster_order_by!]" ], "where": [ - 4696 + 4855 ] } ], "tournament_team_roster_by_pk": [ - 4687, + 4846, { "player_steam_id": [ - 180, + 252, "bigint!" ], "tournament_id": [ - 4921, + 4993, "uuid!" ] } ], "tournament_teams": [ - 4728, + 4887, { "distinct_on": [ - 4750, + 4909, "[tournament_teams_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 4748, + 4907, "[tournament_teams_order_by!]" ], "where": [ - 4737 + 4896 ] } ], "tournament_teams_aggregate": [ - 4729, + 4888, { "distinct_on": [ - 4750, + 4909, "[tournament_teams_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 4748, + 4907, "[tournament_teams_order_by!]" ], "where": [ - 4737 + 4896 ] } ], "tournament_teams_by_pk": [ - 4728, + 4887, { "id": [ - 4921, - "uuid!" - ] - } - ], - "tournament_trophies": [ - 4770, - { - "distinct_on": [ - 4793, - "[tournament_trophies_select_column!]" - ], - "limit": [ - 38 - ], - "offset": [ - 38 - ], - "order_by": [ - 4791, - "[tournament_trophies_order_by!]" - ], - "where": [ - 4781 - ] - } - ], - "tournament_trophies_aggregate": [ - 4771, - { - "distinct_on": [ - 4793, - "[tournament_trophies_select_column!]" - ], - "limit": [ - 38 - ], - "offset": [ - 38 - ], - "order_by": [ - 4791, - "[tournament_trophies_order_by!]" - ], - "where": [ - 4781 - ] - } - ], - "tournament_trophies_by_pk": [ - 4770, - { - "id": [ - 4921, - "uuid!" - ] - } - ], - "tournament_trophy_configs": [ - 4815, - { - "distinct_on": [ - 4837, - "[tournament_trophy_configs_select_column!]" - ], - "limit": [ - 38 - ], - "offset": [ - 38 - ], - "order_by": [ - 4835, - "[tournament_trophy_configs_order_by!]" - ], - "where": [ - 4824 - ] - } - ], - "tournament_trophy_configs_aggregate": [ - 4816, - { - "distinct_on": [ - 4837, - "[tournament_trophy_configs_select_column!]" - ], - "limit": [ - 38 - ], - "offset": [ - 38 - ], - "order_by": [ - 4835, - "[tournament_trophy_configs_order_by!]" - ], - "where": [ - 4824 - ] - } - ], - "tournament_trophy_configs_by_pk": [ - 4815, - { - "id": [ - 4921, + 4993, "uuid!" ] } ], "tournaments": [ - 4857, + 4929, { "distinct_on": [ - 4891, + 4963, "[tournaments_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 4889, + 4961, "[tournaments_order_by!]" ], "where": [ - 4878 + 4950 ] } ], "tournaments_aggregate": [ - 4858, + 4930, { "distinct_on": [ - 4891, + 4963, "[tournaments_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 4889, + 4961, "[tournaments_order_by!]" ], "where": [ - 4878 + 4950 ] } ], "tournaments_by_pk": [ - 4857, + 4929, { "id": [ - 4921, + 4993, "uuid!" ] } ], "v_event_player_stats": [ - 4924, + 4996, { "distinct_on": [ - 4950, + 5022, "[v_event_player_stats_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 4949, + 5021, "[v_event_player_stats_order_by!]" ], "where": [ - 4943 + 5015 ] } ], "v_event_player_stats_aggregate": [ - 4925, + 4997, { "distinct_on": [ - 4950, + 5022, "[v_event_player_stats_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 4949, + 5021, "[v_event_player_stats_order_by!]" ], "where": [ - 4943 + 5015 ] } ], "v_gpu_pool_status": [ - 4975, + 5047, { "distinct_on": [ - 4983, + 5055, "[v_gpu_pool_status_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 4982, + 5054, "[v_gpu_pool_status_order_by!]" ], "where": [ - 4979 + 5051 ] } ], "v_gpu_pool_status_aggregate": [ - 4976, + 5048, { "distinct_on": [ - 4983, + 5055, "[v_gpu_pool_status_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 4982, + 5054, "[v_gpu_pool_status_order_by!]" ], "where": [ - 4979 + 5051 ] } ], "v_league_division_standings": [ - 4993, + 5065, { "distinct_on": [ - 5009, + 5081, "[v_league_division_standings_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 5008, + 5080, "[v_league_division_standings_order_by!]" ], "where": [ - 5002 + 5074 ] } ], "v_league_division_standings_aggregate": [ - 4994, + 5066, { "distinct_on": [ - 5009, + 5081, "[v_league_division_standings_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 5008, + 5080, "[v_league_division_standings_order_by!]" ], "where": [ - 5002 + 5074 ] } ], "v_league_season_player_stats": [ - 5026, + 5098, { "distinct_on": [ - 5052, + 5124, "[v_league_season_player_stats_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 5051, + 5123, "[v_league_season_player_stats_order_by!]" ], "where": [ - 5045 + 5117 ] } ], "v_league_season_player_stats_aggregate": [ - 5027, + 5099, { "distinct_on": [ - 5052, + 5124, "[v_league_season_player_stats_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 5051, + 5123, "[v_league_season_player_stats_order_by!]" ], "where": [ - 5045 + 5117 ] } ], "v_match_captains": [ - 5077, + 5149, { "distinct_on": [ - 5089, + 5161, "[v_match_captains_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 5088, + 5160, "[v_match_captains_order_by!]" ], "where": [ - 5081 + 5153 ] } ], "v_match_captains_aggregate": [ - 5078, + 5150, { "distinct_on": [ - 5089, + 5161, "[v_match_captains_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 5088, + 5160, "[v_match_captains_order_by!]" ], "where": [ - 5081 + 5153 ] } ], "v_match_clutches": [ - 5101, + 5173, { "distinct_on": [ - 5117, + 5189, "[v_match_clutches_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 5116, + 5188, "[v_match_clutches_order_by!]" ], "where": [ - 5110 + 5182 ] } ], "v_match_clutches_aggregate": [ - 5102, + 5174, { "distinct_on": [ - 5117, + 5189, "[v_match_clutches_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 5116, + 5188, "[v_match_clutches_order_by!]" ], "where": [ - 5110 + 5182 ] } ], "v_match_kill_pairs": [ - 5134, + 5206, { "distinct_on": [ - 5142, + 5214, "[v_match_kill_pairs_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 5141, + 5213, "[v_match_kill_pairs_order_by!]" ], "where": [ - 5138 + 5210 ] } ], "v_match_kill_pairs_aggregate": [ - 5135, + 5207, { "distinct_on": [ - 5142, + 5214, "[v_match_kill_pairs_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 5141, + 5213, "[v_match_kill_pairs_order_by!]" ], "where": [ - 5138 + 5210 ] } ], "v_match_lineup_buy_types": [ - 5152, + 5224, { "distinct_on": [ - 5160, + 5232, "[v_match_lineup_buy_types_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 5159, + 5231, "[v_match_lineup_buy_types_order_by!]" ], "where": [ - 5156 + 5228 ] } ], "v_match_lineup_buy_types_aggregate": [ - 5153, + 5225, { "distinct_on": [ - 5160, + 5232, "[v_match_lineup_buy_types_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 5159, + 5231, "[v_match_lineup_buy_types_order_by!]" ], "where": [ - 5156 + 5228 ] } ], "v_match_lineup_map_stats": [ - 5170, + 5242, { "distinct_on": [ - 5178, + 5250, "[v_match_lineup_map_stats_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 5177, + 5249, "[v_match_lineup_map_stats_order_by!]" ], "where": [ - 5174 + 5246 ] } ], "v_match_lineup_map_stats_aggregate": [ - 5171, + 5243, { "distinct_on": [ - 5178, + 5250, "[v_match_lineup_map_stats_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 5177, + 5249, "[v_match_lineup_map_stats_order_by!]" ], "where": [ - 5174 + 5246 ] } ], "v_match_map_backup_rounds": [ - 5188, + 5260, { "distinct_on": [ - 5199, + 5271, "[v_match_map_backup_rounds_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 5198, + 5270, "[v_match_map_backup_rounds_order_by!]" ], "where": [ - 5192 + 5264 ] } ], "v_match_map_backup_rounds_aggregate": [ - 5189, + 5261, { "distinct_on": [ - 5199, + 5271, "[v_match_map_backup_rounds_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 5198, + 5270, "[v_match_map_backup_rounds_order_by!]" ], "where": [ - 5192 + 5264 ] } ], "v_match_player_buy_types": [ - 5211, + 5283, { "distinct_on": [ - 5219, + 5291, "[v_match_player_buy_types_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 5218, + 5290, "[v_match_player_buy_types_order_by!]" ], "where": [ - 5215 + 5287 ] } ], "v_match_player_buy_types_aggregate": [ - 5212, + 5284, { "distinct_on": [ - 5219, + 5291, "[v_match_player_buy_types_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 5218, + 5290, "[v_match_player_buy_types_order_by!]" ], "where": [ - 5215 + 5287 ] } ], "v_match_player_opening_duels": [ - 5229, + 5301, { "distinct_on": [ - 5245, + 5317, "[v_match_player_opening_duels_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 5244, + 5316, "[v_match_player_opening_duels_order_by!]" ], "where": [ - 5238 + 5310 ] } ], "v_match_player_opening_duels_aggregate": [ - 5230, + 5302, { "distinct_on": [ - 5245, + 5317, "[v_match_player_opening_duels_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 5244, + 5316, "[v_match_player_opening_duels_order_by!]" ], "where": [ - 5238 + 5310 ] } ], "v_player_arch_nemesis": [ - 5262, + 5334, { "distinct_on": [ - 5270, + 5342, "[v_player_arch_nemesis_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 5269, + 5341, "[v_player_arch_nemesis_order_by!]" ], "where": [ - 5266 + 5338 ] } ], "v_player_arch_nemesis_aggregate": [ - 5263, + 5335, { "distinct_on": [ - 5270, + 5342, "[v_player_arch_nemesis_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 5269, + 5341, "[v_player_arch_nemesis_order_by!]" ], "where": [ - 5266 + 5338 ] } ], "v_player_damage": [ - 5280, + 5352, { "distinct_on": [ - 5288, + 5360, "[v_player_damage_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 5287, + 5359, "[v_player_damage_order_by!]" ], "where": [ - 5284 + 5356 ] } ], "v_player_damage_aggregate": [ - 5281, + 5353, { "distinct_on": [ - 5288, + 5360, "[v_player_damage_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 5287, + 5359, "[v_player_damage_order_by!]" ], "where": [ - 5284 + 5356 ] } ], "v_player_elo": [ - 5298, + 5370, { "distinct_on": [ - 5324, + 5396, "[v_player_elo_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 5323, + 5395, "[v_player_elo_order_by!]" ], "where": [ - 5317 + 5389 ] } ], "v_player_elo_aggregate": [ - 5299, + 5371, { "distinct_on": [ - 5324, + 5396, "[v_player_elo_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 5323, + 5395, "[v_player_elo_order_by!]" ], "where": [ - 5317 + 5389 ] } ], "v_player_map_losses": [ - 5349, + 5421, { "distinct_on": [ - 5357, + 5429, "[v_player_map_losses_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 5356, + 5428, "[v_player_map_losses_order_by!]" ], "where": [ - 5353 + 5425 ] } ], "v_player_map_losses_aggregate": [ - 5350, + 5422, { "distinct_on": [ - 5357, + 5429, "[v_player_map_losses_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 5356, + 5428, "[v_player_map_losses_order_by!]" ], "where": [ - 5353 + 5425 ] } ], "v_player_map_wins": [ - 5367, + 5439, { "distinct_on": [ - 5375, + 5447, "[v_player_map_wins_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 5374, + 5446, "[v_player_map_wins_order_by!]" ], "where": [ - 5371 + 5443 ] } ], "v_player_map_wins_aggregate": [ - 5368, + 5440, { "distinct_on": [ - 5375, + 5447, "[v_player_map_wins_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 5374, + 5446, "[v_player_map_wins_order_by!]" ], "where": [ - 5371 + 5443 ] } ], "v_player_match_head_to_head": [ - 5385, + 5457, { "distinct_on": [ - 5393, + 5465, "[v_player_match_head_to_head_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 5392, + 5464, "[v_player_match_head_to_head_order_by!]" ], "where": [ - 5389 + 5461 ] } ], "v_player_match_head_to_head_aggregate": [ - 5386, + 5458, { "distinct_on": [ - 5393, + 5465, "[v_player_match_head_to_head_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 5392, + 5464, "[v_player_match_head_to_head_order_by!]" ], "where": [ - 5389 + 5461 ] } ], "v_player_match_map_hltv": [ - 5403, + 5475, { "distinct_on": [ - 5421, + 5493, "[v_player_match_map_hltv_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 5420, + 5492, "[v_player_match_map_hltv_order_by!]" ], "where": [ - 5412 + 5484 ] } ], "v_player_match_map_hltv_aggregate": [ - 5404, + 5476, { "distinct_on": [ - 5421, + 5493, "[v_player_match_map_hltv_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 5420, + 5492, "[v_player_match_map_hltv_order_by!]" ], "where": [ - 5412 + 5484 ] } ], "v_player_match_map_roles": [ - 5440, + 5512, { "distinct_on": [ - 5448, + 5520, "[v_player_match_map_roles_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 5447, + 5519, "[v_player_match_map_roles_order_by!]" ], "where": [ - 5444 + 5516 ] } ], "v_player_match_map_roles_aggregate": [ - 5441, + 5513, { "distinct_on": [ - 5448, + 5520, "[v_player_match_map_roles_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 5447, + 5519, "[v_player_match_map_roles_order_by!]" ], "where": [ - 5444 + 5516 ] } ], "v_player_match_performance": [ - 5458, + 5530, { "distinct_on": [ - 5466, + 5538, "[v_player_match_performance_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 5465, + 5537, "[v_player_match_performance_order_by!]" ], "where": [ - 5462 + 5534 ] } ], "v_player_match_performance_aggregate": [ - 5459, + 5531, { "distinct_on": [ - 5466, + 5538, "[v_player_match_performance_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 5465, + 5537, "[v_player_match_performance_order_by!]" ], "where": [ - 5462 + 5534 ] } ], "v_player_match_rating": [ - 5476, + 5548, { "distinct_on": [ - 5484, + 5556, "[v_player_match_rating_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 5483, + 5555, "[v_player_match_rating_order_by!]" ], "where": [ - 5480 + 5552 ] } ], "v_player_match_rating_aggregate": [ - 5477, + 5549, { "distinct_on": [ - 5484, + 5556, "[v_player_match_rating_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 5483, + 5555, "[v_player_match_rating_order_by!]" ], "where": [ - 5480 + 5552 ] } ], "v_player_multi_kills": [ - 5494, + 5566, { "distinct_on": [ - 5510, + 5582, "[v_player_multi_kills_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 5509, + 5581, "[v_player_multi_kills_order_by!]" ], "where": [ - 5503 + 5575 ] } ], "v_player_multi_kills_aggregate": [ - 5495, + 5567, { "distinct_on": [ - 5510, + 5582, "[v_player_multi_kills_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 5509, + 5581, "[v_player_multi_kills_order_by!]" ], "where": [ - 5503 + 5575 ] } ], "v_player_weapon_damage": [ - 5527, + 5599, { "distinct_on": [ - 5535, + 5607, "[v_player_weapon_damage_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 5534, + 5606, "[v_player_weapon_damage_order_by!]" ], "where": [ - 5531 + 5603 ] } ], "v_player_weapon_damage_aggregate": [ - 5528, + 5600, { "distinct_on": [ - 5535, + 5607, "[v_player_weapon_damage_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 5534, + 5606, "[v_player_weapon_damage_order_by!]" ], "where": [ - 5531 + 5603 ] } ], "v_player_weapon_kills": [ - 5545, + 5617, { "distinct_on": [ - 5553, + 5625, "[v_player_weapon_kills_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 5552, + 5624, "[v_player_weapon_kills_order_by!]" ], "where": [ - 5549 + 5621 ] } ], "v_player_weapon_kills_aggregate": [ - 5546, + 5618, { "distinct_on": [ - 5553, + 5625, "[v_player_weapon_kills_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 5552, + 5624, "[v_player_weapon_kills_order_by!]" ], "where": [ - 5549 + 5621 ] } ], "v_pool_maps": [ - 5563, + 5635, { "distinct_on": [ - 5580, + 5652, "[v_pool_maps_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 5579, + 5651, "[v_pool_maps_order_by!]" ], "where": [ - 5572 + 5644 ] } ], "v_pool_maps_aggregate": [ - 5564, + 5636, { "distinct_on": [ - 5580, + 5652, "[v_pool_maps_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 5579, + 5651, "[v_pool_maps_order_by!]" ], "where": [ - 5572 + 5644 ] } ], "v_steam_account_pool_status": [ - 5587, + 5659, { "distinct_on": [ - 5595, + 5667, "[v_steam_account_pool_status_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 5594, + 5666, "[v_steam_account_pool_status_order_by!]" ], "where": [ - 5591 + 5663 ] } ], "v_steam_account_pool_status_aggregate": [ - 5588, + 5660, { "distinct_on": [ - 5595, + 5667, "[v_steam_account_pool_status_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 5594, + 5666, "[v_steam_account_pool_status_order_by!]" ], "where": [ - 5591 + 5663 ] } ], "v_team_ranks": [ - 5605, + 5677, { "distinct_on": [ - 5615, + 5687, "[v_team_ranks_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 5614, + 5686, "[v_team_ranks_order_by!]" ], "where": [ - 5609 + 5681 ] } ], "v_team_ranks_aggregate": [ - 5606, + 5678, { "distinct_on": [ - 5615, + 5687, "[v_team_ranks_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 5614, + 5686, "[v_team_ranks_order_by!]" ], "where": [ - 5609 + 5681 ] } ], "v_team_reputation": [ - 5625, + 5697, { "distinct_on": [ - 5635, + 5707, "[v_team_reputation_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 5634, + 5706, "[v_team_reputation_order_by!]" ], "where": [ - 5629 + 5701 ] } ], "v_team_reputation_aggregate": [ - 5626, + 5698, { "distinct_on": [ - 5635, + 5707, "[v_team_reputation_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 5634, + 5706, "[v_team_reputation_order_by!]" ], "where": [ - 5629 + 5701 ] } ], "v_team_stage_results": [ - 5645, + 5717, { "distinct_on": [ - 5677, + 5749, "[v_team_stage_results_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 5675, + 5747, "[v_team_stage_results_order_by!]" ], "where": [ - 5664 + 5736 ] } ], "v_team_stage_results_aggregate": [ - 5646, + 5718, { "distinct_on": [ - 5677, + 5749, "[v_team_stage_results_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 5675, + 5747, "[v_team_stage_results_order_by!]" ], "where": [ - 5664 + 5736 ] } ], "v_team_stage_results_by_pk": [ - 5645, + 5717, { "tournament_stage_id": [ - 4921, + 4993, "uuid!" ], "tournament_team_id": [ - 4921, + 4993, "uuid!" ] } ], "v_team_tournament_results": [ - 5705, + 5777, { "distinct_on": [ - 5731, + 5803, "[v_team_tournament_results_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 5730, + 5802, "[v_team_tournament_results_order_by!]" ], "where": [ - 5724 + 5796 ] } ], "v_team_tournament_results_aggregate": [ - 5706, + 5778, { "distinct_on": [ - 5731, + 5803, "[v_team_tournament_results_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 5730, + 5802, "[v_team_tournament_results_order_by!]" ], "where": [ - 5724 + 5796 ] } ], "v_tournament_player_stats": [ - 5756, + 5828, { "distinct_on": [ - 5782, + 5854, "[v_tournament_player_stats_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 5781, + 5853, "[v_tournament_player_stats_order_by!]" ], "where": [ - 5775 + 5847 ] } ], "v_tournament_player_stats_aggregate": [ - 5757, + 5829, { "distinct_on": [ - 5782, + 5854, "[v_tournament_player_stats_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 5781, + 5853, "[v_tournament_player_stats_order_by!]" ], "where": [ - 5775 + 5847 ] } ], "__typename": [ - 78 + 80 ] }, "Mutation": { "PreviewTournamentMatchReset": [ - 55, + 57, { "match_id": [ - 4921, + 4993, "uuid!" ] } ], "ResetTournamentMatch": [ - 81, + 83, { "match_id": [ - 4921, + 4993, "uuid!" ], "reset_status": [ - 78 + 80 ], "scheduled_at": [ - 4376 + 4493 ], "winning_lineup_id": [ - 4921 + 4993 ] } ], "acceptInvite": [ - 81, + 83, { "invite_id": [ - 4921, + 4993, "uuid!" ], "type": [ - 78, + 80, "String!" ] } ], "addDraftPlayer": [ - 81, + 83, { "draftGameId": [ - 4921, + 4993, "uuid!" ], "steamId": [ - 78, + 80, "String!" ] } ], "addSteamPresenceBotAccount": [ - 81, + 83, { "bot_secret": [ - 78, + 80, "String!" ], "friend_capacity": [ - 38 + 40 ], "username": [ - 78, + 80, "String!" ] } ], "approveNameChange": [ - 81, + 83, { "name": [ - 78, + 80, "String!" ], "steam_id": [ - 180, + 252, "bigint!" ] } ], "approve_league_season_movements": [ - 1936, + 2053, { "args": [ - 179, + 182, "approve_league_season_movements_args!" ], "distinct_on": [ - 1957, + 2074, "[league_team_movements_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 1955, + 2072, "[league_team_movements_order_by!]" ], "where": [ - 1945 + 2062 ] } ], "assignSteamPresenceBot": [ - 74 + 76 ], "attachDemo": [ - 91 + 94 ], "backfillSeasonElo": [ - 58, + 60, { "season_id": [ - 78, + 80, "String!" ] } ], "backfillSeasonEloStatus": [ - 67 + 69 ], "bakeShaders": [ - 81, + 83, { "game_server_node_id": [ - 4921, + 4993, "uuid!" ] } ], "callForOrganizer": [ - 81, + 83, { "match_id": [ - 78, + 80, "String!" ] } ], "cancelBackfillSeasonElo": [ - 81 + 83 ], "cancelBakeShaders": [ - 81, + 83, { "game_server_node_id": [ - 4921, + 4993, "uuid!" ] } ], "cancelClipRender": [ - 81, + 83, { "job_id": [ - 4921, + 4993, "uuid!" ] } ], "cancelClipRenderBatch": [ - 81, + 83, { "match_map_id": [ - 4921, + 4993, "uuid!" ] } ], "cancelMatch": [ - 81, + 83, { "match_id": [ - 4921, + 4993, "uuid!" ] } ], "cancelRecomputePlayerElo": [ - 81 + 83 ], "cancelRefreshAllPlayers": [ - 81 + 83 ], "cancelReparseAllDemos": [ - 81 + 83 ], "cancelScrimRequest": [ - 81, + 83, { "request_id": [ - 4921, + 4993, "uuid!" ] } ], "checkIntoMatch": [ - 81, + 83, { "match_id": [ - 4921, + 4993, "uuid!" ] } ], "clearClipRenderBatch": [ - 81, + 83, { "match_map_id": [ - 4921, + 4993, "uuid!" ] } ], "clearFinishedClipRenders": [ - 81 + 83 ], "clearPendingMatchImport": [ - 53, + 55, { "valve_match_id": [ - 78, + 80, "String!" ] } ], "clone_league_season": [ - 1903, + 2020, { "args": [ - 235, + 307, "clone_league_season_args!" ], "distinct_on": [ - 1923, + 2040, "[league_seasons_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 1920, + 2037, "[league_seasons_order_by!]" ], "where": [ - 1908 + 2025 ] } ], "counterScrimRequest": [ - 81, + 83, { "proposed_scheduled_at": [ - 4376, + 4493, "timestamptz!" ], "request_id": [ - 4921, + 4993, "uuid!" ] } @@ -144418,26318 +146109,26872 @@ export default { 2, { "label": [ - 78, + 80, "String!" ] } ], "createClipFromPreset": [ - 13, + 15, { "fps": [ - 38 + 40 ], "match_map_id": [ - 4921, + 4993, "uuid!" ], "preset": [ - 78, + 80, "String!" ], "resolution": [ - 78 + 80 ], "target_name": [ - 78 + 80 ], "target_steam_id": [ - 78, + 80, "String!" ], "title": [ - 78 + 80 ] } ], "createClipRender": [ - 13, + 15, { "spec": [ - 9, + 11, "ClipSpecInput!" ] } ], "createClips": [ - 81, + 83, { "match_id": [ - 4921, + 4993, "uuid!" ] } ], "createDraftGame": [ - 14, + 16, { "settings": [ - 1700, + 1817, "jsonb!" ] } ], "createScheduledMatch": [ - 15, + 17, { "lineup_1": [ - 66, + 68, "ScheduledLineupInput!" ], "lineup_2": [ - 66, + 68, "ScheduledLineupInput!" ], "options": [ - 1700, + 1817, "jsonb!" ], "scheduled_at": [ - 78, + 80, "String!" ] } ], "createServerDirectory": [ - 81, + 83, { "dir_path": [ - 78, + 80, "String!" ], "node_id": [ - 78, + 80, "String!" ], "server_id": [ - 78 + 80 + ] + } + ], + "deleteAward": [ + 83, + { + "id": [ + 4993, + "uuid!" ] } ], "deleteClip": [ - 81, + 83, { "clip_id": [ - 4921, + 4993, "uuid!" ] } ], "deleteMatch": [ - 81, + 83, { "match_id": [ - 78, + 80, "String!" ] } ], "deleteNewsPost": [ - 81, + 83, { "id": [ - 4921, + 4993, "uuid!" ] } ], "deleteOrphanedDemos": [ - 19, + 21, { "keys": [ - 78, + 80, "[String!]" ] } ], "deleteServerItem": [ - 81, + 83, { "node_id": [ - 78, + 80, "String!" ], "path": [ - 78, + 80, "String!" ], "server_id": [ - 78 + 80 ] } ], "deleteTournament": [ - 81, + 83, { "tournament_id": [ - 4921, + 4993, "uuid!" ] } ], "delete__map_pool": [ - 100, + 103, { "where": [ - 95, + 98, "_map_pool_bool_exp!" ] } ], "delete__map_pool_by_pk": [ - 92, + 95, { "map_id": [ - 4921, + 4993, "uuid!" ], "map_pool_id": [ - 4921, + 4993, "uuid!" ] } ], "delete_abandoned_matches": [ - 128, + 131, { "where": [ - 120, + 123, "abandoned_matches_bool_exp!" ] } ], "delete_abandoned_matches_by_pk": [ - 111, + 114, { "id": [ - 4921, + 4993, "uuid!" ] } ], "delete_api_keys": [ - 162, + 165, { "where": [ - 156, + 159, "api_keys_bool_exp!" ] } ], "delete_api_keys_by_pk": [ - 152, + 155, { "id": [ - 4921, + 4993, + "uuid!" + ] + } + ], + "delete_award_recipients": [ + 200, + { + "where": [ + 192, + "award_recipients_bool_exp!" + ] + } + ], + "delete_award_recipients_by_pk": [ + 183, + { + "id": [ + 4993, + "uuid!" + ] + } + ], + "delete_awards": [ + 234, + { + "where": [ + 228, + "awards_bool_exp!" + ] + } + ], + "delete_awards_by_pk": [ + 224, + { + "id": [ + 4993, "uuid!" ] } ], "delete_clip_render_jobs": [ - 208, + 280, { "where": [ - 197, + 269, "clip_render_jobs_bool_exp!" ] } ], "delete_clip_render_jobs_by_pk": [ - 185, + 257, { "id": [ - 4921, + 4993, "uuid!" ] } ], "delete_custom_pages": [ - 247, + 323, { "where": [ - 241, + 314, "custom_pages_bool_exp!" ] } ], "delete_custom_pages_by_pk": [ - 237, + 309, { "id": [ - 4921, + 4993, "uuid!" ] } ], "delete_db_backups": [ - 274, + 351, { "where": [ - 268, + 345, "db_backups_bool_exp!" ] } ], "delete_db_backups_by_pk": [ - 264, + 341, { "id": [ - 4921, + 4993, "uuid!" ] } ], "delete_draft_game_picks": [ - 310, + 387, { "where": [ - 302, + 379, "draft_game_picks_bool_exp!" ] } ], "delete_draft_game_picks_by_pk": [ - 291, + 368, { "id": [ - 4921, + 4993, "uuid!" ] } ], "delete_draft_game_players": [ - 355, + 432, { "where": [ - 347, + 424, "draft_game_players_bool_exp!" ] } ], "delete_draft_game_players_by_pk": [ - 336, + 413, { "draft_game_id": [ - 4921, + 4993, "uuid!" ], "steam_id": [ - 180, + 252, "bigint!" ] } ], "delete_draft_games": [ - 400, + 477, { "where": [ - 392, + 469, "draft_games_bool_exp!" ] } ], "delete_draft_games_by_pk": [ - 381, + 458, { "id": [ - 4921, + 4993, "uuid!" ] } ], + "delete_e_award_sources": [ + 514, + { + "where": [ + 507, + "e_award_sources_bool_exp!" + ] + } + ], + "delete_e_award_sources_by_pk": [ + 504, + { + "value": [ + 80, + "String!" + ] + } + ], + "delete_e_award_tiers": [ + 534, + { + "where": [ + 527, + "e_award_tiers_bool_exp!" + ] + } + ], + "delete_e_award_tiers_by_pk": [ + 524, + { + "value": [ + 80, + "String!" + ] + } + ], "delete_e_check_in_settings": [ - 437, + 554, { "where": [ - 430, + 547, "e_check_in_settings_bool_exp!" ] } ], "delete_e_check_in_settings_by_pk": [ - 427, + 544, { "value": [ - 78, + 80, "String!" ] } ], "delete_e_draft_game_captain_selection": [ - 457, + 574, { "where": [ - 450, + 567, "e_draft_game_captain_selection_bool_exp!" ] } ], "delete_e_draft_game_captain_selection_by_pk": [ - 447, + 564, { "value": [ - 78, + 80, "String!" ] } ], "delete_e_draft_game_draft_order": [ - 478, + 595, { "where": [ - 471, + 588, "e_draft_game_draft_order_bool_exp!" ] } ], "delete_e_draft_game_draft_order_by_pk": [ - 468, + 585, { "value": [ - 78, + 80, "String!" ] } ], "delete_e_draft_game_mode": [ - 499, + 616, { "where": [ - 492, + 609, "e_draft_game_mode_bool_exp!" ] } ], "delete_e_draft_game_mode_by_pk": [ - 489, + 606, { "value": [ - 78, + 80, "String!" ] } ], "delete_e_draft_game_player_status": [ - 520, + 637, { "where": [ - 513, + 630, "e_draft_game_player_status_bool_exp!" ] } ], "delete_e_draft_game_player_status_by_pk": [ - 510, + 627, { "value": [ - 78, + 80, "String!" ] } ], "delete_e_draft_game_status": [ - 541, + 658, { "where": [ - 534, + 651, "e_draft_game_status_bool_exp!" ] } ], "delete_e_draft_game_status_by_pk": [ - 531, + 648, { "value": [ - 78, + 80, "String!" ] } ], "delete_e_event_media_access": [ - 562, + 679, { "where": [ - 555, + 672, "e_event_media_access_bool_exp!" ] } ], "delete_e_event_media_access_by_pk": [ - 552, + 669, { "value": [ - 78, + 80, "String!" ] } ], "delete_e_event_visibility": [ - 582, + 699, { "where": [ - 575, + 692, "e_event_visibility_bool_exp!" ] } ], "delete_e_event_visibility_by_pk": [ - 572, + 689, { "value": [ - 78, + 80, "String!" ] } ], "delete_e_friend_status": [ - 602, + 719, { "where": [ - 595, + 712, "e_friend_status_bool_exp!" ] } ], "delete_e_friend_status_by_pk": [ - 592, + 709, { "value": [ - 78, + 80, "String!" ] } ], "delete_e_game_cfg_types": [ - 623, + 740, { "where": [ - 616, + 733, "e_game_cfg_types_bool_exp!" ] } ], "delete_e_game_cfg_types_by_pk": [ - 613, + 730, { "value": [ - 78, + 80, "String!" ] } ], "delete_e_game_server_node_statuses": [ - 643, + 760, { "where": [ - 636, + 753, "e_game_server_node_statuses_bool_exp!" ] } ], "delete_e_game_server_node_statuses_by_pk": [ - 633, + 750, { "value": [ - 78, + 80, "String!" ] } ], "delete_e_league_movement_types": [ - 664, + 781, { "where": [ - 657, + 774, "e_league_movement_types_bool_exp!" ] } ], "delete_e_league_movement_types_by_pk": [ - 654, + 771, { "value": [ - 78, + 80, "String!" ] } ], "delete_e_league_proposal_statuses": [ - 685, + 802, { "where": [ - 678, + 795, "e_league_proposal_statuses_bool_exp!" ] } ], "delete_e_league_proposal_statuses_by_pk": [ - 675, + 792, { "value": [ - 78, + 80, "String!" ] } ], "delete_e_league_registration_statuses": [ - 706, + 823, { "where": [ - 699, + 816, "e_league_registration_statuses_bool_exp!" ] } ], "delete_e_league_registration_statuses_by_pk": [ - 696, + 813, { "value": [ - 78, + 80, "String!" ] } ], "delete_e_league_season_statuses": [ - 727, + 844, { "where": [ - 720, + 837, "e_league_season_statuses_bool_exp!" ] } ], "delete_e_league_season_statuses_by_pk": [ - 717, + 834, { "value": [ - 78, + 80, "String!" ] } ], "delete_e_lobby_access": [ - 748, + 865, { "where": [ - 741, + 858, "e_lobby_access_bool_exp!" ] } ], "delete_e_lobby_access_by_pk": [ - 738, + 855, { "value": [ - 78, + 80, "String!" ] } ], "delete_e_lobby_player_status": [ - 769, + 886, { "where": [ - 762, + 879, "e_lobby_player_status_bool_exp!" ] } ], "delete_e_lobby_player_status_by_pk": [ - 759, + 876, { "value": [ - 78, + 80, "String!" ] } ], "delete_e_map_pool_types": [ - 789, + 906, { "where": [ - 782, + 899, "e_map_pool_types_bool_exp!" ] } ], "delete_e_map_pool_types_by_pk": [ - 779, + 896, { "value": [ - 78, + 80, "String!" ] } ], "delete_e_match_clip_visibility": [ - 810, + 927, { "where": [ - 803, + 920, "e_match_clip_visibility_bool_exp!" ] } ], "delete_e_match_clip_visibility_by_pk": [ - 800, + 917, { "value": [ - 78, + 80, "String!" ] } ], "delete_e_match_map_status": [ - 830, + 947, { "where": [ - 823, + 940, "e_match_map_status_bool_exp!" ] } ], "delete_e_match_map_status_by_pk": [ - 820, + 937, { "value": [ - 78, + 80, "String!" ] } ], "delete_e_match_mode": [ - 851, + 968, { "where": [ - 844, + 961, "e_match_mode_bool_exp!" ] } ], "delete_e_match_mode_by_pk": [ - 841, + 958, { "value": [ - 78, + 80, "String!" ] } ], "delete_e_match_status": [ - 871, + 988, { "where": [ - 864, + 981, "e_match_status_bool_exp!" ] } ], "delete_e_match_status_by_pk": [ - 861, + 978, { "value": [ - 78, + 80, "String!" ] } ], "delete_e_match_types": [ - 892, + 1009, { "where": [ - 885, + 1002, "e_match_types_bool_exp!" ] } ], "delete_e_match_types_by_pk": [ - 882, + 999, { "value": [ - 78, + 80, "String!" ] } ], "delete_e_notification_types": [ - 913, + 1030, { "where": [ - 906, + 1023, "e_notification_types_bool_exp!" ] } ], "delete_e_notification_types_by_pk": [ - 903, + 1020, { "value": [ - 78, + 80, "String!" ] } ], "delete_e_objective_types": [ - 933, + 1050, { "where": [ - 926, + 1043, "e_objective_types_bool_exp!" ] } ], "delete_e_objective_types_by_pk": [ - 923, + 1040, { "value": [ - 78, + 80, "String!" ] } ], "delete_e_player_roles": [ - 953, + 1070, { "where": [ - 946, + 1063, "e_player_roles_bool_exp!" ] } ], "delete_e_player_roles_by_pk": [ - 943, + 1060, { "value": [ - 78, + 80, "String!" ] } ], "delete_e_plugin_runtimes": [ - 973, + 1090, { "where": [ - 966, + 1083, "e_plugin_runtimes_bool_exp!" ] } ], "delete_e_plugin_runtimes_by_pk": [ - 963, + 1080, { "value": [ - 78, + 80, "String!" ] } ], "delete_e_ready_settings": [ - 993, + 1110, { "where": [ - 986, + 1103, "e_ready_settings_bool_exp!" ] } ], "delete_e_ready_settings_by_pk": [ - 983, + 1100, { "value": [ - 78, + 80, "String!" ] } ], "delete_e_sanction_types": [ - 1013, + 1130, { "where": [ - 1006, + 1123, "e_sanction_types_bool_exp!" ] } ], "delete_e_sanction_types_by_pk": [ - 1003, + 1120, { "value": [ - 78, + 80, "String!" ] } ], "delete_e_scrim_request_statuses": [ - 1034, + 1151, { "where": [ - 1027, + 1144, "e_scrim_request_statuses_bool_exp!" ] } ], "delete_e_scrim_request_statuses_by_pk": [ - 1024, + 1141, { "value": [ - 78, + 80, "String!" ] } ], "delete_e_server_types": [ - 1054, + 1171, { "where": [ - 1047, + 1164, "e_server_types_bool_exp!" ] } ], "delete_e_server_types_by_pk": [ - 1044, + 1161, { "value": [ - 78, + 80, "String!" ] } ], "delete_e_sides": [ - 1074, + 1191, { "where": [ - 1067, + 1184, "e_sides_bool_exp!" ] } ], "delete_e_sides_by_pk": [ - 1064, + 1181, { "value": [ - 78, + 80, "String!" ] } ], "delete_e_system_alert_types": [ - 1094, + 1211, { "where": [ - 1087, + 1204, "e_system_alert_types_bool_exp!" ] } ], "delete_e_system_alert_types_by_pk": [ - 1084, + 1201, { "value": [ - 78, + 80, "String!" ] } ], "delete_e_team_roles": [ - 1114, + 1231, { "where": [ - 1107, + 1224, "e_team_roles_bool_exp!" ] } ], "delete_e_team_roles_by_pk": [ - 1104, + 1221, { "value": [ - 78, + 80, "String!" ] } ], "delete_e_team_roster_statuses": [ - 1135, + 1252, { "where": [ - 1128, + 1245, "e_team_roster_statuses_bool_exp!" ] } ], "delete_e_team_roster_statuses_by_pk": [ - 1125, + 1242, { "value": [ - 78, + 80, "String!" ] } ], "delete_e_timeout_settings": [ - 1155, + 1272, { "where": [ - 1148, + 1265, "e_timeout_settings_bool_exp!" ] } ], "delete_e_timeout_settings_by_pk": [ - 1145, + 1262, { "value": [ - 78, + 80, "String!" ] } ], "delete_e_tournament_categories": [ - 1175, + 1292, { "where": [ - 1168, + 1285, "e_tournament_categories_bool_exp!" ] } ], "delete_e_tournament_categories_by_pk": [ - 1165, + 1282, { "value": [ - 78, + 80, "String!" ] } ], "delete_e_tournament_stage_types": [ - 1196, + 1313, { "where": [ - 1189, + 1306, "e_tournament_stage_types_bool_exp!" ] } ], "delete_e_tournament_stage_types_by_pk": [ - 1186, + 1303, { "value": [ - 78, + 80, "String!" ] } ], "delete_e_tournament_status": [ - 1217, + 1334, { "where": [ - 1210, + 1327, "e_tournament_status_bool_exp!" ] } ], "delete_e_tournament_status_by_pk": [ - 1207, + 1324, { "value": [ - 78, + 80, "String!" ] } ], "delete_e_utility_types": [ - 1238, + 1355, { "where": [ - 1231, + 1348, "e_utility_types_bool_exp!" ] } ], "delete_e_utility_types_by_pk": [ - 1228, + 1345, { "value": [ - 78, + 80, "String!" ] } ], "delete_e_veto_pick_types": [ - 1258, + 1375, { "where": [ - 1251, + 1368, "e_veto_pick_types_bool_exp!" ] } ], "delete_e_veto_pick_types_by_pk": [ - 1248, + 1365, { "value": [ - 78, + 80, "String!" ] } ], "delete_e_winning_reasons": [ - 1278, + 1395, { "where": [ - 1271, + 1388, "e_winning_reasons_bool_exp!" ] } ], "delete_e_winning_reasons_by_pk": [ - 1268, + 1385, { "value": [ - 78, + 80, "String!" ] } ], "delete_event_match_links": [ - 1296, + 1413, { "where": [ - 1291, + 1408, "event_match_links_bool_exp!" ] } ], "delete_event_match_links_by_pk": [ - 1288, + 1405, { "event_id": [ - 4921, + 4993, "uuid!" ], "match_id": [ - 4921, + 4993, "uuid!" ] } ], "delete_event_media": [ - 1323, + 1440, { "where": [ - 1315, + 1432, "event_media_bool_exp!" ] } ], "delete_event_media_by_pk": [ - 1306, + 1423, { "id": [ - 4921, + 4993, "uuid!" ] } ], "delete_event_media_players": [ - 1345, + 1462, { "where": [ - 1337, + 1454, "event_media_players_bool_exp!" ] } ], "delete_event_media_players_by_pk": [ - 1328, + 1445, { "media_id": [ - 4921, + 4993, "uuid!" ], "steam_id": [ - 180, + 252, "bigint!" ] } ], "delete_event_organizers": [ - 1406, + 1523, { "where": [ - 1398, + 1515, "event_organizers_bool_exp!" ] } ], "delete_event_organizers_by_pk": [ - 1389, + 1506, { "event_id": [ - 4921, + 4993, "uuid!" ], "steam_id": [ - 180, + 252, "bigint!" ] } ], "delete_event_players": [ - 1447, + 1564, { "where": [ - 1439, + 1556, "event_players_bool_exp!" ] } ], "delete_event_players_by_pk": [ - 1430, + 1547, { "event_id": [ - 4921, + 4993, "uuid!" ], "steam_id": [ - 180, + 252, "bigint!" ] } ], "delete_event_teams": [ - 1485, + 1602, { "where": [ - 1478, + 1595, "event_teams_bool_exp!" ] } ], "delete_event_teams_by_pk": [ - 1471, + 1588, { "event_id": [ - 4921, + 4993, "uuid!" ], "team_id": [ - 4921, + 4993, "uuid!" ] } ], "delete_event_tournaments": [ - 1509, + 1626, { "where": [ - 1502, + 1619, "event_tournaments_bool_exp!" ] } ], "delete_event_tournaments_by_pk": [ - 1495, + 1612, { "event_id": [ - 4921, + 4993, "uuid!" ], "tournament_id": [ - 4921, + 4993, "uuid!" ] } ], "delete_events": [ - 1529, + 1646, { "where": [ - 1523, + 1640, "events_bool_exp!" ] } ], "delete_events_by_pk": [ - 1519, + 1636, { "id": [ - 4921, + 4993, "uuid!" ] } ], "delete_friends": [ - 1559, + 1676, { "where": [ - 1553, + 1670, "friends_bool_exp!" ] } ], "delete_friends_by_pk": [ - 1549, + 1666, { "other_player_steam_id": [ - 180, + 252, "bigint!" ], "player_steam_id": [ - 180, + 252, "bigint!" ] } ], "delete_game_server_nodes": [ - 1599, + 1716, { "where": [ - 1588, + 1705, "game_server_nodes_bool_exp!" ] } ], "delete_game_server_nodes_by_pk": [ - 1576, + 1693, { "id": [ - 78, + 80, "String!" ] } ], "delete_game_versions": [ - 1641, + 1758, { "where": [ - 1632, + 1749, "game_versions_bool_exp!" ] } ], "delete_game_versions_by_pk": [ - 1627, + 1744, { "build_id": [ - 38, + 40, "Int!" ] } ], "delete_gamedata_signature_validations": [ - 1674, + 1791, { "where": [ - 1665, + 1782, "gamedata_signature_validations_bool_exp!" ] } ], "delete_gamedata_signature_validations_by_pk": [ - 1660, + 1777, { "id": [ - 4921, + 4993, "uuid!" ] } ], "delete_leaderboard_entries": [ - 1712, + 1829, { "where": [ - 1707, + 1824, "leaderboard_entries_bool_exp!" ] } ], "delete_league_divisions": [ - 1737, + 1854, { "where": [ - 1731, + 1848, "league_divisions_bool_exp!" ] } ], "delete_league_divisions_by_pk": [ - 1727, + 1844, { "id": [ - 4921, + 4993, "uuid!" ] } ], "delete_league_match_weeks": [ - 1772, + 1889, { "where": [ - 1764, + 1881, "league_match_weeks_bool_exp!" ] } ], "delete_league_match_weeks_by_pk": [ - 1755, + 1872, { "id": [ - 4921, + 4993, "uuid!" ] } ], "delete_league_relegation_playoffs": [ - 1813, + 1930, { "where": [ - 1805, + 1922, "league_relegation_playoffs_bool_exp!" ] } ], "delete_league_relegation_playoffs_by_pk": [ - 1796, + 1913, { "id": [ - 4921, + 4993, "uuid!" ] } ], "delete_league_scheduling_proposals": [ - 1854, + 1971, { "where": [ - 1846, + 1963, "league_scheduling_proposals_bool_exp!" ] } ], "delete_league_scheduling_proposals_by_pk": [ - 1837, + 1954, { "id": [ - 4921, + 4993, "uuid!" ] } ], "delete_league_season_divisions": [ - 1892, + 2009, { "where": [ - 1885, + 2002, "league_season_divisions_bool_exp!" ] } ], "delete_league_season_divisions_by_pk": [ - 1878, + 1995, { "id": [ - 4921, + 4993, "uuid!" ] } ], "delete_league_seasons": [ - 1917, + 2034, { "where": [ - 1908, + 2025, "league_seasons_bool_exp!" ] } ], "delete_league_seasons_by_pk": [ - 1903, + 2020, { "id": [ - 4921, + 4993, "uuid!" ] } ], "delete_league_team_movements": [ - 1953, + 2070, { "where": [ - 1945, + 2062, "league_team_movements_bool_exp!" ] } ], "delete_league_team_movements_by_pk": [ - 1936, + 2053, { "id": [ - 4921, + 4993, "uuid!" ] } ], "delete_league_team_rosters": [ - 1994, + 2111, { "where": [ - 1986, + 2103, "league_team_rosters_bool_exp!" ] } ], "delete_league_team_rosters_by_pk": [ - 1977, + 2094, { "league_team_season_id": [ - 4921, + 4993, "uuid!" ], "player_steam_id": [ - 180, + 252, "bigint!" ] } ], "delete_league_team_seasons": [ - 2035, + 2152, { "where": [ - 2027, + 2144, "league_team_seasons_bool_exp!" ] } ], "delete_league_team_seasons_by_pk": [ - 2018, + 2135, { "id": [ - 4921, + 4993, "uuid!" ] } ], "delete_league_teams": [ - 2068, + 2185, { "where": [ - 2063, + 2180, "league_teams_bool_exp!" ] } ], "delete_league_teams_by_pk": [ - 2060, + 2177, { "id": [ - 4921, + 4993, "uuid!" ] } ], "delete_lobbies": [ - 2087, + 2204, { "where": [ - 2082, + 2199, "lobbies_bool_exp!" ] } ], "delete_lobbies_by_pk": [ - 2079, + 2196, { "id": [ - 4921, + 4993, "uuid!" ] } ], "delete_lobby_players": [ - 2117, + 2234, { "where": [ - 2109, + 2226, "lobby_players_bool_exp!" ] } ], "delete_lobby_players_by_pk": [ - 2098, + 2215, { "lobby_id": [ - 4921, + 4993, "uuid!" ], "steam_id": [ - 180, + 252, "bigint!" ] } ], "delete_map_pools": [ - 2151, + 2268, { "where": [ - 2146, + 2263, "map_pools_bool_exp!" ] } ], "delete_map_pools_by_pk": [ - 2143, + 2260, { "id": [ - 4921, + 4993, "uuid!" ] } ], "delete_maps": [ - 2178, + 2295, { "where": [ - 2171, + 2288, "maps_bool_exp!" ] } ], "delete_maps_by_pk": [ - 2162, + 2279, { "id": [ - 4921, + 4993, "uuid!" ] } ], "delete_match_clips": [ - 2208, + 2325, { "where": [ - 2200, + 2317, "match_clips_bool_exp!" ] } ], "delete_match_clips_by_pk": [ - 2191, + 2308, { "id": [ - 4921, + 4993, "uuid!" ] } ], "delete_match_demo_sessions": [ - 2254, + 2371, { "where": [ - 2243, + 2360, "match_demo_sessions_bool_exp!" ] } ], "delete_match_demo_sessions_by_pk": [ - 2233, + 2350, { "id": [ - 4921, + 4993, "uuid!" ] } ], "delete_match_lineup_players": [ - 2298, + 2415, { "where": [ - 2290, + 2407, "match_lineup_players_bool_exp!" ] } ], "delete_match_lineup_players_by_pk": [ - 2279, + 2396, { "id": [ - 4921, + 4993, "uuid!" ] } ], "delete_match_lineups": [ - 2341, + 2458, { "where": [ - 2333, + 2450, "match_lineups_bool_exp!" ] } ], "delete_match_lineups_by_pk": [ - 2324, + 2441, { "id": [ - 4921, + 4993, "uuid!" ] } ], "delete_match_map_demos": [ - 2389, + 2506, { "where": [ - 2378, + 2495, "match_map_demos_bool_exp!" ] } ], "delete_match_map_demos_by_pk": [ - 2366, + 2483, { "id": [ - 4921, + 4993, "uuid!" ] } ], "delete_match_map_rounds": [ - 2434, + 2551, { "where": [ - 2426, + 2543, "match_map_rounds_bool_exp!" ] } ], "delete_match_map_rounds_by_pk": [ - 2417, + 2534, { "id": [ - 4921, + 4993, "uuid!" ] } ], "delete_match_map_veto_picks": [ - 2472, + 2589, { "where": [ - 2465, + 2582, "match_map_veto_picks_bool_exp!" ] } ], "delete_match_map_veto_picks_by_pk": [ - 2458, + 2575, { "id": [ - 4921, + 4993, "uuid!" ] } ], "delete_match_maps": [ - 2499, + 2616, { "where": [ - 2491, + 2608, "match_maps_bool_exp!" ] } ], "delete_match_maps_by_pk": [ - 2482, + 2599, { "id": [ - 4921, + 4993, "uuid!" ] } ], "delete_match_options": [ - 2534, + 2651, { "where": [ - 2528, + 2645, "match_options_bool_exp!" ] } ], "delete_match_options_by_pk": [ - 2524, + 2641, { "id": [ - 4921, + 4993, "uuid!" ] } ], "delete_match_region_veto_picks": [ - 2566, + 2683, { "where": [ - 2559, + 2676, "match_region_veto_picks_bool_exp!" ] } ], "delete_match_region_veto_picks_by_pk": [ - 2552, + 2669, { "id": [ - 4921, + 4993, "uuid!" ] } ], "delete_match_streams": [ - 2599, + 2716, { "where": [ - 2588, + 2705, "match_streams_bool_exp!" ] } ], "delete_match_streams_by_pk": [ - 2576, + 2693, { "id": [ - 4921, + 4993, "uuid!" ] } ], "delete_match_type_cfgs": [ - 2634, + 2751, { "where": [ - 2629, + 2746, "match_type_cfgs_bool_exp!" ] } ], "delete_match_type_cfgs_by_pk": [ - 2626, + 2743, { "type": [ - 618, + 735, "e_game_cfg_types_enum!" ] } ], "delete_matches": [ - 2661, + 2778, { "where": [ - 2653, + 2770, "matches_bool_exp!" ] } ], "delete_matches_by_pk": [ - 2644, + 2761, { "id": [ - 4921, + 4993, "uuid!" ] } ], "delete_migration_hashes_hashes": [ - 2694, + 2811, { "where": [ - 2689, + 2806, "migration_hashes_hashes_bool_exp!" ] } ], "delete_migration_hashes_hashes_by_pk": [ - 2686, + 2803, { "name": [ - 78, + 80, "String!" ] } ], "delete_my_friends": [ - 2726, + 2843, { "where": [ - 2716, + 2833, "my_friends_bool_exp!" ] } ], "delete_news_articles": [ - 2760, + 2877, { "where": [ - 2754, + 2871, "news_articles_bool_exp!" ] } ], "delete_news_articles_by_pk": [ - 2750, + 2867, { "id": [ - 4921, + 4993, "uuid!" ] } ], "delete_notifications": [ - 2800, + 2917, { "where": [ - 2789, + 2906, "notifications_bool_exp!" ] } ], "delete_notifications_by_pk": [ - 2777, + 2894, { "id": [ - 4921, + 4993, "uuid!" ] } ], "delete_pending_match_import_players": [ - 2847, + 2964, { "where": [ - 2839, + 2956, "pending_match_import_players_bool_exp!" ] } ], "delete_pending_match_import_players_by_pk": [ - 2830, + 2947, { "steam_id": [ - 180, + 252, "bigint!" ], "valve_match_id": [ - 2827, + 2944, "numeric!" ] } ], "delete_pending_match_imports": [ - 2881, + 2998, { "where": [ - 2875, + 2992, "pending_match_imports_bool_exp!" ] } ], "delete_pending_match_imports_by_pk": [ - 2871, + 2988, { "valve_match_id": [ - 2827, + 2944, "numeric!" ] } ], "delete_player_aim_stats_demo": [ - 2909, + 3026, { "where": [ - 2903, + 3020, "player_aim_stats_demo_bool_exp!" ] } ], "delete_player_aim_stats_demo_by_pk": [ - 2899, + 3016, { "attacker_steam_id": [ - 180, + 252, "bigint!" ], "match_map_id": [ - 4921, + 4993, "uuid!" ] } ], "delete_player_aim_weapon_stats": [ - 2943, + 3060, { "where": [ - 2935, + 3052, "player_aim_weapon_stats_bool_exp!" ] } ], "delete_player_aim_weapon_stats_by_pk": [ - 2926, + 3043, { "match_map_id": [ - 4921, + 4993, "uuid!" ], "steam_id": [ - 180, + 252, "bigint!" ], "weapon_class": [ - 78, + 80, "String!" ] } ], "delete_player_assists": [ - 2986, + 3103, { "where": [ - 2978, + 3095, "player_assists_bool_exp!" ] } ], "delete_player_assists_by_pk": [ - 2967, + 3084, { "attacked_steam_id": [ - 180, + 252, "bigint!" ], "attacker_steam_id": [ - 180, + 252, "bigint!" ], "match_map_id": [ - 4921, + 4993, "uuid!" ], "time": [ - 4376, + 4493, "timestamptz!" ] } ], "delete_player_damages": [ - 3047, + 3164, { "where": [ - 3039, + 3156, "player_damages_bool_exp!" ] } ], "delete_player_damages_by_pk": [ - 3030, + 3147, { "id": [ - 4921, + 4993, "uuid!" ], "match_map_id": [ - 4921, + 4993, "uuid!" ], "time": [ - 4376, + 4493, "timestamptz!" ] } ], "delete_player_elo": [ - 3081, + 3198, { "where": [ - 3075, + 3192, "player_elo_bool_exp!" ] } ], "delete_player_elo_by_pk": [ - 3071, + 3188, { "match_id": [ - 4921, + 4993, "uuid!" ], "steam_id": [ - 180, + 252, "bigint!" ], "type": [ - 887, + 1004, "e_match_types_enum!" ] } ], "delete_player_faceit_rank_history": [ - 3115, + 3232, { "where": [ - 3107, + 3224, "player_faceit_rank_history_bool_exp!" ] } ], "delete_player_faceit_rank_history_by_pk": [ - 3098, + 3215, { "id": [ - 4921, + 4993, "uuid!" ] } ], "delete_player_flashes": [ - 3158, + 3275, { "where": [ - 3150, + 3267, "player_flashes_bool_exp!" ] } ], "delete_player_flashes_by_pk": [ - 3139, + 3256, { "attacked_steam_id": [ - 180, + 252, "bigint!" ], "attacker_steam_id": [ - 180, + 252, "bigint!" ], "match_map_id": [ - 4921, + 4993, "uuid!" ], "time": [ - 4376, + 4493, "timestamptz!" ] } ], "delete_player_kills": [ - 3244, + 3361, { "where": [ - 3195, + 3312, "player_kills_bool_exp!" ] } ], "delete_player_kills_by_pk": [ - 3184, + 3301, { "attacked_steam_id": [ - 180, + 252, "bigint!" ], "attacker_steam_id": [ - 180, + 252, "bigint!" ], "match_map_id": [ - 4921, + 4993, "uuid!" ], "time": [ - 4376, + 4493, "timestamptz!" ] } ], "delete_player_kills_by_weapon": [ - 3213, + 3330, { "where": [ - 3205, + 3322, "player_kills_by_weapon_bool_exp!" ] } ], "delete_player_kills_by_weapon_by_pk": [ - 3196, + 3313, { "player_steam_id": [ - 180, + 252, "bigint!" ], "with": [ - 78, + 80, "String!" ] } ], "delete_player_leaderboard_rank": [ - 3279, + 3396, { "where": [ - 3274, + 3391, "player_leaderboard_rank_bool_exp!" ] } ], "delete_player_match_map_stats": [ - 3310, + 3427, { "where": [ - 3302, + 3419, "player_match_map_stats_bool_exp!" ] } ], "delete_player_match_map_stats_by_pk": [ - 3293, + 3410, { "match_map_id": [ - 4921, + 4993, "uuid!" ], "steam_id": [ - 180, + 252, "bigint!" ] } ], "delete_player_objectives": [ - 3402, + 3519, { "where": [ - 3394, + 3511, "player_objectives_bool_exp!" ] } ], "delete_player_objectives_by_pk": [ - 3385, + 3502, { "match_map_id": [ - 4921, + 4993, "uuid!" ], "player_steam_id": [ - 180, + 252, "bigint!" ], "time": [ - 4376, + 4493, "timestamptz!" ] } ], "delete_player_premier_rank_history": [ - 3461, + 3578, { "where": [ - 3453, + 3570, "player_premier_rank_history_bool_exp!" ] } ], "delete_player_premier_rank_history_by_pk": [ - 3444, + 3561, { "id": [ - 4921, + 4993, "uuid!" ] } ], "delete_player_sanctions": [ - 3502, + 3619, { "where": [ - 3494, + 3611, "player_sanctions_bool_exp!" ] } ], "delete_player_sanctions_by_pk": [ - 3485, + 3602, { "created_at": [ - 4376, + 4493, "timestamptz!" ], "id": [ - 4921, + 4993, "uuid!" ] } ], "delete_player_season_stats": [ - 3553, + 3670, { "where": [ - 3545, + 3662, "player_season_stats_bool_exp!" ] } ], "delete_player_season_stats_by_pk": [ - 3526, + 3643, { "player_steam_id": [ - 180, + 252, "bigint!" ], "season_id": [ - 4921, + 4993, "uuid!" ] } ], "delete_player_stats": [ - 3595, + 3712, { "where": [ - 3589, + 3706, "player_stats_bool_exp!" ] } ], "delete_player_stats_by_pk": [ - 3585, + 3702, { "player_steam_id": [ - 180, + 252, "bigint!" ] } ], "delete_player_steam_bot_friend": [ - 3627, + 3744, { "where": [ - 3618, + 3735, "player_steam_bot_friend_bool_exp!" ] } ], "delete_player_steam_bot_friend_by_pk": [ - 3613, + 3730, { "steam_id": [ - 180, + 252, "bigint!" ] } ], "delete_player_steam_match_auth": [ - 3655, + 3772, { "where": [ - 3649, + 3766, "player_steam_match_auth_bool_exp!" ] } ], "delete_player_steam_match_auth_by_pk": [ - 3645, + 3762, { "steam_id": [ - 180, + 252, "bigint!" ] } ], "delete_player_unused_utility": [ - 3689, + 3806, { "where": [ - 3681, + 3798, "player_unused_utility_bool_exp!" ] } ], "delete_player_unused_utility_by_pk": [ - 3672, + 3789, { "match_map_id": [ - 4921, + 4993, "uuid!" ], "player_steam_id": [ - 180, + 252, "bigint!" ] } ], "delete_player_utility": [ - 3730, + 3847, { "where": [ - 3722, + 3839, "player_utility_bool_exp!" ] } ], "delete_player_utility_by_pk": [ - 3713, + 3830, { "attacker_steam_id": [ - 180, + 252, "bigint!" ], "match_map_id": [ - 4921, + 4993, "uuid!" ], "time": [ - 4376, + 4493, "timestamptz!" ] } ], "delete_players": [ - 3797, + 3914, { "where": [ - 3791, + 3908, "players_bool_exp!" ] } ], "delete_players_by_pk": [ - 3787, + 3904, { "steam_id": [ - 180, + 252, "bigint!" ] } ], "delete_plugin_versions": [ - 3825, + 3942, { "where": [ - 3819, + 3936, "plugin_versions_bool_exp!" ] } ], "delete_plugin_versions_by_pk": [ - 3815, + 3932, { "runtime": [ - 968, + 1085, "e_plugin_runtimes_enum!" ], "version": [ - 78, + 80, "String!" ] } ], "delete_seasons": [ - 3856, + 3973, { "where": [ - 3850, + 3967, "seasons_bool_exp!" ] } ], "delete_seasons_by_pk": [ - 3846, + 3963, { "id": [ - 4921, + 4993, "uuid!" ] } ], "delete_server_regions": [ - 3883, + 4000, { "where": [ - 3878, + 3995, "server_regions_bool_exp!" ] } ], "delete_server_regions_by_pk": [ - 3874, + 3991, { "value": [ - 78, + 80, "String!" ] } ], "delete_servers": [ - 3920, + 4037, { "where": [ - 3912, + 4029, "servers_bool_exp!" ] } ], "delete_servers_by_pk": [ - 3901, + 4018, { "id": [ - 4921, + 4993, "uuid!" ] } ], "delete_settings": [ - 3955, + 4072, { "where": [ - 3950, + 4067, "settings_bool_exp!" ] } ], "delete_settings_by_pk": [ - 3947, + 4064, { "name": [ - 78, + 80, "String!" ] } ], "delete_steam_account_claims": [ - 3981, + 4098, { "where": [ - 3974, + 4091, "steam_account_claims_bool_exp!" ] } ], "delete_steam_account_claims_by_pk": [ - 3967, + 4084, { "id": [ - 4921, + 4993, "uuid!" ] } ], "delete_steam_accounts": [ - 4001, + 4118, { "where": [ - 3995, + 4112, "steam_accounts_bool_exp!" ] } ], "delete_steam_accounts_by_pk": [ - 3991, + 4108, { "id": [ - 4921, + 4993, "uuid!" ] } ], "delete_system_alerts": [ - 4029, + 4146, { "where": [ - 4023, + 4140, "system_alerts_bool_exp!" ] } ], "delete_system_alerts_by_pk": [ - 4019, + 4136, { "id": [ - 4921, + 4993, "uuid!" ] } ], "delete_team_invites": [ - 4063, + 4180, { "where": [ - 4055, + 4172, "team_invites_bool_exp!" ] } ], "delete_team_invites_by_pk": [ - 4046, + 4163, { "id": [ - 4921, + 4993, "uuid!" ] } ], "delete_team_roster": [ - 4106, + 4223, { "where": [ - 4098, + 4215, "team_roster_bool_exp!" ] } ], "delete_team_roster_by_pk": [ - 4087, + 4204, { "player_steam_id": [ - 180, + 252, "bigint!" ], "team_id": [ - 4921, + 4993, "uuid!" ] } ], "delete_team_scrim_alerts": [ - 4142, + 4259, { "where": [ - 4136, + 4253, "team_scrim_alerts_bool_exp!" ] } ], "delete_team_scrim_alerts_by_pk": [ - 4132, + 4249, { "id": [ - 4921, + 4993, "uuid!" ] } ], "delete_team_scrim_availability": [ - 4175, + 4292, { "where": [ - 4168, + 4285, "team_scrim_availability_bool_exp!" ] } ], "delete_team_scrim_availability_by_pk": [ - 4159, + 4276, { "id": [ - 4921, + 4993, "uuid!" ] } ], "delete_team_scrim_request_proposals": [ - 4204, + 4321, { "where": [ - 4196, + 4313, "team_scrim_request_proposals_bool_exp!" ] } ], "delete_team_scrim_request_proposals_by_pk": [ - 4187, + 4304, { "id": [ - 4921, + 4993, "uuid!" ] } ], "delete_team_scrim_requests": [ - 4247, + 4364, { "where": [ - 4239, + 4356, "team_scrim_requests_bool_exp!" ] } ], "delete_team_scrim_requests_by_pk": [ - 4228, + 4345, { "id": [ - 4921, + 4993, "uuid!" ] } ], "delete_team_scrim_settings": [ - 4284, + 4401, { "where": [ - 4278, + 4395, "team_scrim_settings_bool_exp!" ] } ], "delete_team_scrim_settings_by_pk": [ - 4274, + 4391, { "id": [ - 4921, + 4993, "uuid!" ] } ], "delete_team_suggestions": [ - 4312, + 4429, { "where": [ - 4306, + 4423, "team_suggestions_bool_exp!" ] } ], "delete_team_suggestions_by_pk": [ - 4302, + 4419, { "id": [ - 4921, + 4993, "uuid!" ] } ], "delete_teams": [ - 4348, + 4465, { "where": [ - 4340, + 4457, "teams_bool_exp!" ] } ], "delete_teams_by_pk": [ - 4329, + 4446, + { + "id": [ + 4993, + "uuid!" + ] + } + ], + "delete_tournament_awards": [ + 4512, + { + "where": [ + 4504, + "tournament_awards_bool_exp!" + ] + } + ], + "delete_tournament_awards_by_pk": [ + 4495, { "id": [ - 4921, + 4993, "uuid!" ] } ], "delete_tournament_brackets": [ - 4397, + 4556, { "where": [ - 4389, + 4548, "tournament_brackets_bool_exp!" ] } ], "delete_tournament_brackets_by_pk": [ - 4378, + 4537, { "id": [ - 4921, + 4993, "uuid!" ] } ], "delete_tournament_categories": [ - 4438, + 4597, { "where": [ - 4431, + 4590, "tournament_categories_bool_exp!" ] } ], "delete_tournament_categories_by_pk": [ - 4424, + 4583, { "category": [ - 1170, + 1287, "e_tournament_categories_enum!" ], "tournament_id": [ - 4921, + 4993, "uuid!" ] } ], "delete_tournament_organizer_teams": [ - 4462, + 4621, { "where": [ - 4455, + 4614, "tournament_organizer_teams_bool_exp!" ] } ], "delete_tournament_organizer_teams_by_pk": [ - 4448, + 4607, { "team_id": [ - 4921, + 4993, "uuid!" ], "tournament_id": [ - 4921, + 4993, "uuid!" ] } ], "delete_tournament_organizers": [ - 4489, + 4648, { "where": [ - 4481, + 4640, "tournament_organizers_bool_exp!" ] } ], "delete_tournament_organizers_by_pk": [ - 4472, + 4631, { "steam_id": [ - 180, + 252, "bigint!" ], "tournament_id": [ - 4921, + 4993, "uuid!" ] } ], "delete_tournament_prizes": [ - 4530, + 4689, { "where": [ - 4522, + 4681, "tournament_prizes_bool_exp!" ] } ], "delete_tournament_prizes_by_pk": [ - 4513, + 4672, { "id": [ - 4921, + 4993, "uuid!" ] } ], "delete_tournament_stage_windows": [ - 4571, + 4730, { "where": [ - 4563, + 4722, "tournament_stage_windows_bool_exp!" ] } ], "delete_tournament_stage_windows_by_pk": [ - 4554, + 4713, { "id": [ - 4921, + 4993, "uuid!" ] } ], "delete_tournament_stages": [ - 4618, + 4777, { "where": [ - 4607, + 4766, "tournament_stages_bool_exp!" ] } ], "delete_tournament_stages_by_pk": [ - 4595, + 4754, { "id": [ - 4921, + 4993, "uuid!" ] } ], "delete_tournament_team_invites": [ - 4663, + 4822, { "where": [ - 4655, + 4814, "tournament_team_invites_bool_exp!" ] } ], "delete_tournament_team_invites_by_pk": [ - 4646, + 4805, { "id": [ - 4921, + 4993, "uuid!" ] } ], "delete_tournament_team_roster": [ - 4704, + 4863, { "where": [ - 4696, + 4855, "tournament_team_roster_bool_exp!" ] } ], "delete_tournament_team_roster_by_pk": [ - 4687, + 4846, { "player_steam_id": [ - 180, + 252, "bigint!" ], "tournament_id": [ - 4921, + 4993, "uuid!" ] } ], "delete_tournament_teams": [ - 4745, + 4904, { "where": [ - 4737, + 4896, "tournament_teams_bool_exp!" ] } ], "delete_tournament_teams_by_pk": [ - 4728, + 4887, { "id": [ - 4921, - "uuid!" - ] - } - ], - "delete_tournament_trophies": [ - 4789, - { - "where": [ - 4781, - "tournament_trophies_bool_exp!" - ] - } - ], - "delete_tournament_trophies_by_pk": [ - 4770, - { - "id": [ - 4921, - "uuid!" - ] - } - ], - "delete_tournament_trophy_configs": [ - 4832, - { - "where": [ - 4824, - "tournament_trophy_configs_bool_exp!" - ] - } - ], - "delete_tournament_trophy_configs_by_pk": [ - 4815, - { - "id": [ - 4921, + 4993, "uuid!" ] } ], "delete_tournaments": [ - 4886, + 4958, { "where": [ - 4878, + 4950, "tournaments_bool_exp!" ] } ], "delete_tournaments_by_pk": [ - 4857, + 4929, { "id": [ - 4921, + 4993, "uuid!" ] } ], "delete_v_match_captains": [ - 5086, + 5158, { "where": [ - 5081, + 5153, "v_match_captains_bool_exp!" ] } ], "delete_v_match_map_backup_rounds": [ - 5197, + 5269, { "where": [ - 5192, + 5264, "v_match_map_backup_rounds_bool_exp!" ] } ], "delete_v_player_match_map_hltv": [ - 5419, + 5491, { "where": [ - 5412, + 5484, "v_player_match_map_hltv_bool_exp!" ] } ], "delete_v_pool_maps": [ - 5578, + 5650, { "where": [ - 5572, + 5644, "v_pool_maps_bool_exp!" ] } ], "delete_v_team_stage_results": [ - 5672, + 5744, { "where": [ - 5664, + 5736, "v_team_stage_results_bool_exp!" ] } ], "delete_v_team_stage_results_by_pk": [ - 5645, + 5717, { "tournament_stage_id": [ - 4921, + 4993, "uuid!" ], "tournament_team_id": [ - 4921, + 4993, "uuid!" ] } ], "denyInvite": [ - 81, + 83, { "invite_id": [ - 4921, + 4993, "uuid!" ], "type": [ - 78, + 80, "String!" ] } ], "forfeitMatch": [ - 81, + 83, { "match_id": [ - 4921, + 4993, "uuid!" ], "winning_lineup_id": [ - 4921, + 4993, "uuid!" ] } ], "getLiveStreamSpecState": [ - 43, + 45, { "match_id": [ - 4921, + 4993, "uuid!" ] } ], "getTestUploadLink": [ - 31 + 33 + ], + "grantAward": [ + 4, + { + "award_id": [ + 4993, + "uuid!" + ], + "note": [ + 80 + ], + "player_steam_id": [ + 80 + ], + "team_id": [ + 4993 + ], + "tournament_id": [ + 4993 + ] + } ], "insert__map_pool": [ - 100, + 103, { "objects": [ - 97, + 100, "[_map_pool_insert_input!]!" ], "on_conflict": [ - 101 + 104 ] } ], "insert__map_pool_one": [ - 92, + 95, { "object": [ - 97, + 100, "_map_pool_insert_input!" ], "on_conflict": [ - 101 + 104 ] } ], "insert_abandoned_matches": [ - 128, + 131, { "objects": [ - 123, + 126, "[abandoned_matches_insert_input!]!" ], "on_conflict": [ - 129 + 132 ] } ], "insert_abandoned_matches_one": [ - 111, + 114, { "object": [ - 123, + 126, "abandoned_matches_insert_input!" ], "on_conflict": [ - 129 + 132 ] } ], "insert_api_keys": [ - 162, + 165, { "objects": [ - 159, + 162, "[api_keys_insert_input!]!" ], "on_conflict": [ - 163 + 166 ] } ], "insert_api_keys_one": [ - 152, + 155, { "object": [ - 159, + 162, "api_keys_insert_input!" ], "on_conflict": [ - 163 + 166 + ] + } + ], + "insert_award_recipients": [ + 200, + { + "objects": [ + 195, + "[award_recipients_insert_input!]!" + ], + "on_conflict": [ + 201 + ] + } + ], + "insert_award_recipients_one": [ + 183, + { + "object": [ + 195, + "award_recipients_insert_input!" + ], + "on_conflict": [ + 201 + ] + } + ], + "insert_awards": [ + 234, + { + "objects": [ + 231, + "[awards_insert_input!]!" + ], + "on_conflict": [ + 236 + ] + } + ], + "insert_awards_one": [ + 224, + { + "object": [ + 231, + "awards_insert_input!" + ], + "on_conflict": [ + 236 ] } ], "insert_clip_render_jobs": [ - 208, + 280, { "objects": [ - 203, + 275, "[clip_render_jobs_insert_input!]!" ], "on_conflict": [ - 209 + 281 ] } ], "insert_clip_render_jobs_one": [ - 185, + 257, { "object": [ - 203, + 275, "clip_render_jobs_insert_input!" ], "on_conflict": [ - 209 + 281 ] } ], "insert_custom_pages": [ - 247, + 323, { "objects": [ - 244, + 320, "[custom_pages_insert_input!]!" ], "on_conflict": [ - 248 + 324 ] } ], "insert_custom_pages_one": [ - 237, + 309, { "object": [ - 244, + 320, "custom_pages_insert_input!" ], "on_conflict": [ - 248 + 324 ] } ], "insert_db_backups": [ - 274, + 351, { "objects": [ - 271, + 348, "[db_backups_insert_input!]!" ], "on_conflict": [ - 275 + 352 ] } ], "insert_db_backups_one": [ - 264, + 341, { "object": [ - 271, + 348, "db_backups_insert_input!" ], "on_conflict": [ - 275 + 352 ] } ], "insert_draft_game_picks": [ - 310, + 387, { "objects": [ - 305, + 382, "[draft_game_picks_insert_input!]!" ], "on_conflict": [ - 311 + 388 ] } ], "insert_draft_game_picks_one": [ - 291, + 368, { "object": [ - 305, + 382, "draft_game_picks_insert_input!" ], "on_conflict": [ - 311 + 388 ] } ], "insert_draft_game_players": [ - 355, + 432, { "objects": [ - 350, + 427, "[draft_game_players_insert_input!]!" ], "on_conflict": [ - 356 + 433 ] } ], "insert_draft_game_players_one": [ - 336, + 413, { "object": [ - 350, + 427, "draft_game_players_insert_input!" ], "on_conflict": [ - 356 + 433 ] } ], "insert_draft_games": [ - 400, + 477, { "objects": [ - 395, + 472, "[draft_games_insert_input!]!" ], "on_conflict": [ - 402 + 479 ] } ], "insert_draft_games_one": [ - 381, + 458, { "object": [ - 395, + 472, "draft_games_insert_input!" ], "on_conflict": [ - 402 + 479 + ] + } + ], + "insert_e_award_sources": [ + 514, + { + "objects": [ + 511, + "[e_award_sources_insert_input!]!" + ], + "on_conflict": [ + 515 + ] + } + ], + "insert_e_award_sources_one": [ + 504, + { + "object": [ + 511, + "e_award_sources_insert_input!" + ], + "on_conflict": [ + 515 + ] + } + ], + "insert_e_award_tiers": [ + 534, + { + "objects": [ + 531, + "[e_award_tiers_insert_input!]!" + ], + "on_conflict": [ + 535 + ] + } + ], + "insert_e_award_tiers_one": [ + 524, + { + "object": [ + 531, + "e_award_tiers_insert_input!" + ], + "on_conflict": [ + 535 ] } ], "insert_e_check_in_settings": [ - 437, + 554, { "objects": [ - 434, + 551, "[e_check_in_settings_insert_input!]!" ], "on_conflict": [ - 438 + 555 ] } ], "insert_e_check_in_settings_one": [ - 427, + 544, { "object": [ - 434, + 551, "e_check_in_settings_insert_input!" ], "on_conflict": [ - 438 + 555 ] } ], "insert_e_draft_game_captain_selection": [ - 457, + 574, { "objects": [ - 454, + 571, "[e_draft_game_captain_selection_insert_input!]!" ], "on_conflict": [ - 459 + 576 ] } ], "insert_e_draft_game_captain_selection_one": [ - 447, + 564, { "object": [ - 454, + 571, "e_draft_game_captain_selection_insert_input!" ], "on_conflict": [ - 459 + 576 ] } ], "insert_e_draft_game_draft_order": [ - 478, + 595, { "objects": [ - 475, + 592, "[e_draft_game_draft_order_insert_input!]!" ], "on_conflict": [ - 480 + 597 ] } ], "insert_e_draft_game_draft_order_one": [ - 468, + 585, { "object": [ - 475, + 592, "e_draft_game_draft_order_insert_input!" ], "on_conflict": [ - 480 + 597 ] } ], "insert_e_draft_game_mode": [ - 499, + 616, { "objects": [ - 496, + 613, "[e_draft_game_mode_insert_input!]!" ], "on_conflict": [ - 501 + 618 ] } ], "insert_e_draft_game_mode_one": [ - 489, + 606, { "object": [ - 496, + 613, "e_draft_game_mode_insert_input!" ], "on_conflict": [ - 501 + 618 ] } ], "insert_e_draft_game_player_status": [ - 520, + 637, { "objects": [ - 517, + 634, "[e_draft_game_player_status_insert_input!]!" ], "on_conflict": [ - 522 + 639 ] } ], "insert_e_draft_game_player_status_one": [ - 510, + 627, { "object": [ - 517, + 634, "e_draft_game_player_status_insert_input!" ], "on_conflict": [ - 522 + 639 ] } ], "insert_e_draft_game_status": [ - 541, + 658, { "objects": [ - 538, + 655, "[e_draft_game_status_insert_input!]!" ], "on_conflict": [ - 543 + 660 ] } ], "insert_e_draft_game_status_one": [ - 531, + 648, { "object": [ - 538, + 655, "e_draft_game_status_insert_input!" ], "on_conflict": [ - 543 + 660 ] } ], "insert_e_event_media_access": [ - 562, + 679, { "objects": [ - 559, + 676, "[e_event_media_access_insert_input!]!" ], "on_conflict": [ - 563 + 680 ] } ], "insert_e_event_media_access_one": [ - 552, + 669, { "object": [ - 559, + 676, "e_event_media_access_insert_input!" ], "on_conflict": [ - 563 + 680 ] } ], "insert_e_event_visibility": [ - 582, + 699, { "objects": [ - 579, + 696, "[e_event_visibility_insert_input!]!" ], "on_conflict": [ - 583 + 700 ] } ], "insert_e_event_visibility_one": [ - 572, + 689, { "object": [ - 579, + 696, "e_event_visibility_insert_input!" ], "on_conflict": [ - 583 + 700 ] } ], "insert_e_friend_status": [ - 602, + 719, { "objects": [ - 599, + 716, "[e_friend_status_insert_input!]!" ], "on_conflict": [ - 604 + 721 ] } ], "insert_e_friend_status_one": [ - 592, + 709, { "object": [ - 599, + 716, "e_friend_status_insert_input!" ], "on_conflict": [ - 604 + 721 ] } ], "insert_e_game_cfg_types": [ - 623, + 740, { "objects": [ - 620, + 737, "[e_game_cfg_types_insert_input!]!" ], "on_conflict": [ - 624 + 741 ] } ], "insert_e_game_cfg_types_one": [ - 613, + 730, { "object": [ - 620, + 737, "e_game_cfg_types_insert_input!" ], "on_conflict": [ - 624 + 741 ] } ], "insert_e_game_server_node_statuses": [ - 643, + 760, { "objects": [ - 640, + 757, "[e_game_server_node_statuses_insert_input!]!" ], "on_conflict": [ - 645 + 762 ] } ], "insert_e_game_server_node_statuses_one": [ - 633, + 750, { "object": [ - 640, + 757, "e_game_server_node_statuses_insert_input!" ], "on_conflict": [ - 645 + 762 ] } ], "insert_e_league_movement_types": [ - 664, + 781, { "objects": [ - 661, + 778, "[e_league_movement_types_insert_input!]!" ], "on_conflict": [ - 666 + 783 ] } ], "insert_e_league_movement_types_one": [ - 654, + 771, { "object": [ - 661, + 778, "e_league_movement_types_insert_input!" ], "on_conflict": [ - 666 + 783 ] } ], "insert_e_league_proposal_statuses": [ - 685, + 802, { "objects": [ - 682, + 799, "[e_league_proposal_statuses_insert_input!]!" ], "on_conflict": [ - 687 + 804 ] } ], "insert_e_league_proposal_statuses_one": [ - 675, + 792, { "object": [ - 682, + 799, "e_league_proposal_statuses_insert_input!" ], "on_conflict": [ - 687 + 804 ] } ], "insert_e_league_registration_statuses": [ - 706, + 823, { "objects": [ - 703, + 820, "[e_league_registration_statuses_insert_input!]!" ], "on_conflict": [ - 708 + 825 ] } ], "insert_e_league_registration_statuses_one": [ - 696, + 813, { "object": [ - 703, + 820, "e_league_registration_statuses_insert_input!" ], "on_conflict": [ - 708 + 825 ] } ], "insert_e_league_season_statuses": [ - 727, + 844, { "objects": [ - 724, + 841, "[e_league_season_statuses_insert_input!]!" ], "on_conflict": [ - 729 + 846 ] } ], "insert_e_league_season_statuses_one": [ - 717, + 834, { "object": [ - 724, + 841, "e_league_season_statuses_insert_input!" ], "on_conflict": [ - 729 + 846 ] } ], "insert_e_lobby_access": [ - 748, + 865, { "objects": [ - 745, + 862, "[e_lobby_access_insert_input!]!" ], "on_conflict": [ - 750 + 867 ] } ], "insert_e_lobby_access_one": [ - 738, + 855, { "object": [ - 745, + 862, "e_lobby_access_insert_input!" ], "on_conflict": [ - 750 + 867 ] } ], "insert_e_lobby_player_status": [ - 769, + 886, { "objects": [ - 766, + 883, "[e_lobby_player_status_insert_input!]!" ], "on_conflict": [ - 770 + 887 ] } ], "insert_e_lobby_player_status_one": [ - 759, + 876, { "object": [ - 766, + 883, "e_lobby_player_status_insert_input!" ], "on_conflict": [ - 770 + 887 ] } ], "insert_e_map_pool_types": [ - 789, + 906, { "objects": [ - 786, + 903, "[e_map_pool_types_insert_input!]!" ], "on_conflict": [ - 791 + 908 ] } ], "insert_e_map_pool_types_one": [ - 779, + 896, { "object": [ - 786, + 903, "e_map_pool_types_insert_input!" ], "on_conflict": [ - 791 + 908 ] } ], "insert_e_match_clip_visibility": [ - 810, + 927, { "objects": [ - 807, + 924, "[e_match_clip_visibility_insert_input!]!" ], "on_conflict": [ - 811 + 928 ] } ], "insert_e_match_clip_visibility_one": [ - 800, + 917, { "object": [ - 807, + 924, "e_match_clip_visibility_insert_input!" ], "on_conflict": [ - 811 + 928 ] } ], "insert_e_match_map_status": [ - 830, + 947, { "objects": [ - 827, + 944, "[e_match_map_status_insert_input!]!" ], "on_conflict": [ - 832 + 949 ] } ], "insert_e_match_map_status_one": [ - 820, + 937, { "object": [ - 827, + 944, "e_match_map_status_insert_input!" ], "on_conflict": [ - 832 + 949 ] } ], "insert_e_match_mode": [ - 851, + 968, { "objects": [ - 848, + 965, "[e_match_mode_insert_input!]!" ], "on_conflict": [ - 852 + 969 ] } ], "insert_e_match_mode_one": [ - 841, + 958, { "object": [ - 848, + 965, "e_match_mode_insert_input!" ], "on_conflict": [ - 852 + 969 ] } ], "insert_e_match_status": [ - 871, + 988, { "objects": [ - 868, + 985, "[e_match_status_insert_input!]!" ], "on_conflict": [ - 873 + 990 ] } ], "insert_e_match_status_one": [ - 861, + 978, { "object": [ - 868, + 985, "e_match_status_insert_input!" ], "on_conflict": [ - 873 + 990 ] } ], "insert_e_match_types": [ - 892, + 1009, { "objects": [ - 889, + 1006, "[e_match_types_insert_input!]!" ], "on_conflict": [ - 894 + 1011 ] } ], "insert_e_match_types_one": [ - 882, + 999, { "object": [ - 889, + 1006, "e_match_types_insert_input!" ], "on_conflict": [ - 894 + 1011 ] } ], "insert_e_notification_types": [ - 913, + 1030, { "objects": [ - 910, + 1027, "[e_notification_types_insert_input!]!" ], "on_conflict": [ - 914 + 1031 ] } ], "insert_e_notification_types_one": [ - 903, + 1020, { "object": [ - 910, + 1027, "e_notification_types_insert_input!" ], "on_conflict": [ - 914 + 1031 ] } ], "insert_e_objective_types": [ - 933, + 1050, { "objects": [ - 930, + 1047, "[e_objective_types_insert_input!]!" ], "on_conflict": [ - 934 + 1051 ] } ], "insert_e_objective_types_one": [ - 923, + 1040, { "object": [ - 930, + 1047, "e_objective_types_insert_input!" ], "on_conflict": [ - 934 + 1051 ] } ], "insert_e_player_roles": [ - 953, + 1070, { "objects": [ - 950, + 1067, "[e_player_roles_insert_input!]!" ], "on_conflict": [ - 954 + 1071 ] } ], "insert_e_player_roles_one": [ - 943, + 1060, { "object": [ - 950, + 1067, "e_player_roles_insert_input!" ], "on_conflict": [ - 954 + 1071 ] } ], "insert_e_plugin_runtimes": [ - 973, + 1090, { "objects": [ - 970, + 1087, "[e_plugin_runtimes_insert_input!]!" ], "on_conflict": [ - 974 + 1091 ] } ], "insert_e_plugin_runtimes_one": [ - 963, + 1080, { "object": [ - 970, + 1087, "e_plugin_runtimes_insert_input!" ], "on_conflict": [ - 974 + 1091 ] } ], "insert_e_ready_settings": [ - 993, + 1110, { "objects": [ - 990, + 1107, "[e_ready_settings_insert_input!]!" ], "on_conflict": [ - 994 + 1111 ] } ], "insert_e_ready_settings_one": [ - 983, + 1100, { "object": [ - 990, + 1107, "e_ready_settings_insert_input!" ], "on_conflict": [ - 994 + 1111 ] } ], "insert_e_sanction_types": [ - 1013, + 1130, { "objects": [ - 1010, + 1127, "[e_sanction_types_insert_input!]!" ], "on_conflict": [ - 1015 + 1132 ] } ], "insert_e_sanction_types_one": [ - 1003, + 1120, { "object": [ - 1010, + 1127, "e_sanction_types_insert_input!" ], "on_conflict": [ - 1015 + 1132 ] } ], "insert_e_scrim_request_statuses": [ - 1034, + 1151, { "objects": [ - 1031, + 1148, "[e_scrim_request_statuses_insert_input!]!" ], "on_conflict": [ - 1035 + 1152 ] } ], "insert_e_scrim_request_statuses_one": [ - 1024, + 1141, { "object": [ - 1031, + 1148, "e_scrim_request_statuses_insert_input!" ], "on_conflict": [ - 1035 + 1152 ] } ], "insert_e_server_types": [ - 1054, + 1171, { "objects": [ - 1051, + 1168, "[e_server_types_insert_input!]!" ], "on_conflict": [ - 1055 + 1172 ] } ], "insert_e_server_types_one": [ - 1044, + 1161, { "object": [ - 1051, + 1168, "e_server_types_insert_input!" ], "on_conflict": [ - 1055 + 1172 ] } ], "insert_e_sides": [ - 1074, + 1191, { "objects": [ - 1071, + 1188, "[e_sides_insert_input!]!" ], "on_conflict": [ - 1075 + 1192 ] } ], "insert_e_sides_one": [ - 1064, + 1181, { "object": [ - 1071, + 1188, "e_sides_insert_input!" ], "on_conflict": [ - 1075 + 1192 ] } ], "insert_e_system_alert_types": [ - 1094, + 1211, { "objects": [ - 1091, + 1208, "[e_system_alert_types_insert_input!]!" ], "on_conflict": [ - 1095 + 1212 ] } ], "insert_e_system_alert_types_one": [ - 1084, + 1201, { "object": [ - 1091, + 1208, "e_system_alert_types_insert_input!" ], "on_conflict": [ - 1095 + 1212 ] } ], "insert_e_team_roles": [ - 1114, + 1231, { "objects": [ - 1111, + 1228, "[e_team_roles_insert_input!]!" ], "on_conflict": [ - 1116 + 1233 ] } ], "insert_e_team_roles_one": [ - 1104, + 1221, { "object": [ - 1111, + 1228, "e_team_roles_insert_input!" ], "on_conflict": [ - 1116 + 1233 ] } ], "insert_e_team_roster_statuses": [ - 1135, + 1252, { "objects": [ - 1132, + 1249, "[e_team_roster_statuses_insert_input!]!" ], "on_conflict": [ - 1136 + 1253 ] } ], "insert_e_team_roster_statuses_one": [ - 1125, + 1242, { "object": [ - 1132, + 1249, "e_team_roster_statuses_insert_input!" ], "on_conflict": [ - 1136 + 1253 ] } ], "insert_e_timeout_settings": [ - 1155, + 1272, { "objects": [ - 1152, + 1269, "[e_timeout_settings_insert_input!]!" ], "on_conflict": [ - 1156 + 1273 ] } ], "insert_e_timeout_settings_one": [ - 1145, + 1262, { "object": [ - 1152, + 1269, "e_timeout_settings_insert_input!" ], "on_conflict": [ - 1156 + 1273 ] } ], "insert_e_tournament_categories": [ - 1175, + 1292, { "objects": [ - 1172, + 1289, "[e_tournament_categories_insert_input!]!" ], "on_conflict": [ - 1177 + 1294 ] } ], "insert_e_tournament_categories_one": [ - 1165, + 1282, { "object": [ - 1172, + 1289, "e_tournament_categories_insert_input!" ], "on_conflict": [ - 1177 + 1294 ] } ], "insert_e_tournament_stage_types": [ - 1196, + 1313, { "objects": [ - 1193, + 1310, "[e_tournament_stage_types_insert_input!]!" ], "on_conflict": [ - 1198 + 1315 ] } ], "insert_e_tournament_stage_types_one": [ - 1186, + 1303, { "object": [ - 1193, + 1310, "e_tournament_stage_types_insert_input!" ], "on_conflict": [ - 1198 + 1315 ] } ], "insert_e_tournament_status": [ - 1217, + 1334, { "objects": [ - 1214, + 1331, "[e_tournament_status_insert_input!]!" ], "on_conflict": [ - 1219 + 1336 ] } ], "insert_e_tournament_status_one": [ - 1207, + 1324, { "object": [ - 1214, + 1331, "e_tournament_status_insert_input!" ], "on_conflict": [ - 1219 + 1336 ] } ], "insert_e_utility_types": [ - 1238, + 1355, { "objects": [ - 1235, + 1352, "[e_utility_types_insert_input!]!" ], "on_conflict": [ - 1239 + 1356 ] } ], "insert_e_utility_types_one": [ - 1228, + 1345, { "object": [ - 1235, + 1352, "e_utility_types_insert_input!" ], "on_conflict": [ - 1239 + 1356 ] } ], "insert_e_veto_pick_types": [ - 1258, + 1375, { "objects": [ - 1255, + 1372, "[e_veto_pick_types_insert_input!]!" ], "on_conflict": [ - 1259 + 1376 ] } ], "insert_e_veto_pick_types_one": [ - 1248, + 1365, { "object": [ - 1255, + 1372, "e_veto_pick_types_insert_input!" ], "on_conflict": [ - 1259 + 1376 ] } ], "insert_e_winning_reasons": [ - 1278, + 1395, { "objects": [ - 1275, + 1392, "[e_winning_reasons_insert_input!]!" ], "on_conflict": [ - 1279 + 1396 ] } ], "insert_e_winning_reasons_one": [ - 1268, + 1385, { "object": [ - 1275, + 1392, "e_winning_reasons_insert_input!" ], "on_conflict": [ - 1279 + 1396 ] } ], "insert_event_match_links": [ - 1296, + 1413, { "objects": [ - 1293, + 1410, "[event_match_links_insert_input!]!" ], "on_conflict": [ - 1297 + 1414 ] } ], "insert_event_match_links_one": [ - 1288, + 1405, { "object": [ - 1293, + 1410, "event_match_links_insert_input!" ], "on_conflict": [ - 1297 + 1414 ] } ], "insert_event_media": [ - 1323, + 1440, { "objects": [ - 1318, + 1435, "[event_media_insert_input!]!" ], "on_conflict": [ - 1325 + 1442 ] } ], "insert_event_media_one": [ - 1306, + 1423, { "object": [ - 1318, + 1435, "event_media_insert_input!" ], "on_conflict": [ - 1325 + 1442 ] } ], "insert_event_media_players": [ - 1345, + 1462, { "objects": [ - 1340, + 1457, "[event_media_players_insert_input!]!" ], "on_conflict": [ - 1346 + 1463 ] } ], "insert_event_media_players_one": [ - 1328, + 1445, { "object": [ - 1340, + 1457, "event_media_players_insert_input!" ], "on_conflict": [ - 1346 + 1463 ] } ], "insert_event_organizers": [ - 1406, + 1523, { "objects": [ - 1401, + 1518, "[event_organizers_insert_input!]!" ], "on_conflict": [ - 1407 + 1524 ] } ], "insert_event_organizers_one": [ - 1389, + 1506, { "object": [ - 1401, + 1518, "event_organizers_insert_input!" ], "on_conflict": [ - 1407 + 1524 ] } ], "insert_event_players": [ - 1447, + 1564, { "objects": [ - 1442, + 1559, "[event_players_insert_input!]!" ], "on_conflict": [ - 1448 + 1565 ] } ], "insert_event_players_one": [ - 1430, + 1547, { "object": [ - 1442, + 1559, "event_players_insert_input!" ], "on_conflict": [ - 1448 + 1565 ] } ], "insert_event_teams": [ - 1485, + 1602, { "objects": [ - 1480, + 1597, "[event_teams_insert_input!]!" ], "on_conflict": [ - 1486 + 1603 ] } ], "insert_event_teams_one": [ - 1471, + 1588, { "object": [ - 1480, + 1597, "event_teams_insert_input!" ], "on_conflict": [ - 1486 + 1603 ] } ], "insert_event_tournaments": [ - 1509, + 1626, { "objects": [ - 1504, + 1621, "[event_tournaments_insert_input!]!" ], "on_conflict": [ - 1510 + 1627 ] } ], "insert_event_tournaments_one": [ - 1495, + 1612, { "object": [ - 1504, + 1621, "event_tournaments_insert_input!" ], "on_conflict": [ - 1510 + 1627 ] } ], "insert_events": [ - 1529, + 1646, { "objects": [ - 1526, + 1643, "[events_insert_input!]!" ], "on_conflict": [ - 1531 + 1648 ] } ], "insert_events_one": [ - 1519, + 1636, { "object": [ - 1526, + 1643, "events_insert_input!" ], "on_conflict": [ - 1531 + 1648 ] } ], "insert_friends": [ - 1559, + 1676, { "objects": [ - 1556, + 1673, "[friends_insert_input!]!" ], "on_conflict": [ - 1560 + 1677 ] } ], "insert_friends_one": [ - 1549, + 1666, { "object": [ - 1556, + 1673, "friends_insert_input!" ], "on_conflict": [ - 1560 + 1677 ] } ], "insert_game_server_nodes": [ - 1599, + 1716, { "objects": [ - 1594, + 1711, "[game_server_nodes_insert_input!]!" ], "on_conflict": [ - 1601 + 1718 ] } ], "insert_game_server_nodes_one": [ - 1576, + 1693, { "object": [ - 1594, + 1711, "game_server_nodes_insert_input!" ], "on_conflict": [ - 1601 + 1718 ] } ], "insert_game_versions": [ - 1641, + 1758, { "objects": [ - 1638, + 1755, "[game_versions_insert_input!]!" ], "on_conflict": [ - 1643 + 1760 ] } ], "insert_game_versions_one": [ - 1627, + 1744, { "object": [ - 1638, + 1755, "game_versions_insert_input!" ], "on_conflict": [ - 1643 + 1760 ] } ], "insert_gamedata_signature_validations": [ - 1674, + 1791, { "objects": [ - 1671, + 1788, "[gamedata_signature_validations_insert_input!]!" ], "on_conflict": [ - 1675 + 1792 ] } ], "insert_gamedata_signature_validations_one": [ - 1660, + 1777, { "object": [ - 1671, + 1788, "gamedata_signature_validations_insert_input!" ], "on_conflict": [ - 1675 + 1792 ] } ], "insert_leaderboard_entries": [ - 1712, + 1829, { "objects": [ - 1709, + 1826, "[leaderboard_entries_insert_input!]!" ] } ], "insert_leaderboard_entries_one": [ - 1703, + 1820, { "object": [ - 1709, + 1826, "leaderboard_entries_insert_input!" ] } ], "insert_league_divisions": [ - 1737, + 1854, { "objects": [ - 1734, + 1851, "[league_divisions_insert_input!]!" ], "on_conflict": [ - 1739 + 1856 ] } ], "insert_league_divisions_one": [ - 1727, + 1844, { "object": [ - 1734, + 1851, "league_divisions_insert_input!" ], "on_conflict": [ - 1739 + 1856 ] } ], "insert_league_match_weeks": [ - 1772, + 1889, { "objects": [ - 1767, + 1884, "[league_match_weeks_insert_input!]!" ], "on_conflict": [ - 1773 + 1890 ] } ], "insert_league_match_weeks_one": [ - 1755, + 1872, { "object": [ - 1767, + 1884, "league_match_weeks_insert_input!" ], "on_conflict": [ - 1773 + 1890 ] } ], "insert_league_relegation_playoffs": [ - 1813, + 1930, { "objects": [ - 1808, + 1925, "[league_relegation_playoffs_insert_input!]!" ], "on_conflict": [ - 1814 + 1931 ] } ], "insert_league_relegation_playoffs_one": [ - 1796, + 1913, { "object": [ - 1808, + 1925, "league_relegation_playoffs_insert_input!" ], "on_conflict": [ - 1814 + 1931 ] } ], "insert_league_scheduling_proposals": [ - 1854, + 1971, { "objects": [ - 1849, + 1966, "[league_scheduling_proposals_insert_input!]!" ], "on_conflict": [ - 1855 + 1972 ] } ], "insert_league_scheduling_proposals_one": [ - 1837, + 1954, { "object": [ - 1849, + 1966, "league_scheduling_proposals_insert_input!" ], "on_conflict": [ - 1855 + 1972 ] } ], "insert_league_season_divisions": [ - 1892, + 2009, { "objects": [ - 1887, + 2004, "[league_season_divisions_insert_input!]!" ], "on_conflict": [ - 1894 + 2011 ] } ], "insert_league_season_divisions_one": [ - 1878, + 1995, { "object": [ - 1887, + 2004, "league_season_divisions_insert_input!" ], "on_conflict": [ - 1894 + 2011 ] } ], "insert_league_seasons": [ - 1917, + 2034, { "objects": [ - 1914, + 2031, "[league_seasons_insert_input!]!" ], "on_conflict": [ - 1919 + 2036 ] } ], "insert_league_seasons_one": [ - 1903, + 2020, { "object": [ - 1914, + 2031, "league_seasons_insert_input!" ], "on_conflict": [ - 1919 + 2036 ] } ], "insert_league_team_movements": [ - 1953, + 2070, { "objects": [ - 1948, + 2065, "[league_team_movements_insert_input!]!" ], "on_conflict": [ - 1954 + 2071 ] } ], "insert_league_team_movements_one": [ - 1936, + 2053, { "object": [ - 1948, + 2065, "league_team_movements_insert_input!" ], "on_conflict": [ - 1954 + 2071 ] } ], "insert_league_team_rosters": [ - 1994, + 2111, { "objects": [ - 1989, + 2106, "[league_team_rosters_insert_input!]!" ], "on_conflict": [ - 1995 + 2112 ] } ], "insert_league_team_rosters_one": [ - 1977, + 2094, { "object": [ - 1989, + 2106, "league_team_rosters_insert_input!" ], "on_conflict": [ - 1995 + 2112 ] } ], "insert_league_team_seasons": [ - 2035, + 2152, { "objects": [ - 2030, + 2147, "[league_team_seasons_insert_input!]!" ], "on_conflict": [ - 2037 + 2154 ] } ], "insert_league_team_seasons_one": [ - 2018, + 2135, { "object": [ - 2030, + 2147, "league_team_seasons_insert_input!" ], "on_conflict": [ - 2037 + 2154 ] } ], "insert_league_teams": [ - 2068, + 2185, { "objects": [ - 2065, + 2182, "[league_teams_insert_input!]!" ], "on_conflict": [ - 2070 + 2187 ] } ], "insert_league_teams_one": [ - 2060, + 2177, { "object": [ - 2065, + 2182, "league_teams_insert_input!" ], "on_conflict": [ - 2070 + 2187 ] } ], "insert_lobbies": [ - 2087, + 2204, { "objects": [ - 2084, + 2201, "[lobbies_insert_input!]!" ], "on_conflict": [ - 2089 + 2206 ] } ], "insert_lobbies_one": [ - 2079, + 2196, { "object": [ - 2084, + 2201, "lobbies_insert_input!" ], "on_conflict": [ - 2089 + 2206 ] } ], "insert_lobby_players": [ - 2117, + 2234, { "objects": [ - 2112, + 2229, "[lobby_players_insert_input!]!" ], "on_conflict": [ - 2118 + 2235 ] } ], "insert_lobby_players_one": [ - 2098, + 2215, { "object": [ - 2112, + 2229, "lobby_players_insert_input!" ], "on_conflict": [ - 2118 + 2235 ] } ], "insert_map_pools": [ - 2151, + 2268, { "objects": [ - 2148, + 2265, "[map_pools_insert_input!]!" ], "on_conflict": [ - 2153 + 2270 ] } ], "insert_map_pools_one": [ - 2143, + 2260, { "object": [ - 2148, + 2265, "map_pools_insert_input!" ], "on_conflict": [ - 2153 + 2270 ] } ], "insert_maps": [ - 2178, + 2295, { "objects": [ - 2173, + 2290, "[maps_insert_input!]!" ], "on_conflict": [ - 2180 + 2297 ] } ], "insert_maps_one": [ - 2162, + 2279, { "object": [ - 2173, + 2290, "maps_insert_input!" ], "on_conflict": [ - 2180 + 2297 ] } ], "insert_match_clips": [ - 2208, + 2325, { "objects": [ - 2203, + 2320, "[match_clips_insert_input!]!" ], "on_conflict": [ - 2210 + 2327 ] } ], "insert_match_clips_one": [ - 2191, + 2308, { "object": [ - 2203, + 2320, "match_clips_insert_input!" ], "on_conflict": [ - 2210 + 2327 ] } ], "insert_match_demo_sessions": [ - 2254, + 2371, { "objects": [ - 2249, + 2366, "[match_demo_sessions_insert_input!]!" ], "on_conflict": [ - 2255 + 2372 ] } ], "insert_match_demo_sessions_one": [ - 2233, + 2350, { "object": [ - 2249, + 2366, "match_demo_sessions_insert_input!" ], "on_conflict": [ - 2255 + 2372 ] } ], "insert_match_lineup_players": [ - 2298, + 2415, { "objects": [ - 2293, + 2410, "[match_lineup_players_insert_input!]!" ], "on_conflict": [ - 2299 + 2416 ] } ], "insert_match_lineup_players_one": [ - 2279, + 2396, { "object": [ - 2293, + 2410, "match_lineup_players_insert_input!" ], "on_conflict": [ - 2299 + 2416 ] } ], "insert_match_lineups": [ - 2341, + 2458, { "objects": [ - 2336, + 2453, "[match_lineups_insert_input!]!" ], "on_conflict": [ - 2343 + 2460 ] } ], "insert_match_lineups_one": [ - 2324, + 2441, { "object": [ - 2336, + 2453, "match_lineups_insert_input!" ], "on_conflict": [ - 2343 + 2460 ] } ], "insert_match_map_demos": [ - 2389, + 2506, { "objects": [ - 2384, + 2501, "[match_map_demos_insert_input!]!" ], "on_conflict": [ - 2391 + 2508 ] } ], "insert_match_map_demos_one": [ - 2366, + 2483, { "object": [ - 2384, + 2501, "match_map_demos_insert_input!" ], "on_conflict": [ - 2391 + 2508 ] } ], "insert_match_map_rounds": [ - 2434, + 2551, { "objects": [ - 2429, + 2546, "[match_map_rounds_insert_input!]!" ], "on_conflict": [ - 2435 + 2552 ] } ], "insert_match_map_rounds_one": [ - 2417, + 2534, { "object": [ - 2429, + 2546, "match_map_rounds_insert_input!" ], "on_conflict": [ - 2435 + 2552 ] } ], "insert_match_map_veto_picks": [ - 2472, + 2589, { "objects": [ - 2467, + 2584, "[match_map_veto_picks_insert_input!]!" ], "on_conflict": [ - 2473 + 2590 ] } ], "insert_match_map_veto_picks_one": [ - 2458, + 2575, { "object": [ - 2467, + 2584, "match_map_veto_picks_insert_input!" ], "on_conflict": [ - 2473 + 2590 ] } ], "insert_match_maps": [ - 2499, + 2616, { "objects": [ - 2494, + 2611, "[match_maps_insert_input!]!" ], "on_conflict": [ - 2501 + 2618 ] } ], "insert_match_maps_one": [ - 2482, + 2599, { "object": [ - 2494, + 2611, "match_maps_insert_input!" ], "on_conflict": [ - 2501 + 2618 ] } ], "insert_match_options": [ - 2534, + 2651, { "objects": [ - 2531, + 2648, "[match_options_insert_input!]!" ], "on_conflict": [ - 2536 + 2653 ] } ], "insert_match_options_one": [ - 2524, + 2641, { "object": [ - 2531, + 2648, "match_options_insert_input!" ], "on_conflict": [ - 2536 + 2653 ] } ], "insert_match_region_veto_picks": [ - 2566, + 2683, { "objects": [ - 2561, + 2678, "[match_region_veto_picks_insert_input!]!" ], "on_conflict": [ - 2567 + 2684 ] } ], "insert_match_region_veto_picks_one": [ - 2552, + 2669, { "object": [ - 2561, + 2678, "match_region_veto_picks_insert_input!" ], "on_conflict": [ - 2567 + 2684 ] } ], "insert_match_streams": [ - 2599, + 2716, { "objects": [ - 2594, + 2711, "[match_streams_insert_input!]!" ], "on_conflict": [ - 2600 + 2717 ] } ], "insert_match_streams_one": [ - 2576, + 2693, { "object": [ - 2594, + 2711, "match_streams_insert_input!" ], "on_conflict": [ - 2600 + 2717 ] } ], "insert_match_type_cfgs": [ - 2634, + 2751, { "objects": [ - 2631, + 2748, "[match_type_cfgs_insert_input!]!" ], "on_conflict": [ - 2635 + 2752 ] } ], "insert_match_type_cfgs_one": [ - 2626, + 2743, { "object": [ - 2631, + 2748, "match_type_cfgs_insert_input!" ], "on_conflict": [ - 2635 + 2752 ] } ], "insert_matches": [ - 2661, + 2778, { "objects": [ - 2656, + 2773, "[matches_insert_input!]!" ], "on_conflict": [ - 2663 + 2780 ] } ], "insert_matches_one": [ - 2644, + 2761, { "object": [ - 2656, + 2773, "matches_insert_input!" ], "on_conflict": [ - 2663 + 2780 ] } ], "insert_migration_hashes_hashes": [ - 2694, + 2811, { "objects": [ - 2691, + 2808, "[migration_hashes_hashes_insert_input!]!" ], "on_conflict": [ - 2695 + 2812 ] } ], "insert_migration_hashes_hashes_one": [ - 2686, + 2803, { "object": [ - 2691, + 2808, "migration_hashes_hashes_insert_input!" ], "on_conflict": [ - 2695 + 2812 ] } ], "insert_my_friends": [ - 2726, + 2843, { "objects": [ - 2721, + 2838, "[my_friends_insert_input!]!" ] } ], "insert_my_friends_one": [ - 2704, + 2821, { "object": [ - 2721, + 2838, "my_friends_insert_input!" ] } ], "insert_news_articles": [ - 2760, + 2877, { "objects": [ - 2757, + 2874, "[news_articles_insert_input!]!" ], "on_conflict": [ - 2761 + 2878 ] } ], "insert_news_articles_one": [ - 2750, + 2867, { "object": [ - 2757, + 2874, "news_articles_insert_input!" ], "on_conflict": [ - 2761 + 2878 ] } ], "insert_notifications": [ - 2800, + 2917, { "objects": [ - 2795, + 2912, "[notifications_insert_input!]!" ], "on_conflict": [ - 2801 + 2918 ] } ], "insert_notifications_one": [ - 2777, + 2894, { "object": [ - 2795, + 2912, "notifications_insert_input!" ], "on_conflict": [ - 2801 + 2918 ] } ], "insert_pending_match_import_players": [ - 2847, + 2964, { "objects": [ - 2842, + 2959, "[pending_match_import_players_insert_input!]!" ], "on_conflict": [ - 2848 + 2965 ] } ], "insert_pending_match_import_players_one": [ - 2830, + 2947, { "object": [ - 2842, + 2959, "pending_match_import_players_insert_input!" ], "on_conflict": [ - 2848 + 2965 ] } ], "insert_pending_match_imports": [ - 2881, + 2998, { "objects": [ - 2878, + 2995, "[pending_match_imports_insert_input!]!" ], "on_conflict": [ - 2883 + 3000 ] } ], "insert_pending_match_imports_one": [ - 2871, + 2988, { "object": [ - 2878, + 2995, "pending_match_imports_insert_input!" ], "on_conflict": [ - 2883 + 3000 ] } ], "insert_player_aim_stats_demo": [ - 2909, + 3026, { "objects": [ - 2906, + 3023, "[player_aim_stats_demo_insert_input!]!" ], "on_conflict": [ - 2910 + 3027 ] } ], "insert_player_aim_stats_demo_one": [ - 2899, + 3016, { "object": [ - 2906, + 3023, "player_aim_stats_demo_insert_input!" ], "on_conflict": [ - 2910 + 3027 ] } ], "insert_player_aim_weapon_stats": [ - 2943, + 3060, { "objects": [ - 2938, + 3055, "[player_aim_weapon_stats_insert_input!]!" ], "on_conflict": [ - 2944 + 3061 ] } ], "insert_player_aim_weapon_stats_one": [ - 2926, + 3043, { "object": [ - 2938, + 3055, "player_aim_weapon_stats_insert_input!" ], "on_conflict": [ - 2944 + 3061 ] } ], "insert_player_assists": [ - 2986, + 3103, { "objects": [ - 2981, + 3098, "[player_assists_insert_input!]!" ], "on_conflict": [ - 2987 + 3104 ] } ], "insert_player_assists_one": [ - 2967, + 3084, { "object": [ - 2981, + 3098, "player_assists_insert_input!" ], "on_conflict": [ - 2987 + 3104 ] } ], "insert_player_damages": [ - 3047, + 3164, { "objects": [ - 3042, + 3159, "[player_damages_insert_input!]!" ], "on_conflict": [ - 3048 + 3165 ] } ], "insert_player_damages_one": [ - 3030, + 3147, { "object": [ - 3042, + 3159, "player_damages_insert_input!" ], "on_conflict": [ - 3048 + 3165 ] } ], "insert_player_elo": [ - 3081, + 3198, { "objects": [ - 3078, + 3195, "[player_elo_insert_input!]!" ], "on_conflict": [ - 3082 + 3199 ] } ], "insert_player_elo_one": [ - 3071, + 3188, { "object": [ - 3078, + 3195, "player_elo_insert_input!" ], "on_conflict": [ - 3082 + 3199 ] } ], "insert_player_faceit_rank_history": [ - 3115, + 3232, { "objects": [ - 3110, + 3227, "[player_faceit_rank_history_insert_input!]!" ], "on_conflict": [ - 3116 + 3233 ] } ], "insert_player_faceit_rank_history_one": [ - 3098, + 3215, { "object": [ - 3110, + 3227, "player_faceit_rank_history_insert_input!" ], "on_conflict": [ - 3116 + 3233 ] } ], "insert_player_flashes": [ - 3158, + 3275, { "objects": [ - 3153, + 3270, "[player_flashes_insert_input!]!" ], "on_conflict": [ - 3159 + 3276 ] } ], "insert_player_flashes_one": [ - 3139, + 3256, { "object": [ - 3153, + 3270, "player_flashes_insert_input!" ], "on_conflict": [ - 3159 + 3276 ] } ], "insert_player_kills": [ - 3244, + 3361, { "objects": [ - 3239, + 3356, "[player_kills_insert_input!]!" ], "on_conflict": [ - 3245 + 3362 ] } ], "insert_player_kills_by_weapon": [ - 3213, + 3330, { "objects": [ - 3208, + 3325, "[player_kills_by_weapon_insert_input!]!" ], "on_conflict": [ - 3214 + 3331 ] } ], "insert_player_kills_by_weapon_one": [ - 3196, + 3313, { "object": [ - 3208, + 3325, "player_kills_by_weapon_insert_input!" ], "on_conflict": [ - 3214 + 3331 ] } ], "insert_player_kills_one": [ - 3184, + 3301, { "object": [ - 3239, + 3356, "player_kills_insert_input!" ], "on_conflict": [ - 3245 + 3362 ] } ], "insert_player_leaderboard_rank": [ - 3279, + 3396, { "objects": [ - 3276, + 3393, "[player_leaderboard_rank_insert_input!]!" ] } ], "insert_player_leaderboard_rank_one": [ - 3270, + 3387, { "object": [ - 3276, + 3393, "player_leaderboard_rank_insert_input!" ] } ], "insert_player_match_map_stats": [ - 3310, + 3427, { "objects": [ - 3305, + 3422, "[player_match_map_stats_insert_input!]!" ], "on_conflict": [ - 3311 + 3428 ] } ], "insert_player_match_map_stats_one": [ - 3293, + 3410, { "object": [ - 3305, + 3422, "player_match_map_stats_insert_input!" ], "on_conflict": [ - 3311 + 3428 ] } ], "insert_player_objectives": [ - 3402, + 3519, { "objects": [ - 3397, + 3514, "[player_objectives_insert_input!]!" ], "on_conflict": [ - 3403 + 3520 ] } ], "insert_player_objectives_one": [ - 3385, + 3502, { "object": [ - 3397, + 3514, "player_objectives_insert_input!" ], "on_conflict": [ - 3403 + 3520 ] } ], "insert_player_premier_rank_history": [ - 3461, + 3578, { "objects": [ - 3456, + 3573, "[player_premier_rank_history_insert_input!]!" ], "on_conflict": [ - 3462 + 3579 ] } ], "insert_player_premier_rank_history_one": [ - 3444, + 3561, { "object": [ - 3456, + 3573, "player_premier_rank_history_insert_input!" ], "on_conflict": [ - 3462 + 3579 ] } ], "insert_player_sanctions": [ - 3502, + 3619, { "objects": [ - 3497, + 3614, "[player_sanctions_insert_input!]!" ], "on_conflict": [ - 3503 + 3620 ] } ], "insert_player_sanctions_one": [ - 3485, + 3602, { "object": [ - 3497, + 3614, "player_sanctions_insert_input!" ], "on_conflict": [ - 3503 + 3620 ] } ], "insert_player_season_stats": [ - 3553, + 3670, { "objects": [ - 3548, + 3665, "[player_season_stats_insert_input!]!" ], "on_conflict": [ - 3554 + 3671 ] } ], "insert_player_season_stats_one": [ - 3526, + 3643, { "object": [ - 3548, + 3665, "player_season_stats_insert_input!" ], "on_conflict": [ - 3554 + 3671 ] } ], "insert_player_stats": [ - 3595, + 3712, { "objects": [ - 3592, + 3709, "[player_stats_insert_input!]!" ], "on_conflict": [ - 3597 + 3714 ] } ], "insert_player_stats_one": [ - 3585, + 3702, { "object": [ - 3592, + 3709, "player_stats_insert_input!" ], "on_conflict": [ - 3597 + 3714 ] } ], "insert_player_steam_bot_friend": [ - 3627, + 3744, { "objects": [ - 3624, + 3741, "[player_steam_bot_friend_insert_input!]!" ], "on_conflict": [ - 3628 + 3745 ] } ], "insert_player_steam_bot_friend_one": [ - 3613, + 3730, { "object": [ - 3624, + 3741, "player_steam_bot_friend_insert_input!" ], "on_conflict": [ - 3628 + 3745 ] } ], "insert_player_steam_match_auth": [ - 3655, + 3772, { "objects": [ - 3652, + 3769, "[player_steam_match_auth_insert_input!]!" ], "on_conflict": [ - 3656 + 3773 ] } ], "insert_player_steam_match_auth_one": [ - 3645, + 3762, { "object": [ - 3652, + 3769, "player_steam_match_auth_insert_input!" ], "on_conflict": [ - 3656 + 3773 ] } ], "insert_player_unused_utility": [ - 3689, + 3806, { "objects": [ - 3684, + 3801, "[player_unused_utility_insert_input!]!" ], "on_conflict": [ - 3690 + 3807 ] } ], "insert_player_unused_utility_one": [ - 3672, + 3789, { "object": [ - 3684, + 3801, "player_unused_utility_insert_input!" ], "on_conflict": [ - 3690 + 3807 ] } ], "insert_player_utility": [ - 3730, + 3847, { "objects": [ - 3725, + 3842, "[player_utility_insert_input!]!" ], "on_conflict": [ - 3731 + 3848 ] } ], "insert_player_utility_one": [ - 3713, + 3830, { "object": [ - 3725, + 3842, "player_utility_insert_input!" ], "on_conflict": [ - 3731 + 3848 ] } ], "insert_players": [ - 3797, + 3914, { "objects": [ - 3794, + 3911, "[players_insert_input!]!" ], "on_conflict": [ - 3799 + 3916 ] } ], "insert_players_one": [ - 3787, + 3904, { "object": [ - 3794, + 3911, "players_insert_input!" ], "on_conflict": [ - 3799 + 3916 ] } ], "insert_plugin_versions": [ - 3825, + 3942, { "objects": [ - 3822, + 3939, "[plugin_versions_insert_input!]!" ], "on_conflict": [ - 3826 + 3943 ] } ], "insert_plugin_versions_one": [ - 3815, + 3932, { "object": [ - 3822, + 3939, "plugin_versions_insert_input!" ], "on_conflict": [ - 3826 + 3943 ] } ], "insert_seasons": [ - 3856, + 3973, { "objects": [ - 3853, + 3970, "[seasons_insert_input!]!" ], "on_conflict": [ - 3858 + 3975 ] } ], "insert_seasons_one": [ - 3846, + 3963, { "object": [ - 3853, + 3970, "seasons_insert_input!" ], "on_conflict": [ - 3858 + 3975 ] } ], "insert_server_regions": [ - 3883, + 4000, { "objects": [ - 3880, + 3997, "[server_regions_insert_input!]!" ], "on_conflict": [ - 3885 + 4002 ] } ], "insert_server_regions_one": [ - 3874, + 3991, { "object": [ - 3880, + 3997, "server_regions_insert_input!" ], "on_conflict": [ - 3885 + 4002 ] } ], "insert_servers": [ - 3920, + 4037, { "objects": [ - 3915, + 4032, "[servers_insert_input!]!" ], "on_conflict": [ - 3922 + 4039 ] } ], "insert_servers_one": [ - 3901, + 4018, { "object": [ - 3915, + 4032, "servers_insert_input!" ], "on_conflict": [ - 3922 + 4039 ] } ], "insert_settings": [ - 3955, + 4072, { "objects": [ - 3952, + 4069, "[settings_insert_input!]!" ], "on_conflict": [ - 3956 + 4073 ] } ], "insert_settings_one": [ - 3947, + 4064, { "object": [ - 3952, + 4069, "settings_insert_input!" ], "on_conflict": [ - 3956 + 4073 ] } ], "insert_steam_account_claims": [ - 3981, + 4098, { "objects": [ - 3976, + 4093, "[steam_account_claims_insert_input!]!" ], "on_conflict": [ - 3982 + 4099 ] } ], "insert_steam_account_claims_one": [ - 3967, + 4084, { "object": [ - 3976, + 4093, "steam_account_claims_insert_input!" ], "on_conflict": [ - 3982 + 4099 ] } ], "insert_steam_accounts": [ - 4001, + 4118, { "objects": [ - 3998, + 4115, "[steam_accounts_insert_input!]!" ], "on_conflict": [ - 4003 + 4120 ] } ], "insert_steam_accounts_one": [ - 3991, + 4108, { "object": [ - 3998, + 4115, "steam_accounts_insert_input!" ], "on_conflict": [ - 4003 + 4120 ] } ], "insert_system_alerts": [ - 4029, + 4146, { "objects": [ - 4026, + 4143, "[system_alerts_insert_input!]!" ], "on_conflict": [ - 4030 + 4147 ] } ], "insert_system_alerts_one": [ - 4019, + 4136, { "object": [ - 4026, + 4143, "system_alerts_insert_input!" ], "on_conflict": [ - 4030 + 4147 ] } ], "insert_team_invites": [ - 4063, + 4180, { "objects": [ - 4058, + 4175, "[team_invites_insert_input!]!" ], "on_conflict": [ - 4064 + 4181 ] } ], "insert_team_invites_one": [ - 4046, + 4163, { "object": [ - 4058, + 4175, "team_invites_insert_input!" ], "on_conflict": [ - 4064 + 4181 ] } ], "insert_team_roster": [ - 4106, + 4223, { "objects": [ - 4101, + 4218, "[team_roster_insert_input!]!" ], "on_conflict": [ - 4107 + 4224 ] } ], "insert_team_roster_one": [ - 4087, + 4204, { "object": [ - 4101, + 4218, "team_roster_insert_input!" ], "on_conflict": [ - 4107 + 4224 ] } ], "insert_team_scrim_alerts": [ - 4142, + 4259, { "objects": [ - 4139, + 4256, "[team_scrim_alerts_insert_input!]!" ], "on_conflict": [ - 4143 + 4260 ] } ], "insert_team_scrim_alerts_one": [ - 4132, + 4249, { "object": [ - 4139, + 4256, "team_scrim_alerts_insert_input!" ], "on_conflict": [ - 4143 + 4260 ] } ], "insert_team_scrim_availability": [ - 4175, + 4292, { "objects": [ - 4170, + 4287, "[team_scrim_availability_insert_input!]!" ], "on_conflict": [ - 4176 + 4293 ] } ], "insert_team_scrim_availability_one": [ - 4159, + 4276, { "object": [ - 4170, + 4287, "team_scrim_availability_insert_input!" ], "on_conflict": [ - 4176 + 4293 ] } ], "insert_team_scrim_request_proposals": [ - 4204, + 4321, { "objects": [ - 4199, + 4316, "[team_scrim_request_proposals_insert_input!]!" ], "on_conflict": [ - 4205 + 4322 ] } ], "insert_team_scrim_request_proposals_one": [ - 4187, + 4304, { "object": [ - 4199, + 4316, "team_scrim_request_proposals_insert_input!" ], "on_conflict": [ - 4205 + 4322 ] } ], "insert_team_scrim_requests": [ - 4247, + 4364, { "objects": [ - 4242, + 4359, "[team_scrim_requests_insert_input!]!" ], "on_conflict": [ - 4249 + 4366 ] } ], "insert_team_scrim_requests_one": [ - 4228, + 4345, { "object": [ - 4242, + 4359, "team_scrim_requests_insert_input!" ], "on_conflict": [ - 4249 + 4366 ] } ], "insert_team_scrim_settings": [ - 4284, + 4401, { "objects": [ - 4281, + 4398, "[team_scrim_settings_insert_input!]!" ], "on_conflict": [ - 4286 + 4403 ] } ], "insert_team_scrim_settings_one": [ - 4274, + 4391, { "object": [ - 4281, + 4398, "team_scrim_settings_insert_input!" ], "on_conflict": [ - 4286 + 4403 ] } ], "insert_team_suggestions": [ - 4312, + 4429, { "objects": [ - 4309, + 4426, "[team_suggestions_insert_input!]!" ], "on_conflict": [ - 4313 + 4430 ] } ], "insert_team_suggestions_one": [ - 4302, + 4419, { "object": [ - 4309, + 4426, "team_suggestions_insert_input!" ], "on_conflict": [ - 4313 + 4430 ] } ], "insert_teams": [ - 4348, + 4465, { "objects": [ - 4343, + 4460, "[teams_insert_input!]!" ], "on_conflict": [ - 4350 + 4467 ] } ], "insert_teams_one": [ - 4329, + 4446, { "object": [ - 4343, + 4460, "teams_insert_input!" ], "on_conflict": [ - 4350 + 4467 + ] + } + ], + "insert_tournament_awards": [ + 4512, + { + "objects": [ + 4507, + "[tournament_awards_insert_input!]!" + ], + "on_conflict": [ + 4514 + ] + } + ], + "insert_tournament_awards_one": [ + 4495, + { + "object": [ + 4507, + "tournament_awards_insert_input!" + ], + "on_conflict": [ + 4514 ] } ], "insert_tournament_brackets": [ - 4397, + 4556, { "objects": [ - 4392, + 4551, "[tournament_brackets_insert_input!]!" ], "on_conflict": [ - 4399 + 4558 ] } ], "insert_tournament_brackets_one": [ - 4378, + 4537, { "object": [ - 4392, + 4551, "tournament_brackets_insert_input!" ], "on_conflict": [ - 4399 + 4558 ] } ], "insert_tournament_categories": [ - 4438, + 4597, { "objects": [ - 4433, + 4592, "[tournament_categories_insert_input!]!" ], "on_conflict": [ - 4439 + 4598 ] } ], "insert_tournament_categories_one": [ - 4424, + 4583, { "object": [ - 4433, + 4592, "tournament_categories_insert_input!" ], "on_conflict": [ - 4439 + 4598 ] } ], "insert_tournament_organizer_teams": [ - 4462, + 4621, { "objects": [ - 4457, + 4616, "[tournament_organizer_teams_insert_input!]!" ], "on_conflict": [ - 4463 + 4622 ] } ], "insert_tournament_organizer_teams_one": [ - 4448, + 4607, { "object": [ - 4457, + 4616, "tournament_organizer_teams_insert_input!" ], "on_conflict": [ - 4463 + 4622 ] } ], "insert_tournament_organizers": [ - 4489, + 4648, { "objects": [ - 4484, + 4643, "[tournament_organizers_insert_input!]!" ], "on_conflict": [ - 4490 + 4649 ] } ], "insert_tournament_organizers_one": [ - 4472, + 4631, { "object": [ - 4484, + 4643, "tournament_organizers_insert_input!" ], "on_conflict": [ - 4490 + 4649 ] } ], "insert_tournament_prizes": [ - 4530, + 4689, { "objects": [ - 4525, + 4684, "[tournament_prizes_insert_input!]!" ], "on_conflict": [ - 4531 + 4690 ] } ], "insert_tournament_prizes_one": [ - 4513, + 4672, { "object": [ - 4525, + 4684, "tournament_prizes_insert_input!" ], "on_conflict": [ - 4531 + 4690 ] } ], "insert_tournament_stage_windows": [ - 4571, + 4730, { "objects": [ - 4566, + 4725, "[tournament_stage_windows_insert_input!]!" ], "on_conflict": [ - 4572 + 4731 ] } ], "insert_tournament_stage_windows_one": [ - 4554, + 4713, { "object": [ - 4566, + 4725, "tournament_stage_windows_insert_input!" ], "on_conflict": [ - 4572 + 4731 ] } ], "insert_tournament_stages": [ - 4618, + 4777, { "objects": [ - 4613, + 4772, "[tournament_stages_insert_input!]!" ], "on_conflict": [ - 4620 + 4779 ] } ], "insert_tournament_stages_one": [ - 4595, + 4754, { "object": [ - 4613, + 4772, "tournament_stages_insert_input!" ], "on_conflict": [ - 4620 + 4779 ] } ], "insert_tournament_team_invites": [ - 4663, + 4822, { "objects": [ - 4658, + 4817, "[tournament_team_invites_insert_input!]!" ], "on_conflict": [ - 4664 + 4823 ] } ], "insert_tournament_team_invites_one": [ - 4646, + 4805, { "object": [ - 4658, + 4817, "tournament_team_invites_insert_input!" ], "on_conflict": [ - 4664 + 4823 ] } ], "insert_tournament_team_roster": [ - 4704, + 4863, { "objects": [ - 4699, + 4858, "[tournament_team_roster_insert_input!]!" ], "on_conflict": [ - 4705 + 4864 ] } ], "insert_tournament_team_roster_one": [ - 4687, + 4846, { "object": [ - 4699, + 4858, "tournament_team_roster_insert_input!" ], "on_conflict": [ - 4705 + 4864 ] } ], "insert_tournament_teams": [ - 4745, + 4904, { "objects": [ - 4740, + 4899, "[tournament_teams_insert_input!]!" ], "on_conflict": [ - 4747 + 4906 ] } ], "insert_tournament_teams_one": [ - 4728, + 4887, { "object": [ - 4740, + 4899, "tournament_teams_insert_input!" ], "on_conflict": [ - 4747 - ] - } - ], - "insert_tournament_trophies": [ - 4789, - { - "objects": [ - 4784, - "[tournament_trophies_insert_input!]!" - ], - "on_conflict": [ - 4790 - ] - } - ], - "insert_tournament_trophies_one": [ - 4770, - { - "object": [ - 4784, - "tournament_trophies_insert_input!" - ], - "on_conflict": [ - 4790 - ] - } - ], - "insert_tournament_trophy_configs": [ - 4832, - { - "objects": [ - 4827, - "[tournament_trophy_configs_insert_input!]!" - ], - "on_conflict": [ - 4834 - ] - } - ], - "insert_tournament_trophy_configs_one": [ - 4815, - { - "object": [ - 4827, - "tournament_trophy_configs_insert_input!" - ], - "on_conflict": [ - 4834 + 4906 ] } ], "insert_tournaments": [ - 4886, + 4958, { "objects": [ - 4881, + 4953, "[tournaments_insert_input!]!" ], "on_conflict": [ - 4888 + 4960 ] } ], "insert_tournaments_one": [ - 4857, + 4929, { "object": [ - 4881, + 4953, "tournaments_insert_input!" ], "on_conflict": [ - 4888 + 4960 ] } ], "insert_v_match_captains": [ - 5086, + 5158, { "objects": [ - 5083, + 5155, "[v_match_captains_insert_input!]!" ] } ], "insert_v_match_captains_one": [ - 5077, + 5149, { "object": [ - 5083, + 5155, "v_match_captains_insert_input!" ] } ], "insert_v_match_map_backup_rounds": [ - 5197, + 5269, { "objects": [ - 5194, + 5266, "[v_match_map_backup_rounds_insert_input!]!" ] } ], "insert_v_match_map_backup_rounds_one": [ - 5188, + 5260, { "object": [ - 5194, + 5266, "v_match_map_backup_rounds_insert_input!" ] } ], "insert_v_player_match_map_hltv": [ - 5419, + 5491, { "objects": [ - 5414, + 5486, "[v_player_match_map_hltv_insert_input!]!" ] } ], "insert_v_player_match_map_hltv_one": [ - 5403, + 5475, { "object": [ - 5414, + 5486, "v_player_match_map_hltv_insert_input!" ] } ], "insert_v_pool_maps": [ - 5578, + 5650, { "objects": [ - 5573, + 5645, "[v_pool_maps_insert_input!]!" ] } ], "insert_v_pool_maps_one": [ - 5563, + 5635, { "object": [ - 5573, + 5645, "v_pool_maps_insert_input!" ] } ], "insert_v_team_stage_results": [ - 5672, + 5744, { "objects": [ - 5667, + 5739, "[v_team_stage_results_insert_input!]!" ], "on_conflict": [ - 5674 + 5746 ] } ], "insert_v_team_stage_results_one": [ - 5645, + 5717, { "object": [ - 5667, + 5739, "v_team_stage_results_insert_input!" ], "on_conflict": [ - 5674 + 5746 ] } ], "joinDraftGame": [ - 81, + 83, { "draftGameId": [ - 4921, + 4993, "uuid!" ], "inviteCode": [ - 78 + 80 ] } ], "joinDraftGameAsParty": [ - 81, + 83, { "draftGameId": [ - 4921, + 4993, "uuid!" ], "inviteCode": [ - 78 + 80 ] } ], "kickServerPlayer": [ - 40, + 42, { "reason": [ - 78 + 80 ], "serverId": [ - 78, + 80, "String!" ], "steam_id": [ - 78, + 80, "String!" ] } ], "league_award_forfeit": [ - 2644, + 2761, { "args": [ - 1726, + 1843, "league_award_forfeit_args!" ], "distinct_on": [ - 2666, + 2783, "[matches_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2664, + 2781, "[matches_order_by!]" ], "where": [ - 2653 + 2770 ] } ], "leaveLineup": [ - 81, + 83, { "match_id": [ - 78, + 80, "String!" ] } ], "linkSteamMatchHistory": [ - 70, + 72, { "auth_code": [ - 78, + 80, "String!" ], "share_code": [ - 78, + 80, "String!" ] } ], "loadFixtures": [ - 81 + 83 ], "logout": [ - 81 + 83 ], "moveServerItem": [ - 81, + 83, { "dest_path": [ - 78, + 80, "String!" ], "node_id": [ - 78, + 80, "String!" ], "server_id": [ - 78 + 80 ], "source_path": [ - 78, + 80, "String!" ] } ], "orphanedDemosScanResult": [ - 52 + 54 ], "pauseClipRenderBatch": [ - 81, + 83, { "match_map_id": [ - 4921, + 4993, "uuid!" ] } ], "pollSteamMatchHistory": [ - 71 + 73 ], "previewDraftGame": [ - 22, + 24, { "draftGameId": [ - 4921, + 4993, "uuid!" ], "inviteCode": [ - 78 + 80 ] } ], "queueClipFromPreset": [ - 13, + 15, { "fps": [ - 38 + 40 ], "match_map_id": [ - 4921, + 4993, "uuid!" ], "preset": [ - 78, + 80, "String!" ], "resolution": [ - 78 + 80 ], "target_name": [ - 78 + 80 ], "target_steam_id": [ - 78, + 80, "String!" ], "title": [ - 78 + 80 ] } ], "randomizeTeams": [ - 81, + 83, { "match_id": [ - 4921, + 4993, "uuid!" ] } ], "rebootMatchServer": [ - 81, + 83, { "match_id": [ - 4921, + 4993, "uuid!" ] } ], - "recalculate_tournament_trophies": [ - 4770, + "recalculate_tournament_awards": [ + 183, { "args": [ - 3842, - "recalculate_tournament_trophies_args!" + 3959, + "recalculate_tournament_awards_args!" ], "distinct_on": [ - 4793, - "[tournament_trophies_select_column!]" + 204, + "[award_recipients_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 4791, - "[tournament_trophies_order_by!]" + 202, + "[award_recipients_order_by!]" ], "where": [ - 4781 + 192 ] } ], "recomputePlayerElo": [ - 58 + 60 ], "recomputePlayerEloStatus": [ - 59 + 61 ], "reconnectLive": [ - 81, + 83, { "match_id": [ - 4921, + 4993, "uuid!" ] } ], "refreshAllPlayers": [ - 60 + 62 ], "refreshAllPlayersStatus": [ - 61 + 63 ], "refreshFaceitRank": [ - 81, + 83, { "steam_id": [ - 78, + 80, "String!" ] } ], "refreshLiveHud": [ - 81, + 83, { "match_id": [ - 4921, + 4993, "uuid!" ] } ], "registerName": [ - 81, + 83, { "name": [ - 78, + 80, "String!" ] } ], "removeFixtures": [ - 81 + 83 ], "removeSteamPresenceBotAccount": [ - 81, + 83, { "account_id": [ - 78, + 80, "String!" ] } ], "remove_league_team_from_season": [ - 2018, + 2135, { "args": [ - 3843, + 3960, "remove_league_team_from_season_args!" ], "distinct_on": [ - 2040, + 2157, "[league_team_seasons_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2038, + 2155, "[league_team_seasons_order_by!]" ], "where": [ - 2027 + 2144 ] } ], "renameServerItem": [ - 81, + 83, { "new_path": [ - 78, + 80, "String!" ], "node_id": [ - 78, + 80, "String!" ], "old_path": [ - 78, + 80, "String!" ], "server_id": [ - 78 + 80 ] } ], "reorder_league_divisions": [ - 1727, + 1844, { "args": [ - 3844, + 3961, "reorder_league_divisions_args!" ], "distinct_on": [ - 1742, + 1859, "[league_divisions_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 1740, + 1857, "[league_divisions_order_by!]" ], "where": [ - 1731 + 1848 ] } ], "reparseAllDemos": [ - 62 + 64 ], "reparseAllDemosStatus": [ - 63 + 65 ], "reparseDemo": [ - 81, + 83, { "match_map_id": [ - 4921, + 4993, "uuid!" ] } ], "reparseMatchDemos": [ - 81, + 83, { "match_id": [ - 4921, + 4993, "uuid!" ] } ], "requestNameChange": [ - 81, + 83, { "name": [ - 78, + 80, "String!" ], "steam_id": [ - 180, + 252, "bigint!" ] } ], "requeueClipRender": [ - 81, + 83, { "job_id": [ - 4921, + 4993, "uuid!" ] } ], "respondDraftInvite": [ - 81, + 83, { "accept": [ - 3, + 5, "Boolean!" ], "draftGameId": [ - 4921, + 4993, "uuid!" ] } ], "respondToScrimRequest": [ - 81, + 83, { "accept": [ - 3, + 5, "Boolean!" ], "request_id": [ - 4921, + 4993, "uuid!" ] } ], "restartService": [ - 81, + 83, { "service": [ - 78, + 80, "String!" ] } ], "restart_league_season": [ - 1903, + 2020, { "args": [ - 3845, + 3962, "restart_league_season_args!" ], "distinct_on": [ - 1923, + 2040, "[league_seasons_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 1920, + 2037, "[league_seasons_order_by!]" ], "where": [ - 1908 + 2025 ] } ], "resumeClipRenderBatch": [ - 81, + 83, { "match_map_id": [ - 4921, + 4993, "uuid!" ] } ], "retryClipRenderBatch": [ - 81, + 83, { "match_map_id": [ - 4921, + 4993, "uuid!" ], "only_failed": [ - 3 + 5 ] } ], "retryPendingMatchImport": [ - 53, + 55, { "valve_match_id": [ - 78, + 80, "String!" ] } ], + "revokeAward": [ + 83, + { + "id": [ + 4993, + "uuid!" + ] + } + ], "sanctionServerPlayer": [ - 64, + 66, { "duration": [ - 29 + 31 ], "reason": [ - 78 + 80 ], "serverId": [ - 78 + 80 ], "steam_id": [ - 78, + 80, "String!" ], "type": [ - 78, + 80, + "String!" + ] + } + ], + "saveAward": [ + 3, + { + "allow_multiple": [ + 5 + ], + "description": [ + 80 + ], + "id": [ + 4993 + ], + "name": [ + 80, + "String!" + ], + "silhouette": [ + 40 + ], + "tier": [ + 80, "String!" ] } ], "saveNewsPost": [ - 48, + 50, { "content_markdown": [ - 78, + 80, "String!" ], "cover_image_url": [ - 78 + 80 ], "id": [ - 4921 + 4993 ], "teaser": [ - 78 + 80 ], "title": [ - 78, + 80, "String!" ] } ], "scanOrphanedDemos": [ - 65 + 67 ], "scanSteamBans": [ - 81 + 83 ], "scheduleMatch": [ - 81, + 83, { "match_id": [ - 4921, + 4993, "uuid!" ], "time": [ - 4376 + 4493 ] } ], "sendScrimRequest": [ - 81, + 83, { "best_of": [ - 38 + 40 ], "from_team_id": [ - 4921, + 4993, "uuid!" ], "proposed_scheduled_at": [ - 4376, + 4493, "timestamptz!" ], "region": [ - 78 + 80 ], "to_team_id": [ - 4921, + 4993, "uuid!" ] } ], "setGameNodeSchedulingState": [ - 81, + 83, { "enabled": [ - 3, + 5, "Boolean!" ], "game_server_node_id": [ - 78, + 80, "String!" ] } ], "setHudMode": [ - 81, + 83, { "match_id": [ - 4921, + 4993, "uuid!" ], "mode": [ - 78, + 80, "String!" ] } ], "setMapWinner": [ - 81, + 83, { "match_id": [ - 4921, + 4993, "uuid!" ], "match_map_id": [ - 4921, + 4993, "uuid!" ], "winning_lineup_id": [ - 4921, + 4993, "uuid!" ] } ], "setMatchWinner": [ - 81, + 83, { "match_id": [ - 4921, + 4993, "uuid!" ], "winning_lineup_id": [ - 4921, + 4993, "uuid!" ] } ], "setNewsPostStatus": [ - 48, + 50, { "id": [ - 4921, + 4993, "uuid!" ], "status": [ - 78, + 80, "String!" ] } ], + "setTournamentAward": [ + 92, + { + "award_id": [ + 4993 + ], + "custom_name": [ + 80 + ], + "placement": [ + 40, + "Int!" + ], + "silhouette": [ + 40 + ], + "tournament_id": [ + 4993, + "uuid!" + ] + } + ], "setupGameServer": [ - 69 + 71 ], "skipShaders": [ - 81, + 83, { "match_id": [ - 4921, + 4993, "uuid!" ] } ], "specAutodirector": [ - 81, + 83, { "enabled": [ - 3, + 5, "Boolean!" ], "match_id": [ - 4921, + 4993, "uuid!" ] } ], "specClick": [ - 81, + 83, { "button": [ - 78, + 80, "String!" ], "match_id": [ - 4921, + 4993, "uuid!" ] } ], "specHud": [ - 81, + 83, { "match_id": [ - 4921, + 4993, "uuid!" ], "visible": [ - 3, + 5, "Boolean!" ] } ], "specHudSides": [ - 81, + 83, { "match_id": [ - 4921, + 4993, "uuid!" ] } ], "specJump": [ - 81, + 83, { "match_id": [ - 4921, + 4993, "uuid!" ] } ], "specPlayer": [ - 81, + 83, { "accountid": [ - 38, + 40, "Int!" ], "match_id": [ - 4921, + 4993, "uuid!" ] } ], "specScoreboard": [ - 81, + 83, { "match_id": [ - 4921, + 4993, "uuid!" ], "show": [ - 3, + 5, "Boolean!" ] } ], "specSlot": [ - 81, + 83, { "match_id": [ - 4921, + 4993, "uuid!" ], "slot": [ - 38, + 40, "Int!" ] } ], "specXray": [ - 81, + 83, { "enabled": [ - 3, + 5, "Boolean!" ], "match_id": [ - 4921, + 4993, "uuid!" ] } ], "startLive": [ - 81, + 83, { "match_id": [ - 4921, + 4993, "uuid!" ], "mode": [ - 78, + 80, "String!" ] } ], "startMatch": [ - 81, + 83, { "match_id": [ - 4921, + 4993, "uuid!" ], "server_id": [ - 4921 + 4993 ] } ], "stopGpuSession": [ - 81, + 83, { "game_server_node_id": [ - 4921, + 4993, "uuid!" ] } ], "stopLive": [ - 81, + 83, { "match_id": [ - 4921, + 4993, "uuid!" ] } ], "stopWatchDemo": [ - 81, + 83, { "match_map_id": [ - 4921, + 4993, "uuid!" ] } ], "submitSteamPresenceSteamGuard": [ - 81, + 83, { "account_id": [ - 78, + 80, "String!" ], "code": [ - 78, + 80, "String!" ] } ], "swapLineups": [ - 81, + 83, { "match_id": [ - 4921, + 4993, "uuid!" ] } ], "switchLineup": [ - 81, + 83, { "match_id": [ - 78, + 80, "String!" ] } ], "switchLiveMatch": [ - 81, + 83, { "from_match_id": [ - 4921, + 4993, "uuid!" ], "mode": [ - 78, + 80, "String!" ], "to_match_id": [ - 4921, + 4993, "uuid!" ] } ], "syncSteamFriends": [ - 81 + 83 ], "testFaceitIntegration": [ - 24 + 26 ], "testUpload": [ - 87 + 89 ], "unlinkDiscord": [ - 81 + 83 ], "unlinkSteamMatchHistory": [ - 81 + 83 ], "unsanctionServerPlayer": [ - 64, + 66, { "serverId": [ - 78 + 80 ], "steam_id": [ - 78, + 80, "String!" ], "type": [ - 78, + 80, "String!" ] } ], "updateClip": [ - 81, + 83, { "clip_id": [ - 4921, + 4993, "uuid!" ], "target_steam_id": [ - 78 + 80 ], "title": [ - 78 + 80 ], "visibility": [ - 78 + 80 ] } ], "updateCs": [ - 81, + 83, { "game": [ - 78 + 80 ], "game_server_node_id": [ - 4921 + 4993 ] } ], "updateDraftGame": [ - 81, + 83, { "draftGameId": [ - 4921, + 4993, "uuid!" ], "settings": [ - 1700, + 1817, "jsonb!" ] } ], "updateServices": [ - 81 + 83 ], "update__map_pool": [ - 100, + 103, { "_set": [ - 105 + 108 ], "where": [ - 95, + 98, "_map_pool_bool_exp!" ] } ], "update__map_pool_by_pk": [ - 92, + 95, { "_set": [ - 105 + 108 ], "pk_columns": [ - 103, + 106, "_map_pool_pk_columns_input!" ] } ], "update__map_pool_many": [ - 100, + 103, { "updates": [ - 109, + 112, "[_map_pool_updates!]!" ] } ], "update_abandoned_matches": [ - 128, + 131, { "_inc": [ - 122 + 125 ], "_set": [ - 133 + 136 ], "where": [ - 120, + 123, "abandoned_matches_bool_exp!" ] } ], "update_abandoned_matches_by_pk": [ - 111, + 114, { "_inc": [ - 122 + 125 ], "_set": [ - 133 + 136 ], "pk_columns": [ - 131, + 134, "abandoned_matches_pk_columns_input!" ] } ], "update_abandoned_matches_many": [ - 128, + 131, { "updates": [ - 145, + 148, "[abandoned_matches_updates!]!" ] } ], "update_api_keys": [ - 162, + 165, { "_inc": [ - 158 + 161 ], "_set": [ - 167 + 170 ], "where": [ - 156, + 159, "api_keys_bool_exp!" ] } ], "update_api_keys_by_pk": [ - 152, + 155, { "_inc": [ - 158 + 161 ], "_set": [ - 167 + 170 ], "pk_columns": [ - 165, + 168, "api_keys_pk_columns_input!" ] } ], "update_api_keys_many": [ - 162, + 165, { "updates": [ - 175, + 178, "[api_keys_updates!]!" ] } ], + "update_award_recipients": [ + 200, + { + "_inc": [ + 194 + ], + "_set": [ + 205 + ], + "where": [ + 192, + "award_recipients_bool_exp!" + ] + } + ], + "update_award_recipients_by_pk": [ + 183, + { + "_inc": [ + 194 + ], + "_set": [ + 205 + ], + "pk_columns": [ + 203, + "award_recipients_pk_columns_input!" + ] + } + ], + "update_award_recipients_many": [ + 200, + { + "updates": [ + 217, + "[award_recipients_updates!]!" + ] + } + ], + "update_awards": [ + 234, + { + "_inc": [ + 230 + ], + "_set": [ + 240 + ], + "where": [ + 228, + "awards_bool_exp!" + ] + } + ], + "update_awards_by_pk": [ + 224, + { + "_inc": [ + 230 + ], + "_set": [ + 240 + ], + "pk_columns": [ + 238, + "awards_pk_columns_input!" + ] + } + ], + "update_awards_many": [ + 234, + { + "updates": [ + 248, + "[awards_updates!]!" + ] + } + ], "update_clip_render_jobs": [ - 208, + 280, { "_append": [ - 193 + 265 ], "_delete_at_path": [ - 199 + 271 ], "_delete_elem": [ - 200 + 272 ], "_delete_key": [ - 201 + 273 ], "_inc": [ - 202 + 274 ], "_prepend": [ - 212 + 284 ], "_set": [ - 216 + 288 ], "where": [ - 197, + 269, "clip_render_jobs_bool_exp!" ] } ], "update_clip_render_jobs_by_pk": [ - 185, + 257, { "_append": [ - 193 + 265 ], "_delete_at_path": [ - 199 + 271 ], "_delete_elem": [ - 200 + 272 ], "_delete_key": [ - 201 + 273 ], "_inc": [ - 202 + 274 ], "_prepend": [ - 212 + 284 ], "_set": [ - 216 + 288 ], "pk_columns": [ - 211, + 283, "clip_render_jobs_pk_columns_input!" ] } ], "update_clip_render_jobs_many": [ - 208, + 280, { "updates": [ - 228, + 300, "[clip_render_jobs_updates!]!" ] } ], "update_custom_pages": [ - 247, + 323, { + "_append": [ + 312 + ], + "_delete_at_path": [ + 316 + ], + "_delete_elem": [ + 317 + ], + "_delete_key": [ + 318 + ], "_inc": [ - 243 + 319 + ], + "_prepend": [ + 327 ], "_set": [ - 252 + 329 ], "where": [ - 241, + 314, "custom_pages_bool_exp!" ] } ], "update_custom_pages_by_pk": [ - 237, + 309, { + "_append": [ + 312 + ], + "_delete_at_path": [ + 316 + ], + "_delete_elem": [ + 317 + ], + "_delete_key": [ + 318 + ], "_inc": [ - 243 + 319 + ], + "_prepend": [ + 327 ], "_set": [ - 252 + 329 ], "pk_columns": [ - 250, + 326, "custom_pages_pk_columns_input!" ] } ], "update_custom_pages_many": [ - 247, + 323, { "updates": [ - 260, + 337, "[custom_pages_updates!]!" ] } ], "update_db_backups": [ - 274, + 351, { "_inc": [ - 270 + 347 ], "_set": [ - 279 + 356 ], "where": [ - 268, + 345, "db_backups_bool_exp!" ] } ], "update_db_backups_by_pk": [ - 264, + 341, { "_inc": [ - 270 + 347 ], "_set": [ - 279 + 356 ], "pk_columns": [ - 277, + 354, "db_backups_pk_columns_input!" ] } ], "update_db_backups_many": [ - 274, + 351, { "updates": [ - 287, + 364, "[db_backups_updates!]!" ] } ], "update_draft_game_picks": [ - 310, + 387, { "_inc": [ - 304 + 381 ], "_set": [ - 317 + 394 ], "where": [ - 302, + 379, "draft_game_picks_bool_exp!" ] } ], "update_draft_game_picks_by_pk": [ - 291, + 368, { "_inc": [ - 304 + 381 ], "_set": [ - 317 + 394 ], "pk_columns": [ - 313, + 390, "draft_game_picks_pk_columns_input!" ] } ], "update_draft_game_picks_many": [ - 310, + 387, { "updates": [ - 329, + 406, "[draft_game_picks_updates!]!" ] } ], "update_draft_game_players": [ - 355, + 432, { "_inc": [ - 349 + 426 ], "_set": [ - 362 + 439 ], "where": [ - 347, + 424, "draft_game_players_bool_exp!" ] } ], "update_draft_game_players_by_pk": [ - 336, + 413, { "_inc": [ - 349 + 426 ], "_set": [ - 362 + 439 ], "pk_columns": [ - 358, + 435, "draft_game_players_pk_columns_input!" ] } ], "update_draft_game_players_many": [ - 355, + 432, { "updates": [ - 374, + 451, "[draft_game_players_updates!]!" ] } ], "update_draft_games": [ - 400, + 477, { "_inc": [ - 394 + 471 ], "_set": [ - 408 + 485 ], "where": [ - 392, + 469, "draft_games_bool_exp!" ] } ], "update_draft_games_by_pk": [ - 381, + 458, { "_inc": [ - 394 + 471 ], "_set": [ - 408 + 485 ], "pk_columns": [ - 404, + 481, "draft_games_pk_columns_input!" ] } ], "update_draft_games_many": [ - 400, + 477, { "updates": [ - 420, + 497, "[draft_games_updates!]!" ] } ], + "update_e_award_sources": [ + 514, + { + "_set": [ + 519 + ], + "where": [ + 507, + "e_award_sources_bool_exp!" + ] + } + ], + "update_e_award_sources_by_pk": [ + 504, + { + "_set": [ + 519 + ], + "pk_columns": [ + 517, + "e_award_sources_pk_columns_input!" + ] + } + ], + "update_e_award_sources_many": [ + 514, + { + "updates": [ + 523, + "[e_award_sources_updates!]!" + ] + } + ], + "update_e_award_tiers": [ + 534, + { + "_set": [ + 539 + ], + "where": [ + 527, + "e_award_tiers_bool_exp!" + ] + } + ], + "update_e_award_tiers_by_pk": [ + 524, + { + "_set": [ + 539 + ], + "pk_columns": [ + 537, + "e_award_tiers_pk_columns_input!" + ] + } + ], + "update_e_award_tiers_many": [ + 534, + { + "updates": [ + 543, + "[e_award_tiers_updates!]!" + ] + } + ], "update_e_check_in_settings": [ - 437, + 554, { "_set": [ - 442 + 559 ], "where": [ - 430, + 547, "e_check_in_settings_bool_exp!" ] } ], "update_e_check_in_settings_by_pk": [ - 427, + 544, { "_set": [ - 442 + 559 ], "pk_columns": [ - 440, + 557, "e_check_in_settings_pk_columns_input!" ] } ], "update_e_check_in_settings_many": [ - 437, + 554, { "updates": [ - 446, + 563, "[e_check_in_settings_updates!]!" ] } ], "update_e_draft_game_captain_selection": [ - 457, + 574, { "_set": [ - 463 + 580 ], "where": [ - 450, + 567, "e_draft_game_captain_selection_bool_exp!" ] } ], "update_e_draft_game_captain_selection_by_pk": [ - 447, + 564, { "_set": [ - 463 + 580 ], "pk_columns": [ - 461, + 578, "e_draft_game_captain_selection_pk_columns_input!" ] } ], "update_e_draft_game_captain_selection_many": [ - 457, + 574, { "updates": [ - 467, + 584, "[e_draft_game_captain_selection_updates!]!" ] } ], "update_e_draft_game_draft_order": [ - 478, + 595, { "_set": [ - 484 + 601 ], "where": [ - 471, + 588, "e_draft_game_draft_order_bool_exp!" ] } ], "update_e_draft_game_draft_order_by_pk": [ - 468, + 585, { "_set": [ - 484 + 601 ], "pk_columns": [ - 482, + 599, "e_draft_game_draft_order_pk_columns_input!" ] } ], "update_e_draft_game_draft_order_many": [ - 478, + 595, { "updates": [ - 488, + 605, "[e_draft_game_draft_order_updates!]!" ] } ], "update_e_draft_game_mode": [ - 499, + 616, { "_set": [ - 505 + 622 ], "where": [ - 492, + 609, "e_draft_game_mode_bool_exp!" ] } ], "update_e_draft_game_mode_by_pk": [ - 489, + 606, { "_set": [ - 505 + 622 ], "pk_columns": [ - 503, + 620, "e_draft_game_mode_pk_columns_input!" ] } ], "update_e_draft_game_mode_many": [ - 499, + 616, { "updates": [ - 509, + 626, "[e_draft_game_mode_updates!]!" ] } ], "update_e_draft_game_player_status": [ - 520, + 637, { "_set": [ - 526 + 643 ], "where": [ - 513, + 630, "e_draft_game_player_status_bool_exp!" ] } ], "update_e_draft_game_player_status_by_pk": [ - 510, + 627, { "_set": [ - 526 + 643 ], "pk_columns": [ - 524, + 641, "e_draft_game_player_status_pk_columns_input!" ] } ], "update_e_draft_game_player_status_many": [ - 520, + 637, { "updates": [ - 530, + 647, "[e_draft_game_player_status_updates!]!" ] } ], "update_e_draft_game_status": [ - 541, + 658, { "_set": [ - 547 + 664 ], "where": [ - 534, + 651, "e_draft_game_status_bool_exp!" ] } ], "update_e_draft_game_status_by_pk": [ - 531, + 648, { "_set": [ - 547 + 664 ], "pk_columns": [ - 545, + 662, "e_draft_game_status_pk_columns_input!" ] } ], "update_e_draft_game_status_many": [ - 541, + 658, { "updates": [ - 551, + 668, "[e_draft_game_status_updates!]!" ] } ], "update_e_event_media_access": [ - 562, + 679, { "_set": [ - 567 + 684 ], "where": [ - 555, + 672, "e_event_media_access_bool_exp!" ] } ], "update_e_event_media_access_by_pk": [ - 552, + 669, { "_set": [ - 567 + 684 ], "pk_columns": [ - 565, + 682, "e_event_media_access_pk_columns_input!" ] } ], "update_e_event_media_access_many": [ - 562, + 679, { "updates": [ - 571, + 688, "[e_event_media_access_updates!]!" ] } ], "update_e_event_visibility": [ - 582, + 699, { "_set": [ - 587 + 704 ], "where": [ - 575, + 692, "e_event_visibility_bool_exp!" ] } ], "update_e_event_visibility_by_pk": [ - 572, + 689, { "_set": [ - 587 + 704 ], "pk_columns": [ - 585, + 702, "e_event_visibility_pk_columns_input!" ] } ], "update_e_event_visibility_many": [ - 582, + 699, { "updates": [ - 591, + 708, "[e_event_visibility_updates!]!" ] } ], "update_e_friend_status": [ - 602, + 719, { "_set": [ - 608 + 725 ], "where": [ - 595, + 712, "e_friend_status_bool_exp!" ] } ], "update_e_friend_status_by_pk": [ - 592, + 709, { "_set": [ - 608 + 725 ], "pk_columns": [ - 606, + 723, "e_friend_status_pk_columns_input!" ] } ], "update_e_friend_status_many": [ - 602, + 719, { "updates": [ - 612, + 729, "[e_friend_status_updates!]!" ] } ], "update_e_game_cfg_types": [ - 623, + 740, { "_set": [ - 628 + 745 ], "where": [ - 616, + 733, "e_game_cfg_types_bool_exp!" ] } ], "update_e_game_cfg_types_by_pk": [ - 613, + 730, { "_set": [ - 628 + 745 ], "pk_columns": [ - 626, + 743, "e_game_cfg_types_pk_columns_input!" ] } ], "update_e_game_cfg_types_many": [ - 623, + 740, { "updates": [ - 632, + 749, "[e_game_cfg_types_updates!]!" ] } ], "update_e_game_server_node_statuses": [ - 643, + 760, { "_set": [ - 649 + 766 ], "where": [ - 636, + 753, "e_game_server_node_statuses_bool_exp!" ] } ], "update_e_game_server_node_statuses_by_pk": [ - 633, + 750, { "_set": [ - 649 + 766 ], "pk_columns": [ - 647, + 764, "e_game_server_node_statuses_pk_columns_input!" ] } ], "update_e_game_server_node_statuses_many": [ - 643, + 760, { "updates": [ - 653, + 770, "[e_game_server_node_statuses_updates!]!" ] } ], "update_e_league_movement_types": [ - 664, + 781, { "_set": [ - 670 + 787 ], "where": [ - 657, + 774, "e_league_movement_types_bool_exp!" ] } ], "update_e_league_movement_types_by_pk": [ - 654, + 771, { "_set": [ - 670 + 787 ], "pk_columns": [ - 668, + 785, "e_league_movement_types_pk_columns_input!" ] } ], "update_e_league_movement_types_many": [ - 664, + 781, { "updates": [ - 674, + 791, "[e_league_movement_types_updates!]!" ] } ], "update_e_league_proposal_statuses": [ - 685, + 802, { "_set": [ - 691 + 808 ], "where": [ - 678, + 795, "e_league_proposal_statuses_bool_exp!" ] } ], "update_e_league_proposal_statuses_by_pk": [ - 675, + 792, { "_set": [ - 691 + 808 ], "pk_columns": [ - 689, + 806, "e_league_proposal_statuses_pk_columns_input!" ] } ], "update_e_league_proposal_statuses_many": [ - 685, + 802, { "updates": [ - 695, + 812, "[e_league_proposal_statuses_updates!]!" ] } ], "update_e_league_registration_statuses": [ - 706, + 823, { "_set": [ - 712 + 829 ], "where": [ - 699, + 816, "e_league_registration_statuses_bool_exp!" ] } ], "update_e_league_registration_statuses_by_pk": [ - 696, + 813, { "_set": [ - 712 + 829 ], "pk_columns": [ - 710, + 827, "e_league_registration_statuses_pk_columns_input!" ] } ], "update_e_league_registration_statuses_many": [ - 706, + 823, { "updates": [ - 716, + 833, "[e_league_registration_statuses_updates!]!" ] } ], "update_e_league_season_statuses": [ - 727, + 844, { "_set": [ - 733 + 850 ], "where": [ - 720, + 837, "e_league_season_statuses_bool_exp!" ] } ], "update_e_league_season_statuses_by_pk": [ - 717, + 834, { "_set": [ - 733 + 850 ], "pk_columns": [ - 731, + 848, "e_league_season_statuses_pk_columns_input!" ] } ], "update_e_league_season_statuses_many": [ - 727, + 844, { "updates": [ - 737, + 854, "[e_league_season_statuses_updates!]!" ] } ], "update_e_lobby_access": [ - 748, + 865, { "_set": [ - 754 + 871 ], "where": [ - 741, + 858, "e_lobby_access_bool_exp!" ] } ], "update_e_lobby_access_by_pk": [ - 738, + 855, { "_set": [ - 754 + 871 ], "pk_columns": [ - 752, + 869, "e_lobby_access_pk_columns_input!" ] } ], "update_e_lobby_access_many": [ - 748, + 865, { "updates": [ - 758, + 875, "[e_lobby_access_updates!]!" ] } ], "update_e_lobby_player_status": [ - 769, + 886, { "_set": [ - 774 + 891 ], "where": [ - 762, + 879, "e_lobby_player_status_bool_exp!" ] } ], "update_e_lobby_player_status_by_pk": [ - 759, + 876, { "_set": [ - 774 + 891 ], "pk_columns": [ - 772, + 889, "e_lobby_player_status_pk_columns_input!" ] } ], "update_e_lobby_player_status_many": [ - 769, + 886, { "updates": [ - 778, + 895, "[e_lobby_player_status_updates!]!" ] } ], "update_e_map_pool_types": [ - 789, + 906, { "_set": [ - 795 + 912 ], "where": [ - 782, + 899, "e_map_pool_types_bool_exp!" ] } ], "update_e_map_pool_types_by_pk": [ - 779, + 896, { "_set": [ - 795 + 912 ], "pk_columns": [ - 793, + 910, "e_map_pool_types_pk_columns_input!" ] } ], "update_e_map_pool_types_many": [ - 789, + 906, { "updates": [ - 799, + 916, "[e_map_pool_types_updates!]!" ] } ], "update_e_match_clip_visibility": [ - 810, + 927, { "_set": [ - 815 + 932 ], "where": [ - 803, + 920, "e_match_clip_visibility_bool_exp!" ] } ], "update_e_match_clip_visibility_by_pk": [ - 800, + 917, { "_set": [ - 815 + 932 ], "pk_columns": [ - 813, + 930, "e_match_clip_visibility_pk_columns_input!" ] } ], "update_e_match_clip_visibility_many": [ - 810, + 927, { "updates": [ - 819, + 936, "[e_match_clip_visibility_updates!]!" ] } ], "update_e_match_map_status": [ - 830, + 947, { "_set": [ - 836 + 953 ], "where": [ - 823, + 940, "e_match_map_status_bool_exp!" ] } ], "update_e_match_map_status_by_pk": [ - 820, + 937, { "_set": [ - 836 + 953 ], "pk_columns": [ - 834, + 951, "e_match_map_status_pk_columns_input!" ] } ], "update_e_match_map_status_many": [ - 830, + 947, { "updates": [ - 840, + 957, "[e_match_map_status_updates!]!" ] } ], "update_e_match_mode": [ - 851, + 968, { "_set": [ - 856 + 973 ], "where": [ - 844, + 961, "e_match_mode_bool_exp!" ] } ], "update_e_match_mode_by_pk": [ - 841, + 958, { "_set": [ - 856 + 973 ], "pk_columns": [ - 854, + 971, "e_match_mode_pk_columns_input!" ] } ], "update_e_match_mode_many": [ - 851, + 968, { "updates": [ - 860, + 977, "[e_match_mode_updates!]!" ] } ], "update_e_match_status": [ - 871, + 988, { "_set": [ - 877 + 994 ], "where": [ - 864, + 981, "e_match_status_bool_exp!" ] } ], "update_e_match_status_by_pk": [ - 861, + 978, { "_set": [ - 877 + 994 ], "pk_columns": [ - 875, + 992, "e_match_status_pk_columns_input!" ] } ], "update_e_match_status_many": [ - 871, + 988, { "updates": [ - 881, + 998, "[e_match_status_updates!]!" ] } ], "update_e_match_types": [ - 892, + 1009, { "_set": [ - 898 + 1015 ], "where": [ - 885, + 1002, "e_match_types_bool_exp!" ] } ], "update_e_match_types_by_pk": [ - 882, + 999, { "_set": [ - 898 + 1015 ], "pk_columns": [ - 896, + 1013, "e_match_types_pk_columns_input!" ] } ], "update_e_match_types_many": [ - 892, + 1009, { "updates": [ - 902, + 1019, "[e_match_types_updates!]!" ] } ], "update_e_notification_types": [ - 913, + 1030, { "_set": [ - 918 + 1035 ], "where": [ - 906, + 1023, "e_notification_types_bool_exp!" ] } ], "update_e_notification_types_by_pk": [ - 903, + 1020, { "_set": [ - 918 + 1035 ], "pk_columns": [ - 916, + 1033, "e_notification_types_pk_columns_input!" ] } ], "update_e_notification_types_many": [ - 913, + 1030, { "updates": [ - 922, + 1039, "[e_notification_types_updates!]!" ] } ], "update_e_objective_types": [ - 933, + 1050, { "_set": [ - 938 + 1055 ], "where": [ - 926, + 1043, "e_objective_types_bool_exp!" ] } ], "update_e_objective_types_by_pk": [ - 923, + 1040, { "_set": [ - 938 + 1055 ], "pk_columns": [ - 936, + 1053, "e_objective_types_pk_columns_input!" ] } ], "update_e_objective_types_many": [ - 933, + 1050, { "updates": [ - 942, + 1059, "[e_objective_types_updates!]!" ] } ], "update_e_player_roles": [ - 953, + 1070, { "_set": [ - 958 + 1075 ], "where": [ - 946, + 1063, "e_player_roles_bool_exp!" ] } ], "update_e_player_roles_by_pk": [ - 943, + 1060, { "_set": [ - 958 + 1075 ], "pk_columns": [ - 956, + 1073, "e_player_roles_pk_columns_input!" ] } ], "update_e_player_roles_many": [ - 953, + 1070, { "updates": [ - 962, + 1079, "[e_player_roles_updates!]!" ] } ], "update_e_plugin_runtimes": [ - 973, + 1090, { "_set": [ - 978 + 1095 ], "where": [ - 966, + 1083, "e_plugin_runtimes_bool_exp!" ] } ], "update_e_plugin_runtimes_by_pk": [ - 963, + 1080, { "_set": [ - 978 + 1095 ], "pk_columns": [ - 976, + 1093, "e_plugin_runtimes_pk_columns_input!" ] } ], "update_e_plugin_runtimes_many": [ - 973, + 1090, { "updates": [ - 982, + 1099, "[e_plugin_runtimes_updates!]!" ] } ], "update_e_ready_settings": [ - 993, + 1110, { "_set": [ - 998 + 1115 ], "where": [ - 986, + 1103, "e_ready_settings_bool_exp!" ] } ], "update_e_ready_settings_by_pk": [ - 983, + 1100, { "_set": [ - 998 + 1115 ], "pk_columns": [ - 996, + 1113, "e_ready_settings_pk_columns_input!" ] } ], "update_e_ready_settings_many": [ - 993, + 1110, { "updates": [ - 1002, + 1119, "[e_ready_settings_updates!]!" ] } ], "update_e_sanction_types": [ - 1013, + 1130, { "_set": [ - 1019 + 1136 ], "where": [ - 1006, + 1123, "e_sanction_types_bool_exp!" ] } ], "update_e_sanction_types_by_pk": [ - 1003, + 1120, { "_set": [ - 1019 + 1136 ], "pk_columns": [ - 1017, + 1134, "e_sanction_types_pk_columns_input!" ] } ], "update_e_sanction_types_many": [ - 1013, + 1130, { "updates": [ - 1023, + 1140, "[e_sanction_types_updates!]!" ] } ], "update_e_scrim_request_statuses": [ - 1034, + 1151, { "_set": [ - 1039 + 1156 ], "where": [ - 1027, + 1144, "e_scrim_request_statuses_bool_exp!" ] } ], "update_e_scrim_request_statuses_by_pk": [ - 1024, + 1141, { "_set": [ - 1039 + 1156 ], "pk_columns": [ - 1037, + 1154, "e_scrim_request_statuses_pk_columns_input!" ] } ], "update_e_scrim_request_statuses_many": [ - 1034, + 1151, { "updates": [ - 1043, + 1160, "[e_scrim_request_statuses_updates!]!" ] } ], "update_e_server_types": [ - 1054, + 1171, { "_set": [ - 1059 + 1176 ], "where": [ - 1047, + 1164, "e_server_types_bool_exp!" ] } ], "update_e_server_types_by_pk": [ - 1044, + 1161, { "_set": [ - 1059 + 1176 ], "pk_columns": [ - 1057, + 1174, "e_server_types_pk_columns_input!" ] } ], "update_e_server_types_many": [ - 1054, + 1171, { "updates": [ - 1063, + 1180, "[e_server_types_updates!]!" ] } ], "update_e_sides": [ - 1074, + 1191, { "_set": [ - 1079 + 1196 ], "where": [ - 1067, + 1184, "e_sides_bool_exp!" ] } ], "update_e_sides_by_pk": [ - 1064, + 1181, { "_set": [ - 1079 + 1196 ], "pk_columns": [ - 1077, + 1194, "e_sides_pk_columns_input!" ] } ], "update_e_sides_many": [ - 1074, + 1191, { "updates": [ - 1083, + 1200, "[e_sides_updates!]!" ] } ], "update_e_system_alert_types": [ - 1094, + 1211, { "_set": [ - 1099 + 1216 ], "where": [ - 1087, + 1204, "e_system_alert_types_bool_exp!" ] } ], "update_e_system_alert_types_by_pk": [ - 1084, + 1201, { "_set": [ - 1099 + 1216 ], "pk_columns": [ - 1097, + 1214, "e_system_alert_types_pk_columns_input!" ] } ], "update_e_system_alert_types_many": [ - 1094, + 1211, { "updates": [ - 1103, + 1220, "[e_system_alert_types_updates!]!" ] } ], "update_e_team_roles": [ - 1114, + 1231, { "_set": [ - 1120 + 1237 ], "where": [ - 1107, + 1224, "e_team_roles_bool_exp!" ] } ], "update_e_team_roles_by_pk": [ - 1104, + 1221, { "_set": [ - 1120 + 1237 ], "pk_columns": [ - 1118, + 1235, "e_team_roles_pk_columns_input!" ] } ], "update_e_team_roles_many": [ - 1114, + 1231, { "updates": [ - 1124, + 1241, "[e_team_roles_updates!]!" ] } ], "update_e_team_roster_statuses": [ - 1135, + 1252, { "_set": [ - 1140 + 1257 ], "where": [ - 1128, + 1245, "e_team_roster_statuses_bool_exp!" ] } ], "update_e_team_roster_statuses_by_pk": [ - 1125, + 1242, { "_set": [ - 1140 + 1257 ], "pk_columns": [ - 1138, + 1255, "e_team_roster_statuses_pk_columns_input!" ] } ], "update_e_team_roster_statuses_many": [ - 1135, + 1252, { "updates": [ - 1144, + 1261, "[e_team_roster_statuses_updates!]!" ] } ], "update_e_timeout_settings": [ - 1155, + 1272, { "_set": [ - 1160 + 1277 ], "where": [ - 1148, + 1265, "e_timeout_settings_bool_exp!" ] } ], "update_e_timeout_settings_by_pk": [ - 1145, + 1262, { "_set": [ - 1160 + 1277 ], "pk_columns": [ - 1158, + 1275, "e_timeout_settings_pk_columns_input!" ] } ], "update_e_timeout_settings_many": [ - 1155, + 1272, { "updates": [ - 1164, + 1281, "[e_timeout_settings_updates!]!" ] } ], "update_e_tournament_categories": [ - 1175, + 1292, { "_set": [ - 1181 + 1298 ], "where": [ - 1168, + 1285, "e_tournament_categories_bool_exp!" ] } ], "update_e_tournament_categories_by_pk": [ - 1165, + 1282, { "_set": [ - 1181 + 1298 ], "pk_columns": [ - 1179, + 1296, "e_tournament_categories_pk_columns_input!" ] } ], "update_e_tournament_categories_many": [ - 1175, + 1292, { "updates": [ - 1185, + 1302, "[e_tournament_categories_updates!]!" ] } ], "update_e_tournament_stage_types": [ - 1196, + 1313, { "_set": [ - 1202 + 1319 ], "where": [ - 1189, + 1306, "e_tournament_stage_types_bool_exp!" ] } ], "update_e_tournament_stage_types_by_pk": [ - 1186, + 1303, { "_set": [ - 1202 + 1319 ], "pk_columns": [ - 1200, + 1317, "e_tournament_stage_types_pk_columns_input!" ] } ], "update_e_tournament_stage_types_many": [ - 1196, + 1313, { "updates": [ - 1206, + 1323, "[e_tournament_stage_types_updates!]!" ] } ], "update_e_tournament_status": [ - 1217, + 1334, { "_set": [ - 1223 + 1340 ], "where": [ - 1210, + 1327, "e_tournament_status_bool_exp!" ] } ], "update_e_tournament_status_by_pk": [ - 1207, + 1324, { "_set": [ - 1223 + 1340 ], "pk_columns": [ - 1221, + 1338, "e_tournament_status_pk_columns_input!" ] } ], "update_e_tournament_status_many": [ - 1217, + 1334, { "updates": [ - 1227, + 1344, "[e_tournament_status_updates!]!" ] } ], "update_e_utility_types": [ - 1238, + 1355, { "_set": [ - 1243 + 1360 ], "where": [ - 1231, + 1348, "e_utility_types_bool_exp!" ] } ], "update_e_utility_types_by_pk": [ - 1228, + 1345, { "_set": [ - 1243 + 1360 ], "pk_columns": [ - 1241, + 1358, "e_utility_types_pk_columns_input!" ] } ], "update_e_utility_types_many": [ - 1238, + 1355, { "updates": [ - 1247, + 1364, "[e_utility_types_updates!]!" ] } ], "update_e_veto_pick_types": [ - 1258, + 1375, { "_set": [ - 1263 + 1380 ], "where": [ - 1251, + 1368, "e_veto_pick_types_bool_exp!" ] } ], "update_e_veto_pick_types_by_pk": [ - 1248, + 1365, { "_set": [ - 1263 + 1380 ], "pk_columns": [ - 1261, + 1378, "e_veto_pick_types_pk_columns_input!" ] } ], "update_e_veto_pick_types_many": [ - 1258, + 1375, { "updates": [ - 1267, + 1384, "[e_veto_pick_types_updates!]!" ] } ], "update_e_winning_reasons": [ - 1278, + 1395, { "_set": [ - 1283 + 1400 ], "where": [ - 1271, + 1388, "e_winning_reasons_bool_exp!" ] } ], "update_e_winning_reasons_by_pk": [ - 1268, + 1385, { "_set": [ - 1283 + 1400 ], "pk_columns": [ - 1281, + 1398, "e_winning_reasons_pk_columns_input!" ] } ], "update_e_winning_reasons_many": [ - 1278, + 1395, { "updates": [ - 1287, + 1404, "[e_winning_reasons_updates!]!" ] } ], "update_event_match_links": [ - 1296, + 1413, { "_set": [ - 1301 + 1418 ], "where": [ - 1291, + 1408, "event_match_links_bool_exp!" ] } ], "update_event_match_links_by_pk": [ - 1288, + 1405, { "_set": [ - 1301 + 1418 ], "pk_columns": [ - 1299, + 1416, "event_match_links_pk_columns_input!" ] } ], "update_event_match_links_many": [ - 1296, + 1413, { "updates": [ - 1305, + 1422, "[event_match_links_updates!]!" ] } ], "update_event_media": [ - 1323, + 1440, { "_inc": [ - 1317 + 1434 ], "_set": [ - 1370 + 1487 ], "where": [ - 1315, + 1432, "event_media_bool_exp!" ] } ], "update_event_media_by_pk": [ - 1306, + 1423, { "_inc": [ - 1317 + 1434 ], "_set": [ - 1370 + 1487 ], "pk_columns": [ - 1327, + 1444, "event_media_pk_columns_input!" ] } ], "update_event_media_many": [ - 1323, + 1440, { "updates": [ - 1382, + 1499, "[event_media_updates!]!" ] } ], "update_event_media_players": [ - 1345, + 1462, { "_inc": [ - 1339 + 1456 ], "_set": [ - 1350 + 1467 ], "where": [ - 1337, + 1454, "event_media_players_bool_exp!" ] } ], "update_event_media_players_by_pk": [ - 1328, + 1445, { "_inc": [ - 1339 + 1456 ], "_set": [ - 1350 + 1467 ], "pk_columns": [ - 1348, + 1465, "event_media_players_pk_columns_input!" ] } ], "update_event_media_players_many": [ - 1345, + 1462, { "updates": [ - 1362, + 1479, "[event_media_players_updates!]!" ] } ], "update_event_organizers": [ - 1406, + 1523, { "_inc": [ - 1400 + 1517 ], "_set": [ - 1411 + 1528 ], "where": [ - 1398, + 1515, "event_organizers_bool_exp!" ] } ], "update_event_organizers_by_pk": [ - 1389, + 1506, { "_inc": [ - 1400 + 1517 ], "_set": [ - 1411 + 1528 ], "pk_columns": [ - 1409, + 1526, "event_organizers_pk_columns_input!" ] } ], "update_event_organizers_many": [ - 1406, + 1523, { "updates": [ - 1423, + 1540, "[event_organizers_updates!]!" ] } ], "update_event_players": [ - 1447, + 1564, { "_inc": [ - 1441 + 1558 ], "_set": [ - 1452 + 1569 ], "where": [ - 1439, + 1556, "event_players_bool_exp!" ] } ], "update_event_players_by_pk": [ - 1430, + 1547, { "_inc": [ - 1441 + 1558 ], "_set": [ - 1452 + 1569 ], "pk_columns": [ - 1450, + 1567, "event_players_pk_columns_input!" ] } ], "update_event_players_many": [ - 1447, + 1564, { "updates": [ - 1464, + 1581, "[event_players_updates!]!" ] } ], "update_event_teams": [ - 1485, + 1602, { "_set": [ - 1490 + 1607 ], "where": [ - 1478, + 1595, "event_teams_bool_exp!" ] } ], "update_event_teams_by_pk": [ - 1471, + 1588, { "_set": [ - 1490 + 1607 ], "pk_columns": [ - 1488, + 1605, "event_teams_pk_columns_input!" ] } ], "update_event_teams_many": [ - 1485, + 1602, { "updates": [ - 1494, + 1611, "[event_teams_updates!]!" ] } ], "update_event_tournaments": [ - 1509, + 1626, { "_set": [ - 1514 + 1631 ], "where": [ - 1502, + 1619, "event_tournaments_bool_exp!" ] } ], "update_event_tournaments_by_pk": [ - 1495, + 1612, { "_set": [ - 1514 + 1631 ], "pk_columns": [ - 1512, + 1629, "event_tournaments_pk_columns_input!" ] } ], "update_event_tournaments_many": [ - 1509, + 1626, { "updates": [ - 1518, + 1635, "[event_tournaments_updates!]!" ] } ], "update_events": [ - 1529, + 1646, { "_inc": [ - 1525 + 1642 ], "_set": [ - 1535 + 1652 ], "where": [ - 1523, + 1640, "events_bool_exp!" ] } ], "update_events_by_pk": [ - 1519, + 1636, { "_inc": [ - 1525 + 1642 ], "_set": [ - 1535 + 1652 ], "pk_columns": [ - 1533, + 1650, "events_pk_columns_input!" ] } ], "update_events_many": [ - 1529, + 1646, { "updates": [ - 1543, + 1660, "[events_updates!]!" ] } ], "update_friends": [ - 1559, + 1676, { "_inc": [ - 1555 + 1672 ], "_set": [ - 1564 + 1681 ], "where": [ - 1553, + 1670, "friends_bool_exp!" ] } ], "update_friends_by_pk": [ - 1549, + 1666, { "_inc": [ - 1555 + 1672 ], "_set": [ - 1564 + 1681 ], "pk_columns": [ - 1562, + 1679, "friends_pk_columns_input!" ] } ], "update_friends_many": [ - 1559, + 1676, { "updates": [ - 1572, + 1689, "[friends_updates!]!" ] } ], "update_game_server_nodes": [ - 1599, + 1716, { "_append": [ - 1584 + 1701 ], "_delete_at_path": [ - 1590 + 1707 ], "_delete_elem": [ - 1591 + 1708 ], "_delete_key": [ - 1592 + 1709 ], "_inc": [ - 1593 + 1710 ], "_prepend": [ - 1604 + 1721 ], "_set": [ - 1608 + 1725 ], "where": [ - 1588, + 1705, "game_server_nodes_bool_exp!" ] } ], "update_game_server_nodes_by_pk": [ - 1576, + 1693, { "_append": [ - 1584 + 1701 ], "_delete_at_path": [ - 1590 + 1707 ], "_delete_elem": [ - 1591 + 1708 ], "_delete_key": [ - 1592 + 1709 ], "_inc": [ - 1593 + 1710 ], "_prepend": [ - 1604 + 1721 ], "_set": [ - 1608 + 1725 ], "pk_columns": [ - 1603, + 1720, "game_server_nodes_pk_columns_input!" ] } ], "update_game_server_nodes_many": [ - 1599, + 1716, { "updates": [ - 1620, + 1737, "[game_server_nodes_updates!]!" ] } ], "update_game_versions": [ - 1641, + 1758, { "_append": [ - 1630 + 1747 ], "_delete_at_path": [ - 1634 + 1751 ], "_delete_elem": [ - 1635 + 1752 ], "_delete_key": [ - 1636 + 1753 ], "_inc": [ - 1637 + 1754 ], "_prepend": [ - 1646 + 1763 ], "_set": [ - 1648 + 1765 ], "where": [ - 1632, + 1749, "game_versions_bool_exp!" ] } ], "update_game_versions_by_pk": [ - 1627, + 1744, { "_append": [ - 1630 + 1747 ], "_delete_at_path": [ - 1634 + 1751 ], "_delete_elem": [ - 1635 + 1752 ], "_delete_key": [ - 1636 + 1753 ], "_inc": [ - 1637 + 1754 ], "_prepend": [ - 1646 + 1763 ], "_set": [ - 1648 + 1765 ], "pk_columns": [ - 1645, + 1762, "game_versions_pk_columns_input!" ] } ], "update_game_versions_many": [ - 1641, + 1758, { "updates": [ - 1656, + 1773, "[game_versions_updates!]!" ] } ], "update_gamedata_signature_validations": [ - 1674, + 1791, { "_append": [ - 1663 + 1780 ], "_delete_at_path": [ - 1667 + 1784 ], "_delete_elem": [ - 1668 + 1785 ], "_delete_key": [ - 1669 + 1786 ], "_inc": [ - 1670 + 1787 ], "_prepend": [ - 1678 + 1795 ], "_set": [ - 1680 + 1797 ], "where": [ - 1665, + 1782, "gamedata_signature_validations_bool_exp!" ] } ], "update_gamedata_signature_validations_by_pk": [ - 1660, + 1777, { "_append": [ - 1663 + 1780 ], "_delete_at_path": [ - 1667 + 1784 ], "_delete_elem": [ - 1668 + 1785 ], "_delete_key": [ - 1669 + 1786 ], "_inc": [ - 1670 + 1787 ], "_prepend": [ - 1678 + 1795 ], "_set": [ - 1680 + 1797 ], "pk_columns": [ - 1677, + 1794, "gamedata_signature_validations_pk_columns_input!" ] } ], "update_gamedata_signature_validations_many": [ - 1674, + 1791, { "updates": [ - 1688, + 1805, "[gamedata_signature_validations_updates!]!" ] } ], "update_leaderboard_entries": [ - 1712, + 1829, { "_inc": [ - 1708 + 1825 ], "_set": [ - 1715 + 1832 ], "where": [ - 1707, + 1824, "leaderboard_entries_bool_exp!" ] } ], "update_leaderboard_entries_many": [ - 1712, + 1829, { "updates": [ - 1722, + 1839, "[leaderboard_entries_updates!]!" ] } ], "update_league_divisions": [ - 1737, + 1854, { "_inc": [ - 1733 + 1850 ], "_set": [ - 1743 + 1860 ], "where": [ - 1731, + 1848, "league_divisions_bool_exp!" ] } ], "update_league_divisions_by_pk": [ - 1727, + 1844, { "_inc": [ - 1733 + 1850 ], "_set": [ - 1743 + 1860 ], "pk_columns": [ - 1741, + 1858, "league_divisions_pk_columns_input!" ] } ], "update_league_divisions_many": [ - 1737, + 1854, { "updates": [ - 1751, + 1868, "[league_divisions_updates!]!" ] } ], "update_league_match_weeks": [ - 1772, + 1889, { "_inc": [ - 1766 + 1883 ], "_set": [ - 1777 + 1894 ], "where": [ - 1764, + 1881, "league_match_weeks_bool_exp!" ] } ], "update_league_match_weeks_by_pk": [ - 1755, + 1872, { "_inc": [ - 1766 + 1883 ], "_set": [ - 1777 + 1894 ], "pk_columns": [ - 1775, + 1892, "league_match_weeks_pk_columns_input!" ] } ], "update_league_match_weeks_many": [ - 1772, + 1889, { "updates": [ - 1789, + 1906, "[league_match_weeks_updates!]!" ] } ], "update_league_relegation_playoffs": [ - 1813, + 1930, { "_inc": [ - 1807 + 1924 ], "_set": [ - 1818 + 1935 ], "where": [ - 1805, + 1922, "league_relegation_playoffs_bool_exp!" ] } ], "update_league_relegation_playoffs_by_pk": [ - 1796, + 1913, { "_inc": [ - 1807 + 1924 ], "_set": [ - 1818 + 1935 ], "pk_columns": [ - 1816, + 1933, "league_relegation_playoffs_pk_columns_input!" ] } ], "update_league_relegation_playoffs_many": [ - 1813, + 1930, { "updates": [ - 1830, + 1947, "[league_relegation_playoffs_updates!]!" ] } ], "update_league_scheduling_proposals": [ - 1854, + 1971, { "_inc": [ - 1848 + 1965 ], "_set": [ - 1859 + 1976 ], "where": [ - 1846, + 1963, "league_scheduling_proposals_bool_exp!" ] } ], "update_league_scheduling_proposals_by_pk": [ - 1837, + 1954, { "_inc": [ - 1848 + 1965 ], "_set": [ - 1859 + 1976 ], "pk_columns": [ - 1857, + 1974, "league_scheduling_proposals_pk_columns_input!" ] } ], "update_league_scheduling_proposals_many": [ - 1854, + 1971, { "updates": [ - 1871, + 1988, "[league_scheduling_proposals_updates!]!" ] } ], "update_league_season_divisions": [ - 1892, + 2009, { "_set": [ - 1898 + 2015 ], "where": [ - 1885, + 2002, "league_season_divisions_bool_exp!" ] } ], "update_league_season_divisions_by_pk": [ - 1878, + 1995, { "_set": [ - 1898 + 2015 ], "pk_columns": [ - 1896, + 2013, "league_season_divisions_pk_columns_input!" ] } ], "update_league_season_divisions_many": [ - 1892, + 2009, { "updates": [ - 1902, + 2019, "[league_season_divisions_updates!]!" ] } ], "update_league_seasons": [ - 1917, + 2034, { "_append": [ - 1906 + 2023 ], "_delete_at_path": [ - 1910 + 2027 ], "_delete_elem": [ - 1911 + 2028 ], "_delete_key": [ - 1912 + 2029 ], "_inc": [ - 1913 + 2030 ], "_prepend": [ - 1922 + 2039 ], "_set": [ - 1924 + 2041 ], "where": [ - 1908, + 2025, "league_seasons_bool_exp!" ] } ], "update_league_seasons_by_pk": [ - 1903, + 2020, { "_append": [ - 1906 + 2023 ], "_delete_at_path": [ - 1910 + 2027 ], "_delete_elem": [ - 1911 + 2028 ], "_delete_key": [ - 1912 + 2029 ], "_inc": [ - 1913 + 2030 ], "_prepend": [ - 1922 + 2039 ], "_set": [ - 1924 + 2041 ], "pk_columns": [ - 1921, + 2038, "league_seasons_pk_columns_input!" ] } ], "update_league_seasons_many": [ - 1917, + 2034, { "updates": [ - 1932, + 2049, "[league_seasons_updates!]!" ] } ], "update_league_team_movements": [ - 1953, + 2070, { "_inc": [ - 1947 + 2064 ], "_set": [ - 1958 + 2075 ], "where": [ - 1945, + 2062, "league_team_movements_bool_exp!" ] } ], "update_league_team_movements_by_pk": [ - 1936, + 2053, { "_inc": [ - 1947 + 2064 ], "_set": [ - 1958 + 2075 ], "pk_columns": [ - 1956, + 2073, "league_team_movements_pk_columns_input!" ] } ], "update_league_team_movements_many": [ - 1953, + 2070, { "updates": [ - 1970, + 2087, "[league_team_movements_updates!]!" ] } ], "update_league_team_rosters": [ - 1994, + 2111, { "_inc": [ - 1988 + 2105 ], "_set": [ - 1999 + 2116 ], "where": [ - 1986, + 2103, "league_team_rosters_bool_exp!" ] } ], "update_league_team_rosters_by_pk": [ - 1977, + 2094, { "_inc": [ - 1988 + 2105 ], "_set": [ - 1999 + 2116 ], "pk_columns": [ - 1997, + 2114, "league_team_rosters_pk_columns_input!" ] } ], "update_league_team_rosters_many": [ - 1994, + 2111, { "updates": [ - 2011, + 2128, "[league_team_rosters_updates!]!" ] } ], "update_league_team_seasons": [ - 2035, + 2152, { "_inc": [ - 2029 + 2146 ], "_set": [ - 2041 + 2158 ], "where": [ - 2027, + 2144, "league_team_seasons_bool_exp!" ] } ], "update_league_team_seasons_by_pk": [ - 2018, + 2135, { "_inc": [ - 2029 + 2146 ], "_set": [ - 2041 + 2158 ], "pk_columns": [ - 2039, + 2156, "league_team_seasons_pk_columns_input!" ] } ], "update_league_team_seasons_many": [ - 2035, + 2152, { "updates": [ - 2053, + 2170, "[league_team_seasons_updates!]!" ] } ], "update_league_teams": [ - 2068, + 2185, { "_set": [ - 2074 + 2191 ], "where": [ - 2063, + 2180, "league_teams_bool_exp!" ] } ], "update_league_teams_by_pk": [ - 2060, + 2177, { "_set": [ - 2074 + 2191 ], "pk_columns": [ - 2072, + 2189, "league_teams_pk_columns_input!" ] } ], "update_league_teams_many": [ - 2068, + 2185, { "updates": [ - 2078, + 2195, "[league_teams_updates!]!" ] } ], "update_lobbies": [ - 2087, + 2204, { "_set": [ - 2093 + 2210 ], "where": [ - 2082, + 2199, "lobbies_bool_exp!" ] } ], "update_lobbies_by_pk": [ - 2079, + 2196, { "_set": [ - 2093 + 2210 ], "pk_columns": [ - 2091, + 2208, "lobbies_pk_columns_input!" ] } ], "update_lobbies_many": [ - 2087, + 2204, { "updates": [ - 2097, + 2214, "[lobbies_updates!]!" ] } ], "update_lobby_players": [ - 2117, + 2234, { "_inc": [ - 2111 + 2228 ], "_set": [ - 2124 + 2241 ], "where": [ - 2109, + 2226, "lobby_players_bool_exp!" ] } ], "update_lobby_players_by_pk": [ - 2098, + 2215, { "_inc": [ - 2111 + 2228 ], "_set": [ - 2124 + 2241 ], "pk_columns": [ - 2120, + 2237, "lobby_players_pk_columns_input!" ] } ], "update_lobby_players_many": [ - 2117, + 2234, { "updates": [ - 2136, + 2253, "[lobby_players_updates!]!" ] } ], "update_map_pools": [ - 2151, + 2268, { "_set": [ - 2157 + 2274 ], "where": [ - 2146, + 2263, "map_pools_bool_exp!" ] } ], "update_map_pools_by_pk": [ - 2143, + 2260, { "_set": [ - 2157 + 2274 ], "pk_columns": [ - 2155, + 2272, "map_pools_pk_columns_input!" ] } ], "update_map_pools_many": [ - 2151, + 2268, { "updates": [ - 2161, + 2278, "[map_pools_updates!]!" ] } ], "update_maps": [ - 2178, + 2295, { "_set": [ - 2186 + 2303 ], "where": [ - 2171, + 2288, "maps_bool_exp!" ] } ], "update_maps_by_pk": [ - 2162, + 2279, { "_set": [ - 2186 + 2303 ], "pk_columns": [ - 2182, + 2299, "maps_pk_columns_input!" ] } ], "update_maps_many": [ - 2178, + 2295, { "updates": [ - 2190, + 2307, "[maps_updates!]!" ] } ], "update_match_clips": [ - 2208, + 2325, { "_inc": [ - 2202 + 2319 ], "_set": [ - 2214 + 2331 ], "where": [ - 2200, + 2317, "match_clips_bool_exp!" ] } ], "update_match_clips_by_pk": [ - 2191, + 2308, { "_inc": [ - 2202 + 2319 ], "_set": [ - 2214 + 2331 ], "pk_columns": [ - 2212, + 2329, "match_clips_pk_columns_input!" ] } ], "update_match_clips_many": [ - 2208, + 2325, { "updates": [ - 2226, + 2343, "[match_clips_updates!]!" ] } ], "update_match_demo_sessions": [ - 2254, + 2371, { "_append": [ - 2239 + 2356 ], "_delete_at_path": [ - 2245 + 2362 ], "_delete_elem": [ - 2246 + 2363 ], "_delete_key": [ - 2247 + 2364 ], "_inc": [ - 2248 + 2365 ], "_prepend": [ - 2258 + 2375 ], "_set": [ - 2260 + 2377 ], "where": [ - 2243, + 2360, "match_demo_sessions_bool_exp!" ] } ], "update_match_demo_sessions_by_pk": [ - 2233, + 2350, { "_append": [ - 2239 + 2356 ], "_delete_at_path": [ - 2245 + 2362 ], "_delete_elem": [ - 2246 + 2363 ], "_delete_key": [ - 2247 + 2364 ], "_inc": [ - 2248 + 2365 ], "_prepend": [ - 2258 + 2375 ], "_set": [ - 2260 + 2377 ], "pk_columns": [ - 2257, + 2374, "match_demo_sessions_pk_columns_input!" ] } ], "update_match_demo_sessions_many": [ - 2254, + 2371, { "updates": [ - 2272, + 2389, "[match_demo_sessions_updates!]!" ] } ], "update_match_lineup_players": [ - 2298, + 2415, { "_inc": [ - 2292 + 2409 ], "_set": [ - 2305 + 2422 ], "where": [ - 2290, + 2407, "match_lineup_players_bool_exp!" ] } ], "update_match_lineup_players_by_pk": [ - 2279, + 2396, { "_inc": [ - 2292 + 2409 ], "_set": [ - 2305 + 2422 ], "pk_columns": [ - 2301, + 2418, "match_lineup_players_pk_columns_input!" ] } ], "update_match_lineup_players_many": [ - 2298, + 2415, { "updates": [ - 2317, + 2434, "[match_lineup_players_updates!]!" ] } ], "update_match_lineups": [ - 2341, + 2458, { "_inc": [ - 2335 + 2452 ], "_set": [ - 2347 + 2464 ], "where": [ - 2333, + 2450, "match_lineups_bool_exp!" ] } ], "update_match_lineups_by_pk": [ - 2324, + 2441, { "_inc": [ - 2335 + 2452 ], "_set": [ - 2347 + 2464 ], "pk_columns": [ - 2345, + 2462, "match_lineups_pk_columns_input!" ] } ], "update_match_lineups_many": [ - 2341, + 2458, { "updates": [ - 2359, + 2476, "[match_lineups_updates!]!" ] } ], "update_match_map_demos": [ - 2389, + 2506, { "_append": [ - 2374 + 2491 ], "_delete_at_path": [ - 2380 + 2497 ], "_delete_elem": [ - 2381 + 2498 ], "_delete_key": [ - 2382 + 2499 ], "_inc": [ - 2383 + 2500 ], "_prepend": [ - 2394 + 2511 ], "_set": [ - 2398 + 2515 ], "where": [ - 2378, + 2495, "match_map_demos_bool_exp!" ] } ], "update_match_map_demos_by_pk": [ - 2366, + 2483, { "_append": [ - 2374 + 2491 ], "_delete_at_path": [ - 2380 + 2497 ], "_delete_elem": [ - 2381 + 2498 ], "_delete_key": [ - 2382 + 2499 ], "_inc": [ - 2383 + 2500 ], "_prepend": [ - 2394 + 2511 ], "_set": [ - 2398 + 2515 ], "pk_columns": [ - 2393, + 2510, "match_map_demos_pk_columns_input!" ] } ], "update_match_map_demos_many": [ - 2389, + 2506, { "updates": [ - 2410, + 2527, "[match_map_demos_updates!]!" ] } ], "update_match_map_rounds": [ - 2434, + 2551, { "_inc": [ - 2428 + 2545 ], "_set": [ - 2439 + 2556 ], "where": [ - 2426, + 2543, "match_map_rounds_bool_exp!" ] } ], "update_match_map_rounds_by_pk": [ - 2417, + 2534, { "_inc": [ - 2428 + 2545 ], "_set": [ - 2439 + 2556 ], "pk_columns": [ - 2437, + 2554, "match_map_rounds_pk_columns_input!" ] } ], "update_match_map_rounds_many": [ - 2434, + 2551, { "updates": [ - 2451, + 2568, "[match_map_rounds_updates!]!" ] } ], "update_match_map_veto_picks": [ - 2472, + 2589, { "_set": [ - 2477 + 2594 ], "where": [ - 2465, + 2582, "match_map_veto_picks_bool_exp!" ] } ], "update_match_map_veto_picks_by_pk": [ - 2458, + 2575, { "_set": [ - 2477 + 2594 ], "pk_columns": [ - 2475, + 2592, "match_map_veto_picks_pk_columns_input!" ] } ], "update_match_map_veto_picks_many": [ - 2472, + 2589, { "updates": [ - 2481, + 2598, "[match_map_veto_picks_updates!]!" ] } ], "update_match_maps": [ - 2499, + 2616, { "_inc": [ - 2493 + 2610 ], "_set": [ - 2505 + 2622 ], "where": [ - 2491, + 2608, "match_maps_bool_exp!" ] } ], "update_match_maps_by_pk": [ - 2482, + 2599, { "_inc": [ - 2493 + 2610 ], "_set": [ - 2505 + 2622 ], "pk_columns": [ - 2503, + 2620, "match_maps_pk_columns_input!" ] } ], "update_match_maps_many": [ - 2499, + 2616, { "updates": [ - 2517, + 2634, "[match_maps_updates!]!" ] } ], "update_match_options": [ - 2534, + 2651, { "_inc": [ - 2530 + 2647 ], "_set": [ - 2540 + 2657 ], "where": [ - 2528, + 2645, "match_options_bool_exp!" ] } ], "update_match_options_by_pk": [ - 2524, + 2641, { "_inc": [ - 2530 + 2647 ], "_set": [ - 2540 + 2657 ], "pk_columns": [ - 2538, + 2655, "match_options_pk_columns_input!" ] } ], "update_match_options_many": [ - 2534, + 2651, { "updates": [ - 2548, + 2665, "[match_options_updates!]!" ] } ], "update_match_region_veto_picks": [ - 2566, + 2683, { "_set": [ - 2571 + 2688 ], "where": [ - 2559, + 2676, "match_region_veto_picks_bool_exp!" ] } ], "update_match_region_veto_picks_by_pk": [ - 2552, + 2669, { "_set": [ - 2571 + 2688 ], "pk_columns": [ - 2569, + 2686, "match_region_veto_picks_pk_columns_input!" ] } ], "update_match_region_veto_picks_many": [ - 2566, + 2683, { "updates": [ - 2575, + 2692, "[match_region_veto_picks_updates!]!" ] } ], "update_match_streams": [ - 2599, + 2716, { "_append": [ - 2584 + 2701 ], "_delete_at_path": [ - 2590 + 2707 ], "_delete_elem": [ - 2591 + 2708 ], "_delete_key": [ - 2592 + 2709 ], "_inc": [ - 2593 + 2710 ], "_prepend": [ - 2603 + 2720 ], "_set": [ - 2607 + 2724 ], "where": [ - 2588, + 2705, "match_streams_bool_exp!" ] } ], "update_match_streams_by_pk": [ - 2576, + 2693, { "_append": [ - 2584 + 2701 ], "_delete_at_path": [ - 2590 + 2707 ], "_delete_elem": [ - 2591 + 2708 ], "_delete_key": [ - 2592 + 2709 ], "_inc": [ - 2593 + 2710 ], "_prepend": [ - 2603 + 2720 ], "_set": [ - 2607 + 2724 ], "pk_columns": [ - 2602, + 2719, "match_streams_pk_columns_input!" ] } ], "update_match_streams_many": [ - 2599, + 2716, { "updates": [ - 2619, + 2736, "[match_streams_updates!]!" ] } ], "update_match_type_cfgs": [ - 2634, + 2751, { "_set": [ - 2639 + 2756 ], "where": [ - 2629, + 2746, "match_type_cfgs_bool_exp!" ] } ], "update_match_type_cfgs_by_pk": [ - 2626, + 2743, { "_set": [ - 2639 + 2756 ], "pk_columns": [ - 2637, + 2754, "match_type_cfgs_pk_columns_input!" ] } ], "update_match_type_cfgs_many": [ - 2634, + 2751, { "updates": [ - 2643, + 2760, "[match_type_cfgs_updates!]!" ] } ], "update_matches": [ - 2661, + 2778, { "_inc": [ - 2655 + 2772 ], "_set": [ - 2667 + 2784 ], "where": [ - 2653, + 2770, "matches_bool_exp!" ] } ], "update_matches_by_pk": [ - 2644, + 2761, { "_inc": [ - 2655 + 2772 ], "_set": [ - 2667 + 2784 ], "pk_columns": [ - 2665, + 2782, "matches_pk_columns_input!" ] } ], "update_matches_many": [ - 2661, + 2778, { "updates": [ - 2679, + 2796, "[matches_updates!]!" ] } ], "update_migration_hashes_hashes": [ - 2694, + 2811, { "_set": [ - 2699 + 2816 ], "where": [ - 2689, + 2806, "migration_hashes_hashes_bool_exp!" ] } ], "update_migration_hashes_hashes_by_pk": [ - 2686, + 2803, { "_set": [ - 2699 + 2816 ], "pk_columns": [ - 2697, + 2814, "migration_hashes_hashes_pk_columns_input!" ] } ], "update_migration_hashes_hashes_many": [ - 2694, + 2811, { "updates": [ - 2703, + 2820, "[migration_hashes_hashes_updates!]!" ] } ], "update_my_friends": [ - 2726, + 2843, { "_append": [ - 2712 + 2829 ], "_delete_at_path": [ - 2717 + 2834 ], "_delete_elem": [ - 2718 + 2835 ], "_delete_key": [ - 2719 + 2836 ], "_inc": [ - 2720 + 2837 ], "_prepend": [ - 2728 + 2845 ], "_set": [ - 2732 + 2849 ], "where": [ - 2716, + 2833, "my_friends_bool_exp!" ] } ], "update_my_friends_many": [ - 2726, + 2843, { "updates": [ - 2743, + 2860, "[my_friends_updates!]!" ] } ], "update_news_articles": [ - 2760, + 2877, { "_inc": [ - 2756 + 2873 ], "_set": [ - 2765 + 2882 ], "where": [ - 2754, + 2871, "news_articles_bool_exp!" ] } ], "update_news_articles_by_pk": [ - 2750, + 2867, { "_inc": [ - 2756 + 2873 ], "_set": [ - 2765 + 2882 ], "pk_columns": [ - 2763, + 2880, "news_articles_pk_columns_input!" ] } ], "update_news_articles_many": [ - 2760, + 2877, { "updates": [ - 2773, + 2890, "[news_articles_updates!]!" ] } ], "update_notifications": [ - 2800, + 2917, { "_append": [ - 2785 + 2902 ], "_delete_at_path": [ - 2791 + 2908 ], "_delete_elem": [ - 2792 + 2909 ], "_delete_key": [ - 2793 + 2910 ], "_inc": [ - 2794 + 2911 ], "_prepend": [ - 2804 + 2921 ], "_set": [ - 2808 + 2925 ], "where": [ - 2789, + 2906, "notifications_bool_exp!" ] } ], "update_notifications_by_pk": [ - 2777, + 2894, { "_append": [ - 2785 + 2902 ], "_delete_at_path": [ - 2791 + 2908 ], "_delete_elem": [ - 2792 + 2909 ], "_delete_key": [ - 2793 + 2910 ], "_inc": [ - 2794 + 2911 ], "_prepend": [ - 2804 + 2921 ], "_set": [ - 2808 + 2925 ], "pk_columns": [ - 2803, + 2920, "notifications_pk_columns_input!" ] } ], "update_notifications_many": [ - 2800, + 2917, { "updates": [ - 2820, + 2937, "[notifications_updates!]!" ] } ], "update_pending_match_import_players": [ - 2847, + 2964, { "_inc": [ - 2841 + 2958 ], "_set": [ - 2852 + 2969 ], "where": [ - 2839, + 2956, "pending_match_import_players_bool_exp!" ] } ], "update_pending_match_import_players_by_pk": [ - 2830, + 2947, { "_inc": [ - 2841 + 2958 ], "_set": [ - 2852 + 2969 ], "pk_columns": [ - 2850, + 2967, "pending_match_import_players_pk_columns_input!" ] } ], "update_pending_match_import_players_many": [ - 2847, + 2964, { "updates": [ - 2864, + 2981, "[pending_match_import_players_updates!]!" ] } ], "update_pending_match_imports": [ - 2881, + 2998, { "_inc": [ - 2877 + 2994 ], "_set": [ - 2887 + 3004 ], "where": [ - 2875, + 2992, "pending_match_imports_bool_exp!" ] } ], "update_pending_match_imports_by_pk": [ - 2871, + 2988, { "_inc": [ - 2877 + 2994 ], "_set": [ - 2887 + 3004 ], "pk_columns": [ - 2885, + 3002, "pending_match_imports_pk_columns_input!" ] } ], "update_pending_match_imports_many": [ - 2881, + 2998, { "updates": [ - 2895, + 3012, "[pending_match_imports_updates!]!" ] } ], "update_player_aim_stats_demo": [ - 2909, + 3026, { "_inc": [ - 2905 + 3022 ], "_set": [ - 2914 + 3031 ], "where": [ - 2903, + 3020, "player_aim_stats_demo_bool_exp!" ] } ], "update_player_aim_stats_demo_by_pk": [ - 2899, + 3016, { "_inc": [ - 2905 + 3022 ], "_set": [ - 2914 + 3031 ], "pk_columns": [ - 2912, + 3029, "player_aim_stats_demo_pk_columns_input!" ] } ], "update_player_aim_stats_demo_many": [ - 2909, + 3026, { "updates": [ - 2922, + 3039, "[player_aim_stats_demo_updates!]!" ] } ], "update_player_aim_weapon_stats": [ - 2943, + 3060, { "_inc": [ - 2937 + 3054 ], "_set": [ - 2948 + 3065 ], "where": [ - 2935, + 3052, "player_aim_weapon_stats_bool_exp!" ] } ], "update_player_aim_weapon_stats_by_pk": [ - 2926, + 3043, { "_inc": [ - 2937 + 3054 ], "_set": [ - 2948 + 3065 ], "pk_columns": [ - 2946, + 3063, "player_aim_weapon_stats_pk_columns_input!" ] } ], "update_player_aim_weapon_stats_many": [ - 2943, + 3060, { "updates": [ - 2960, + 3077, "[player_aim_weapon_stats_updates!]!" ] } ], "update_player_assists": [ - 2986, + 3103, { "_inc": [ - 2980 + 3097 ], "_set": [ - 2993 + 3110 ], "where": [ - 2978, + 3095, "player_assists_bool_exp!" ] } ], "update_player_assists_by_pk": [ - 2967, + 3084, { "_inc": [ - 2980 + 3097 ], "_set": [ - 2993 + 3110 ], "pk_columns": [ - 2989, + 3106, "player_assists_pk_columns_input!" ] } ], "update_player_assists_many": [ - 2986, + 3103, { "updates": [ - 3005, + 3122, "[player_assists_updates!]!" ] } ], "update_player_damages": [ - 3047, + 3164, { "_inc": [ - 3041 + 3158 ], "_set": [ - 3052 + 3169 ], "where": [ - 3039, + 3156, "player_damages_bool_exp!" ] } ], "update_player_damages_by_pk": [ - 3030, + 3147, { "_inc": [ - 3041 + 3158 ], "_set": [ - 3052 + 3169 ], "pk_columns": [ - 3050, + 3167, "player_damages_pk_columns_input!" ] } ], "update_player_damages_many": [ - 3047, + 3164, { "updates": [ - 3064, + 3181, "[player_damages_updates!]!" ] } ], "update_player_elo": [ - 3081, + 3198, { "_inc": [ - 3077 + 3194 ], "_set": [ - 3086 + 3203 ], "where": [ - 3075, + 3192, "player_elo_bool_exp!" ] } ], "update_player_elo_by_pk": [ - 3071, + 3188, { "_inc": [ - 3077 + 3194 ], "_set": [ - 3086 + 3203 ], "pk_columns": [ - 3084, + 3201, "player_elo_pk_columns_input!" ] } ], "update_player_elo_many": [ - 3081, + 3198, { "updates": [ - 3094, + 3211, "[player_elo_updates!]!" ] } ], "update_player_faceit_rank_history": [ - 3115, + 3232, { "_inc": [ - 3109 + 3226 ], "_set": [ - 3120 + 3237 ], "where": [ - 3107, + 3224, "player_faceit_rank_history_bool_exp!" ] } ], "update_player_faceit_rank_history_by_pk": [ - 3098, + 3215, { "_inc": [ - 3109 + 3226 ], "_set": [ - 3120 + 3237 ], "pk_columns": [ - 3118, + 3235, "player_faceit_rank_history_pk_columns_input!" ] } ], "update_player_faceit_rank_history_many": [ - 3115, + 3232, { "updates": [ - 3132, + 3249, "[player_faceit_rank_history_updates!]!" ] } ], "update_player_flashes": [ - 3158, + 3275, { "_inc": [ - 3152 + 3269 ], "_set": [ - 3165 + 3282 ], "where": [ - 3150, + 3267, "player_flashes_bool_exp!" ] } ], "update_player_flashes_by_pk": [ - 3139, + 3256, { "_inc": [ - 3152 + 3269 ], "_set": [ - 3165 + 3282 ], "pk_columns": [ - 3161, + 3278, "player_flashes_pk_columns_input!" ] } ], "update_player_flashes_many": [ - 3158, + 3275, { "updates": [ - 3177, + 3294, "[player_flashes_updates!]!" ] } ], "update_player_kills": [ - 3244, + 3361, { "_inc": [ - 3238 + 3355 ], "_set": [ - 3251 + 3368 ], "where": [ - 3195, + 3312, "player_kills_bool_exp!" ] } ], "update_player_kills_by_pk": [ - 3184, + 3301, { "_inc": [ - 3238 + 3355 ], "_set": [ - 3251 + 3368 ], "pk_columns": [ - 3247, + 3364, "player_kills_pk_columns_input!" ] } ], "update_player_kills_by_weapon": [ - 3213, + 3330, { "_inc": [ - 3207 + 3324 ], "_set": [ - 3218 + 3335 ], "where": [ - 3205, + 3322, "player_kills_by_weapon_bool_exp!" ] } ], "update_player_kills_by_weapon_by_pk": [ - 3196, + 3313, { "_inc": [ - 3207 + 3324 ], "_set": [ - 3218 + 3335 ], "pk_columns": [ - 3216, + 3333, "player_kills_by_weapon_pk_columns_input!" ] } ], "update_player_kills_by_weapon_many": [ - 3213, + 3330, { "updates": [ - 3230, + 3347, "[player_kills_by_weapon_updates!]!" ] } ], "update_player_kills_many": [ - 3244, + 3361, { "updates": [ - 3263, + 3380, "[player_kills_updates!]!" ] } ], "update_player_leaderboard_rank": [ - 3279, + 3396, { "_inc": [ - 3275 + 3392 ], "_set": [ - 3282 + 3399 ], "where": [ - 3274, + 3391, "player_leaderboard_rank_bool_exp!" ] } ], "update_player_leaderboard_rank_many": [ - 3279, + 3396, { "updates": [ - 3289, + 3406, "[player_leaderboard_rank_updates!]!" ] } ], "update_player_match_map_stats": [ - 3310, + 3427, { "_inc": [ - 3304 + 3421 ], "_set": [ - 3315 + 3432 ], "where": [ - 3302, + 3419, "player_match_map_stats_bool_exp!" ] } ], "update_player_match_map_stats_by_pk": [ - 3293, + 3410, { "_inc": [ - 3304 + 3421 ], "_set": [ - 3315 + 3432 ], "pk_columns": [ - 3313, + 3430, "player_match_map_stats_pk_columns_input!" ] } ], "update_player_match_map_stats_many": [ - 3310, + 3427, { "updates": [ - 3327, + 3444, "[player_match_map_stats_updates!]!" ] } ], "update_player_objectives": [ - 3402, + 3519, { "_inc": [ - 3396 + 3513 ], "_set": [ - 3407 + 3524 ], "where": [ - 3394, + 3511, "player_objectives_bool_exp!" ] } ], "update_player_objectives_by_pk": [ - 3385, + 3502, { "_inc": [ - 3396 + 3513 ], "_set": [ - 3407 + 3524 ], "pk_columns": [ - 3405, + 3522, "player_objectives_pk_columns_input!" ] } ], "update_player_objectives_many": [ - 3402, + 3519, { "updates": [ - 3419, + 3536, "[player_objectives_updates!]!" ] } ], "update_player_premier_rank_history": [ - 3461, + 3578, { "_inc": [ - 3455 + 3572 ], "_set": [ - 3466 + 3583 ], "where": [ - 3453, + 3570, "player_premier_rank_history_bool_exp!" ] } ], "update_player_premier_rank_history_by_pk": [ - 3444, + 3561, { "_inc": [ - 3455 + 3572 ], "_set": [ - 3466 + 3583 ], "pk_columns": [ - 3464, + 3581, "player_premier_rank_history_pk_columns_input!" ] } ], "update_player_premier_rank_history_many": [ - 3461, + 3578, { "updates": [ - 3478, + 3595, "[player_premier_rank_history_updates!]!" ] } ], "update_player_sanctions": [ - 3502, + 3619, { "_inc": [ - 3496 + 3613 ], "_set": [ - 3507 + 3624 ], "where": [ - 3494, + 3611, "player_sanctions_bool_exp!" ] } ], "update_player_sanctions_by_pk": [ - 3485, + 3602, { "_inc": [ - 3496 + 3613 ], "_set": [ - 3507 + 3624 ], "pk_columns": [ - 3505, + 3622, "player_sanctions_pk_columns_input!" ] } ], "update_player_sanctions_many": [ - 3502, + 3619, { "updates": [ - 3519, + 3636, "[player_sanctions_updates!]!" ] } ], "update_player_season_stats": [ - 3553, + 3670, { "_inc": [ - 3547 + 3664 ], "_set": [ - 3566 + 3683 ], "where": [ - 3545, + 3662, "player_season_stats_bool_exp!" ] } ], "update_player_season_stats_by_pk": [ - 3526, + 3643, { "_inc": [ - 3547 + 3664 ], "_set": [ - 3566 + 3683 ], "pk_columns": [ - 3556, + 3673, "player_season_stats_pk_columns_input!" ] } ], "update_player_season_stats_many": [ - 3553, + 3670, { "updates": [ - 3578, + 3695, "[player_season_stats_updates!]!" ] } ], "update_player_stats": [ - 3595, + 3712, { "_inc": [ - 3591 + 3708 ], "_set": [ - 3601 + 3718 ], "where": [ - 3589, + 3706, "player_stats_bool_exp!" ] } ], "update_player_stats_by_pk": [ - 3585, + 3702, { "_inc": [ - 3591 + 3708 ], "_set": [ - 3601 + 3718 ], "pk_columns": [ - 3599, + 3716, "player_stats_pk_columns_input!" ] } ], "update_player_stats_many": [ - 3595, + 3712, { "updates": [ - 3609, + 3726, "[player_stats_updates!]!" ] } ], "update_player_steam_bot_friend": [ - 3627, + 3744, { "_append": [ - 3616 + 3733 ], "_delete_at_path": [ - 3620 + 3737 ], "_delete_elem": [ - 3621 + 3738 ], "_delete_key": [ - 3622 + 3739 ], "_inc": [ - 3623 + 3740 ], "_prepend": [ - 3631 + 3748 ], "_set": [ - 3633 + 3750 ], "where": [ - 3618, + 3735, "player_steam_bot_friend_bool_exp!" ] } ], "update_player_steam_bot_friend_by_pk": [ - 3613, + 3730, { "_append": [ - 3616 + 3733 ], "_delete_at_path": [ - 3620 + 3737 ], "_delete_elem": [ - 3621 + 3738 ], "_delete_key": [ - 3622 + 3739 ], "_inc": [ - 3623 + 3740 ], "_prepend": [ - 3631 + 3748 ], "_set": [ - 3633 + 3750 ], "pk_columns": [ - 3630, + 3747, "player_steam_bot_friend_pk_columns_input!" ] } ], "update_player_steam_bot_friend_many": [ - 3627, + 3744, { "updates": [ - 3641, + 3758, "[player_steam_bot_friend_updates!]!" ] } ], "update_player_steam_match_auth": [ - 3655, + 3772, { "_inc": [ - 3651 + 3768 ], "_set": [ - 3660 + 3777 ], "where": [ - 3649, + 3766, "player_steam_match_auth_bool_exp!" ] } ], "update_player_steam_match_auth_by_pk": [ - 3645, + 3762, { "_inc": [ - 3651 + 3768 ], "_set": [ - 3660 + 3777 ], "pk_columns": [ - 3658, + 3775, "player_steam_match_auth_pk_columns_input!" ] } ], "update_player_steam_match_auth_many": [ - 3655, + 3772, { "updates": [ - 3668, + 3785, "[player_steam_match_auth_updates!]!" ] } ], "update_player_unused_utility": [ - 3689, + 3806, { "_inc": [ - 3683 + 3800 ], "_set": [ - 3694 + 3811 ], "where": [ - 3681, + 3798, "player_unused_utility_bool_exp!" ] } ], "update_player_unused_utility_by_pk": [ - 3672, + 3789, { "_inc": [ - 3683 + 3800 ], "_set": [ - 3694 + 3811 ], "pk_columns": [ - 3692, + 3809, "player_unused_utility_pk_columns_input!" ] } ], "update_player_unused_utility_many": [ - 3689, + 3806, { "updates": [ - 3706, + 3823, "[player_unused_utility_updates!]!" ] } ], "update_player_utility": [ - 3730, + 3847, { "_inc": [ - 3724 + 3841 ], "_set": [ - 3735 + 3852 ], "where": [ - 3722, + 3839, "player_utility_bool_exp!" ] } ], "update_player_utility_by_pk": [ - 3713, + 3830, { "_inc": [ - 3724 + 3841 ], "_set": [ - 3735 + 3852 ], "pk_columns": [ - 3733, + 3850, "player_utility_pk_columns_input!" ] } ], "update_player_utility_many": [ - 3730, + 3847, { "updates": [ - 3747, + 3864, "[player_utility_updates!]!" ] } ], "update_players": [ - 3797, + 3914, { "_inc": [ - 3793 + 3910 ], "_set": [ - 3803 + 3920 ], "where": [ - 3791, + 3908, "players_bool_exp!" ] } ], "update_players_by_pk": [ - 3787, + 3904, { "_inc": [ - 3793 + 3910 ], "_set": [ - 3803 + 3920 ], "pk_columns": [ - 3801, + 3918, "players_pk_columns_input!" ] } ], "update_players_many": [ - 3797, + 3914, { "updates": [ - 3811, + 3928, "[players_updates!]!" ] } ], "update_plugin_versions": [ - 3825, + 3942, { "_inc": [ - 3821 + 3938 ], "_set": [ - 3830 + 3947 ], "where": [ - 3819, + 3936, "plugin_versions_bool_exp!" ] } ], "update_plugin_versions_by_pk": [ - 3815, + 3932, { "_inc": [ - 3821 + 3938 ], "_set": [ - 3830 + 3947 ], "pk_columns": [ - 3828, + 3945, "plugin_versions_pk_columns_input!" ] } ], "update_plugin_versions_many": [ - 3825, + 3942, { "updates": [ - 3838, + 3955, "[plugin_versions_updates!]!" ] } ], "update_seasons": [ - 3856, + 3973, { "_inc": [ - 3852 + 3969 ], "_set": [ - 3862 + 3979 ], "where": [ - 3850, + 3967, "seasons_bool_exp!" ] } ], "update_seasons_by_pk": [ - 3846, + 3963, { "_inc": [ - 3852 + 3969 ], "_set": [ - 3862 + 3979 ], "pk_columns": [ - 3860, + 3977, "seasons_pk_columns_input!" ] } ], "update_seasons_many": [ - 3856, + 3973, { "updates": [ - 3870, + 3987, "[seasons_updates!]!" ] } ], "update_server_regions": [ - 3883, + 4000, { "_set": [ - 3889 + 4006 ], "where": [ - 3878, + 3995, "server_regions_bool_exp!" ] } ], "update_server_regions_by_pk": [ - 3874, + 3991, { "_set": [ - 3889 + 4006 ], "pk_columns": [ - 3887, + 4004, "server_regions_pk_columns_input!" ] } ], "update_server_regions_many": [ - 3883, + 4000, { "updates": [ - 3897, + 4014, "[server_regions_updates!]!" ] } ], "update_servers": [ - 3920, + 4037, { "_inc": [ - 3914 + 4031 ], "_set": [ - 3928 + 4045 ], "where": [ - 3912, + 4029, "servers_bool_exp!" ] } ], "update_servers_by_pk": [ - 3901, + 4018, { "_inc": [ - 3914 + 4031 ], "_set": [ - 3928 + 4045 ], "pk_columns": [ - 3924, + 4041, "servers_pk_columns_input!" ] } ], "update_servers_many": [ - 3920, + 4037, { "updates": [ - 3940, + 4057, "[servers_updates!]!" ] } ], "update_settings": [ - 3955, + 4072, { "_set": [ - 3960 + 4077 ], "where": [ - 3950, + 4067, "settings_bool_exp!" ] } ], "update_settings_by_pk": [ - 3947, + 4064, { "_set": [ - 3960 + 4077 ], "pk_columns": [ - 3958, + 4075, "settings_pk_columns_input!" ] } ], "update_settings_many": [ - 3955, + 4072, { "updates": [ - 3964, + 4081, "[settings_updates!]!" ] } ], "update_steam_account_claims": [ - 3981, + 4098, { "_set": [ - 3986 + 4103 ], "where": [ - 3974, + 4091, "steam_account_claims_bool_exp!" ] } ], "update_steam_account_claims_by_pk": [ - 3967, + 4084, { "_set": [ - 3986 + 4103 ], "pk_columns": [ - 3984, + 4101, "steam_account_claims_pk_columns_input!" ] } ], "update_steam_account_claims_many": [ - 3981, + 4098, { "updates": [ - 3990, + 4107, "[steam_account_claims_updates!]!" ] } ], "update_steam_accounts": [ - 4001, + 4118, { "_inc": [ - 3997 + 4114 ], "_set": [ - 4007 + 4124 ], "where": [ - 3995, + 4112, "steam_accounts_bool_exp!" ] } ], "update_steam_accounts_by_pk": [ - 3991, + 4108, { "_inc": [ - 3997 + 4114 ], "_set": [ - 4007 + 4124 ], "pk_columns": [ - 4005, + 4122, "steam_accounts_pk_columns_input!" ] } ], "update_steam_accounts_many": [ - 4001, + 4118, { "updates": [ - 4015, + 4132, "[steam_accounts_updates!]!" ] } ], "update_system_alerts": [ - 4029, + 4146, { "_inc": [ - 4025 + 4142 ], "_set": [ - 4034 + 4151 ], "where": [ - 4023, + 4140, "system_alerts_bool_exp!" ] } ], "update_system_alerts_by_pk": [ - 4019, + 4136, { "_inc": [ - 4025 + 4142 ], "_set": [ - 4034 + 4151 ], "pk_columns": [ - 4032, + 4149, "system_alerts_pk_columns_input!" ] } ], "update_system_alerts_many": [ - 4029, + 4146, { "updates": [ - 4042, + 4159, "[system_alerts_updates!]!" ] } ], "update_team_invites": [ - 4063, + 4180, { "_inc": [ - 4057 + 4174 ], "_set": [ - 4068 + 4185 ], "where": [ - 4055, + 4172, "team_invites_bool_exp!" ] } ], "update_team_invites_by_pk": [ - 4046, + 4163, { "_inc": [ - 4057 + 4174 ], "_set": [ - 4068 + 4185 ], "pk_columns": [ - 4066, + 4183, "team_invites_pk_columns_input!" ] } ], "update_team_invites_many": [ - 4063, + 4180, { "updates": [ - 4080, + 4197, "[team_invites_updates!]!" ] } ], "update_team_roster": [ - 4106, + 4223, { "_inc": [ - 4100 + 4217 ], "_set": [ - 4113 + 4230 ], "where": [ - 4098, + 4215, "team_roster_bool_exp!" ] } ], "update_team_roster_by_pk": [ - 4087, + 4204, { "_inc": [ - 4100 + 4217 ], "_set": [ - 4113 + 4230 ], "pk_columns": [ - 4109, + 4226, "team_roster_pk_columns_input!" ] } ], "update_team_roster_many": [ - 4106, + 4223, { "updates": [ - 4125, + 4242, "[team_roster_updates!]!" ] } ], "update_team_scrim_alerts": [ - 4142, + 4259, { "_inc": [ - 4138 + 4255 ], "_set": [ - 4147 + 4264 ], "where": [ - 4136, + 4253, "team_scrim_alerts_bool_exp!" ] } ], "update_team_scrim_alerts_by_pk": [ - 4132, + 4249, { "_inc": [ - 4138 + 4255 ], "_set": [ - 4147 + 4264 ], "pk_columns": [ - 4145, + 4262, "team_scrim_alerts_pk_columns_input!" ] } ], "update_team_scrim_alerts_many": [ - 4142, + 4259, { "updates": [ - 4155, + 4272, "[team_scrim_alerts_updates!]!" ] } ], "update_team_scrim_availability": [ - 4175, + 4292, { "_set": [ - 4182 + 4299 ], "where": [ - 4168, + 4285, "team_scrim_availability_bool_exp!" ] } ], "update_team_scrim_availability_by_pk": [ - 4159, + 4276, { "_set": [ - 4182 + 4299 ], "pk_columns": [ - 4178, + 4295, "team_scrim_availability_pk_columns_input!" ] } ], "update_team_scrim_availability_many": [ - 4175, + 4292, { "updates": [ - 4186, + 4303, "[team_scrim_availability_updates!]!" ] } ], "update_team_scrim_request_proposals": [ - 4204, + 4321, { "_inc": [ - 4198 + 4315 ], "_set": [ - 4209 + 4326 ], "where": [ - 4196, + 4313, "team_scrim_request_proposals_bool_exp!" ] } ], "update_team_scrim_request_proposals_by_pk": [ - 4187, + 4304, { "_inc": [ - 4198 + 4315 ], "_set": [ - 4209 + 4326 ], "pk_columns": [ - 4207, + 4324, "team_scrim_request_proposals_pk_columns_input!" ] } ], "update_team_scrim_request_proposals_many": [ - 4204, + 4321, { "updates": [ - 4221, + 4338, "[team_scrim_request_proposals_updates!]!" ] } ], "update_team_scrim_requests": [ - 4247, + 4364, { "_inc": [ - 4241 + 4358 ], "_set": [ - 4255 + 4372 ], "where": [ - 4239, + 4356, "team_scrim_requests_bool_exp!" ] } ], "update_team_scrim_requests_by_pk": [ - 4228, + 4345, { "_inc": [ - 4241 + 4358 ], "_set": [ - 4255 + 4372 ], "pk_columns": [ - 4251, + 4368, "team_scrim_requests_pk_columns_input!" ] } ], "update_team_scrim_requests_many": [ - 4247, + 4364, { "updates": [ - 4267, + 4384, "[team_scrim_requests_updates!]!" ] } ], "update_team_scrim_settings": [ - 4284, + 4401, { "_inc": [ - 4280 + 4397 ], "_set": [ - 4290 + 4407 ], "where": [ - 4278, + 4395, "team_scrim_settings_bool_exp!" ] } ], "update_team_scrim_settings_by_pk": [ - 4274, + 4391, { "_inc": [ - 4280 + 4397 ], "_set": [ - 4290 + 4407 ], "pk_columns": [ - 4288, + 4405, "team_scrim_settings_pk_columns_input!" ] } ], "update_team_scrim_settings_many": [ - 4284, + 4401, { "updates": [ - 4298, + 4415, "[team_scrim_settings_updates!]!" ] } ], "update_team_suggestions": [ - 4312, + 4429, { "_inc": [ - 4308 + 4425 ], "_set": [ - 4317 + 4434 ], "where": [ - 4306, + 4423, "team_suggestions_bool_exp!" ] } ], "update_team_suggestions_by_pk": [ - 4302, + 4419, { "_inc": [ - 4308 + 4425 ], "_set": [ - 4317 + 4434 ], "pk_columns": [ - 4315, + 4432, "team_suggestions_pk_columns_input!" ] } ], "update_team_suggestions_many": [ - 4312, + 4429, { "updates": [ - 4325, + 4442, "[team_suggestions_updates!]!" ] } ], "update_teams": [ - 4348, + 4465, { "_inc": [ - 4342 + 4459 ], "_set": [ - 4356 + 4473 ], "where": [ - 4340, + 4457, "teams_bool_exp!" ] } ], "update_teams_by_pk": [ - 4329, + 4446, { "_inc": [ - 4342 + 4459 ], "_set": [ - 4356 + 4473 ], "pk_columns": [ - 4352, + 4469, "teams_pk_columns_input!" ] } ], "update_teams_many": [ - 4348, + 4465, { "updates": [ - 4368, + 4485, "[teams_updates!]!" ] } ], + "update_tournament_awards": [ + 4512, + { + "_inc": [ + 4506 + ], + "_set": [ + 4518 + ], + "where": [ + 4504, + "tournament_awards_bool_exp!" + ] + } + ], + "update_tournament_awards_by_pk": [ + 4495, + { + "_inc": [ + 4506 + ], + "_set": [ + 4518 + ], + "pk_columns": [ + 4516, + "tournament_awards_pk_columns_input!" + ] + } + ], + "update_tournament_awards_many": [ + 4512, + { + "updates": [ + 4530, + "[tournament_awards_updates!]!" + ] + } + ], "update_tournament_brackets": [ - 4397, + 4556, { "_inc": [ - 4391 + 4550 ], "_set": [ - 4405 + 4564 ], "where": [ - 4389, + 4548, "tournament_brackets_bool_exp!" ] } ], "update_tournament_brackets_by_pk": [ - 4378, + 4537, { "_inc": [ - 4391 + 4550 ], "_set": [ - 4405 + 4564 ], "pk_columns": [ - 4401, + 4560, "tournament_brackets_pk_columns_input!" ] } ], "update_tournament_brackets_many": [ - 4397, + 4556, { "updates": [ - 4417, + 4576, "[tournament_brackets_updates!]!" ] } ], "update_tournament_categories": [ - 4438, + 4597, { "_set": [ - 4443 + 4602 ], "where": [ - 4431, + 4590, "tournament_categories_bool_exp!" ] } ], "update_tournament_categories_by_pk": [ - 4424, + 4583, { "_set": [ - 4443 + 4602 ], "pk_columns": [ - 4441, + 4600, "tournament_categories_pk_columns_input!" ] } ], "update_tournament_categories_many": [ - 4438, + 4597, { "updates": [ - 4447, + 4606, "[tournament_categories_updates!]!" ] } ], "update_tournament_organizer_teams": [ - 4462, + 4621, { "_set": [ - 4467 + 4626 ], "where": [ - 4455, + 4614, "tournament_organizer_teams_bool_exp!" ] } ], "update_tournament_organizer_teams_by_pk": [ - 4448, + 4607, { "_set": [ - 4467 + 4626 ], "pk_columns": [ - 4465, + 4624, "tournament_organizer_teams_pk_columns_input!" ] } ], "update_tournament_organizer_teams_many": [ - 4462, + 4621, { "updates": [ - 4471, + 4630, "[tournament_organizer_teams_updates!]!" ] } ], "update_tournament_organizers": [ - 4489, + 4648, { "_inc": [ - 4483 + 4642 ], "_set": [ - 4494 + 4653 ], "where": [ - 4481, + 4640, "tournament_organizers_bool_exp!" ] } ], "update_tournament_organizers_by_pk": [ - 4472, + 4631, { "_inc": [ - 4483 + 4642 ], "_set": [ - 4494 + 4653 ], "pk_columns": [ - 4492, + 4651, "tournament_organizers_pk_columns_input!" ] } ], "update_tournament_organizers_many": [ - 4489, + 4648, { "updates": [ - 4506, + 4665, "[tournament_organizers_updates!]!" ] } ], "update_tournament_prizes": [ - 4530, + 4689, { "_inc": [ - 4524 + 4683 ], "_set": [ - 4535 + 4694 ], "where": [ - 4522, + 4681, "tournament_prizes_bool_exp!" ] } ], "update_tournament_prizes_by_pk": [ - 4513, + 4672, { "_inc": [ - 4524 + 4683 ], "_set": [ - 4535 + 4694 ], "pk_columns": [ - 4533, + 4692, "tournament_prizes_pk_columns_input!" ] } ], "update_tournament_prizes_many": [ - 4530, + 4689, { "updates": [ - 4547, + 4706, "[tournament_prizes_updates!]!" ] } ], "update_tournament_stage_windows": [ - 4571, + 4730, { "_inc": [ - 4565 + 4724 ], "_set": [ - 4576 + 4735 ], "where": [ - 4563, + 4722, "tournament_stage_windows_bool_exp!" ] } ], "update_tournament_stage_windows_by_pk": [ - 4554, + 4713, { "_inc": [ - 4565 + 4724 ], "_set": [ - 4576 + 4735 ], "pk_columns": [ - 4574, + 4733, "tournament_stage_windows_pk_columns_input!" ] } ], "update_tournament_stage_windows_many": [ - 4571, + 4730, { "updates": [ - 4588, + 4747, "[tournament_stage_windows_updates!]!" ] } ], "update_tournament_stages": [ - 4618, + 4777, { "_append": [ - 4603 + 4762 ], "_delete_at_path": [ - 4609 + 4768 ], "_delete_elem": [ - 4610 + 4769 ], "_delete_key": [ - 4611 + 4770 ], "_inc": [ - 4612 + 4771 ], "_prepend": [ - 4623 + 4782 ], "_set": [ - 4627 + 4786 ], "where": [ - 4607, + 4766, "tournament_stages_bool_exp!" ] } ], "update_tournament_stages_by_pk": [ - 4595, + 4754, { "_append": [ - 4603 + 4762 ], "_delete_at_path": [ - 4609 + 4768 ], "_delete_elem": [ - 4610 + 4769 ], "_delete_key": [ - 4611 + 4770 ], "_inc": [ - 4612 + 4771 ], "_prepend": [ - 4623 + 4782 ], "_set": [ - 4627 + 4786 ], "pk_columns": [ - 4622, + 4781, "tournament_stages_pk_columns_input!" ] } ], "update_tournament_stages_many": [ - 4618, + 4777, { "updates": [ - 4639, + 4798, "[tournament_stages_updates!]!" ] } ], "update_tournament_team_invites": [ - 4663, + 4822, { "_inc": [ - 4657 + 4816 ], "_set": [ - 4668 + 4827 ], "where": [ - 4655, + 4814, "tournament_team_invites_bool_exp!" ] } ], "update_tournament_team_invites_by_pk": [ - 4646, + 4805, { "_inc": [ - 4657 + 4816 ], "_set": [ - 4668 + 4827 ], "pk_columns": [ - 4666, + 4825, "tournament_team_invites_pk_columns_input!" ] } ], "update_tournament_team_invites_many": [ - 4663, + 4822, { "updates": [ - 4680, + 4839, "[tournament_team_invites_updates!]!" ] } ], "update_tournament_team_roster": [ - 4704, + 4863, { "_inc": [ - 4698 + 4857 ], "_set": [ - 4709 + 4868 ], "where": [ - 4696, + 4855, "tournament_team_roster_bool_exp!" ] } ], "update_tournament_team_roster_by_pk": [ - 4687, + 4846, { "_inc": [ - 4698 + 4857 ], "_set": [ - 4709 + 4868 ], "pk_columns": [ - 4707, + 4866, "tournament_team_roster_pk_columns_input!" ] } ], "update_tournament_team_roster_many": [ - 4704, + 4863, { "updates": [ - 4721, + 4880, "[tournament_team_roster_updates!]!" ] } ], "update_tournament_teams": [ - 4745, + 4904, { "_inc": [ - 4739 + 4898 ], "_set": [ - 4751 + 4910 ], "where": [ - 4737, + 4896, "tournament_teams_bool_exp!" ] } ], "update_tournament_teams_by_pk": [ - 4728, + 4887, { "_inc": [ - 4739 + 4898 ], "_set": [ - 4751 + 4910 ], "pk_columns": [ - 4749, + 4908, "tournament_teams_pk_columns_input!" ] } ], "update_tournament_teams_many": [ - 4745, + 4904, { "updates": [ - 4763, + 4922, "[tournament_teams_updates!]!" ] } ], - "update_tournament_trophies": [ - 4789, - { - "_inc": [ - 4783 - ], - "_set": [ - 4796 - ], - "where": [ - 4781, - "tournament_trophies_bool_exp!" - ] - } - ], - "update_tournament_trophies_by_pk": [ - 4770, - { - "_inc": [ - 4783 - ], - "_set": [ - 4796 - ], - "pk_columns": [ - 4792, - "tournament_trophies_pk_columns_input!" - ] - } - ], - "update_tournament_trophies_many": [ - 4789, - { - "updates": [ - 4808, - "[tournament_trophies_updates!]!" - ] - } - ], - "update_tournament_trophy_configs": [ - 4832, - { - "_inc": [ - 4826 - ], - "_set": [ - 4838 - ], - "where": [ - 4824, - "tournament_trophy_configs_bool_exp!" - ] - } - ], - "update_tournament_trophy_configs_by_pk": [ - 4815, - { - "_inc": [ - 4826 - ], - "_set": [ - 4838 - ], - "pk_columns": [ - 4836, - "tournament_trophy_configs_pk_columns_input!" - ] - } - ], - "update_tournament_trophy_configs_many": [ - 4832, - { - "updates": [ - 4850, - "[tournament_trophy_configs_updates!]!" - ] - } - ], "update_tournaments": [ - 4886, + 4958, { "_inc": [ - 4880 + 4952 ], "_set": [ - 4902 + 4974 ], "where": [ - 4878, + 4950, "tournaments_bool_exp!" ] } ], "update_tournaments_by_pk": [ - 4857, + 4929, { "_inc": [ - 4880 + 4952 ], "_set": [ - 4902 + 4974 ], "pk_columns": [ - 4890, + 4962, "tournaments_pk_columns_input!" ] } ], "update_tournaments_many": [ - 4886, + 4958, { "updates": [ - 4914, + 4986, "[tournaments_updates!]!" ] } ], "update_v_match_captains": [ - 5086, + 5158, { "_inc": [ - 5082 + 5154 ], "_set": [ - 5090 + 5162 ], "where": [ - 5081, + 5153, "v_match_captains_bool_exp!" ] } ], "update_v_match_captains_many": [ - 5086, + 5158, { "updates": [ - 5097, + 5169, "[v_match_captains_updates!]!" ] } ], "update_v_match_map_backup_rounds": [ - 5197, + 5269, { "_inc": [ - 5193 + 5265 ], "_set": [ - 5200 + 5272 ], "where": [ - 5192, + 5264, "v_match_map_backup_rounds_bool_exp!" ] } ], "update_v_match_map_backup_rounds_many": [ - 5197, + 5269, { "updates": [ - 5207, + 5279, "[v_match_map_backup_rounds_updates!]!" ] } ], "update_v_player_match_map_hltv": [ - 5419, + 5491, { "_inc": [ - 5413 + 5485 ], "_set": [ - 5422 + 5494 ], "where": [ - 5412, + 5484, "v_player_match_map_hltv_bool_exp!" ] } ], "update_v_player_match_map_hltv_many": [ - 5419, + 5491, { "updates": [ - 5433, + 5505, "[v_player_match_map_hltv_updates!]!" ] } ], "update_v_pool_maps": [ - 5578, + 5650, { "_set": [ - 5583 + 5655 ], "where": [ - 5572, + 5644, "v_pool_maps_bool_exp!" ] } ], "update_v_pool_maps_many": [ - 5578, + 5650, { "updates": [ - 5586, + 5658, "[v_pool_maps_updates!]!" ] } ], "update_v_team_stage_results": [ - 5672, + 5744, { "_inc": [ - 5666 + 5738 ], "_set": [ - 5686 + 5758 ], "where": [ - 5664, + 5736, "v_team_stage_results_bool_exp!" ] } ], "update_v_team_stage_results_by_pk": [ - 5645, + 5717, { "_inc": [ - 5666 + 5738 ], "_set": [ - 5686 + 5758 ], "pk_columns": [ - 5676, + 5748, "v_team_stage_results_pk_columns_input!" ] } ], "update_v_team_stage_results_many": [ - 5672, + 5744, { "updates": [ - 5698, + 5770, "[v_team_stage_results_updates!]!" ] } ], "validateGamedata": [ - 81, + 83, { "game_server_node_id": [ - 4921, + 4993, "uuid!" ] } ], "watchDemo": [ - 91, + 94, { "match_map_demo_id": [ - 4921 + 4993 ], "match_map_id": [ - 4921, + 4993, "uuid!" ] } ], "writeServerFile": [ - 81, + 83, { "content": [ - 78, + 80, "String!" ], "file_path": [ - 78, + 80, "String!" ], "node_id": [ - 78, + 80, "String!" ], "server_id": [ - 78 + 80 ] } ], "__typename": [ - 78 + 80 ] }, "Subscription": { "_map_pool": [ - 92, + 95, { "distinct_on": [ - 104, + 107, "[_map_pool_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 102, + 105, "[_map_pool_order_by!]" ], "where": [ - 95 + 98 ] } ], "_map_pool_aggregate": [ - 93, + 96, { "distinct_on": [ - 104, + 107, "[_map_pool_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 102, + 105, "[_map_pool_order_by!]" ], "where": [ - 95 + 98 ] } ], "_map_pool_by_pk": [ - 92, + 95, { "map_id": [ - 4921, + 4993, "uuid!" ], "map_pool_id": [ - 4921, + 4993, "uuid!" ] } ], "_map_pool_stream": [ - 92, + 95, { "batch_size": [ - 38, + 40, "Int!" ], "cursor": [ - 106, + 109, "[_map_pool_stream_cursor_input]!" ], "where": [ - 95 + 98 ] } ], "abandoned_matches": [ - 111, + 114, { "distinct_on": [ - 132, + 135, "[abandoned_matches_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 130, + 133, "[abandoned_matches_order_by!]" ], "where": [ - 120 + 123 ] } ], "abandoned_matches_aggregate": [ - 112, + 115, { "distinct_on": [ - 132, + 135, "[abandoned_matches_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 130, + 133, "[abandoned_matches_order_by!]" ], "where": [ - 120 + 123 ] } ], "abandoned_matches_by_pk": [ - 111, + 114, { "id": [ - 4921, + 4993, "uuid!" ] } ], "abandoned_matches_stream": [ - 111, + 114, { "batch_size": [ - 38, + 40, "Int!" ], "cursor": [ - 140, + 143, "[abandoned_matches_stream_cursor_input]!" ], "where": [ - 120 + 123 ] } ], "api_keys": [ - 152, + 155, { "distinct_on": [ - 166, + 169, "[api_keys_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 164, + 167, "[api_keys_order_by!]" ], "where": [ - 156 + 159 ] } ], "api_keys_aggregate": [ - 153, + 156, { "distinct_on": [ - 166, + 169, "[api_keys_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 164, + 167, "[api_keys_order_by!]" ], "where": [ - 156 + 159 ] } ], "api_keys_by_pk": [ - 152, + 155, { "id": [ - 4921, + 4993, "uuid!" ] } ], "api_keys_stream": [ - 152, + 155, { "batch_size": [ - 38, + 40, "Int!" ], "cursor": [ - 171, + 174, "[api_keys_stream_cursor_input]!" ], "where": [ - 156 + 159 + ] + } + ], + "award_recipients": [ + 183, + { + "distinct_on": [ + 204, + "[award_recipients_select_column!]" + ], + "limit": [ + 40 + ], + "offset": [ + 40 + ], + "order_by": [ + 202, + "[award_recipients_order_by!]" + ], + "where": [ + 192 + ] + } + ], + "award_recipients_aggregate": [ + 184, + { + "distinct_on": [ + 204, + "[award_recipients_select_column!]" + ], + "limit": [ + 40 + ], + "offset": [ + 40 + ], + "order_by": [ + 202, + "[award_recipients_order_by!]" + ], + "where": [ + 192 + ] + } + ], + "award_recipients_by_pk": [ + 183, + { + "id": [ + 4993, + "uuid!" + ] + } + ], + "award_recipients_stream": [ + 183, + { + "batch_size": [ + 40, + "Int!" + ], + "cursor": [ + 212, + "[award_recipients_stream_cursor_input]!" + ], + "where": [ + 192 + ] + } + ], + "awards": [ + 224, + { + "distinct_on": [ + 239, + "[awards_select_column!]" + ], + "limit": [ + 40 + ], + "offset": [ + 40 + ], + "order_by": [ + 237, + "[awards_order_by!]" + ], + "where": [ + 228 + ] + } + ], + "awards_aggregate": [ + 225, + { + "distinct_on": [ + 239, + "[awards_select_column!]" + ], + "limit": [ + 40 + ], + "offset": [ + 40 + ], + "order_by": [ + 237, + "[awards_order_by!]" + ], + "where": [ + 228 + ] + } + ], + "awards_by_pk": [ + 224, + { + "id": [ + 4993, + "uuid!" + ] + } + ], + "awards_stream": [ + 224, + { + "batch_size": [ + 40, + "Int!" + ], + "cursor": [ + 244, + "[awards_stream_cursor_input]!" + ], + "where": [ + 228 ] } ], "clip_render_jobs": [ - 185, + 257, { "distinct_on": [ - 213, + 285, "[clip_render_jobs_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 210, + 282, "[clip_render_jobs_order_by!]" ], "where": [ - 197 + 269 ] } ], "clip_render_jobs_aggregate": [ - 186, + 258, { "distinct_on": [ - 213, + 285, "[clip_render_jobs_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 210, + 282, "[clip_render_jobs_order_by!]" ], "where": [ - 197 + 269 ] } ], "clip_render_jobs_by_pk": [ - 185, + 257, { "id": [ - 4921, + 4993, "uuid!" ] } ], "clip_render_jobs_stream": [ - 185, + 257, { "batch_size": [ - 38, + 40, "Int!" ], "cursor": [ - 223, + 295, "[clip_render_jobs_stream_cursor_input]!" ], "where": [ - 197 + 269 ] } ], "custom_pages": [ - 237, + 309, { "distinct_on": [ - 251, + 328, "[custom_pages_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 249, + 325, "[custom_pages_order_by!]" ], "where": [ - 241 + 314 ] } ], "custom_pages_aggregate": [ - 238, + 310, { "distinct_on": [ - 251, + 328, "[custom_pages_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 249, + 325, "[custom_pages_order_by!]" ], "where": [ - 241 + 314 ] } ], "custom_pages_by_pk": [ - 237, + 309, { "id": [ - 4921, + 4993, "uuid!" ] } ], "custom_pages_stream": [ - 237, + 309, { "batch_size": [ - 38, + 40, "Int!" ], "cursor": [ - 256, + 333, "[custom_pages_stream_cursor_input]!" ], "where": [ - 241 + 314 ] } ], "db_backups": [ - 264, + 341, { "distinct_on": [ - 278, + 355, "[db_backups_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 276, + 353, "[db_backups_order_by!]" ], "where": [ - 268 + 345 ] } ], "db_backups_aggregate": [ - 265, + 342, { "distinct_on": [ - 278, + 355, "[db_backups_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 276, + 353, "[db_backups_order_by!]" ], "where": [ - 268 + 345 ] } ], "db_backups_by_pk": [ - 264, + 341, { "id": [ - 4921, + 4993, "uuid!" ] } ], "db_backups_stream": [ - 264, + 341, { "batch_size": [ - 38, + 40, "Int!" ], "cursor": [ - 283, + 360, "[db_backups_stream_cursor_input]!" ], "where": [ - 268 + 345 ] } ], "draft_game_picks": [ - 291, + 368, { "distinct_on": [ - 314, + 391, "[draft_game_picks_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 312, + 389, "[draft_game_picks_order_by!]" ], "where": [ - 302 + 379 ] } ], "draft_game_picks_aggregate": [ - 292, + 369, { "distinct_on": [ - 314, + 391, "[draft_game_picks_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 312, + 389, "[draft_game_picks_order_by!]" ], "where": [ - 302 + 379 ] } ], "draft_game_picks_by_pk": [ - 291, + 368, { "id": [ - 4921, + 4993, "uuid!" ] } ], "draft_game_picks_stream": [ - 291, + 368, { "batch_size": [ - 38, + 40, "Int!" ], "cursor": [ - 324, + 401, "[draft_game_picks_stream_cursor_input]!" ], "where": [ - 302 + 379 ] } ], "draft_game_players": [ - 336, + 413, { "distinct_on": [ - 359, + 436, "[draft_game_players_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 357, + 434, "[draft_game_players_order_by!]" ], "where": [ - 347 + 424 ] } ], "draft_game_players_aggregate": [ - 337, + 414, { "distinct_on": [ - 359, + 436, "[draft_game_players_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 357, + 434, "[draft_game_players_order_by!]" ], "where": [ - 347 + 424 ] } ], "draft_game_players_by_pk": [ - 336, + 413, { "draft_game_id": [ - 4921, + 4993, "uuid!" ], "steam_id": [ - 180, + 252, "bigint!" ] } ], "draft_game_players_stream": [ - 336, + 413, { "batch_size": [ - 38, + 40, "Int!" ], "cursor": [ - 369, + 446, "[draft_game_players_stream_cursor_input]!" ], "where": [ - 347 + 424 ] } ], "draft_games": [ - 381, + 458, { "distinct_on": [ - 405, + 482, "[draft_games_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 403, + 480, "[draft_games_order_by!]" ], "where": [ - 392 + 469 ] } ], "draft_games_aggregate": [ - 382, + 459, { "distinct_on": [ - 405, + 482, "[draft_games_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 403, + 480, "[draft_games_order_by!]" ], "where": [ - 392 + 469 ] } ], "draft_games_by_pk": [ - 381, + 458, { "id": [ - 4921, + 4993, "uuid!" ] } ], "draft_games_stream": [ - 381, + 458, { "batch_size": [ - 38, + 40, "Int!" ], "cursor": [ - 415, + 492, "[draft_games_stream_cursor_input]!" ], "where": [ - 392 + 469 + ] + } + ], + "e_award_sources": [ + 504, + { + "distinct_on": [ + 518, + "[e_award_sources_select_column!]" + ], + "limit": [ + 40 + ], + "offset": [ + 40 + ], + "order_by": [ + 516, + "[e_award_sources_order_by!]" + ], + "where": [ + 507 + ] + } + ], + "e_award_sources_aggregate": [ + 505, + { + "distinct_on": [ + 518, + "[e_award_sources_select_column!]" + ], + "limit": [ + 40 + ], + "offset": [ + 40 + ], + "order_by": [ + 516, + "[e_award_sources_order_by!]" + ], + "where": [ + 507 + ] + } + ], + "e_award_sources_by_pk": [ + 504, + { + "value": [ + 80, + "String!" + ] + } + ], + "e_award_sources_stream": [ + 504, + { + "batch_size": [ + 40, + "Int!" + ], + "cursor": [ + 520, + "[e_award_sources_stream_cursor_input]!" + ], + "where": [ + 507 + ] + } + ], + "e_award_tiers": [ + 524, + { + "distinct_on": [ + 538, + "[e_award_tiers_select_column!]" + ], + "limit": [ + 40 + ], + "offset": [ + 40 + ], + "order_by": [ + 536, + "[e_award_tiers_order_by!]" + ], + "where": [ + 527 + ] + } + ], + "e_award_tiers_aggregate": [ + 525, + { + "distinct_on": [ + 538, + "[e_award_tiers_select_column!]" + ], + "limit": [ + 40 + ], + "offset": [ + 40 + ], + "order_by": [ + 536, + "[e_award_tiers_order_by!]" + ], + "where": [ + 527 + ] + } + ], + "e_award_tiers_by_pk": [ + 524, + { + "value": [ + 80, + "String!" + ] + } + ], + "e_award_tiers_stream": [ + 524, + { + "batch_size": [ + 40, + "Int!" + ], + "cursor": [ + 540, + "[e_award_tiers_stream_cursor_input]!" + ], + "where": [ + 527 ] } ], "e_check_in_settings": [ - 427, + 544, { "distinct_on": [ - 441, + 558, "[e_check_in_settings_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 439, + 556, "[e_check_in_settings_order_by!]" ], "where": [ - 430 + 547 ] } ], "e_check_in_settings_aggregate": [ - 428, + 545, { "distinct_on": [ - 441, + 558, "[e_check_in_settings_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 439, + 556, "[e_check_in_settings_order_by!]" ], "where": [ - 430 + 547 ] } ], "e_check_in_settings_by_pk": [ - 427, + 544, { "value": [ - 78, + 80, "String!" ] } ], "e_check_in_settings_stream": [ - 427, + 544, { "batch_size": [ - 38, + 40, "Int!" ], "cursor": [ - 443, + 560, "[e_check_in_settings_stream_cursor_input]!" ], "where": [ - 430 + 547 ] } ], "e_draft_game_captain_selection": [ - 447, + 564, { "distinct_on": [ - 462, + 579, "[e_draft_game_captain_selection_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 460, + 577, "[e_draft_game_captain_selection_order_by!]" ], "where": [ - 450 + 567 ] } ], "e_draft_game_captain_selection_aggregate": [ - 448, + 565, { "distinct_on": [ - 462, + 579, "[e_draft_game_captain_selection_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 460, + 577, "[e_draft_game_captain_selection_order_by!]" ], "where": [ - 450 + 567 ] } ], "e_draft_game_captain_selection_by_pk": [ - 447, + 564, { "value": [ - 78, + 80, "String!" ] } ], "e_draft_game_captain_selection_stream": [ - 447, + 564, { "batch_size": [ - 38, + 40, "Int!" ], "cursor": [ - 464, + 581, "[e_draft_game_captain_selection_stream_cursor_input]!" ], "where": [ - 450 + 567 ] } ], "e_draft_game_draft_order": [ - 468, + 585, { "distinct_on": [ - 483, + 600, "[e_draft_game_draft_order_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 481, + 598, "[e_draft_game_draft_order_order_by!]" ], "where": [ - 471 + 588 ] } ], "e_draft_game_draft_order_aggregate": [ - 469, + 586, { "distinct_on": [ - 483, + 600, "[e_draft_game_draft_order_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 481, + 598, "[e_draft_game_draft_order_order_by!]" ], "where": [ - 471 + 588 ] } ], "e_draft_game_draft_order_by_pk": [ - 468, + 585, { "value": [ - 78, + 80, "String!" ] } ], "e_draft_game_draft_order_stream": [ - 468, + 585, { "batch_size": [ - 38, + 40, "Int!" ], "cursor": [ - 485, + 602, "[e_draft_game_draft_order_stream_cursor_input]!" ], "where": [ - 471 + 588 ] } ], "e_draft_game_mode": [ - 489, + 606, { "distinct_on": [ - 504, + 621, "[e_draft_game_mode_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 502, + 619, "[e_draft_game_mode_order_by!]" ], "where": [ - 492 + 609 ] } ], "e_draft_game_mode_aggregate": [ - 490, + 607, { "distinct_on": [ - 504, + 621, "[e_draft_game_mode_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 502, + 619, "[e_draft_game_mode_order_by!]" ], "where": [ - 492 + 609 ] } ], "e_draft_game_mode_by_pk": [ - 489, + 606, { "value": [ - 78, + 80, "String!" ] } ], "e_draft_game_mode_stream": [ - 489, + 606, { "batch_size": [ - 38, + 40, "Int!" ], "cursor": [ - 506, + 623, "[e_draft_game_mode_stream_cursor_input]!" ], "where": [ - 492 + 609 ] } ], "e_draft_game_player_status": [ - 510, + 627, { "distinct_on": [ - 525, + 642, "[e_draft_game_player_status_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 523, + 640, "[e_draft_game_player_status_order_by!]" ], "where": [ - 513 + 630 ] } ], "e_draft_game_player_status_aggregate": [ - 511, + 628, { "distinct_on": [ - 525, + 642, "[e_draft_game_player_status_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 523, + 640, "[e_draft_game_player_status_order_by!]" ], "where": [ - 513 + 630 ] } ], "e_draft_game_player_status_by_pk": [ - 510, + 627, { "value": [ - 78, + 80, "String!" ] } ], "e_draft_game_player_status_stream": [ - 510, + 627, { "batch_size": [ - 38, + 40, "Int!" ], "cursor": [ - 527, + 644, "[e_draft_game_player_status_stream_cursor_input]!" ], "where": [ - 513 + 630 ] } ], "e_draft_game_status": [ - 531, + 648, { "distinct_on": [ - 546, + 663, "[e_draft_game_status_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 544, + 661, "[e_draft_game_status_order_by!]" ], "where": [ - 534 + 651 ] } ], "e_draft_game_status_aggregate": [ - 532, + 649, { "distinct_on": [ - 546, + 663, "[e_draft_game_status_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 544, + 661, "[e_draft_game_status_order_by!]" ], "where": [ - 534 + 651 ] } ], "e_draft_game_status_by_pk": [ - 531, + 648, { "value": [ - 78, + 80, "String!" ] } ], "e_draft_game_status_stream": [ - 531, + 648, { "batch_size": [ - 38, + 40, "Int!" ], "cursor": [ - 548, + 665, "[e_draft_game_status_stream_cursor_input]!" ], "where": [ - 534 + 651 ] } ], "e_event_media_access": [ - 552, + 669, { "distinct_on": [ - 566, + 683, "[e_event_media_access_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 564, + 681, "[e_event_media_access_order_by!]" ], "where": [ - 555 + 672 ] } ], "e_event_media_access_aggregate": [ - 553, + 670, { "distinct_on": [ - 566, + 683, "[e_event_media_access_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 564, + 681, "[e_event_media_access_order_by!]" ], "where": [ - 555 + 672 ] } ], "e_event_media_access_by_pk": [ - 552, + 669, { "value": [ - 78, + 80, "String!" ] } ], "e_event_media_access_stream": [ - 552, + 669, { "batch_size": [ - 38, + 40, "Int!" ], "cursor": [ - 568, + 685, "[e_event_media_access_stream_cursor_input]!" ], "where": [ - 555 + 672 ] } ], "e_event_visibility": [ - 572, + 689, { "distinct_on": [ - 586, + 703, "[e_event_visibility_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 584, + 701, "[e_event_visibility_order_by!]" ], "where": [ - 575 + 692 ] } ], "e_event_visibility_aggregate": [ - 573, + 690, { "distinct_on": [ - 586, + 703, "[e_event_visibility_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 584, + 701, "[e_event_visibility_order_by!]" ], "where": [ - 575 + 692 ] } ], "e_event_visibility_by_pk": [ - 572, + 689, { "value": [ - 78, + 80, "String!" ] } ], "e_event_visibility_stream": [ - 572, + 689, { "batch_size": [ - 38, + 40, "Int!" ], "cursor": [ - 588, + 705, "[e_event_visibility_stream_cursor_input]!" ], "where": [ - 575 + 692 ] } ], "e_friend_status": [ - 592, + 709, { "distinct_on": [ - 607, + 724, "[e_friend_status_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 605, + 722, "[e_friend_status_order_by!]" ], "where": [ - 595 + 712 ] } ], "e_friend_status_aggregate": [ - 593, + 710, { "distinct_on": [ - 607, + 724, "[e_friend_status_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 605, + 722, "[e_friend_status_order_by!]" ], "where": [ - 595 + 712 ] } ], "e_friend_status_by_pk": [ - 592, + 709, { "value": [ - 78, + 80, "String!" ] } ], "e_friend_status_stream": [ - 592, + 709, { "batch_size": [ - 38, + 40, "Int!" ], "cursor": [ - 609, + 726, "[e_friend_status_stream_cursor_input]!" ], "where": [ - 595 + 712 ] } ], "e_game_cfg_types": [ - 613, + 730, { "distinct_on": [ - 627, + 744, "[e_game_cfg_types_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 625, + 742, "[e_game_cfg_types_order_by!]" ], "where": [ - 616 + 733 ] } ], "e_game_cfg_types_aggregate": [ - 614, + 731, { "distinct_on": [ - 627, + 744, "[e_game_cfg_types_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 625, + 742, "[e_game_cfg_types_order_by!]" ], "where": [ - 616 + 733 ] } ], "e_game_cfg_types_by_pk": [ - 613, + 730, { "value": [ - 78, + 80, "String!" ] } ], "e_game_cfg_types_stream": [ - 613, + 730, { "batch_size": [ - 38, + 40, "Int!" ], "cursor": [ - 629, + 746, "[e_game_cfg_types_stream_cursor_input]!" ], "where": [ - 616 + 733 ] } ], "e_game_server_node_statuses": [ - 633, + 750, { "distinct_on": [ - 648, + 765, "[e_game_server_node_statuses_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 646, + 763, "[e_game_server_node_statuses_order_by!]" ], "where": [ - 636 + 753 ] } ], "e_game_server_node_statuses_aggregate": [ - 634, + 751, { "distinct_on": [ - 648, + 765, "[e_game_server_node_statuses_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 646, + 763, "[e_game_server_node_statuses_order_by!]" ], "where": [ - 636 + 753 ] } ], "e_game_server_node_statuses_by_pk": [ - 633, + 750, { "value": [ - 78, + 80, "String!" ] } ], "e_game_server_node_statuses_stream": [ - 633, + 750, { "batch_size": [ - 38, + 40, "Int!" ], "cursor": [ - 650, + 767, "[e_game_server_node_statuses_stream_cursor_input]!" ], "where": [ - 636 + 753 ] } ], "e_league_movement_types": [ - 654, + 771, { "distinct_on": [ - 669, + 786, "[e_league_movement_types_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 667, + 784, "[e_league_movement_types_order_by!]" ], "where": [ - 657 + 774 ] } ], "e_league_movement_types_aggregate": [ - 655, + 772, { "distinct_on": [ - 669, + 786, "[e_league_movement_types_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 667, + 784, "[e_league_movement_types_order_by!]" ], "where": [ - 657 + 774 ] } ], "e_league_movement_types_by_pk": [ - 654, + 771, { "value": [ - 78, + 80, "String!" ] } ], "e_league_movement_types_stream": [ - 654, + 771, { "batch_size": [ - 38, + 40, "Int!" ], "cursor": [ - 671, + 788, "[e_league_movement_types_stream_cursor_input]!" ], "where": [ - 657 + 774 ] } ], "e_league_proposal_statuses": [ - 675, + 792, { "distinct_on": [ - 690, + 807, "[e_league_proposal_statuses_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 688, + 805, "[e_league_proposal_statuses_order_by!]" ], "where": [ - 678 + 795 ] } ], "e_league_proposal_statuses_aggregate": [ - 676, + 793, { "distinct_on": [ - 690, + 807, "[e_league_proposal_statuses_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 688, + 805, "[e_league_proposal_statuses_order_by!]" ], "where": [ - 678 + 795 ] } ], "e_league_proposal_statuses_by_pk": [ - 675, + 792, { "value": [ - 78, + 80, "String!" ] } ], "e_league_proposal_statuses_stream": [ - 675, + 792, { "batch_size": [ - 38, + 40, "Int!" ], "cursor": [ - 692, + 809, "[e_league_proposal_statuses_stream_cursor_input]!" ], "where": [ - 678 + 795 ] } ], "e_league_registration_statuses": [ - 696, + 813, { "distinct_on": [ - 711, + 828, "[e_league_registration_statuses_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 709, + 826, "[e_league_registration_statuses_order_by!]" ], "where": [ - 699 + 816 ] } ], "e_league_registration_statuses_aggregate": [ - 697, + 814, { "distinct_on": [ - 711, + 828, "[e_league_registration_statuses_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 709, + 826, "[e_league_registration_statuses_order_by!]" ], "where": [ - 699 + 816 ] } ], "e_league_registration_statuses_by_pk": [ - 696, + 813, { "value": [ - 78, + 80, "String!" ] } ], "e_league_registration_statuses_stream": [ - 696, + 813, { "batch_size": [ - 38, + 40, "Int!" ], "cursor": [ - 713, + 830, "[e_league_registration_statuses_stream_cursor_input]!" ], "where": [ - 699 + 816 ] } ], "e_league_season_statuses": [ - 717, + 834, { "distinct_on": [ - 732, + 849, "[e_league_season_statuses_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 730, + 847, "[e_league_season_statuses_order_by!]" ], "where": [ - 720 + 837 ] } ], "e_league_season_statuses_aggregate": [ - 718, + 835, { "distinct_on": [ - 732, + 849, "[e_league_season_statuses_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 730, + 847, "[e_league_season_statuses_order_by!]" ], "where": [ - 720 + 837 ] } ], "e_league_season_statuses_by_pk": [ - 717, + 834, { "value": [ - 78, + 80, "String!" ] } ], "e_league_season_statuses_stream": [ - 717, + 834, { "batch_size": [ - 38, + 40, "Int!" ], "cursor": [ - 734, + 851, "[e_league_season_statuses_stream_cursor_input]!" ], "where": [ - 720 + 837 ] } ], "e_lobby_access": [ - 738, + 855, { "distinct_on": [ - 753, + 870, "[e_lobby_access_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 751, + 868, "[e_lobby_access_order_by!]" ], "where": [ - 741 + 858 ] } ], "e_lobby_access_aggregate": [ - 739, + 856, { "distinct_on": [ - 753, + 870, "[e_lobby_access_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 751, + 868, "[e_lobby_access_order_by!]" ], "where": [ - 741 + 858 ] } ], "e_lobby_access_by_pk": [ - 738, + 855, { "value": [ - 78, + 80, "String!" ] } ], "e_lobby_access_stream": [ - 738, + 855, { "batch_size": [ - 38, + 40, "Int!" ], "cursor": [ - 755, + 872, "[e_lobby_access_stream_cursor_input]!" ], "where": [ - 741 + 858 ] } ], "e_lobby_player_status": [ - 759, + 876, { "distinct_on": [ - 773, + 890, "[e_lobby_player_status_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 771, + 888, "[e_lobby_player_status_order_by!]" ], "where": [ - 762 + 879 ] } ], "e_lobby_player_status_aggregate": [ - 760, + 877, { "distinct_on": [ - 773, + 890, "[e_lobby_player_status_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 771, + 888, "[e_lobby_player_status_order_by!]" ], "where": [ - 762 + 879 ] } ], "e_lobby_player_status_by_pk": [ - 759, + 876, { "value": [ - 78, + 80, "String!" ] } ], "e_lobby_player_status_stream": [ - 759, + 876, { "batch_size": [ - 38, + 40, "Int!" ], "cursor": [ - 775, + 892, "[e_lobby_player_status_stream_cursor_input]!" ], "where": [ - 762 + 879 ] } ], "e_map_pool_types": [ - 779, + 896, { "distinct_on": [ - 794, + 911, "[e_map_pool_types_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 792, + 909, "[e_map_pool_types_order_by!]" ], "where": [ - 782 + 899 ] } ], "e_map_pool_types_aggregate": [ - 780, + 897, { "distinct_on": [ - 794, + 911, "[e_map_pool_types_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 792, + 909, "[e_map_pool_types_order_by!]" ], "where": [ - 782 + 899 ] } ], "e_map_pool_types_by_pk": [ - 779, + 896, { "value": [ - 78, + 80, "String!" ] } ], "e_map_pool_types_stream": [ - 779, + 896, { "batch_size": [ - 38, + 40, "Int!" ], "cursor": [ - 796, + 913, "[e_map_pool_types_stream_cursor_input]!" ], "where": [ - 782 + 899 ] } ], "e_match_clip_visibility": [ - 800, + 917, { "distinct_on": [ - 814, + 931, "[e_match_clip_visibility_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 812, + 929, "[e_match_clip_visibility_order_by!]" ], "where": [ - 803 + 920 ] } ], "e_match_clip_visibility_aggregate": [ - 801, + 918, { "distinct_on": [ - 814, + 931, "[e_match_clip_visibility_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 812, + 929, "[e_match_clip_visibility_order_by!]" ], "where": [ - 803 + 920 ] } ], "e_match_clip_visibility_by_pk": [ - 800, + 917, { "value": [ - 78, + 80, "String!" ] } ], "e_match_clip_visibility_stream": [ - 800, + 917, { "batch_size": [ - 38, + 40, "Int!" ], "cursor": [ - 816, + 933, "[e_match_clip_visibility_stream_cursor_input]!" ], "where": [ - 803 + 920 ] } ], "e_match_map_status": [ - 820, + 937, { "distinct_on": [ - 835, + 952, "[e_match_map_status_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 833, + 950, "[e_match_map_status_order_by!]" ], "where": [ - 823 + 940 ] } ], "e_match_map_status_aggregate": [ - 821, + 938, { "distinct_on": [ - 835, + 952, "[e_match_map_status_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 833, + 950, "[e_match_map_status_order_by!]" ], "where": [ - 823 + 940 ] } ], "e_match_map_status_by_pk": [ - 820, + 937, { "value": [ - 78, + 80, "String!" ] } ], "e_match_map_status_stream": [ - 820, + 937, { "batch_size": [ - 38, + 40, "Int!" ], "cursor": [ - 837, + 954, "[e_match_map_status_stream_cursor_input]!" ], "where": [ - 823 + 940 ] } ], "e_match_mode": [ - 841, + 958, { "distinct_on": [ - 855, + 972, "[e_match_mode_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 853, + 970, "[e_match_mode_order_by!]" ], "where": [ - 844 + 961 ] } ], "e_match_mode_aggregate": [ - 842, + 959, { "distinct_on": [ - 855, + 972, "[e_match_mode_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 853, + 970, "[e_match_mode_order_by!]" ], "where": [ - 844 + 961 ] } ], "e_match_mode_by_pk": [ - 841, + 958, { "value": [ - 78, + 80, "String!" ] } ], "e_match_mode_stream": [ - 841, + 958, { "batch_size": [ - 38, + 40, "Int!" ], "cursor": [ - 857, + 974, "[e_match_mode_stream_cursor_input]!" ], "where": [ - 844 + 961 ] } ], "e_match_status": [ - 861, + 978, { "distinct_on": [ - 876, + 993, "[e_match_status_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 874, + 991, "[e_match_status_order_by!]" ], "where": [ - 864 + 981 ] } ], "e_match_status_aggregate": [ - 862, + 979, { "distinct_on": [ - 876, + 993, "[e_match_status_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 874, + 991, "[e_match_status_order_by!]" ], "where": [ - 864 + 981 ] } ], "e_match_status_by_pk": [ - 861, + 978, { "value": [ - 78, + 80, "String!" ] } ], "e_match_status_stream": [ - 861, + 978, { "batch_size": [ - 38, + 40, "Int!" ], "cursor": [ - 878, + 995, "[e_match_status_stream_cursor_input]!" ], "where": [ - 864 + 981 ] } ], "e_match_types": [ - 882, + 999, { "distinct_on": [ - 897, + 1014, "[e_match_types_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 895, + 1012, "[e_match_types_order_by!]" ], "where": [ - 885 + 1002 ] } ], "e_match_types_aggregate": [ - 883, + 1000, { "distinct_on": [ - 897, + 1014, "[e_match_types_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 895, + 1012, "[e_match_types_order_by!]" ], "where": [ - 885 + 1002 ] } ], "e_match_types_by_pk": [ - 882, + 999, { "value": [ - 78, + 80, "String!" ] } ], "e_match_types_stream": [ - 882, + 999, { "batch_size": [ - 38, + 40, "Int!" ], "cursor": [ - 899, + 1016, "[e_match_types_stream_cursor_input]!" ], "where": [ - 885 + 1002 ] } ], "e_notification_types": [ - 903, + 1020, { "distinct_on": [ - 917, + 1034, "[e_notification_types_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 915, + 1032, "[e_notification_types_order_by!]" ], "where": [ - 906 + 1023 ] } ], "e_notification_types_aggregate": [ - 904, + 1021, { "distinct_on": [ - 917, + 1034, "[e_notification_types_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 915, + 1032, "[e_notification_types_order_by!]" ], "where": [ - 906 + 1023 ] } ], "e_notification_types_by_pk": [ - 903, + 1020, { "value": [ - 78, + 80, "String!" ] } ], "e_notification_types_stream": [ - 903, + 1020, { "batch_size": [ - 38, + 40, "Int!" ], "cursor": [ - 919, + 1036, "[e_notification_types_stream_cursor_input]!" ], "where": [ - 906 + 1023 ] } ], "e_objective_types": [ - 923, + 1040, { "distinct_on": [ - 937, + 1054, "[e_objective_types_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 935, + 1052, "[e_objective_types_order_by!]" ], "where": [ - 926 + 1043 ] } ], "e_objective_types_aggregate": [ - 924, + 1041, { "distinct_on": [ - 937, + 1054, "[e_objective_types_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 935, + 1052, "[e_objective_types_order_by!]" ], "where": [ - 926 + 1043 ] } ], "e_objective_types_by_pk": [ - 923, + 1040, { "value": [ - 78, + 80, "String!" ] } ], "e_objective_types_stream": [ - 923, + 1040, { "batch_size": [ - 38, + 40, "Int!" ], "cursor": [ - 939, + 1056, "[e_objective_types_stream_cursor_input]!" ], "where": [ - 926 + 1043 ] } ], "e_player_roles": [ - 943, + 1060, { "distinct_on": [ - 957, + 1074, "[e_player_roles_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 955, + 1072, "[e_player_roles_order_by!]" ], "where": [ - 946 + 1063 ] } ], "e_player_roles_aggregate": [ - 944, + 1061, { "distinct_on": [ - 957, + 1074, "[e_player_roles_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 955, + 1072, "[e_player_roles_order_by!]" ], "where": [ - 946 + 1063 ] } ], "e_player_roles_by_pk": [ - 943, + 1060, { "value": [ - 78, + 80, "String!" ] } ], "e_player_roles_stream": [ - 943, + 1060, { "batch_size": [ - 38, + 40, "Int!" ], "cursor": [ - 959, + 1076, "[e_player_roles_stream_cursor_input]!" ], "where": [ - 946 + 1063 ] } ], "e_plugin_runtimes": [ - 963, + 1080, { "distinct_on": [ - 977, + 1094, "[e_plugin_runtimes_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 975, + 1092, "[e_plugin_runtimes_order_by!]" ], "where": [ - 966 + 1083 ] } ], "e_plugin_runtimes_aggregate": [ - 964, + 1081, { "distinct_on": [ - 977, + 1094, "[e_plugin_runtimes_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 975, + 1092, "[e_plugin_runtimes_order_by!]" ], "where": [ - 966 + 1083 ] } ], "e_plugin_runtimes_by_pk": [ - 963, + 1080, { "value": [ - 78, + 80, "String!" ] } ], "e_plugin_runtimes_stream": [ - 963, + 1080, { "batch_size": [ - 38, + 40, "Int!" ], "cursor": [ - 979, + 1096, "[e_plugin_runtimes_stream_cursor_input]!" ], "where": [ - 966 + 1083 ] } ], "e_ready_settings": [ - 983, + 1100, { "distinct_on": [ - 997, + 1114, "[e_ready_settings_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 995, + 1112, "[e_ready_settings_order_by!]" ], "where": [ - 986 + 1103 ] } ], "e_ready_settings_aggregate": [ - 984, + 1101, { "distinct_on": [ - 997, + 1114, "[e_ready_settings_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 995, + 1112, "[e_ready_settings_order_by!]" ], "where": [ - 986 + 1103 ] } ], "e_ready_settings_by_pk": [ - 983, + 1100, { "value": [ - 78, + 80, "String!" ] } ], "e_ready_settings_stream": [ - 983, + 1100, { "batch_size": [ - 38, + 40, "Int!" ], "cursor": [ - 999, + 1116, "[e_ready_settings_stream_cursor_input]!" ], "where": [ - 986 + 1103 ] } ], "e_sanction_types": [ - 1003, + 1120, { "distinct_on": [ - 1018, + 1135, "[e_sanction_types_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 1016, + 1133, "[e_sanction_types_order_by!]" ], "where": [ - 1006 + 1123 ] } ], "e_sanction_types_aggregate": [ - 1004, + 1121, { "distinct_on": [ - 1018, + 1135, "[e_sanction_types_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 1016, + 1133, "[e_sanction_types_order_by!]" ], "where": [ - 1006 + 1123 ] } ], "e_sanction_types_by_pk": [ - 1003, + 1120, { "value": [ - 78, + 80, "String!" ] } ], "e_sanction_types_stream": [ - 1003, + 1120, { "batch_size": [ - 38, + 40, "Int!" ], "cursor": [ - 1020, + 1137, "[e_sanction_types_stream_cursor_input]!" ], "where": [ - 1006 + 1123 ] } ], "e_scrim_request_statuses": [ - 1024, + 1141, { "distinct_on": [ - 1038, + 1155, "[e_scrim_request_statuses_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 1036, + 1153, "[e_scrim_request_statuses_order_by!]" ], "where": [ - 1027 + 1144 ] } ], "e_scrim_request_statuses_aggregate": [ - 1025, + 1142, { "distinct_on": [ - 1038, + 1155, "[e_scrim_request_statuses_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 1036, + 1153, "[e_scrim_request_statuses_order_by!]" ], "where": [ - 1027 + 1144 ] } ], "e_scrim_request_statuses_by_pk": [ - 1024, + 1141, { "value": [ - 78, + 80, "String!" ] } ], "e_scrim_request_statuses_stream": [ - 1024, + 1141, { "batch_size": [ - 38, + 40, "Int!" ], "cursor": [ - 1040, + 1157, "[e_scrim_request_statuses_stream_cursor_input]!" ], "where": [ - 1027 + 1144 ] } ], "e_server_types": [ - 1044, + 1161, { "distinct_on": [ - 1058, + 1175, "[e_server_types_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 1056, + 1173, "[e_server_types_order_by!]" ], "where": [ - 1047 + 1164 ] } ], "e_server_types_aggregate": [ - 1045, + 1162, { "distinct_on": [ - 1058, + 1175, "[e_server_types_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 1056, + 1173, "[e_server_types_order_by!]" ], "where": [ - 1047 + 1164 ] } ], "e_server_types_by_pk": [ - 1044, + 1161, { "value": [ - 78, + 80, "String!" ] } ], "e_server_types_stream": [ - 1044, + 1161, { "batch_size": [ - 38, + 40, "Int!" ], "cursor": [ - 1060, + 1177, "[e_server_types_stream_cursor_input]!" ], "where": [ - 1047 + 1164 ] } ], "e_sides": [ - 1064, + 1181, { "distinct_on": [ - 1078, + 1195, "[e_sides_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 1076, + 1193, "[e_sides_order_by!]" ], "where": [ - 1067 + 1184 ] } ], "e_sides_aggregate": [ - 1065, + 1182, { "distinct_on": [ - 1078, + 1195, "[e_sides_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 1076, + 1193, "[e_sides_order_by!]" ], "where": [ - 1067 + 1184 ] } ], "e_sides_by_pk": [ - 1064, + 1181, { "value": [ - 78, + 80, "String!" ] } ], "e_sides_stream": [ - 1064, + 1181, { "batch_size": [ - 38, + 40, "Int!" ], "cursor": [ - 1080, + 1197, "[e_sides_stream_cursor_input]!" ], "where": [ - 1067 + 1184 ] } ], "e_system_alert_types": [ - 1084, + 1201, { "distinct_on": [ - 1098, + 1215, "[e_system_alert_types_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 1096, + 1213, "[e_system_alert_types_order_by!]" ], "where": [ - 1087 + 1204 ] } ], "e_system_alert_types_aggregate": [ - 1085, + 1202, { "distinct_on": [ - 1098, + 1215, "[e_system_alert_types_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 1096, + 1213, "[e_system_alert_types_order_by!]" ], "where": [ - 1087 + 1204 ] } ], "e_system_alert_types_by_pk": [ - 1084, + 1201, { "value": [ - 78, + 80, "String!" ] } ], "e_system_alert_types_stream": [ - 1084, + 1201, { "batch_size": [ - 38, + 40, "Int!" ], "cursor": [ - 1100, + 1217, "[e_system_alert_types_stream_cursor_input]!" ], "where": [ - 1087 + 1204 ] } ], "e_team_roles": [ - 1104, + 1221, { "distinct_on": [ - 1119, + 1236, "[e_team_roles_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 1117, + 1234, "[e_team_roles_order_by!]" ], "where": [ - 1107 + 1224 ] } ], "e_team_roles_aggregate": [ - 1105, + 1222, { "distinct_on": [ - 1119, + 1236, "[e_team_roles_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 1117, + 1234, "[e_team_roles_order_by!]" ], "where": [ - 1107 + 1224 ] } ], "e_team_roles_by_pk": [ - 1104, + 1221, { "value": [ - 78, + 80, "String!" ] } ], "e_team_roles_stream": [ - 1104, + 1221, { "batch_size": [ - 38, + 40, "Int!" ], "cursor": [ - 1121, + 1238, "[e_team_roles_stream_cursor_input]!" ], "where": [ - 1107 + 1224 ] } ], "e_team_roster_statuses": [ - 1125, + 1242, { "distinct_on": [ - 1139, + 1256, "[e_team_roster_statuses_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 1137, + 1254, "[e_team_roster_statuses_order_by!]" ], "where": [ - 1128 + 1245 ] } ], "e_team_roster_statuses_aggregate": [ - 1126, + 1243, { "distinct_on": [ - 1139, + 1256, "[e_team_roster_statuses_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 1137, + 1254, "[e_team_roster_statuses_order_by!]" ], "where": [ - 1128 + 1245 ] } ], "e_team_roster_statuses_by_pk": [ - 1125, + 1242, { "value": [ - 78, + 80, "String!" ] } ], "e_team_roster_statuses_stream": [ - 1125, + 1242, { "batch_size": [ - 38, + 40, "Int!" ], "cursor": [ - 1141, + 1258, "[e_team_roster_statuses_stream_cursor_input]!" ], "where": [ - 1128 + 1245 ] } ], "e_timeout_settings": [ - 1145, + 1262, { "distinct_on": [ - 1159, + 1276, "[e_timeout_settings_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 1157, + 1274, "[e_timeout_settings_order_by!]" ], "where": [ - 1148 + 1265 ] } ], "e_timeout_settings_aggregate": [ - 1146, + 1263, { "distinct_on": [ - 1159, + 1276, "[e_timeout_settings_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 1157, + 1274, "[e_timeout_settings_order_by!]" ], "where": [ - 1148 + 1265 ] } ], "e_timeout_settings_by_pk": [ - 1145, + 1262, { "value": [ - 78, + 80, "String!" ] } ], "e_timeout_settings_stream": [ - 1145, + 1262, { "batch_size": [ - 38, + 40, "Int!" ], "cursor": [ - 1161, + 1278, "[e_timeout_settings_stream_cursor_input]!" ], "where": [ - 1148 + 1265 ] } ], "e_tournament_categories": [ - 1165, + 1282, { "distinct_on": [ - 1180, + 1297, "[e_tournament_categories_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 1178, + 1295, "[e_tournament_categories_order_by!]" ], "where": [ - 1168 + 1285 ] } ], "e_tournament_categories_aggregate": [ - 1166, + 1283, { "distinct_on": [ - 1180, + 1297, "[e_tournament_categories_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 1178, + 1295, "[e_tournament_categories_order_by!]" ], "where": [ - 1168 + 1285 ] } ], "e_tournament_categories_by_pk": [ - 1165, + 1282, { "value": [ - 78, + 80, "String!" ] } ], "e_tournament_categories_stream": [ - 1165, + 1282, { "batch_size": [ - 38, + 40, "Int!" ], "cursor": [ - 1182, + 1299, "[e_tournament_categories_stream_cursor_input]!" ], "where": [ - 1168 + 1285 ] } ], "e_tournament_stage_types": [ - 1186, + 1303, { "distinct_on": [ - 1201, + 1318, "[e_tournament_stage_types_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 1199, + 1316, "[e_tournament_stage_types_order_by!]" ], "where": [ - 1189 + 1306 ] } ], "e_tournament_stage_types_aggregate": [ - 1187, + 1304, { "distinct_on": [ - 1201, + 1318, "[e_tournament_stage_types_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 1199, + 1316, "[e_tournament_stage_types_order_by!]" ], "where": [ - 1189 + 1306 ] } ], "e_tournament_stage_types_by_pk": [ - 1186, + 1303, { "value": [ - 78, + 80, "String!" ] } ], "e_tournament_stage_types_stream": [ - 1186, + 1303, { "batch_size": [ - 38, + 40, "Int!" ], "cursor": [ - 1203, + 1320, "[e_tournament_stage_types_stream_cursor_input]!" ], "where": [ - 1189 + 1306 ] } ], "e_tournament_status": [ - 1207, + 1324, { "distinct_on": [ - 1222, + 1339, "[e_tournament_status_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 1220, + 1337, "[e_tournament_status_order_by!]" ], "where": [ - 1210 + 1327 ] } ], "e_tournament_status_aggregate": [ - 1208, + 1325, { "distinct_on": [ - 1222, + 1339, "[e_tournament_status_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 1220, + 1337, "[e_tournament_status_order_by!]" ], "where": [ - 1210 + 1327 ] } ], "e_tournament_status_by_pk": [ - 1207, + 1324, { "value": [ - 78, + 80, "String!" ] } ], "e_tournament_status_stream": [ - 1207, + 1324, { "batch_size": [ - 38, + 40, "Int!" ], "cursor": [ - 1224, + 1341, "[e_tournament_status_stream_cursor_input]!" ], "where": [ - 1210 + 1327 ] } ], "e_utility_types": [ - 1228, + 1345, { "distinct_on": [ - 1242, + 1359, "[e_utility_types_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 1240, + 1357, "[e_utility_types_order_by!]" ], "where": [ - 1231 + 1348 ] } ], "e_utility_types_aggregate": [ - 1229, + 1346, { "distinct_on": [ - 1242, + 1359, "[e_utility_types_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 1240, + 1357, "[e_utility_types_order_by!]" ], "where": [ - 1231 + 1348 ] } ], "e_utility_types_by_pk": [ - 1228, + 1345, { "value": [ - 78, + 80, "String!" ] } ], "e_utility_types_stream": [ - 1228, + 1345, { "batch_size": [ - 38, + 40, "Int!" ], "cursor": [ - 1244, + 1361, "[e_utility_types_stream_cursor_input]!" ], "where": [ - 1231 + 1348 ] } ], "e_veto_pick_types": [ - 1248, + 1365, { "distinct_on": [ - 1262, + 1379, "[e_veto_pick_types_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 1260, + 1377, "[e_veto_pick_types_order_by!]" ], "where": [ - 1251 + 1368 ] } ], "e_veto_pick_types_aggregate": [ - 1249, + 1366, { "distinct_on": [ - 1262, + 1379, "[e_veto_pick_types_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 1260, + 1377, "[e_veto_pick_types_order_by!]" ], "where": [ - 1251 + 1368 ] } ], "e_veto_pick_types_by_pk": [ - 1248, + 1365, { "value": [ - 78, + 80, "String!" ] } ], "e_veto_pick_types_stream": [ - 1248, + 1365, { "batch_size": [ - 38, + 40, "Int!" ], "cursor": [ - 1264, + 1381, "[e_veto_pick_types_stream_cursor_input]!" ], "where": [ - 1251 + 1368 ] } ], "e_winning_reasons": [ - 1268, + 1385, { "distinct_on": [ - 1282, + 1399, "[e_winning_reasons_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 1280, + 1397, "[e_winning_reasons_order_by!]" ], "where": [ - 1271 + 1388 ] } ], "e_winning_reasons_aggregate": [ - 1269, + 1386, { "distinct_on": [ - 1282, + 1399, "[e_winning_reasons_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 1280, + 1397, "[e_winning_reasons_order_by!]" ], "where": [ - 1271 + 1388 ] } ], "e_winning_reasons_by_pk": [ - 1268, + 1385, { "value": [ - 78, + 80, "String!" ] } ], "e_winning_reasons_stream": [ - 1268, + 1385, { "batch_size": [ - 38, + 40, "Int!" ], "cursor": [ - 1284, + 1401, "[e_winning_reasons_stream_cursor_input]!" ], "where": [ - 1271 + 1388 ] } ], "event_match_links": [ - 1288, + 1405, { "distinct_on": [ - 1300, + 1417, "[event_match_links_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 1298, + 1415, "[event_match_links_order_by!]" ], "where": [ - 1291 + 1408 ] } ], "event_match_links_aggregate": [ - 1289, + 1406, { "distinct_on": [ - 1300, + 1417, "[event_match_links_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 1298, + 1415, "[event_match_links_order_by!]" ], "where": [ - 1291 + 1408 ] } ], "event_match_links_by_pk": [ - 1288, + 1405, { "event_id": [ - 4921, + 4993, "uuid!" ], "match_id": [ - 4921, + 4993, "uuid!" ] } ], "event_match_links_stream": [ - 1288, + 1405, { "batch_size": [ - 38, + 40, "Int!" ], "cursor": [ - 1302, + 1419, "[event_match_links_stream_cursor_input]!" ], "where": [ - 1291 + 1408 ] } ], "event_media": [ - 1306, + 1423, { "distinct_on": [ - 1369, + 1486, "[event_media_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 1326, + 1443, "[event_media_order_by!]" ], "where": [ - 1315 + 1432 ] } ], "event_media_aggregate": [ - 1307, + 1424, { "distinct_on": [ - 1369, + 1486, "[event_media_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 1326, + 1443, "[event_media_order_by!]" ], "where": [ - 1315 + 1432 ] } ], "event_media_by_pk": [ - 1306, + 1423, { "id": [ - 4921, + 4993, "uuid!" ] } ], "event_media_players": [ - 1328, + 1445, { "distinct_on": [ - 1349, + 1466, "[event_media_players_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 1347, + 1464, "[event_media_players_order_by!]" ], "where": [ - 1337 + 1454 ] } ], "event_media_players_aggregate": [ - 1329, + 1446, { "distinct_on": [ - 1349, + 1466, "[event_media_players_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 1347, + 1464, "[event_media_players_order_by!]" ], "where": [ - 1337 + 1454 ] } ], "event_media_players_by_pk": [ - 1328, + 1445, { "media_id": [ - 4921, + 4993, "uuid!" ], "steam_id": [ - 180, + 252, "bigint!" ] } ], "event_media_players_stream": [ - 1328, + 1445, { "batch_size": [ - 38, + 40, "Int!" ], "cursor": [ - 1357, + 1474, "[event_media_players_stream_cursor_input]!" ], "where": [ - 1337 + 1454 ] } ], "event_media_stream": [ - 1306, + 1423, { "batch_size": [ - 38, + 40, "Int!" ], "cursor": [ - 1377, + 1494, "[event_media_stream_cursor_input]!" ], "where": [ - 1315 + 1432 ] } ], "event_organizers": [ - 1389, + 1506, { "distinct_on": [ - 1410, + 1527, "[event_organizers_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 1408, + 1525, "[event_organizers_order_by!]" ], "where": [ - 1398 + 1515 ] } ], "event_organizers_aggregate": [ - 1390, + 1507, { "distinct_on": [ - 1410, + 1527, "[event_organizers_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 1408, + 1525, "[event_organizers_order_by!]" ], "where": [ - 1398 + 1515 ] } ], "event_organizers_by_pk": [ - 1389, + 1506, { "event_id": [ - 4921, + 4993, "uuid!" ], "steam_id": [ - 180, + 252, "bigint!" ] } ], "event_organizers_stream": [ - 1389, + 1506, { "batch_size": [ - 38, + 40, "Int!" ], "cursor": [ - 1418, + 1535, "[event_organizers_stream_cursor_input]!" ], "where": [ - 1398 + 1515 ] } ], "event_players": [ - 1430, + 1547, { "distinct_on": [ - 1451, + 1568, "[event_players_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 1449, + 1566, "[event_players_order_by!]" ], "where": [ - 1439 + 1556 ] } ], "event_players_aggregate": [ - 1431, + 1548, { "distinct_on": [ - 1451, + 1568, "[event_players_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 1449, + 1566, "[event_players_order_by!]" ], "where": [ - 1439 + 1556 ] } ], "event_players_by_pk": [ - 1430, + 1547, { "event_id": [ - 4921, + 4993, "uuid!" ], "steam_id": [ - 180, + 252, "bigint!" ] } ], "event_players_stream": [ - 1430, + 1547, { "batch_size": [ - 38, + 40, "Int!" ], "cursor": [ - 1459, + 1576, "[event_players_stream_cursor_input]!" ], "where": [ - 1439 + 1556 ] } ], "event_teams": [ - 1471, + 1588, { "distinct_on": [ - 1489, + 1606, "[event_teams_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 1487, + 1604, "[event_teams_order_by!]" ], "where": [ - 1478 + 1595 ] } ], "event_teams_aggregate": [ - 1472, + 1589, { "distinct_on": [ - 1489, + 1606, "[event_teams_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 1487, + 1604, "[event_teams_order_by!]" ], "where": [ - 1478 + 1595 ] } ], "event_teams_by_pk": [ - 1471, + 1588, { "event_id": [ - 4921, + 4993, "uuid!" ], "team_id": [ - 4921, + 4993, "uuid!" ] } ], "event_teams_stream": [ - 1471, + 1588, { "batch_size": [ - 38, + 40, "Int!" ], "cursor": [ - 1491, + 1608, "[event_teams_stream_cursor_input]!" ], "where": [ - 1478 + 1595 ] } ], "event_tournaments": [ - 1495, + 1612, { "distinct_on": [ - 1513, + 1630, "[event_tournaments_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 1511, + 1628, "[event_tournaments_order_by!]" ], "where": [ - 1502 + 1619 ] } ], "event_tournaments_aggregate": [ - 1496, + 1613, { "distinct_on": [ - 1513, + 1630, "[event_tournaments_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 1511, + 1628, "[event_tournaments_order_by!]" ], "where": [ - 1502 + 1619 ] } ], "event_tournaments_by_pk": [ - 1495, + 1612, { "event_id": [ - 4921, + 4993, "uuid!" ], "tournament_id": [ - 4921, + 4993, "uuid!" ] } ], "event_tournaments_stream": [ - 1495, + 1612, { "batch_size": [ - 38, + 40, "Int!" ], "cursor": [ - 1515, + 1632, "[event_tournaments_stream_cursor_input]!" ], "where": [ - 1502 + 1619 ] } ], "events": [ - 1519, + 1636, { "distinct_on": [ - 1534, + 1651, "[events_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 1532, + 1649, "[events_order_by!]" ], "where": [ - 1523 + 1640 ] } ], "events_aggregate": [ - 1520, + 1637, { "distinct_on": [ - 1534, + 1651, "[events_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 1532, + 1649, "[events_order_by!]" ], "where": [ - 1523 + 1640 ] } ], "events_by_pk": [ - 1519, + 1636, { "id": [ - 4921, + 4993, "uuid!" ] } ], "events_stream": [ - 1519, + 1636, { "batch_size": [ - 38, + 40, "Int!" ], "cursor": [ - 1539, + 1656, "[events_stream_cursor_input]!" ], "where": [ - 1523 + 1640 ] } ], "friends": [ - 1549, + 1666, { "distinct_on": [ - 1563, + 1680, "[friends_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 1561, + 1678, "[friends_order_by!]" ], "where": [ - 1553 + 1670 ] } ], "friends_aggregate": [ - 1550, + 1667, { "distinct_on": [ - 1563, + 1680, "[friends_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 1561, + 1678, "[friends_order_by!]" ], "where": [ - 1553 + 1670 ] } ], "friends_by_pk": [ - 1549, + 1666, { "other_player_steam_id": [ - 180, + 252, "bigint!" ], "player_steam_id": [ - 180, + 252, "bigint!" ] } ], "friends_stream": [ - 1549, + 1666, { "batch_size": [ - 38, + 40, "Int!" ], "cursor": [ - 1568, + 1685, "[friends_stream_cursor_input]!" ], "where": [ - 1553 + 1670 ] } ], "game_server_nodes": [ - 1576, + 1693, { "distinct_on": [ - 1605, + 1722, "[game_server_nodes_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 1602, + 1719, "[game_server_nodes_order_by!]" ], "where": [ - 1588 + 1705 ] } ], "game_server_nodes_aggregate": [ - 1577, + 1694, { "distinct_on": [ - 1605, + 1722, "[game_server_nodes_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 1602, + 1719, "[game_server_nodes_order_by!]" ], "where": [ - 1588 + 1705 ] } ], "game_server_nodes_by_pk": [ - 1576, + 1693, { "id": [ - 78, + 80, "String!" ] } ], "game_server_nodes_stream": [ - 1576, + 1693, { "batch_size": [ - 38, + 40, "Int!" ], "cursor": [ - 1615, + 1732, "[game_server_nodes_stream_cursor_input]!" ], "where": [ - 1588 + 1705 ] } ], "game_versions": [ - 1627, + 1744, { "distinct_on": [ - 1647, + 1764, "[game_versions_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 1644, + 1761, "[game_versions_order_by!]" ], "where": [ - 1632 + 1749 ] } ], "game_versions_aggregate": [ - 1628, + 1745, { "distinct_on": [ - 1647, + 1764, "[game_versions_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 1644, + 1761, "[game_versions_order_by!]" ], "where": [ - 1632 + 1749 ] } ], "game_versions_by_pk": [ - 1627, + 1744, { "build_id": [ - 38, + 40, "Int!" ] } ], "game_versions_stream": [ - 1627, + 1744, { "batch_size": [ - 38, + 40, "Int!" ], "cursor": [ - 1652, + 1769, "[game_versions_stream_cursor_input]!" ], "where": [ - 1632 + 1749 ] } ], "gamedata_signature_validations": [ - 1660, + 1777, { "distinct_on": [ - 1679, + 1796, "[gamedata_signature_validations_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 1676, + 1793, "[gamedata_signature_validations_order_by!]" ], "where": [ - 1665 + 1782 ] } ], "gamedata_signature_validations_aggregate": [ - 1661, + 1778, { "distinct_on": [ - 1679, + 1796, "[gamedata_signature_validations_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 1676, + 1793, "[gamedata_signature_validations_order_by!]" ], "where": [ - 1665 + 1782 ] } ], "gamedata_signature_validations_by_pk": [ - 1660, + 1777, { "id": [ - 4921, + 4993, "uuid!" ] } ], "gamedata_signature_validations_stream": [ - 1660, + 1777, { "batch_size": [ - 38, + 40, "Int!" ], "cursor": [ - 1684, + 1801, "[gamedata_signature_validations_stream_cursor_input]!" ], "where": [ - 1665 + 1782 ] } ], "get_event_leaderboard": [ - 1703, + 1820, { "args": [ - 1692, + 1809, "get_event_leaderboard_args!" ], "distinct_on": [ - 1714, + 1831, "[leaderboard_entries_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 1713, + 1830, "[leaderboard_entries_order_by!]" ], "where": [ - 1707 + 1824 ] } ], "get_event_leaderboard_aggregate": [ - 1704, + 1821, { "args": [ - 1692, + 1809, "get_event_leaderboard_args!" ], "distinct_on": [ - 1714, + 1831, "[leaderboard_entries_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 1713, + 1830, "[leaderboard_entries_order_by!]" ], "where": [ - 1707 + 1824 ] } ], "get_leaderboard": [ - 1703, + 1820, { "args": [ - 1693, + 1810, "get_leaderboard_args!" ], "distinct_on": [ - 1714, + 1831, "[leaderboard_entries_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 1713, + 1830, "[leaderboard_entries_order_by!]" ], "where": [ - 1707 + 1824 ] } ], "get_leaderboard_aggregate": [ - 1704, + 1821, { "args": [ - 1693, + 1810, "get_leaderboard_args!" ], "distinct_on": [ - 1714, + 1831, "[leaderboard_entries_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 1713, + 1830, "[leaderboard_entries_order_by!]" ], "where": [ - 1707 + 1824 ] } ], "get_league_season_leaderboard": [ - 1703, + 1820, { "args": [ - 1694, + 1811, "get_league_season_leaderboard_args!" ], "distinct_on": [ - 1714, + 1831, "[leaderboard_entries_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 1713, + 1830, "[leaderboard_entries_order_by!]" ], "where": [ - 1707 + 1824 ] } ], "get_league_season_leaderboard_aggregate": [ - 1704, + 1821, { "args": [ - 1694, + 1811, "get_league_season_leaderboard_args!" ], "distinct_on": [ - 1714, + 1831, "[leaderboard_entries_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 1713, + 1830, "[leaderboard_entries_order_by!]" ], "where": [ - 1707 + 1824 ] } ], "get_player_leaderboard_rank": [ - 3270, + 3387, { "args": [ - 1695, + 1812, "get_player_leaderboard_rank_args!" ], "distinct_on": [ - 3281, + 3398, "[player_leaderboard_rank_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 3280, + 3397, "[player_leaderboard_rank_order_by!]" ], "where": [ - 3274 + 3391 ] } ], "get_player_leaderboard_rank_aggregate": [ - 3271, + 3388, { "args": [ - 1695, + 1812, "get_player_leaderboard_rank_args!" ], "distinct_on": [ - 3281, + 3398, "[player_leaderboard_rank_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 3280, + 3397, "[player_leaderboard_rank_order_by!]" ], "where": [ - 3274 + 3391 ] } ], "leaderboard_entries": [ - 1703, + 1820, { "distinct_on": [ - 1714, + 1831, "[leaderboard_entries_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 1713, + 1830, "[leaderboard_entries_order_by!]" ], "where": [ - 1707 + 1824 ] } ], "leaderboard_entries_aggregate": [ - 1704, + 1821, { "distinct_on": [ - 1714, + 1831, "[leaderboard_entries_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 1713, + 1830, "[leaderboard_entries_order_by!]" ], "where": [ - 1707 + 1824 ] } ], "leaderboard_entries_stream": [ - 1703, + 1820, { "batch_size": [ - 38, + 40, "Int!" ], "cursor": [ - 1719, + 1836, "[leaderboard_entries_stream_cursor_input]!" ], "where": [ - 1707 + 1824 ] } ], "league_divisions": [ - 1727, + 1844, { "distinct_on": [ - 1742, + 1859, "[league_divisions_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 1740, + 1857, "[league_divisions_order_by!]" ], "where": [ - 1731 + 1848 ] } ], "league_divisions_aggregate": [ - 1728, + 1845, { "distinct_on": [ - 1742, + 1859, "[league_divisions_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 1740, + 1857, "[league_divisions_order_by!]" ], "where": [ - 1731 + 1848 ] } ], "league_divisions_by_pk": [ - 1727, + 1844, { "id": [ - 4921, + 4993, "uuid!" ] } ], "league_divisions_stream": [ - 1727, + 1844, { "batch_size": [ - 38, + 40, "Int!" ], "cursor": [ - 1747, + 1864, "[league_divisions_stream_cursor_input]!" ], "where": [ - 1731 + 1848 ] } ], "league_match_weeks": [ - 1755, + 1872, { "distinct_on": [ - 1776, + 1893, "[league_match_weeks_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 1774, + 1891, "[league_match_weeks_order_by!]" ], "where": [ - 1764 + 1881 ] } ], "league_match_weeks_aggregate": [ - 1756, + 1873, { "distinct_on": [ - 1776, + 1893, "[league_match_weeks_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 1774, + 1891, "[league_match_weeks_order_by!]" ], "where": [ - 1764 + 1881 ] } ], "league_match_weeks_by_pk": [ - 1755, + 1872, { "id": [ - 4921, + 4993, "uuid!" ] } ], "league_match_weeks_stream": [ - 1755, + 1872, { "batch_size": [ - 38, + 40, "Int!" ], "cursor": [ - 1784, + 1901, "[league_match_weeks_stream_cursor_input]!" ], "where": [ - 1764 + 1881 ] } ], "league_relegation_playoffs": [ - 1796, + 1913, { "distinct_on": [ - 1817, + 1934, "[league_relegation_playoffs_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 1815, + 1932, "[league_relegation_playoffs_order_by!]" ], "where": [ - 1805 + 1922 ] } ], "league_relegation_playoffs_aggregate": [ - 1797, + 1914, { "distinct_on": [ - 1817, + 1934, "[league_relegation_playoffs_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 1815, + 1932, "[league_relegation_playoffs_order_by!]" ], "where": [ - 1805 + 1922 ] } ], "league_relegation_playoffs_by_pk": [ - 1796, + 1913, { "id": [ - 4921, + 4993, "uuid!" ] } ], "league_relegation_playoffs_stream": [ - 1796, + 1913, { "batch_size": [ - 38, + 40, "Int!" ], "cursor": [ - 1825, + 1942, "[league_relegation_playoffs_stream_cursor_input]!" ], "where": [ - 1805 + 1922 ] } ], "league_scheduling_proposals": [ - 1837, + 1954, { "distinct_on": [ - 1858, + 1975, "[league_scheduling_proposals_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 1856, + 1973, "[league_scheduling_proposals_order_by!]" ], "where": [ - 1846 + 1963 ] } ], "league_scheduling_proposals_aggregate": [ - 1838, + 1955, { "distinct_on": [ - 1858, + 1975, "[league_scheduling_proposals_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 1856, + 1973, "[league_scheduling_proposals_order_by!]" ], "where": [ - 1846 + 1963 ] } ], "league_scheduling_proposals_by_pk": [ - 1837, + 1954, { "id": [ - 4921, + 4993, "uuid!" ] } ], "league_scheduling_proposals_stream": [ - 1837, + 1954, { "batch_size": [ - 38, + 40, "Int!" ], "cursor": [ - 1866, + 1983, "[league_scheduling_proposals_stream_cursor_input]!" ], "where": [ - 1846 + 1963 ] } ], "league_season_divisions": [ - 1878, + 1995, { "distinct_on": [ - 1897, + 2014, "[league_season_divisions_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 1895, + 2012, "[league_season_divisions_order_by!]" ], "where": [ - 1885 + 2002 ] } ], "league_season_divisions_aggregate": [ - 1879, + 1996, { "distinct_on": [ - 1897, + 2014, "[league_season_divisions_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 1895, + 2012, "[league_season_divisions_order_by!]" ], "where": [ - 1885 + 2002 ] } ], "league_season_divisions_by_pk": [ - 1878, + 1995, { "id": [ - 4921, + 4993, "uuid!" ] } ], "league_season_divisions_stream": [ - 1878, + 1995, { "batch_size": [ - 38, + 40, "Int!" ], "cursor": [ - 1899, + 2016, "[league_season_divisions_stream_cursor_input]!" ], "where": [ - 1885 + 2002 ] } ], "league_seasons": [ - 1903, + 2020, { "distinct_on": [ - 1923, + 2040, "[league_seasons_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 1920, + 2037, "[league_seasons_order_by!]" ], "where": [ - 1908 + 2025 ] } ], "league_seasons_aggregate": [ - 1904, + 2021, { "distinct_on": [ - 1923, + 2040, "[league_seasons_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 1920, + 2037, "[league_seasons_order_by!]" ], "where": [ - 1908 + 2025 ] } ], "league_seasons_by_pk": [ - 1903, + 2020, { "id": [ - 4921, + 4993, "uuid!" ] } ], "league_seasons_stream": [ - 1903, + 2020, { "batch_size": [ - 38, + 40, "Int!" ], "cursor": [ - 1928, + 2045, "[league_seasons_stream_cursor_input]!" ], "where": [ - 1908 + 2025 ] } ], "league_team_movements": [ - 1936, + 2053, { "distinct_on": [ - 1957, + 2074, "[league_team_movements_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 1955, + 2072, "[league_team_movements_order_by!]" ], "where": [ - 1945 + 2062 ] } ], "league_team_movements_aggregate": [ - 1937, + 2054, { "distinct_on": [ - 1957, + 2074, "[league_team_movements_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 1955, + 2072, "[league_team_movements_order_by!]" ], "where": [ - 1945 + 2062 ] } ], "league_team_movements_by_pk": [ - 1936, + 2053, { "id": [ - 4921, + 4993, "uuid!" ] } ], "league_team_movements_stream": [ - 1936, + 2053, { "batch_size": [ - 38, + 40, "Int!" ], "cursor": [ - 1965, + 2082, "[league_team_movements_stream_cursor_input]!" ], "where": [ - 1945 + 2062 ] } ], "league_team_rosters": [ - 1977, + 2094, { "distinct_on": [ - 1998, + 2115, "[league_team_rosters_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 1996, + 2113, "[league_team_rosters_order_by!]" ], "where": [ - 1986 + 2103 ] } ], "league_team_rosters_aggregate": [ - 1978, + 2095, { "distinct_on": [ - 1998, + 2115, "[league_team_rosters_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 1996, + 2113, "[league_team_rosters_order_by!]" ], "where": [ - 1986 + 2103 ] } ], "league_team_rosters_by_pk": [ - 1977, + 2094, { "league_team_season_id": [ - 4921, + 4993, "uuid!" ], "player_steam_id": [ - 180, + 252, "bigint!" ] } ], "league_team_rosters_stream": [ - 1977, + 2094, { "batch_size": [ - 38, + 40, "Int!" ], "cursor": [ - 2006, + 2123, "[league_team_rosters_stream_cursor_input]!" ], "where": [ - 1986 + 2103 ] } ], "league_team_seasons": [ - 2018, + 2135, { "distinct_on": [ - 2040, + 2157, "[league_team_seasons_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2038, + 2155, "[league_team_seasons_order_by!]" ], "where": [ - 2027 + 2144 ] } ], "league_team_seasons_aggregate": [ - 2019, + 2136, { "distinct_on": [ - 2040, + 2157, "[league_team_seasons_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2038, + 2155, "[league_team_seasons_order_by!]" ], "where": [ - 2027 + 2144 ] } ], "league_team_seasons_by_pk": [ - 2018, + 2135, { "id": [ - 4921, + 4993, "uuid!" ] } ], "league_team_seasons_stream": [ - 2018, + 2135, { "batch_size": [ - 38, + 40, "Int!" ], "cursor": [ - 2048, + 2165, "[league_team_seasons_stream_cursor_input]!" ], "where": [ - 2027 + 2144 ] } ], "league_teams": [ - 2060, + 2177, { "distinct_on": [ - 2073, + 2190, "[league_teams_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2071, + 2188, "[league_teams_order_by!]" ], "where": [ - 2063 + 2180 ] } ], "league_teams_aggregate": [ - 2061, + 2178, { "distinct_on": [ - 2073, + 2190, "[league_teams_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2071, + 2188, "[league_teams_order_by!]" ], "where": [ - 2063 + 2180 ] } ], "league_teams_by_pk": [ - 2060, + 2177, { "id": [ - 4921, + 4993, "uuid!" ] } ], "league_teams_stream": [ - 2060, + 2177, { "batch_size": [ - 38, + 40, "Int!" ], "cursor": [ - 2075, + 2192, "[league_teams_stream_cursor_input]!" ], "where": [ - 2063 + 2180 ] } ], "lobbies": [ - 2079, + 2196, { "distinct_on": [ - 2092, + 2209, "[lobbies_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2090, + 2207, "[lobbies_order_by!]" ], "where": [ - 2082 + 2199 ] } ], "lobbies_aggregate": [ - 2080, + 2197, { "distinct_on": [ - 2092, + 2209, "[lobbies_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2090, + 2207, "[lobbies_order_by!]" ], "where": [ - 2082 + 2199 ] } ], "lobbies_by_pk": [ - 2079, + 2196, { "id": [ - 4921, + 4993, "uuid!" ] } ], "lobbies_stream": [ - 2079, + 2196, { "batch_size": [ - 38, + 40, "Int!" ], "cursor": [ - 2094, + 2211, "[lobbies_stream_cursor_input]!" ], "where": [ - 2082 + 2199 ] } ], "lobby_players": [ - 2098, + 2215, { "distinct_on": [ - 2121, + 2238, "[lobby_players_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2119, + 2236, "[lobby_players_order_by!]" ], "where": [ - 2109 + 2226 ] } ], "lobby_players_aggregate": [ - 2099, + 2216, { "distinct_on": [ - 2121, + 2238, "[lobby_players_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2119, + 2236, "[lobby_players_order_by!]" ], "where": [ - 2109 + 2226 ] } ], "lobby_players_by_pk": [ - 2098, + 2215, { "lobby_id": [ - 4921, + 4993, "uuid!" ], "steam_id": [ - 180, + 252, "bigint!" ] } ], "lobby_players_stream": [ - 2098, + 2215, { "batch_size": [ - 38, + 40, "Int!" ], "cursor": [ - 2131, + 2248, "[lobby_players_stream_cursor_input]!" ], "where": [ - 2109 + 2226 ] } ], "map_pools": [ - 2143, + 2260, { "distinct_on": [ - 2156, + 2273, "[map_pools_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2154, + 2271, "[map_pools_order_by!]" ], "where": [ - 2146 + 2263 ] } ], "map_pools_aggregate": [ - 2144, + 2261, { "distinct_on": [ - 2156, + 2273, "[map_pools_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2154, + 2271, "[map_pools_order_by!]" ], "where": [ - 2146 + 2263 ] } ], "map_pools_by_pk": [ - 2143, + 2260, { "id": [ - 4921, + 4993, "uuid!" ] } ], "map_pools_stream": [ - 2143, + 2260, { "batch_size": [ - 38, + 40, "Int!" ], "cursor": [ - 2158, + 2275, "[map_pools_stream_cursor_input]!" ], "where": [ - 2146 + 2263 ] } ], "maps": [ - 2162, + 2279, { "distinct_on": [ - 2183, + 2300, "[maps_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2181, + 2298, "[maps_order_by!]" ], "where": [ - 2171 + 2288 ] } ], "maps_aggregate": [ - 2163, + 2280, { "distinct_on": [ - 2183, + 2300, "[maps_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2181, + 2298, "[maps_order_by!]" ], "where": [ - 2171 + 2288 ] } ], "maps_by_pk": [ - 2162, + 2279, { "id": [ - 4921, + 4993, "uuid!" ] } ], "maps_stream": [ - 2162, + 2279, { "batch_size": [ - 38, + 40, "Int!" ], "cursor": [ - 2187, + 2304, "[maps_stream_cursor_input]!" ], "where": [ - 2171 + 2288 ] } ], "match_clips": [ - 2191, + 2308, { "distinct_on": [ - 2213, + 2330, "[match_clips_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2211, + 2328, "[match_clips_order_by!]" ], "where": [ - 2200 + 2317 ] } ], "match_clips_aggregate": [ - 2192, + 2309, { "distinct_on": [ - 2213, + 2330, "[match_clips_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2211, + 2328, "[match_clips_order_by!]" ], "where": [ - 2200 + 2317 ] } ], "match_clips_by_pk": [ - 2191, + 2308, { "id": [ - 4921, + 4993, "uuid!" ] } ], "match_clips_stream": [ - 2191, + 2308, { "batch_size": [ - 38, + 40, "Int!" ], "cursor": [ - 2221, + 2338, "[match_clips_stream_cursor_input]!" ], "where": [ - 2200 + 2317 ] } ], "match_demo_sessions": [ - 2233, + 2350, { "distinct_on": [ - 2259, + 2376, "[match_demo_sessions_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2256, + 2373, "[match_demo_sessions_order_by!]" ], "where": [ - 2243 + 2360 ] } ], "match_demo_sessions_aggregate": [ - 2234, + 2351, { "distinct_on": [ - 2259, + 2376, "[match_demo_sessions_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2256, + 2373, "[match_demo_sessions_order_by!]" ], "where": [ - 2243 + 2360 ] } ], "match_demo_sessions_by_pk": [ - 2233, + 2350, { "id": [ - 4921, + 4993, "uuid!" ] } ], "match_demo_sessions_stream": [ - 2233, + 2350, { "batch_size": [ - 38, + 40, "Int!" ], "cursor": [ - 2267, + 2384, "[match_demo_sessions_stream_cursor_input]!" ], "where": [ - 2243 + 2360 ] } ], "match_lineup_players": [ - 2279, + 2396, { "distinct_on": [ - 2302, + 2419, "[match_lineup_players_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2300, + 2417, "[match_lineup_players_order_by!]" ], "where": [ - 2290 + 2407 ] } ], "match_lineup_players_aggregate": [ - 2280, + 2397, { "distinct_on": [ - 2302, + 2419, "[match_lineup_players_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2300, + 2417, "[match_lineup_players_order_by!]" ], "where": [ - 2290 + 2407 ] } ], "match_lineup_players_by_pk": [ - 2279, + 2396, { "id": [ - 4921, + 4993, "uuid!" ] } ], "match_lineup_players_stream": [ - 2279, + 2396, { "batch_size": [ - 38, + 40, "Int!" ], "cursor": [ - 2312, + 2429, "[match_lineup_players_stream_cursor_input]!" ], "where": [ - 2290 + 2407 ] } ], "match_lineups": [ - 2324, + 2441, { "distinct_on": [ - 2346, + 2463, "[match_lineups_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2344, + 2461, "[match_lineups_order_by!]" ], "where": [ - 2333 + 2450 ] } ], "match_lineups_aggregate": [ - 2325, + 2442, { "distinct_on": [ - 2346, + 2463, "[match_lineups_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2344, + 2461, "[match_lineups_order_by!]" ], "where": [ - 2333 + 2450 ] } ], "match_lineups_by_pk": [ - 2324, + 2441, { "id": [ - 4921, + 4993, "uuid!" ] } ], "match_lineups_stream": [ - 2324, + 2441, { "batch_size": [ - 38, + 40, "Int!" ], "cursor": [ - 2354, + 2471, "[match_lineups_stream_cursor_input]!" ], "where": [ - 2333 + 2450 ] } ], "match_map_demos": [ - 2366, + 2483, { "distinct_on": [ - 2395, + 2512, "[match_map_demos_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2392, + 2509, "[match_map_demos_order_by!]" ], "where": [ - 2378 + 2495 ] } ], "match_map_demos_aggregate": [ - 2367, + 2484, { "distinct_on": [ - 2395, + 2512, "[match_map_demos_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2392, + 2509, "[match_map_demos_order_by!]" ], "where": [ - 2378 + 2495 ] } ], "match_map_demos_by_pk": [ - 2366, + 2483, { "id": [ - 4921, + 4993, "uuid!" ] } ], "match_map_demos_stream": [ - 2366, + 2483, { "batch_size": [ - 38, + 40, "Int!" ], "cursor": [ - 2405, + 2522, "[match_map_demos_stream_cursor_input]!" ], "where": [ - 2378 + 2495 ] } ], "match_map_rounds": [ - 2417, + 2534, { "distinct_on": [ - 2438, + 2555, "[match_map_rounds_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2436, + 2553, "[match_map_rounds_order_by!]" ], "where": [ - 2426 + 2543 ] } ], "match_map_rounds_aggregate": [ - 2418, + 2535, { "distinct_on": [ - 2438, + 2555, "[match_map_rounds_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2436, + 2553, "[match_map_rounds_order_by!]" ], "where": [ - 2426 + 2543 ] } ], "match_map_rounds_by_pk": [ - 2417, + 2534, { "id": [ - 4921, + 4993, "uuid!" ] } ], "match_map_rounds_stream": [ - 2417, + 2534, { "batch_size": [ - 38, + 40, "Int!" ], "cursor": [ - 2446, + 2563, "[match_map_rounds_stream_cursor_input]!" ], "where": [ - 2426 + 2543 ] } ], "match_map_veto_picks": [ - 2458, + 2575, { "distinct_on": [ - 2476, + 2593, "[match_map_veto_picks_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2474, + 2591, "[match_map_veto_picks_order_by!]" ], "where": [ - 2465 + 2582 ] } ], "match_map_veto_picks_aggregate": [ - 2459, + 2576, { "distinct_on": [ - 2476, + 2593, "[match_map_veto_picks_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2474, + 2591, "[match_map_veto_picks_order_by!]" ], "where": [ - 2465 + 2582 ] } ], "match_map_veto_picks_by_pk": [ - 2458, + 2575, { "id": [ - 4921, + 4993, "uuid!" ] } ], "match_map_veto_picks_stream": [ - 2458, + 2575, { "batch_size": [ - 38, + 40, "Int!" ], "cursor": [ - 2478, + 2595, "[match_map_veto_picks_stream_cursor_input]!" ], "where": [ - 2465 + 2582 ] } ], "match_maps": [ - 2482, + 2599, { "distinct_on": [ - 2504, + 2621, "[match_maps_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2502, + 2619, "[match_maps_order_by!]" ], "where": [ - 2491 + 2608 ] } ], "match_maps_aggregate": [ - 2483, + 2600, { "distinct_on": [ - 2504, + 2621, "[match_maps_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2502, + 2619, "[match_maps_order_by!]" ], "where": [ - 2491 + 2608 ] } ], "match_maps_by_pk": [ - 2482, + 2599, { "id": [ - 4921, + 4993, "uuid!" ] } ], "match_maps_stream": [ - 2482, + 2599, { "batch_size": [ - 38, + 40, "Int!" ], "cursor": [ - 2512, + 2629, "[match_maps_stream_cursor_input]!" ], "where": [ - 2491 + 2608 ] } ], "match_options": [ - 2524, + 2641, { "distinct_on": [ - 2539, + 2656, "[match_options_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2537, + 2654, "[match_options_order_by!]" ], "where": [ - 2528 + 2645 ] } ], "match_options_aggregate": [ - 2525, + 2642, { "distinct_on": [ - 2539, + 2656, "[match_options_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2537, + 2654, "[match_options_order_by!]" ], "where": [ - 2528 + 2645 ] } ], "match_options_by_pk": [ - 2524, + 2641, { "id": [ - 4921, + 4993, "uuid!" ] } ], "match_options_stream": [ - 2524, + 2641, { "batch_size": [ - 38, + 40, "Int!" ], "cursor": [ - 2544, + 2661, "[match_options_stream_cursor_input]!" ], "where": [ - 2528 + 2645 ] } ], "match_region_veto_picks": [ - 2552, + 2669, { "distinct_on": [ - 2570, + 2687, "[match_region_veto_picks_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2568, + 2685, "[match_region_veto_picks_order_by!]" ], "where": [ - 2559 + 2676 ] } ], "match_region_veto_picks_aggregate": [ - 2553, + 2670, { "distinct_on": [ - 2570, + 2687, "[match_region_veto_picks_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2568, + 2685, "[match_region_veto_picks_order_by!]" ], "where": [ - 2559 + 2676 ] } ], "match_region_veto_picks_by_pk": [ - 2552, + 2669, { "id": [ - 4921, + 4993, "uuid!" ] } ], "match_region_veto_picks_stream": [ - 2552, + 2669, { "batch_size": [ - 38, + 40, "Int!" ], "cursor": [ - 2572, + 2689, "[match_region_veto_picks_stream_cursor_input]!" ], "where": [ - 2559 + 2676 ] } ], "match_streams": [ - 2576, + 2693, { "distinct_on": [ - 2604, + 2721, "[match_streams_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2601, + 2718, "[match_streams_order_by!]" ], "where": [ - 2588 + 2705 ] } ], "match_streams_aggregate": [ - 2577, + 2694, { "distinct_on": [ - 2604, + 2721, "[match_streams_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2601, + 2718, "[match_streams_order_by!]" ], "where": [ - 2588 + 2705 ] } ], "match_streams_by_pk": [ - 2576, + 2693, { "id": [ - 4921, + 4993, "uuid!" ] } ], "match_streams_stream": [ - 2576, + 2693, { "batch_size": [ - 38, + 40, "Int!" ], "cursor": [ - 2614, + 2731, "[match_streams_stream_cursor_input]!" ], "where": [ - 2588 + 2705 ] } ], "match_type_cfgs": [ - 2626, + 2743, { "distinct_on": [ - 2638, + 2755, "[match_type_cfgs_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2636, + 2753, "[match_type_cfgs_order_by!]" ], "where": [ - 2629 + 2746 ] } ], "match_type_cfgs_aggregate": [ - 2627, + 2744, { "distinct_on": [ - 2638, + 2755, "[match_type_cfgs_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2636, + 2753, "[match_type_cfgs_order_by!]" ], "where": [ - 2629 + 2746 ] } ], "match_type_cfgs_by_pk": [ - 2626, + 2743, { "type": [ - 618, + 735, "e_game_cfg_types_enum!" ] } ], "match_type_cfgs_stream": [ - 2626, + 2743, { "batch_size": [ - 38, + 40, "Int!" ], "cursor": [ - 2640, + 2757, "[match_type_cfgs_stream_cursor_input]!" ], "where": [ - 2629 + 2746 ] } ], "matches": [ - 2644, + 2761, { "distinct_on": [ - 2666, + 2783, "[matches_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2664, + 2781, "[matches_order_by!]" ], "where": [ - 2653 + 2770 ] } ], "matches_aggregate": [ - 2645, + 2762, { "distinct_on": [ - 2666, + 2783, "[matches_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2664, + 2781, "[matches_order_by!]" ], "where": [ - 2653 + 2770 ] } ], "matches_by_pk": [ - 2644, + 2761, { "id": [ - 4921, + 4993, "uuid!" ] } ], "matches_stream": [ - 2644, + 2761, { "batch_size": [ - 38, + 40, "Int!" ], "cursor": [ - 2674, + 2791, "[matches_stream_cursor_input]!" ], "where": [ - 2653 + 2770 ] } ], "migration_hashes_hashes": [ - 2686, + 2803, { "distinct_on": [ - 2698, + 2815, "[migration_hashes_hashes_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2696, + 2813, "[migration_hashes_hashes_order_by!]" ], "where": [ - 2689 + 2806 ] } ], "migration_hashes_hashes_aggregate": [ - 2687, + 2804, { "distinct_on": [ - 2698, + 2815, "[migration_hashes_hashes_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2696, + 2813, "[migration_hashes_hashes_order_by!]" ], "where": [ - 2689 + 2806 ] } ], "migration_hashes_hashes_by_pk": [ - 2686, + 2803, { "name": [ - 78, + 80, "String!" ] } ], "migration_hashes_hashes_stream": [ - 2686, + 2803, { "batch_size": [ - 38, + 40, "Int!" ], "cursor": [ - 2700, + 2817, "[migration_hashes_hashes_stream_cursor_input]!" ], "where": [ - 2689 + 2806 ] } ], "my_friends": [ - 2704, + 2821, { "distinct_on": [ - 2729, + 2846, "[my_friends_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2727, + 2844, "[my_friends_order_by!]" ], "where": [ - 2716 + 2833 ] } ], "my_friends_aggregate": [ - 2705, + 2822, { "distinct_on": [ - 2729, + 2846, "[my_friends_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2727, + 2844, "[my_friends_order_by!]" ], "where": [ - 2716 + 2833 ] } ], "my_friends_stream": [ - 2704, + 2821, { "batch_size": [ - 38, + 40, "Int!" ], "cursor": [ - 2739, + 2856, "[my_friends_stream_cursor_input]!" ], "where": [ - 2716 + 2833 ] } ], "news_articles": [ - 2750, + 2867, { "distinct_on": [ - 2764, + 2881, "[news_articles_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2762, + 2879, "[news_articles_order_by!]" ], "where": [ - 2754 + 2871 ] } ], "news_articles_aggregate": [ - 2751, + 2868, { "distinct_on": [ - 2764, + 2881, "[news_articles_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2762, + 2879, "[news_articles_order_by!]" ], "where": [ - 2754 + 2871 ] } ], "news_articles_by_pk": [ - 2750, + 2867, { "id": [ - 4921, + 4993, "uuid!" ] } ], "news_articles_stream": [ - 2750, + 2867, { "batch_size": [ - 38, + 40, "Int!" ], "cursor": [ - 2769, + 2886, "[news_articles_stream_cursor_input]!" ], "where": [ - 2754 + 2871 ] } ], "notifications": [ - 2777, + 2894, { "distinct_on": [ - 2805, + 2922, "[notifications_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2802, + 2919, "[notifications_order_by!]" ], "where": [ - 2789 + 2906 ] } ], "notifications_aggregate": [ - 2778, + 2895, { "distinct_on": [ - 2805, + 2922, "[notifications_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2802, + 2919, "[notifications_order_by!]" ], "where": [ - 2789 + 2906 ] } ], "notifications_by_pk": [ - 2777, + 2894, { "id": [ - 4921, + 4993, "uuid!" ] } ], "notifications_stream": [ - 2777, + 2894, { "batch_size": [ - 38, + 40, "Int!" ], "cursor": [ - 2815, + 2932, "[notifications_stream_cursor_input]!" ], "where": [ - 2789 + 2906 ] } ], "pending_match_import_players": [ - 2830, + 2947, { "distinct_on": [ - 2851, + 2968, "[pending_match_import_players_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2849, + 2966, "[pending_match_import_players_order_by!]" ], "where": [ - 2839 + 2956 ] } ], "pending_match_import_players_aggregate": [ - 2831, + 2948, { "distinct_on": [ - 2851, + 2968, "[pending_match_import_players_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2849, + 2966, "[pending_match_import_players_order_by!]" ], "where": [ - 2839 + 2956 ] } ], "pending_match_import_players_by_pk": [ - 2830, + 2947, { "steam_id": [ - 180, + 252, "bigint!" ], "valve_match_id": [ - 2827, + 2944, "numeric!" ] } ], "pending_match_import_players_stream": [ - 2830, + 2947, { "batch_size": [ - 38, + 40, "Int!" ], "cursor": [ - 2859, + 2976, "[pending_match_import_players_stream_cursor_input]!" ], "where": [ - 2839 + 2956 ] } ], "pending_match_imports": [ - 2871, + 2988, { "distinct_on": [ - 2886, + 3003, "[pending_match_imports_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2884, + 3001, "[pending_match_imports_order_by!]" ], "where": [ - 2875 + 2992 ] } ], "pending_match_imports_aggregate": [ - 2872, + 2989, { "distinct_on": [ - 2886, + 3003, "[pending_match_imports_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2884, + 3001, "[pending_match_imports_order_by!]" ], "where": [ - 2875 + 2992 ] } ], "pending_match_imports_by_pk": [ - 2871, + 2988, { "valve_match_id": [ - 2827, + 2944, "numeric!" ] } ], "pending_match_imports_stream": [ - 2871, + 2988, { "batch_size": [ - 38, + 40, "Int!" ], "cursor": [ - 2891, + 3008, "[pending_match_imports_stream_cursor_input]!" ], "where": [ - 2875 + 2992 ] } ], "player_aim_stats_demo": [ - 2899, + 3016, { "distinct_on": [ - 2913, + 3030, "[player_aim_stats_demo_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2911, + 3028, "[player_aim_stats_demo_order_by!]" ], "where": [ - 2903 + 3020 ] } ], "player_aim_stats_demo_aggregate": [ - 2900, + 3017, { "distinct_on": [ - 2913, + 3030, "[player_aim_stats_demo_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2911, + 3028, "[player_aim_stats_demo_order_by!]" ], "where": [ - 2903 + 3020 ] } ], "player_aim_stats_demo_by_pk": [ - 2899, + 3016, { "attacker_steam_id": [ - 180, + 252, "bigint!" ], "match_map_id": [ - 4921, + 4993, "uuid!" ] } ], "player_aim_stats_demo_stream": [ - 2899, + 3016, { "batch_size": [ - 38, + 40, "Int!" ], "cursor": [ - 2918, + 3035, "[player_aim_stats_demo_stream_cursor_input]!" ], "where": [ - 2903 + 3020 ] } ], "player_aim_weapon_stats": [ - 2926, + 3043, { "distinct_on": [ - 2947, + 3064, "[player_aim_weapon_stats_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2945, + 3062, "[player_aim_weapon_stats_order_by!]" ], "where": [ - 2935 + 3052 ] } ], "player_aim_weapon_stats_aggregate": [ - 2927, + 3044, { "distinct_on": [ - 2947, + 3064, "[player_aim_weapon_stats_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2945, + 3062, "[player_aim_weapon_stats_order_by!]" ], "where": [ - 2935 + 3052 ] } ], "player_aim_weapon_stats_by_pk": [ - 2926, + 3043, { "match_map_id": [ - 4921, + 4993, "uuid!" ], "steam_id": [ - 180, + 252, "bigint!" ], "weapon_class": [ - 78, + 80, "String!" ] } ], "player_aim_weapon_stats_stream": [ - 2926, + 3043, { "batch_size": [ - 38, + 40, "Int!" ], "cursor": [ - 2955, + 3072, "[player_aim_weapon_stats_stream_cursor_input]!" ], "where": [ - 2935 + 3052 ] } ], "player_assists": [ - 2967, + 3084, { "distinct_on": [ - 2990, + 3107, "[player_assists_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2988, + 3105, "[player_assists_order_by!]" ], "where": [ - 2978 + 3095 ] } ], "player_assists_aggregate": [ - 2968, + 3085, { "distinct_on": [ - 2990, + 3107, "[player_assists_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 2988, + 3105, "[player_assists_order_by!]" ], "where": [ - 2978 + 3095 ] } ], "player_assists_by_pk": [ - 2967, + 3084, { "attacked_steam_id": [ - 180, + 252, "bigint!" ], "attacker_steam_id": [ - 180, + 252, "bigint!" ], "match_map_id": [ - 4921, + 4993, "uuid!" ], "time": [ - 4376, + 4493, "timestamptz!" ] } ], "player_assists_stream": [ - 2967, + 3084, { "batch_size": [ - 38, + 40, "Int!" ], "cursor": [ - 3000, + 3117, "[player_assists_stream_cursor_input]!" ], "where": [ - 2978 + 3095 ] } ], "player_career_stats_v": [ - 3012, + 3129, { "distinct_on": [ - 3020, + 3137, "[player_career_stats_v_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 3019, + 3136, "[player_career_stats_v_order_by!]" ], "where": [ - 3016 + 3133 ] } ], "player_career_stats_v_aggregate": [ - 3013, + 3130, { "distinct_on": [ - 3020, + 3137, "[player_career_stats_v_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 3019, + 3136, "[player_career_stats_v_order_by!]" ], "where": [ - 3016 + 3133 ] } ], "player_career_stats_v_stream": [ - 3012, + 3129, { "batch_size": [ - 38, + 40, "Int!" ], "cursor": [ - 3024, + 3141, "[player_career_stats_v_stream_cursor_input]!" ], "where": [ - 3016 + 3133 ] } ], "player_damages": [ - 3030, + 3147, { "distinct_on": [ - 3051, + 3168, "[player_damages_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 3049, + 3166, "[player_damages_order_by!]" ], "where": [ - 3039 + 3156 ] } ], "player_damages_aggregate": [ - 3031, + 3148, { "distinct_on": [ - 3051, + 3168, "[player_damages_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 3049, + 3166, "[player_damages_order_by!]" ], "where": [ - 3039 + 3156 ] } ], "player_damages_by_pk": [ - 3030, + 3147, { "id": [ - 4921, + 4993, "uuid!" ], "match_map_id": [ - 4921, + 4993, "uuid!" ], "time": [ - 4376, + 4493, "timestamptz!" ] } ], "player_damages_stream": [ - 3030, + 3147, { "batch_size": [ - 38, + 40, "Int!" ], "cursor": [ - 3059, + 3176, "[player_damages_stream_cursor_input]!" ], "where": [ - 3039 + 3156 ] } ], "player_elo": [ - 3071, + 3188, { "distinct_on": [ - 3085, + 3202, "[player_elo_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 3083, + 3200, "[player_elo_order_by!]" ], "where": [ - 3075 + 3192 ] } ], "player_elo_aggregate": [ - 3072, + 3189, { "distinct_on": [ - 3085, + 3202, "[player_elo_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 3083, + 3200, "[player_elo_order_by!]" ], "where": [ - 3075 + 3192 ] } ], "player_elo_by_pk": [ - 3071, + 3188, { "match_id": [ - 4921, + 4993, "uuid!" ], "steam_id": [ - 180, + 252, "bigint!" ], "type": [ - 887, + 1004, "e_match_types_enum!" ] } ], "player_elo_stream": [ - 3071, + 3188, { "batch_size": [ - 38, + 40, "Int!" ], "cursor": [ - 3090, + 3207, "[player_elo_stream_cursor_input]!" ], "where": [ - 3075 + 3192 ] } ], "player_faceit_rank_history": [ - 3098, + 3215, { "distinct_on": [ - 3119, + 3236, "[player_faceit_rank_history_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 3117, + 3234, "[player_faceit_rank_history_order_by!]" ], "where": [ - 3107 + 3224 ] } ], "player_faceit_rank_history_aggregate": [ - 3099, + 3216, { "distinct_on": [ - 3119, + 3236, "[player_faceit_rank_history_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 3117, + 3234, "[player_faceit_rank_history_order_by!]" ], "where": [ - 3107 + 3224 ] } ], "player_faceit_rank_history_by_pk": [ - 3098, + 3215, { "id": [ - 4921, + 4993, "uuid!" ] } ], "player_faceit_rank_history_stream": [ - 3098, + 3215, { "batch_size": [ - 38, + 40, "Int!" ], "cursor": [ - 3127, + 3244, "[player_faceit_rank_history_stream_cursor_input]!" ], "where": [ - 3107 + 3224 ] } ], "player_flashes": [ - 3139, + 3256, { "distinct_on": [ - 3162, + 3279, "[player_flashes_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 3160, + 3277, "[player_flashes_order_by!]" ], "where": [ - 3150 + 3267 ] } ], "player_flashes_aggregate": [ - 3140, + 3257, { "distinct_on": [ - 3162, + 3279, "[player_flashes_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 3160, + 3277, "[player_flashes_order_by!]" ], "where": [ - 3150 + 3267 ] } ], "player_flashes_by_pk": [ - 3139, + 3256, { "attacked_steam_id": [ - 180, + 252, "bigint!" ], "attacker_steam_id": [ - 180, + 252, "bigint!" ], "match_map_id": [ - 4921, + 4993, "uuid!" ], "time": [ - 4376, + 4493, "timestamptz!" ] } ], "player_flashes_stream": [ - 3139, + 3256, { "batch_size": [ - 38, + 40, "Int!" ], "cursor": [ - 3172, + 3289, "[player_flashes_stream_cursor_input]!" ], "where": [ - 3150 + 3267 ] } ], "player_kills": [ - 3184, + 3301, { "distinct_on": [ - 3248, + 3365, "[player_kills_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 3246, + 3363, "[player_kills_order_by!]" ], "where": [ - 3195 + 3312 ] } ], "player_kills_aggregate": [ - 3185, + 3302, { "distinct_on": [ - 3248, + 3365, "[player_kills_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 3246, + 3363, "[player_kills_order_by!]" ], "where": [ - 3195 + 3312 ] } ], "player_kills_by_pk": [ - 3184, + 3301, { "attacked_steam_id": [ - 180, + 252, "bigint!" ], "attacker_steam_id": [ - 180, + 252, "bigint!" ], "match_map_id": [ - 4921, + 4993, "uuid!" ], "time": [ - 4376, + 4493, "timestamptz!" ] } ], "player_kills_by_weapon": [ - 3196, + 3313, { "distinct_on": [ - 3217, + 3334, "[player_kills_by_weapon_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 3215, + 3332, "[player_kills_by_weapon_order_by!]" ], "where": [ - 3205 + 3322 ] } ], "player_kills_by_weapon_aggregate": [ - 3197, + 3314, { "distinct_on": [ - 3217, + 3334, "[player_kills_by_weapon_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 3215, + 3332, "[player_kills_by_weapon_order_by!]" ], "where": [ - 3205 + 3322 ] } ], "player_kills_by_weapon_by_pk": [ - 3196, + 3313, { "player_steam_id": [ - 180, + 252, "bigint!" ], "with": [ - 78, + 80, "String!" ] } ], "player_kills_by_weapon_stream": [ - 3196, + 3313, { "batch_size": [ - 38, + 40, "Int!" ], "cursor": [ - 3225, + 3342, "[player_kills_by_weapon_stream_cursor_input]!" ], "where": [ - 3205 + 3322 ] } ], "player_kills_stream": [ - 3184, + 3301, { "batch_size": [ - 38, + 40, "Int!" ], "cursor": [ - 3258, + 3375, "[player_kills_stream_cursor_input]!" ], "where": [ - 3195 + 3312 ] } ], "player_leaderboard_rank": [ - 3270, + 3387, { "distinct_on": [ - 3281, + 3398, "[player_leaderboard_rank_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 3280, + 3397, "[player_leaderboard_rank_order_by!]" ], "where": [ - 3274 + 3391 ] } ], "player_leaderboard_rank_aggregate": [ - 3271, + 3388, { "distinct_on": [ - 3281, + 3398, "[player_leaderboard_rank_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 3280, + 3397, "[player_leaderboard_rank_order_by!]" ], "where": [ - 3274 + 3391 ] } ], "player_leaderboard_rank_stream": [ - 3270, + 3387, { "batch_size": [ - 38, + 40, "Int!" ], "cursor": [ - 3286, + 3403, "[player_leaderboard_rank_stream_cursor_input]!" ], "where": [ - 3274 + 3391 ] } ], "player_match_map_stats": [ - 3293, + 3410, { "distinct_on": [ - 3314, + 3431, "[player_match_map_stats_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 3312, + 3429, "[player_match_map_stats_order_by!]" ], "where": [ - 3302 + 3419 ] } ], "player_match_map_stats_aggregate": [ - 3294, + 3411, { "distinct_on": [ - 3314, + 3431, "[player_match_map_stats_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 3312, + 3429, "[player_match_map_stats_order_by!]" ], "where": [ - 3302 + 3419 ] } ], "player_match_map_stats_by_pk": [ - 3293, + 3410, { "match_map_id": [ - 4921, + 4993, "uuid!" ], "steam_id": [ - 180, + 252, "bigint!" ] } ], "player_match_map_stats_stream": [ - 3293, + 3410, { "batch_size": [ - 38, + 40, "Int!" ], "cursor": [ - 3322, + 3439, "[player_match_map_stats_stream_cursor_input]!" ], "where": [ - 3302 + 3419 ] } ], "player_match_performance_v": [ - 3334, + 3451, { "distinct_on": [ - 3342, + 3459, "[player_match_performance_v_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 3341, + 3458, "[player_match_performance_v_order_by!]" ], "where": [ - 3338 + 3455 ] } ], "player_match_performance_v_aggregate": [ - 3335, + 3452, { "distinct_on": [ - 3342, + 3459, "[player_match_performance_v_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 3341, + 3458, "[player_match_performance_v_order_by!]" ], "where": [ - 3338 + 3455 ] } ], "player_match_performance_v_stream": [ - 3334, + 3451, { "batch_size": [ - 38, + 40, "Int!" ], "cursor": [ - 3346, + 3463, "[player_match_performance_v_stream_cursor_input]!" ], "where": [ - 3338 + 3455 ] } ], "player_match_stats_v": [ - 3352, + 3469, { "distinct_on": [ - 3368, + 3485, "[player_match_stats_v_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 3367, + 3484, "[player_match_stats_v_order_by!]" ], "where": [ - 3361 + 3478 ] } ], "player_match_stats_v_aggregate": [ - 3353, + 3470, { "distinct_on": [ - 3368, + 3485, "[player_match_stats_v_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 3367, + 3484, "[player_match_stats_v_order_by!]" ], "where": [ - 3361 + 3478 ] } ], "player_match_stats_v_stream": [ - 3352, + 3469, { "batch_size": [ - 38, + 40, "Int!" ], "cursor": [ - 3375, + 3492, "[player_match_stats_v_stream_cursor_input]!" ], "where": [ - 3361 + 3478 ] } ], "player_objectives": [ - 3385, + 3502, { "distinct_on": [ - 3406, + 3523, "[player_objectives_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 3404, + 3521, "[player_objectives_order_by!]" ], "where": [ - 3394 + 3511 ] } ], "player_objectives_aggregate": [ - 3386, + 3503, { "distinct_on": [ - 3406, + 3523, "[player_objectives_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 3404, + 3521, "[player_objectives_order_by!]" ], "where": [ - 3394 + 3511 ] } ], "player_objectives_by_pk": [ - 3385, + 3502, { "match_map_id": [ - 4921, + 4993, "uuid!" ], "player_steam_id": [ - 180, + 252, "bigint!" ], "time": [ - 4376, + 4493, "timestamptz!" ] } ], "player_objectives_stream": [ - 3385, + 3502, { "batch_size": [ - 38, + 40, "Int!" ], "cursor": [ - 3414, + 3531, "[player_objectives_stream_cursor_input]!" ], "where": [ - 3394 + 3511 ] } ], "player_performance_v": [ - 3426, + 3543, { "distinct_on": [ - 3434, + 3551, "[player_performance_v_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 3433, + 3550, "[player_performance_v_order_by!]" ], "where": [ - 3430 + 3547 ] } ], "player_performance_v_aggregate": [ - 3427, + 3544, { "distinct_on": [ - 3434, + 3551, "[player_performance_v_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 3433, + 3550, "[player_performance_v_order_by!]" ], "where": [ - 3430 + 3547 ] } ], "player_performance_v_stream": [ - 3426, + 3543, { "batch_size": [ - 38, + 40, "Int!" ], "cursor": [ - 3438, + 3555, "[player_performance_v_stream_cursor_input]!" ], "where": [ - 3430 + 3547 ] } ], "player_premier_rank_history": [ - 3444, + 3561, { "distinct_on": [ - 3465, + 3582, "[player_premier_rank_history_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 3463, + 3580, "[player_premier_rank_history_order_by!]" ], "where": [ - 3453 + 3570 ] } ], "player_premier_rank_history_aggregate": [ - 3445, + 3562, { "distinct_on": [ - 3465, + 3582, "[player_premier_rank_history_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 3463, + 3580, "[player_premier_rank_history_order_by!]" ], "where": [ - 3453 + 3570 ] } ], "player_premier_rank_history_by_pk": [ - 3444, + 3561, { "id": [ - 4921, + 4993, "uuid!" ] } ], "player_premier_rank_history_stream": [ - 3444, + 3561, { "batch_size": [ - 38, + 40, "Int!" ], "cursor": [ - 3473, + 3590, "[player_premier_rank_history_stream_cursor_input]!" ], "where": [ - 3453 + 3570 ] } ], "player_sanctions": [ - 3485, + 3602, { "distinct_on": [ - 3506, + 3623, "[player_sanctions_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 3504, + 3621, "[player_sanctions_order_by!]" ], "where": [ - 3494 + 3611 ] } ], "player_sanctions_aggregate": [ - 3486, + 3603, { "distinct_on": [ - 3506, + 3623, "[player_sanctions_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 3504, + 3621, "[player_sanctions_order_by!]" ], "where": [ - 3494 + 3611 ] } ], "player_sanctions_by_pk": [ - 3485, + 3602, { "created_at": [ - 4376, + 4493, "timestamptz!" ], "id": [ - 4921, + 4993, "uuid!" ] } ], "player_sanctions_stream": [ - 3485, + 3602, { "batch_size": [ - 38, + 40, "Int!" ], "cursor": [ - 3514, + 3631, "[player_sanctions_stream_cursor_input]!" ], "where": [ - 3494 + 3611 ] } ], "player_season_stats": [ - 3526, + 3643, { "distinct_on": [ - 3557, + 3674, "[player_season_stats_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 3555, + 3672, "[player_season_stats_order_by!]" ], "where": [ - 3545 + 3662 ] } ], "player_season_stats_aggregate": [ - 3527, + 3644, { "distinct_on": [ - 3557, + 3674, "[player_season_stats_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 3555, + 3672, "[player_season_stats_order_by!]" ], "where": [ - 3545 + 3662 ] } ], "player_season_stats_by_pk": [ - 3526, + 3643, { "player_steam_id": [ - 180, + 252, "bigint!" ], "season_id": [ - 4921, + 4993, "uuid!" ] } ], "player_season_stats_stream": [ - 3526, + 3643, { "batch_size": [ - 38, + 40, "Int!" ], "cursor": [ - 3573, + 3690, "[player_season_stats_stream_cursor_input]!" ], "where": [ - 3545 + 3662 ] } ], "player_stats": [ - 3585, + 3702, { "distinct_on": [ - 3600, + 3717, "[player_stats_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 3598, + 3715, "[player_stats_order_by!]" ], "where": [ - 3589 + 3706 ] } ], "player_stats_aggregate": [ - 3586, + 3703, { "distinct_on": [ - 3600, + 3717, "[player_stats_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 3598, + 3715, "[player_stats_order_by!]" ], "where": [ - 3589 + 3706 ] } ], "player_stats_by_pk": [ - 3585, + 3702, { "player_steam_id": [ - 180, + 252, "bigint!" ] } ], "player_stats_stream": [ - 3585, + 3702, { "batch_size": [ - 38, + 40, "Int!" ], "cursor": [ - 3605, + 3722, "[player_stats_stream_cursor_input]!" ], "where": [ - 3589 + 3706 ] } ], "player_steam_bot_friend": [ - 3613, + 3730, { "distinct_on": [ - 3632, + 3749, "[player_steam_bot_friend_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 3629, + 3746, "[player_steam_bot_friend_order_by!]" ], "where": [ - 3618 + 3735 ] } ], "player_steam_bot_friend_aggregate": [ - 3614, + 3731, { "distinct_on": [ - 3632, + 3749, "[player_steam_bot_friend_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 3629, + 3746, "[player_steam_bot_friend_order_by!]" ], "where": [ - 3618 + 3735 ] } ], "player_steam_bot_friend_by_pk": [ - 3613, + 3730, { "steam_id": [ - 180, + 252, "bigint!" ] } ], "player_steam_bot_friend_stream": [ - 3613, + 3730, { "batch_size": [ - 38, + 40, "Int!" ], "cursor": [ - 3637, + 3754, "[player_steam_bot_friend_stream_cursor_input]!" ], "where": [ - 3618 + 3735 ] } ], "player_steam_match_auth": [ - 3645, + 3762, { "distinct_on": [ - 3659, + 3776, "[player_steam_match_auth_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 3657, + 3774, "[player_steam_match_auth_order_by!]" ], "where": [ - 3649 + 3766 ] } ], "player_steam_match_auth_aggregate": [ - 3646, + 3763, { "distinct_on": [ - 3659, + 3776, "[player_steam_match_auth_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 3657, + 3774, "[player_steam_match_auth_order_by!]" ], "where": [ - 3649 + 3766 ] } ], "player_steam_match_auth_by_pk": [ - 3645, + 3762, { "steam_id": [ - 180, + 252, "bigint!" ] } ], "player_steam_match_auth_stream": [ - 3645, + 3762, { "batch_size": [ - 38, + 40, "Int!" ], "cursor": [ - 3664, + 3781, "[player_steam_match_auth_stream_cursor_input]!" ], "where": [ - 3649 + 3766 ] } ], "player_unused_utility": [ - 3672, + 3789, { "distinct_on": [ - 3693, + 3810, "[player_unused_utility_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 3691, + 3808, "[player_unused_utility_order_by!]" ], "where": [ - 3681 + 3798 ] } ], "player_unused_utility_aggregate": [ - 3673, + 3790, { "distinct_on": [ - 3693, + 3810, "[player_unused_utility_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 3691, + 3808, "[player_unused_utility_order_by!]" ], "where": [ - 3681 + 3798 ] } ], "player_unused_utility_by_pk": [ - 3672, + 3789, { "match_map_id": [ - 4921, + 4993, "uuid!" ], "player_steam_id": [ - 180, + 252, "bigint!" ] } ], "player_unused_utility_stream": [ - 3672, + 3789, { "batch_size": [ - 38, + 40, "Int!" ], "cursor": [ - 3701, + 3818, "[player_unused_utility_stream_cursor_input]!" ], "where": [ - 3681 + 3798 ] } ], "player_utility": [ - 3713, + 3830, { "distinct_on": [ - 3734, + 3851, "[player_utility_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 3732, + 3849, "[player_utility_order_by!]" ], "where": [ - 3722 + 3839 ] } ], "player_utility_aggregate": [ - 3714, + 3831, { "distinct_on": [ - 3734, + 3851, "[player_utility_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 3732, + 3849, "[player_utility_order_by!]" ], "where": [ - 3722 + 3839 ] } ], "player_utility_by_pk": [ - 3713, + 3830, { "attacker_steam_id": [ - 180, + 252, "bigint!" ], "match_map_id": [ - 4921, + 4993, "uuid!" ], "time": [ - 4376, + 4493, "timestamptz!" ] } ], "player_utility_stream": [ - 3713, + 3830, { "batch_size": [ - 38, + 40, "Int!" ], "cursor": [ - 3742, + 3859, "[player_utility_stream_cursor_input]!" ], "where": [ - 3722 + 3839 ] } ], "player_weapon_stats_v": [ - 3754, + 3871, { "distinct_on": [ - 3770, + 3887, "[player_weapon_stats_v_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 3769, + 3886, "[player_weapon_stats_v_order_by!]" ], "where": [ - 3763 + 3880 ] } ], "player_weapon_stats_v_aggregate": [ - 3755, + 3872, { "distinct_on": [ - 3770, + 3887, "[player_weapon_stats_v_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 3769, + 3886, "[player_weapon_stats_v_order_by!]" ], "where": [ - 3763 + 3880 ] } ], "player_weapon_stats_v_stream": [ - 3754, + 3871, { "batch_size": [ - 38, + 40, "Int!" ], "cursor": [ - 3777, + 3894, "[player_weapon_stats_v_stream_cursor_input]!" ], "where": [ - 3763 + 3880 ] } ], "players": [ - 3787, + 3904, { "distinct_on": [ - 3802, + 3919, "[players_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 3800, + 3917, "[players_order_by!]" ], "where": [ - 3791 + 3908 ] } ], "players_aggregate": [ - 3788, + 3905, { "distinct_on": [ - 3802, + 3919, "[players_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 3800, + 3917, "[players_order_by!]" ], "where": [ - 3791 + 3908 ] } ], "players_by_pk": [ - 3787, + 3904, { "steam_id": [ - 180, + 252, "bigint!" ] } ], "players_stream": [ - 3787, + 3904, { "batch_size": [ - 38, + 40, "Int!" ], "cursor": [ - 3807, + 3924, "[players_stream_cursor_input]!" ], "where": [ - 3791 + 3908 ] } ], "plugin_versions": [ - 3815, + 3932, { "distinct_on": [ - 3829, + 3946, "[plugin_versions_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 3827, + 3944, "[plugin_versions_order_by!]" ], "where": [ - 3819 + 3936 ] } ], "plugin_versions_aggregate": [ - 3816, + 3933, { "distinct_on": [ - 3829, + 3946, "[plugin_versions_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 3827, + 3944, "[plugin_versions_order_by!]" ], "where": [ - 3819 + 3936 ] } ], "plugin_versions_by_pk": [ - 3815, + 3932, { "runtime": [ - 968, + 1085, "e_plugin_runtimes_enum!" ], "version": [ - 78, + 80, "String!" ] } ], "plugin_versions_stream": [ - 3815, + 3932, { "batch_size": [ - 38, + 40, "Int!" ], "cursor": [ - 3834, + 3951, "[plugin_versions_stream_cursor_input]!" ], "where": [ - 3819 + 3936 ] } ], "seasons": [ - 3846, + 3963, { "distinct_on": [ - 3861, + 3978, "[seasons_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 3859, + 3976, "[seasons_order_by!]" ], "where": [ - 3850 + 3967 ] } ], "seasons_aggregate": [ - 3847, + 3964, { "distinct_on": [ - 3861, + 3978, "[seasons_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 3859, + 3976, "[seasons_order_by!]" ], "where": [ - 3850 + 3967 ] } ], "seasons_by_pk": [ - 3846, + 3963, { "id": [ - 4921, + 4993, "uuid!" ] } ], "seasons_stream": [ - 3846, + 3963, { "batch_size": [ - 38, + 40, "Int!" ], "cursor": [ - 3866, + 3983, "[seasons_stream_cursor_input]!" ], "where": [ - 3850 + 3967 ] } ], "server_regions": [ - 3874, + 3991, { "distinct_on": [ - 3888, + 4005, "[server_regions_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 3886, + 4003, "[server_regions_order_by!]" ], "where": [ - 3878 + 3995 ] } ], "server_regions_aggregate": [ - 3875, + 3992, { "distinct_on": [ - 3888, + 4005, "[server_regions_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 3886, + 4003, "[server_regions_order_by!]" ], "where": [ - 3878 + 3995 ] } ], "server_regions_by_pk": [ - 3874, + 3991, { "value": [ - 78, + 80, "String!" ] } ], "server_regions_stream": [ - 3874, + 3991, { "batch_size": [ - 38, + 40, "Int!" ], "cursor": [ - 3893, + 4010, "[server_regions_stream_cursor_input]!" ], "where": [ - 3878 + 3995 ] } ], "servers": [ - 3901, + 4018, { "distinct_on": [ - 3925, + 4042, "[servers_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 3923, + 4040, "[servers_order_by!]" ], "where": [ - 3912 + 4029 ] } ], "servers_aggregate": [ - 3902, + 4019, { "distinct_on": [ - 3925, + 4042, "[servers_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 3923, + 4040, "[servers_order_by!]" ], "where": [ - 3912 + 4029 ] } ], "servers_by_pk": [ - 3901, + 4018, { "id": [ - 4921, + 4993, "uuid!" ] } ], "servers_stream": [ - 3901, + 4018, { "batch_size": [ - 38, + 40, "Int!" ], "cursor": [ - 3935, + 4052, "[servers_stream_cursor_input]!" ], "where": [ - 3912 + 4029 ] } ], "settings": [ - 3947, + 4064, { "distinct_on": [ - 3959, + 4076, "[settings_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 3957, + 4074, "[settings_order_by!]" ], "where": [ - 3950 + 4067 ] } ], "settings_aggregate": [ - 3948, + 4065, { "distinct_on": [ - 3959, + 4076, "[settings_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 3957, + 4074, "[settings_order_by!]" ], "where": [ - 3950 + 4067 ] } ], "settings_by_pk": [ - 3947, + 4064, { "name": [ - 78, + 80, "String!" ] } ], "settings_stream": [ - 3947, + 4064, { "batch_size": [ - 38, + 40, "Int!" ], "cursor": [ - 3961, + 4078, "[settings_stream_cursor_input]!" ], "where": [ - 3950 + 4067 ] } ], "steam_account_claims": [ - 3967, + 4084, { "distinct_on": [ - 3985, + 4102, "[steam_account_claims_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 3983, + 4100, "[steam_account_claims_order_by!]" ], "where": [ - 3974 + 4091 ] } ], "steam_account_claims_aggregate": [ - 3968, + 4085, { "distinct_on": [ - 3985, + 4102, "[steam_account_claims_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 3983, + 4100, "[steam_account_claims_order_by!]" ], "where": [ - 3974 + 4091 ] } ], "steam_account_claims_by_pk": [ - 3967, + 4084, { "id": [ - 4921, + 4993, "uuid!" ] } ], "steam_account_claims_stream": [ - 3967, + 4084, { "batch_size": [ - 38, + 40, "Int!" ], "cursor": [ - 3987, + 4104, "[steam_account_claims_stream_cursor_input]!" ], "where": [ - 3974 + 4091 ] } ], "steam_accounts": [ - 3991, + 4108, { "distinct_on": [ - 4006, + 4123, "[steam_accounts_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 4004, + 4121, "[steam_accounts_order_by!]" ], "where": [ - 3995 + 4112 ] } ], "steam_accounts_aggregate": [ - 3992, + 4109, { "distinct_on": [ - 4006, + 4123, "[steam_accounts_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 4004, + 4121, "[steam_accounts_order_by!]" ], "where": [ - 3995 + 4112 ] } ], "steam_accounts_by_pk": [ - 3991, + 4108, { "id": [ - 4921, + 4993, "uuid!" ] } ], "steam_accounts_stream": [ - 3991, + 4108, { "batch_size": [ - 38, + 40, "Int!" ], "cursor": [ - 4011, + 4128, "[steam_accounts_stream_cursor_input]!" ], "where": [ - 3995 + 4112 ] } ], "system_alerts": [ - 4019, + 4136, { "distinct_on": [ - 4033, + 4150, "[system_alerts_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 4031, + 4148, "[system_alerts_order_by!]" ], "where": [ - 4023 + 4140 ] } ], "system_alerts_aggregate": [ - 4020, + 4137, { "distinct_on": [ - 4033, + 4150, "[system_alerts_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 4031, + 4148, "[system_alerts_order_by!]" ], "where": [ - 4023 + 4140 ] } ], "system_alerts_by_pk": [ - 4019, + 4136, { "id": [ - 4921, + 4993, "uuid!" ] } ], "system_alerts_stream": [ - 4019, + 4136, { "batch_size": [ - 38, + 40, "Int!" ], "cursor": [ - 4038, + 4155, "[system_alerts_stream_cursor_input]!" ], "where": [ - 4023 + 4140 ] } ], "team_invites": [ - 4046, + 4163, { "distinct_on": [ - 4067, + 4184, "[team_invites_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 4065, + 4182, "[team_invites_order_by!]" ], "where": [ - 4055 + 4172 ] } ], "team_invites_aggregate": [ - 4047, + 4164, { "distinct_on": [ - 4067, + 4184, "[team_invites_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 4065, + 4182, "[team_invites_order_by!]" ], "where": [ - 4055 + 4172 ] } ], "team_invites_by_pk": [ - 4046, + 4163, { "id": [ - 4921, + 4993, "uuid!" ] } ], "team_invites_stream": [ - 4046, + 4163, { "batch_size": [ - 38, + 40, "Int!" ], "cursor": [ - 4075, + 4192, "[team_invites_stream_cursor_input]!" ], "where": [ - 4055 + 4172 ] } ], "team_roster": [ - 4087, + 4204, { "distinct_on": [ - 4110, + 4227, "[team_roster_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 4108, + 4225, "[team_roster_order_by!]" ], "where": [ - 4098 + 4215 ] } ], "team_roster_aggregate": [ - 4088, + 4205, { "distinct_on": [ - 4110, + 4227, "[team_roster_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 4108, + 4225, "[team_roster_order_by!]" ], "where": [ - 4098 + 4215 ] } ], "team_roster_by_pk": [ - 4087, + 4204, { "player_steam_id": [ - 180, + 252, "bigint!" ], "team_id": [ - 4921, + 4993, "uuid!" ] } ], "team_roster_stream": [ - 4087, + 4204, { "batch_size": [ - 38, + 40, "Int!" ], "cursor": [ - 4120, + 4237, "[team_roster_stream_cursor_input]!" ], "where": [ - 4098 + 4215 ] } ], "team_scrim_alerts": [ - 4132, + 4249, { "distinct_on": [ - 4146, + 4263, "[team_scrim_alerts_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 4144, + 4261, "[team_scrim_alerts_order_by!]" ], "where": [ - 4136 + 4253 ] } ], "team_scrim_alerts_aggregate": [ - 4133, + 4250, { "distinct_on": [ - 4146, + 4263, "[team_scrim_alerts_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 4144, + 4261, "[team_scrim_alerts_order_by!]" ], "where": [ - 4136 + 4253 ] } ], "team_scrim_alerts_by_pk": [ - 4132, + 4249, { "id": [ - 4921, + 4993, "uuid!" ] } ], "team_scrim_alerts_stream": [ - 4132, + 4249, { "batch_size": [ - 38, + 40, "Int!" ], "cursor": [ - 4151, + 4268, "[team_scrim_alerts_stream_cursor_input]!" ], "where": [ - 4136 + 4253 ] } ], "team_scrim_availability": [ - 4159, + 4276, { "distinct_on": [ - 4179, + 4296, "[team_scrim_availability_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 4177, + 4294, "[team_scrim_availability_order_by!]" ], "where": [ - 4168 + 4285 ] } ], "team_scrim_availability_aggregate": [ - 4160, + 4277, { "distinct_on": [ - 4179, + 4296, "[team_scrim_availability_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 4177, + 4294, "[team_scrim_availability_order_by!]" ], "where": [ - 4168 + 4285 ] } ], "team_scrim_availability_by_pk": [ - 4159, + 4276, { "id": [ - 4921, + 4993, "uuid!" ] } ], "team_scrim_availability_stream": [ - 4159, + 4276, { "batch_size": [ - 38, + 40, "Int!" ], "cursor": [ - 4183, + 4300, "[team_scrim_availability_stream_cursor_input]!" ], "where": [ - 4168 + 4285 ] } ], "team_scrim_request_proposals": [ - 4187, + 4304, { "distinct_on": [ - 4208, + 4325, "[team_scrim_request_proposals_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 4206, + 4323, "[team_scrim_request_proposals_order_by!]" ], "where": [ - 4196 + 4313 ] } ], "team_scrim_request_proposals_aggregate": [ - 4188, + 4305, { "distinct_on": [ - 4208, + 4325, "[team_scrim_request_proposals_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 4206, + 4323, "[team_scrim_request_proposals_order_by!]" ], "where": [ - 4196 + 4313 ] } ], "team_scrim_request_proposals_by_pk": [ - 4187, + 4304, { "id": [ - 4921, + 4993, "uuid!" ] } ], "team_scrim_request_proposals_stream": [ - 4187, + 4304, { "batch_size": [ - 38, + 40, "Int!" ], "cursor": [ - 4216, + 4333, "[team_scrim_request_proposals_stream_cursor_input]!" ], "where": [ - 4196 + 4313 ] } ], "team_scrim_requests": [ - 4228, + 4345, { "distinct_on": [ - 4252, + 4369, "[team_scrim_requests_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 4250, + 4367, "[team_scrim_requests_order_by!]" ], "where": [ - 4239 + 4356 ] } ], "team_scrim_requests_aggregate": [ - 4229, + 4346, { "distinct_on": [ - 4252, + 4369, "[team_scrim_requests_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 4250, + 4367, "[team_scrim_requests_order_by!]" ], "where": [ - 4239 + 4356 ] } ], "team_scrim_requests_by_pk": [ - 4228, + 4345, { "id": [ - 4921, + 4993, "uuid!" ] } ], "team_scrim_requests_stream": [ - 4228, + 4345, { "batch_size": [ - 38, + 40, "Int!" ], "cursor": [ - 4262, + 4379, "[team_scrim_requests_stream_cursor_input]!" ], "where": [ - 4239 + 4356 ] } ], "team_scrim_settings": [ - 4274, + 4391, { "distinct_on": [ - 4289, + 4406, "[team_scrim_settings_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 4287, + 4404, "[team_scrim_settings_order_by!]" ], "where": [ - 4278 + 4395 ] } ], "team_scrim_settings_aggregate": [ - 4275, + 4392, { "distinct_on": [ - 4289, + 4406, "[team_scrim_settings_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 4287, + 4404, "[team_scrim_settings_order_by!]" ], "where": [ - 4278 + 4395 ] } ], "team_scrim_settings_by_pk": [ - 4274, + 4391, { "id": [ - 4921, + 4993, "uuid!" ] } ], "team_scrim_settings_stream": [ - 4274, + 4391, { "batch_size": [ - 38, + 40, "Int!" ], "cursor": [ - 4294, + 4411, "[team_scrim_settings_stream_cursor_input]!" ], "where": [ - 4278 + 4395 ] } ], "team_suggestions": [ - 4302, + 4419, { "distinct_on": [ - 4316, + 4433, "[team_suggestions_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 4314, + 4431, "[team_suggestions_order_by!]" ], "where": [ - 4306 + 4423 ] } ], "team_suggestions_aggregate": [ - 4303, + 4420, { "distinct_on": [ - 4316, + 4433, "[team_suggestions_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 4314, + 4431, "[team_suggestions_order_by!]" ], "where": [ - 4306 + 4423 ] } ], "team_suggestions_by_pk": [ - 4302, + 4419, { "id": [ - 4921, + 4993, "uuid!" ] } ], "team_suggestions_stream": [ - 4302, + 4419, { "batch_size": [ - 38, + 40, "Int!" ], "cursor": [ - 4321, + 4438, "[team_suggestions_stream_cursor_input]!" ], "where": [ - 4306 + 4423 ] } ], "teams": [ - 4329, + 4446, { "distinct_on": [ - 4353, + 4470, "[teams_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 4351, + 4468, "[teams_order_by!]" ], "where": [ - 4340 + 4457 ] } ], "teams_aggregate": [ - 4330, + 4447, { "distinct_on": [ - 4353, + 4470, "[teams_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 4351, + 4468, "[teams_order_by!]" ], "where": [ - 4340 + 4457 ] } ], "teams_by_pk": [ - 4329, + 4446, { "id": [ - 4921, + 4993, "uuid!" ] } ], "teams_stream": [ - 4329, + 4446, { "batch_size": [ - 38, + 40, "Int!" ], "cursor": [ - 4363, + 4480, "[teams_stream_cursor_input]!" ], "where": [ - 4340 + 4457 + ] + } + ], + "tournament_awards": [ + 4495, + { + "distinct_on": [ + 4517, + "[tournament_awards_select_column!]" + ], + "limit": [ + 40 + ], + "offset": [ + 40 + ], + "order_by": [ + 4515, + "[tournament_awards_order_by!]" + ], + "where": [ + 4504 + ] + } + ], + "tournament_awards_aggregate": [ + 4496, + { + "distinct_on": [ + 4517, + "[tournament_awards_select_column!]" + ], + "limit": [ + 40 + ], + "offset": [ + 40 + ], + "order_by": [ + 4515, + "[tournament_awards_order_by!]" + ], + "where": [ + 4504 + ] + } + ], + "tournament_awards_by_pk": [ + 4495, + { + "id": [ + 4993, + "uuid!" + ] + } + ], + "tournament_awards_stream": [ + 4495, + { + "batch_size": [ + 40, + "Int!" + ], + "cursor": [ + 4525, + "[tournament_awards_stream_cursor_input]!" + ], + "where": [ + 4504 ] } ], "tournament_brackets": [ - 4378, + 4537, { "distinct_on": [ - 4402, + 4561, "[tournament_brackets_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 4400, + 4559, "[tournament_brackets_order_by!]" ], "where": [ - 4389 + 4548 ] } ], "tournament_brackets_aggregate": [ - 4379, + 4538, { "distinct_on": [ - 4402, + 4561, "[tournament_brackets_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 4400, + 4559, "[tournament_brackets_order_by!]" ], "where": [ - 4389 + 4548 ] } ], "tournament_brackets_by_pk": [ - 4378, + 4537, { "id": [ - 4921, + 4993, "uuid!" ] } ], "tournament_brackets_stream": [ - 4378, + 4537, { "batch_size": [ - 38, + 40, "Int!" ], "cursor": [ - 4412, + 4571, "[tournament_brackets_stream_cursor_input]!" ], "where": [ - 4389 + 4548 ] } ], "tournament_categories": [ - 4424, + 4583, { "distinct_on": [ - 4442, + 4601, "[tournament_categories_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 4440, + 4599, "[tournament_categories_order_by!]" ], "where": [ - 4431 + 4590 ] } ], "tournament_categories_aggregate": [ - 4425, + 4584, { "distinct_on": [ - 4442, + 4601, "[tournament_categories_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 4440, + 4599, "[tournament_categories_order_by!]" ], "where": [ - 4431 + 4590 ] } ], "tournament_categories_by_pk": [ - 4424, + 4583, { "category": [ - 1170, + 1287, "e_tournament_categories_enum!" ], "tournament_id": [ - 4921, + 4993, "uuid!" ] } ], "tournament_categories_stream": [ - 4424, + 4583, { "batch_size": [ - 38, + 40, "Int!" ], "cursor": [ - 4444, + 4603, "[tournament_categories_stream_cursor_input]!" ], "where": [ - 4431 + 4590 ] } ], "tournament_organizer_teams": [ - 4448, + 4607, { "distinct_on": [ - 4466, + 4625, "[tournament_organizer_teams_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 4464, + 4623, "[tournament_organizer_teams_order_by!]" ], "where": [ - 4455 + 4614 ] } ], "tournament_organizer_teams_aggregate": [ - 4449, + 4608, { "distinct_on": [ - 4466, + 4625, "[tournament_organizer_teams_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 4464, + 4623, "[tournament_organizer_teams_order_by!]" ], "where": [ - 4455 + 4614 ] } ], "tournament_organizer_teams_by_pk": [ - 4448, + 4607, { "team_id": [ - 4921, + 4993, "uuid!" ], "tournament_id": [ - 4921, + 4993, "uuid!" ] } ], "tournament_organizer_teams_stream": [ - 4448, + 4607, { "batch_size": [ - 38, + 40, "Int!" ], "cursor": [ - 4468, + 4627, "[tournament_organizer_teams_stream_cursor_input]!" ], "where": [ - 4455 + 4614 ] } ], "tournament_organizers": [ - 4472, + 4631, { "distinct_on": [ - 4493, + 4652, "[tournament_organizers_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 4491, + 4650, "[tournament_organizers_order_by!]" ], "where": [ - 4481 + 4640 ] } ], "tournament_organizers_aggregate": [ - 4473, + 4632, { "distinct_on": [ - 4493, + 4652, "[tournament_organizers_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 4491, + 4650, "[tournament_organizers_order_by!]" ], "where": [ - 4481 + 4640 ] } ], "tournament_organizers_by_pk": [ - 4472, + 4631, { "steam_id": [ - 180, + 252, "bigint!" ], "tournament_id": [ - 4921, + 4993, "uuid!" ] } ], "tournament_organizers_stream": [ - 4472, + 4631, { "batch_size": [ - 38, + 40, "Int!" ], "cursor": [ - 4501, + 4660, "[tournament_organizers_stream_cursor_input]!" ], "where": [ - 4481 + 4640 ] } ], "tournament_prizes": [ - 4513, + 4672, { "distinct_on": [ - 4534, + 4693, "[tournament_prizes_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 4532, + 4691, "[tournament_prizes_order_by!]" ], "where": [ - 4522 + 4681 ] } ], "tournament_prizes_aggregate": [ - 4514, + 4673, { "distinct_on": [ - 4534, + 4693, "[tournament_prizes_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 4532, + 4691, "[tournament_prizes_order_by!]" ], "where": [ - 4522 + 4681 ] } ], "tournament_prizes_by_pk": [ - 4513, + 4672, { "id": [ - 4921, + 4993, "uuid!" ] } ], "tournament_prizes_stream": [ - 4513, + 4672, { "batch_size": [ - 38, + 40, "Int!" ], "cursor": [ - 4542, + 4701, "[tournament_prizes_stream_cursor_input]!" ], "where": [ - 4522 + 4681 ] } ], "tournament_stage_windows": [ - 4554, + 4713, { "distinct_on": [ - 4575, + 4734, "[tournament_stage_windows_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 4573, + 4732, "[tournament_stage_windows_order_by!]" ], "where": [ - 4563 + 4722 ] } ], "tournament_stage_windows_aggregate": [ - 4555, + 4714, { "distinct_on": [ - 4575, + 4734, "[tournament_stage_windows_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 4573, + 4732, "[tournament_stage_windows_order_by!]" ], "where": [ - 4563 + 4722 ] } ], "tournament_stage_windows_by_pk": [ - 4554, + 4713, { "id": [ - 4921, + 4993, "uuid!" ] } ], "tournament_stage_windows_stream": [ - 4554, + 4713, { "batch_size": [ - 38, + 40, "Int!" ], "cursor": [ - 4583, + 4742, "[tournament_stage_windows_stream_cursor_input]!" ], "where": [ - 4563 + 4722 ] } ], "tournament_stages": [ - 4595, + 4754, { "distinct_on": [ - 4624, + 4783, "[tournament_stages_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 4621, + 4780, "[tournament_stages_order_by!]" ], "where": [ - 4607 + 4766 ] } ], "tournament_stages_aggregate": [ - 4596, + 4755, { "distinct_on": [ - 4624, + 4783, "[tournament_stages_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 4621, + 4780, "[tournament_stages_order_by!]" ], "where": [ - 4607 + 4766 ] } ], "tournament_stages_by_pk": [ - 4595, + 4754, { "id": [ - 4921, + 4993, "uuid!" ] } ], "tournament_stages_stream": [ - 4595, + 4754, { "batch_size": [ - 38, + 40, "Int!" ], "cursor": [ - 4634, + 4793, "[tournament_stages_stream_cursor_input]!" ], "where": [ - 4607 + 4766 ] } ], "tournament_team_invites": [ - 4646, + 4805, { "distinct_on": [ - 4667, + 4826, "[tournament_team_invites_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 4665, + 4824, "[tournament_team_invites_order_by!]" ], "where": [ - 4655 + 4814 ] } ], "tournament_team_invites_aggregate": [ - 4647, + 4806, { "distinct_on": [ - 4667, + 4826, "[tournament_team_invites_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 4665, + 4824, "[tournament_team_invites_order_by!]" ], "where": [ - 4655 + 4814 ] } ], "tournament_team_invites_by_pk": [ - 4646, + 4805, { "id": [ - 4921, + 4993, "uuid!" ] } ], "tournament_team_invites_stream": [ - 4646, + 4805, { "batch_size": [ - 38, + 40, "Int!" ], "cursor": [ - 4675, + 4834, "[tournament_team_invites_stream_cursor_input]!" ], "where": [ - 4655 + 4814 ] } ], "tournament_team_roster": [ - 4687, + 4846, { "distinct_on": [ - 4708, + 4867, "[tournament_team_roster_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 4706, + 4865, "[tournament_team_roster_order_by!]" ], "where": [ - 4696 + 4855 ] } ], "tournament_team_roster_aggregate": [ - 4688, + 4847, { "distinct_on": [ - 4708, + 4867, "[tournament_team_roster_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 4706, + 4865, "[tournament_team_roster_order_by!]" ], "where": [ - 4696 + 4855 ] } ], "tournament_team_roster_by_pk": [ - 4687, + 4846, { "player_steam_id": [ - 180, + 252, "bigint!" ], "tournament_id": [ - 4921, + 4993, "uuid!" ] } ], "tournament_team_roster_stream": [ - 4687, + 4846, { "batch_size": [ - 38, + 40, "Int!" ], "cursor": [ - 4716, + 4875, "[tournament_team_roster_stream_cursor_input]!" ], "where": [ - 4696 + 4855 ] } ], "tournament_teams": [ - 4728, + 4887, { "distinct_on": [ - 4750, + 4909, "[tournament_teams_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 4748, + 4907, "[tournament_teams_order_by!]" ], "where": [ - 4737 + 4896 ] } ], "tournament_teams_aggregate": [ - 4729, + 4888, { "distinct_on": [ - 4750, + 4909, "[tournament_teams_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 4748, + 4907, "[tournament_teams_order_by!]" ], "where": [ - 4737 + 4896 ] } ], "tournament_teams_by_pk": [ - 4728, + 4887, { "id": [ - 4921, + 4993, "uuid!" ] } ], "tournament_teams_stream": [ - 4728, + 4887, { "batch_size": [ - 38, + 40, "Int!" ], "cursor": [ - 4758, + 4917, "[tournament_teams_stream_cursor_input]!" ], "where": [ - 4737 - ] - } - ], - "tournament_trophies": [ - 4770, - { - "distinct_on": [ - 4793, - "[tournament_trophies_select_column!]" - ], - "limit": [ - 38 - ], - "offset": [ - 38 - ], - "order_by": [ - 4791, - "[tournament_trophies_order_by!]" - ], - "where": [ - 4781 - ] - } - ], - "tournament_trophies_aggregate": [ - 4771, - { - "distinct_on": [ - 4793, - "[tournament_trophies_select_column!]" - ], - "limit": [ - 38 - ], - "offset": [ - 38 - ], - "order_by": [ - 4791, - "[tournament_trophies_order_by!]" - ], - "where": [ - 4781 - ] - } - ], - "tournament_trophies_by_pk": [ - 4770, - { - "id": [ - 4921, - "uuid!" - ] - } - ], - "tournament_trophies_stream": [ - 4770, - { - "batch_size": [ - 38, - "Int!" - ], - "cursor": [ - 4803, - "[tournament_trophies_stream_cursor_input]!" - ], - "where": [ - 4781 - ] - } - ], - "tournament_trophy_configs": [ - 4815, - { - "distinct_on": [ - 4837, - "[tournament_trophy_configs_select_column!]" - ], - "limit": [ - 38 - ], - "offset": [ - 38 - ], - "order_by": [ - 4835, - "[tournament_trophy_configs_order_by!]" - ], - "where": [ - 4824 - ] - } - ], - "tournament_trophy_configs_aggregate": [ - 4816, - { - "distinct_on": [ - 4837, - "[tournament_trophy_configs_select_column!]" - ], - "limit": [ - 38 - ], - "offset": [ - 38 - ], - "order_by": [ - 4835, - "[tournament_trophy_configs_order_by!]" - ], - "where": [ - 4824 - ] - } - ], - "tournament_trophy_configs_by_pk": [ - 4815, - { - "id": [ - 4921, - "uuid!" - ] - } - ], - "tournament_trophy_configs_stream": [ - 4815, - { - "batch_size": [ - 38, - "Int!" - ], - "cursor": [ - 4845, - "[tournament_trophy_configs_stream_cursor_input]!" - ], - "where": [ - 4824 + 4896 ] } ], "tournaments": [ - 4857, + 4929, { "distinct_on": [ - 4891, + 4963, "[tournaments_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 4889, + 4961, "[tournaments_order_by!]" ], "where": [ - 4878 + 4950 ] } ], "tournaments_aggregate": [ - 4858, + 4930, { "distinct_on": [ - 4891, + 4963, "[tournaments_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 4889, + 4961, "[tournaments_order_by!]" ], "where": [ - 4878 + 4950 ] } ], "tournaments_by_pk": [ - 4857, + 4929, { "id": [ - 4921, + 4993, "uuid!" ] } ], "tournaments_stream": [ - 4857, + 4929, { "batch_size": [ - 38, + 40, "Int!" ], "cursor": [ - 4909, + 4981, "[tournaments_stream_cursor_input]!" ], "where": [ - 4878 + 4950 ] } ], "v_event_player_stats": [ - 4924, + 4996, { "distinct_on": [ - 4950, + 5022, "[v_event_player_stats_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 4949, + 5021, "[v_event_player_stats_order_by!]" ], "where": [ - 4943 + 5015 ] } ], "v_event_player_stats_aggregate": [ - 4925, + 4997, { "distinct_on": [ - 4950, + 5022, "[v_event_player_stats_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 4949, + 5021, "[v_event_player_stats_order_by!]" ], "where": [ - 4943 + 5015 ] } ], "v_event_player_stats_stream": [ - 4924, + 4996, { "batch_size": [ - 38, + 40, "Int!" ], "cursor": [ - 4965, + 5037, "[v_event_player_stats_stream_cursor_input]!" ], "where": [ - 4943 + 5015 ] } ], "v_gpu_pool_status": [ - 4975, + 5047, { "distinct_on": [ - 4983, + 5055, "[v_gpu_pool_status_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 4982, + 5054, "[v_gpu_pool_status_order_by!]" ], "where": [ - 4979 + 5051 ] } ], "v_gpu_pool_status_aggregate": [ - 4976, + 5048, { "distinct_on": [ - 4983, + 5055, "[v_gpu_pool_status_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 4982, + 5054, "[v_gpu_pool_status_order_by!]" ], "where": [ - 4979 + 5051 ] } ], "v_gpu_pool_status_stream": [ - 4975, + 5047, { "batch_size": [ - 38, + 40, "Int!" ], "cursor": [ - 4987, + 5059, "[v_gpu_pool_status_stream_cursor_input]!" ], "where": [ - 4979 + 5051 ] } ], "v_league_division_standings": [ - 4993, + 5065, { "distinct_on": [ - 5009, + 5081, "[v_league_division_standings_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 5008, + 5080, "[v_league_division_standings_order_by!]" ], "where": [ - 5002 + 5074 ] } ], "v_league_division_standings_aggregate": [ - 4994, + 5066, { "distinct_on": [ - 5009, + 5081, "[v_league_division_standings_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 5008, + 5080, "[v_league_division_standings_order_by!]" ], "where": [ - 5002 + 5074 ] } ], "v_league_division_standings_stream": [ - 4993, + 5065, { "batch_size": [ - 38, + 40, "Int!" ], "cursor": [ - 5016, + 5088, "[v_league_division_standings_stream_cursor_input]!" ], "where": [ - 5002 + 5074 ] } ], "v_league_season_player_stats": [ - 5026, + 5098, { "distinct_on": [ - 5052, + 5124, "[v_league_season_player_stats_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 5051, + 5123, "[v_league_season_player_stats_order_by!]" ], "where": [ - 5045 + 5117 ] } ], "v_league_season_player_stats_aggregate": [ - 5027, + 5099, { "distinct_on": [ - 5052, + 5124, "[v_league_season_player_stats_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 5051, + 5123, "[v_league_season_player_stats_order_by!]" ], "where": [ - 5045 + 5117 ] } ], "v_league_season_player_stats_stream": [ - 5026, + 5098, { "batch_size": [ - 38, + 40, "Int!" ], "cursor": [ - 5067, + 5139, "[v_league_season_player_stats_stream_cursor_input]!" ], "where": [ - 5045 + 5117 ] } ], "v_match_captains": [ - 5077, + 5149, { "distinct_on": [ - 5089, + 5161, "[v_match_captains_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 5088, + 5160, "[v_match_captains_order_by!]" ], "where": [ - 5081 + 5153 ] } ], "v_match_captains_aggregate": [ - 5078, + 5150, { "distinct_on": [ - 5089, + 5161, "[v_match_captains_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 5088, + 5160, "[v_match_captains_order_by!]" ], "where": [ - 5081 + 5153 ] } ], "v_match_captains_stream": [ - 5077, + 5149, { "batch_size": [ - 38, + 40, "Int!" ], "cursor": [ - 5094, + 5166, "[v_match_captains_stream_cursor_input]!" ], "where": [ - 5081 + 5153 ] } ], "v_match_clutches": [ - 5101, + 5173, { "distinct_on": [ - 5117, + 5189, "[v_match_clutches_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 5116, + 5188, "[v_match_clutches_order_by!]" ], "where": [ - 5110 + 5182 ] } ], "v_match_clutches_aggregate": [ - 5102, + 5174, { "distinct_on": [ - 5117, + 5189, "[v_match_clutches_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 5116, + 5188, "[v_match_clutches_order_by!]" ], "where": [ - 5110 + 5182 ] } ], "v_match_clutches_stream": [ - 5101, + 5173, { "batch_size": [ - 38, + 40, "Int!" ], "cursor": [ - 5124, + 5196, "[v_match_clutches_stream_cursor_input]!" ], "where": [ - 5110 + 5182 ] } ], "v_match_kill_pairs": [ - 5134, + 5206, { "distinct_on": [ - 5142, + 5214, "[v_match_kill_pairs_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 5141, + 5213, "[v_match_kill_pairs_order_by!]" ], "where": [ - 5138 + 5210 ] } ], "v_match_kill_pairs_aggregate": [ - 5135, + 5207, { "distinct_on": [ - 5142, + 5214, "[v_match_kill_pairs_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 5141, + 5213, "[v_match_kill_pairs_order_by!]" ], "where": [ - 5138 + 5210 ] } ], "v_match_kill_pairs_stream": [ - 5134, + 5206, { "batch_size": [ - 38, + 40, "Int!" ], "cursor": [ - 5146, + 5218, "[v_match_kill_pairs_stream_cursor_input]!" ], "where": [ - 5138 + 5210 ] } ], "v_match_lineup_buy_types": [ - 5152, + 5224, { "distinct_on": [ - 5160, + 5232, "[v_match_lineup_buy_types_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 5159, + 5231, "[v_match_lineup_buy_types_order_by!]" ], "where": [ - 5156 + 5228 ] } ], "v_match_lineup_buy_types_aggregate": [ - 5153, + 5225, { "distinct_on": [ - 5160, + 5232, "[v_match_lineup_buy_types_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 5159, + 5231, "[v_match_lineup_buy_types_order_by!]" ], "where": [ - 5156 + 5228 ] } ], "v_match_lineup_buy_types_stream": [ - 5152, + 5224, { "batch_size": [ - 38, + 40, "Int!" ], "cursor": [ - 5164, + 5236, "[v_match_lineup_buy_types_stream_cursor_input]!" ], "where": [ - 5156 + 5228 ] } ], "v_match_lineup_map_stats": [ - 5170, + 5242, { "distinct_on": [ - 5178, + 5250, "[v_match_lineup_map_stats_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 5177, + 5249, "[v_match_lineup_map_stats_order_by!]" ], "where": [ - 5174 + 5246 ] } ], "v_match_lineup_map_stats_aggregate": [ - 5171, + 5243, { "distinct_on": [ - 5178, + 5250, "[v_match_lineup_map_stats_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 5177, + 5249, "[v_match_lineup_map_stats_order_by!]" ], "where": [ - 5174 + 5246 ] } ], "v_match_lineup_map_stats_stream": [ - 5170, + 5242, { "batch_size": [ - 38, + 40, "Int!" ], "cursor": [ - 5182, + 5254, "[v_match_lineup_map_stats_stream_cursor_input]!" ], "where": [ - 5174 + 5246 ] } ], "v_match_map_backup_rounds": [ - 5188, + 5260, { "distinct_on": [ - 5199, + 5271, "[v_match_map_backup_rounds_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 5198, + 5270, "[v_match_map_backup_rounds_order_by!]" ], "where": [ - 5192 + 5264 ] } ], "v_match_map_backup_rounds_aggregate": [ - 5189, + 5261, { "distinct_on": [ - 5199, + 5271, "[v_match_map_backup_rounds_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 5198, + 5270, "[v_match_map_backup_rounds_order_by!]" ], "where": [ - 5192 + 5264 ] } ], "v_match_map_backup_rounds_stream": [ - 5188, + 5260, { "batch_size": [ - 38, + 40, "Int!" ], "cursor": [ - 5204, + 5276, "[v_match_map_backup_rounds_stream_cursor_input]!" ], "where": [ - 5192 + 5264 ] } ], "v_match_player_buy_types": [ - 5211, + 5283, { "distinct_on": [ - 5219, + 5291, "[v_match_player_buy_types_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 5218, + 5290, "[v_match_player_buy_types_order_by!]" ], "where": [ - 5215 + 5287 ] } ], "v_match_player_buy_types_aggregate": [ - 5212, + 5284, { "distinct_on": [ - 5219, + 5291, "[v_match_player_buy_types_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 5218, + 5290, "[v_match_player_buy_types_order_by!]" ], "where": [ - 5215 + 5287 ] } ], "v_match_player_buy_types_stream": [ - 5211, + 5283, { "batch_size": [ - 38, + 40, "Int!" ], "cursor": [ - 5223, + 5295, "[v_match_player_buy_types_stream_cursor_input]!" ], "where": [ - 5215 + 5287 ] } ], "v_match_player_opening_duels": [ - 5229, + 5301, { "distinct_on": [ - 5245, + 5317, "[v_match_player_opening_duels_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 5244, + 5316, "[v_match_player_opening_duels_order_by!]" ], "where": [ - 5238 + 5310 ] } ], "v_match_player_opening_duels_aggregate": [ - 5230, + 5302, { "distinct_on": [ - 5245, + 5317, "[v_match_player_opening_duels_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 5244, + 5316, "[v_match_player_opening_duels_order_by!]" ], "where": [ - 5238 + 5310 ] } ], "v_match_player_opening_duels_stream": [ - 5229, + 5301, { "batch_size": [ - 38, + 40, "Int!" ], "cursor": [ - 5252, + 5324, "[v_match_player_opening_duels_stream_cursor_input]!" ], "where": [ - 5238 + 5310 ] } ], "v_player_arch_nemesis": [ - 5262, + 5334, { "distinct_on": [ - 5270, + 5342, "[v_player_arch_nemesis_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 5269, + 5341, "[v_player_arch_nemesis_order_by!]" ], "where": [ - 5266 + 5338 ] } ], "v_player_arch_nemesis_aggregate": [ - 5263, + 5335, { "distinct_on": [ - 5270, + 5342, "[v_player_arch_nemesis_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 5269, + 5341, "[v_player_arch_nemesis_order_by!]" ], "where": [ - 5266 + 5338 ] } ], "v_player_arch_nemesis_stream": [ - 5262, + 5334, { "batch_size": [ - 38, + 40, "Int!" ], "cursor": [ - 5274, + 5346, "[v_player_arch_nemesis_stream_cursor_input]!" ], "where": [ - 5266 + 5338 ] } ], "v_player_damage": [ - 5280, + 5352, { "distinct_on": [ - 5288, + 5360, "[v_player_damage_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 5287, + 5359, "[v_player_damage_order_by!]" ], "where": [ - 5284 + 5356 ] } ], "v_player_damage_aggregate": [ - 5281, + 5353, { "distinct_on": [ - 5288, + 5360, "[v_player_damage_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 5287, + 5359, "[v_player_damage_order_by!]" ], "where": [ - 5284 + 5356 ] } ], "v_player_damage_stream": [ - 5280, + 5352, { "batch_size": [ - 38, + 40, "Int!" ], "cursor": [ - 5292, + 5364, "[v_player_damage_stream_cursor_input]!" ], "where": [ - 5284 + 5356 ] } ], "v_player_elo": [ - 5298, + 5370, { "distinct_on": [ - 5324, + 5396, "[v_player_elo_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 5323, + 5395, "[v_player_elo_order_by!]" ], "where": [ - 5317 + 5389 ] } ], "v_player_elo_aggregate": [ - 5299, + 5371, { "distinct_on": [ - 5324, + 5396, "[v_player_elo_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 5323, + 5395, "[v_player_elo_order_by!]" ], "where": [ - 5317 + 5389 ] } ], "v_player_elo_stream": [ - 5298, + 5370, { "batch_size": [ - 38, + 40, "Int!" ], "cursor": [ - 5339, + 5411, "[v_player_elo_stream_cursor_input]!" ], "where": [ - 5317 + 5389 ] } ], "v_player_map_losses": [ - 5349, + 5421, { "distinct_on": [ - 5357, + 5429, "[v_player_map_losses_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 5356, + 5428, "[v_player_map_losses_order_by!]" ], "where": [ - 5353 + 5425 ] } ], "v_player_map_losses_aggregate": [ - 5350, + 5422, { "distinct_on": [ - 5357, + 5429, "[v_player_map_losses_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 5356, + 5428, "[v_player_map_losses_order_by!]" ], "where": [ - 5353 + 5425 ] } ], "v_player_map_losses_stream": [ - 5349, + 5421, { "batch_size": [ - 38, + 40, "Int!" ], "cursor": [ - 5361, + 5433, "[v_player_map_losses_stream_cursor_input]!" ], "where": [ - 5353 + 5425 ] } ], "v_player_map_wins": [ - 5367, + 5439, { "distinct_on": [ - 5375, + 5447, "[v_player_map_wins_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 5374, + 5446, "[v_player_map_wins_order_by!]" ], "where": [ - 5371 + 5443 ] } ], "v_player_map_wins_aggregate": [ - 5368, + 5440, { "distinct_on": [ - 5375, + 5447, "[v_player_map_wins_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 5374, + 5446, "[v_player_map_wins_order_by!]" ], "where": [ - 5371 + 5443 ] } ], "v_player_map_wins_stream": [ - 5367, + 5439, { "batch_size": [ - 38, + 40, "Int!" ], "cursor": [ - 5379, + 5451, "[v_player_map_wins_stream_cursor_input]!" ], "where": [ - 5371 + 5443 ] } ], "v_player_match_head_to_head": [ - 5385, + 5457, { "distinct_on": [ - 5393, + 5465, "[v_player_match_head_to_head_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 5392, + 5464, "[v_player_match_head_to_head_order_by!]" ], "where": [ - 5389 + 5461 ] } ], "v_player_match_head_to_head_aggregate": [ - 5386, + 5458, { "distinct_on": [ - 5393, + 5465, "[v_player_match_head_to_head_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 5392, + 5464, "[v_player_match_head_to_head_order_by!]" ], "where": [ - 5389 + 5461 ] } ], "v_player_match_head_to_head_stream": [ - 5385, + 5457, { "batch_size": [ - 38, + 40, "Int!" ], "cursor": [ - 5397, + 5469, "[v_player_match_head_to_head_stream_cursor_input]!" ], "where": [ - 5389 + 5461 ] } ], "v_player_match_map_hltv": [ - 5403, + 5475, { "distinct_on": [ - 5421, + 5493, "[v_player_match_map_hltv_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 5420, + 5492, "[v_player_match_map_hltv_order_by!]" ], "where": [ - 5412 + 5484 ] } ], "v_player_match_map_hltv_aggregate": [ - 5404, + 5476, { "distinct_on": [ - 5421, + 5493, "[v_player_match_map_hltv_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 5420, + 5492, "[v_player_match_map_hltv_order_by!]" ], "where": [ - 5412 + 5484 ] } ], "v_player_match_map_hltv_stream": [ - 5403, + 5475, { "batch_size": [ - 38, + 40, "Int!" ], "cursor": [ - 5429, + 5501, "[v_player_match_map_hltv_stream_cursor_input]!" ], "where": [ - 5412 + 5484 ] } ], "v_player_match_map_roles": [ - 5440, + 5512, { "distinct_on": [ - 5448, + 5520, "[v_player_match_map_roles_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 5447, + 5519, "[v_player_match_map_roles_order_by!]" ], "where": [ - 5444 + 5516 ] } ], "v_player_match_map_roles_aggregate": [ - 5441, + 5513, { "distinct_on": [ - 5448, + 5520, "[v_player_match_map_roles_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 5447, + 5519, "[v_player_match_map_roles_order_by!]" ], "where": [ - 5444 + 5516 ] } ], "v_player_match_map_roles_stream": [ - 5440, + 5512, { "batch_size": [ - 38, + 40, "Int!" ], "cursor": [ - 5452, + 5524, "[v_player_match_map_roles_stream_cursor_input]!" ], "where": [ - 5444 + 5516 ] } ], "v_player_match_performance": [ - 5458, + 5530, { "distinct_on": [ - 5466, + 5538, "[v_player_match_performance_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 5465, + 5537, "[v_player_match_performance_order_by!]" ], "where": [ - 5462 + 5534 ] } ], "v_player_match_performance_aggregate": [ - 5459, + 5531, { "distinct_on": [ - 5466, + 5538, "[v_player_match_performance_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 5465, + 5537, "[v_player_match_performance_order_by!]" ], "where": [ - 5462 + 5534 ] } ], "v_player_match_performance_stream": [ - 5458, + 5530, { "batch_size": [ - 38, + 40, "Int!" ], "cursor": [ - 5470, + 5542, "[v_player_match_performance_stream_cursor_input]!" ], "where": [ - 5462 + 5534 ] } ], "v_player_match_rating": [ - 5476, + 5548, { "distinct_on": [ - 5484, + 5556, "[v_player_match_rating_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 5483, + 5555, "[v_player_match_rating_order_by!]" ], "where": [ - 5480 + 5552 ] } ], "v_player_match_rating_aggregate": [ - 5477, + 5549, { "distinct_on": [ - 5484, + 5556, "[v_player_match_rating_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 5483, + 5555, "[v_player_match_rating_order_by!]" ], "where": [ - 5480 + 5552 ] } ], "v_player_match_rating_stream": [ - 5476, + 5548, { "batch_size": [ - 38, + 40, "Int!" ], "cursor": [ - 5488, + 5560, "[v_player_match_rating_stream_cursor_input]!" ], "where": [ - 5480 + 5552 ] } ], "v_player_multi_kills": [ - 5494, + 5566, { "distinct_on": [ - 5510, + 5582, "[v_player_multi_kills_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 5509, + 5581, "[v_player_multi_kills_order_by!]" ], "where": [ - 5503 + 5575 ] } ], "v_player_multi_kills_aggregate": [ - 5495, + 5567, { "distinct_on": [ - 5510, + 5582, "[v_player_multi_kills_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 5509, + 5581, "[v_player_multi_kills_order_by!]" ], "where": [ - 5503 + 5575 ] } ], "v_player_multi_kills_stream": [ - 5494, + 5566, { "batch_size": [ - 38, + 40, "Int!" ], "cursor": [ - 5517, + 5589, "[v_player_multi_kills_stream_cursor_input]!" ], "where": [ - 5503 + 5575 ] } ], "v_player_weapon_damage": [ - 5527, + 5599, { "distinct_on": [ - 5535, + 5607, "[v_player_weapon_damage_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 5534, + 5606, "[v_player_weapon_damage_order_by!]" ], "where": [ - 5531 + 5603 ] } ], "v_player_weapon_damage_aggregate": [ - 5528, + 5600, { "distinct_on": [ - 5535, + 5607, "[v_player_weapon_damage_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 5534, + 5606, "[v_player_weapon_damage_order_by!]" ], "where": [ - 5531 + 5603 ] } ], "v_player_weapon_damage_stream": [ - 5527, + 5599, { "batch_size": [ - 38, + 40, "Int!" ], "cursor": [ - 5539, + 5611, "[v_player_weapon_damage_stream_cursor_input]!" ], "where": [ - 5531 + 5603 ] } ], "v_player_weapon_kills": [ - 5545, + 5617, { "distinct_on": [ - 5553, + 5625, "[v_player_weapon_kills_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 5552, + 5624, "[v_player_weapon_kills_order_by!]" ], "where": [ - 5549 + 5621 ] } ], "v_player_weapon_kills_aggregate": [ - 5546, + 5618, { "distinct_on": [ - 5553, + 5625, "[v_player_weapon_kills_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 5552, + 5624, "[v_player_weapon_kills_order_by!]" ], "where": [ - 5549 + 5621 ] } ], "v_player_weapon_kills_stream": [ - 5545, + 5617, { "batch_size": [ - 38, + 40, "Int!" ], "cursor": [ - 5557, + 5629, "[v_player_weapon_kills_stream_cursor_input]!" ], "where": [ - 5549 + 5621 ] } ], "v_pool_maps": [ - 5563, + 5635, { "distinct_on": [ - 5580, + 5652, "[v_pool_maps_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 5579, + 5651, "[v_pool_maps_order_by!]" ], "where": [ - 5572 + 5644 ] } ], "v_pool_maps_aggregate": [ - 5564, + 5636, { "distinct_on": [ - 5580, + 5652, "[v_pool_maps_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 5579, + 5651, "[v_pool_maps_order_by!]" ], "where": [ - 5572 + 5644 ] } ], "v_pool_maps_stream": [ - 5563, + 5635, { "batch_size": [ - 38, + 40, "Int!" ], "cursor": [ - 5584, + 5656, "[v_pool_maps_stream_cursor_input]!" ], "where": [ - 5572 + 5644 ] } ], "v_steam_account_pool_status": [ - 5587, + 5659, { "distinct_on": [ - 5595, + 5667, "[v_steam_account_pool_status_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 5594, + 5666, "[v_steam_account_pool_status_order_by!]" ], "where": [ - 5591 + 5663 ] } ], "v_steam_account_pool_status_aggregate": [ - 5588, + 5660, { "distinct_on": [ - 5595, + 5667, "[v_steam_account_pool_status_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 5594, + 5666, "[v_steam_account_pool_status_order_by!]" ], "where": [ - 5591 + 5663 ] } ], "v_steam_account_pool_status_stream": [ - 5587, + 5659, { "batch_size": [ - 38, + 40, "Int!" ], "cursor": [ - 5599, + 5671, "[v_steam_account_pool_status_stream_cursor_input]!" ], "where": [ - 5591 + 5663 ] } ], "v_team_ranks": [ - 5605, + 5677, { "distinct_on": [ - 5615, + 5687, "[v_team_ranks_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 5614, + 5686, "[v_team_ranks_order_by!]" ], "where": [ - 5609 + 5681 ] } ], "v_team_ranks_aggregate": [ - 5606, + 5678, { "distinct_on": [ - 5615, + 5687, "[v_team_ranks_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 5614, + 5686, "[v_team_ranks_order_by!]" ], "where": [ - 5609 + 5681 ] } ], "v_team_ranks_stream": [ - 5605, + 5677, { "batch_size": [ - 38, + 40, "Int!" ], "cursor": [ - 5619, + 5691, "[v_team_ranks_stream_cursor_input]!" ], "where": [ - 5609 + 5681 ] } ], "v_team_reputation": [ - 5625, + 5697, { "distinct_on": [ - 5635, + 5707, "[v_team_reputation_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 5634, + 5706, "[v_team_reputation_order_by!]" ], "where": [ - 5629 + 5701 ] } ], "v_team_reputation_aggregate": [ - 5626, + 5698, { "distinct_on": [ - 5635, + 5707, "[v_team_reputation_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 5634, + 5706, "[v_team_reputation_order_by!]" ], "where": [ - 5629 + 5701 ] } ], "v_team_reputation_stream": [ - 5625, + 5697, { "batch_size": [ - 38, + 40, "Int!" ], "cursor": [ - 5639, + 5711, "[v_team_reputation_stream_cursor_input]!" ], "where": [ - 5629 + 5701 ] } ], "v_team_stage_results": [ - 5645, + 5717, { "distinct_on": [ - 5677, + 5749, "[v_team_stage_results_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 5675, + 5747, "[v_team_stage_results_order_by!]" ], "where": [ - 5664 + 5736 ] } ], "v_team_stage_results_aggregate": [ - 5646, + 5718, { "distinct_on": [ - 5677, + 5749, "[v_team_stage_results_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 5675, + 5747, "[v_team_stage_results_order_by!]" ], "where": [ - 5664 + 5736 ] } ], "v_team_stage_results_by_pk": [ - 5645, + 5717, { "tournament_stage_id": [ - 4921, + 4993, "uuid!" ], "tournament_team_id": [ - 4921, + 4993, "uuid!" ] } ], "v_team_stage_results_stream": [ - 5645, + 5717, { "batch_size": [ - 38, + 40, "Int!" ], "cursor": [ - 5693, + 5765, "[v_team_stage_results_stream_cursor_input]!" ], "where": [ - 5664 + 5736 ] } ], "v_team_tournament_results": [ - 5705, + 5777, { "distinct_on": [ - 5731, + 5803, "[v_team_tournament_results_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 5730, + 5802, "[v_team_tournament_results_order_by!]" ], "where": [ - 5724 + 5796 ] } ], "v_team_tournament_results_aggregate": [ - 5706, + 5778, { "distinct_on": [ - 5731, + 5803, "[v_team_tournament_results_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 5730, + 5802, "[v_team_tournament_results_order_by!]" ], "where": [ - 5724 + 5796 ] } ], "v_team_tournament_results_stream": [ - 5705, + 5777, { "batch_size": [ - 38, + 40, "Int!" ], "cursor": [ - 5746, + 5818, "[v_team_tournament_results_stream_cursor_input]!" ], "where": [ - 5724 + 5796 ] } ], "v_tournament_player_stats": [ - 5756, + 5828, { "distinct_on": [ - 5782, + 5854, "[v_tournament_player_stats_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 5781, + 5853, "[v_tournament_player_stats_order_by!]" ], "where": [ - 5775 + 5847 ] } ], "v_tournament_player_stats_aggregate": [ - 5757, + 5829, { "distinct_on": [ - 5782, + 5854, "[v_tournament_player_stats_select_column!]" ], "limit": [ - 38 + 40 ], "offset": [ - 38 + 40 ], "order_by": [ - 5781, + 5853, "[v_tournament_player_stats_order_by!]" ], "where": [ - 5775 + 5847 ] } ], "v_tournament_player_stats_stream": [ - 5756, + 5828, { "batch_size": [ - 38, + 40, "Int!" ], "cursor": [ - 5797, + 5869, "[v_tournament_player_stats_stream_cursor_input]!" ], "where": [ - 5775 + 5847 ] } ], "__typename": [ - 78 + 80 ] } } diff --git a/hasura/enums/award-sources.sql b/hasura/enums/award-sources.sql new file mode 100644 index 00000000..ba5f24d9 --- /dev/null +++ b/hasura/enums/award-sources.sql @@ -0,0 +1,7 @@ +SET check_function_bodies = false; + +insert into e_award_sources ("value", "description") values + ('tournament', 'Calculated from a tournament placement'), + ('manual', 'Granted by hand'), + ('season', 'Calculated from a season standing') +on conflict(value) do update set "description" = EXCLUDED."description" diff --git a/hasura/enums/award-tiers.sql b/hasura/enums/award-tiers.sql new file mode 100644 index 00000000..d5368b45 --- /dev/null +++ b/hasura/enums/award-tiers.sql @@ -0,0 +1,9 @@ +SET check_function_bodies = false; + +insert into e_award_tiers ("value", "description") values + ('mvp', 'Most valuable player'), + ('gold', 'First place'), + ('silver', 'Second place'), + ('bronze', 'Third place'), + ('special', 'Standalone award') +on conflict(value) do update set "description" = EXCLUDED."description" diff --git a/hasura/functions/leaderboard/get_leaderboard.sql b/hasura/functions/leaderboard/get_leaderboard.sql index a2b1dcc9..973fd50e 100644 --- a/hasura/functions/leaderboard/get_leaderboard.sql +++ b/hasura/functions/leaderboard/get_leaderboard.sql @@ -7,6 +7,7 @@ -- actually re-run this cleanup against an already-broken database. DROP FUNCTION IF EXISTS public._leaderboard_trophies(INT); DROP FUNCTION IF EXISTS public._leaderboard_trophies(INT, TEXT); -- pre-_season 2-arg +DROP FUNCTION IF EXISTS public._leaderboard_trophies(INT, TEXT, UUID); -- pre-awards rename DROP FUNCTION IF EXISTS public.get_leaderboard(TEXT, INT, TEXT, BOOLEAN); -- pre-_role 4-arg DROP FUNCTION IF EXISTS public.get_leaderboard(TEXT, INT, TEXT, BOOLEAN, TEXT); -- pre-_season 5-arg DROP FUNCTION IF EXISTS public.get_player_leaderboard_rank(TEXT, INT, TEXT, TEXT, BOOLEAN); -- pre-_season 5-arg @@ -60,8 +61,8 @@ BEGIN ELSIF _category = 'highest_hs_pct' THEN RETURN QUERY SELECT * FROM _leaderboard_hs_pct(_window_days, _match_type, _exclude_tournaments, _season_id); - ELSIF _category = 'trophies' THEN - RETURN QUERY SELECT * FROM _leaderboard_trophies(_window_days, _match_type, _season_id); + ELSIF _category = 'awards' THEN + RETURN QUERY SELECT * FROM _leaderboard_awards(_window_days, _match_type, _season_id); ELSIF _category = 'best_rating' THEN RETURN QUERY SELECT * FROM _leaderboard_hltv_metric('rating', _window_days, _match_type, _exclude_tournaments, _role, _season_id); @@ -79,7 +80,7 @@ BEGIN RETURN QUERY SELECT * FROM _leaderboard_udr(_window_days, _match_type, _exclude_tournaments, _role, _season_id); ELSE - RAISE EXCEPTION 'Invalid category: %. Must be one of: elo, best_kdr, best_win_rate, highest_hs_pct, trophies, best_rating, best_adr, best_kpr, best_kast, best_udr', _category; + RAISE EXCEPTION 'Invalid category: %. Must be one of: elo, best_kdr, best_win_rate, highest_hs_pct, awards, best_rating, best_adr, best_kpr, best_kast, best_udr', _category; END IF; END; $$; @@ -505,11 +506,12 @@ END; $$; -- ============================================================ --- Trophies leaderboard +-- Awards leaderboard -- value = gold count, secondary = silver count, tertiary = bronze count --- matches_played = total trophies. Olympic medal-table ordering. +-- matches_played = total medals. Olympic medal-table ordering. Only tournament +-- placements count; hand-granted awards must not move rankings. -- ============================================================ -CREATE OR REPLACE FUNCTION public._leaderboard_trophies( +CREATE OR REPLACE FUNCTION public._leaderboard_awards( _window_days INT, _match_type TEXT DEFAULT NULL, _season_id UUID DEFAULT NULL @@ -537,19 +539,20 @@ BEGIN RETURN QUERY WITH counts AS ( SELECT - tt.player_steam_id, - SUM(CASE WHEN tt.placement = 0 THEN 1 ELSE 0 END)::int as mvp, - SUM(CASE WHEN tt.placement = 1 THEN 1 ELSE 0 END)::int as gold, - SUM(CASE WHEN tt.placement = 2 THEN 1 ELSE 0 END)::int as silver, - SUM(CASE WHEN tt.placement = 3 THEN 1 ELSE 0 END)::int as bronze, + ar.player_steam_id, + SUM(CASE WHEN ar.placement = 0 THEN 1 ELSE 0 END)::int as mvp, + SUM(CASE WHEN ar.placement = 1 THEN 1 ELSE 0 END)::int as gold, + SUM(CASE WHEN ar.placement = 2 THEN 1 ELSE 0 END)::int as silver, + SUM(CASE WHEN ar.placement = 3 THEN 1 ELSE 0 END)::int as bronze, COUNT(*)::int as total - FROM tournament_trophies tt - JOIN tournaments t ON t.id = tt.tournament_id + FROM award_recipients ar + JOIN tournaments t ON t.id = ar.tournament_id JOIN match_options mo ON mo.id = t.match_options_id - WHERE tt.player_steam_id IS NOT NULL + WHERE ar.player_steam_id IS NOT NULL + AND ar.placement IS NOT NULL AND ((_from IS NULL OR t.start >= _from) AND (_to IS NULL OR t.start < _to)) AND (_match_type IS NULL OR mo.type = _match_type) - GROUP BY tt.player_steam_id + GROUP BY ar.player_steam_id ) SELECT c.player_steam_id::text as player_steam_id, diff --git a/hasura/functions/seasons/calculate_season_awards.sql b/hasura/functions/seasons/calculate_season_awards.sql new file mode 100644 index 00000000..52cb74b7 --- /dev/null +++ b/hasura/functions/seasons/calculate_season_awards.sql @@ -0,0 +1,66 @@ +-- Season placements, mirroring calculate_tournament_awards: the ladder decides +-- gold/silver/bronze and a performance metric decides MVP, so the two are not +-- always the same player. +CREATE OR REPLACE FUNCTION public.calculate_season_awards(_season_id uuid) +RETURNS void +LANGUAGE plpgsql +AS $$ +DECLARE + _mvp_steam_id bigint; +BEGIN + -- Always clear prior calculated rows so a recalculation lands in a known + -- state. Hand-granted season awards are the organizer's and survive. + DELETE FROM public.award_recipients + WHERE season_id = _season_id AND source = 'season'; + + IF NOT EXISTS (SELECT 1 FROM public.seasons WHERE id = _season_id) THEN + RETURN; + END IF; + + -- Ranking reuses the ELO leaderboard rather than re-deriving it, so the + -- award always agrees with what the leaderboard shows for the season. + INSERT INTO public.award_recipients + (award_id, season_id, player_steam_id, placement, source) + SELECT + (SELECT a.id FROM public.awards a + WHERE a.system_key = CASE ranked.rank + WHEN 1 THEN 'season_gold' + WHEN 2 THEN 'season_silver' + ELSE 'season_bronze' + END), + _season_id, + ranked.player_steam_id::bigint, + ranked.rank, + 'season' + FROM ( + SELECT + entry.player_steam_id, + ROW_NUMBER() OVER (ORDER BY entry.value DESC) AS rank + FROM public._leaderboard_elo(0, NULL, false, _season_id) entry + ) ranked + WHERE ranked.rank <= 3 + ON CONFLICT DO NOTHING; + + -- MVP: highest average in-match impact over the season, the same metric a + -- tournament MVP uses. + SELECT pe.steam_id + INTO _mvp_steam_id + FROM public.player_elo pe + WHERE pe.season_id = _season_id + GROUP BY pe.steam_id + HAVING COUNT(*) > 0 + ORDER BY AVG(COALESCE(pe.impact, 1.0)) DESC, + SUM(COALESCE(pe.impact, 1.0)) DESC, + pe.steam_id ASC + LIMIT 1; + + IF _mvp_steam_id IS NOT NULL THEN + INSERT INTO public.award_recipients + (award_id, season_id, player_steam_id, placement, source) + VALUES + ((SELECT a.id FROM public.awards a WHERE a.system_key = 'season_mvp'), + _season_id, _mvp_steam_id, 0, 'season') + ON CONFLICT DO NOTHING; + END IF; +END; +$$; diff --git a/hasura/functions/tournaments/calculate_tournament_trophies.sql b/hasura/functions/tournaments/calculate_tournament_awards.sql similarity index 73% rename from hasura/functions/tournaments/calculate_tournament_trophies.sql rename to hasura/functions/tournaments/calculate_tournament_awards.sql index 10fc9c8d..99d9930c 100644 --- a/hasura/functions/tournaments/calculate_tournament_trophies.sql +++ b/hasura/functions/tournaments/calculate_tournament_awards.sql @@ -1,9 +1,29 @@ -CREATE OR REPLACE FUNCTION public.calculate_tournament_trophies(_tournament_id uuid) +CREATE OR REPLACE FUNCTION public.resolve_tournament_award(_tournament_id uuid, _placement int) +RETURNS uuid +LANGUAGE sql STABLE +AS $$ + SELECT COALESCE( + (SELECT ta.award_id + FROM public.tournament_awards ta + WHERE ta.tournament_id = _tournament_id + AND ta.placement = _placement), + (SELECT a.id + FROM public.awards a + WHERE a.system_key = CASE _placement + WHEN 0 THEN 'tournament_mvp' + WHEN 1 THEN 'tournament_gold' + WHEN 2 THEN 'tournament_silver' + WHEN 3 THEN 'tournament_bronze' + END) + ); +$$; + +CREATE OR REPLACE FUNCTION public.calculate_tournament_awards(_tournament_id uuid) RETURNS void LANGUAGE plpgsql AS $$ DECLARE - _trophies_enabled boolean; + _awards_enabled boolean; _final_stage_id uuid; _winning_team_id uuid; _runner_up_team_id uuid; @@ -11,15 +31,15 @@ DECLARE _award_third boolean := false; _mvp_steam_id bigint; BEGIN - SELECT trophies_enabled INTO _trophies_enabled + SELECT awards_enabled INTO _awards_enabled FROM public.tournaments WHERE id = _tournament_id; -- Always clear prior auto rows so disabling / recalculating lands in a known state. - -- Manual awards survive; organizers own those explicitly. - DELETE FROM public.tournament_trophies - WHERE tournament_id = _tournament_id AND manual = false; + -- Hand-granted awards survive; organizers own those explicitly. + DELETE FROM public.award_recipients + WHERE tournament_id = _tournament_id AND source = 'tournament'; - IF _trophies_enabled IS DISTINCT FROM true THEN + IF _awards_enabled IS DISTINCT FROM true THEN RETURN; END IF; @@ -150,22 +170,24 @@ BEGIN LIMIT 1; IF _mvp_steam_id IS NOT NULL THEN - INSERT INTO public.tournament_trophies - (tournament_id, tournament_team_id, player_steam_id, placement) + INSERT INTO public.award_recipients + (award_id, tournament_id, tournament_team_id, player_steam_id, placement, source) VALUES - (_tournament_id, _winning_team_id, _mvp_steam_id, 0) + (public.resolve_tournament_award(_tournament_id, 0), + _tournament_id, _winning_team_id, _mvp_steam_id, 0, 'tournament') ON CONFLICT DO NOTHING; END IF; END IF; - -- Team-level placement trophies. These are only awarded when the tournament + -- Team-level placement awards. These are only granted when the tournament -- entry is backed by a real team (tournament_teams.team_id); ad-hoc - -- tournament-only teams still only award player trophies. + -- tournament-only teams still only grant player awards. IF _winning_team_id IS NOT NULL THEN - INSERT INTO public.tournament_trophies - (tournament_id, tournament_team_id, team_id, placement) + INSERT INTO public.award_recipients + (award_id, tournament_id, tournament_team_id, team_id, placement, source) SELECT - _tournament_id, tournament_team.id, tournament_team.team_id, 1 + public.resolve_tournament_award(_tournament_id, 1), + _tournament_id, tournament_team.id, tournament_team.team_id, 1, 'tournament' FROM public.tournament_teams tournament_team WHERE tournament_team.id = _winning_team_id AND tournament_team.tournament_id = _tournament_id @@ -174,10 +196,11 @@ BEGIN END IF; IF _runner_up_team_id IS NOT NULL THEN - INSERT INTO public.tournament_trophies - (tournament_id, tournament_team_id, team_id, placement) + INSERT INTO public.award_recipients + (award_id, tournament_id, tournament_team_id, team_id, placement, source) SELECT - _tournament_id, tournament_team.id, tournament_team.team_id, 2 + public.resolve_tournament_award(_tournament_id, 2), + _tournament_id, tournament_team.id, tournament_team.team_id, 2, 'tournament' FROM public.tournament_teams tournament_team WHERE tournament_team.id = _runner_up_team_id AND tournament_team.tournament_id = _tournament_id @@ -186,10 +209,11 @@ BEGIN END IF; IF _award_third AND _third_team_id IS NOT NULL THEN - INSERT INTO public.tournament_trophies - (tournament_id, tournament_team_id, team_id, placement) + INSERT INTO public.award_recipients + (award_id, tournament_id, tournament_team_id, team_id, placement, source) SELECT - _tournament_id, tournament_team.id, tournament_team.team_id, 3 + public.resolve_tournament_award(_tournament_id, 3), + _tournament_id, tournament_team.id, tournament_team.team_id, 3, 'tournament' FROM public.tournament_teams tournament_team WHERE tournament_team.id = _third_team_id AND tournament_team.tournament_id = _tournament_id @@ -198,14 +222,15 @@ BEGIN END IF; -- Roster-wide gold / silver / bronze. ON CONFLICT skips any player who - -- already has a matching manual award at this placement. Leaving the + -- already has a matching hand-granted award at this placement. Leaving the -- conflict target unspecified keeps this function tolerant of both the - -- placement-aware trophy key and the partial MVP index. + -- placement-aware recipient key and the partial MVP index. IF _winning_team_id IS NOT NULL THEN - INSERT INTO public.tournament_trophies - (tournament_id, tournament_team_id, player_steam_id, placement) + INSERT INTO public.award_recipients + (award_id, tournament_id, tournament_team_id, player_steam_id, placement, source) SELECT - _tournament_id, _winning_team_id, roster.player_steam_id, 1 + public.resolve_tournament_award(_tournament_id, 1), + _tournament_id, _winning_team_id, roster.player_steam_id, 1, 'tournament' FROM public.tournament_team_roster roster WHERE roster.tournament_team_id = _winning_team_id AND roster.tournament_id = _tournament_id @@ -213,10 +238,11 @@ BEGIN END IF; IF _runner_up_team_id IS NOT NULL THEN - INSERT INTO public.tournament_trophies - (tournament_id, tournament_team_id, player_steam_id, placement) + INSERT INTO public.award_recipients + (award_id, tournament_id, tournament_team_id, player_steam_id, placement, source) SELECT - _tournament_id, _runner_up_team_id, roster.player_steam_id, 2 + public.resolve_tournament_award(_tournament_id, 2), + _tournament_id, _runner_up_team_id, roster.player_steam_id, 2, 'tournament' FROM public.tournament_team_roster roster WHERE roster.tournament_team_id = _runner_up_team_id AND roster.tournament_id = _tournament_id @@ -224,10 +250,11 @@ BEGIN END IF; IF _award_third AND _third_team_id IS NOT NULL THEN - INSERT INTO public.tournament_trophies - (tournament_id, tournament_team_id, player_steam_id, placement) + INSERT INTO public.award_recipients + (award_id, tournament_id, tournament_team_id, player_steam_id, placement, source) SELECT - _tournament_id, _third_team_id, roster.player_steam_id, 3 + public.resolve_tournament_award(_tournament_id, 3), + _tournament_id, _third_team_id, roster.player_steam_id, 3, 'tournament' FROM public.tournament_team_roster roster WHERE roster.tournament_team_id = _third_team_id AND roster.tournament_id = _tournament_id diff --git a/hasura/functions/tournaments/recalculate_tournament_awards.sql b/hasura/functions/tournaments/recalculate_tournament_awards.sql new file mode 100644 index 00000000..d3f0f4ee --- /dev/null +++ b/hasura/functions/tournaments/recalculate_tournament_awards.sql @@ -0,0 +1,12 @@ +CREATE OR REPLACE FUNCTION public.recalculate_tournament_awards(_tournament_id uuid) +RETURNS SETOF public.award_recipients +LANGUAGE plpgsql +AS $$ +BEGIN + DELETE FROM public.award_recipients + WHERE tournament_id = _tournament_id; + + PERFORM public.calculate_tournament_awards(_tournament_id); + RETURN QUERY SELECT * FROM public.award_recipients WHERE tournament_id = _tournament_id; +END; +$$; diff --git a/hasura/functions/tournaments/recalculate_tournament_trophies.sql b/hasura/functions/tournaments/recalculate_tournament_trophies.sql deleted file mode 100644 index 4e42fb2c..00000000 --- a/hasura/functions/tournaments/recalculate_tournament_trophies.sql +++ /dev/null @@ -1,12 +0,0 @@ -CREATE OR REPLACE FUNCTION public.recalculate_tournament_trophies(_tournament_id uuid) -RETURNS SETOF public.tournament_trophies -LANGUAGE plpgsql -AS $$ -BEGIN - DELETE FROM public.tournament_trophies - WHERE tournament_id = _tournament_id; - - PERFORM public.calculate_tournament_trophies(_tournament_id); - RETURN QUERY SELECT * FROM public.tournament_trophies WHERE tournament_id = _tournament_id; -END; -$$; diff --git a/hasura/functions/tournaments/reset_tournament_match.sql b/hasura/functions/tournaments/reset_tournament_match.sql index 1d15c358..4a8bd660 100644 --- a/hasura/functions/tournaments/reset_tournament_match.sql +++ b/hasura/functions/tournaments/reset_tournament_match.sql @@ -232,9 +232,11 @@ BEGIN AND status = 'Finished'; IF FOUND THEN - -- Rewinding a finished tournament invalidates awarded placements. - DELETE FROM tournament_trophies - WHERE tournament_id = source_tournament_id; + -- Rewinding a finished tournament invalidates the calculated + -- placements. Hand-granted awards are the organizer's, not ours. + DELETE FROM award_recipients + WHERE tournament_id = source_tournament_id + AND source = 'tournament'; END IF; END IF; diff --git a/hasura/functions/tournaments/update_tournament_bracket.sql b/hasura/functions/tournaments/update_tournament_bracket.sql index aebbc47a..87af1dfd 100644 --- a/hasura/functions/tournaments/update_tournament_bracket.sql +++ b/hasura/functions/tournaments/update_tournament_bracket.sql @@ -54,7 +54,7 @@ BEGIN FROM tournament_stages ts WHERE ts.id = bracket.tournament_stage_id; - -- Refresh cached standings before advancement/seeding/trophies read them. + -- Refresh cached standings before advancement/seeding/awards read them. PERFORM public.recompute_tournament_stage_results(bracket.tournament_stage_id); IF tournament_id IS NOT NULL THEN diff --git a/hasura/metadata/actions.graphql b/hasura/metadata/actions.graphql index aa2d5920..87b04c46 100644 --- a/hasura/metadata/actions.graphql +++ b/hasura/metadata/actions.graphql @@ -1170,8 +1170,63 @@ type PodStats { memory: MemoryStat } +type TelemetryInstallCounts { + total: Int! + active24h: Int! + active7d: Int! + active30d: Int! + new30d: Int! + retained180d: Int! +} + +type TelemetryFleetTotals { + gameServerNodes: Int! + servers: Int! + dedicatedServers: Int! + publicServers: Int! + serverCapacity: Int! + matches: Int! + matchesWeek: Int! + matchesMonth: Int! + matchesYear: Int! + mapsPlayed: Int! + playersRegistered: Int! + playersActive30d: Int! + teams: Int! +} + +type TelemetryFeatureAdoption { + key: String! + enabled: Int! + reporting: Int! + installsUsing: Int! + total: Int! +} + +type TelemetryVersionSpread { + version: String! + installs: Int! +} + +type TelemetryGrowthPoint { + month: String! + installs: Int! +} + +type TelemetryActivityPoint { + day: String! + installs: Int! + matches: Int! +} + type TelemetryStats { online: Int! + installs: TelemetryInstallCounts! + totals: TelemetryFleetTotals! + features: [TelemetryFeatureAdoption!]! + versions: [TelemetryVersionSpread!]! + growth: [TelemetryGrowthPoint!]! + activity: [TelemetryActivityPoint!]! } type TestUploadResponse { @@ -1586,3 +1641,92 @@ type SteamPresenceAdminStatusOutput { pool: SteamPresencePool! bots: [SteamPresenceBot!]! } + +type Mutation { + saveAward( + id: uuid + name: String! + description: String + tier: String! + silhouette: Int + allow_multiple: Boolean + tournament_id: uuid + event_id: uuid + season_id: uuid + league_season_id: uuid + ): Award +} + +type Mutation { + deleteAward( + id: uuid! + ): SuccessOutput +} + +type Mutation { + grantAward( + award_id: uuid! + player_steam_id: String + team_id: uuid + tournament_id: uuid + note: String + ): AwardRecipient +} + +type Mutation { + revokeAward( + id: uuid! + ): SuccessOutput +} + +type Mutation { + setTournamentAward( + tournament_id: uuid! + placement: Int! + award_id: uuid + custom_name: String + silhouette: Int + ): TournamentAward +} + +type Award { + id: uuid! + tournament_id: uuid + event_id: uuid + season_id: uuid + league_season_id: uuid + name: String! + description: String + tier: String! + silhouette: Int + image_url: String + system_key: String + allow_multiple: Boolean! + created_by_steam_id: String + created_at: String! + updated_at: String! +} + +type AwardRecipient { + id: uuid! + award_id: uuid! + tournament_id: uuid + tournament_team_id: uuid + team_id: uuid + player_steam_id: String + placement: Int + source: String! + awarded_by_steam_id: String + note: String + created_at: String! +} + +type TournamentAward { + id: uuid! + tournament_id: uuid! + placement: Int! + award_id: uuid + custom_name: String + silhouette: Int + image_url: String +} diff --git a/hasura/metadata/actions.yaml b/hasura/metadata/actions.yaml index 3dbd86ee..302f59b6 100644 --- a/hasura/metadata/actions.yaml +++ b/hasura/metadata/actions.yaml @@ -1204,6 +1204,76 @@ actions: permissions: - role: administrator comment: Remove a friends-role presence bot account + - name: saveAward + definition: + kind: synchronous + handler: '{{HASURA_GRAPHQL_ACTIONS_HOOK}}' + forward_client_headers: true + permissions: + - role: administrator + - role: tournament_organizer + - role: match_organizer + - role: moderator + - role: streamer + - role: verified_user + - role: user + comment: Create or update a catalog award + - name: deleteAward + definition: + kind: synchronous + handler: '{{HASURA_GRAPHQL_ACTIONS_HOOK}}' + forward_client_headers: true + permissions: + - role: administrator + - role: tournament_organizer + - role: match_organizer + - role: moderator + - role: streamer + - role: verified_user + - role: user + comment: Delete a catalog award + - name: grantAward + definition: + kind: synchronous + handler: '{{HASURA_GRAPHQL_ACTIONS_HOOK}}' + forward_client_headers: true + permissions: + - role: administrator + - role: tournament_organizer + - role: match_organizer + - role: moderator + - role: streamer + - role: verified_user + - role: user + comment: Grant an award to a player or team + - name: revokeAward + definition: + kind: synchronous + handler: '{{HASURA_GRAPHQL_ACTIONS_HOOK}}' + forward_client_headers: true + permissions: + - role: administrator + - role: tournament_organizer + - role: match_organizer + - role: moderator + - role: streamer + - role: verified_user + - role: user + comment: Revoke a hand-granted award + - name: setTournamentAward + definition: + kind: synchronous + handler: '{{HASURA_GRAPHQL_ACTIONS_HOOK}}' + forward_client_headers: true + permissions: + - role: administrator + - role: tournament_organizer + - role: match_organizer + - role: moderator + - role: streamer + - role: verified_user + - role: user + comment: Map a tournament placement to an award custom_types: enums: [] input_objects: @@ -1214,6 +1284,9 @@ custom_types: - name: ClipOutputInput - name: ClipSpecInput objects: + - name: Award + - name: AwardRecipient + - name: TournamentAward - name: SteamPresenceBotAssignment - name: SteamPresencePool - name: SteamPresenceBot @@ -1251,6 +1324,12 @@ custom_types: - name: GpuStats - name: GpuDeviceStat - name: PodStats + - name: TelemetryInstallCounts + - name: TelemetryFleetTotals + - name: TelemetryFeatureAdoption + - name: TelemetryVersionSpread + - name: TelemetryGrowthPoint + - name: TelemetryActivityPoint - name: TelemetryStats - name: TestUploadResponse - name: GetTestUploadResponse diff --git a/hasura/metadata/databases/default/functions/functions.yaml b/hasura/metadata/databases/default/functions/functions.yaml index 13630ee6..7ed266eb 100644 --- a/hasura/metadata/databases/default/functions/functions.yaml +++ b/hasura/metadata/databases/default/functions/functions.yaml @@ -5,7 +5,7 @@ - "!include public_get_league_season_leaderboard.yaml" - "!include public_league_award_forfeit.yaml" - "!include public_get_player_leaderboard_rank.yaml" -- "!include public_recalculate_tournament_trophies.yaml" +- "!include public_recalculate_tournament_awards.yaml" - "!include public_remove_league_team_from_season.yaml" - "!include public_reorder_league_divisions.yaml" - "!include public_restart_league_season.yaml" diff --git a/hasura/metadata/databases/default/functions/public_recalculate_tournament_trophies.yaml b/hasura/metadata/databases/default/functions/public_recalculate_tournament_awards.yaml similarity index 76% rename from hasura/metadata/databases/default/functions/public_recalculate_tournament_trophies.yaml rename to hasura/metadata/databases/default/functions/public_recalculate_tournament_awards.yaml index 0382d210..7f2041c4 100644 --- a/hasura/metadata/databases/default/functions/public_recalculate_tournament_trophies.yaml +++ b/hasura/metadata/databases/default/functions/public_recalculate_tournament_awards.yaml @@ -1,5 +1,5 @@ function: - name: recalculate_tournament_trophies + name: recalculate_tournament_awards schema: public configuration: custom_root_fields: {} diff --git a/hasura/metadata/databases/default/tables/public_tournament_trophies.yaml b/hasura/metadata/databases/default/tables/public_award_recipients.yaml similarity index 61% rename from hasura/metadata/databases/default/tables/public_tournament_trophies.yaml rename to hasura/metadata/databases/default/tables/public_award_recipients.yaml index 8679f003..f05f376a 100644 --- a/hasura/metadata/databases/default/tables/public_tournament_trophies.yaml +++ b/hasura/metadata/databases/default/tables/public_award_recipients.yaml @@ -1,20 +1,26 @@ table: - name: tournament_trophies + name: award_recipients schema: public object_relationships: + - name: award + using: + foreign_key_constraint_on: award_id + - name: awarded_by + using: + foreign_key_constraint_on: awarded_by_steam_id - name: player using: foreign_key_constraint_on: player_steam_id + - name: season + using: + foreign_key_constraint_on: season_id - name: team using: foreign_key_constraint_on: team_id - name: tournament using: foreign_key_constraint_on: tournament_id - - name: tournament_team - using: - foreign_key_constraint_on: tournament_team_id - - name: trophy_config + - name: tournament_award using: manual_configuration: column_mapping: @@ -22,44 +28,28 @@ object_relationships: tournament_id: tournament_id insertion_order: null remote_table: - name: tournament_trophy_configs + name: tournament_awards schema: public -insert_permissions: - - role: user - permission: - check: - tournament: - is_organizer: - _eq: true - set: - manual: "true" - columns: - - tournament_id - - tournament_team_id - - player_steam_id - - placement - comment: "" + - name: tournament_team + using: + foreign_key_constraint_on: tournament_team_id select_permissions: - role: guest permission: columns: - id + - award_id - tournament_id + - season_id - tournament_team_id - team_id - player_steam_id - placement - placement_tier - - manual + - source + - awarded_by_steam_id + - note - created_at filter: {} allow_aggregations: true comment: "" -delete_permissions: - - role: user - permission: - filter: - tournament: - is_organizer: - _eq: true - comment: "" diff --git a/hasura/metadata/databases/default/tables/public_awards.yaml b/hasura/metadata/databases/default/tables/public_awards.yaml new file mode 100644 index 00000000..74edd6ee --- /dev/null +++ b/hasura/metadata/databases/default/tables/public_awards.yaml @@ -0,0 +1,56 @@ +table: + name: awards + schema: public +object_relationships: + - name: created_by + using: + foreign_key_constraint_on: created_by_steam_id + - name: event + using: + foreign_key_constraint_on: event_id + - name: league_season + using: + foreign_key_constraint_on: league_season_id + - name: season + using: + foreign_key_constraint_on: season_id + - name: tournament + using: + foreign_key_constraint_on: tournament_id +array_relationships: + - name: recipients + using: + foreign_key_constraint_on: + column: award_id + table: + name: award_recipients + schema: public + - name: tournament_configs + using: + foreign_key_constraint_on: + column: award_id + table: + name: tournament_awards + schema: public +select_permissions: + - role: guest + permission: + columns: + - id + - name + - description + - tier + - silhouette + - image_url + - system_key + - allow_multiple + - created_by_steam_id + - tournament_id + - event_id + - season_id + - league_season_id + - created_at + - updated_at + filter: {} + allow_aggregations: true + comment: "" diff --git a/hasura/metadata/databases/default/tables/public_e_award_sources.yaml b/hasura/metadata/databases/default/tables/public_e_award_sources.yaml new file mode 100644 index 00000000..8d8d00b0 --- /dev/null +++ b/hasura/metadata/databases/default/tables/public_e_award_sources.yaml @@ -0,0 +1,12 @@ +table: + name: e_award_sources + 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_award_tiers.yaml b/hasura/metadata/databases/default/tables/public_e_award_tiers.yaml new file mode 100644 index 00000000..f6eab77d --- /dev/null +++ b/hasura/metadata/databases/default/tables/public_e_award_tiers.yaml @@ -0,0 +1,12 @@ +table: + name: e_award_tiers + schema: public +is_enum: true +select_permissions: + - role: guest + permission: + columns: + - description + - value + filter: {} + comment: "" diff --git a/hasura/metadata/databases/default/tables/public_players.yaml b/hasura/metadata/databases/default/tables/public_players.yaml index de75611d..cfd23cbf 100644 --- a/hasura/metadata/databases/default/tables/public_players.yaml +++ b/hasura/metadata/databases/default/tables/public_players.yaml @@ -278,12 +278,12 @@ array_relationships: table: name: tournament_team_roster schema: public - - name: tournament_trophies + - name: awards using: foreign_key_constraint_on: column: player_steam_id table: - name: tournament_trophies + name: award_recipients schema: public - name: tournaments using: diff --git a/hasura/metadata/databases/default/tables/public_seasons.yaml b/hasura/metadata/databases/default/tables/public_seasons.yaml index 9c188216..30a509f4 100644 --- a/hasura/metadata/databases/default/tables/public_seasons.yaml +++ b/hasura/metadata/databases/default/tables/public_seasons.yaml @@ -2,6 +2,13 @@ table: name: seasons schema: public array_relationships: + - name: awards + using: + foreign_key_constraint_on: + column: season_id + table: + name: award_recipients + schema: public - name: player_season_stats using: foreign_key_constraint_on: diff --git a/hasura/metadata/databases/default/tables/public_teams.yaml b/hasura/metadata/databases/default/tables/public_teams.yaml index 664daf4c..8ab301c8 100644 --- a/hasura/metadata/databases/default/tables/public_teams.yaml +++ b/hasura/metadata/databases/default/tables/public_teams.yaml @@ -34,6 +34,13 @@ object_relationships: name: v_team_reputation schema: public array_relationships: + - name: awards + using: + foreign_key_constraint_on: + column: team_id + table: + name: award_recipients + schema: public - name: scrim_availability using: foreign_key_constraint_on: diff --git a/hasura/metadata/databases/default/tables/public_tournament_awards.yaml b/hasura/metadata/databases/default/tables/public_tournament_awards.yaml new file mode 100644 index 00000000..40d3b136 --- /dev/null +++ b/hasura/metadata/databases/default/tables/public_tournament_awards.yaml @@ -0,0 +1,25 @@ +table: + name: tournament_awards + schema: public +object_relationships: + - name: award + using: + foreign_key_constraint_on: award_id + - name: tournament + using: + foreign_key_constraint_on: tournament_id +select_permissions: + - role: guest + permission: + columns: + - id + - tournament_id + - placement + - award_id + - custom_name + - silhouette + - image_url + - created_at + - updated_at + filter: {} + comment: "" diff --git a/hasura/metadata/databases/default/tables/public_tournament_trophy_configs.yaml b/hasura/metadata/databases/default/tables/public_tournament_trophy_configs.yaml deleted file mode 100644 index a3af23ec..00000000 --- a/hasura/metadata/databases/default/tables/public_tournament_trophy_configs.yaml +++ /dev/null @@ -1,66 +0,0 @@ -table: - name: tournament_trophy_configs - schema: public -object_relationships: - - name: tournament - using: - foreign_key_constraint_on: tournament_id -insert_permissions: - - role: administrator - permission: - check: {} - columns: - - tournament_id - - placement - - custom_name - - silhouette - - image_url - comment: "" - - role: user - permission: - check: - tournament: - is_organizer: - _eq: true - columns: - - tournament_id - - placement - - custom_name - - silhouette - - image_url - comment: "" -select_permissions: - - role: guest - permission: - columns: - - id - - tournament_id - - placement - - custom_name - - silhouette - - image_url - - created_at - - updated_at - filter: {} - comment: "" -update_permissions: - - role: user - permission: - columns: - - custom_name - - silhouette - - image_url - filter: - tournament: - is_organizer: - _eq: true - check: null - comment: "" -delete_permissions: - - role: user - permission: - filter: - tournament: - is_organizer: - _eq: true - comment: "" diff --git a/hasura/metadata/databases/default/tables/public_tournaments.yaml b/hasura/metadata/databases/default/tables/public_tournaments.yaml index 2d323441..d841909d 100644 --- a/hasura/metadata/databases/default/tables/public_tournaments.yaml +++ b/hasura/metadata/databases/default/tables/public_tournaments.yaml @@ -88,19 +88,19 @@ array_relationships: table: name: tournament_teams schema: public - - name: trophies + - name: awards using: foreign_key_constraint_on: column: tournament_id table: - name: tournament_trophies + name: award_recipients schema: public - - name: trophy_configs + - name: award_configs using: foreign_key_constraint_on: column: tournament_id table: - name: tournament_trophy_configs + name: tournament_awards schema: public computed_fields: - name: can_cancel @@ -457,7 +457,7 @@ select_permissions: - organizer_steam_id - start - status - - trophies_enabled + - awards_enabled computed_fields: - can_cancel - can_close_registration @@ -513,7 +513,7 @@ select_permissions: - organizer_steam_id - start - status - - trophies_enabled + - awards_enabled computed_fields: - can_cancel - can_close_registration @@ -555,7 +555,7 @@ select_permissions: - organizer_steam_id - start - status - - trophies_enabled + - awards_enabled computed_fields: - can_cancel - can_close_registration @@ -610,7 +610,7 @@ update_permissions: - name - start - status - - trophies_enabled + - awards_enabled filter: is_organizer: _eq: true @@ -632,7 +632,7 @@ update_permissions: - name - start - status - - trophies_enabled + - awards_enabled filter: is_organizer: _eq: true diff --git a/hasura/metadata/databases/default/tables/tables.yaml b/hasura/metadata/databases/default/tables/tables.yaml index 124afd54..e35e7cf4 100644 --- a/hasura/metadata/databases/default/tables/tables.yaml +++ b/hasura/metadata/databases/default/tables/tables.yaml @@ -2,12 +2,16 @@ - "!include public__map_pool.yaml" - "!include public_abandoned_matches.yaml" - "!include public_api_keys.yaml" +- "!include public_award_recipients.yaml" +- "!include public_awards.yaml" - "!include public_clip_render_jobs.yaml" - "!include public_custom_pages.yaml" - "!include public_db_backups.yaml" - "!include public_draft_game_picks.yaml" - "!include public_draft_game_players.yaml" - "!include public_draft_games.yaml" +- "!include public_e_award_sources.yaml" +- "!include public_e_award_tiers.yaml" - "!include public_e_check_in_settings.yaml" - "!include public_e_draft_game_captain_selection.yaml" - "!include public_e_draft_game_draft_order.yaml" @@ -137,6 +141,7 @@ - "!include public_team_scrim_settings.yaml" - "!include public_team_suggestions.yaml" - "!include public_teams.yaml" +- "!include public_tournament_awards.yaml" - "!include public_tournament_brackets.yaml" - "!include public_tournament_categories.yaml" - "!include public_tournament_organizer_teams.yaml" @@ -147,8 +152,6 @@ - "!include public_tournament_team_invites.yaml" - "!include public_tournament_team_roster.yaml" - "!include public_tournament_teams.yaml" -- "!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" diff --git a/hasura/migrations/default/1873000000400_telemetry_reports/down.sql b/hasura/migrations/default/1873000000400_telemetry_reports/down.sql new file mode 100644 index 00000000..48c271b8 --- /dev/null +++ b/hasura/migrations/default/1873000000400_telemetry_reports/down.sql @@ -0,0 +1,2 @@ +DROP TABLE IF EXISTS public.telemetry_snapshots; +DROP TABLE IF EXISTS public.telemetry_installs; diff --git a/hasura/migrations/default/1873000000400_telemetry_reports/up.sql b/hasura/migrations/default/1873000000400_telemetry_reports/up.sql new file mode 100644 index 00000000..1bc50010 --- /dev/null +++ b/hasura/migrations/default/1873000000400_telemetry_reports/up.sql @@ -0,0 +1,36 @@ +-- Only the 5stack.gg panel ever writes these: every other install POSTs its +-- hourly heartbeat here. Panels are self-hosted and unauthenticated, so nothing +-- in these tables is trustworthy on its own — the receiver clamps and validates +-- before inserting, and aggregates should still be read as self-reported. +CREATE TABLE IF NOT EXISTS public.telemetry_installs ( + install_id uuid PRIMARY KEY, + first_seen_at timestamptz NOT NULL DEFAULT now(), + last_seen_at timestamptz NOT NULL DEFAULT now(), + -- Reported by the install itself, not derived from its address. + installed_at timestamptz, + panel_version text, + schema_version integer, + country text, + payload jsonb NOT NULL DEFAULT '{}'::jsonb +); + +CREATE INDEX IF NOT EXISTS idx_telemetry_installs_last_seen + ON public.telemetry_installs (last_seen_at DESC); + +CREATE INDEX IF NOT EXISTS idx_telemetry_installs_first_seen + ON public.telemetry_installs (first_seen_at DESC); + +-- One row per install per day rather than per heartbeat: the hourly beat only +-- needs to keep the day's latest payload, and period totals are read as deltas +-- of the all-time counters so a missed beat cannot double-count. +CREATE TABLE IF NOT EXISTS public.telemetry_snapshots ( + install_id uuid NOT NULL + REFERENCES public.telemetry_installs(install_id) ON UPDATE CASCADE ON DELETE CASCADE, + day date NOT NULL, + reported_at timestamptz NOT NULL DEFAULT now(), + payload jsonb NOT NULL, + PRIMARY KEY (install_id, day) +); + +CREATE INDEX IF NOT EXISTS idx_telemetry_snapshots_day + ON public.telemetry_snapshots (day DESC); diff --git a/hasura/migrations/default/1873000000600_awards/down.sql b/hasura/migrations/default/1873000000600_awards/down.sql new file mode 100644 index 00000000..b232f18d --- /dev/null +++ b/hasura/migrations/default/1873000000600_awards/down.sql @@ -0,0 +1,185 @@ +-- ── from 1873000000500_season_awards ───────────────────────────────────────── +DROP TRIGGER IF EXISTS tau_seasons_awards ON public.seasons; +DROP FUNCTION IF EXISTS public.tau_seasons_awards(); +DROP FUNCTION IF EXISTS public.calculate_season_awards(uuid); + +DO $$ +BEGIN + IF to_regclass('migration_hashes.hashes') IS NOT NULL THEN + DELETE FROM migration_hashes.hashes + WHERE name IN ( + 'hasura/enums/award-sources', + 'hasura/functions/seasons/calculate_season_awards', + 'hasura/triggers/seasons_awards' + ); + END IF; +END $$; + +DELETE FROM public.awards + WHERE system_key IN + ('season_mvp', 'season_gold', 'season_silver', 'season_bronze'); + +DROP INDEX IF EXISTS public.award_recipients_season_player_key; +DROP INDEX IF EXISTS public.idx_award_recipients_season; + +ALTER TABLE public.award_recipients DROP COLUMN IF EXISTS season_id; + +DELETE FROM public.e_award_sources WHERE value = 'season'; + +-- ── from 1873000000300_award_scopes ───────────────────────────────────────── +ALTER TABLE public.awards + DROP CONSTRAINT IF EXISTS awards_single_scope_check; + +DROP INDEX IF EXISTS public.idx_awards_league_season; +DROP INDEX IF EXISTS public.idx_awards_season; +DROP INDEX IF EXISTS public.idx_awards_event; + +ALTER TABLE public.awards + DROP COLUMN IF EXISTS league_season_id, + DROP COLUMN IF EXISTS season_id, + DROP COLUMN IF EXISTS event_id; + +DO $$ +BEGIN + IF NOT EXISTS ( + SELECT 1 FROM pg_constraint + WHERE conrelid = 'public.awards'::regclass + AND conname = 'awards_system_award_is_shared_check' + ) THEN + ALTER TABLE public.awards + ADD CONSTRAINT awards_system_award_is_shared_check + CHECK (system_key IS NULL OR tournament_id IS NULL); + END IF; +END $$; + +-- ── from 1873000000200_award_tournament_owner ───────────────────────────────────────── +ALTER TABLE public.awards + DROP CONSTRAINT IF EXISTS awards_system_award_is_shared_check; + +DROP INDEX IF EXISTS public.idx_awards_tournament; + +ALTER TABLE public.awards + DROP COLUMN IF EXISTS tournament_id; + +-- ── from 1873000000100_awards ───────────────────────────────────────── +-- These are created in later boot phases (hasura/functions, hasura/triggers) +-- and are not reverted by re-running migrations, so they must be dropped here +-- before the tables they depend on. +DROP TRIGGER IF EXISTS tau_tournaments_awards ON public.tournaments; +DROP FUNCTION IF EXISTS public.tau_tournaments_awards(); +DROP TRIGGER IF EXISTS tbi_award_recipients ON public.award_recipients; +DROP FUNCTION IF EXISTS public.tbi_award_recipients(); +DROP TRIGGER IF EXISTS tbd_awards ON public.awards; +DROP FUNCTION IF EXISTS public.tbd_awards(); +DROP FUNCTION IF EXISTS public.calculate_tournament_awards(uuid); +DROP FUNCTION IF EXISTS public.resolve_tournament_award(uuid, int); +DROP FUNCTION IF EXISTS public.recalculate_tournament_awards(uuid); +DROP FUNCTION IF EXISTS public._leaderboard_awards(INT, TEXT, 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 functions/triggers gone. The setting name is the +-- cwd-relative path minus ".sql". +DO $$ +BEGIN + IF to_regclass('migration_hashes.hashes') IS NOT NULL THEN + DELETE FROM migration_hashes.hashes + WHERE name IN ( + 'hasura/enums/award-tiers', + 'hasura/enums/award-sources', + 'hasura/functions/tournaments/calculate_tournament_awards', + 'hasura/functions/tournaments/recalculate_tournament_awards', + 'hasura/functions/tournaments/reset_tournament_match', + 'hasura/functions/leaderboard/get_leaderboard', + 'hasura/triggers/tournaments', + 'hasura/triggers/award_recipients', + 'hasura/triggers/awards' + ); + END IF; +END $$; + +DROP INDEX IF EXISTS public.idx_award_recipients_source; +DROP INDEX IF EXISTS public.idx_award_recipients_award; +DROP INDEX IF EXISTS public.award_recipients_one_mvp_per_tournament; + +DELETE FROM public.award_recipients WHERE tournament_id IS NULL OR placement IS NULL; + +ALTER TABLE public.award_recipients + DROP CONSTRAINT IF EXISTS award_recipients_tournament_team_requires_tournament_check; + +ALTER TABLE public.award_recipients + ADD COLUMN IF NOT EXISTS manual boolean NOT NULL DEFAULT false; + +UPDATE public.award_recipients SET manual = (source = 'manual'); + +ALTER TABLE public.award_recipients + DROP COLUMN IF EXISTS award_id, + DROP COLUMN IF EXISTS source, + DROP COLUMN IF EXISTS awarded_by_steam_id, + DROP COLUMN IF EXISTS note; + +ALTER TABLE public.award_recipients + ALTER COLUMN tournament_id SET NOT NULL, + ALTER COLUMN tournament_team_id SET NOT NULL, + ALTER COLUMN placement SET NOT NULL; + +ALTER TABLE public.tournament_awards + DROP COLUMN IF EXISTS award_id; + +DO $$ +DECLARE + v_rename record; +BEGIN + FOR v_rename IN + SELECT * FROM (VALUES + ('award_recipients_one_recipient_check', 'tournament_trophies_one_recipient_check'), + ('award_recipients_mvp_requires_player_check', 'tournament_trophies_mvp_requires_player_check'), + ('award_recipients_pkey', 'tournament_trophies_pkey'), + ('award_recipients_placement_check', 'tournament_trophies_placement_check'), + ('tournament_awards_pkey', 'tournament_trophy_configs_pkey'), + ('tournament_awards_placement_check', 'tournament_trophy_configs_placement_check'), + ('tournament_awards_silhouette_check', 'tournament_trophy_configs_silhouette_check'), + ('tournament_awards_tournament_id_placement_key', 'tournament_trophy_configs_tournament_id_placement_key') + ) AS t(old_name, new_name) + LOOP + IF EXISTS (SELECT 1 FROM pg_constraint WHERE conname = v_rename.old_name) + AND NOT EXISTS (SELECT 1 FROM pg_constraint WHERE conname = v_rename.new_name) THEN + EXECUTE format( + 'ALTER TABLE public.%I RENAME CONSTRAINT %I TO %I', + CASE WHEN v_rename.old_name LIKE 'tournament_awards%' + THEN 'tournament_awards' ELSE 'award_recipients' END, + v_rename.old_name, v_rename.new_name); + END IF; + END LOOP; + + FOR v_rename IN + SELECT * FROM (VALUES + ('idx_award_recipients_player', 'idx_tournament_trophies_player'), + ('idx_award_recipients_tournament', 'idx_tournament_trophies_tournament'), + ('idx_award_recipients_team', 'idx_tournament_trophies_team'), + ('award_recipients_player_recipient_key', 'tournament_trophies_player_recipient_key'), + ('award_recipients_team_recipient_key', 'tournament_trophies_team_recipient_key'), + ('idx_tournament_awards_tournament', 'idx_tournament_trophy_configs_tournament') + ) AS t(old_name, new_name) + LOOP + IF to_regclass('public.' || v_rename.old_name) IS NOT NULL + AND to_regclass('public.' || v_rename.new_name) IS NULL THEN + EXECUTE format('ALTER INDEX public.%I RENAME TO %I', v_rename.old_name, v_rename.new_name); + END IF; + END LOOP; +END $$; + +ALTER TABLE public.award_recipients RENAME TO tournament_trophies; +ALTER TABLE public.tournament_awards RENAME TO tournament_trophy_configs; + +CREATE UNIQUE INDEX IF NOT EXISTS tournament_trophies_one_mvp_per_tournament + ON public.tournament_trophies(tournament_id) + WHERE placement = 0; + +ALTER TABLE public.tournaments RENAME COLUMN awards_enabled TO trophies_enabled; + +DROP TABLE IF EXISTS public.awards; +DROP TABLE IF EXISTS public.e_award_sources; +DROP TABLE IF EXISTS public.e_award_tiers; + diff --git a/hasura/migrations/default/1873000000600_awards/up.sql b/hasura/migrations/default/1873000000600_awards/up.sql new file mode 100644 index 00000000..1d06585e --- /dev/null +++ b/hasura/migrations/default/1873000000600_awards/up.sql @@ -0,0 +1,313 @@ +-- Awards: catalog + recipients, scopes, and season placements. +-- Squashed from the original award migrations; every statement is +-- idempotent so it applies to a fresh database and to one that already +-- ran the earlier split versions. + +-- ── from 1873000000100_awards ───────────────────────────────────────── +-- Awards: promote tournament trophies into a first-class awards system. +-- +-- tournament_trophies fused two ideas: what the award IS (name / artwork) and +-- WHO holds it. Splitting them lets awards be authored on their own and handed +-- out outside a tournament, while tournament placements stay automated. + +CREATE TABLE IF NOT EXISTS public.e_award_tiers ( + value text NOT NULL PRIMARY KEY, + description text NOT NULL +); + +INSERT INTO public.e_award_tiers (value, description) VALUES + ('mvp', 'Most valuable player'), + ('gold', 'First place'), + ('silver', 'Second place'), + ('bronze', 'Third place'), + ('special', 'Standalone award') +ON CONFLICT (value) DO NOTHING; + +CREATE TABLE IF NOT EXISTS public.e_award_sources ( + value text NOT NULL PRIMARY KEY, + description text NOT NULL +); + +INSERT INTO public.e_award_sources (value, description) VALUES + ('tournament', 'Calculated from a tournament placement'), + ('manual', 'Granted by hand') +ON CONFLICT (value) DO NOTHING; + +CREATE TABLE IF NOT EXISTS public.awards ( + id uuid NOT NULL DEFAULT gen_random_uuid() PRIMARY KEY, + name text NOT NULL, + description text, + tier text NOT NULL DEFAULT 'special' + REFERENCES public.e_award_tiers(value), + silhouette int CHECK (silhouette IS NULL OR (silhouette >= 0 AND silhouette <= 4)), + image_url text, + -- Set only on the seeded awards the tournament automation falls back to. + -- These cannot be deleted; everything else in the catalog can. + system_key text UNIQUE, + allow_multiple boolean NOT NULL DEFAULT false, + created_by_steam_id bigint REFERENCES public.players(steam_id) ON DELETE SET NULL, + created_at timestamptz NOT NULL DEFAULT now(), + updated_at timestamptz NOT NULL DEFAULT now() +); + +INSERT INTO public.awards (name, description, tier, system_key, allow_multiple) VALUES + ('Tournament MVP', 'Best performer on the winning roster', 'mvp', 'tournament_mvp', true), + ('Tournament Champion', 'Won the tournament', 'gold', 'tournament_gold', true), + ('Tournament Runner-Up', 'Finished second', 'silver', 'tournament_silver', true), + ('Tournament Third Place', 'Finished third', 'bronze', 'tournament_bronze', true) +ON CONFLICT (system_key) DO NOTHING; + +-- The boot phases that re-create functions/triggers run AFTER migrations, so a +-- trigger left bound to the old name would fire against a table that no longer +-- exists and break every tournament UPDATE in the window between the two. +DROP TRIGGER IF EXISTS tau_tournaments_trophies ON public.tournaments; +DROP FUNCTION IF EXISTS public.tau_tournaments_trophies(); +DROP FUNCTION IF EXISTS public.calculate_tournament_trophies(uuid); +DROP FUNCTION IF EXISTS public.recalculate_tournament_trophies(uuid); +DROP FUNCTION IF EXISTS public._leaderboard_trophies(INT, TEXT, UUID); + +DO $$ +BEGIN + IF to_regclass('public.tournament_trophies') IS NOT NULL + AND to_regclass('public.award_recipients') IS NULL THEN + ALTER TABLE public.tournament_trophies RENAME TO award_recipients; + END IF; + + IF to_regclass('public.tournament_trophy_configs') IS NOT NULL + AND to_regclass('public.tournament_awards') IS NULL THEN + ALTER TABLE public.tournament_trophy_configs RENAME TO tournament_awards; + END IF; +END $$; + +DO $$ +BEGIN + IF EXISTS ( + SELECT 1 FROM information_schema.columns + WHERE table_schema = 'public' + AND table_name = 'tournaments' + AND column_name = 'trophies_enabled' + ) THEN + ALTER TABLE public.tournaments RENAME COLUMN trophies_enabled TO awards_enabled; + END IF; +END $$; + +ALTER TABLE public.tournaments + ADD COLUMN IF NOT EXISTS awards_enabled boolean NOT NULL DEFAULT true; + +ALTER TABLE public.tournament_awards + ADD COLUMN IF NOT EXISTS award_id uuid REFERENCES public.awards(id) ON DELETE SET NULL; + +ALTER TABLE public.award_recipients + ADD COLUMN IF NOT EXISTS award_id uuid REFERENCES public.awards(id) ON DELETE CASCADE, + ADD COLUMN IF NOT EXISTS source text REFERENCES public.e_award_sources(value), + ADD COLUMN IF NOT EXISTS awarded_by_steam_id bigint REFERENCES public.players(steam_id) ON DELETE SET NULL, + ADD COLUMN IF NOT EXISTS note text; + +UPDATE public.award_recipients recipient + SET award_id = award.id + FROM public.awards award + WHERE recipient.award_id IS NULL + AND award.system_key = CASE recipient.placement + WHEN 0 THEN 'tournament_mvp' + WHEN 1 THEN 'tournament_gold' + WHEN 2 THEN 'tournament_silver' + WHEN 3 THEN 'tournament_bronze' + END; + +DO $$ +BEGIN + IF EXISTS ( + SELECT 1 FROM information_schema.columns + WHERE table_schema = 'public' + AND table_name = 'award_recipients' + AND column_name = 'manual' + ) THEN + UPDATE public.award_recipients + SET source = CASE WHEN manual THEN 'manual' ELSE 'tournament' END + WHERE source IS NULL; + + ALTER TABLE public.award_recipients DROP COLUMN manual; + END IF; +END $$; + +UPDATE public.award_recipients SET source = 'tournament' WHERE source IS NULL; + +ALTER TABLE public.award_recipients + ALTER COLUMN award_id SET NOT NULL, + ALTER COLUMN source SET NOT NULL, + ALTER COLUMN source SET DEFAULT 'manual', + ALTER COLUMN tournament_id DROP NOT NULL, + ALTER COLUMN tournament_team_id DROP NOT NULL, + ALTER COLUMN placement DROP NOT NULL; + +-- A tournament team only means anything alongside its tournament. +DO $$ +BEGIN + IF NOT EXISTS ( + SELECT 1 FROM pg_constraint + WHERE conrelid = 'public.award_recipients'::regclass + AND conname = 'award_recipients_tournament_team_requires_tournament_check' + ) THEN + ALTER TABLE public.award_recipients + ADD CONSTRAINT award_recipients_tournament_team_requires_tournament_check + CHECK (tournament_team_id IS NULL OR tournament_id IS NOT NULL); + END IF; +END $$; + +DO $$ +DECLARE + v_rename record; +BEGIN + FOR v_rename IN + SELECT * FROM (VALUES + ('tournament_trophies_one_recipient_check', 'award_recipients_one_recipient_check'), + ('tournament_trophies_mvp_requires_player_check', 'award_recipients_mvp_requires_player_check'), + ('tournament_trophies_pkey', 'award_recipients_pkey'), + ('tournament_trophies_placement_check', 'award_recipients_placement_check'), + ('tournament_trophy_configs_pkey', 'tournament_awards_pkey'), + ('tournament_trophy_configs_placement_check', 'tournament_awards_placement_check'), + ('tournament_trophy_configs_silhouette_check', 'tournament_awards_silhouette_check'), + ('tournament_trophy_configs_tournament_id_placement_key', 'tournament_awards_tournament_id_placement_key') + ) AS t(old_name, new_name) + LOOP + IF EXISTS (SELECT 1 FROM pg_constraint WHERE conname = v_rename.old_name) + AND NOT EXISTS (SELECT 1 FROM pg_constraint WHERE conname = v_rename.new_name) THEN + EXECUTE format( + 'ALTER TABLE public.%I RENAME CONSTRAINT %I TO %I', + CASE WHEN v_rename.old_name LIKE 'tournament_trophy_configs%' + THEN 'tournament_awards' ELSE 'award_recipients' END, + v_rename.old_name, v_rename.new_name); + END IF; + END LOOP; + + FOR v_rename IN + SELECT * FROM (VALUES + ('idx_tournament_trophies_player', 'idx_award_recipients_player'), + ('idx_tournament_trophies_tournament', 'idx_award_recipients_tournament'), + ('idx_tournament_trophies_team', 'idx_award_recipients_team'), + ('tournament_trophies_player_recipient_key', 'award_recipients_player_recipient_key'), + ('tournament_trophies_team_recipient_key', 'award_recipients_team_recipient_key'), + ('idx_tournament_trophy_configs_tournament', 'idx_tournament_awards_tournament') + ) AS t(old_name, new_name) + LOOP + IF to_regclass('public.' || v_rename.old_name) IS NOT NULL + AND to_regclass('public.' || v_rename.new_name) IS NULL THEN + EXECUTE format('ALTER INDEX public.%I RENAME TO %I', v_rename.old_name, v_rename.new_name); + END IF; + END LOOP; +END $$; + +-- Placement-less awards have no tournament, so the MVP guard must not collapse +-- them onto a single NULL bucket. +DROP INDEX IF EXISTS public.tournament_trophies_one_mvp_per_tournament; +CREATE UNIQUE INDEX IF NOT EXISTS award_recipients_one_mvp_per_tournament + ON public.award_recipients(tournament_id) + WHERE placement = 0 AND tournament_id IS NOT NULL; + +CREATE INDEX IF NOT EXISTS idx_award_recipients_award + ON public.award_recipients(award_id); +CREATE INDEX IF NOT EXISTS idx_award_recipients_source + ON public.award_recipients(tournament_id, source); + +-- ── from 1873000000200_award_tournament_owner ───────────────────────────────────────── +-- Awards authored from inside a tournament remember where they came from, so +-- the catalog can group them and other tournaments' pickers can hide them. +-- Nullable: catalog awards created from the awards page stay shared, and the +-- seeded system awards are never owned by anyone. +ALTER TABLE public.awards + ADD COLUMN IF NOT EXISTS tournament_id uuid + REFERENCES public.tournaments(id) ON DELETE SET NULL; + +-- Deleting the tournament must not take the award (and every grant hanging off +-- it) with it, hence SET NULL above: the award simply becomes unaffiliated. +CREATE INDEX IF NOT EXISTS idx_awards_tournament + ON public.awards(tournament_id) + WHERE tournament_id IS NOT NULL; + +-- A built-in is shared by definition. +DO $$ +BEGIN + IF NOT EXISTS ( + SELECT 1 FROM pg_constraint + WHERE conrelid = 'public.awards'::regclass + AND conname = 'awards_system_award_is_shared_check' + ) THEN + ALTER TABLE public.awards + ADD CONSTRAINT awards_system_award_is_shared_check + CHECK (system_key IS NULL OR tournament_id IS NULL); + END IF; +END $$; + +-- ── from 1873000000300_award_scopes ───────────────────────────────────────── +-- Awards can be scoped to whatever they were created for. Separate nullable +-- FKs rather than a (scope_type, scope_id) pair so Postgres still enforces +-- referential integrity and Hasura can expose a real relationship per scope. +-- +-- There is no `leagues` table (the platform runs one global league), so the +-- league-shaped scope hangs off league_seasons. +ALTER TABLE public.awards + ADD COLUMN IF NOT EXISTS event_id uuid + REFERENCES public.events(id) ON DELETE SET NULL, + ADD COLUMN IF NOT EXISTS season_id uuid + REFERENCES public.seasons(id) ON DELETE SET NULL, + ADD COLUMN IF NOT EXISTS league_season_id uuid + REFERENCES public.league_seasons(id) ON DELETE SET NULL; + +CREATE INDEX IF NOT EXISTS idx_awards_event + ON public.awards(event_id) WHERE event_id IS NOT NULL; +CREATE INDEX IF NOT EXISTS idx_awards_season + ON public.awards(season_id) WHERE season_id IS NOT NULL; +CREATE INDEX IF NOT EXISTS idx_awards_league_season + ON public.awards(league_season_id) WHERE league_season_id IS NOT NULL; + +-- Superseded by the all-scopes check below. +ALTER TABLE public.awards + DROP CONSTRAINT IF EXISTS awards_system_award_is_shared_check; + +DO $$ +BEGIN + IF NOT EXISTS ( + SELECT 1 FROM pg_constraint + WHERE conrelid = 'public.awards'::regclass + AND conname = 'awards_single_scope_check' + ) THEN + ALTER TABLE public.awards + ADD CONSTRAINT awards_single_scope_check + CHECK ( + (CASE WHEN tournament_id IS NULL THEN 0 ELSE 1 END) + + (CASE WHEN event_id IS NULL THEN 0 ELSE 1 END) + + (CASE WHEN season_id IS NULL THEN 0 ELSE 1 END) + + (CASE WHEN league_season_id IS NULL THEN 0 ELSE 1 END) + <= CASE WHEN system_key IS NULL THEN 1 ELSE 0 END + ); + END IF; +END $$; + +-- ── from 1873000000500_season_awards ───────────────────────────────────────── +-- Season placements are calculated the same way tournament placements are, so +-- the recipient row needs to record which season it came from. Without this a +-- shared system award could not say which season it was won in. +ALTER TABLE public.award_recipients + ADD COLUMN IF NOT EXISTS season_id uuid + REFERENCES public.seasons(id) ON DELETE CASCADE; + +CREATE INDEX IF NOT EXISTS idx_award_recipients_season + ON public.award_recipients(season_id, source) + WHERE season_id IS NOT NULL; + +-- Keeps a recalculation idempotent, mirroring the tournament recipient keys. +CREATE UNIQUE INDEX IF NOT EXISTS award_recipients_season_player_key + ON public.award_recipients(season_id, player_steam_id, placement) + WHERE season_id IS NOT NULL AND player_steam_id IS NOT NULL; + +INSERT INTO public.e_award_sources (value, description) VALUES + ('season', 'Calculated from a season standing') +ON CONFLICT (value) DO NOTHING; + +INSERT INTO public.awards (name, description, tier, system_key, allow_multiple) VALUES + ('Season MVP', 'Highest impact across the season', 'mvp', 'season_mvp', true), + ('Season Champion', 'Finished the season top of the ladder', 'gold', 'season_gold', true), + ('Season Runner-Up', 'Finished the season second', 'silver', 'season_silver', true), + ('Season Third Place', 'Finished the season third', 'bronze', 'season_bronze', true) +ON CONFLICT (system_key) DO NOTHING; + diff --git a/hasura/triggers/award_recipients.sql b/hasura/triggers/award_recipients.sql new file mode 100644 index 00000000..8706bc6c --- /dev/null +++ b/hasura/triggers/award_recipients.sql @@ -0,0 +1,49 @@ +-- Duplicate protection for hand-granted awards. This cannot be a partial +-- unique index: whether repeats are allowed lives on awards.allow_multiple. +-- +-- The partial unique keys on (tournament_id, tournament_team_id, recipient, +-- placement) only bind when every column is present, so they do not cover a +-- hand-granted row — those carry a NULL placement, and a NULL +-- tournament_team_id whenever the recipient never appeared on a roster. NULLs +-- are distinct in a unique index, so without this trigger the same award could +-- be granted to the same recipient repeatedly. +CREATE OR REPLACE FUNCTION public.tbi_award_recipients() RETURNS TRIGGER + LANGUAGE plpgsql + AS $$ +DECLARE + _allow_multiple boolean; +BEGIN + IF NEW.source IS DISTINCT FROM 'manual' THEN + RETURN NEW; + END IF; + + SELECT allow_multiple INTO _allow_multiple + FROM public.awards WHERE id = NEW.award_id; + + IF _allow_multiple IS DISTINCT FROM false THEN + RETURN NEW; + END IF; + + IF EXISTS ( + SELECT 1 FROM public.award_recipients existing + WHERE existing.award_id = NEW.award_id + AND existing.source = 'manual' + AND existing.tournament_id IS NOT DISTINCT FROM NEW.tournament_id + AND existing.id IS DISTINCT FROM NEW.id + AND ( + (NEW.player_steam_id IS NOT NULL AND existing.player_steam_id = NEW.player_steam_id) + OR (NEW.team_id IS NOT NULL AND existing.team_id = NEW.team_id) + ) + ) THEN + RAISE EXCEPTION 'Award already granted to this recipient'; + END IF; + + RETURN NEW; +END; +$$; + +DROP TRIGGER IF EXISTS tbi_award_recipients ON public.award_recipients; +CREATE TRIGGER tbi_award_recipients + BEFORE INSERT ON public.award_recipients + FOR EACH ROW + EXECUTE FUNCTION public.tbi_award_recipients(); diff --git a/hasura/triggers/awards.sql b/hasura/triggers/awards.sql new file mode 100644 index 00000000..52cc660d --- /dev/null +++ b/hasura/triggers/awards.sql @@ -0,0 +1,22 @@ +-- The system_key awards are what resolve_tournament_award falls back to when a +-- placement has no override. Delete one and calculate_tournament_awards starts +-- inserting a NULL award_id, so finishing a tournament fails outright. The +-- delete action already refuses, but guard the table too: a raw SQL delete or a +-- future code path must not be able to break tournament completion. +CREATE OR REPLACE FUNCTION public.tbd_awards() RETURNS TRIGGER + LANGUAGE plpgsql + AS $$ +BEGIN + IF OLD.system_key IS NOT NULL THEN + RAISE EXCEPTION 'Built-in award "%" cannot be deleted', OLD.system_key; + END IF; + + RETURN OLD; +END; +$$; + +DROP TRIGGER IF EXISTS tbd_awards ON public.awards; +CREATE TRIGGER tbd_awards + BEFORE DELETE ON public.awards + FOR EACH ROW + EXECUTE FUNCTION public.tbd_awards(); diff --git a/hasura/triggers/seasons_awards.sql b/hasura/triggers/seasons_awards.sql new file mode 100644 index 00000000..41758c5e --- /dev/null +++ b/hasura/triggers/seasons_awards.sql @@ -0,0 +1,26 @@ +-- A season has no status column, so "ended" is ends_at moving into the past. +-- Reopening a season (clearing ends_at or pushing it forward) drops the +-- calculated rows so they can be reseated when it ends again. +CREATE OR REPLACE FUNCTION public.tau_seasons_awards() RETURNS TRIGGER + LANGUAGE plpgsql + AS $$ +DECLARE + _was_over boolean := OLD.ends_at IS NOT NULL AND OLD.ends_at <= now(); + _is_over boolean := NEW.ends_at IS NOT NULL AND NEW.ends_at <= now(); +BEGIN + IF _is_over AND NOT _was_over THEN + PERFORM public.calculate_season_awards(NEW.id); + ELSIF _was_over AND NOT _is_over THEN + DELETE FROM public.award_recipients + WHERE season_id = NEW.id AND source = 'season'; + END IF; + + RETURN NEW; +END; +$$; + +DROP TRIGGER IF EXISTS tau_seasons_awards ON public.seasons; +CREATE TRIGGER tau_seasons_awards + AFTER UPDATE ON public.seasons + FOR EACH ROW + EXECUTE FUNCTION public.tau_seasons_awards(); diff --git a/hasura/triggers/tournaments.sql b/hasura/triggers/tournaments.sql index ad4880b9..3c72c087 100644 --- a/hasura/triggers/tournaments.sql +++ b/hasura/triggers/tournaments.sql @@ -211,27 +211,27 @@ CREATE TRIGGER tbi_tournaments FOR EACH ROW EXECUTE FUNCTION public.tbi_tournaments(); -CREATE OR REPLACE FUNCTION public.tau_tournaments_trophies() RETURNS TRIGGER +CREATE OR REPLACE FUNCTION public.tau_tournaments_awards() RETURNS TRIGGER LANGUAGE plpgsql AS $$ BEGIN IF NEW.status = 'Finished' AND OLD.status IS DISTINCT FROM 'Finished' THEN - PERFORM public.calculate_tournament_trophies(NEW.id); + PERFORM public.calculate_tournament_awards(NEW.id); ELSIF OLD.status = 'Finished' AND NEW.status IS DISTINCT FROM 'Finished' THEN - -- Manual awards survive status rollbacks; only the auto-calculated + -- Hand-granted awards survive status rollbacks; only the auto-calculated -- placements drop so recalc can reseat them on the next finish. - DELETE FROM public.tournament_trophies - WHERE tournament_id = OLD.id AND manual = false; + DELETE FROM public.award_recipients + WHERE tournament_id = OLD.id AND source = 'tournament'; END IF; - -- Trophies toggle: clearing it wipes the auto placements; turning it + -- Awards toggle: clearing it wipes the auto placements; turning it -- back on for a finished tournament rebuilds them. - IF NEW.trophies_enabled IS DISTINCT FROM OLD.trophies_enabled THEN - IF NEW.trophies_enabled = false THEN - DELETE FROM public.tournament_trophies - WHERE tournament_id = NEW.id AND manual = false; + IF NEW.awards_enabled IS DISTINCT FROM OLD.awards_enabled THEN + IF NEW.awards_enabled = false THEN + DELETE FROM public.award_recipients + WHERE tournament_id = NEW.id AND source = 'tournament'; ELSIF NEW.status = 'Finished' THEN - PERFORM public.calculate_tournament_trophies(NEW.id); + PERFORM public.calculate_tournament_awards(NEW.id); END IF; END IF; @@ -240,7 +240,10 @@ END; $$; DROP TRIGGER IF EXISTS tau_tournaments_trophies ON public.tournaments; -CREATE TRIGGER tau_tournaments_trophies +DROP FUNCTION IF EXISTS public.tau_tournaments_trophies(); + +DROP TRIGGER IF EXISTS tau_tournaments_awards ON public.tournaments; +CREATE TRIGGER tau_tournaments_awards AFTER UPDATE ON public.tournaments FOR EACH ROW - EXECUTE FUNCTION public.tau_tournaments_trophies(); + EXECUTE FUNCTION public.tau_tournaments_awards(); diff --git a/hasura/views/v_team_stage_results_compute.sql b/hasura/views/v_team_stage_results_compute.sql index 380f1b03..4fb7234d 100644 --- a/hasura/views/v_team_stage_results_compute.sql +++ b/hasura/views/v_team_stage_results_compute.sql @@ -9,7 +9,7 @@ -- disagree: -- - `rank` : ROW_NUMBER, unique & deterministic. Used by the UI display -- and by get_team_at_stage_rank() for OFFSET-based seeding. --- - `placement` : RANK, ties allowed. Used by calculate_tournament_trophies() +-- - `placement` : RANK, ties allowed. Used by calculate_tournament_awards() -- so multiple teams sharing a final-stage placement suppress -- the bronze award when appropriate. -- @@ -375,7 +375,7 @@ stage_rows AS NOT MATERIALIZED ( ) -- Column order MUST keep the original 16 columns first (tournament_team_id .. -- group_number) and `rank` next so existing consumers (UI, get_team_at_stage_rank) --- keep working. `placement` is appended at the end for the trophy calculator. +-- keep working. `placement` is appended at the end for the award calculator. SELECT sr.tournament_team_id, sr.tournament_stage_id, diff --git a/src/app.module.ts b/src/app.module.ts index 4fcc3ca7..c277b73c 100644 --- a/src/app.module.ts +++ b/src/app.module.ts @@ -46,7 +46,7 @@ import { K8sModule } from "./k8s/k8s.module"; import { FileManagerModule } from "./file-manager/file-manager.module"; import { BrandingModule } from "./branding/branding.module"; import { AvatarsModule } from "./avatars/avatars.module"; -import { TrophiesModule } from "./trophies/trophies.module"; +import { AwardsModule } from "./awards/awards.module"; import { FixturesModule } from "./fixtures/fixtures.module"; import { TournamentsModule } from "./tournaments/tournaments.module"; import { FaceitModule } from "./faceit/faceit.module"; @@ -143,7 +143,7 @@ import { PluginsModule } from "./plugins/plugins.module"; FileManagerModule, BrandingModule, AvatarsModule, - TrophiesModule, + AwardsModule, FixturesModule, TournamentsModule, FaceitModule, diff --git a/src/awards/awards.controller.ts b/src/awards/awards.controller.ts new file mode 100644 index 00000000..22222573 --- /dev/null +++ b/src/awards/awards.controller.ts @@ -0,0 +1,266 @@ +import { + Controller, + Post, + Get, + Delete, + Param, + UploadedFile, + UseInterceptors, + ParseFilePipe, + MaxFileSizeValidator, + FileTypeValidator, + ParseIntPipe, + Req, + Res, + ForbiddenException, + NotFoundException, +} from "@nestjs/common"; +import { FileInterceptor } from "@nestjs/platform-express"; +import { Request, Response } from "express"; +import { HasuraAction } from "../hasura/hasura.controller"; +import { SystemService } from "src/system/system.service"; +import { SystemSettingName } from "src/system/enums/SystemSettingName"; +import { isRoleAbove } from "src/utilities/isRoleAbove"; +import { e_player_roles_enum } from "generated"; +import { AwardsService } from "./awards.service"; +import { User } from "../auth/types/User"; + +// Image routes live under the /avatars prefix so award artwork reuses the +// ingress path already exposed for every other uploaded image; the Hasura +// actions below are dispatched by method name, not by route, so the prefix +// only affects the REST endpoints. AvatarsController owns no awards/* route. +@Controller("avatars") +export class AwardsController { + constructor( + private readonly awards: AwardsService, + private readonly system: SystemService, + ) {} + + @HasuraAction() + public async saveAward(data: { + id?: string | null; + name: string; + description?: string | null; + tier: string; + silhouette?: number | null; + allow_multiple?: boolean | null; + tournament_id?: string | null; + event_id?: string | null; + season_id?: string | null; + league_season_id?: string | null; + user?: User; + }) { + const user = await this.assertCanCreate(data.user); + // Scoping an award stamps ownership, so a tournament's bespoke awards do + // not clutter every other picker. Only a tournament has a delegated + // organizer role; the platform-wide scopes stay administrator-only. + if (data.tournament_id) { + await this.awards.requireOrganizer(data.tournament_id, user); + } + if ( + (data.event_id || data.season_id || data.league_season_id) && + user.role !== "administrator" + ) { + throw new ForbiddenException( + "Only administrators can scope an award to an event, season or league", + ); + } + return await this.awards.saveAward(data, user.steam_id); + } + + @HasuraAction() + public async deleteAward(data: { id: string; user?: User }) { + await this.assertCanCreate(data.user); + await this.awards.deleteAward(data.id); + return { success: true }; + } + + @HasuraAction() + public async grantAward(data: { + award_id: string; + player_steam_id?: string | null; + team_id?: string | null; + tournament_id?: string | null; + note?: string | null; + user?: User; + }) { + const user = await this.assertCanGrant(data.user, data.tournament_id); + return await this.awards.grantAward({ + award_id: data.award_id, + player_steam_id: data.player_steam_id, + team_id: data.team_id, + tournament_id: data.tournament_id, + note: data.note, + awarded_by_steam_id: user.steam_id, + }); + } + + @HasuraAction() + public async revokeAward(data: { id: string; user?: User }) { + const recipient = await this.awards.getRecipient(data.id); + await this.assertCanGrant(data.user, recipient.tournament_id); + await this.awards.revokeAward(data.id); + return { success: true }; + } + + @HasuraAction() + public async setTournamentAward(data: { + tournament_id: string; + placement: number; + award_id?: string | null; + custom_name?: string | null; + silhouette?: number | null; + user?: User; + }) { + const user = this.requireUser(data.user); + await this.awards.requireOrganizer(data.tournament_id, user); + return await this.awards.setTournamentAward(data); + } + + @Post("awards/:awardId") + @UseInterceptors(FileInterceptor("file")) + public async uploadAwardImage( + @Req() request: Request, + @Param("awardId") awardId: string, + @UploadedFile( + new ParseFilePipe({ + validators: [ + new MaxFileSizeValidator({ maxSize: 5 * 1024 * 1024 }), + new FileTypeValidator({ fileType: /image\/(png|jpeg|webp)/ }), + ], + }), + ) + file: Express.Multer.File, + ) { + await this.assertCanCreate(request.user as User | undefined); + const path = await this.awards.uploadAwardImage( + awardId, + file.buffer, + file.mimetype, + ); + return { success: true, path }; + } + + @Delete("awards/:awardId") + public async removeAwardImage( + @Req() request: Request, + @Param("awardId") awardId: string, + ) { + await this.assertCanCreate(request.user as User | undefined); + await this.awards.removeAwardImage(awardId); + return { success: true }; + } + + @Post("awards/tournament/:tournamentId/:placement") + @UseInterceptors(FileInterceptor("file")) + public async uploadTournamentAwardImage( + @Req() request: Request, + @Param("tournamentId") tournamentId: string, + @Param("placement", ParseIntPipe) placement: number, + @UploadedFile( + new ParseFilePipe({ + validators: [ + new MaxFileSizeValidator({ maxSize: 5 * 1024 * 1024 }), + new FileTypeValidator({ fileType: /image\/(png|jpeg|webp)/ }), + ], + }), + ) + file: Express.Multer.File, + ) { + const user = this.requireUser(request.user as User | undefined); + await this.awards.requireOrganizer(tournamentId, user); + const path = await this.awards.uploadTournamentAwardImage( + tournamentId, + placement, + file.buffer, + file.mimetype, + ); + return { success: true, path }; + } + + @Delete("awards/tournament/:tournamentId/:placement") + public async removeTournamentAwardImage( + @Req() request: Request, + @Param("tournamentId") tournamentId: string, + @Param("placement", ParseIntPipe) placement: number, + ) { + const user = this.requireUser(request.user as User | undefined); + await this.awards.requireOrganizer(tournamentId, user); + await this.awards.removeTournamentAwardImage(tournamentId, placement); + return { success: true }; + } + + @Get("awards/:filename") + public async serve( + @Param("filename") filename: string, + @Res() res: Response, + ) { + if (!/^[A-Za-z0-9._-]+$/.test(filename)) { + throw new NotFoundException("Award image not found"); + } + + const result = await this.awards.getStream(filename); + if (!result) { + throw new NotFoundException("Award image not found"); + } + + res.setHeader("Content-Type", result.contentType); + res.setHeader("Cache-Control", "public, max-age=31536000, immutable"); + if (result.etag) { + res.setHeader("ETag", result.etag); + } + + result.stream.pipe(res); + } + + private async assertCanCreate(user?: User): Promise { + const resolved = this.requireUser(user); + + const createRole = (await this.system.getSetting( + SystemSettingName.CreateAwardsRole, + "administrator", + )) as e_player_roles_enum; + + if (!isRoleAbove(resolved.role, createRole)) { + throw new ForbiddenException( + "You do not have permission to manage awards", + ); + } + + return resolved; + } + + // Tournament organizers can always hand out awards inside their own + // tournament, regardless of where the global grant floor sits. + private async assertCanGrant( + user: User | undefined, + tournamentId?: string | null, + ): Promise { + const resolved = this.requireUser(user); + + const grantRole = (await this.system.getSetting( + SystemSettingName.GrantAwardsRole, + "administrator", + )) as e_player_roles_enum; + + if (isRoleAbove(resolved.role, grantRole)) { + return resolved; + } + + if (!tournamentId) { + throw new ForbiddenException( + "You do not have permission to grant awards", + ); + } + + await this.awards.requireOrganizer(tournamentId, resolved); + return resolved; + } + + private requireUser(user?: User): User { + if (!user) { + throw new ForbiddenException("Authentication required"); + } + return user; + } +} diff --git a/src/awards/awards.module.ts b/src/awards/awards.module.ts new file mode 100644 index 00000000..4f96c7ad --- /dev/null +++ b/src/awards/awards.module.ts @@ -0,0 +1,16 @@ +import { Module } from "@nestjs/common"; +import { AwardsService } from "./awards.service"; +import { AwardsController } from "./awards.controller"; +import { TrophiesLegacyController } from "./trophies-legacy.controller"; +import { S3Module } from "../s3/s3.module"; +import { PostgresModule } from "../postgres/postgres.module"; +import { SystemModule } from "../system/system.module"; +import { loggerFactory } from "../utilities/LoggerFactory"; + +@Module({ + imports: [S3Module, PostgresModule, SystemModule], + providers: [AwardsService, loggerFactory()], + controllers: [AwardsController, TrophiesLegacyController], + exports: [AwardsService], +}) +export class AwardsModule {} diff --git a/src/awards/awards.service.ts b/src/awards/awards.service.ts new file mode 100644 index 00000000..e24edbeb --- /dev/null +++ b/src/awards/awards.service.ts @@ -0,0 +1,592 @@ +import crypto from "crypto"; +import { Readable } from "stream"; +import { + BadRequestException, + ForbiddenException, + Injectable, + Logger, + NotFoundException, +} from "@nestjs/common"; +import { S3Service } from "../s3/s3.service"; +import { PostgresService } from "../postgres/postgres.service"; +import { User } from "../auth/types/User"; + +const EXTENSION_BY_MIMETYPE: Record = { + "image/png": "png", + "image/jpeg": "jpg", + "image/webp": "webp", +}; + +const AWARD_TIERS = ["mvp", "gold", "silver", "bronze", "special"]; + +export interface AwardRow { + id: string; + name: string; + description: string | null; + tier: string; + silhouette: number | null; + image_url: string | null; + system_key: string | null; + allow_multiple: boolean; + tournament_id: string | null; + created_by_steam_id: string | null; + created_at: string; + updated_at: string; +} + +interface TournamentAwardRow { + id: string; + tournament_id: string; + placement: number; + award_id: string | null; + custom_name: string | null; + silhouette: number | null; + image_url: string | null; +} + +@Injectable() +export class AwardsService { + constructor( + private readonly logger: Logger, + private readonly s3: S3Service, + private readonly postgres: PostgresService, + ) {} + + public async listAwards(): Promise { + return await this.postgres.query( + `SELECT * FROM public.awards ORDER BY system_key NULLS LAST, name ASC`, + ); + } + + public async saveAward( + input: { + id?: string | null; + name: string; + description?: string | null; + tier: string; + silhouette?: number | null; + allow_multiple?: boolean | null; + tournament_id?: string | null; + event_id?: string | null; + season_id?: string | null; + league_season_id?: string | null; + }, + steamId: string, + ): Promise { + if (!AWARD_TIERS.includes(input.tier)) { + throw new BadRequestException("Invalid award tier"); + } + if (!input.name?.trim()) { + throw new BadRequestException("Award name is required"); + } + if (!this.isValidSilhouette(input.silhouette)) { + throw new BadRequestException("Invalid silhouette"); + } + + const scopes = [ + input.tournament_id, + input.event_id, + input.season_id, + input.league_season_id, + ].filter(Boolean); + if (scopes.length > 1) { + throw new BadRequestException("An award belongs to one scope at most"); + } + + if (!input.id) { + const [created] = await this.postgres.query( + `INSERT INTO public.awards + (name, description, tier, silhouette, allow_multiple, + created_by_steam_id, tournament_id, event_id, season_id, + league_season_id) + VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) + RETURNING *`, + [ + input.name.trim(), + input.description ?? null, + input.tier, + input.silhouette ?? null, + input.allow_multiple ?? false, + steamId, + input.tournament_id ?? null, + input.event_id ?? null, + input.season_id ?? null, + input.league_season_id ?? null, + ], + ); + return created; + } + + const [updated] = await this.postgres.query( + `UPDATE public.awards + SET name = $2, + description = $3, + tier = $4, + silhouette = $5, + allow_multiple = $6, + tournament_id = $7, + event_id = $8, + season_id = $9, + league_season_id = $10, + updated_at = now() + WHERE id = $1 + RETURNING *`, + [ + input.id, + input.name.trim(), + input.description ?? null, + input.tier, + input.silhouette ?? null, + input.allow_multiple ?? false, + input.tournament_id ?? null, + input.event_id ?? null, + input.season_id ?? null, + input.league_season_id ?? null, + ], + ); + + if (!updated) { + throw new NotFoundException("Award not found"); + } + + return updated; + } + + public async deleteAward(awardId: string): Promise { + const award = await this.requireAward(awardId); + + if (award.system_key) { + throw new ForbiddenException( + "Built-in tournament awards cannot be deleted", + ); + } + + if (award.image_url) { + await this.s3.remove(award.image_url); + } + + await this.postgres.query(`DELETE FROM public.awards WHERE id = $1`, [ + awardId, + ]); + } + + public async grantAward(input: { + award_id: string; + player_steam_id?: string | null; + team_id?: string | null; + tournament_id?: string | null; + note?: string | null; + awarded_by_steam_id: string; + }) { + const hasPlayer = !!input.player_steam_id; + const hasTeam = !!input.team_id; + + if (hasPlayer === hasTeam) { + throw new BadRequestException( + "An award goes to exactly one player or one team", + ); + } + + await this.requireAward(input.award_id); + + let tournamentTeamId: string | null = null; + if (input.tournament_id) { + tournamentTeamId = await this.resolveTournamentTeam( + input.tournament_id, + input.player_steam_id ?? null, + input.team_id ?? null, + ); + } + + const [granted] = await this.postgres.query>( + `INSERT INTO public.award_recipients + (award_id, player_steam_id, team_id, tournament_id, tournament_team_id, + source, awarded_by_steam_id, note) + VALUES ($1, $2, $3, $4, $5, 'manual', $6, $7) + RETURNING *`, + [ + input.award_id, + input.player_steam_id ?? null, + input.team_id ?? null, + input.tournament_id ?? null, + tournamentTeamId, + input.awarded_by_steam_id, + input.note ?? null, + ], + ); + + if (input.team_id) { + await this.grantToRoster(input, tournamentTeamId); + } + + return granted; + } + + public async getRecipient(recipientId: string) { + const [recipient] = await this.postgres.query< + Array<{ id: string; source: string; tournament_id: string | null }> + >( + `SELECT id, source, tournament_id + FROM public.award_recipients + WHERE id = $1 + LIMIT 1`, + [recipientId], + ); + + if (!recipient) { + throw new NotFoundException("Award grant not found"); + } + + return recipient; + } + + public async revokeAward(recipientId: string): Promise { + const recipient = await this.getRecipient(recipientId); + + if (recipient.source === "tournament") { + throw new ForbiddenException( + "Calculated tournament awards are managed by the tournament", + ); + } + + await this.postgres.query( + `DELETE FROM public.award_recipients WHERE id = $1`, + [recipientId], + ); + } + + public async setTournamentAward(input: { + tournament_id: string; + placement: number; + award_id?: string | null; + custom_name?: string | null; + silhouette?: number | null; + }): Promise { + if (!this.isValidPlacement(input.placement)) { + throw new BadRequestException("Invalid placement"); + } + if (!this.isValidSilhouette(input.silhouette)) { + throw new BadRequestException("Invalid silhouette"); + } + if (input.award_id) { + await this.requireAward(input.award_id); + } + + const [config] = await this.postgres.query( + `INSERT INTO public.tournament_awards + (tournament_id, placement, award_id, custom_name, silhouette) + VALUES ($1, $2, $3, $4, $5) + ON CONFLICT (tournament_id, placement) DO UPDATE + SET award_id = EXCLUDED.award_id, + custom_name = EXCLUDED.custom_name, + silhouette = EXCLUDED.silhouette, + updated_at = now() + RETURNING *`, + [ + input.tournament_id, + String(input.placement), + input.award_id ?? null, + input.custom_name ?? null, + input.silhouette ?? null, + ], + ); + + return config; + } + + public async uploadAwardImage( + awardId: string, + buffer: Buffer, + mimetype: string, + ): Promise { + const award = await this.requireAward(awardId); + const path = this.buildPath(awardId, mimetype); + + await this.s3.put(path, buffer); + + if (award.image_url && award.image_url !== path) { + await this.s3.remove(award.image_url); + } + + await this.postgres.query( + `UPDATE public.awards SET image_url = $1, updated_at = now() WHERE id = $2`, + [path, awardId], + ); + + this.logger.log(`Uploaded award ${awardId} image to ${path}`); + return path; + } + + public async removeAwardImage(awardId: string): Promise { + const award = await this.requireAward(awardId); + if (!award.image_url) { + return; + } + + await this.s3.remove(award.image_url); + await this.postgres.query( + `UPDATE public.awards SET image_url = NULL, updated_at = now() WHERE id = $1`, + [awardId], + ); + } + + public async uploadTournamentAwardImage( + tournamentId: string, + placement: number, + buffer: Buffer, + mimetype: string, + ): Promise { + if (!this.isValidPlacement(placement)) { + throw new BadRequestException("Invalid placement"); + } + + const existing = await this.getTournamentAward(tournamentId, placement); + const path = this.buildPath(`${tournamentId}-${placement}`, mimetype); + + await this.s3.put(path, buffer); + + if (existing?.image_url && existing.image_url !== path) { + await this.s3.remove(existing.image_url); + } + + if (existing) { + await this.postgres.query( + `UPDATE public.tournament_awards + SET image_url = $1, updated_at = now() + WHERE id = $2`, + [path, existing.id], + ); + } else { + await this.postgres.query( + `INSERT INTO public.tournament_awards + (tournament_id, placement, image_url) + VALUES ($1, $2, $3)`, + [tournamentId, String(placement), path], + ); + } + + this.logger.log( + `Uploaded tournament ${tournamentId} placement ${placement} award image to ${path}`, + ); + return path; + } + + public async removeTournamentAwardImage( + tournamentId: string, + placement: number, + ): Promise { + if (!this.isValidPlacement(placement)) { + throw new BadRequestException("Invalid placement"); + } + + const existing = await this.getTournamentAward(tournamentId, placement); + if (!existing) { + return; + } + + if (existing.image_url) { + await this.s3.remove(existing.image_url); + } + + await this.postgres.query( + `UPDATE public.tournament_awards + SET image_url = NULL, updated_at = now() + WHERE id = $1`, + [existing.id], + ); + } + + public async getStream( + filename: string, + ): Promise<{ stream: Readable; contentType: string; etag?: string } | null> { + // Images uploaded before the awards rename still live under `trophies/` + // and their keys are stored verbatim in image_url. + let key = `awards/${filename}`; + + if (!(await this.s3.has(key))) { + key = `trophies/${filename}`; + if (!(await this.s3.has(key))) { + return null; + } + } + + const [stream, stat] = await Promise.all([ + this.s3.get(key), + this.s3.stat(key), + ]); + + return { + stream, + contentType: + stat.metaData?.["content-type"] || this.guessContentType(filename), + etag: stat.etag, + }; + } + + public async requireOrganizer( + tournamentId: string, + user: User, + ): Promise { + const rows = await this.postgres.query< + Array<{ organizer_steam_id: string | null }> + >( + `SELECT organizer_steam_id + FROM public.tournaments + WHERE id = $1 + LIMIT 1`, + [tournamentId], + ); + + if (!rows || rows.length === 0) { + throw new ForbiddenException("Tournament not found"); + } + + const isOrganizer = + String(rows[0].organizer_steam_id) === String(user.steam_id); + + if (isOrganizer || user.role === "administrator") { + return; + } + + const coOrg = await this.postgres.query>( + `SELECT steam_id + FROM public.tournament_organizers + WHERE tournament_id = $1 AND steam_id = $2 + LIMIT 1`, + [tournamentId, user.steam_id], + ); + if (coOrg && coOrg.length > 0) { + return; + } + + throw new ForbiddenException("Not the tournament organizer"); + } + + private async requireAward(awardId: string): Promise { + const [award] = await this.postgres.query( + `SELECT * FROM public.awards WHERE id = $1 LIMIT 1`, + [awardId], + ); + + if (!award) { + throw new NotFoundException("Award not found"); + } + + return award; + } + + private async getTournamentAward( + tournamentId: string, + placement: number, + ): Promise { + const rows = await this.postgres.query( + `SELECT * FROM public.tournament_awards + WHERE tournament_id = $1 AND placement = $2 + LIMIT 1`, + [tournamentId, String(placement)], + ); + return rows?.[0] || null; + } + + // A team award has to reach the people on the team, otherwise it only ever + // shows on the team page. Tournament placements already work this way — the + // calculation writes one team row plus a row per roster player — so a + // hand-granted team award fans out the same way. Invites are skipped, and + // members who already hold the award are filtered out here rather than left + // to ON CONFLICT: tbi_award_recipients raises on a duplicate instead of + // conflicting, so one existing holder would otherwise fail the whole grant. + private async grantToRoster( + input: { + award_id: string; + team_id?: string | null; + tournament_id?: string | null; + note?: string | null; + awarded_by_steam_id: string; + }, + tournamentTeamId: string | null, + ): Promise { + await this.postgres.query( + `INSERT INTO public.award_recipients + (award_id, player_steam_id, tournament_id, tournament_team_id, + source, awarded_by_steam_id, note) + SELECT $1, roster.player_steam_id, $2, $3, 'manual', $4, $5 + FROM public.team_roster roster + WHERE roster.team_id = $6 + AND roster.role <> 'Invite' + AND NOT EXISTS ( + SELECT 1 FROM public.award_recipients held + WHERE held.award_id = $1 + AND held.player_steam_id = roster.player_steam_id + AND held.tournament_id IS NOT DISTINCT FROM $2 + )`, + [ + input.award_id, + input.tournament_id ?? null, + tournamentTeamId, + input.awarded_by_steam_id, + input.note ?? null, + input.team_id, + ], + ); + } + + // A tournament-scoped grant must name the entry the recipient played as: it + // keeps the award tied to an actual participant, and lets the partial unique + // keys dedupe the grant against the calculated rows. + private async resolveTournamentTeam( + tournamentId: string, + playerSteamId: string | null, + teamId: string | null, + ): Promise { + const rows = teamId + ? await this.postgres.query>( + `SELECT id FROM public.tournament_teams + WHERE tournament_id = $1 AND team_id = $2 + LIMIT 1`, + [tournamentId, teamId], + ) + : await this.postgres.query>( + `SELECT tournament_team_id AS id + FROM public.tournament_team_roster + WHERE tournament_id = $1 AND player_steam_id = $2 + LIMIT 1`, + [tournamentId, playerSteamId], + ); + + if (!rows || rows.length === 0) { + throw new BadRequestException("Recipient is not part of this tournament"); + } + + return rows[0].id; + } + + private isValidPlacement(placement: number): boolean { + return Number.isInteger(placement) && placement >= 0 && placement <= 3; + } + + private isValidSilhouette(silhouette?: number | null): boolean { + if (silhouette === null || silhouette === undefined) { + return true; + } + return Number.isInteger(silhouette) && silhouette >= 0 && silhouette <= 4; + } + + private buildPath(slug: string, mimetype: string): string { + const ext = EXTENSION_BY_MIMETYPE[mimetype] || "png"; + const hash = crypto.randomBytes(6).toString("hex"); + return `awards/${slug}-${hash}.${ext}`; + } + + private guessContentType(filename: string): string { + if (filename.endsWith(".png")) { + return "image/png"; + } + if (filename.endsWith(".jpg") || filename.endsWith(".jpeg")) { + return "image/jpeg"; + } + if (filename.endsWith(".webp")) { + return "image/webp"; + } + return "application/octet-stream"; + } +} diff --git a/src/awards/trophies-legacy.controller.ts b/src/awards/trophies-legacy.controller.ts new file mode 100644 index 00000000..18e3512a --- /dev/null +++ b/src/awards/trophies-legacy.controller.ts @@ -0,0 +1,33 @@ +import { Controller, Get, Param, Res, NotFoundException } from "@nestjs/common"; +import { Response } from "express"; +import { AwardsService } from "./awards.service"; + +// Award artwork uploaded before the awards rename is served immutable, so +// links to /trophies/ stay in caches and embeds indefinitely. +@Controller("trophies") +export class TrophiesLegacyController { + constructor(private readonly awards: AwardsService) {} + + @Get(":filename") + public async serve( + @Param("filename") filename: string, + @Res() res: Response, + ) { + if (!/^[A-Za-z0-9._-]+$/.test(filename)) { + throw new NotFoundException("Award image not found"); + } + + const result = await this.awards.getStream(filename); + if (!result) { + throw new NotFoundException("Award image not found"); + } + + res.setHeader("Content-Type", result.contentType); + res.setHeader("Cache-Control", "public, max-age=31536000, immutable"); + if (result.etag) { + res.setHeader("ETag", result.etag); + } + + result.stream.pipe(res); + } +} diff --git a/src/demos/demo-metadata.service.ts b/src/demos/demo-metadata.service.ts index 586ca700..2d912914 100644 --- a/src/demos/demo-metadata.service.ts +++ b/src/demos/demo-metadata.service.ts @@ -6,7 +6,7 @@ import { PostgresService } from "../postgres/postgres.service"; import { S3Service } from "../s3/s3.service"; import { DemoParserService, ParsedDemo } from "./demo-parser.service"; -export const DEMO_METADATA_VERSION = 8; +export const DEMO_METADATA_VERSION = 9; export type DemoRow = { id: string; @@ -716,6 +716,8 @@ export class DemoMetadataService { `${blob.positions.length} positions, ` + `${blob.shots_fired.length} shots, ` + `${blob.grenade_throws.length} grenade events, ` + + `${blob.smoke_volumes.length} smoke volumes, ` + + `${blob.infernos.length} infernos, ` + `${blob.damages.length} damages)`, ); return key; @@ -847,6 +849,8 @@ function buildPlaybackBlob(matchMapId: string, parsed: ParsedDemo) { shots_fired, grenade_throws, grenade_trajectories: parsed.grenade_trajectories ?? [], + smoke_volumes: parsed.smoke_volumes ?? [], + infernos: parsed.infernos ?? [], damages, round_inventory, }; diff --git a/src/demos/demo-parser.service.ts b/src/demos/demo-parser.service.ts index 8158bbc3..c7b04bf2 100644 --- a/src/demos/demo-parser.service.ts +++ b/src/demos/demo-parser.service.ts @@ -183,6 +183,38 @@ export type ParsedGrenadeEvent = { z?: number; }; +// One smoke's occupancy grid, derived by the parser from the map's collision +// mesh rather than assumed to be a sphere. `occ` is a base64 bitmask of +// dx*dy*dz bits, x-major then y then z: bit (k*dy + j)*dx + i is the cell whose +// minimum corner sits at (ox,oy,oz) + (i,j,k)*vs, in source units. +export type ParsedSmokeVolume = { + gid?: number; + round?: number; + start_tick: number; + end_tick?: number; + ox: number; + oy: number; + oz: number; + vs: number; + dx: number; + dy: number; + dz: number; + occ?: string; +}; + +// One molotov or incendiary burn. Flame positions come straight off the demo — +// the engine networks each flame individually — so this is the exact ground the +// fire denied and exactly when, including flames a smoke put out early. +export type ParsedInferno = { + id: number; + round?: number; + thrower?: string; + thrower_team?: string; + start_tick: number; + end_tick?: number; + fires?: Array<{ x: number; y: number; z: number; s: number; e: number }>; +}; + export type ParsedDemo = { total_ticks: number; tick_rate: number; @@ -212,6 +244,8 @@ export type ParsedDemo = { gid: number; pts: Array<{ t: number; x: number; y: number; z: number }>; }>; + smoke_volumes?: ParsedSmokeVolume[]; + infernos?: ParsedInferno[]; flashes?: Array<{ tick: number; round?: number; diff --git a/src/hasura/hasura.service.ts b/src/hasura/hasura.service.ts index f53b810f..4cd01b68 100644 --- a/src/hasura/hasura.service.ts +++ b/src/hasura/hasura.service.ts @@ -152,6 +152,14 @@ export class HasuraService { await this.postgresService.query( "insert into settings (name, value) values ('public.steam_presence_enabled', 'true') on conflict (name) do nothing", ); + + await this.postgresService.query( + "insert into settings (name, value) values ('public.create_awards_role', 'administrator') on conflict (name) do nothing", + ); + + await this.postgresService.query( + "insert into settings (name, value) values ('public.grant_awards_role', 'administrator') on conflict (name) do nothing", + ); } private async applyMigrations(path: string): Promise { diff --git a/src/system/enums/SystemSettingName.ts b/src/system/enums/SystemSettingName.ts index c67af8c4..a8726966 100644 --- a/src/system/enums/SystemSettingName.ts +++ b/src/system/enums/SystemSettingName.ts @@ -10,6 +10,8 @@ export enum SystemSettingName { NewsEnabled = "public.news_enabled", NewsLabel = "public.news_label", PostNewsRole = "public.post_news_role", + CreateAwardsRole = "public.create_awards_role", + GrantAwardsRole = "public.grant_awards_role", RequireLoginForLiveStreams = "public.require_login_for_live_streams", LeaguesEnabled = "public.leagues_enabled", GameServerPluginRuntime = "public.game_server_plugin_runtime", diff --git a/src/system/system.service.ts b/src/system/system.service.ts index eb9c810d..f7cef6fb 100644 --- a/src/system/system.service.ts +++ b/src/system/system.service.ts @@ -599,7 +599,7 @@ export class SystemService { return `version:v2:${service}`; } - private async getPanelVersion() { + public async getPanelVersion() { try { const nodeList = await this.apiClient.listNode({ labelSelector: "node-role.kubernetes.io/control-plane", diff --git a/src/telemetry/telemetry.controller.ts b/src/telemetry/telemetry.controller.ts index b91394f3..a6da35ac 100644 --- a/src/telemetry/telemetry.controller.ts +++ b/src/telemetry/telemetry.controller.ts @@ -9,20 +9,21 @@ import { ThrottlerBehindProxyGuard } from "src/auth/strategies/ThrottlerBehindPr export class TelemetryController { constructor(private readonly telemetryService: TelemetryService) {} + // Throttled per address rather than per install: several panels can share one + // NAT, so a limit of 1 would silently drop every heartbeat but the first. @UseGuards(ThrottlerBehindProxyGuard) - @Throttle({ default: { limit: 1, ttl: 59 * 60 * 1000 } }) + @Throttle({ default: { limit: 20, ttl: 59 * 60 * 1000 } }) @Post() public async telemetry(@Req() request: Request) { await this.telemetryService.record( request.headers["cf-connecting-ip"] as string, + request.headers["cf-ipcountry"] as string, request.body, ); } @HasuraAction() public async telemetryStats() { - return { - online: await this.telemetryService.getOnlineSystemsCount(), - }; + return await this.telemetryService.getFleetStats(); } } diff --git a/src/telemetry/telemetry.module.ts b/src/telemetry/telemetry.module.ts index 0fefee41..66533b1e 100644 --- a/src/telemetry/telemetry.module.ts +++ b/src/telemetry/telemetry.module.ts @@ -12,11 +12,17 @@ import { InjectQueue } from "@nestjs/bullmq"; import { Queue } from "bullmq"; import { getQueuesProcessors } from "src/utilities/QueueProcessors"; import { RedisModule } from "src/redis/redis.module"; +import { PostgresModule } from "src/postgres/postgres.module"; +import { SystemModule } from "src/system/system.module"; +import { CacheModule } from "src/cache/cache.module"; @Module({ imports: [ RedisModule, HasuraModule, + PostgresModule, + SystemModule, + CacheModule, BullModule.registerQueue({ name: TelemetryQueues.Telemetry, }), diff --git a/src/telemetry/telemetry.service.ts b/src/telemetry/telemetry.service.ts index f8826a91..1624626f 100644 --- a/src/telemetry/telemetry.service.ts +++ b/src/telemetry/telemetry.service.ts @@ -4,16 +4,87 @@ import { AppConfig } from "src/configs/types/AppConfig"; import { HasuraService } from "src/hasura/hasura.service"; import Redis from "ioredis"; import { RedisManagerService } from "src/redis/redis-manager/redis-manager.service"; +import { PostgresService } from "src/postgres/postgres.service"; +import { SystemService } from "src/system/system.service"; +import { CacheService } from "src/cache/cache.service"; +import { + TelemetryFeature, + TelemetryPayload, + TELEMETRY_SCHEMA_VERSION, +} from "./types/TelemetryPayload"; @Injectable() export class TelemetryService { private readonly appConfig: AppConfig; private readonly redis: Redis; + + // Every setting named `public.%` is readable by guests (see the settings + // table's select permissions). The install id must never carry that prefix. + private static readonly InstallIdSetting = "telemetry_install_id"; + + // A feature is "on" when its setting says so, but the absent-row default + // differs per feature and has to match what the app itself does, otherwise + // an untouched install reports the opposite of what its users see. + private static readonly FeatureFlags: Record< + string, + { setting: string; defaultEnabled: boolean } + > = { + leagues: { setting: "public.leagues_enabled", defaultEnabled: false }, + seasons: { setting: "public.seasons_enabled", defaultEnabled: false }, + events: { setting: "public.events_enabled", defaultEnabled: false }, + news: { setting: "public.news_enabled", defaultEnabled: false }, + scrims: { setting: "public.scrim_finder_enabled", defaultEnabled: true }, + matchmaking: { setting: "public.matchmaking", defaultEnabled: false }, + custom_pages: { + setting: "public.custom_pages_enabled", + defaultEnabled: false, + }, + external_matches: { + setting: "public.external_matches_enabled", + defaultEnabled: false, + }, + faceit_import: { + setting: "public.faceit_import_enabled", + defaultEnabled: false, + }, + steam_presence: { + setting: "public.steam_presence_enabled", + defaultEnabled: false, + }, + discord_bot: { + setting: "public.supports_discord_bot", + defaultEnabled: false, + }, + game_server_nodes: { + setting: "supports_game_server_nodes", + defaultEnabled: false, + }, + version_pinning: { + setting: "supports_game_server_version_pinning", + defaultEnabled: false, + }, + stream_login_protection: { + setting: "public.require_login_for_live_streams", + defaultEnabled: false, + }, + player_name_registration: { + setting: "public.player_name_registration", + defaultEnabled: false, + }, + league_division_requests: { + setting: "public.league_allow_division_request", + defaultEnabled: false, + }, + }; + constructor( private readonly logger: Logger, private readonly redisManagerService: RedisManagerService, private readonly hasuraService: HasuraService, private readonly configService: ConfigService, + private readonly postgres: PostgresService, + private readonly systemService: SystemService, + private readonly cache: CacheService, ) { this.appConfig = this.configService.get("app"); this.redis = this.redisManagerService.getConnection(); @@ -25,17 +96,98 @@ export class TelemetryService { return; } - await fetch("https://5stack.gg/telemetry", { - method: "POST", - }); + let payload: TelemetryPayload; + + try { + payload = await this.collect(); + } catch (error) { + this.logger.warn("unable to collect telemetry", error); + return; + } + + try { + await fetch("https://5stack.gg/telemetry", { + method: "POST", + headers: { + "Content-Type": "application/json", + }, + body: JSON.stringify(payload), + }); + } catch (error) { + this.logger.warn("unable to send telemetry", error); + } } - async record(ip: string, data: Record) { + public async collect(): Promise { + const [installId, settings, counts, byType, bySource] = await Promise.all([ + this.getInstallId(), + this.getSettings(), + this.getCounts(), + this.getMatchesByType(), + this.getMatchesBySource(), + ]); + + return { + schema: TELEMETRY_SCHEMA_VERSION, + install_id: installId, + installed_at: counts.installed_at + ? new Date(counts.installed_at).toISOString() + : null, + panel_version: await this.getPanelVersion(), + plugin_runtime: settings.get("public.game_server_plugin_runtime") ?? null, + nodes: { + total: counts.nodes_total, + enabled: counts.nodes_enabled, + online: counts.nodes_online, + regions: counts.nodes_regions, + }, + servers: { + total: counts.servers_total, + enabled: counts.servers_enabled, + dedicated: counts.servers_dedicated, + on_demand: counts.servers_on_demand, + public: counts.servers_public, + capacity: counts.servers_capacity, + }, + matches: { + total: counts.matches_ran, + created: counts.matches_created, + week: counts.matches_week, + month: counts.matches_month, + year: counts.matches_year, + maps_played: counts.maps_played, + by_type: byType, + by_source: bySource, + tournament: counts.matches_tournament, + league: counts.matches_league, + scrim: counts.matches_scrim, + }, + players: { + registered: counts.players_registered, + active_7d: counts.players_active_7d, + active_30d: counts.players_active_30d, + teams: counts.teams_total, + }, + features: this.buildFeatures(settings, counts), + }; + } + + async record(ip: string, country: string, data: unknown) { + const payload = TelemetryService.sanitize(data); + + // Panels older than the payload rollout POST an empty body forever. They + // still count as online, keyed by address since that is all they send. await this.redis.setex( - `online_system:${ip}`, + `online_system:${payload?.install_id ?? ip}`, 60 * 60, - JSON.stringify(data), + JSON.stringify(payload ?? {}), ); + + if (!payload) { + return; + } + + await this.persist(payload, country); } async getOnlineSystemsCount(): Promise { @@ -43,6 +195,645 @@ export class TelemetryService { return keys.length; } + // The nav badge polls this action every minute for `online` alone, and a + // Hasura action handler cannot see the GraphQL selection set — so the + // aggregates are cached and only the Redis-backed online count runs per call. + // Panels report hourly, so nothing here goes stale within the TTL. + async getFleetStats() { + const aggregates = await this.cache.remember( + "telemetry:fleet", + async () => { + const [installs, totals, features, versions, growth, activity] = + await Promise.all([ + this.getInstallCounts(), + this.getFleetTotals(), + this.getFeatureAdoption(), + this.getVersionSpread(), + this.getInstallGrowth(), + this.getFleetActivity(), + ]); + + return { installs, totals, features, versions, growth, activity }; + }, + 300, + ); + + return { + online: await this.getOnlineSystemsCount(), + ...aggregates, + }; + } + + private async getInstallCounts() { + const [row] = await this.postgres.query>>( + `SELECT + count(*) AS total, + count(*) FILTER (WHERE last_seen_at >= now() - interval '24 hours') AS active24h, + count(*) FILTER (WHERE last_seen_at >= now() - interval '7 days') AS active7d, + count(*) FILTER (WHERE last_seen_at >= now() - interval '30 days') AS active30d, + count(*) FILTER (WHERE first_seen_at >= now() - interval '30 days') AS new30d, + count(*) FILTER (WHERE first_seen_at < now() - interval '180 days' + AND last_seen_at >= now() - interval '7 days') AS retained180d + FROM public.telemetry_installs`, + ); + + return TelemetryService.toIntegers(row, [ + "total", + "active24h", + "active7d", + "active30d", + "new30d", + "retained180d", + ]); + } + + // Summed across the latest payload of every install seen in the last 30 days. + // Installs that have gone dark are excluded so the fleet picture does not keep + // counting servers that were torn down a year ago. + private async getFleetTotals() { + const [row] = await this.postgres.query>>( + `SELECT + coalesce(sum((payload->'nodes'->>'total')::numeric), 0) AS "gameServerNodes", + coalesce(sum((payload->'servers'->>'total')::numeric), 0) AS servers, + coalesce(sum((payload->'servers'->>'dedicated')::numeric), 0) AS "dedicatedServers", + coalesce(sum((payload->'servers'->>'public')::numeric), 0) AS "publicServers", + coalesce(sum((payload->'servers'->>'capacity')::numeric), 0) AS "serverCapacity", + coalesce(sum((payload->'matches'->>'total')::numeric), 0) AS matches, + coalesce(sum((payload->'matches'->>'week')::numeric), 0) AS "matchesWeek", + coalesce(sum((payload->'matches'->>'month')::numeric), 0) AS "matchesMonth", + coalesce(sum((payload->'matches'->>'year')::numeric), 0) AS "matchesYear", + coalesce(sum((payload->'matches'->>'maps_played')::numeric), 0) AS "mapsPlayed", + coalesce(sum((payload->'players'->>'registered')::numeric), 0) AS "playersRegistered", + coalesce(sum((payload->'players'->>'active_30d')::numeric), 0) AS "playersActive30d", + coalesce(sum((payload->'players'->>'teams')::numeric), 0) AS teams + FROM public.telemetry_installs + WHERE last_seen_at >= now() - interval '30 days' + AND payload ? 'matches'`, + ); + + return TelemetryService.toIntegers(row, [ + "gameServerNodes", + "servers", + "dedicatedServers", + "publicServers", + "serverCapacity", + "matches", + "matchesWeek", + "matchesMonth", + "matchesYear", + "mapsPlayed", + "playersRegistered", + "playersActive30d", + "teams", + ]); + } + + private async getFeatureAdoption() { + const rows = await this.postgres.query>>( + `SELECT + f.key AS key, + count(*) FILTER (WHERE f.value->>'enabled' = 'true') AS enabled, + count(*) AS reporting, + count(*) FILTER (WHERE (f.value->>'count')::numeric > 0) AS "installsUsing", + coalesce(sum((f.value->>'count')::numeric), 0) AS total + FROM public.telemetry_installs i, + LATERAL jsonb_each(coalesce(i.payload->'features', '{}'::jsonb)) f(key, value) + WHERE i.last_seen_at >= now() - interval '30 days' + GROUP BY f.key + ORDER BY total DESC, f.key ASC`, + ); + + return rows.map((row) => ({ + key: row.key, + ...TelemetryService.toIntegers(row, [ + "enabled", + "reporting", + "installsUsing", + "total", + ]), + })); + } + + private async getVersionSpread() { + const rows = await this.postgres.query>>( + `SELECT + coalesce(nullif(panel_version, ''), 'unknown') AS version, + count(*) AS installs + FROM public.telemetry_installs + WHERE last_seen_at >= now() - interval '30 days' + GROUP BY 1 + ORDER BY installs DESC, version ASC`, + ); + + return rows.map((row) => ({ + version: row.version, + ...TelemetryService.toIntegers(row, ["installs"]), + })); + } + + private async getInstallGrowth() { + const rows = await this.postgres.query>>( + `SELECT + to_char(date_trunc('month', first_seen_at), 'YYYY-MM') AS month, + count(*) AS installs + FROM public.telemetry_installs + GROUP BY 1 + ORDER BY 1 ASC`, + ); + + return rows.map((row) => ({ + month: row.month, + ...TelemetryService.toIntegers(row, ["installs"]), + })); + } + + // Matches per day come from the delta of each install's all-time counter, so + // a missed heartbeat shifts a day's matches onto the next report rather than + // losing them. GREATEST clamps the negative delta a wiped or restored + // database would otherwise contribute. + private async getFleetActivity() { + const rows = await this.postgres.query>>( + `WITH daily AS ( + SELECT + install_id, + day, + (payload->'matches'->>'total')::numeric AS total, + lag((payload->'matches'->>'total')::numeric) + OVER (PARTITION BY install_id ORDER BY day) AS previous + FROM public.telemetry_snapshots + WHERE day >= current_date - 90 + AND payload ? 'matches' + ) + SELECT + to_char(day, 'YYYY-MM-DD') AS day, + count(DISTINCT install_id) AS installs, + coalesce(sum(greatest(total - coalesce(previous, total), 0)), 0) AS matches + FROM daily + GROUP BY day + ORDER BY day ASC`, + ); + + return rows.map((row) => ({ + day: row.day, + ...TelemetryService.toIntegers(row, ["installs", "matches"]), + })); + } + + private static toIntegers( + row: Record | undefined, + keys: Array, + ): Record { + const values = {} as Record; + + for (const key of keys) { + values[key] = Number(row?.[key] ?? 0); + } + + return values; + } + + private async persist(payload: TelemetryPayload, country: string) { + await this.postgres.query( + `INSERT INTO public.telemetry_installs + (install_id, first_seen_at, last_seen_at, installed_at, panel_version, schema_version, country, payload) + VALUES ($1, now(), now(), $2, $3, $4, $5, $6) + ON CONFLICT (install_id) DO UPDATE SET + last_seen_at = now(), + installed_at = EXCLUDED.installed_at, + panel_version = EXCLUDED.panel_version, + schema_version = EXCLUDED.schema_version, + country = EXCLUDED.country, + payload = EXCLUDED.payload`, + [ + payload.install_id, + payload.installed_at, + payload.panel_version, + payload.schema, + country || null, + JSON.stringify(payload), + ], + ); + + await this.postgres.query( + `INSERT INTO public.telemetry_snapshots (install_id, day, reported_at, payload) + VALUES ($1, current_date, now(), $2) + ON CONFLICT (install_id, day) DO UPDATE SET + reported_at = now(), + payload = EXCLUDED.payload`, + [payload.install_id, JSON.stringify(payload)], + ); + } + + private static readonly MaxCount = 100_000_000; + private static readonly MaxMapKeys = 50; + + // Anything arriving here is unauthenticated input from a self-hosted panel. + // Rebuild the payload from known keys only so a forged body cannot inject + // fields, unbounded maps, or values the aggregation SQL would choke casting. + private static sanitize(data: unknown): TelemetryPayload | null { + if (!data || typeof data !== "object" || Array.isArray(data)) { + return null; + } + + const body = data as Record; + + if (!TelemetryService.isUuid(body.install_id)) { + return null; + } + + const int = (value: unknown) => { + const number = Math.floor(Number(value)); + + if (!Number.isFinite(number) || number < 0) { + return 0; + } + + return Math.min(number, TelemetryService.MaxCount); + }; + + const section = (value: unknown): Record => { + if (!value || typeof value !== "object" || Array.isArray(value)) { + return {}; + } + + return value as Record; + }; + + const nodes = section(body.nodes); + const servers = section(body.servers); + const matches = section(body.matches); + const players = section(body.players); + + return { + schema: int(body.schema), + install_id: body.install_id, + installed_at: TelemetryService.sanitizeDate(body.installed_at), + panel_version: TelemetryService.sanitizeText(body.panel_version, 64), + plugin_runtime: TelemetryService.sanitizeText(body.plugin_runtime, 32), + nodes: { + total: int(nodes.total), + enabled: int(nodes.enabled), + online: int(nodes.online), + regions: int(nodes.regions), + }, + servers: { + total: int(servers.total), + enabled: int(servers.enabled), + dedicated: int(servers.dedicated), + on_demand: int(servers.on_demand), + public: int(servers.public), + capacity: int(servers.capacity), + }, + matches: { + total: int(matches.total), + created: int(matches.created), + week: int(matches.week), + month: int(matches.month), + year: int(matches.year), + maps_played: int(matches.maps_played), + by_type: TelemetryService.sanitizeCountMap(matches.by_type, int), + by_source: TelemetryService.sanitizeCountMap(matches.by_source, int), + tournament: int(matches.tournament), + league: int(matches.league), + scrim: int(matches.scrim), + }, + players: { + registered: int(players.registered), + active_7d: int(players.active_7d), + active_30d: int(players.active_30d), + teams: int(players.teams), + }, + features: TelemetryService.sanitizeFeatures(body.features, int), + }; + } + + private static isUuid(value: unknown) { + return ( + typeof value === "string" && + /^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$/i.test( + value, + ) + ); + } + + private static sanitizeText(value: unknown, max: number) { + if (typeof value !== "string" || !value) { + return null; + } + + return value.slice(0, max); + } + + private static sanitizeDate(value: unknown) { + if (typeof value !== "string") { + return null; + } + + const date = new Date(value); + + if (isNaN(date.getTime())) { + return null; + } + + return date.toISOString(); + } + + private static sanitizeCountMap( + value: unknown, + int: (value: unknown) => number, + ): Record { + const counts: Record = {}; + + if (!value || typeof value !== "object" || Array.isArray(value)) { + return counts; + } + + for (const [key, count] of Object.entries(value).slice( + 0, + TelemetryService.MaxMapKeys, + )) { + counts[key.slice(0, 32)] = int(count); + } + + return counts; + } + + private static sanitizeFeatures( + value: unknown, + int: (value: unknown) => number, + ): Record { + const features: Record = {}; + + if (!value || typeof value !== "object" || Array.isArray(value)) { + return features; + } + + for (const [key, feature] of Object.entries(value).slice( + 0, + TelemetryService.MaxMapKeys, + )) { + if (!feature || typeof feature !== "object") { + continue; + } + + const { enabled, count } = feature as Record; + + features[key.slice(0, 32)] = { + enabled: typeof enabled === "boolean" ? enabled : null, + count: count === null || count === undefined ? null : int(count), + }; + } + + return features; + } + + private buildFeatures( + settings: Map, + counts: TelemetryCounts, + ): Record { + const usage: Record = { + tournaments: counts.tournaments, + leagues: counts.league_seasons, + seasons: counts.seasons, + events: counts.events, + news: counts.news_articles, + highlights: counts.match_clips, + clip_renders: counts.clip_render_jobs, + system_alerts: counts.system_alerts, + awards: counts.award_recipients, + scrims: counts.scrim_requests, + matchmaking: counts.lobbies, + custom_pages: counts.custom_pages, + external_matches: counts.matches_external, + faceit_import: counts.matches_faceit, + draft_games: counts.draft_games, + demos: counts.demos, + sanctions: counts.sanctions, + api_keys: counts.api_keys, + gamedata_validations: counts.gamedata_validations, + }; + + const features: Record = {}; + + for (const key of new Set([ + ...Object.keys(TelemetryService.FeatureFlags), + ...Object.keys(usage), + ])) { + const flag = TelemetryService.FeatureFlags[key]; + + features[key] = { + enabled: flag + ? TelemetryService.isFlagEnabled( + settings.get(flag.setting), + flag.defaultEnabled, + ) + : null, + count: usage[key] ?? null, + }; + } + + features.branding = { + enabled: TelemetryService.hasBranding(settings), + count: null, + }; + + return features; + } + + private static isFlagEnabled(value: string | undefined, fallback: boolean) { + if (value === undefined) { + return fallback; + } + + return value === "true"; + } + + private static hasBranding(settings: Map) { + for (const [name, value] of settings) { + if ( + (name === "public.brand_name" || + name === "public.logo_url" || + name.startsWith("public.color_")) && + value + ) { + return true; + } + } + + return false; + } + + private async getInstallId(): Promise { + const [row] = await this.postgres.query>( + `WITH created AS ( + INSERT INTO public.settings (name, value) + VALUES ($1, gen_random_uuid()::text) + ON CONFLICT (name) DO NOTHING + RETURNING value + ) + SELECT value FROM created + UNION ALL + SELECT value FROM public.settings WHERE name = $1 + LIMIT 1`, + [TelemetryService.InstallIdSetting], + ); + + return row?.value; + } + + private async getSettings(): Promise> { + const rows = await this.postgres.query< + Array<{ name: string; value: string }> + >(`SELECT name, value FROM public.settings`); + + return new Map(rows.map(({ name, value }) => [name, value])); + } + + private async getPanelVersion() { + try { + return (await this.systemService.getPanelVersion()) || null; + } catch (error) { + this.logger.warn("unable to read panel version for telemetry", error); + return null; + } + } + + private async getMatchesByType(): Promise> { + const rows = await this.postgres.query< + Array<{ type: string; count: string }> + >( + `SELECT o.type, count(*) AS count + FROM public.matches m + JOIN public.match_options o ON o.id = m.match_options_id + WHERE m.started_at IS NOT NULL + GROUP BY o.type`, + ); + + return TelemetryService.toCountMap(rows, "type"); + } + + private async getMatchesBySource(): Promise> { + const rows = await this.postgres.query< + Array<{ source: string; count: string }> + >( + `SELECT source, count(*) AS count + FROM public.matches + WHERE started_at IS NOT NULL + GROUP BY source`, + ); + + return TelemetryService.toCountMap(rows, "source"); + } + + private static toCountMap( + rows: Array>, + key: string, + ): Record { + const counts: Record = {}; + + for (const row of rows) { + if (!row[key]) { + continue; + } + + counts[row[key]] = Number(row.count); + } + + return counts; + } + + private async getCounts(): Promise { + const [row] = await this.postgres.query>( + `SELECT + (SELECT min(created_at) FROM public.matches) AS installed_at, + + (SELECT count(*) FROM public.game_server_nodes) AS nodes_total, + (SELECT count(*) FROM public.game_server_nodes WHERE enabled) AS nodes_enabled, + (SELECT count(*) FROM public.game_server_nodes WHERE status = 'Online') AS nodes_online, + (SELECT count(DISTINCT region) FROM public.game_server_nodes + WHERE region IS NOT NULL) AS nodes_regions, + + (SELECT count(*) FROM public.servers) AS servers_total, + (SELECT count(*) FROM public.servers WHERE enabled) AS servers_enabled, + (SELECT count(*) FROM public.servers WHERE is_dedicated) AS servers_dedicated, + (SELECT count(*) FROM public.servers + WHERE game_server_node_id IS NOT NULL) AS servers_on_demand, + (SELECT count(*) FROM public.servers WHERE type <> 'Ranked') AS servers_public, + (SELECT coalesce(sum(max_players), 0) FROM public.servers) AS servers_capacity, + + (SELECT count(*) FROM public.matches) AS matches_created, + (SELECT count(*) FROM public.matches WHERE started_at IS NOT NULL) AS matches_ran, + (SELECT count(*) FROM public.matches + WHERE started_at IS NOT NULL AND effective_at >= now() - interval '7 days') AS matches_week, + (SELECT count(*) FROM public.matches + WHERE started_at IS NOT NULL AND effective_at >= now() - interval '30 days') AS matches_month, + (SELECT count(*) FROM public.matches + WHERE started_at IS NOT NULL AND effective_at >= now() - interval '365 days') AS matches_year, + (SELECT count(*) FROM public.match_maps WHERE status = 'Finished') AS maps_played, + (SELECT count(*) FROM public.matches WHERE source <> '5stack') AS matches_external, + (SELECT count(*) FROM public.matches WHERE source = 'faceit') AS matches_faceit, + + (SELECT count(DISTINCT b.match_id) FROM public.tournament_brackets b + WHERE b.match_id IS NOT NULL) AS matches_tournament, + (SELECT count(DISTINCT b.match_id) + FROM public.tournament_brackets b + JOIN public.tournament_stages st ON st.id = b.tournament_stage_id + JOIN public.league_season_divisions d ON d.tournament_id = st.tournament_id + WHERE b.match_id IS NOT NULL) AS matches_league, + (SELECT count(DISTINCT r.match_id) FROM public.team_scrim_requests r + WHERE r.match_id IS NOT NULL) AS matches_scrim, + + (SELECT count(*) FROM public.players) AS players_registered, + (SELECT count(*) FROM public.teams) AS teams_total, + (SELECT count(DISTINCT p.steam_id) + FROM public.match_lineup_players p + JOIN public.matches m + ON m.lineup_1_id = p.match_lineup_id OR m.lineup_2_id = p.match_lineup_id + WHERE p.steam_id IS NOT NULL + AND m.started_at IS NOT NULL + AND m.effective_at >= now() - interval '7 days') AS players_active_7d, + (SELECT count(DISTINCT p.steam_id) + FROM public.match_lineup_players p + JOIN public.matches m + ON m.lineup_1_id = p.match_lineup_id OR m.lineup_2_id = p.match_lineup_id + WHERE p.steam_id IS NOT NULL + AND m.started_at IS NOT NULL + AND m.effective_at >= now() - interval '30 days') AS players_active_30d, + + (SELECT count(*) FROM public.tournaments) AS tournaments, + (SELECT count(*) FROM public.league_seasons) AS league_seasons, + (SELECT count(*) FROM public.seasons) AS seasons, + (SELECT count(*) FROM public.events) AS events, + (SELECT count(*) FROM public.news_articles) AS news_articles, + (SELECT count(*) FROM public.match_clips) AS match_clips, + (SELECT count(*) FROM public.clip_render_jobs) AS clip_render_jobs, + (SELECT count(*) FROM public.system_alerts) AS system_alerts, + (SELECT count(*) FROM public.award_recipients) AS award_recipients, + (SELECT count(*) FROM public.team_scrim_requests) AS scrim_requests, + (SELECT count(*) FROM public.lobbies) AS lobbies, + (SELECT count(*) FROM public.custom_pages WHERE enabled) AS custom_pages, + (SELECT count(*) FROM public.draft_games) AS draft_games, + (SELECT count(*) FROM public.match_map_demos) AS demos, + (SELECT count(*) FROM public.player_sanctions) AS sanctions, + (SELECT count(*) FROM public.api_keys) AS api_keys, + (SELECT count(*) FROM public.gamedata_signature_validations) AS gamedata_validations + `, + ); + + return TelemetryService.toNumbers(row); + } + + // pg returns bigint as a string so every count would serialize as "12". + private static toNumbers(row: Record): TelemetryCounts { + const counts: Record = {}; + + for (const [key, value] of Object.entries(row ?? {})) { + counts[key] = key === "installed_at" ? value : Number(value ?? 0); + } + + return counts as TelemetryCounts; + } + private async isEnabled() { if (this.appConfig.webDomain.includes("://5stack.gg")) { return false; @@ -60,3 +851,7 @@ export class TelemetryService { return telemetry?.value !== "false"; } } + +type TelemetryCounts = { + installed_at: string | null; +} & Record; diff --git a/src/telemetry/types/TelemetryPayload.ts b/src/telemetry/types/TelemetryPayload.ts new file mode 100644 index 00000000..a7b0fc54 --- /dev/null +++ b/src/telemetry/types/TelemetryPayload.ts @@ -0,0 +1,48 @@ +export const TELEMETRY_SCHEMA_VERSION = 1; + +export type TelemetryFeature = { + enabled: boolean | null; + count: number | null; +}; + +export type TelemetryPayload = { + schema: number; + install_id: string; + installed_at: string | null; + panel_version: string | null; + plugin_runtime: string | null; + nodes: { + total: number; + enabled: number; + online: number; + regions: number; + }; + servers: { + total: number; + enabled: number; + dedicated: number; + on_demand: number; + public: number; + capacity: number; + }; + matches: { + total: number; + created: number; + week: number; + month: number; + year: number; + maps_played: number; + by_type: Record; + by_source: Record; + tournament: number; + scrim: number; + league: number; + }; + players: { + registered: number; + active_7d: number; + active_30d: number; + teams: number; + }; + features: Record; +}; diff --git a/src/trophies/trophies.controller.ts b/src/trophies/trophies.controller.ts deleted file mode 100644 index bbe686c2..00000000 --- a/src/trophies/trophies.controller.ts +++ /dev/null @@ -1,88 +0,0 @@ -import { - Controller, - Post, - Get, - Delete, - Param, - UploadedFile, - UseInterceptors, - ParseFilePipe, - MaxFileSizeValidator, - FileTypeValidator, - ParseIntPipe, - Req, - Res, - ForbiddenException, - NotFoundException, -} from "@nestjs/common"; -import { FileInterceptor } from "@nestjs/platform-express"; -import { Request, Response } from "express"; -import { TrophiesService } from "./trophies.service"; -import { User } from "../auth/types/User"; - -@Controller("trophies") -export class TrophiesController { - constructor(private readonly trophiesService: TrophiesService) {} - - @Post(":tournamentId/:placement") - @UseInterceptors(FileInterceptor("file")) - async upload( - @Req() request: Request, - @Param("tournamentId") tournamentId: string, - @Param("placement", ParseIntPipe) placement: number, - @UploadedFile( - new ParseFilePipe({ - validators: [ - new MaxFileSizeValidator({ maxSize: 5 * 1024 * 1024 }), - new FileTypeValidator({ fileType: /image\/(png|jpeg|webp)/ }), - ], - }), - ) - file: Express.Multer.File, - ) { - const user = this.requireUser(request); - const path = await this.trophiesService.uploadTrophy( - tournamentId, - placement, - user, - file.buffer, - file.mimetype, - ); - return { success: true, path }; - } - - @Delete(":tournamentId/:placement") - async remove( - @Req() request: Request, - @Param("tournamentId") tournamentId: string, - @Param("placement", ParseIntPipe) placement: number, - ) { - const user = this.requireUser(request); - await this.trophiesService.removeTrophy(tournamentId, placement, user); - return { success: true }; - } - - @Get(":filename") - async serve(@Param("filename") filename: string, @Res() res: Response) { - const result = await this.trophiesService.getStream(filename); - if (!result) { - throw new NotFoundException("Trophy image not found"); - } - - res.setHeader("Content-Type", result.contentType); - res.setHeader("Cache-Control", "public, max-age=31536000, immutable"); - if (result.etag) { - res.setHeader("ETag", result.etag); - } - - result.stream.pipe(res); - } - - private requireUser(request: Request): User { - const user = request.user as User | undefined; - if (!user) { - throw new ForbiddenException("Authentication required"); - } - return user; - } -} diff --git a/src/trophies/trophies.module.ts b/src/trophies/trophies.module.ts deleted file mode 100644 index c68715d5..00000000 --- a/src/trophies/trophies.module.ts +++ /dev/null @@ -1,13 +0,0 @@ -import { Module } from "@nestjs/common"; -import { TrophiesService } from "./trophies.service"; -import { TrophiesController } from "./trophies.controller"; -import { S3Module } from "../s3/s3.module"; -import { PostgresModule } from "../postgres/postgres.module"; -import { loggerFactory } from "../utilities/LoggerFactory"; - -@Module({ - imports: [S3Module, PostgresModule], - providers: [TrophiesService, loggerFactory()], - controllers: [TrophiesController], -}) -export class TrophiesModule {} diff --git a/src/trophies/trophies.service.ts b/src/trophies/trophies.service.ts deleted file mode 100644 index f5f740a0..00000000 --- a/src/trophies/trophies.service.ts +++ /dev/null @@ -1,193 +0,0 @@ -import crypto from "crypto"; -import { Readable } from "stream"; -import { ForbiddenException, Injectable, Logger } from "@nestjs/common"; -import { S3Service } from "../s3/s3.service"; -import { PostgresService } from "../postgres/postgres.service"; -import { User } from "../auth/types/User"; - -const EXTENSION_BY_MIMETYPE: Record = { - "image/png": "png", - "image/jpeg": "jpg", - "image/webp": "webp", -}; - -interface TrophyConfigRow { - id: string; - image_url: string | null; -} - -@Injectable() -export class TrophiesService { - constructor( - private readonly logger: Logger, - private readonly s3: S3Service, - private readonly postgres: PostgresService, - ) {} - - async uploadTrophy( - tournamentId: string, - placement: number, - user: User, - buffer: Buffer, - mimetype: string, - ): Promise { - if (!this.isValidPlacement(placement)) { - throw new ForbiddenException("Invalid placement"); - } - - await this.requireOrganizer(tournamentId, user); - - const existing = await this.getConfig(tournamentId, placement); - const path = this.buildPath(tournamentId, placement, mimetype); - - await this.s3.put(path, buffer); - - if (existing?.image_url && existing.image_url !== path) { - await this.s3.remove(existing.image_url); - } - - if (existing) { - await this.postgres.query( - `UPDATE public.tournament_trophy_configs - SET image_url = $1, updated_at = now() - WHERE id = $2`, - [path, existing.id], - ); - } else { - await this.postgres.query( - `INSERT INTO public.tournament_trophy_configs - (tournament_id, placement, image_url) - VALUES ($1, $2, $3)`, - [tournamentId, String(placement), path], - ); - } - - this.logger.log( - `Uploaded tournament ${tournamentId} placement ${placement} trophy to ${path}`, - ); - return path; - } - - async removeTrophy( - tournamentId: string, - placement: number, - user: User, - ): Promise { - if (!this.isValidPlacement(placement)) { - throw new ForbiddenException("Invalid placement"); - } - - await this.requireOrganizer(tournamentId, user); - - const existing = await this.getConfig(tournamentId, placement); - if (!existing) return; - - if (existing.image_url) { - await this.s3.remove(existing.image_url); - } - - await this.postgres.query( - `UPDATE public.tournament_trophy_configs - SET image_url = NULL, updated_at = now() - WHERE id = $1`, - [existing.id], - ); - - this.logger.log( - `Removed tournament ${tournamentId} placement ${placement} trophy image`, - ); - } - - async getStream( - filename: string, - ): Promise<{ stream: Readable; contentType: string; etag?: string } | null> { - const key = `trophies/${filename}`; - - if (!(await this.s3.has(key))) { - return null; - } - - const [stream, stat] = await Promise.all([ - this.s3.get(key), - this.s3.stat(key), - ]); - - return { - stream, - contentType: - stat.metaData?.["content-type"] || this.guessContentType(filename), - etag: stat.etag, - }; - } - - private async requireOrganizer( - tournamentId: string, - user: User, - ): Promise { - const rows = await this.postgres.query< - Array<{ organizer_steam_id: string | null }> - >( - `SELECT organizer_steam_id - FROM public.tournaments - WHERE id = $1 - LIMIT 1`, - [tournamentId], - ); - - if (!rows || rows.length === 0) { - throw new ForbiddenException("Tournament not found"); - } - - const isOrganizer = - String(rows[0].organizer_steam_id) === String(user.steam_id); - - if (isOrganizer || user.role === "administrator") return; - - const coOrg = await this.postgres.query>( - `SELECT steam_id - FROM public.tournament_organizers - WHERE tournament_id = $1 AND steam_id = $2 - LIMIT 1`, - [tournamentId, user.steam_id], - ); - if (coOrg && coOrg.length > 0) return; - - throw new ForbiddenException("Not the tournament organizer"); - } - - private async getConfig( - tournamentId: string, - placement: number, - ): Promise { - const rows = await this.postgres.query( - `SELECT id, image_url - FROM public.tournament_trophy_configs - WHERE tournament_id = $1 AND placement = $2 - LIMIT 1`, - [tournamentId, String(placement)], - ); - return rows?.[0] || null; - } - - private isValidPlacement(placement: number): boolean { - return Number.isInteger(placement) && placement >= 0 && placement <= 3; - } - - private buildPath( - tournamentId: string, - placement: number, - mimetype: string, - ): string { - const ext = EXTENSION_BY_MIMETYPE[mimetype] || "png"; - const hash = crypto.randomBytes(6).toString("hex"); - return `trophies/${tournamentId}-${placement}-${hash}.${ext}`; - } - - private guessContentType(filename: string): string { - if (filename.endsWith(".png")) return "image/png"; - if (filename.endsWith(".jpg") || filename.endsWith(".jpeg")) - return "image/jpeg"; - if (filename.endsWith(".webp")) return "image/webp"; - return "application/octet-stream"; - } -} diff --git a/test/awards.spec.ts b/test/awards.spec.ts new file mode 100644 index 00000000..2f57ee04 --- /dev/null +++ b/test/awards.spec.ts @@ -0,0 +1,662 @@ +import { PostgresService } from "./../src/postgres/postgres.service"; +import { Fixtures } from "./utils/fixtures"; +import { TournamentFixtures } from "./utils/tournament-fixtures"; +import { + bootMigratedDb, + seedRegionWithServer, + SqlTestDb, +} from "./utils/sql-test-db"; + +// Covers the awards layer that sits under tournament placements: the catalog +// fallback, per-tournament overrides, source-scoped recalculation, and the +// constraints that keep a grant pointing at exactly one recipient. +describe("awards (SQL-driven)", () => { + let db: SqlTestDb; + let postgres: PostgresService; + let fx: Fixtures; + let tfx: TournamentFixtures; + + beforeAll(async () => { + db = await bootMigratedDb("AwardsTest"); + postgres = db.postgres; + fx = new Fixtures(postgres, 76561199600000000n); + tfx = new TournamentFixtures(postgres, fx); + await seedRegionWithServer(postgres, "TestA"); + }, 600_000); + + afterAll(async () => { + await db?.stop(); + }); + + beforeEach(async () => { + await postgres.query("DELETE FROM matches"); + await postgres.query("DELETE FROM tournaments"); + await postgres.query("DELETE FROM match_options"); + await postgres.query("DELETE FROM teams"); + await postgres.query("DELETE FROM players"); + await postgres.query("DELETE FROM awards WHERE system_key IS NULL"); + // seasons carries an exclusion constraint against overlapping ranges, so + // leftovers from one test collide with the next one's open-ended season. + await postgres.query("DELETE FROM seasons"); + }); + + const SE4 = [ + { type: "SingleElimination", order: 1, minTeams: 4, maxTeams: 8 }, + ]; + + const playedOutCup = async () => { + const t = await tfx.launch(SE4, 4); + await tfx.playRound(t.stageIds[0], 1); + await tfx.playRound(t.stageIds[0], 2); + expect(await tfx.tournamentStatus(t.id)).toBe("Finished"); + return t; + }; + + const createAward = async ( + name: string, + tier = "special", + allowMultiple = false, + ) => { + const [award] = await postgres.query>( + `INSERT INTO awards (name, tier, allow_multiple) VALUES ($1, $2, $3) RETURNING id`, + [name, tier, allowMultiple], + ); + return award.id; + }; + + const systemAward = async (key: string) => { + const [award] = await postgres.query>( + "SELECT id FROM awards WHERE system_key = $1", + [key], + ); + return award.id; + }; + + describe("catalog", () => { + it("ships the four tournament system awards", async () => { + const rows = await postgres.query< + Array<{ system_key: string; tier: string }> + >( + `SELECT system_key, tier FROM awards + WHERE system_key LIKE 'tournament\\_%' ORDER BY system_key`, + ); + expect(rows.map((r) => r.system_key)).toEqual([ + "tournament_bronze", + "tournament_gold", + "tournament_mvp", + "tournament_silver", + ]); + expect(rows.map((r) => r.tier)).toEqual([ + "bronze", + "gold", + "mvp", + "silver", + ]); + }); + + it("scopes an award to at most one owner", async () => { + const t = await playedOutCup(); + const [season] = await postgres.query>( + `INSERT INTO seasons (starts_at) VALUES (now()) RETURNING id`, + ); + + await expect( + postgres.query( + `INSERT INTO awards (name, tier, tournament_id, season_id) + VALUES ('Two Homes', 'special', $1, $2)`, + [t.id, season.id], + ), + ).rejects.toThrow(/single_scope/i); + + await postgres.query( + `INSERT INTO awards (name, tier, season_id) VALUES ('Season Award', 'special', $1)`, + [season.id], + ); + const [{ c }] = await postgres.query>( + "SELECT count(*) AS c FROM awards WHERE season_id = $1", + [season.id], + ); + expect(Number(c)).toBe(1); + }); + + it("refuses to scope a built-in award", async () => { + const t = await playedOutCup(); + await expect( + postgres.query( + "UPDATE awards SET tournament_id = $1 WHERE system_key = 'tournament_gold'", + [t.id], + ), + ).rejects.toThrow(/single_scope/i); + }); + + it("rejects a tier outside the enum", async () => { + await expect( + postgres.query( + "INSERT INTO awards (name, tier) VALUES ('Bad', 'plat')", + ), + ).rejects.toThrow(); + }); + + it("refuses to delete a system award even from raw SQL", async () => { + await expect( + postgres.query( + "DELETE FROM awards WHERE system_key = 'tournament_gold'", + ), + ).rejects.toThrow(/cannot be deleted/i); + + const [{ c }] = await postgres.query>( + "SELECT count(*) AS c FROM awards WHERE system_key = 'tournament_gold'", + ); + expect(Number(c)).toBe(1); + }); + + it("still deletes hand-made awards and their grants", async () => { + const awardId = await createAward("Temporary"); + const steamId = await fx.player(); + + await postgres.query( + `INSERT INTO award_recipients (award_id, player_steam_id, source) + VALUES ($1, $2, 'manual')`, + [awardId, steamId], + ); + + await postgres.query("DELETE FROM awards WHERE id = $1", [awardId]); + + const [{ c }] = await postgres.query>( + "SELECT count(*) AS c FROM award_recipients WHERE award_id = $1", + [awardId], + ); + expect(Number(c)).toBe(0); + }); + }); + + describe("granting", () => { + it("requires exactly one recipient", async () => { + const awardId = await createAward("Clutch King"); + const steamId = await fx.player(); + const team = await fx.team(); + + await expect( + postgres.query( + "INSERT INTO award_recipients (award_id, source) VALUES ($1, 'manual')", + [awardId], + ), + ).rejects.toThrow(/one_recipient/i); + + await expect( + postgres.query( + `INSERT INTO award_recipients (award_id, player_steam_id, team_id, source) + VALUES ($1, $2, $3, 'manual')`, + [awardId, steamId, team.id], + ), + ).rejects.toThrow(/one_recipient/i); + }); + + it("grants an award with no tournament attached", async () => { + const awardId = await createAward("Community MVP"); + const steamId = await fx.player(); + + await postgres.query( + `INSERT INTO award_recipients (award_id, player_steam_id, source) + VALUES ($1, $2, 'manual')`, + [awardId, steamId], + ); + + const [row] = await postgres.query< + Array<{ tournament_id: string | null; placement: number | null }> + >( + "SELECT tournament_id, placement FROM award_recipients WHERE award_id = $1", + [awardId], + ); + expect(row.tournament_id).toBeNull(); + expect(row.placement).toBeNull(); + }); + + it("fans a team grant out to the roster so it reaches player pages", async () => { + const awardId = await createAward("Squad Honour"); + const team = await fx.team(3); + + const roster = await postgres.query>( + "SELECT player_steam_id FROM team_roster WHERE team_id = $1 AND role <> 'Invite'", + [team.id], + ); + expect(roster.length).toBeGreaterThan(1); + + await postgres.query( + `INSERT INTO award_recipients (award_id, team_id, source) + VALUES ($1, $2, 'manual')`, + [awardId, team.id], + ); + await postgres.query( + `INSERT INTO award_recipients + (award_id, player_steam_id, source) + SELECT $1, r.player_steam_id, 'manual' + FROM team_roster r + WHERE r.team_id = $2 AND r.role <> 'Invite'`, + [awardId, team.id], + ); + + const [{ c }] = await postgres.query>( + `SELECT count(*) AS c FROM award_recipients + WHERE award_id = $1 AND player_steam_id IS NOT NULL`, + [awardId], + ); + expect(Number(c)).toBe(roster.length); + + const [{ t }] = await postgres.query>( + `SELECT count(*) AS t FROM award_recipients + WHERE award_id = $1 AND team_id IS NOT NULL`, + [awardId], + ); + expect(Number(t)).toBe(1); + }); + + it("blocks a repeat grant unless the award allows multiples", async () => { + const onceId = await createAward("One Time Only"); + const manyId = await createAward("Player of the Month", "special", true); + const steamId = await fx.player(); + + const grant = (awardId: string) => + postgres.query( + `INSERT INTO award_recipients (award_id, player_steam_id, source) + VALUES ($1, $2, 'manual')`, + [awardId, steamId], + ); + + await grant(onceId); + await expect(grant(onceId)).rejects.toThrow(/already granted/i); + + await grant(manyId); + await grant(manyId); + const [{ c }] = await postgres.query>( + "SELECT count(*) AS c FROM award_recipients WHERE award_id = $1", + [manyId], + ); + expect(Number(c)).toBe(2); + }); + + it("blocks a repeat hand-grant inside the same tournament", async () => { + const t = await playedOutCup(); + const awardId = await createAward("Organizer's Pick"); + const [seat] = await postgres.query< + Array<{ tournament_team_id: string; player_steam_id: string }> + >( + `SELECT tournament_team_id, player_steam_id FROM award_recipients + WHERE tournament_id = $1 AND player_steam_id IS NOT NULL LIMIT 1`, + [t.id], + ); + + const grant = () => + postgres.query( + `INSERT INTO award_recipients + (award_id, tournament_id, tournament_team_id, player_steam_id, source) + VALUES ($1, $2, $3, $4, 'manual')`, + [awardId, t.id, seat.tournament_team_id, seat.player_steam_id], + ); + + await grant(); + // Placement is NULL on a hand-grant, so the partial unique keys never + // bind; the trigger is what stops the duplicate. + await expect(grant()).rejects.toThrow(/already granted/i); + }); + + it("skips roster members who already hold the award when fanning out", async () => { + const awardId = await createAward("Squad Honour"); + const team = await fx.team(3); + const roster = await postgres.query>( + "SELECT player_steam_id FROM team_roster WHERE team_id = $1 AND role <> 'Invite'", + [team.id], + ); + + // One member already holds it before the team grant fans out. + await postgres.query( + `INSERT INTO award_recipients (award_id, player_steam_id, source) + VALUES ($1, $2, 'manual')`, + [awardId, roster[0].player_steam_id], + ); + + await postgres.query( + `INSERT INTO award_recipients (award_id, player_steam_id, source) + SELECT $1, r.player_steam_id, 'manual' + FROM team_roster r + WHERE r.team_id = $2 + AND r.role <> 'Invite' + AND NOT EXISTS ( + SELECT 1 FROM award_recipients held + WHERE held.award_id = $1 + AND held.player_steam_id = r.player_steam_id + AND held.tournament_id IS NOT DISTINCT FROM NULL + )`, + [awardId, team.id], + ); + + const [{ c }] = await postgres.query>( + `SELECT count(*) AS c FROM award_recipients + WHERE award_id = $1 AND player_steam_id = $2`, + [awardId, roster[0].player_steam_id], + ); + expect(Number(c)).toBe(1); + + const [{ total }] = await postgres.query>( + `SELECT count(*) AS total FROM award_recipients + WHERE award_id = $1 AND player_steam_id IS NOT NULL`, + [awardId], + ); + expect(Number(total)).toBe(roster.length); + }); + + it("refuses a tournament team without its tournament", async () => { + const awardId = await createAward("Orphan"); + const steamId = await fx.player(); + + await expect( + postgres.query( + `INSERT INTO award_recipients + (award_id, player_steam_id, tournament_team_id, source) + VALUES ($1, $2, gen_random_uuid(), 'manual')`, + [awardId, steamId], + ), + ).rejects.toThrow(); + }); + }); + + describe("tournament calculation", () => { + it("falls back to the system award for each placement", async () => { + const t = await playedOutCup(); + + const rows = await postgres.query< + Array<{ placement: number; system_key: string }> + >( + `SELECT DISTINCT ar.placement, a.system_key + FROM award_recipients ar + JOIN awards a ON a.id = ar.award_id + WHERE ar.tournament_id = $1 + ORDER BY ar.placement`, + [t.id], + ); + + expect(rows.length).toBeGreaterThan(0); + for (const row of rows) { + expect(row.system_key).toBe( + { 0: "tournament_mvp", 1: "tournament_gold", 2: "tournament_silver" }[ + Number(row.placement) + ] ?? "tournament_bronze", + ); + } + }); + + it("uses the per-tournament award override when one is configured", async () => { + const t = await playedOutCup(); + const customId = await createAward("Summer Cup Champion", "gold", true); + + await postgres.query( + `INSERT INTO tournament_awards (tournament_id, placement, award_id) + VALUES ($1, 1, $2)`, + [t.id, customId], + ); + await postgres.query("SELECT recalculate_tournament_awards($1)", [t.id]); + + const golds = await postgres.query>( + `SELECT DISTINCT award_id FROM award_recipients + WHERE tournament_id = $1 AND placement = 1`, + [t.id], + ); + expect(golds.map((g) => g.award_id)).toEqual([customId]); + + // Placements without an override still resolve to their system award. + const silvers = await postgres.query>( + `SELECT DISTINCT award_id FROM award_recipients + WHERE tournament_id = $1 AND placement = 2`, + [t.id], + ); + expect(silvers.map((s) => s.award_id)).toEqual([ + await systemAward("tournament_silver"), + ]); + }); + + it("rebuilds calculated rows on recalc while hand-granted rows survive", async () => { + const t = await playedOutCup(); + const awardId = await createAward("Organizer's Pick"); + + const [seat] = await postgres.query< + Array<{ tournament_team_id: string; player_steam_id: string }> + >( + `SELECT tournament_team_id, player_steam_id FROM award_recipients + WHERE tournament_id = $1 AND player_steam_id IS NOT NULL LIMIT 1`, + [t.id], + ); + + await postgres.query( + `INSERT INTO award_recipients + (award_id, tournament_id, tournament_team_id, player_steam_id, source) + VALUES ($1, $2, $3, $4, 'manual')`, + [awardId, t.id, seat.tournament_team_id, seat.player_steam_id], + ); + + await postgres.query("SELECT calculate_tournament_awards($1)", [t.id]); + + const [counts] = await postgres.query< + Array<{ calculated: string; manual: string }> + >( + `SELECT + count(*) FILTER (WHERE source = 'tournament') AS calculated, + count(*) FILTER (WHERE source = 'manual') AS manual + FROM award_recipients WHERE tournament_id = $1`, + [t.id], + ); + expect(Number(counts.calculated)).toBeGreaterThan(0); + expect(Number(counts.manual)).toBe(1); + }); + + it("keeps hand-granted awards out of the medal leaderboard", async () => { + const t = await playedOutCup(); + const awardId = await createAward("Community MVP"); + const steamId = await fx.player(); + + await postgres.query( + `INSERT INTO award_recipients (award_id, player_steam_id, source) + VALUES ($1, $2, 'manual')`, + [awardId, steamId], + ); + + const rows = await postgres.query>( + "SELECT player_steam_id FROM get_leaderboard('awards', 0)", + ); + expect(rows.length).toBeGreaterThan(0); + expect(rows.map((r) => String(r.player_steam_id))).not.toContain( + String(steamId), + ); + void t; + }); + }); + + describe("season awards", () => { + const seedSeasonElo = async ( + seasonId: string, + rows: Array<{ steam: string; elo: number; impact: number }>, + ) => { + for (const row of rows) { + const { matchId } = await fx.bareMatch(); + await postgres.query( + `INSERT INTO player_elo + (match_id, steam_id, season_id, type, current, change, impact, + expected_score, actual_score, k_factor) + VALUES ($1, $2, $3, 'Competitive', $4, 0, $5, 0.5, 1.0, 32)`, + [matchId, row.steam, seasonId, row.elo, row.impact], + ); + } + }; + + it("ships the four season system awards", async () => { + const rows = await postgres.query>( + `SELECT system_key FROM awards + WHERE system_key LIKE 'season\\_%' ORDER BY system_key`, + ); + expect(rows.map((r) => r.system_key)).toEqual([ + "season_bronze", + "season_gold", + "season_mvp", + "season_silver", + ]); + }); + + it("places the top three by season elo and an mvp by impact", async () => { + const [season] = await postgres.query>( + "INSERT INTO seasons (starts_at) VALUES (now()) RETURNING id", + ); + const players = await fx.players(4); + + // Highest elo is players[0]; highest impact is players[3], so the + // champion and the MVP must be different people. + await seedSeasonElo(season.id, [ + { steam: players[0], elo: 1400, impact: 1.0 }, + { steam: players[1], elo: 1300, impact: 1.0 }, + { steam: players[2], elo: 1200, impact: 1.0 }, + { steam: players[3], elo: 1100, impact: 1.9 }, + ]); + + await postgres.query("SELECT calculate_season_awards($1)", [season.id]); + + const rows = await postgres.query< + Array<{ + placement: number; + player_steam_id: string; + system_key: string; + }> + >( + `SELECT ar.placement, ar.player_steam_id, a.system_key + FROM award_recipients ar + JOIN awards a ON a.id = ar.award_id + WHERE ar.season_id = $1 AND ar.source = 'season' + ORDER BY ar.placement`, + [season.id], + ); + + expect(rows.map((r) => r.system_key)).toEqual([ + "season_mvp", + "season_gold", + "season_silver", + "season_bronze", + ]); + expect(String(rows[0].player_steam_id)).toBe(String(players[3])); + expect(String(rows[1].player_steam_id)).toBe(String(players[0])); + expect(String(rows[3].player_steam_id)).toBe(String(players[2])); + }); + + it("recalculates without duplicating, and keeps hand-granted rows", async () => { + const [season] = await postgres.query>( + "INSERT INTO seasons (starts_at) VALUES (now()) RETURNING id", + ); + const players = await fx.players(3); + await seedSeasonElo( + season.id, + players.map((steam, i) => ({ steam, elo: 1400 - i * 100, impact: 1 })), + ); + + const handId = await createAward("Season Community Pick"); + await postgres.query( + `INSERT INTO award_recipients (award_id, season_id, player_steam_id, source) + VALUES ($1, $2, $3, 'manual')`, + [handId, season.id, players[0]], + ); + + await postgres.query("SELECT calculate_season_awards($1)", [season.id]); + await postgres.query("SELECT calculate_season_awards($1)", [season.id]); + + const [counts] = await postgres.query< + Array<{ calculated: string; manual: string }> + >( + `SELECT + count(*) FILTER (WHERE source = 'season') AS calculated, + count(*) FILTER (WHERE source = 'manual') AS manual + FROM award_recipients WHERE season_id = $1`, + [season.id], + ); + expect(Number(counts.calculated)).toBe(4); + expect(Number(counts.manual)).toBe(1); + }); + + it("seats awards when a season ends and drops them if it reopens", async () => { + const [season] = await postgres.query>( + "INSERT INTO seasons (starts_at) VALUES (now() - interval '30 days') RETURNING id", + ); + const players = await fx.players(3); + await seedSeasonElo( + season.id, + players.map((steam, i) => ({ steam, elo: 1400 - i * 100, impact: 1 })), + ); + + const calculated = async () => + Number( + ( + await postgres.query>( + `SELECT count(*) AS c FROM award_recipients + WHERE season_id = $1 AND source = 'season'`, + [season.id], + ) + )[0].c, + ); + + expect(await calculated()).toBe(0); + + await postgres.query( + "UPDATE seasons SET ends_at = now() - interval '1 day' WHERE id = $1", + [season.id], + ); + expect(await calculated()).toBeGreaterThan(0); + + // Ending a season auto-creates its successor (triggers/seasons.sql), so + // clear that before reopening or the two ranges overlap. + await postgres.query("DELETE FROM seasons WHERE id <> $1", [season.id]); + await postgres.query("UPDATE seasons SET ends_at = NULL WHERE id = $1", [ + season.id, + ]); + expect(await calculated()).toBe(0); + }); + }); + + describe("awards_enabled", () => { + it("round-trips the calculated rows without touching hand-granted ones", async () => { + const t = await playedOutCup(); + const awardId = await createAward("Organizer's Pick"); + const steamId = await fx.player(); + + await postgres.query( + `INSERT INTO award_recipients (award_id, player_steam_id, source) + VALUES ($1, $2, 'manual')`, + [awardId, steamId], + ); + + const calculated = async () => + Number( + ( + await postgres.query>( + `SELECT count(*) AS c FROM award_recipients + WHERE tournament_id = $1 AND source = 'tournament'`, + [t.id], + ) + )[0].c, + ); + + expect(await calculated()).toBeGreaterThan(0); + + await postgres.query( + "UPDATE tournaments SET awards_enabled = false WHERE id = $1", + [t.id], + ); + expect(await calculated()).toBe(0); + + await postgres.query( + "UPDATE tournaments SET awards_enabled = true WHERE id = $1", + [t.id], + ); + expect(await calculated()).toBeGreaterThan(0); + + const [{ c }] = await postgres.query>( + "SELECT count(*) AS c FROM award_recipients WHERE award_id = $1", + [awardId], + ); + expect(Number(c)).toBe(1); + }); + }); +}); diff --git a/test/telemetry.spec.ts b/test/telemetry.spec.ts new file mode 100644 index 00000000..486140d0 --- /dev/null +++ b/test/telemetry.spec.ts @@ -0,0 +1,379 @@ +import { Logger } from "@nestjs/common"; +import { PostgresService } from "./../src/postgres/postgres.service"; +import { Fixtures } from "./utils/fixtures"; +import { bootMigratedDb, SqlTestDb } from "./utils/sql-test-db"; +import { TelemetryService } from "./../src/telemetry/telemetry.service"; +import { TelemetryPayload } from "./../src/telemetry/types/TelemetryPayload"; + +// Both halves of the telemetry loop run against a real migrated schema: the +// sender's collect() query (every column name and join it touches) and the +// receiver's sanitize -> persist -> aggregate path over the jsonb payloads. +describe("telemetry (SQL-driven)", () => { + let db: SqlTestDb; + let postgres: PostgresService; + let fx: Fixtures; + let service: TelemetryService; + let redis: { setex: jest.Mock; keys: jest.Mock }; + + beforeAll(async () => { + db = await bootMigratedDb("TelemetryTest"); + postgres = db.postgres; + fx = new Fixtures(postgres, 76561193000000000n); + + redis = { + setex: jest.fn().mockResolvedValue("OK"), + keys: jest.fn().mockResolvedValue([]), + }; + + service = new TelemetryService( + new Logger("TelemetryTest"), + { getConnection: () => redis } as never, + null as never, + { get: () => ({ webDomain: "https://panel.test" }) } as never, + postgres, + { getPanelVersion: async () => "abcdef1234567890" } as never, + // Pass-through so the aggregation SQL runs on every assertion. + { remember: async (_key, callback) => await callback() } as never, + ); + }, 600_000); + + afterAll(async () => { + await db?.stop(); + }); + + beforeEach(async () => { + await postgres.query("DELETE FROM telemetry_snapshots"); + await postgres.query("DELETE FROM telemetry_installs"); + redis.setex.mockClear(); + }); + + describe("collect", () => { + let payload: TelemetryPayload; + + beforeAll(async () => { + await fx.region("TelemetryRegion"); + + const ran = await fx.bareMatch(new Date().toISOString()); + await postgres.query( + "UPDATE matches SET started_at = now() WHERE id = $1", + [ran.matchId], + ); + + // Never started: must land in `created` but not in `total` or the windows. + await fx.bareMatch(); + + payload = await service.collect(); + }, 600_000); + + it("runs every counter query against the real schema", () => { + expect(payload.schema).toBeGreaterThan(0); + expect(payload.install_id).toMatch( + /^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$/, + ); + expect(payload.panel_version).toBe("abcdef1234567890"); + }); + + it("counts only started matches as ran, and every row as created", () => { + expect(payload.matches.created).toBe(2); + expect(payload.matches.total).toBe(1); + expect(payload.matches.week).toBe(1); + expect(payload.matches.month).toBe(1); + expect(payload.matches.year).toBe(1); + }); + + it("reports the servers seeded by the region fixture", () => { + expect(payload.servers.total).toBeGreaterThanOrEqual(1); + expect(payload.servers.dedicated).toBeGreaterThanOrEqual(1); + }); + + it("reports every feature with an enabled flag or a usage count", () => { + for (const key of [ + "tournaments", + "leagues", + "seasons", + "events", + "news", + "highlights", + "system_alerts", + "awards", + "scrims", + "matchmaking", + "custom_pages", + "branding", + ]) { + expect(payload.features[key]).toBeDefined(); + } + + // Absent settings rows must resolve to the app's own default, not null. + expect(payload.features.events.enabled).toBe(false); + expect(payload.features.scrims.enabled).toBe(true); + expect(payload.features.highlights.count).toBe(0); + }); + + it("keeps the install id out of the guest-readable settings namespace", async () => { + const rows = await postgres.query>( + "SELECT name FROM settings WHERE value = $1", + [payload.install_id], + ); + + expect(rows).toHaveLength(1); + expect(rows[0].name.startsWith("public.")).toBe(false); + }); + + it("returns the same install id on every collection", async () => { + const again = await service.collect(); + expect(again.install_id).toBe(payload.install_id); + }); + }); + + describe("record", () => { + const install = "11111111-2222-3333-4444-555555555555"; + + const report = (over: Record = {}) => ({ + schema: 1, + install_id: install, + installed_at: "2024-01-01T00:00:00.000Z", + panel_version: "deadbeef", + plugin_runtime: "swiftly", + nodes: { total: 2, enabled: 2, online: 1, regions: 1 }, + servers: { + total: 10, + enabled: 9, + dedicated: 3, + on_demand: 7, + public: 4, + capacity: 120, + }, + matches: { + total: 500, + created: 520, + week: 12, + month: 40, + year: 300, + maps_played: 700, + by_type: { Competitive: 480, Wingman: 20 }, + by_source: { "5stack": 500 }, + tournament: 60, + league: 10, + scrim: 25, + }, + players: { registered: 300, active_7d: 40, active_30d: 90, teams: 22 }, + features: { + events: { enabled: true, count: 4 }, + news: { enabled: false, count: 0 }, + highlights: { enabled: null, count: 88 }, + }, + ...over, + }); + + it("persists an install and its daily snapshot", async () => { + await service.record("203.0.113.7", "US", report()); + + const [row] = await postgres.query>>( + "SELECT * FROM telemetry_installs WHERE install_id = $1", + [install], + ); + + expect(row.panel_version).toBe("deadbeef"); + expect(row.country).toBe("US"); + expect(row.payload.matches.total).toBe(500); + + const snapshots = await postgres.query>>( + "SELECT * FROM telemetry_snapshots WHERE install_id = $1", + [install], + ); + + expect(snapshots).toHaveLength(1); + }); + + it("keeps one snapshot per install per day and keeps first_seen_at", async () => { + await service.record("203.0.113.7", "US", report()); + + const [first] = await postgres.query>( + "SELECT first_seen_at FROM telemetry_installs WHERE install_id = $1", + [install], + ); + + await service.record( + "203.0.113.7", + "US", + report({ matches: { ...report().matches, total: 600 } }), + ); + + const [row] = await postgres.query< + Array<{ first_seen_at: Date; payload: any }> + >("SELECT * FROM telemetry_installs WHERE install_id = $1", [install]); + + expect(row.first_seen_at).toEqual(first.first_seen_at); + expect(row.payload.matches.total).toBe(600); + + const snapshots = await postgres.query>>( + "SELECT * FROM telemetry_snapshots WHERE install_id = $1", + [install], + ); + + expect(snapshots).toHaveLength(1); + expect(snapshots[0].payload.matches.total).toBe(600); + }); + + it("counts a payload-less legacy panel as online without persisting it", async () => { + await service.record("203.0.113.9", "CA", {}); + + expect(redis.setex).toHaveBeenCalledWith( + "online_system:203.0.113.9", + 3600, + "{}", + ); + + const rows = await postgres.query>( + "SELECT install_id FROM telemetry_installs", + ); + + expect(rows).toHaveLength(0); + }); + + it("clamps and strips forged input", async () => { + await service.record("203.0.113.7", "US", { + ...report(), + evil: "DROP TABLE", + nodes: { total: -5, enabled: "1e400", online: 1, regions: 1 }, + matches: { ...report().matches, total: 10_000_000_000 }, + }); + + const [row] = await postgres.query>( + "SELECT payload FROM telemetry_installs WHERE install_id = $1", + [install], + ); + + expect(row.payload.evil).toBeUndefined(); + expect(row.payload.nodes.total).toBe(0); + expect(row.payload.matches.total).toBe(100_000_000); + }); + + it("rejects a report with no usable install id", async () => { + await service.record("203.0.113.8", "US", { + ...report(), + install_id: "not-a-uuid", + }); + + const rows = await postgres.query>( + "SELECT install_id FROM telemetry_installs", + ); + + expect(rows).toHaveLength(0); + }); + }); + + describe("getFleetStats", () => { + const installA = "aaaaaaaa-0000-4000-8000-000000000001"; + const installB = "bbbbbbbb-0000-4000-8000-000000000002"; + + const report = (installId: string, matches: number, servers: number) => ({ + schema: 1, + install_id: installId, + installed_at: "2024-01-01T00:00:00.000Z", + panel_version: "cafebabe", + plugin_runtime: "css", + nodes: { total: 1, enabled: 1, online: 1, regions: 1 }, + servers: { + total: servers, + enabled: servers, + dedicated: 1, + on_demand: servers - 1, + public: 2, + capacity: servers * 10, + }, + matches: { + total: matches, + created: matches, + week: 5, + month: 20, + year: 100, + maps_played: matches * 2, + by_type: { Competitive: matches }, + by_source: { "5stack": matches }, + tournament: 1, + league: 0, + scrim: 2, + }, + players: { registered: 50, active_7d: 5, active_30d: 12, teams: 3 }, + features: { + events: { enabled: installId === installA, count: 3 }, + highlights: { enabled: null, count: 10 }, + }, + }); + + beforeEach(async () => { + await service.record("203.0.113.1", "US", report(installA, 100, 4)); + await service.record("203.0.113.2", "DE", report(installB, 250, 6)); + }); + + it("sums the latest payload of every recently active install", async () => { + const stats = await service.getFleetStats(); + + expect(stats.installs.total).toBe(2); + expect(stats.installs.active24h).toBe(2); + expect(stats.totals.matches).toBe(350); + expect(stats.totals.servers).toBe(10); + expect(stats.totals.serverCapacity).toBe(100); + expect(stats.totals.mapsPlayed).toBe(700); + }); + + it("reports feature adoption across installs", async () => { + const stats = await service.getFleetStats(); + const events = stats.features.find((f) => f.key === "events"); + const highlights = stats.features.find((f) => f.key === "highlights"); + + expect(events.reporting).toBe(2); + expect(events.enabled).toBe(1); + expect(events.total).toBe(6); + + // No flag, so nothing is "enabled" — adoption is the count alone. + expect(highlights.enabled).toBe(0); + expect(highlights.installsUsing).toBe(2); + expect(highlights.total).toBe(20); + }); + + it("groups installs by panel version and first-seen month", async () => { + const stats = await service.getFleetStats(); + + expect(stats.versions).toEqual([{ version: "cafebabe", installs: 2 }]); + expect(stats.growth).toHaveLength(1); + expect(stats.growth[0].installs).toBe(2); + }); + + it("derives daily matches from the counter delta, never going negative", async () => { + await postgres.query( + `INSERT INTO telemetry_snapshots (install_id, day, payload) + VALUES ($1, current_date - 2, $2), ($1, current_date - 1, $3)`, + [ + installA, + JSON.stringify(report(installA, 40, 4)), + JSON.stringify(report(installA, 70, 4)), + ], + ); + + // A wiped database reports a counter below the previous day's. + await postgres.query( + `INSERT INTO telemetry_snapshots (install_id, day, payload) + VALUES ($1, current_date - 1, $2)`, + [installB, JSON.stringify(report(installB, 900, 6))], + ); + + const stats = await service.getFleetStats(); + const byDay = new Map(stats.activity.map((point) => [point.day, point])); + + const yesterday = new Date(); + yesterday.setDate(yesterday.getDate() - 1); + const key = yesterday.toISOString().slice(0, 10); + + // installA: 70 - 40 = 30. installB has no prior day, so it contributes 0. + expect(byDay.get(key).matches).toBe(30); + expect(byDay.get(key).installs).toBe(2); + + const today = new Date().toISOString().slice(0, 10); + // installB drops 900 -> 250; the clamp keeps it at 0 rather than negative. + expect(byDay.get(today).matches).toBe(30); + }); + }); +}); diff --git a/test/tournament-edge-cases.spec.ts b/test/tournament-edge-cases.spec.ts index fe5a47f6..2e3df09f 100644 --- a/test/tournament-edge-cases.spec.ts +++ b/test/tournament-edge-cases.spec.ts @@ -153,7 +153,7 @@ describe("tournament edge cases (SQL-driven)", () => { const bronzeTeams = await postgres.query< Array<{ tournament_team_id: string }> >( - `SELECT DISTINCT tournament_team_id FROM tournament_trophies + `SELECT DISTINCT tournament_team_id FROM award_recipients WHERE tournament_id = $1 AND placement = 3`, [t.id], ); @@ -164,7 +164,7 @@ describe("tournament edge cases (SQL-driven)", () => { finalThird.tournament_team_id_1, ]); - // And the trophies leaderboard hands each roster exactly its medal: + // And the awards leaderboard hands each roster exactly its medal: // value/secondary/tertiary are the gold/silver/bronze counts. const finalBracket = (await tfx.getBrackets(stage)).find( (b) => b.round === 2 && b.match_number === 1, @@ -179,16 +179,16 @@ describe("tournament edge cases (SQL-driven)", () => { ) .map((r) => r.player_steam_id) .sort(); - const trophies = await postgres.query< + const medals = await postgres.query< Array<{ player_steam_id: string; value: number; secondary_value: number; tertiary_value: number; }> - >("SELECT * FROM get_leaderboard('trophies', 0)"); - const medalists = (pick: (r: (typeof trophies)[number]) => number) => - trophies + >("SELECT * FROM get_leaderboard('awards', 0)"); + const medalists = (pick: (r: (typeof medals)[number]) => number) => + medals .filter((r) => Number(pick(r)) === 1) .map((r) => r.player_steam_id) .sort(); diff --git a/test/tournament-reset.spec.ts b/test/tournament-reset.spec.ts index b047bbb4..a6f073dd 100644 --- a/test/tournament-reset.spec.ts +++ b/test/tournament-reset.spec.ts @@ -10,7 +10,7 @@ import { // Exercises reset_tournament_match / preview_tournament_match_reset: rewinding // a reported result unwinds every downstream bracket (slot clearing, match // deletion, unfinishing), restores the source match, and rolls a finished -// tournament back to Live with its auto trophies revoked. +// tournament back to Live with its calculated awards revoked. describe("tournament match reset (SQL-driven)", () => { let db: SqlTestDb; let postgres: PostgresService; @@ -124,13 +124,13 @@ describe("tournament match reset (SQL-driven)", () => { expect(source.winning_lineup_id).toBeNull(); }); - it("rolls a finished tournament back to Live and revokes its trophies", async () => { + it("rolls a finished tournament back to Live and revokes its calculated awards", async () => { const t = await playedOutCup(); expect( Number( ( await postgres.query>( - "SELECT count(*) AS c FROM tournament_trophies WHERE tournament_id = $1", + "SELECT count(*) AS c FROM award_recipients WHERE tournament_id = $1", [t.id], ) )[0].c, @@ -144,12 +144,44 @@ describe("tournament match reset (SQL-driven)", () => { expect(await tfx.tournamentStatus(t.id)).toBe("Live"); const [{ c }] = await postgres.query>( - "SELECT count(*) AS c FROM tournament_trophies WHERE tournament_id = $1", + "SELECT count(*) AS c FROM award_recipients WHERE tournament_id = $1", [t.id], ); expect(Number(c)).toBe(0); }); + it("rolling a finished tournament back keeps hand-granted awards", async () => { + const t = await playedOutCup(); + + const [existing] = await postgres.query< + Array<{ tournament_team_id: string; player_steam_id: string }> + >( + `SELECT tournament_team_id, player_steam_id FROM award_recipients + WHERE tournament_id = $1 AND player_steam_id IS NOT NULL + LIMIT 1`, + [t.id], + ); + + await postgres.query( + `INSERT INTO award_recipients + (award_id, tournament_id, tournament_team_id, player_steam_id, source) + VALUES ((SELECT id FROM awards WHERE system_key = 'tournament_mvp'), $1, $2, $3, 'manual')`, + [t.id, existing.tournament_team_id, existing.player_steam_id], + ); + + const semi = (await tfx.getBrackets(t.stageIds[0])).find( + (b) => b.round === 1, + )!; + await resetMatch(semi.match_id!); + + const [{ c }] = await postgres.query>( + `SELECT count(*) AS c FROM award_recipients + WHERE tournament_id = $1 AND source = 'manual'`, + [t.id], + ); + expect(Number(c)).toBe(1); + }); + it("resetting with a corrected winner repropagates the bracket", async () => { const t = await playedOutCup(); let brackets = await tfx.getBrackets(t.stageIds[0]); @@ -358,7 +390,7 @@ describe("tournament match reset (SQL-driven)", () => { await sweep(stage); expect(await tfx.tournamentStatus(t.id)).toBe("Finished"); const [{ c }] = await postgres.query>( - "SELECT count(*) AS c FROM tournament_trophies WHERE tournament_id = $1", + "SELECT count(*) AS c FROM award_recipients WHERE tournament_id = $1", [t.id], ); expect(Number(c)).toBeGreaterThan(0); diff --git a/test/tournaments.spec.ts b/test/tournaments.spec.ts index af85639e..c4f671f2 100644 --- a/test/tournaments.spec.ts +++ b/test/tournaments.spec.ts @@ -11,7 +11,7 @@ import { // (tbu_tournaments), stage validation, team registration (roster copy + // eligibility), bracket seeding on registration close, match scheduling, // winner propagation through the bracket (update_tournament_bracket), the -// min-teams auto-cancel, automatic finish, and trophy calculation. +// min-teams auto-cancel, automatic finish, and award calculation. describe("tournaments (SQL-driven)", () => { let db: SqlTestDb; let postgres: PostgresService; @@ -396,7 +396,7 @@ describe("tournaments (SQL-driven)", () => { expect(final.match_id).toBeNull(); }); - it("winners propagate into the final, which finishes the tournament and awards trophies", async () => { + it("winners propagate into the final, which finishes the tournament and grants awards", async () => { const { tournament } = await seedFourTeamCup(); await setStatus(tournament.id, tournament.organizer, "Live"); expect((await getTournament(tournament.id)).status).toBe("Live"); @@ -426,21 +426,23 @@ describe("tournaments (SQL-driven)", () => { expect((await getTournament(tournament.id)).status).toBe("Finished"); - const trophies = await postgres.query< + const awards = await postgres.query< Array<{ placement: number; tournament_team_id: string; - manual: boolean; + source: string; + award_id: string; }> >( - `SELECT placement, tournament_team_id, manual FROM tournament_trophies + `SELECT placement, tournament_team_id, source, award_id FROM award_recipients WHERE tournament_id = $1 ORDER BY placement`, [tournament.id], ); - expect(trophies.length).toBeGreaterThan(0); - expect(trophies.every((t) => t.manual === false)).toBe(true); + expect(awards.length).toBeGreaterThan(0); + expect(awards.every((t) => t.source === "tournament")).toBe(true); + expect(awards.every((t) => t.award_id !== null)).toBe(true); // The final's winner holds placement 1. - const champions = trophies.filter((t) => Number(t.placement) === 1); + const champions = awards.filter((t) => Number(t.placement) === 1); const [finalAfter] = (await getBrackets(tournament.id)).filter( (b) => b.round === 2, ); @@ -495,7 +497,7 @@ describe("tournaments (SQL-driven)", () => { ).rejects.toThrow(/Cannot leave/i); }); - it("disabling trophies wipes auto placements; re-enabling rebuilds them", async () => { + it("disabling awards wipes auto placements; re-enabling rebuilds them", async () => { const { tournament } = await seedFourTeamCup(); await setStatus(tournament.id, tournament.organizer, "Live"); @@ -513,7 +515,7 @@ describe("tournaments (SQL-driven)", () => { Number( ( await postgres.query>( - "SELECT count(*) AS c FROM tournament_trophies WHERE tournament_id = $1", + "SELECT count(*) AS c FROM award_recipients WHERE tournament_id = $1", [tournament.id], ) )[0].c, @@ -521,13 +523,13 @@ describe("tournaments (SQL-driven)", () => { expect(await count()).toBeGreaterThan(0); await postgres.query( - "UPDATE tournaments SET trophies_enabled = false WHERE id = $1", + "UPDATE tournaments SET awards_enabled = false WHERE id = $1", [tournament.id], ); expect(await count()).toBe(0); await postgres.query( - "UPDATE tournaments SET trophies_enabled = true WHERE id = $1", + "UPDATE tournaments SET awards_enabled = true WHERE id = $1", [tournament.id], ); expect(await count()).toBeGreaterThan(0); From b89ae39c62f43795c107e90576f3eb49fdfcd5ca Mon Sep 17 00:00:00 2001 From: Luke Policinski Date: Sun, 26 Jul 2026 12:18:05 -0400 Subject: [PATCH 2/8] wip --- .../functions/leaderboard/get_leaderboard.sql | 36 +++++++- .../seasons/calculate_season_awards.sql | 6 +- hasura/metadata/actions.graphql | 3 + .../default/1873000000600_awards/down.sql | 10 ++- .../default/1873000000600_awards/up.sql | 33 +++++++ src/awards/awards.service.ts | 87 ++++++++++++------- src/telemetry/telemetry.service.ts | 7 +- test/telemetry.spec.ts | 9 +- 8 files changed, 151 insertions(+), 40 deletions(-) diff --git a/hasura/functions/leaderboard/get_leaderboard.sql b/hasura/functions/leaderboard/get_leaderboard.sql index 973fd50e..6f9f94c7 100644 --- a/hasura/functions/leaderboard/get_leaderboard.sql +++ b/hasura/functions/leaderboard/get_leaderboard.sql @@ -546,12 +546,40 @@ BEGIN SUM(CASE WHEN ar.placement = 3 THEN 1 ELSE 0 END)::int as bronze, COUNT(*)::int as total FROM award_recipients ar - JOIN tournaments t ON t.id = ar.tournament_id - JOIN match_options mo ON mo.id = t.match_options_id + -- Tournament placements carry a match type and a start date, so they honour + -- the window and type filters. Season placements are ranked from the season + -- itself: they have no match_options, so they only apply when no type filter + -- is set, and their date is the season's end. + LEFT JOIN tournaments t ON t.id = ar.tournament_id + LEFT JOIN match_options mo ON mo.id = t.match_options_id + LEFT JOIN seasons s ON s.id = ar.season_id WHERE ar.player_steam_id IS NOT NULL AND ar.placement IS NOT NULL - AND ((_from IS NULL OR t.start >= _from) AND (_to IS NULL OR t.start < _to)) - AND (_match_type IS NULL OR mo.type = _match_type) + AND (ar.tournament_id IS NOT NULL OR ar.season_id IS NOT NULL) + AND ( + ar.tournament_id IS NULL + OR ( + ((_from IS NULL OR t.start >= _from) AND (_to IS NULL OR t.start < _to)) + AND (_match_type IS NULL OR mo.type = _match_type) + ) + ) + AND ( + ar.season_id IS NULL + OR ( + _match_type IS NULL + AND ( + -- A season's own medals are handed out at its close, which is the + -- exclusive end of its window, so match the season directly rather + -- than by date when the board is already scoped to one. + (_season_id IS NOT NULL AND ar.season_id = _season_id) + OR ( + _season_id IS NULL + AND (_from IS NULL OR coalesce(s.ends_at, s.starts_at) >= _from) + AND (_to IS NULL OR coalesce(s.ends_at, s.starts_at) < _to) + ) + ) + ) + ) GROUP BY ar.player_steam_id ) SELECT diff --git a/hasura/functions/seasons/calculate_season_awards.sql b/hasura/functions/seasons/calculate_season_awards.sql index 52cb74b7..687da1e1 100644 --- a/hasura/functions/seasons/calculate_season_awards.sql +++ b/hasura/functions/seasons/calculate_season_awards.sql @@ -35,7 +35,11 @@ BEGIN FROM ( SELECT entry.player_steam_id, - ROW_NUMBER() OVER (ORDER BY entry.value DESC) AS rank + -- steam_id breaks ties so a recalculation cannot swap two players + -- on equal elo between 2nd and 3rd. + ROW_NUMBER() OVER ( + ORDER BY entry.value DESC, entry.player_steam_id ASC + ) AS rank FROM public._leaderboard_elo(0, NULL, false, _season_id) entry ) ranked WHERE ranked.rank <= 3 diff --git a/hasura/metadata/actions.graphql b/hasura/metadata/actions.graphql index 87b04c46..50cde4f4 100644 --- a/hasura/metadata/actions.graphql +++ b/hasura/metadata/actions.graphql @@ -1669,6 +1669,9 @@ type Mutation { player_steam_id: String team_id: uuid tournament_id: uuid + event_id: uuid + season_id: uuid + league_season_id: uuid note: String ): AwardRecipient } diff --git a/hasura/migrations/default/1873000000600_awards/down.sql b/hasura/migrations/default/1873000000600_awards/down.sql index b232f18d..4447d78b 100644 --- a/hasura/migrations/default/1873000000600_awards/down.sql +++ b/hasura/migrations/default/1873000000600_awards/down.sql @@ -19,10 +19,18 @@ DELETE FROM public.awards WHERE system_key IN ('season_mvp', 'season_gold', 'season_silver', 'season_bronze'); +ALTER TABLE public.award_recipients + DROP CONSTRAINT IF EXISTS award_recipients_single_scope_check; + +DROP INDEX IF EXISTS public.idx_award_recipients_league_season; +DROP INDEX IF EXISTS public.idx_award_recipients_event; DROP INDEX IF EXISTS public.award_recipients_season_player_key; DROP INDEX IF EXISTS public.idx_award_recipients_season; -ALTER TABLE public.award_recipients DROP COLUMN IF EXISTS season_id; +ALTER TABLE public.award_recipients + DROP COLUMN IF EXISTS league_season_id, + DROP COLUMN IF EXISTS event_id, + DROP COLUMN IF EXISTS season_id; DELETE FROM public.e_award_sources WHERE value = 'season'; diff --git a/hasura/migrations/default/1873000000600_awards/up.sql b/hasura/migrations/default/1873000000600_awards/up.sql index 1d06585e..ef9b86f5 100644 --- a/hasura/migrations/default/1873000000600_awards/up.sql +++ b/hasura/migrations/default/1873000000600_awards/up.sql @@ -300,6 +300,39 @@ CREATE UNIQUE INDEX IF NOT EXISTS award_recipients_season_player_key ON public.award_recipients(season_id, player_steam_id, placement) WHERE season_id IS NOT NULL AND player_steam_id IS NOT NULL; +-- Recipients can be scoped to every context `awards` can, otherwise a grant made +-- from an event or league season page loses what it was given for. +ALTER TABLE public.award_recipients + ADD COLUMN IF NOT EXISTS event_id uuid + REFERENCES public.events(id) ON DELETE CASCADE, + ADD COLUMN IF NOT EXISTS league_season_id uuid + REFERENCES public.league_seasons(id) ON DELETE CASCADE; + +CREATE INDEX IF NOT EXISTS idx_award_recipients_event + ON public.award_recipients(event_id, source) WHERE event_id IS NOT NULL; +CREATE INDEX IF NOT EXISTS idx_award_recipients_league_season + ON public.award_recipients(league_season_id, source) + WHERE league_season_id IS NOT NULL; + +-- A grant belongs to one context, mirroring awards_single_scope_check. +DO $$ +BEGIN + IF NOT EXISTS ( + SELECT 1 FROM pg_constraint + WHERE conrelid = 'public.award_recipients'::regclass + AND conname = 'award_recipients_single_scope_check' + ) THEN + ALTER TABLE public.award_recipients + ADD CONSTRAINT award_recipients_single_scope_check + CHECK ( + (CASE WHEN tournament_id IS NULL THEN 0 ELSE 1 END) + + (CASE WHEN season_id IS NULL THEN 0 ELSE 1 END) + + (CASE WHEN event_id IS NULL THEN 0 ELSE 1 END) + + (CASE WHEN league_season_id IS NULL THEN 0 ELSE 1 END) <= 1 + ); + END IF; +END $$; + INSERT INTO public.e_award_sources (value, description) VALUES ('season', 'Calculated from a season standing') ON CONFLICT (value) DO NOTHING; diff --git a/src/awards/awards.service.ts b/src/awards/awards.service.ts index e24edbeb..cce4b46e 100644 --- a/src/awards/awards.service.ts +++ b/src/awards/awards.service.ts @@ -34,6 +34,18 @@ export interface AwardRow { updated_at: string; } +export interface GrantAwardInput { + award_id: string; + player_steam_id?: string | null; + team_id?: string | null; + tournament_id?: string | null; + event_id?: string | null; + season_id?: string | null; + league_season_id?: string | null; + note?: string | null; + awarded_by_steam_id: string; +} + interface TournamentAwardRow { id: string; tournament_id: string; @@ -83,15 +95,7 @@ export class AwardsService { throw new BadRequestException("Invalid silhouette"); } - const scopes = [ - input.tournament_id, - input.event_id, - input.season_id, - input.league_season_id, - ].filter(Boolean); - if (scopes.length > 1) { - throw new BadRequestException("An award belongs to one scope at most"); - } + this.assertSingleScope(input); if (!input.id) { const [created] = await this.postgres.query( @@ -170,14 +174,7 @@ export class AwardsService { ]); } - public async grantAward(input: { - award_id: string; - player_steam_id?: string | null; - team_id?: string | null; - tournament_id?: string | null; - note?: string | null; - awarded_by_steam_id: string; - }) { + public async grantAward(input: GrantAwardInput) { const hasPlayer = !!input.player_steam_id; const hasTeam = !!input.team_id; @@ -187,6 +184,8 @@ export class AwardsService { ); } + this.assertSingleScope(input); + await this.requireAward(input.award_id); let tournamentTeamId: string | null = null; @@ -201,8 +200,9 @@ export class AwardsService { const [granted] = await this.postgres.query>( `INSERT INTO public.award_recipients (award_id, player_steam_id, team_id, tournament_id, tournament_team_id, + event_id, season_id, league_season_id, source, awarded_by_steam_id, note) - VALUES ($1, $2, $3, $4, $5, 'manual', $6, $7) + VALUES ($1, $2, $3, $4, $5, $6, $7, $8, 'manual', $9, $10) RETURNING *`, [ input.award_id, @@ -210,6 +210,9 @@ export class AwardsService { input.team_id ?? null, input.tournament_id ?? null, tournamentTeamId, + input.event_id ?? null, + input.season_id ?? null, + input.league_season_id ?? null, input.awarded_by_steam_id, input.note ?? null, ], @@ -222,11 +225,36 @@ export class AwardsService { return granted; } + public assertSingleScope(input: { + tournament_id?: string | null; + event_id?: string | null; + season_id?: string | null; + league_season_id?: string | null; + }): void { + const scopes = [ + input.tournament_id, + input.event_id, + input.season_id, + input.league_season_id, + ].filter(Boolean); + + if (scopes.length > 1) { + throw new BadRequestException("An award belongs to one scope at most"); + } + } + public async getRecipient(recipientId: string) { const [recipient] = await this.postgres.query< - Array<{ id: string; source: string; tournament_id: string | null }> + Array<{ + id: string; + source: string; + tournament_id: string | null; + event_id: string | null; + season_id: string | null; + league_season_id: string | null; + }> >( - `SELECT id, source, tournament_id + `SELECT id, source, tournament_id, event_id, season_id, league_season_id FROM public.award_recipients WHERE id = $1 LIMIT 1`, @@ -496,33 +524,34 @@ export class AwardsService { // to ON CONFLICT: tbi_award_recipients raises on a duplicate instead of // conflicting, so one existing holder would otherwise fail the whole grant. private async grantToRoster( - input: { - award_id: string; - team_id?: string | null; - tournament_id?: string | null; - note?: string | null; - awarded_by_steam_id: string; - }, + input: GrantAwardInput, tournamentTeamId: string | null, ): Promise { await this.postgres.query( `INSERT INTO public.award_recipients (award_id, player_steam_id, tournament_id, tournament_team_id, + event_id, season_id, league_season_id, source, awarded_by_steam_id, note) - SELECT $1, roster.player_steam_id, $2, $3, 'manual', $4, $5 + SELECT $1, roster.player_steam_id, $2, $3, $4, $5, $6, 'manual', $7, $8 FROM public.team_roster roster - WHERE roster.team_id = $6 + WHERE roster.team_id = $9 AND roster.role <> 'Invite' AND NOT EXISTS ( SELECT 1 FROM public.award_recipients held WHERE held.award_id = $1 AND held.player_steam_id = roster.player_steam_id AND held.tournament_id IS NOT DISTINCT FROM $2 + AND held.event_id IS NOT DISTINCT FROM $4 + AND held.season_id IS NOT DISTINCT FROM $5 + AND held.league_season_id IS NOT DISTINCT FROM $6 )`, [ input.award_id, input.tournament_id ?? null, tournamentTeamId, + input.event_id ?? null, + input.season_id ?? null, + input.league_season_id ?? null, input.awarded_by_steam_id, input.note ?? null, input.team_id, diff --git a/src/telemetry/telemetry.service.ts b/src/telemetry/telemetry.service.ts index 1624626f..79ea0a25 100644 --- a/src/telemetry/telemetry.service.ts +++ b/src/telemetry/telemetry.service.ts @@ -379,9 +379,12 @@ export class TelemetryService { })); } - private static toIntegers( + // `const T` keeps the key literals: without it T widens to `string`, the + // return type becomes an index signature, and spreading it into an object + // literal silently drops every property from the caller's type. + private static toIntegers( row: Record | undefined, - keys: Array, + keys: readonly T[], ): Record { const values = {} as Record; diff --git a/test/telemetry.spec.ts b/test/telemetry.spec.ts index 486140d0..6fe32820 100644 --- a/test/telemetry.spec.ts +++ b/test/telemetry.spec.ts @@ -33,7 +33,10 @@ describe("telemetry (SQL-driven)", () => { postgres, { getPanelVersion: async () => "abcdef1234567890" } as never, // Pass-through so the aggregation SQL runs on every assertion. - { remember: async (_key, callback) => await callback() } as never, + { + remember: async (_key: string, callback: () => Promise) => + await callback(), + } as never, ); }, 600_000); @@ -161,7 +164,7 @@ describe("telemetry (SQL-driven)", () => { features: { events: { enabled: true, count: 4 }, news: { enabled: false, count: 0 }, - highlights: { enabled: null, count: 88 }, + highlights: { enabled: null as boolean | null, count: 88 }, }, ...over, }); @@ -299,7 +302,7 @@ describe("telemetry (SQL-driven)", () => { players: { registered: 50, active_7d: 5, active_30d: 12, teams: 3 }, features: { events: { enabled: installId === installA, count: 3 }, - highlights: { enabled: null, count: 10 }, + highlights: { enabled: null as boolean | null, count: 10 }, }, }); From 5e8738b5f8f293dd1eb321adfd5538b5188abd76 Mon Sep 17 00:00:00 2001 From: Luke Policinski Date: Sun, 26 Jul 2026 12:19:13 -0400 Subject: [PATCH 3/8] wip --- .../tables/public_award_recipients.yaml | 8 ++++++ src/awards/awards.controller.ts | 26 ++++++++++++++----- 2 files changed, 28 insertions(+), 6 deletions(-) diff --git a/hasura/metadata/databases/default/tables/public_award_recipients.yaml b/hasura/metadata/databases/default/tables/public_award_recipients.yaml index f05f376a..dd4bf3d7 100644 --- a/hasura/metadata/databases/default/tables/public_award_recipients.yaml +++ b/hasura/metadata/databases/default/tables/public_award_recipients.yaml @@ -8,6 +8,12 @@ object_relationships: - name: awarded_by using: foreign_key_constraint_on: awarded_by_steam_id + - name: event + using: + foreign_key_constraint_on: event_id + - name: league_season + using: + foreign_key_constraint_on: league_season_id - name: player using: foreign_key_constraint_on: player_steam_id @@ -41,6 +47,8 @@ select_permissions: - award_id - tournament_id - season_id + - event_id + - league_season_id - tournament_team_id - team_id - player_steam_id diff --git a/src/awards/awards.controller.ts b/src/awards/awards.controller.ts index 22222573..51793421 100644 --- a/src/awards/awards.controller.ts +++ b/src/awards/awards.controller.ts @@ -81,15 +81,21 @@ export class AwardsController { player_steam_id?: string | null; team_id?: string | null; tournament_id?: string | null; + event_id?: string | null; + season_id?: string | null; + league_season_id?: string | null; note?: string | null; user?: User; }) { - const user = await this.assertCanGrant(data.user, data.tournament_id); + const user = await this.assertCanGrant(data.user, data); return await this.awards.grantAward({ award_id: data.award_id, player_steam_id: data.player_steam_id, team_id: data.team_id, tournament_id: data.tournament_id, + event_id: data.event_id, + season_id: data.season_id, + league_season_id: data.league_season_id, note: data.note, awarded_by_steam_id: user.steam_id, }); @@ -98,7 +104,7 @@ export class AwardsController { @HasuraAction() public async revokeAward(data: { id: string; user?: User }) { const recipient = await this.awards.getRecipient(data.id); - await this.assertCanGrant(data.user, recipient.tournament_id); + await this.assertCanGrant(data.user, recipient); await this.awards.revokeAward(data.id); return { success: true }; } @@ -231,13 +237,21 @@ export class AwardsController { } // Tournament organizers can always hand out awards inside their own - // tournament, regardless of where the global grant floor sits. + // tournament, regardless of where the global grant floor sits. No other scope + // has a delegated role, so an event/season/league grant needs the floor. private async assertCanGrant( user: User | undefined, - tournamentId?: string | null, + scope: { + tournament_id?: string | null; + event_id?: string | null; + season_id?: string | null; + league_season_id?: string | null; + }, ): Promise { const resolved = this.requireUser(user); + this.awards.assertSingleScope(scope); + const grantRole = (await this.system.getSetting( SystemSettingName.GrantAwardsRole, "administrator", @@ -247,13 +261,13 @@ export class AwardsController { return resolved; } - if (!tournamentId) { + if (!scope.tournament_id) { throw new ForbiddenException( "You do not have permission to grant awards", ); } - await this.awards.requireOrganizer(tournamentId, resolved); + await this.awards.requireOrganizer(scope.tournament_id, resolved); return resolved; } From f5f21fbebf5cf460474ef716641db43fdf1a5ab4 Mon Sep 17 00:00:00 2001 From: Luke Policinski Date: Sun, 26 Jul 2026 14:33:23 -0400 Subject: [PATCH 4/8] wip --- .../default/tables/public_events.yaml | 7 + .../default/tables/public_league_seasons.yaml | 7 + hasura/triggers/award_recipients.sql | 3 + src/awards/awards.controller.ts | 4 +- src/awards/awards.service.ts | 3 + src/demos/demo-metadata.service.ts | 5 + src/demos/demo-parser.service.ts | 5 + src/telemetry/telemetry.service.ts | 31 +- src/telemetry/types/TelemetryPayload.ts | 9 + test/awards.spec.ts | 314 ++++++++++++++++++ test/telemetry.spec.ts | 4 +- 11 files changed, 382 insertions(+), 10 deletions(-) diff --git a/hasura/metadata/databases/default/tables/public_events.yaml b/hasura/metadata/databases/default/tables/public_events.yaml index b300b363..94e72213 100644 --- a/hasura/metadata/databases/default/tables/public_events.yaml +++ b/hasura/metadata/databases/default/tables/public_events.yaml @@ -9,6 +9,13 @@ object_relationships: using: foreign_key_constraint_on: organizer_steam_id array_relationships: + - name: awards + using: + foreign_key_constraint_on: + column: event_id + table: + name: award_recipients + schema: public - name: media using: foreign_key_constraint_on: diff --git a/hasura/metadata/databases/default/tables/public_league_seasons.yaml b/hasura/metadata/databases/default/tables/public_league_seasons.yaml index 870e6424..b200eafa 100644 --- a/hasura/metadata/databases/default/tables/public_league_seasons.yaml +++ b/hasura/metadata/databases/default/tables/public_league_seasons.yaml @@ -9,6 +9,13 @@ object_relationships: using: foreign_key_constraint_on: match_options_id array_relationships: + - name: awards + using: + foreign_key_constraint_on: + column: league_season_id + table: + name: award_recipients + schema: public - name: match_weeks using: foreign_key_constraint_on: diff --git a/hasura/triggers/award_recipients.sql b/hasura/triggers/award_recipients.sql index 8706bc6c..8f927e37 100644 --- a/hasura/triggers/award_recipients.sql +++ b/hasura/triggers/award_recipients.sql @@ -29,6 +29,9 @@ BEGIN WHERE existing.award_id = NEW.award_id AND existing.source = 'manual' AND existing.tournament_id IS NOT DISTINCT FROM NEW.tournament_id + AND existing.event_id IS NOT DISTINCT FROM NEW.event_id + AND existing.season_id IS NOT DISTINCT FROM NEW.season_id + AND existing.league_season_id IS NOT DISTINCT FROM NEW.league_season_id AND existing.id IS DISTINCT FROM NEW.id AND ( (NEW.player_steam_id IS NOT NULL AND existing.player_steam_id = NEW.player_steam_id) diff --git a/src/awards/awards.controller.ts b/src/awards/awards.controller.ts index 51793421..44436f02 100644 --- a/src/awards/awards.controller.ts +++ b/src/awards/awards.controller.ts @@ -201,7 +201,9 @@ export class AwardsController { @Param("filename") filename: string, @Res() res: Response, ) { - if (!/^[A-Za-z0-9._-]+$/.test(filename)) { + // The character class alone still admits ".." — the key is built by + // concatenation, so keep anything that reads as a path segment out. + if (!/^[A-Za-z0-9._-]+$/.test(filename) || filename.includes("..")) { throw new NotFoundException("Award image not found"); } diff --git a/src/awards/awards.service.ts b/src/awards/awards.service.ts index cce4b46e..a492df7c 100644 --- a/src/awards/awards.service.ts +++ b/src/awards/awards.service.ts @@ -29,6 +29,9 @@ export interface AwardRow { system_key: string | null; allow_multiple: boolean; tournament_id: string | null; + event_id: string | null; + season_id: string | null; + league_season_id: string | null; created_by_steam_id: string | null; created_at: string; updated_at: string; diff --git a/src/demos/demo-metadata.service.ts b/src/demos/demo-metadata.service.ts index 2d912914..b9f4f83f 100644 --- a/src/demos/demo-metadata.service.ts +++ b/src/demos/demo-metadata.service.ts @@ -782,6 +782,11 @@ function buildPlaybackBlob(matchMapId: string, parsed: ParsedDemo) { impact_x: s.impact_x ?? null, impact_y: s.impact_y ?? null, impact_z: s.impact_z ?? null, + // Where a missed round met world geometry, so the replay can stop the + // tracer at the wall instead of flying it a fixed distance through it. + miss_x: s.miss_x ?? null, + miss_y: s.miss_y ?? null, + miss_z: s.miss_z ?? null, })); const mapGrenade = ( diff --git a/src/demos/demo-parser.service.ts b/src/demos/demo-parser.service.ts index c7b04bf2..abb8ef9b 100644 --- a/src/demos/demo-parser.service.ts +++ b/src/demos/demo-parser.service.ts @@ -92,6 +92,11 @@ export type ParsedShotFired = { impact_x?: number; impact_y?: number; impact_z?: number; + // Where a missed round met world geometry, raycast against the map's + // collision mesh. Absent on maps with no mesh, or when the shot found nothing. + miss_x?: number; + miss_y?: number; + miss_z?: number; }; export type ParsedPosition = { diff --git a/src/telemetry/telemetry.service.ts b/src/telemetry/telemetry.service.ts index 79ea0a25..802277fd 100644 --- a/src/telemetry/telemetry.service.ts +++ b/src/telemetry/telemetry.service.ts @@ -765,16 +765,33 @@ export class TelemetryService { (SELECT coalesce(sum(max_players), 0) FROM public.servers) AS servers_capacity, (SELECT count(*) FROM public.matches) AS matches_created, - (SELECT count(*) FROM public.matches WHERE started_at IS NOT NULL) AS matches_ran, + (SELECT count(*) FROM public.matches WHERE ${TelemetryService.NativeMatch}) AS matches_ran, (SELECT count(*) FROM public.matches - WHERE started_at IS NOT NULL AND effective_at >= now() - interval '7 days') AS matches_week, + WHERE ${TelemetryService.NativeMatch} + AND effective_at >= now() - interval '7 days') AS matches_week, (SELECT count(*) FROM public.matches - WHERE started_at IS NOT NULL AND effective_at >= now() - interval '30 days') AS matches_month, + WHERE ${TelemetryService.NativeMatch} + AND effective_at >= now() - interval '30 days') AS matches_month, (SELECT count(*) FROM public.matches - WHERE started_at IS NOT NULL AND effective_at >= now() - interval '365 days') AS matches_year, - (SELECT count(*) FROM public.match_maps WHERE status = 'Finished') AS maps_played, - (SELECT count(*) FROM public.matches WHERE source <> '5stack') AS matches_external, - (SELECT count(*) FROM public.matches WHERE source = 'faceit') AS matches_faceit, + WHERE ${TelemetryService.NativeMatch} + AND effective_at >= now() - interval '365 days') AS matches_year, + (SELECT count(*) FROM public.match_maps mm + JOIN public.matches m ON m.id = mm.match_id + WHERE mm.status = 'Finished' + AND ${TelemetryService.NativeMatch.replace(/\b(source|external_id|started_at)\b/g, "m.$1")}) + AS maps_played, + + (SELECT count(*) FROM public.matches WHERE ${TelemetryService.ImportedMatch}) AS matches_external, + (SELECT count(*) FROM public.matches + WHERE ${TelemetryService.ImportedMatch} + AND effective_at >= now() - interval '7 days') AS matches_external_week, + (SELECT count(*) FROM public.matches + WHERE ${TelemetryService.ImportedMatch} + AND effective_at >= now() - interval '30 days') AS matches_external_month, + (SELECT count(*) FROM public.matches + WHERE ${TelemetryService.ImportedMatch} + AND effective_at >= now() - interval '365 days') AS matches_external_year, + (SELECT count(*) FROM public.matches WHERE source = 'faceit') AS matches_faceit, (SELECT count(DISTINCT b.match_id) FROM public.tournament_brackets b WHERE b.match_id IS NOT NULL) AS matches_tournament, diff --git a/src/telemetry/types/TelemetryPayload.ts b/src/telemetry/types/TelemetryPayload.ts index a7b0fc54..0bc91ec7 100644 --- a/src/telemetry/types/TelemetryPayload.ts +++ b/src/telemetry/types/TelemetryPayload.ts @@ -25,6 +25,9 @@ export type TelemetryPayload = { public: number; capacity: number; }; + // Everything outside `external` counts only matches this panel actually ran. + // An imported demo is stamped with a started_at, so without the split it + // would read as a match the panel hosted. matches: { total: number; created: number; @@ -37,6 +40,12 @@ export type TelemetryPayload = { tournament: number; scrim: number; league: number; + external: { + total: number; + week: number; + month: number; + year: number; + }; }; players: { registered: number; diff --git a/test/awards.spec.ts b/test/awards.spec.ts index 2f57ee04..1320234e 100644 --- a/test/awards.spec.ts +++ b/test/awards.spec.ts @@ -1,4 +1,7 @@ +import { Logger } from "@nestjs/common"; import { PostgresService } from "./../src/postgres/postgres.service"; +import { AwardsService } from "./../src/awards/awards.service"; +import { AwardsController } from "./../src/awards/awards.controller"; import { Fixtures } from "./utils/fixtures"; import { TournamentFixtures } from "./utils/tournament-fixtures"; import { @@ -543,6 +546,68 @@ describe("awards (SQL-driven)", () => { expect(String(rows[3].player_steam_id)).toBe(String(players[2])); }); + it("counts season medals on the awards leaderboard", async () => { + const [season] = await postgres.query>( + "INSERT INTO seasons (starts_at) VALUES (now()) RETURNING id", + ); + const players = await fx.players(3); + + await seedSeasonElo(season.id, [ + { steam: players[0], elo: 1400, impact: 1.0 }, + { steam: players[1], elo: 1300, impact: 1.0 }, + { steam: players[2], elo: 1200, impact: 1.0 }, + ]); + + await postgres.query("SELECT calculate_season_awards($1)", [season.id]); + + // value = gold, tertiary_value = bronze, matches_played = mvp. + const rows = await postgres.query< + Array<{ + player_steam_id: string; + value: string; + tertiary_value: string; + matches_played: number; + }> + >( + `SELECT player_steam_id, value, tertiary_value, matches_played + FROM get_leaderboard('awards', 0)`, + ); + const board = new Map(rows.map((r) => [String(r.player_steam_id), r])); + + const champion = board.get(String(players[0])); + expect(Number(champion.value)).toBe(1); + expect(Number(champion.matches_played)).toBe(1); + expect(Number(board.get(String(players[2])).tertiary_value)).toBe(1); + }); + + it("breaks an elo tie deterministically", async () => { + const [season] = await postgres.query>( + "INSERT INTO seasons (starts_at) VALUES (now()) RETURNING id", + ); + const players = await fx.players(3); + + await seedSeasonElo(season.id, [ + { steam: players[0], elo: 1200, impact: 1.0 }, + { steam: players[1], elo: 1200, impact: 1.0 }, + { steam: players[2], elo: 1200, impact: 1.0 }, + ]); + + const placements = async () => { + await postgres.query("SELECT calculate_season_awards($1)", [season.id]); + const rows = await postgres.query< + Array<{ placement: number; player_steam_id: string }> + >( + `SELECT placement, player_steam_id FROM award_recipients + WHERE season_id = $1 AND source = 'season' AND placement > 0 + ORDER BY placement`, + [season.id], + ); + return rows.map((r) => `${r.placement}:${r.player_steam_id}`); + }; + + expect(await placements()).toEqual(await placements()); + }); + it("recalculates without duplicating, and keeps hand-granted rows", async () => { const [season] = await postgres.query>( "INSERT INTO seasons (starts_at) VALUES (now()) RETURNING id", @@ -659,4 +724,253 @@ describe("awards (SQL-driven)", () => { expect(Number(c)).toBe(1); }); }); + // The table permissions are read-only, so every write path runs through the + // action layer. These cover the authorization it adds on top of the SQL + // constraints exercised above. + describe("actions", () => { + let controller: AwardsController; + let createFloor: string; + let grantFloor: string; + + beforeEach(() => { + createFloor = "administrator"; + grantFloor = "administrator"; + + const service = new AwardsService( + new Logger("AwardsActionTest"), + // No test touches artwork, so a stub that fails loudly is enough. + { + put: jest.fn(), + remove: jest.fn(), + has: jest.fn().mockResolvedValue(false), + } as never, + postgres, + ); + + controller = new AwardsController(service, { + getSetting: async (name: string) => + name.includes("create") ? createFloor : grantFloor, + } as never); + }); + + const user = (steam_id: string, role: string) => + ({ steam_id, role }) as never; + + const rosterOf = async (tournamentId: string) => { + const [row] = await postgres.query< + Array<{ player_steam_id: string; team_id: string }> + >( + `SELECT r.player_steam_id, tt.team_id + FROM tournament_team_roster r + JOIN tournament_teams tt ON tt.id = r.tournament_team_id + WHERE r.tournament_id = $1 + LIMIT 1`, + [tournamentId], + ); + return row; + }; + + describe("saveAward", () => { + it("rejects a role below the create floor", async () => { + const steam = await fx.player(); + + await expect( + controller.saveAward({ + name: "Rejected", + tier: "special", + user: user(steam, "user"), + }), + ).rejects.toThrow("permission to manage awards"); + }); + + it("lets a tournament organizer scope an award to their own tournament", async () => { + const t = await tfx.createTournament(SE4); + createFloor = "user"; + + const award = await controller.saveAward({ + name: "Organizer's Pick", + tier: "special", + tournament_id: t.id, + user: user(t.organizer, "user"), + }); + + expect(award.tournament_id).toBe(t.id); + }); + + it("refuses to scope an award to someone else's tournament", async () => { + const t = await tfx.createTournament(SE4); + const stranger = await fx.player(); + createFloor = "user"; + + await expect( + controller.saveAward({ + name: "Not Mine", + tier: "special", + tournament_id: t.id, + user: user(stranger, "user"), + }), + ).rejects.toThrow("Not the tournament organizer"); + }); + + it("keeps event, season and league scoping to administrators", async () => { + const season = await fx.season(new Date().toISOString()); + createFloor = "user"; + + await expect( + controller.saveAward({ + name: "Season Special", + tier: "special", + season_id: season, + user: user(await fx.player(), "tournament_organizer"), + }), + ).rejects.toThrow("Only administrators"); + + const award = await controller.saveAward({ + name: "Season Special", + tier: "special", + season_id: season, + user: user(await fx.player(), "administrator"), + }); + expect(award.season_id).toBe(season); + }); + }); + + describe("deleteAward", () => { + it("refuses to delete a built-in award", async () => { + await expect( + controller.deleteAward({ + id: await systemAward("tournament_gold"), + user: user(await fx.player(), "administrator"), + }), + ).rejects.toThrow("cannot be deleted"); + }); + }); + + describe("grantAward", () => { + it("rejects a global grant from a role below the grant floor", async () => { + const awardId = await createAward("Community Pick"); + + await expect( + controller.grantAward({ + award_id: awardId, + player_steam_id: await fx.player(), + user: user(await fx.player(), "tournament_organizer"), + }), + ).rejects.toThrow("permission to grant awards"); + }); + + it("lets an organizer below the floor grant inside their own tournament", async () => { + const t = await playedOutCup(); + const awardId = await createAward("Clutch King"); + const roster = await rosterOf(t.id); + + const granted = await controller.grantAward({ + award_id: awardId, + player_steam_id: roster.player_steam_id, + tournament_id: t.id, + user: user(t.organizer, "user"), + }); + + expect(granted.id).toBeTruthy(); + + // ...but not in a tournament they do not run. + const other = await tfx.createTournament(SE4); + await expect( + controller.grantAward({ + award_id: awardId, + player_steam_id: roster.player_steam_id, + tournament_id: other.id, + user: user(t.organizer, "user"), + }), + ).rejects.toThrow("Not the tournament organizer"); + }); + + it("refuses a recipient who never played in the tournament", async () => { + const t = await playedOutCup(); + const awardId = await createAward("Outsider"); + + await expect( + controller.grantAward({ + award_id: awardId, + player_steam_id: await fx.player(), + tournament_id: t.id, + user: user(t.organizer, "user"), + }), + ).rejects.toThrow("not part of this tournament"); + }); + + it("refuses a grant that names more than one scope", async () => { + const t = await tfx.createTournament(SE4); + const season = await fx.season(new Date().toISOString()); + const awardId = await createAward("Confused"); + + await expect( + controller.grantAward({ + award_id: awardId, + player_steam_id: await fx.player(), + tournament_id: t.id, + season_id: season, + user: user(await fx.player(), "administrator"), + }), + ).rejects.toThrow("one scope at most"); + }); + + it("stamps the season on a season-scoped grant", async () => { + const season = await fx.season(new Date().toISOString()); + const awardId = await createAward("Season Special"); + const steam = await fx.player(); + + const granted = await controller.grantAward({ + award_id: awardId, + player_steam_id: steam, + season_id: season, + user: user(await fx.player(), "administrator"), + }); + + const [row] = await postgres.query>( + "SELECT season_id FROM award_recipients WHERE id = $1", + [granted.id], + ); + expect(row.season_id).toBe(season); + }); + }); + + describe("revokeAward", () => { + it("refuses to revoke a calculated tournament placement", async () => { + const t = await playedOutCup(); + const [calculated] = await postgres.query>( + `SELECT id FROM award_recipients + WHERE tournament_id = $1 AND source = 'tournament' LIMIT 1`, + [t.id], + ); + + await expect( + controller.revokeAward({ + id: calculated.id, + user: user(await fx.player(), "administrator"), + }), + ).rejects.toThrow("managed by the tournament"); + }); + + it("removes a hand-granted row", async () => { + const awardId = await createAward("Removable"); + const granted = await controller.grantAward({ + award_id: awardId, + player_steam_id: await fx.player(), + user: user(await fx.player(), "administrator"), + }); + + await controller.revokeAward({ + id: granted.id, + user: user(await fx.player(), "administrator"), + }); + + const rows = await postgres.query>( + "SELECT id FROM award_recipients WHERE id = $1", + [granted.id], + ); + expect(rows).toHaveLength(0); + }); + }); + }); }); diff --git a/test/telemetry.spec.ts b/test/telemetry.spec.ts index 6fe32820..f189ec0d 100644 --- a/test/telemetry.spec.ts +++ b/test/telemetry.spec.ts @@ -13,7 +13,7 @@ describe("telemetry (SQL-driven)", () => { let postgres: PostgresService; let fx: Fixtures; let service: TelemetryService; - let redis: { setex: jest.Mock; keys: jest.Mock }; + let redis: { setex: jest.Mock; scan: jest.Mock }; beforeAll(async () => { db = await bootMigratedDb("TelemetryTest"); @@ -22,7 +22,7 @@ describe("telemetry (SQL-driven)", () => { redis = { setex: jest.fn().mockResolvedValue("OK"), - keys: jest.fn().mockResolvedValue([]), + scan: jest.fn().mockResolvedValue(["0", []]), }; service = new TelemetryService( From 3287ffca2d7dbc3709cb0f892a8ec8efcb44623b Mon Sep 17 00:00:00 2001 From: Luke Policinski Date: Sun, 26 Jul 2026 14:34:17 -0400 Subject: [PATCH 5/8] wip --- generated/schema.graphql | 333 +- generated/schema.ts | 409 +- generated/types.ts | 60082 ++++++++++++++------------- src/telemetry/telemetry.service.ts | 94 +- 4 files changed, 31121 insertions(+), 29797 deletions(-) diff --git a/generated/schema.graphql b/generated/schema.graphql index 9534b5ca..f5aecd4d 100644 --- a/generated/schema.graphql +++ b/generated/schema.graphql @@ -45,12 +45,16 @@ type Award { created_at: String! created_by_steam_id: String description: String + event_id: uuid id: uuid! image_url: String + league_season_id: uuid name: String! + season_id: uuid silhouette: Int system_key: String tier: String! + tournament_id: uuid updated_at: String! } @@ -776,8 +780,63 @@ type TeamCalendarOutput { url: String! } +type TelemetryActivityPoint { + day: String! + installs: Int! + matches: Int! +} + +type TelemetryFeatureAdoption { + enabled: Int! + installsUsing: Int! + key: String! + reporting: Int! + total: Int! +} + +type TelemetryFleetTotals { + dedicatedServers: Int! + gameServerNodes: Int! + mapsPlayed: Int! + matches: Int! + matchesMonth: Int! + matchesWeek: Int! + matchesYear: Int! + playersActive30d: Int! + playersRegistered: Int! + publicServers: Int! + serverCapacity: Int! + servers: Int! + teams: Int! +} + +type TelemetryGrowthPoint { + installs: Int! + month: String! +} + +type TelemetryInstallCounts { + active24h: Int! + active30d: Int! + active7d: Int! + new30d: Int! + retained180d: Int! + total: Int! +} + type TelemetryStats { + activity: [TelemetryActivityPoint!]! + features: [TelemetryFeatureAdoption!]! + growth: [TelemetryGrowthPoint!]! + installs: TelemetryInstallCounts! online: Int! + totals: TelemetryFleetTotals! + versions: [TelemetryVersionSpread!]! +} + +type TelemetryVersionSpread { + installs: Int! + version: String! } type TestUploadResponse { @@ -1587,7 +1646,15 @@ type award_recipients { awarded_by: players awarded_by_steam_id: bigint created_at: timestamptz! + + """An object relationship""" + event: events + event_id: uuid id: uuid! + + """An object relationship""" + league_season: league_seasons + league_season_id: uuid note: String placement: Int placement_tier: String @@ -1595,6 +1662,10 @@ type award_recipients { """An object relationship""" player: players player_steam_id: bigint + + """An object relationship""" + season: seasons + season_id: uuid source: e_award_sources_enum! """An object relationship""" @@ -1704,12 +1775,18 @@ input award_recipients_bool_exp { awarded_by: players_bool_exp awarded_by_steam_id: bigint_comparison_exp created_at: timestamptz_comparison_exp + event: events_bool_exp + event_id: uuid_comparison_exp id: uuid_comparison_exp + league_season: league_seasons_bool_exp + league_season_id: uuid_comparison_exp note: String_comparison_exp placement: Int_comparison_exp placement_tier: String_comparison_exp player: players_bool_exp player_steam_id: bigint_comparison_exp + season: seasons_bool_exp + season_id: uuid_comparison_exp source: e_award_sources_enum_comparison_exp team: teams_bool_exp team_id: uuid_comparison_exp @@ -1739,6 +1816,11 @@ enum award_recipients_constraint { """ award_recipients_player_recipient_key + """ + unique or primary key constraint on columns "player_steam_id", "placement", "season_id" + """ + award_recipients_season_player_key + """ unique or primary key constraint on columns "placement", "tournament_team_id", "tournament_id", "team_id" """ @@ -1763,11 +1845,17 @@ input award_recipients_insert_input { awarded_by: players_obj_rel_insert_input awarded_by_steam_id: bigint created_at: timestamptz + event: events_obj_rel_insert_input + event_id: uuid id: uuid + league_season: league_seasons_obj_rel_insert_input + league_season_id: uuid note: String placement: Int player: players_obj_rel_insert_input player_steam_id: bigint + season: seasons_obj_rel_insert_input + season_id: uuid source: e_award_sources_enum team: teams_obj_rel_insert_input team_id: uuid @@ -1783,11 +1871,14 @@ type award_recipients_max_fields { award_id: uuid awarded_by_steam_id: bigint created_at: timestamptz + event_id: uuid id: uuid + league_season_id: uuid note: String placement: Int placement_tier: String player_steam_id: bigint + season_id: uuid team_id: uuid tournament_id: uuid tournament_team_id: uuid @@ -1800,11 +1891,14 @@ input award_recipients_max_order_by { award_id: order_by awarded_by_steam_id: order_by created_at: order_by + event_id: order_by id: order_by + league_season_id: order_by note: order_by placement: order_by placement_tier: order_by player_steam_id: order_by + season_id: order_by team_id: order_by tournament_id: order_by tournament_team_id: order_by @@ -1815,11 +1909,14 @@ type award_recipients_min_fields { award_id: uuid awarded_by_steam_id: bigint created_at: timestamptz + event_id: uuid id: uuid + league_season_id: uuid note: String placement: Int placement_tier: String player_steam_id: bigint + season_id: uuid team_id: uuid tournament_id: uuid tournament_team_id: uuid @@ -1832,11 +1929,14 @@ input award_recipients_min_order_by { award_id: order_by awarded_by_steam_id: order_by created_at: order_by + event_id: order_by id: order_by + league_season_id: order_by note: order_by placement: order_by placement_tier: order_by player_steam_id: order_by + season_id: order_by team_id: order_by tournament_id: order_by tournament_team_id: order_by @@ -1869,12 +1969,18 @@ input award_recipients_order_by { awarded_by: players_order_by awarded_by_steam_id: order_by created_at: order_by + event: events_order_by + event_id: order_by id: order_by + league_season: league_seasons_order_by + league_season_id: order_by note: order_by placement: order_by placement_tier: order_by player: players_order_by player_steam_id: order_by + season: seasons_order_by + season_id: order_by source: order_by team: teams_order_by team_id: order_by @@ -1903,9 +2009,15 @@ enum award_recipients_select_column { """column name""" created_at + """column name""" + event_id + """column name""" id + """column name""" + league_season_id + """column name""" note @@ -1918,6 +2030,9 @@ enum award_recipients_select_column { """column name""" player_steam_id + """column name""" + season_id + """column name""" source @@ -1938,10 +2053,13 @@ input award_recipients_set_input { award_id: uuid awarded_by_steam_id: bigint created_at: timestamptz + event_id: uuid id: uuid + league_season_id: uuid note: String placement: Int player_steam_id: bigint + season_id: uuid source: e_award_sources_enum team_id: uuid tournament_id: uuid @@ -2012,11 +2130,14 @@ input award_recipients_stream_cursor_value_input { award_id: uuid awarded_by_steam_id: bigint created_at: timestamptz + event_id: uuid id: uuid + league_season_id: uuid note: String placement: Int placement_tier: String player_steam_id: bigint + season_id: uuid source: e_award_sources_enum team_id: uuid tournament_id: uuid @@ -2052,9 +2173,15 @@ enum award_recipients_update_column { """column name""" created_at + """column name""" + event_id + """column name""" id + """column name""" + league_season_id + """column name""" note @@ -2064,6 +2191,9 @@ enum award_recipients_update_column { """column name""" player_steam_id + """column name""" + season_id + """column name""" source @@ -2147,8 +2277,16 @@ type awards { created_by: players created_by_steam_id: bigint description: String + + """An object relationship""" + event: events + event_id: uuid id: uuid! image_url: String + + """An object relationship""" + league_season: league_seasons + league_season_id: uuid name: String! """An array relationship""" @@ -2186,10 +2324,17 @@ type awards { """filter the rows returned""" where: award_recipients_bool_exp ): award_recipients_aggregate! + + """An object relationship""" + season: seasons + season_id: uuid silhouette: Int system_key: String tier: e_award_tiers_enum! + """An object relationship""" + tournament: tournaments + """An array relationship""" tournament_configs( """distinct select on columns""" @@ -2225,6 +2370,7 @@ type awards { """filter the rows returned""" where: tournament_awards_bool_exp ): tournament_awards_aggregate! + tournament_id: uuid updated_at: timestamptz! } @@ -2271,16 +2417,24 @@ input awards_bool_exp { created_by: players_bool_exp created_by_steam_id: bigint_comparison_exp description: String_comparison_exp + event: events_bool_exp + event_id: uuid_comparison_exp id: uuid_comparison_exp image_url: String_comparison_exp + league_season: league_seasons_bool_exp + league_season_id: uuid_comparison_exp name: String_comparison_exp recipients: award_recipients_bool_exp recipients_aggregate: award_recipients_aggregate_bool_exp + season: seasons_bool_exp + season_id: uuid_comparison_exp silhouette: Int_comparison_exp system_key: String_comparison_exp tier: e_award_tiers_enum_comparison_exp + tournament: tournaments_bool_exp tournament_configs: tournament_awards_bool_exp tournament_configs_aggregate: tournament_awards_aggregate_bool_exp + tournament_id: uuid_comparison_exp updated_at: timestamptz_comparison_exp } @@ -2316,14 +2470,22 @@ input awards_insert_input { created_by: players_obj_rel_insert_input created_by_steam_id: bigint description: String + event: events_obj_rel_insert_input + event_id: uuid id: uuid image_url: String + league_season: league_seasons_obj_rel_insert_input + league_season_id: uuid name: String recipients: award_recipients_arr_rel_insert_input + season: seasons_obj_rel_insert_input + season_id: uuid silhouette: Int system_key: String tier: e_award_tiers_enum + tournament: tournaments_obj_rel_insert_input tournament_configs: tournament_awards_arr_rel_insert_input + tournament_id: uuid updated_at: timestamptz } @@ -2332,11 +2494,15 @@ type awards_max_fields { created_at: timestamptz created_by_steam_id: bigint description: String + event_id: uuid id: uuid image_url: String + league_season_id: uuid name: String + season_id: uuid silhouette: Int system_key: String + tournament_id: uuid updated_at: timestamptz } @@ -2345,11 +2511,15 @@ type awards_min_fields { created_at: timestamptz created_by_steam_id: bigint description: String + event_id: uuid id: uuid image_url: String + league_season_id: uuid name: String + season_id: uuid silhouette: Int system_key: String + tournament_id: uuid updated_at: timestamptz } @@ -2390,14 +2560,22 @@ input awards_order_by { created_by: players_order_by created_by_steam_id: order_by description: order_by + event: events_order_by + event_id: order_by id: order_by image_url: order_by + league_season: league_seasons_order_by + league_season_id: order_by name: order_by recipients_aggregate: award_recipients_aggregate_order_by + season: seasons_order_by + season_id: order_by silhouette: order_by system_key: order_by tier: order_by + tournament: tournaments_order_by tournament_configs_aggregate: tournament_awards_aggregate_order_by + tournament_id: order_by updated_at: order_by } @@ -2422,15 +2600,24 @@ enum awards_select_column { """column name""" description + """column name""" + event_id + """column name""" id """column name""" image_url + """column name""" + league_season_id + """column name""" name + """column name""" + season_id + """column name""" silhouette @@ -2440,6 +2627,9 @@ enum awards_select_column { """column name""" tier + """column name""" + tournament_id + """column name""" updated_at } @@ -2452,12 +2642,16 @@ input awards_set_input { created_at: timestamptz created_by_steam_id: bigint description: String + event_id: uuid id: uuid image_url: String + league_season_id: uuid name: String + season_id: uuid silhouette: Int system_key: String tier: e_award_tiers_enum + tournament_id: uuid updated_at: timestamptz } @@ -2496,12 +2690,16 @@ input awards_stream_cursor_value_input { created_at: timestamptz created_by_steam_id: bigint description: String + event_id: uuid id: uuid image_url: String + league_season_id: uuid name: String + season_id: uuid silhouette: Int system_key: String tier: e_award_tiers_enum + tournament_id: uuid updated_at: timestamptz } @@ -2527,15 +2725,24 @@ enum awards_update_column { """column name""" description + """column name""" + event_id + """column name""" id """column name""" image_url + """column name""" + league_season_id + """column name""" name + """column name""" + season_id + """column name""" silhouette @@ -2545,6 +2752,9 @@ enum awards_update_column { """column name""" tier + """column name""" + tournament_id + """column name""" updated_at } @@ -17031,6 +17241,42 @@ input event_tournaments_updates { columns and relationships of "events" """ type events { + """An array relationship""" + awards( + """distinct select on columns""" + distinct_on: [award_recipients_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: [award_recipients_order_by!] + + """filter the rows returned""" + where: award_recipients_bool_exp + ): [award_recipients!]! + + """An aggregate relationship""" + awards_aggregate( + """distinct select on columns""" + distinct_on: [award_recipients_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: [award_recipients_order_by!] + + """filter the rows returned""" + where: award_recipients_bool_exp + ): award_recipients_aggregate! + """An object relationship""" banner: event_media banner_media_id: uuid @@ -17317,6 +17563,8 @@ input events_bool_exp { _and: [events_bool_exp!] _not: events_bool_exp _or: [events_bool_exp!] + awards: award_recipients_bool_exp + awards_aggregate: award_recipients_aggregate_bool_exp banner: event_media_bool_exp banner_media_id: uuid_comparison_exp can_upload_media: Boolean_comparison_exp @@ -17368,6 +17616,7 @@ input events_inc_input { input type for inserting data into table "events" """ input events_insert_input { + awards: award_recipients_arr_rel_insert_input banner: event_media_obj_rel_insert_input banner_media_id: uuid created_at: timestamptz @@ -17445,6 +17694,7 @@ input events_on_conflict { """Ordering options when selecting data from "events".""" input events_order_by { + awards_aggregate: award_recipients_aggregate_order_by banner: event_media_order_by banner_media_id: order_by can_upload_media: order_by @@ -22324,6 +22574,42 @@ columns and relationships of "league_seasons" type league_seasons { auto_regular_season_format: Boolean! + """An array relationship""" + awards( + """distinct select on columns""" + distinct_on: [award_recipients_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: [award_recipients_order_by!] + + """filter the rows returned""" + where: award_recipients_bool_exp + ): [award_recipients!]! + + """An aggregate relationship""" + awards_aggregate( + """distinct select on columns""" + distinct_on: [award_recipients_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: [award_recipients_order_by!] + + """filter the rows returned""" + where: award_recipients_bool_exp + ): award_recipients_aggregate! + """ A computed field, executes function "can_register_for_league_season" """ @@ -22711,6 +22997,8 @@ input league_seasons_bool_exp { _not: league_seasons_bool_exp _or: [league_seasons_bool_exp!] auto_regular_season_format: Boolean_comparison_exp + awards: award_recipients_bool_exp + awards_aggregate: award_recipients_aggregate_bool_exp can_register: Boolean_comparison_exp created_at: timestamptz_comparison_exp created_by_steam_id: bigint_comparison_exp @@ -22832,6 +23120,7 @@ input type for inserting data into table "league_seasons" """ input league_seasons_insert_input { auto_regular_season_format: Boolean + awards: award_recipients_arr_rel_insert_input created_at: timestamptz created_by_steam_id: bigint default_best_of: Int @@ -22959,6 +23248,7 @@ input league_seasons_on_conflict { """Ordering options when selecting data from "league_seasons".""" input league_seasons_order_by { auto_regular_season_format: order_by + awards_aggregate: award_recipients_aggregate_order_by can_register: order_by created_at: order_by created_by_steam_id: order_by @@ -38008,7 +38298,7 @@ type mutation_root { getTestUploadLink: GetTestUploadResponse! """Grant an award to a player or team""" - grantAward(award_id: uuid!, note: String, player_steam_id: String, team_id: uuid, tournament_id: uuid): AwardRecipient + grantAward(award_id: uuid!, event_id: uuid, league_season_id: uuid, note: String, player_steam_id: String, season_id: uuid, team_id: uuid, tournament_id: uuid): AwardRecipient """ insert data into the table: "_map_pool" @@ -41634,7 +41924,7 @@ type mutation_root { sanctionServerPlayer(duration: Float, reason: String, serverId: String, steam_id: String!, type: String!): SanctionResult! """Create or update a catalog award""" - saveAward(allow_multiple: Boolean, description: String, id: uuid, name: String!, silhouette: Int, tier: String!): Award + saveAward(allow_multiple: Boolean, description: String, event_id: uuid, id: uuid, league_season_id: uuid, name: String!, season_id: uuid, silhouette: Int, tier: String!, tournament_id: uuid): Award """ Create or update a first-party news post. Caller role is verified against public.post_news_role. @@ -76977,6 +77267,41 @@ input restart_league_season_args { columns and relationships of "seasons" """ type seasons { + """An array relationship""" + awards( + """distinct select on columns""" + distinct_on: [award_recipients_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: [award_recipients_order_by!] + + """filter the rows returned""" + where: award_recipients_bool_exp + ): [award_recipients!]! + + """An aggregate relationship""" + awards_aggregate( + """distinct select on columns""" + distinct_on: [award_recipients_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: [award_recipients_order_by!] + + """filter the rows returned""" + where: award_recipients_bool_exp + ): award_recipients_aggregate! created_at: timestamptz! description: String ends_at: timestamptz @@ -77059,6 +77384,8 @@ input seasons_bool_exp { _and: [seasons_bool_exp!] _not: seasons_bool_exp _or: [seasons_bool_exp!] + awards: award_recipients_bool_exp + awards_aggregate: award_recipients_aggregate_bool_exp created_at: timestamptz_comparison_exp description: String_comparison_exp ends_at: timestamptz_comparison_exp @@ -77091,6 +77418,7 @@ input seasons_inc_input { input type for inserting data into table "seasons" """ input seasons_insert_input { + awards: award_recipients_arr_rel_insert_input created_at: timestamptz description: String ends_at: timestamptz @@ -77153,6 +77481,7 @@ input seasons_on_conflict { """Ordering options when selecting data from "seasons".""" input seasons_order_by { + awards_aggregate: award_recipients_aggregate_order_by created_at: order_by description: order_by ends_at: order_by diff --git a/generated/schema.ts b/generated/schema.ts index 0f3d29fd..aa68b1b9 100644 --- a/generated/schema.ts +++ b/generated/schema.ts @@ -57,12 +57,16 @@ export interface Award { created_at: Scalars['String'] created_by_steam_id: (Scalars['String'] | null) description: (Scalars['String'] | null) + event_id: (Scalars['uuid'] | null) id: Scalars['uuid'] image_url: (Scalars['String'] | null) + league_season_id: (Scalars['uuid'] | null) name: Scalars['String'] + season_id: (Scalars['uuid'] | null) silhouette: (Scalars['Int'] | null) system_key: (Scalars['String'] | null) tier: Scalars['String'] + tournament_id: (Scalars['uuid'] | null) updated_at: Scalars['String'] __typename: 'Award' } @@ -698,11 +702,72 @@ export interface TeamCalendarOutput { __typename: 'TeamCalendarOutput' } +export interface TelemetryActivityPoint { + day: Scalars['String'] + installs: Scalars['Int'] + matches: Scalars['Int'] + __typename: 'TelemetryActivityPoint' +} + +export interface TelemetryFeatureAdoption { + enabled: Scalars['Int'] + installsUsing: Scalars['Int'] + key: Scalars['String'] + reporting: Scalars['Int'] + total: Scalars['Int'] + __typename: 'TelemetryFeatureAdoption' +} + +export interface TelemetryFleetTotals { + dedicatedServers: Scalars['Int'] + gameServerNodes: Scalars['Int'] + mapsPlayed: Scalars['Int'] + matches: Scalars['Int'] + matchesMonth: Scalars['Int'] + matchesWeek: Scalars['Int'] + matchesYear: Scalars['Int'] + playersActive30d: Scalars['Int'] + playersRegistered: Scalars['Int'] + publicServers: Scalars['Int'] + serverCapacity: Scalars['Int'] + servers: Scalars['Int'] + teams: Scalars['Int'] + __typename: 'TelemetryFleetTotals' +} + +export interface TelemetryGrowthPoint { + installs: Scalars['Int'] + month: Scalars['String'] + __typename: 'TelemetryGrowthPoint' +} + +export interface TelemetryInstallCounts { + active24h: Scalars['Int'] + active30d: Scalars['Int'] + active7d: Scalars['Int'] + new30d: Scalars['Int'] + retained180d: Scalars['Int'] + total: Scalars['Int'] + __typename: 'TelemetryInstallCounts' +} + export interface TelemetryStats { + activity: TelemetryActivityPoint[] + features: TelemetryFeatureAdoption[] + growth: TelemetryGrowthPoint[] + installs: TelemetryInstallCounts online: Scalars['Int'] + totals: TelemetryFleetTotals + versions: TelemetryVersionSpread[] __typename: 'TelemetryStats' } +export interface TelemetryVersionSpread { + installs: Scalars['Int'] + version: Scalars['String'] + __typename: 'TelemetryVersionSpread' +} + export interface TestUploadResponse { error: (Scalars['String'] | null) __typename: 'TestUploadResponse' @@ -1096,13 +1161,22 @@ export interface award_recipients { awarded_by: (players | null) awarded_by_steam_id: (Scalars['bigint'] | null) created_at: Scalars['timestamptz'] + /** An object relationship */ + event: (events | null) + event_id: (Scalars['uuid'] | null) id: Scalars['uuid'] + /** An object relationship */ + league_season: (league_seasons | null) + league_season_id: (Scalars['uuid'] | null) note: (Scalars['String'] | null) placement: (Scalars['Int'] | null) placement_tier: (Scalars['String'] | null) /** An object relationship */ player: (players | null) player_steam_id: (Scalars['bigint'] | null) + /** An object relationship */ + season: (seasons | null) + season_id: (Scalars['uuid'] | null) source: e_award_sources_enum /** An object relationship */ team: (teams | null) @@ -1154,7 +1228,7 @@ export interface award_recipients_avg_fields { /** unique or primary key constraints on table "award_recipients" */ -export type award_recipients_constraint = 'award_recipients_one_mvp_per_tournament' | 'award_recipients_pkey' | 'award_recipients_player_recipient_key' | 'award_recipients_team_recipient_key' +export type award_recipients_constraint = 'award_recipients_one_mvp_per_tournament' | 'award_recipients_pkey' | 'award_recipients_player_recipient_key' | 'award_recipients_season_player_key' | 'award_recipients_team_recipient_key' /** aggregate max on columns */ @@ -1162,11 +1236,14 @@ export interface award_recipients_max_fields { award_id: (Scalars['uuid'] | null) awarded_by_steam_id: (Scalars['bigint'] | null) created_at: (Scalars['timestamptz'] | null) + event_id: (Scalars['uuid'] | null) id: (Scalars['uuid'] | null) + league_season_id: (Scalars['uuid'] | null) note: (Scalars['String'] | null) placement: (Scalars['Int'] | null) placement_tier: (Scalars['String'] | null) player_steam_id: (Scalars['bigint'] | null) + season_id: (Scalars['uuid'] | null) team_id: (Scalars['uuid'] | null) tournament_id: (Scalars['uuid'] | null) tournament_team_id: (Scalars['uuid'] | null) @@ -1179,11 +1256,14 @@ export interface award_recipients_min_fields { award_id: (Scalars['uuid'] | null) awarded_by_steam_id: (Scalars['bigint'] | null) created_at: (Scalars['timestamptz'] | null) + event_id: (Scalars['uuid'] | null) id: (Scalars['uuid'] | null) + league_season_id: (Scalars['uuid'] | null) note: (Scalars['String'] | null) placement: (Scalars['Int'] | null) placement_tier: (Scalars['String'] | null) player_steam_id: (Scalars['bigint'] | null) + season_id: (Scalars['uuid'] | null) team_id: (Scalars['uuid'] | null) tournament_id: (Scalars['uuid'] | null) tournament_team_id: (Scalars['uuid'] | null) @@ -1202,7 +1282,7 @@ export interface award_recipients_mutation_response { /** select columns of table "award_recipients" */ -export type award_recipients_select_column = 'award_id' | 'awarded_by_steam_id' | 'created_at' | 'id' | 'note' | 'placement' | 'placement_tier' | 'player_steam_id' | 'source' | 'team_id' | 'tournament_id' | 'tournament_team_id' +export type award_recipients_select_column = 'award_id' | 'awarded_by_steam_id' | 'created_at' | 'event_id' | 'id' | 'league_season_id' | 'note' | 'placement' | 'placement_tier' | 'player_steam_id' | 'season_id' | 'source' | 'team_id' | 'tournament_id' | 'tournament_team_id' /** aggregate stddev on columns */ @@ -1242,7 +1322,7 @@ export interface award_recipients_sum_fields { /** update columns of table "award_recipients" */ -export type award_recipients_update_column = 'award_id' | 'awarded_by_steam_id' | 'created_at' | 'id' | 'note' | 'placement' | 'player_steam_id' | 'source' | 'team_id' | 'tournament_id' | 'tournament_team_id' +export type award_recipients_update_column = 'award_id' | 'awarded_by_steam_id' | 'created_at' | 'event_id' | 'id' | 'league_season_id' | 'note' | 'placement' | 'player_steam_id' | 'season_id' | 'source' | 'team_id' | 'tournament_id' | 'tournament_team_id' /** aggregate var_pop on columns */ @@ -1280,20 +1360,32 @@ export interface awards { created_by: (players | null) created_by_steam_id: (Scalars['bigint'] | null) description: (Scalars['String'] | null) + /** An object relationship */ + event: (events | null) + event_id: (Scalars['uuid'] | null) id: Scalars['uuid'] image_url: (Scalars['String'] | null) + /** An object relationship */ + league_season: (league_seasons | null) + league_season_id: (Scalars['uuid'] | null) name: Scalars['String'] /** An array relationship */ recipients: award_recipients[] /** An aggregate relationship */ recipients_aggregate: award_recipients_aggregate + /** An object relationship */ + season: (seasons | null) + season_id: (Scalars['uuid'] | null) silhouette: (Scalars['Int'] | null) system_key: (Scalars['String'] | null) tier: e_award_tiers_enum + /** An object relationship */ + tournament: (tournaments | null) /** An array relationship */ tournament_configs: tournament_awards[] /** An aggregate relationship */ tournament_configs_aggregate: tournament_awards_aggregate + tournament_id: (Scalars['uuid'] | null) updated_at: Scalars['timestamptz'] __typename: 'awards' } @@ -1341,11 +1433,15 @@ export interface awards_max_fields { created_at: (Scalars['timestamptz'] | null) created_by_steam_id: (Scalars['bigint'] | null) description: (Scalars['String'] | null) + event_id: (Scalars['uuid'] | null) id: (Scalars['uuid'] | null) image_url: (Scalars['String'] | null) + league_season_id: (Scalars['uuid'] | null) name: (Scalars['String'] | null) + season_id: (Scalars['uuid'] | null) silhouette: (Scalars['Int'] | null) system_key: (Scalars['String'] | null) + tournament_id: (Scalars['uuid'] | null) updated_at: (Scalars['timestamptz'] | null) __typename: 'awards_max_fields' } @@ -1356,11 +1452,15 @@ export interface awards_min_fields { created_at: (Scalars['timestamptz'] | null) created_by_steam_id: (Scalars['bigint'] | null) description: (Scalars['String'] | null) + event_id: (Scalars['uuid'] | null) id: (Scalars['uuid'] | null) image_url: (Scalars['String'] | null) + league_season_id: (Scalars['uuid'] | null) name: (Scalars['String'] | null) + season_id: (Scalars['uuid'] | null) silhouette: (Scalars['Int'] | null) system_key: (Scalars['String'] | null) + tournament_id: (Scalars['uuid'] | null) updated_at: (Scalars['timestamptz'] | null) __typename: 'awards_min_fields' } @@ -1377,7 +1477,7 @@ export interface awards_mutation_response { /** select columns of table "awards" */ -export type awards_select_column = 'allow_multiple' | 'created_at' | 'created_by_steam_id' | 'description' | 'id' | 'image_url' | 'name' | 'silhouette' | 'system_key' | 'tier' | 'updated_at' +export type awards_select_column = 'allow_multiple' | 'created_at' | 'created_by_steam_id' | 'description' | 'event_id' | 'id' | 'image_url' | 'league_season_id' | 'name' | 'season_id' | 'silhouette' | 'system_key' | 'tier' | 'tournament_id' | 'updated_at' /** aggregate stddev on columns */ @@ -1413,7 +1513,7 @@ export interface awards_sum_fields { /** update columns of table "awards" */ -export type awards_update_column = 'allow_multiple' | 'created_at' | 'created_by_steam_id' | 'description' | 'id' | 'image_url' | 'name' | 'silhouette' | 'system_key' | 'tier' | 'updated_at' +export type awards_update_column = 'allow_multiple' | 'created_at' | 'created_by_steam_id' | 'description' | 'event_id' | 'id' | 'image_url' | 'league_season_id' | 'name' | 'season_id' | 'silhouette' | 'system_key' | 'tier' | 'tournament_id' | 'updated_at' /** aggregate var_pop on columns */ @@ -6253,6 +6353,10 @@ export type event_tournaments_update_column = 'created_at' | 'event_id' | 'tourn /** columns and relationships of "events" */ export interface events { + /** An array relationship */ + awards: award_recipients[] + /** An aggregate relationship */ + awards_aggregate: award_recipients_aggregate /** An object relationship */ banner: (event_media | null) banner_media_id: (Scalars['uuid'] | null) @@ -8048,6 +8152,10 @@ export type league_season_divisions_update_column = 'created_at' | 'id' | 'leagu /** columns and relationships of "league_seasons" */ export interface league_seasons { auto_regular_season_format: Scalars['Boolean'] + /** An array relationship */ + awards: award_recipients[] + /** An aggregate relationship */ + awards_aggregate: award_recipients_aggregate /** A computed field, executes function "can_register_for_league_season" */ can_register: (Scalars['Boolean'] | null) created_at: Scalars['timestamptz'] @@ -23602,6 +23710,10 @@ export interface query_root { /** columns and relationships of "seasons" */ export interface seasons { + /** An array relationship */ + awards: award_recipients[] + /** An aggregate relationship */ + awards_aggregate: award_recipients_aggregate created_at: Scalars['timestamptz'] description: (Scalars['String'] | null) ends_at: (Scalars['timestamptz'] | null) @@ -35461,12 +35573,16 @@ export interface AwardGenqlSelection{ created_at?: boolean | number created_by_steam_id?: boolean | number description?: boolean | number + event_id?: boolean | number id?: boolean | number image_url?: boolean | number + league_season_id?: boolean | number name?: boolean | number + season_id?: boolean | number silhouette?: boolean | number system_key?: boolean | number tier?: boolean | number + tournament_id?: boolean | number updated_at?: boolean | number __typename?: boolean | number __scalar?: boolean | number @@ -36228,8 +36344,75 @@ export interface TeamCalendarOutputGenqlSelection{ __scalar?: boolean | number } +export interface TelemetryActivityPointGenqlSelection{ + day?: boolean | number + installs?: boolean | number + matches?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface TelemetryFeatureAdoptionGenqlSelection{ + enabled?: boolean | number + installsUsing?: boolean | number + key?: boolean | number + reporting?: boolean | number + total?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface TelemetryFleetTotalsGenqlSelection{ + dedicatedServers?: boolean | number + gameServerNodes?: boolean | number + mapsPlayed?: boolean | number + matches?: boolean | number + matchesMonth?: boolean | number + matchesWeek?: boolean | number + matchesYear?: boolean | number + playersActive30d?: boolean | number + playersRegistered?: boolean | number + publicServers?: boolean | number + serverCapacity?: boolean | number + servers?: boolean | number + teams?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface TelemetryGrowthPointGenqlSelection{ + installs?: boolean | number + month?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface TelemetryInstallCountsGenqlSelection{ + active24h?: boolean | number + active30d?: boolean | number + active7d?: boolean | number + new30d?: boolean | number + retained180d?: boolean | number + total?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + export interface TelemetryStatsGenqlSelection{ + activity?: TelemetryActivityPointGenqlSelection + features?: TelemetryFeatureAdoptionGenqlSelection + growth?: TelemetryGrowthPointGenqlSelection + installs?: TelemetryInstallCountsGenqlSelection online?: boolean | number + totals?: TelemetryFleetTotalsGenqlSelection + versions?: TelemetryVersionSpreadGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface TelemetryVersionSpreadGenqlSelection{ + installs?: boolean | number + version?: boolean | number __typename?: boolean | number __scalar?: boolean | number } @@ -36825,13 +37008,22 @@ export interface award_recipientsGenqlSelection{ awarded_by?: playersGenqlSelection awarded_by_steam_id?: boolean | number created_at?: boolean | number + /** An object relationship */ + event?: eventsGenqlSelection + event_id?: boolean | number id?: boolean | number + /** An object relationship */ + league_season?: league_seasonsGenqlSelection + league_season_id?: boolean | number note?: boolean | number placement?: boolean | number placement_tier?: boolean | number /** An object relationship */ player?: playersGenqlSelection player_steam_id?: boolean | number + /** An object relationship */ + season?: seasonsGenqlSelection + season_id?: boolean | number source?: boolean | number /** An object relationship */ team?: teamsGenqlSelection @@ -36905,7 +37097,7 @@ export interface award_recipients_avg_order_by {awarded_by_steam_id?: (order_by /** Boolean expression to filter rows from the table "award_recipients". All fields are combined with a logical 'AND'. */ -export interface award_recipients_bool_exp {_and?: (award_recipients_bool_exp[] | null),_not?: (award_recipients_bool_exp | null),_or?: (award_recipients_bool_exp[] | null),award?: (awards_bool_exp | null),award_id?: (uuid_comparison_exp | null),awarded_by?: (players_bool_exp | null),awarded_by_steam_id?: (bigint_comparison_exp | null),created_at?: (timestamptz_comparison_exp | null),id?: (uuid_comparison_exp | null),note?: (String_comparison_exp | null),placement?: (Int_comparison_exp | null),placement_tier?: (String_comparison_exp | null),player?: (players_bool_exp | null),player_steam_id?: (bigint_comparison_exp | null),source?: (e_award_sources_enum_comparison_exp | null),team?: (teams_bool_exp | null),team_id?: (uuid_comparison_exp | null),tournament?: (tournaments_bool_exp | null),tournament_award?: (tournament_awards_bool_exp | null),tournament_id?: (uuid_comparison_exp | null),tournament_team?: (tournament_teams_bool_exp | null),tournament_team_id?: (uuid_comparison_exp | null)} +export interface award_recipients_bool_exp {_and?: (award_recipients_bool_exp[] | null),_not?: (award_recipients_bool_exp | null),_or?: (award_recipients_bool_exp[] | null),award?: (awards_bool_exp | null),award_id?: (uuid_comparison_exp | null),awarded_by?: (players_bool_exp | null),awarded_by_steam_id?: (bigint_comparison_exp | null),created_at?: (timestamptz_comparison_exp | null),event?: (events_bool_exp | null),event_id?: (uuid_comparison_exp | null),id?: (uuid_comparison_exp | null),league_season?: (league_seasons_bool_exp | null),league_season_id?: (uuid_comparison_exp | null),note?: (String_comparison_exp | null),placement?: (Int_comparison_exp | null),placement_tier?: (String_comparison_exp | null),player?: (players_bool_exp | null),player_steam_id?: (bigint_comparison_exp | null),season?: (seasons_bool_exp | null),season_id?: (uuid_comparison_exp | null),source?: (e_award_sources_enum_comparison_exp | null),team?: (teams_bool_exp | null),team_id?: (uuid_comparison_exp | null),tournament?: (tournaments_bool_exp | null),tournament_award?: (tournament_awards_bool_exp | null),tournament_id?: (uuid_comparison_exp | null),tournament_team?: (tournament_teams_bool_exp | null),tournament_team_id?: (uuid_comparison_exp | null)} /** input type for incrementing numeric columns in table "award_recipients" */ @@ -36913,7 +37105,7 @@ export interface award_recipients_inc_input {awarded_by_steam_id?: (Scalars['big /** input type for inserting data into table "award_recipients" */ -export interface award_recipients_insert_input {award?: (awards_obj_rel_insert_input | null),award_id?: (Scalars['uuid'] | null),awarded_by?: (players_obj_rel_insert_input | null),awarded_by_steam_id?: (Scalars['bigint'] | null),created_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),note?: (Scalars['String'] | null),placement?: (Scalars['Int'] | null),player?: (players_obj_rel_insert_input | null),player_steam_id?: (Scalars['bigint'] | null),source?: (e_award_sources_enum | null),team?: (teams_obj_rel_insert_input | null),team_id?: (Scalars['uuid'] | null),tournament?: (tournaments_obj_rel_insert_input | null),tournament_award?: (tournament_awards_obj_rel_insert_input | null),tournament_id?: (Scalars['uuid'] | null),tournament_team?: (tournament_teams_obj_rel_insert_input | null),tournament_team_id?: (Scalars['uuid'] | null)} +export interface award_recipients_insert_input {award?: (awards_obj_rel_insert_input | null),award_id?: (Scalars['uuid'] | null),awarded_by?: (players_obj_rel_insert_input | null),awarded_by_steam_id?: (Scalars['bigint'] | null),created_at?: (Scalars['timestamptz'] | null),event?: (events_obj_rel_insert_input | null),event_id?: (Scalars['uuid'] | null),id?: (Scalars['uuid'] | null),league_season?: (league_seasons_obj_rel_insert_input | null),league_season_id?: (Scalars['uuid'] | null),note?: (Scalars['String'] | null),placement?: (Scalars['Int'] | null),player?: (players_obj_rel_insert_input | null),player_steam_id?: (Scalars['bigint'] | null),season?: (seasons_obj_rel_insert_input | null),season_id?: (Scalars['uuid'] | null),source?: (e_award_sources_enum | null),team?: (teams_obj_rel_insert_input | null),team_id?: (Scalars['uuid'] | null),tournament?: (tournaments_obj_rel_insert_input | null),tournament_award?: (tournament_awards_obj_rel_insert_input | null),tournament_id?: (Scalars['uuid'] | null),tournament_team?: (tournament_teams_obj_rel_insert_input | null),tournament_team_id?: (Scalars['uuid'] | null)} /** aggregate max on columns */ @@ -36921,11 +37113,14 @@ export interface award_recipients_max_fieldsGenqlSelection{ award_id?: boolean | number awarded_by_steam_id?: boolean | number created_at?: boolean | number + event_id?: boolean | number id?: boolean | number + league_season_id?: boolean | number note?: boolean | number placement?: boolean | number placement_tier?: boolean | number player_steam_id?: boolean | number + season_id?: boolean | number team_id?: boolean | number tournament_id?: boolean | number tournament_team_id?: boolean | number @@ -36935,7 +37130,7 @@ export interface award_recipients_max_fieldsGenqlSelection{ /** order by max() on columns of table "award_recipients" */ -export interface award_recipients_max_order_by {award_id?: (order_by | null),awarded_by_steam_id?: (order_by | null),created_at?: (order_by | null),id?: (order_by | null),note?: (order_by | null),placement?: (order_by | null),placement_tier?: (order_by | null),player_steam_id?: (order_by | null),team_id?: (order_by | null),tournament_id?: (order_by | null),tournament_team_id?: (order_by | null)} +export interface award_recipients_max_order_by {award_id?: (order_by | null),awarded_by_steam_id?: (order_by | null),created_at?: (order_by | null),event_id?: (order_by | null),id?: (order_by | null),league_season_id?: (order_by | null),note?: (order_by | null),placement?: (order_by | null),placement_tier?: (order_by | null),player_steam_id?: (order_by | null),season_id?: (order_by | null),team_id?: (order_by | null),tournament_id?: (order_by | null),tournament_team_id?: (order_by | null)} /** aggregate min on columns */ @@ -36943,11 +37138,14 @@ export interface award_recipients_min_fieldsGenqlSelection{ award_id?: boolean | number awarded_by_steam_id?: boolean | number created_at?: boolean | number + event_id?: boolean | number id?: boolean | number + league_season_id?: boolean | number note?: boolean | number placement?: boolean | number placement_tier?: boolean | number player_steam_id?: boolean | number + season_id?: boolean | number team_id?: boolean | number tournament_id?: boolean | number tournament_team_id?: boolean | number @@ -36957,7 +37155,7 @@ export interface award_recipients_min_fieldsGenqlSelection{ /** order by min() on columns of table "award_recipients" */ -export interface award_recipients_min_order_by {award_id?: (order_by | null),awarded_by_steam_id?: (order_by | null),created_at?: (order_by | null),id?: (order_by | null),note?: (order_by | null),placement?: (order_by | null),placement_tier?: (order_by | null),player_steam_id?: (order_by | null),team_id?: (order_by | null),tournament_id?: (order_by | null),tournament_team_id?: (order_by | null)} +export interface award_recipients_min_order_by {award_id?: (order_by | null),awarded_by_steam_id?: (order_by | null),created_at?: (order_by | null),event_id?: (order_by | null),id?: (order_by | null),league_season_id?: (order_by | null),note?: (order_by | null),placement?: (order_by | null),placement_tier?: (order_by | null),player_steam_id?: (order_by | null),season_id?: (order_by | null),team_id?: (order_by | null),tournament_id?: (order_by | null),tournament_team_id?: (order_by | null)} /** response of any mutation on the table "award_recipients" */ @@ -36976,7 +37174,7 @@ export interface award_recipients_on_conflict {constraint: award_recipients_cons /** Ordering options when selecting data from "award_recipients". */ -export interface award_recipients_order_by {award?: (awards_order_by | null),award_id?: (order_by | null),awarded_by?: (players_order_by | null),awarded_by_steam_id?: (order_by | null),created_at?: (order_by | null),id?: (order_by | null),note?: (order_by | null),placement?: (order_by | null),placement_tier?: (order_by | null),player?: (players_order_by | null),player_steam_id?: (order_by | null),source?: (order_by | null),team?: (teams_order_by | null),team_id?: (order_by | null),tournament?: (tournaments_order_by | null),tournament_award?: (tournament_awards_order_by | null),tournament_id?: (order_by | null),tournament_team?: (tournament_teams_order_by | null),tournament_team_id?: (order_by | null)} +export interface award_recipients_order_by {award?: (awards_order_by | null),award_id?: (order_by | null),awarded_by?: (players_order_by | null),awarded_by_steam_id?: (order_by | null),created_at?: (order_by | null),event?: (events_order_by | null),event_id?: (order_by | null),id?: (order_by | null),league_season?: (league_seasons_order_by | null),league_season_id?: (order_by | null),note?: (order_by | null),placement?: (order_by | null),placement_tier?: (order_by | null),player?: (players_order_by | null),player_steam_id?: (order_by | null),season?: (seasons_order_by | null),season_id?: (order_by | null),source?: (order_by | null),team?: (teams_order_by | null),team_id?: (order_by | null),tournament?: (tournaments_order_by | null),tournament_award?: (tournament_awards_order_by | null),tournament_id?: (order_by | null),tournament_team?: (tournament_teams_order_by | null),tournament_team_id?: (order_by | null)} /** primary key columns input for table: award_recipients */ @@ -36984,7 +37182,7 @@ export interface award_recipients_pk_columns_input {id: Scalars['uuid']} /** input type for updating data in table "award_recipients" */ -export interface award_recipients_set_input {award_id?: (Scalars['uuid'] | null),awarded_by_steam_id?: (Scalars['bigint'] | null),created_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),note?: (Scalars['String'] | null),placement?: (Scalars['Int'] | null),player_steam_id?: (Scalars['bigint'] | null),source?: (e_award_sources_enum | null),team_id?: (Scalars['uuid'] | null),tournament_id?: (Scalars['uuid'] | null),tournament_team_id?: (Scalars['uuid'] | null)} +export interface award_recipients_set_input {award_id?: (Scalars['uuid'] | null),awarded_by_steam_id?: (Scalars['bigint'] | null),created_at?: (Scalars['timestamptz'] | null),event_id?: (Scalars['uuid'] | null),id?: (Scalars['uuid'] | null),league_season_id?: (Scalars['uuid'] | null),note?: (Scalars['String'] | null),placement?: (Scalars['Int'] | null),player_steam_id?: (Scalars['bigint'] | null),season_id?: (Scalars['uuid'] | null),source?: (e_award_sources_enum | null),team_id?: (Scalars['uuid'] | null),tournament_id?: (Scalars['uuid'] | null),tournament_team_id?: (Scalars['uuid'] | null)} /** aggregate stddev on columns */ @@ -37038,7 +37236,7 @@ ordering?: (cursor_ordering | null)} /** Initial value of the column from where the streaming should start */ -export interface award_recipients_stream_cursor_value_input {award_id?: (Scalars['uuid'] | null),awarded_by_steam_id?: (Scalars['bigint'] | null),created_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),note?: (Scalars['String'] | null),placement?: (Scalars['Int'] | null),placement_tier?: (Scalars['String'] | null),player_steam_id?: (Scalars['bigint'] | null),source?: (e_award_sources_enum | null),team_id?: (Scalars['uuid'] | null),tournament_id?: (Scalars['uuid'] | null),tournament_team_id?: (Scalars['uuid'] | null)} +export interface award_recipients_stream_cursor_value_input {award_id?: (Scalars['uuid'] | null),awarded_by_steam_id?: (Scalars['bigint'] | null),created_at?: (Scalars['timestamptz'] | null),event_id?: (Scalars['uuid'] | null),id?: (Scalars['uuid'] | null),league_season_id?: (Scalars['uuid'] | null),note?: (Scalars['String'] | null),placement?: (Scalars['Int'] | null),placement_tier?: (Scalars['String'] | null),player_steam_id?: (Scalars['bigint'] | null),season_id?: (Scalars['uuid'] | null),source?: (e_award_sources_enum | null),team_id?: (Scalars['uuid'] | null),tournament_id?: (Scalars['uuid'] | null),tournament_team_id?: (Scalars['uuid'] | null)} /** aggregate sum on columns */ @@ -37113,8 +37311,14 @@ export interface awardsGenqlSelection{ created_by?: playersGenqlSelection created_by_steam_id?: boolean | number description?: boolean | number + /** An object relationship */ + event?: eventsGenqlSelection + event_id?: boolean | number id?: boolean | number image_url?: boolean | number + /** An object relationship */ + league_season?: league_seasonsGenqlSelection + league_season_id?: boolean | number name?: boolean | number /** An array relationship */ recipients?: (award_recipientsGenqlSelection & { __args?: { @@ -37140,9 +37344,14 @@ export interface awardsGenqlSelection{ order_by?: (award_recipients_order_by[] | null), /** filter the rows returned */ where?: (award_recipients_bool_exp | null)} }) + /** An object relationship */ + season?: seasonsGenqlSelection + season_id?: boolean | number silhouette?: boolean | number system_key?: boolean | number tier?: boolean | number + /** An object relationship */ + tournament?: tournamentsGenqlSelection /** An array relationship */ tournament_configs?: (tournament_awardsGenqlSelection & { __args?: { /** distinct select on columns */ @@ -37167,6 +37376,7 @@ export interface awardsGenqlSelection{ order_by?: (tournament_awards_order_by[] | null), /** filter the rows returned */ where?: (tournament_awards_bool_exp | null)} }) + tournament_id?: boolean | number updated_at?: boolean | number __typename?: boolean | number __scalar?: boolean | number @@ -37210,7 +37420,7 @@ export interface awards_avg_fieldsGenqlSelection{ /** Boolean expression to filter rows from the table "awards". All fields are combined with a logical 'AND'. */ -export interface awards_bool_exp {_and?: (awards_bool_exp[] | null),_not?: (awards_bool_exp | null),_or?: (awards_bool_exp[] | null),allow_multiple?: (Boolean_comparison_exp | null),created_at?: (timestamptz_comparison_exp | null),created_by?: (players_bool_exp | null),created_by_steam_id?: (bigint_comparison_exp | null),description?: (String_comparison_exp | null),id?: (uuid_comparison_exp | null),image_url?: (String_comparison_exp | null),name?: (String_comparison_exp | null),recipients?: (award_recipients_bool_exp | null),recipients_aggregate?: (award_recipients_aggregate_bool_exp | null),silhouette?: (Int_comparison_exp | null),system_key?: (String_comparison_exp | null),tier?: (e_award_tiers_enum_comparison_exp | null),tournament_configs?: (tournament_awards_bool_exp | null),tournament_configs_aggregate?: (tournament_awards_aggregate_bool_exp | null),updated_at?: (timestamptz_comparison_exp | null)} +export interface awards_bool_exp {_and?: (awards_bool_exp[] | null),_not?: (awards_bool_exp | null),_or?: (awards_bool_exp[] | null),allow_multiple?: (Boolean_comparison_exp | null),created_at?: (timestamptz_comparison_exp | null),created_by?: (players_bool_exp | null),created_by_steam_id?: (bigint_comparison_exp | null),description?: (String_comparison_exp | null),event?: (events_bool_exp | null),event_id?: (uuid_comparison_exp | null),id?: (uuid_comparison_exp | null),image_url?: (String_comparison_exp | null),league_season?: (league_seasons_bool_exp | null),league_season_id?: (uuid_comparison_exp | null),name?: (String_comparison_exp | null),recipients?: (award_recipients_bool_exp | null),recipients_aggregate?: (award_recipients_aggregate_bool_exp | null),season?: (seasons_bool_exp | null),season_id?: (uuid_comparison_exp | null),silhouette?: (Int_comparison_exp | null),system_key?: (String_comparison_exp | null),tier?: (e_award_tiers_enum_comparison_exp | null),tournament?: (tournaments_bool_exp | null),tournament_configs?: (tournament_awards_bool_exp | null),tournament_configs_aggregate?: (tournament_awards_aggregate_bool_exp | null),tournament_id?: (uuid_comparison_exp | null),updated_at?: (timestamptz_comparison_exp | null)} /** input type for incrementing numeric columns in table "awards" */ @@ -37218,7 +37428,7 @@ export interface awards_inc_input {created_by_steam_id?: (Scalars['bigint'] | nu /** input type for inserting data into table "awards" */ -export interface awards_insert_input {allow_multiple?: (Scalars['Boolean'] | null),created_at?: (Scalars['timestamptz'] | null),created_by?: (players_obj_rel_insert_input | null),created_by_steam_id?: (Scalars['bigint'] | null),description?: (Scalars['String'] | null),id?: (Scalars['uuid'] | null),image_url?: (Scalars['String'] | null),name?: (Scalars['String'] | null),recipients?: (award_recipients_arr_rel_insert_input | null),silhouette?: (Scalars['Int'] | null),system_key?: (Scalars['String'] | null),tier?: (e_award_tiers_enum | null),tournament_configs?: (tournament_awards_arr_rel_insert_input | null),updated_at?: (Scalars['timestamptz'] | null)} +export interface awards_insert_input {allow_multiple?: (Scalars['Boolean'] | null),created_at?: (Scalars['timestamptz'] | null),created_by?: (players_obj_rel_insert_input | null),created_by_steam_id?: (Scalars['bigint'] | null),description?: (Scalars['String'] | null),event?: (events_obj_rel_insert_input | null),event_id?: (Scalars['uuid'] | null),id?: (Scalars['uuid'] | null),image_url?: (Scalars['String'] | null),league_season?: (league_seasons_obj_rel_insert_input | null),league_season_id?: (Scalars['uuid'] | null),name?: (Scalars['String'] | null),recipients?: (award_recipients_arr_rel_insert_input | null),season?: (seasons_obj_rel_insert_input | null),season_id?: (Scalars['uuid'] | null),silhouette?: (Scalars['Int'] | null),system_key?: (Scalars['String'] | null),tier?: (e_award_tiers_enum | null),tournament?: (tournaments_obj_rel_insert_input | null),tournament_configs?: (tournament_awards_arr_rel_insert_input | null),tournament_id?: (Scalars['uuid'] | null),updated_at?: (Scalars['timestamptz'] | null)} /** aggregate max on columns */ @@ -37226,11 +37436,15 @@ export interface awards_max_fieldsGenqlSelection{ created_at?: boolean | number created_by_steam_id?: boolean | number description?: boolean | number + event_id?: boolean | number id?: boolean | number image_url?: boolean | number + league_season_id?: boolean | number name?: boolean | number + season_id?: boolean | number silhouette?: boolean | number system_key?: boolean | number + tournament_id?: boolean | number updated_at?: boolean | number __typename?: boolean | number __scalar?: boolean | number @@ -37242,11 +37456,15 @@ export interface awards_min_fieldsGenqlSelection{ created_at?: boolean | number created_by_steam_id?: boolean | number description?: boolean | number + event_id?: boolean | number id?: boolean | number image_url?: boolean | number + league_season_id?: boolean | number name?: boolean | number + season_id?: boolean | number silhouette?: boolean | number system_key?: boolean | number + tournament_id?: boolean | number updated_at?: boolean | number __typename?: boolean | number __scalar?: boolean | number @@ -37275,7 +37493,7 @@ export interface awards_on_conflict {constraint: awards_constraint,update_column /** Ordering options when selecting data from "awards". */ -export interface awards_order_by {allow_multiple?: (order_by | null),created_at?: (order_by | null),created_by?: (players_order_by | null),created_by_steam_id?: (order_by | null),description?: (order_by | null),id?: (order_by | null),image_url?: (order_by | null),name?: (order_by | null),recipients_aggregate?: (award_recipients_aggregate_order_by | null),silhouette?: (order_by | null),system_key?: (order_by | null),tier?: (order_by | null),tournament_configs_aggregate?: (tournament_awards_aggregate_order_by | null),updated_at?: (order_by | null)} +export interface awards_order_by {allow_multiple?: (order_by | null),created_at?: (order_by | null),created_by?: (players_order_by | null),created_by_steam_id?: (order_by | null),description?: (order_by | null),event?: (events_order_by | null),event_id?: (order_by | null),id?: (order_by | null),image_url?: (order_by | null),league_season?: (league_seasons_order_by | null),league_season_id?: (order_by | null),name?: (order_by | null),recipients_aggregate?: (award_recipients_aggregate_order_by | null),season?: (seasons_order_by | null),season_id?: (order_by | null),silhouette?: (order_by | null),system_key?: (order_by | null),tier?: (order_by | null),tournament?: (tournaments_order_by | null),tournament_configs_aggregate?: (tournament_awards_aggregate_order_by | null),tournament_id?: (order_by | null),updated_at?: (order_by | null)} /** primary key columns input for table: awards */ @@ -37283,7 +37501,7 @@ export interface awards_pk_columns_input {id: Scalars['uuid']} /** input type for updating data in table "awards" */ -export interface awards_set_input {allow_multiple?: (Scalars['Boolean'] | null),created_at?: (Scalars['timestamptz'] | null),created_by_steam_id?: (Scalars['bigint'] | null),description?: (Scalars['String'] | null),id?: (Scalars['uuid'] | null),image_url?: (Scalars['String'] | null),name?: (Scalars['String'] | null),silhouette?: (Scalars['Int'] | null),system_key?: (Scalars['String'] | null),tier?: (e_award_tiers_enum | null),updated_at?: (Scalars['timestamptz'] | null)} +export interface awards_set_input {allow_multiple?: (Scalars['Boolean'] | null),created_at?: (Scalars['timestamptz'] | null),created_by_steam_id?: (Scalars['bigint'] | null),description?: (Scalars['String'] | null),event_id?: (Scalars['uuid'] | null),id?: (Scalars['uuid'] | null),image_url?: (Scalars['String'] | null),league_season_id?: (Scalars['uuid'] | null),name?: (Scalars['String'] | null),season_id?: (Scalars['uuid'] | null),silhouette?: (Scalars['Int'] | null),system_key?: (Scalars['String'] | null),tier?: (e_award_tiers_enum | null),tournament_id?: (Scalars['uuid'] | null),updated_at?: (Scalars['timestamptz'] | null)} /** aggregate stddev on columns */ @@ -37322,7 +37540,7 @@ ordering?: (cursor_ordering | null)} /** Initial value of the column from where the streaming should start */ -export interface awards_stream_cursor_value_input {allow_multiple?: (Scalars['Boolean'] | null),created_at?: (Scalars['timestamptz'] | null),created_by_steam_id?: (Scalars['bigint'] | null),description?: (Scalars['String'] | null),id?: (Scalars['uuid'] | null),image_url?: (Scalars['String'] | null),name?: (Scalars['String'] | null),silhouette?: (Scalars['Int'] | null),system_key?: (Scalars['String'] | null),tier?: (e_award_tiers_enum | null),updated_at?: (Scalars['timestamptz'] | null)} +export interface awards_stream_cursor_value_input {allow_multiple?: (Scalars['Boolean'] | null),created_at?: (Scalars['timestamptz'] | null),created_by_steam_id?: (Scalars['bigint'] | null),description?: (Scalars['String'] | null),event_id?: (Scalars['uuid'] | null),id?: (Scalars['uuid'] | null),image_url?: (Scalars['String'] | null),league_season_id?: (Scalars['uuid'] | null),name?: (Scalars['String'] | null),season_id?: (Scalars['uuid'] | null),silhouette?: (Scalars['Int'] | null),system_key?: (Scalars['String'] | null),tier?: (e_award_tiers_enum | null),tournament_id?: (Scalars['uuid'] | null),updated_at?: (Scalars['timestamptz'] | null)} /** aggregate sum on columns */ @@ -45522,6 +45740,30 @@ where: event_tournaments_bool_exp} /** columns and relationships of "events" */ export interface eventsGenqlSelection{ + /** An array relationship */ + awards?: (award_recipientsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (award_recipients_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?: (award_recipients_order_by[] | null), + /** filter the rows returned */ + where?: (award_recipients_bool_exp | null)} }) + /** An aggregate relationship */ + awards_aggregate?: (award_recipients_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (award_recipients_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?: (award_recipients_order_by[] | null), + /** filter the rows returned */ + where?: (award_recipients_bool_exp | null)} }) /** An object relationship */ banner?: event_mediaGenqlSelection banner_media_id?: boolean | number @@ -45728,7 +45970,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),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)} +export interface events_bool_exp {_and?: (events_bool_exp[] | null),_not?: (events_bool_exp | null),_or?: (events_bool_exp[] | null),awards?: (award_recipients_bool_exp | null),awards_aggregate?: (award_recipients_aggregate_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" */ @@ -45736,7 +45978,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),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)} +export interface events_insert_input {awards?: (award_recipients_arr_rel_insert_input | null),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 */ @@ -45791,7 +46033,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),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)} +export interface events_order_by {awards_aggregate?: (award_recipients_aggregate_order_by | null),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 */ @@ -48443,6 +48685,30 @@ where: league_season_divisions_bool_exp} /** columns and relationships of "league_seasons" */ export interface league_seasonsGenqlSelection{ auto_regular_season_format?: boolean | number + /** An array relationship */ + awards?: (award_recipientsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (award_recipients_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?: (award_recipients_order_by[] | null), + /** filter the rows returned */ + where?: (award_recipients_bool_exp | null)} }) + /** An aggregate relationship */ + awards_aggregate?: (award_recipients_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (award_recipients_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?: (award_recipients_order_by[] | null), + /** filter the rows returned */ + where?: (award_recipients_bool_exp | null)} }) /** A computed field, executes function "can_register_for_league_season" */ can_register?: boolean | number created_at?: boolean | number @@ -48725,7 +48991,7 @@ export interface league_seasons_avg_fieldsGenqlSelection{ /** Boolean expression to filter rows from the table "league_seasons". All fields are combined with a logical 'AND'. */ -export interface league_seasons_bool_exp {_and?: (league_seasons_bool_exp[] | null),_not?: (league_seasons_bool_exp | null),_or?: (league_seasons_bool_exp[] | null),auto_regular_season_format?: (Boolean_comparison_exp | null),can_register?: (Boolean_comparison_exp | null),created_at?: (timestamptz_comparison_exp | null),created_by_steam_id?: (bigint_comparison_exp | null),default_best_of?: (Int_comparison_exp | null),direct_promote_count?: (Int_comparison_exp | null),direct_relegate_count?: (Int_comparison_exp | null),e_league_season_status?: (e_league_season_statuses_bool_exp | null),games_per_week?: (Int_comparison_exp | null),id?: (uuid_comparison_exp | null),is_league_admin?: (Boolean_comparison_exp | null),is_roster_locked?: (Boolean_comparison_exp | null),match_options_id?: (uuid_comparison_exp | null),match_weeks?: (league_match_weeks_bool_exp | null),match_weeks_aggregate?: (league_match_weeks_aggregate_bool_exp | null),match_weeks_count?: (Int_comparison_exp | null),max_roster_size?: (Int_comparison_exp | null),min_roster_size?: (Int_comparison_exp | null),movements?: (league_team_movements_bool_exp | null),movements_aggregate?: (league_team_movements_aggregate_bool_exp | null),my_registration?: (league_team_seasons_bool_exp | null),name?: (String_comparison_exp | null),options?: (match_options_bool_exp | null),player_stats?: (v_league_season_player_stats_bool_exp | null),player_stats_aggregate?: (v_league_season_player_stats_aggregate_bool_exp | null),playoff_best_of?: (Int_comparison_exp | null),playoff_round_best_of?: (jsonb_comparison_exp | null),playoff_seats?: (Int_comparison_exp | null),playoff_stage_type?: (e_tournament_stage_types_enum_comparison_exp | null),playoff_third_place_match?: (Boolean_comparison_exp | null),promote_count?: (Int_comparison_exp | null),regular_season_stage_type?: (e_tournament_stage_types_enum_comparison_exp | null),relegate_count?: (Int_comparison_exp | null),relegation_down_count?: (Int_comparison_exp | null),relegation_playoffs?: (league_relegation_playoffs_bool_exp | null),relegation_playoffs_aggregate?: (league_relegation_playoffs_aggregate_bool_exp | null),relegation_up_count?: (Int_comparison_exp | null),roster_lock_at?: (timestamptz_comparison_exp | null),season_divisions?: (league_season_divisions_bool_exp | null),season_divisions_aggregate?: (league_season_divisions_aggregate_bool_exp | null),season_number?: (Int_comparison_exp | null),signup_closes_at?: (timestamptz_comparison_exp | null),signup_opens_at?: (timestamptz_comparison_exp | null),standings?: (v_league_division_standings_bool_exp | null),standings_aggregate?: (v_league_division_standings_aggregate_bool_exp | null),starts_at?: (timestamptz_comparison_exp | null),status?: (e_league_season_statuses_enum_comparison_exp | null),team_seasons?: (league_team_seasons_bool_exp | null),team_seasons_aggregate?: (league_team_seasons_aggregate_bool_exp | null),week_best_of?: (jsonb_comparison_exp | null)} +export interface league_seasons_bool_exp {_and?: (league_seasons_bool_exp[] | null),_not?: (league_seasons_bool_exp | null),_or?: (league_seasons_bool_exp[] | null),auto_regular_season_format?: (Boolean_comparison_exp | null),awards?: (award_recipients_bool_exp | null),awards_aggregate?: (award_recipients_aggregate_bool_exp | null),can_register?: (Boolean_comparison_exp | null),created_at?: (timestamptz_comparison_exp | null),created_by_steam_id?: (bigint_comparison_exp | null),default_best_of?: (Int_comparison_exp | null),direct_promote_count?: (Int_comparison_exp | null),direct_relegate_count?: (Int_comparison_exp | null),e_league_season_status?: (e_league_season_statuses_bool_exp | null),games_per_week?: (Int_comparison_exp | null),id?: (uuid_comparison_exp | null),is_league_admin?: (Boolean_comparison_exp | null),is_roster_locked?: (Boolean_comparison_exp | null),match_options_id?: (uuid_comparison_exp | null),match_weeks?: (league_match_weeks_bool_exp | null),match_weeks_aggregate?: (league_match_weeks_aggregate_bool_exp | null),match_weeks_count?: (Int_comparison_exp | null),max_roster_size?: (Int_comparison_exp | null),min_roster_size?: (Int_comparison_exp | null),movements?: (league_team_movements_bool_exp | null),movements_aggregate?: (league_team_movements_aggregate_bool_exp | null),my_registration?: (league_team_seasons_bool_exp | null),name?: (String_comparison_exp | null),options?: (match_options_bool_exp | null),player_stats?: (v_league_season_player_stats_bool_exp | null),player_stats_aggregate?: (v_league_season_player_stats_aggregate_bool_exp | null),playoff_best_of?: (Int_comparison_exp | null),playoff_round_best_of?: (jsonb_comparison_exp | null),playoff_seats?: (Int_comparison_exp | null),playoff_stage_type?: (e_tournament_stage_types_enum_comparison_exp | null),playoff_third_place_match?: (Boolean_comparison_exp | null),promote_count?: (Int_comparison_exp | null),regular_season_stage_type?: (e_tournament_stage_types_enum_comparison_exp | null),relegate_count?: (Int_comparison_exp | null),relegation_down_count?: (Int_comparison_exp | null),relegation_playoffs?: (league_relegation_playoffs_bool_exp | null),relegation_playoffs_aggregate?: (league_relegation_playoffs_aggregate_bool_exp | null),relegation_up_count?: (Int_comparison_exp | null),roster_lock_at?: (timestamptz_comparison_exp | null),season_divisions?: (league_season_divisions_bool_exp | null),season_divisions_aggregate?: (league_season_divisions_aggregate_bool_exp | null),season_number?: (Int_comparison_exp | null),signup_closes_at?: (timestamptz_comparison_exp | null),signup_opens_at?: (timestamptz_comparison_exp | null),standings?: (v_league_division_standings_bool_exp | null),standings_aggregate?: (v_league_division_standings_aggregate_bool_exp | null),starts_at?: (timestamptz_comparison_exp | null),status?: (e_league_season_statuses_enum_comparison_exp | null),team_seasons?: (league_team_seasons_bool_exp | null),team_seasons_aggregate?: (league_team_seasons_aggregate_bool_exp | null),week_best_of?: (jsonb_comparison_exp | null)} /** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */ @@ -48745,7 +49011,7 @@ export interface league_seasons_inc_input {created_by_steam_id?: (Scalars['bigin /** input type for inserting data into table "league_seasons" */ -export interface league_seasons_insert_input {auto_regular_season_format?: (Scalars['Boolean'] | null),created_at?: (Scalars['timestamptz'] | null),created_by_steam_id?: (Scalars['bigint'] | null),default_best_of?: (Scalars['Int'] | null),direct_promote_count?: (Scalars['Int'] | null),direct_relegate_count?: (Scalars['Int'] | null),e_league_season_status?: (e_league_season_statuses_obj_rel_insert_input | null),games_per_week?: (Scalars['Int'] | null),id?: (Scalars['uuid'] | null),match_options_id?: (Scalars['uuid'] | null),match_weeks?: (league_match_weeks_arr_rel_insert_input | null),match_weeks_count?: (Scalars['Int'] | null),max_roster_size?: (Scalars['Int'] | null),min_roster_size?: (Scalars['Int'] | null),movements?: (league_team_movements_arr_rel_insert_input | null),name?: (Scalars['String'] | null),options?: (match_options_obj_rel_insert_input | null),player_stats?: (v_league_season_player_stats_arr_rel_insert_input | null),playoff_best_of?: (Scalars['Int'] | null),playoff_round_best_of?: (Scalars['jsonb'] | null),playoff_seats?: (Scalars['Int'] | null),playoff_stage_type?: (e_tournament_stage_types_enum | null),playoff_third_place_match?: (Scalars['Boolean'] | null),promote_count?: (Scalars['Int'] | null),regular_season_stage_type?: (e_tournament_stage_types_enum | null),relegate_count?: (Scalars['Int'] | null),relegation_down_count?: (Scalars['Int'] | null),relegation_playoffs?: (league_relegation_playoffs_arr_rel_insert_input | null),relegation_up_count?: (Scalars['Int'] | null),roster_lock_at?: (Scalars['timestamptz'] | null),season_divisions?: (league_season_divisions_arr_rel_insert_input | null),season_number?: (Scalars['Int'] | null),signup_closes_at?: (Scalars['timestamptz'] | null),signup_opens_at?: (Scalars['timestamptz'] | null),standings?: (v_league_division_standings_arr_rel_insert_input | null),starts_at?: (Scalars['timestamptz'] | null),status?: (e_league_season_statuses_enum | null),team_seasons?: (league_team_seasons_arr_rel_insert_input | null),week_best_of?: (Scalars['jsonb'] | null)} +export interface league_seasons_insert_input {auto_regular_season_format?: (Scalars['Boolean'] | null),awards?: (award_recipients_arr_rel_insert_input | null),created_at?: (Scalars['timestamptz'] | null),created_by_steam_id?: (Scalars['bigint'] | null),default_best_of?: (Scalars['Int'] | null),direct_promote_count?: (Scalars['Int'] | null),direct_relegate_count?: (Scalars['Int'] | null),e_league_season_status?: (e_league_season_statuses_obj_rel_insert_input | null),games_per_week?: (Scalars['Int'] | null),id?: (Scalars['uuid'] | null),match_options_id?: (Scalars['uuid'] | null),match_weeks?: (league_match_weeks_arr_rel_insert_input | null),match_weeks_count?: (Scalars['Int'] | null),max_roster_size?: (Scalars['Int'] | null),min_roster_size?: (Scalars['Int'] | null),movements?: (league_team_movements_arr_rel_insert_input | null),name?: (Scalars['String'] | null),options?: (match_options_obj_rel_insert_input | null),player_stats?: (v_league_season_player_stats_arr_rel_insert_input | null),playoff_best_of?: (Scalars['Int'] | null),playoff_round_best_of?: (Scalars['jsonb'] | null),playoff_seats?: (Scalars['Int'] | null),playoff_stage_type?: (e_tournament_stage_types_enum | null),playoff_third_place_match?: (Scalars['Boolean'] | null),promote_count?: (Scalars['Int'] | null),regular_season_stage_type?: (e_tournament_stage_types_enum | null),relegate_count?: (Scalars['Int'] | null),relegation_down_count?: (Scalars['Int'] | null),relegation_playoffs?: (league_relegation_playoffs_arr_rel_insert_input | null),relegation_up_count?: (Scalars['Int'] | null),roster_lock_at?: (Scalars['timestamptz'] | null),season_divisions?: (league_season_divisions_arr_rel_insert_input | null),season_number?: (Scalars['Int'] | null),signup_closes_at?: (Scalars['timestamptz'] | null),signup_opens_at?: (Scalars['timestamptz'] | null),standings?: (v_league_division_standings_arr_rel_insert_input | null),starts_at?: (Scalars['timestamptz'] | null),status?: (e_league_season_statuses_enum | null),team_seasons?: (league_team_seasons_arr_rel_insert_input | null),week_best_of?: (Scalars['jsonb'] | null)} /** aggregate max on columns */ @@ -48830,7 +49096,7 @@ export interface league_seasons_on_conflict {constraint: league_seasons_constrai /** Ordering options when selecting data from "league_seasons". */ -export interface league_seasons_order_by {auto_regular_season_format?: (order_by | null),can_register?: (order_by | null),created_at?: (order_by | null),created_by_steam_id?: (order_by | null),default_best_of?: (order_by | null),direct_promote_count?: (order_by | null),direct_relegate_count?: (order_by | null),e_league_season_status?: (e_league_season_statuses_order_by | null),games_per_week?: (order_by | null),id?: (order_by | null),is_league_admin?: (order_by | null),is_roster_locked?: (order_by | null),match_options_id?: (order_by | null),match_weeks_aggregate?: (league_match_weeks_aggregate_order_by | null),match_weeks_count?: (order_by | null),max_roster_size?: (order_by | null),min_roster_size?: (order_by | null),movements_aggregate?: (league_team_movements_aggregate_order_by | null),my_registration_aggregate?: (league_team_seasons_aggregate_order_by | null),name?: (order_by | null),options?: (match_options_order_by | null),player_stats_aggregate?: (v_league_season_player_stats_aggregate_order_by | null),playoff_best_of?: (order_by | null),playoff_round_best_of?: (order_by | null),playoff_seats?: (order_by | null),playoff_stage_type?: (order_by | null),playoff_third_place_match?: (order_by | null),promote_count?: (order_by | null),regular_season_stage_type?: (order_by | null),relegate_count?: (order_by | null),relegation_down_count?: (order_by | null),relegation_playoffs_aggregate?: (league_relegation_playoffs_aggregate_order_by | null),relegation_up_count?: (order_by | null),roster_lock_at?: (order_by | null),season_divisions_aggregate?: (league_season_divisions_aggregate_order_by | null),season_number?: (order_by | null),signup_closes_at?: (order_by | null),signup_opens_at?: (order_by | null),standings_aggregate?: (v_league_division_standings_aggregate_order_by | null),starts_at?: (order_by | null),status?: (order_by | null),team_seasons_aggregate?: (league_team_seasons_aggregate_order_by | null),week_best_of?: (order_by | null)} +export interface league_seasons_order_by {auto_regular_season_format?: (order_by | null),awards_aggregate?: (award_recipients_aggregate_order_by | null),can_register?: (order_by | null),created_at?: (order_by | null),created_by_steam_id?: (order_by | null),default_best_of?: (order_by | null),direct_promote_count?: (order_by | null),direct_relegate_count?: (order_by | null),e_league_season_status?: (e_league_season_statuses_order_by | null),games_per_week?: (order_by | null),id?: (order_by | null),is_league_admin?: (order_by | null),is_roster_locked?: (order_by | null),match_options_id?: (order_by | null),match_weeks_aggregate?: (league_match_weeks_aggregate_order_by | null),match_weeks_count?: (order_by | null),max_roster_size?: (order_by | null),min_roster_size?: (order_by | null),movements_aggregate?: (league_team_movements_aggregate_order_by | null),my_registration_aggregate?: (league_team_seasons_aggregate_order_by | null),name?: (order_by | null),options?: (match_options_order_by | null),player_stats_aggregate?: (v_league_season_player_stats_aggregate_order_by | null),playoff_best_of?: (order_by | null),playoff_round_best_of?: (order_by | null),playoff_seats?: (order_by | null),playoff_stage_type?: (order_by | null),playoff_third_place_match?: (order_by | null),promote_count?: (order_by | null),regular_season_stage_type?: (order_by | null),relegate_count?: (order_by | null),relegation_down_count?: (order_by | null),relegation_playoffs_aggregate?: (league_relegation_playoffs_aggregate_order_by | null),relegation_up_count?: (order_by | null),roster_lock_at?: (order_by | null),season_divisions_aggregate?: (league_season_divisions_aggregate_order_by | null),season_number?: (order_by | null),signup_closes_at?: (order_by | null),signup_opens_at?: (order_by | null),standings_aggregate?: (v_league_division_standings_aggregate_order_by | null),starts_at?: (order_by | null),status?: (order_by | null),team_seasons_aggregate?: (league_team_seasons_aggregate_order_by | null),week_best_of?: (order_by | null)} /** primary key columns input for table: league_seasons */ @@ -56439,7 +56705,7 @@ export interface mutation_rootGenqlSelection{ getLiveStreamSpecState?: (LiveStreamSpecStateGenqlSelection & { __args: {match_id: Scalars['uuid']} }) getTestUploadLink?: GetTestUploadResponseGenqlSelection /** Grant an award to a player or team */ - grantAward?: (AwardRecipientGenqlSelection & { __args: {award_id: Scalars['uuid'], note?: (Scalars['String'] | null), player_steam_id?: (Scalars['String'] | null), team_id?: (Scalars['uuid'] | null), tournament_id?: (Scalars['uuid'] | null)} }) + grantAward?: (AwardRecipientGenqlSelection & { __args: {award_id: Scalars['uuid'], event_id?: (Scalars['uuid'] | null), league_season_id?: (Scalars['uuid'] | null), note?: (Scalars['String'] | null), player_steam_id?: (Scalars['String'] | null), season_id?: (Scalars['uuid'] | null), team_id?: (Scalars['uuid'] | null), tournament_id?: (Scalars['uuid'] | null)} }) /** insert data into the table: "_map_pool" */ insert__map_pool?: (_map_pool_mutation_responseGenqlSelection & { __args: { /** the rows to be inserted */ @@ -58421,7 +58687,7 @@ export interface mutation_rootGenqlSelection{ revokeAward?: (SuccessOutputGenqlSelection & { __args: {id: Scalars['uuid']} }) sanctionServerPlayer?: (SanctionResultGenqlSelection & { __args: {duration?: (Scalars['Float'] | null), reason?: (Scalars['String'] | null), serverId?: (Scalars['String'] | null), steam_id: Scalars['String'], type: Scalars['String']} }) /** Create or update a catalog award */ - saveAward?: (AwardGenqlSelection & { __args: {allow_multiple?: (Scalars['Boolean'] | null), description?: (Scalars['String'] | null), id?: (Scalars['uuid'] | null), name: Scalars['String'], silhouette?: (Scalars['Int'] | null), tier: Scalars['String']} }) + saveAward?: (AwardGenqlSelection & { __args: {allow_multiple?: (Scalars['Boolean'] | null), description?: (Scalars['String'] | null), event_id?: (Scalars['uuid'] | null), id?: (Scalars['uuid'] | null), league_season_id?: (Scalars['uuid'] | null), name: Scalars['String'], season_id?: (Scalars['uuid'] | null), silhouette?: (Scalars['Int'] | null), tier: Scalars['String'], tournament_id?: (Scalars['uuid'] | null)} }) /** Create or update a first-party news post. Caller role is verified against public.post_news_role. */ saveNewsPost?: (NewsPostGenqlSelection & { __args: {content_markdown: Scalars['String'], cover_image_url?: (Scalars['String'] | null), id?: (Scalars['uuid'] | null), teaser?: (Scalars['String'] | null), title: Scalars['String']} }) /** Scan S3 for objects not referenced in the database (admin only). Runs in the background; results land in the logs and orphanedDemosScanResult. */ @@ -77786,6 +78052,30 @@ export interface restart_league_season_args {_league_season_id?: (Scalars['uuid' /** columns and relationships of "seasons" */ export interface seasonsGenqlSelection{ + /** An array relationship */ + awards?: (award_recipientsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (award_recipients_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?: (award_recipients_order_by[] | null), + /** filter the rows returned */ + where?: (award_recipients_bool_exp | null)} }) + /** An aggregate relationship */ + awards_aggregate?: (award_recipients_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (award_recipients_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?: (award_recipients_order_by[] | null), + /** filter the rows returned */ + where?: (award_recipients_bool_exp | null)} }) created_at?: boolean | number description?: boolean | number ends_at?: boolean | number @@ -77858,7 +78148,7 @@ export interface seasons_avg_fieldsGenqlSelection{ /** Boolean expression to filter rows from the table "seasons". All fields are combined with a logical 'AND'. */ -export interface seasons_bool_exp {_and?: (seasons_bool_exp[] | null),_not?: (seasons_bool_exp | null),_or?: (seasons_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),needs_rebuild?: (Boolean_comparison_exp | null),number?: (Int_comparison_exp | null),player_season_stats?: (player_season_stats_bool_exp | null),player_season_stats_aggregate?: (player_season_stats_aggregate_bool_exp | null),starts_at?: (timestamptz_comparison_exp | null)} +export interface seasons_bool_exp {_and?: (seasons_bool_exp[] | null),_not?: (seasons_bool_exp | null),_or?: (seasons_bool_exp[] | null),awards?: (award_recipients_bool_exp | null),awards_aggregate?: (award_recipients_aggregate_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),needs_rebuild?: (Boolean_comparison_exp | null),number?: (Int_comparison_exp | null),player_season_stats?: (player_season_stats_bool_exp | null),player_season_stats_aggregate?: (player_season_stats_aggregate_bool_exp | null),starts_at?: (timestamptz_comparison_exp | null)} /** input type for incrementing numeric columns in table "seasons" */ @@ -77866,7 +78156,7 @@ export interface seasons_inc_input {number?: (Scalars['Int'] | null)} /** input type for inserting data into table "seasons" */ -export interface seasons_insert_input {created_at?: (Scalars['timestamptz'] | null),description?: (Scalars['String'] | null),ends_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),needs_rebuild?: (Scalars['Boolean'] | null),number?: (Scalars['Int'] | null),player_season_stats?: (player_season_stats_arr_rel_insert_input | null),starts_at?: (Scalars['timestamptz'] | null)} +export interface seasons_insert_input {awards?: (award_recipients_arr_rel_insert_input | null),created_at?: (Scalars['timestamptz'] | null),description?: (Scalars['String'] | null),ends_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),needs_rebuild?: (Scalars['Boolean'] | null),number?: (Scalars['Int'] | null),player_season_stats?: (player_season_stats_arr_rel_insert_input | null),starts_at?: (Scalars['timestamptz'] | null)} /** aggregate max on columns */ @@ -77917,7 +78207,7 @@ export interface seasons_on_conflict {constraint: seasons_constraint,update_colu /** Ordering options when selecting data from "seasons". */ -export interface seasons_order_by {created_at?: (order_by | null),description?: (order_by | null),ends_at?: (order_by | null),id?: (order_by | null),needs_rebuild?: (order_by | null),number?: (order_by | null),player_season_stats_aggregate?: (player_season_stats_aggregate_order_by | null),starts_at?: (order_by | null)} +export interface seasons_order_by {awards_aggregate?: (award_recipients_aggregate_order_by | null),created_at?: (order_by | null),description?: (order_by | null),ends_at?: (order_by | null),id?: (order_by | null),needs_rebuild?: (order_by | null),number?: (order_by | null),player_season_stats_aggregate?: (player_season_stats_aggregate_order_by | null),starts_at?: (order_by | null)} /** primary key columns input for table: seasons */ @@ -99722,6 +100012,46 @@ export type SubscriptionGenqlSelection = subscription_rootGenqlSelection + const TelemetryActivityPoint_possibleTypes: string[] = ['TelemetryActivityPoint'] + export const isTelemetryActivityPoint = (obj?: { __typename?: any } | null): obj is TelemetryActivityPoint => { + if (!obj?.__typename) throw new Error('__typename is missing in "isTelemetryActivityPoint"') + return TelemetryActivityPoint_possibleTypes.includes(obj.__typename) + } + + + + const TelemetryFeatureAdoption_possibleTypes: string[] = ['TelemetryFeatureAdoption'] + export const isTelemetryFeatureAdoption = (obj?: { __typename?: any } | null): obj is TelemetryFeatureAdoption => { + if (!obj?.__typename) throw new Error('__typename is missing in "isTelemetryFeatureAdoption"') + return TelemetryFeatureAdoption_possibleTypes.includes(obj.__typename) + } + + + + const TelemetryFleetTotals_possibleTypes: string[] = ['TelemetryFleetTotals'] + export const isTelemetryFleetTotals = (obj?: { __typename?: any } | null): obj is TelemetryFleetTotals => { + if (!obj?.__typename) throw new Error('__typename is missing in "isTelemetryFleetTotals"') + return TelemetryFleetTotals_possibleTypes.includes(obj.__typename) + } + + + + const TelemetryGrowthPoint_possibleTypes: string[] = ['TelemetryGrowthPoint'] + export const isTelemetryGrowthPoint = (obj?: { __typename?: any } | null): obj is TelemetryGrowthPoint => { + if (!obj?.__typename) throw new Error('__typename is missing in "isTelemetryGrowthPoint"') + return TelemetryGrowthPoint_possibleTypes.includes(obj.__typename) + } + + + + const TelemetryInstallCounts_possibleTypes: string[] = ['TelemetryInstallCounts'] + export const isTelemetryInstallCounts = (obj?: { __typename?: any } | null): obj is TelemetryInstallCounts => { + if (!obj?.__typename) throw new Error('__typename is missing in "isTelemetryInstallCounts"') + return TelemetryInstallCounts_possibleTypes.includes(obj.__typename) + } + + + const TelemetryStats_possibleTypes: string[] = ['TelemetryStats'] export const isTelemetryStats = (obj?: { __typename?: any } | null): obj is TelemetryStats => { if (!obj?.__typename) throw new Error('__typename is missing in "isTelemetryStats"') @@ -99730,6 +100060,14 @@ export type SubscriptionGenqlSelection = subscription_rootGenqlSelection + const TelemetryVersionSpread_possibleTypes: string[] = ['TelemetryVersionSpread'] + export const isTelemetryVersionSpread = (obj?: { __typename?: any } | null): obj is TelemetryVersionSpread => { + if (!obj?.__typename) throw new Error('__typename is missing in "isTelemetryVersionSpread"') + return TelemetryVersionSpread_possibleTypes.includes(obj.__typename) + } + + + const TestUploadResponse_possibleTypes: string[] = ['TestUploadResponse'] export const isTestUploadResponse = (obj?: { __typename?: any } | null): obj is TestUploadResponse => { if (!obj?.__typename) throw new Error('__typename is missing in "isTestUploadResponse"') @@ -116623,6 +116961,7 @@ export const enumAwardRecipientsConstraint = { award_recipients_one_mvp_per_tournament: 'award_recipients_one_mvp_per_tournament' as const, award_recipients_pkey: 'award_recipients_pkey' as const, award_recipients_player_recipient_key: 'award_recipients_player_recipient_key' as const, + award_recipients_season_player_key: 'award_recipients_season_player_key' as const, award_recipients_team_recipient_key: 'award_recipients_team_recipient_key' as const } @@ -116630,11 +116969,14 @@ export const enumAwardRecipientsSelectColumn = { award_id: 'award_id' as const, awarded_by_steam_id: 'awarded_by_steam_id' as const, created_at: 'created_at' as const, + event_id: 'event_id' as const, id: 'id' as const, + league_season_id: 'league_season_id' as const, note: 'note' as const, placement: 'placement' as const, placement_tier: 'placement_tier' as const, player_steam_id: 'player_steam_id' as const, + season_id: 'season_id' as const, source: 'source' as const, team_id: 'team_id' as const, tournament_id: 'tournament_id' as const, @@ -116645,10 +116987,13 @@ export const enumAwardRecipientsUpdateColumn = { award_id: 'award_id' as const, awarded_by_steam_id: 'awarded_by_steam_id' as const, created_at: 'created_at' as const, + event_id: 'event_id' as const, id: 'id' as const, + league_season_id: 'league_season_id' as const, note: 'note' as const, placement: 'placement' as const, player_steam_id: 'player_steam_id' as const, + season_id: 'season_id' as const, source: 'source' as const, team_id: 'team_id' as const, tournament_id: 'tournament_id' as const, @@ -116665,12 +117010,16 @@ export const enumAwardsSelectColumn = { created_at: 'created_at' as const, created_by_steam_id: 'created_by_steam_id' as const, description: 'description' as const, + event_id: 'event_id' as const, id: 'id' as const, image_url: 'image_url' as const, + league_season_id: 'league_season_id' as const, name: 'name' as const, + season_id: 'season_id' as const, silhouette: 'silhouette' as const, system_key: 'system_key' as const, tier: 'tier' as const, + tournament_id: 'tournament_id' as const, updated_at: 'updated_at' as const } @@ -116679,12 +117028,16 @@ export const enumAwardsUpdateColumn = { created_at: 'created_at' as const, created_by_steam_id: 'created_by_steam_id' as const, description: 'description' as const, + event_id: 'event_id' as const, id: 'id' as const, image_url: 'image_url' as const, + league_season_id: 'league_season_id' as const, name: 'name' as const, + season_id: 'season_id' as const, silhouette: 'silhouette' as const, system_key: 'system_key' as const, tier: 'tier' as const, + tournament_id: 'tournament_id' as const, updated_at: 'updated_at' as const } diff --git a/generated/types.ts b/generated/types.ts index 0e0efaeb..c80b7b1e 100644 --- a/generated/types.ts +++ b/generated/types.ts @@ -4,662 +4,662 @@ export default { 31, 40, 80, - 99, - 107, - 111, + 105, 113, - 124, - 135, - 147, - 160, - 169, - 177, - 193, - 204, - 216, - 229, - 239, - 247, - 252, - 255, - 270, - 285, - 286, - 287, - 299, - 308, - 315, - 328, - 336, - 346, - 355, - 363, - 380, - 391, - 392, - 393, - 405, - 425, - 436, - 437, - 438, - 450, - 470, - 482, - 483, - 484, - 496, - 508, - 509, - 518, - 522, + 117, + 119, + 130, + 141, + 153, + 166, + 175, + 183, + 199, + 210, + 222, + 235, + 245, + 253, + 258, + 261, + 276, + 291, + 292, + 293, + 305, + 314, + 321, + 334, + 342, + 352, + 361, + 369, + 386, + 397, + 398, + 399, + 411, + 431, + 442, + 443, + 444, + 456, + 476, + 488, + 489, + 490, + 502, + 514, + 515, + 524, 528, - 529, - 538, - 542, + 534, + 535, + 544, 548, - 549, - 558, - 562, + 554, + 555, + 564, 568, - 569, - 579, - 583, + 574, + 575, + 585, 589, - 590, - 600, - 604, + 595, + 596, + 606, 610, - 611, - 621, - 625, + 616, + 617, + 627, 631, - 632, - 642, - 646, + 637, + 638, + 648, 652, - 653, - 663, - 667, + 658, + 659, + 669, 673, - 674, - 683, - 687, + 679, + 680, + 689, 693, - 694, - 703, - 707, + 699, + 700, + 709, 713, - 714, - 724, - 728, + 719, + 720, + 730, 734, - 735, - 744, - 748, + 740, + 741, + 750, 754, - 755, - 765, - 769, + 760, + 761, + 771, 775, - 776, - 786, - 790, + 781, + 782, + 792, 796, - 797, - 807, - 811, + 802, + 803, + 813, 817, - 818, - 828, - 832, + 823, + 824, + 834, 838, - 839, - 849, - 853, + 844, + 845, + 855, 859, - 860, - 870, - 874, + 865, + 866, + 876, 880, - 881, - 890, - 894, + 886, + 887, + 896, 900, - 901, - 911, - 915, + 906, + 907, + 917, 921, - 922, - 931, - 935, + 927, + 928, + 937, 941, - 942, - 952, - 956, + 947, + 948, + 958, 962, - 963, - 972, - 976, + 968, + 969, + 978, 982, - 983, - 993, - 997, + 988, + 989, + 999, 1003, - 1004, - 1014, - 1018, + 1009, + 1010, + 1020, 1024, - 1025, - 1034, - 1038, + 1030, + 1031, + 1040, 1044, - 1045, - 1054, - 1058, + 1050, + 1051, + 1060, 1064, - 1065, - 1074, - 1078, + 1070, + 1071, + 1080, 1084, - 1085, - 1094, - 1098, + 1090, + 1091, + 1100, 1104, - 1105, - 1114, - 1118, + 1110, + 1111, + 1120, 1124, - 1125, - 1135, - 1139, + 1130, + 1131, + 1141, 1145, - 1146, - 1155, - 1159, + 1151, + 1152, + 1161, 1165, - 1166, - 1175, - 1179, + 1171, + 1172, + 1181, 1185, - 1186, - 1195, - 1199, + 1191, + 1192, + 1201, 1205, - 1206, - 1215, - 1219, + 1211, + 1212, + 1221, 1225, - 1226, - 1236, - 1240, + 1231, + 1232, + 1242, 1246, - 1247, - 1256, - 1260, + 1252, + 1253, + 1262, 1266, - 1267, - 1276, - 1280, + 1272, + 1273, + 1282, 1286, - 1287, - 1297, - 1301, + 1292, + 1293, + 1303, 1307, - 1308, - 1318, - 1322, + 1313, + 1314, + 1324, 1328, - 1329, - 1339, - 1343, + 1334, + 1335, + 1345, 1349, - 1350, - 1359, - 1363, + 1355, + 1356, + 1365, 1369, - 1370, - 1379, - 1383, + 1375, + 1376, + 1385, 1389, - 1390, - 1399, - 1403, + 1395, + 1396, + 1405, 1409, - 1417, - 1421, - 1433, - 1455, - 1466, - 1478, - 1486, - 1498, - 1516, - 1527, - 1539, - 1557, - 1568, - 1580, - 1596, - 1606, - 1610, - 1620, - 1630, - 1634, - 1641, - 1651, - 1659, - 1664, - 1671, - 1680, - 1688, - 1706, - 1722, - 1723, - 1724, - 1736, - 1750, - 1764, - 1772, - 1783, - 1796, - 1804, - 1813, - 1815, - 1817, - 1831, - 1849, - 1859, - 1867, - 1882, - 1893, - 1905, - 1923, - 1934, - 1946, - 1964, - 1975, - 1987, - 2003, - 2014, - 2018, - 2026, - 2040, - 2048, - 2063, - 2074, - 2086, - 2104, - 2115, - 2127, - 2145, - 2157, - 2169, - 2181, - 2190, - 2194, + 1415, + 1423, + 1427, + 1439, + 1461, + 1472, + 1484, + 1492, + 1504, + 1522, + 1533, + 1545, + 1563, + 1574, + 1586, + 1602, + 1612, + 1616, + 1626, + 1636, + 1640, + 1647, + 1657, + 1665, + 1670, + 1677, + 1686, + 1694, + 1712, + 1728, + 1729, + 1730, + 1742, + 1756, + 1770, + 1778, + 1789, + 1802, + 1810, + 1819, + 1821, + 1823, + 1837, + 1855, + 1865, + 1873, + 1888, + 1899, + 1911, + 1929, + 1940, + 1952, + 1970, + 1981, + 1993, + 2009, + 2020, + 2024, + 2032, + 2046, + 2054, + 2069, + 2080, + 2092, + 2110, + 2121, + 2133, + 2151, + 2163, + 2175, + 2187, + 2196, 2200, - 2209, - 2213, - 2227, - 2238, - 2239, - 2240, - 2252, - 2264, - 2273, - 2277, - 2289, - 2300, - 2301, - 2302, + 2206, + 2215, + 2219, + 2233, + 2244, + 2245, + 2246, + 2258, + 2270, + 2279, + 2283, + 2295, 2306, - 2318, - 2330, - 2342, - 2361, - 2376, - 2388, - 2408, - 2419, - 2420, - 2421, - 2433, - 2451, - 2463, - 2475, - 2496, - 2512, - 2513, - 2514, - 2526, - 2544, - 2555, - 2567, - 2583, - 2593, - 2597, - 2609, - 2621, - 2633, - 2646, - 2656, - 2664, - 2677, - 2687, - 2691, - 2706, - 2721, - 2722, - 2723, - 2735, - 2747, - 2755, - 2759, - 2771, - 2783, - 2795, - 2807, - 2815, - 2819, - 2846, - 2847, - 2848, - 2872, - 2881, - 2889, - 2907, - 2922, - 2923, - 2924, - 2936, - 2944, - 2946, - 2957, - 2968, - 2980, - 2993, - 3003, - 3011, - 3021, - 3030, - 3038, - 3053, - 3064, - 3076, - 3096, - 3107, - 3108, - 3109, - 3121, - 3137, - 3157, - 3168, - 3180, - 3193, - 3202, - 3210, - 3225, - 3236, - 3248, - 3268, - 3279, - 3280, - 3281, - 3293, - 3323, - 3334, - 3346, - 3354, - 3365, - 3366, - 3367, - 3379, - 3398, - 3420, - 3431, - 3443, - 3459, - 3485, - 3512, - 3523, - 3535, - 3551, - 3571, - 3582, - 3594, - 3612, - 3623, - 3635, - 3663, - 3674, - 3675, - 3676, - 3677, - 3678, - 3679, + 2307, + 2308, + 2312, + 2324, + 2336, + 2348, + 2367, + 2382, + 2394, + 2414, + 2425, + 2426, + 2427, + 2439, + 2457, + 2469, + 2481, + 2502, + 2518, + 2519, + 2520, + 2532, + 2550, + 2561, + 2573, + 2589, + 2599, + 2603, + 2615, + 2627, + 2639, + 2652, + 2662, + 2670, + 2683, + 2693, + 2697, + 2712, + 2727, + 2728, + 2729, + 2741, + 2753, + 2761, + 2765, + 2777, + 2789, + 2801, + 2813, + 2821, + 2825, + 2852, + 2853, + 2854, + 2878, + 2887, + 2895, + 2913, + 2928, + 2929, + 2930, + 2942, + 2950, + 2952, + 2963, + 2974, + 2986, + 2999, + 3009, + 3017, + 3027, + 3036, + 3044, + 3059, + 3070, + 3082, + 3102, + 3113, + 3114, + 3115, + 3127, + 3143, + 3163, + 3174, + 3186, + 3199, + 3208, + 3216, + 3231, + 3242, + 3254, + 3274, + 3285, + 3286, + 3287, + 3299, + 3329, + 3340, + 3352, + 3360, + 3371, + 3372, + 3373, + 3385, + 3404, + 3426, + 3437, + 3449, + 3465, + 3491, + 3518, + 3529, + 3541, + 3557, + 3577, + 3588, + 3600, + 3618, + 3629, + 3641, + 3669, 3680, 3681, 3682, - 3694, - 3707, - 3717, - 3725, - 3736, - 3749, - 3757, - 3767, - 3776, - 3784, - 3799, - 3810, - 3822, - 3840, - 3851, - 3863, - 3887, - 3909, - 3919, - 3927, - 3937, - 3946, - 3954, - 3968, - 3978, - 3986, - 3996, - 4005, - 4013, - 4030, - 4042, - 4043, - 4044, - 4056, - 4068, - 4076, - 4080, + 3683, + 3684, + 3685, + 3686, + 3687, + 3688, + 3700, + 3713, + 3723, + 3731, + 3742, + 3755, + 3763, + 3773, + 3782, + 3790, + 3805, + 3816, + 3828, + 3846, + 3857, + 3869, + 3893, + 3915, + 3925, + 3933, + 3943, + 3952, + 3960, + 3974, + 3984, + 3992, + 4002, + 4011, + 4019, + 4036, + 4048, + 4049, + 4050, + 4062, + 4074, 4082, - 4092, - 4102, - 4106, - 4113, - 4123, - 4131, - 4141, - 4150, - 4158, - 4173, - 4184, - 4196, - 4216, - 4227, - 4228, - 4229, - 4241, - 4254, - 4263, - 4271, - 4286, - 4296, - 4297, - 4298, + 4086, + 4088, + 4098, + 4108, + 4112, + 4119, + 4129, + 4137, + 4147, + 4156, + 4164, + 4179, + 4190, + 4202, + 4222, + 4233, + 4234, + 4235, + 4247, + 4260, + 4269, + 4277, + 4292, 4302, - 4314, - 4325, - 4337, - 4357, - 4369, - 4370, - 4371, - 4383, - 4396, - 4406, - 4414, - 4424, - 4433, - 4441, - 4458, - 4470, - 4471, - 4472, - 4484, - 4492, - 4493, - 4505, - 4517, - 4529, - 4549, - 4561, - 4562, - 4563, - 4575, - 4591, - 4601, - 4605, - 4615, - 4625, - 4629, - 4641, - 4652, - 4664, - 4682, - 4693, - 4705, - 4723, - 4734, - 4746, - 4767, - 4783, - 4784, - 4785, - 4797, - 4815, - 4826, - 4838, - 4856, - 4867, - 4879, - 4897, - 4909, - 4921, - 4951, - 4963, - 4964, - 4965, - 4966, - 4967, - 4968, + 4303, + 4304, + 4308, + 4320, + 4331, + 4343, + 4363, + 4375, + 4376, + 4377, + 4389, + 4402, + 4412, + 4420, + 4430, + 4439, + 4447, + 4464, + 4476, + 4477, + 4478, + 4490, + 4498, + 4499, + 4511, + 4523, + 4535, + 4555, + 4567, + 4568, + 4569, + 4581, + 4597, + 4607, + 4611, + 4621, + 4631, + 4635, + 4647, + 4658, + 4670, + 4688, + 4699, + 4711, + 4729, + 4740, + 4752, + 4773, + 4789, + 4790, + 4791, + 4803, + 4821, + 4832, + 4844, + 4862, + 4873, + 4885, + 4903, + 4915, + 4927, + 4957, 4969, 4970, 4971, 4972, 4973, - 4985, - 4993, - 5022, - 5023, - 5024, - 5025, - 5026, - 5027, + 4974, + 4975, + 4976, + 4977, + 4978, + 4979, + 4991, + 4999, 5028, 5029, 5030, - 5055, - 5081, - 5124, - 5125, - 5126, - 5127, - 5128, - 5129, + 5031, + 5032, + 5033, + 5034, + 5035, + 5036, + 5061, + 5087, 5130, 5131, 5132, - 5161, - 5189, - 5214, - 5232, - 5250, - 5271, - 5291, - 5317, - 5342, - 5360, - 5396, - 5397, - 5398, - 5399, - 5400, - 5401, + 5133, + 5134, + 5135, + 5136, + 5137, + 5138, + 5167, + 5195, + 5220, + 5238, + 5256, + 5277, + 5297, + 5323, + 5348, + 5366, 5402, 5403, 5404, - 5429, - 5447, - 5465, - 5493, - 5520, - 5538, - 5556, - 5582, - 5607, - 5625, - 5652, - 5653, - 5654, - 5667, - 5687, - 5707, - 5737, - 5749, - 5750, - 5751, - 5752, - 5753, - 5754, + 5405, + 5406, + 5407, + 5408, + 5409, + 5410, + 5435, + 5453, + 5471, + 5499, + 5526, + 5544, + 5562, + 5588, + 5613, + 5631, + 5658, + 5659, + 5660, + 5673, + 5693, + 5713, + 5743, 5755, 5756, 5757, - 5769, - 5803, - 5804, - 5805, - 5806, - 5807, - 5808, + 5758, + 5759, + 5760, + 5761, + 5762, + 5763, + 5775, 5809, 5810, 5811, - 5854, - 5855, - 5856, - 5857, - 5858, - 5859, + 5812, + 5813, + 5814, + 5815, + 5816, + 5817, 5860, 5861, - 5862 + 5862, + 5863, + 5864, + 5865, + 5866, + 5867, + 5868 ], "types": { "ActiveConnection": { @@ -676,7 +676,7 @@ export default { 80 ], "query_start": [ - 4492 + 4498 ], "state": [ 80 @@ -705,7 +705,7 @@ export default { 80 ], "query_start": [ - 4492 + 4498 ], "state": [ 80 @@ -744,15 +744,24 @@ export default { "description": [ 80 ], + "event_id": [ + 4999 + ], "id": [ - 4993 + 4999 ], "image_url": [ 80 ], + "league_season_id": [ + 4999 + ], "name": [ 80 ], + "season_id": [ + 4999 + ], "silhouette": [ 40 ], @@ -762,6 +771,9 @@ export default { "tier": [ 80 ], + "tournament_id": [ + 4999 + ], "updated_at": [ 80 ], @@ -771,7 +783,7 @@ export default { }, "AwardRecipient": { "award_id": [ - 4993 + 4999 ], "awarded_by_steam_id": [ 80 @@ -780,7 +792,7 @@ export default { 80 ], "id": [ - 4993 + 4999 ], "note": [ 80 @@ -795,13 +807,13 @@ export default { 80 ], "team_id": [ - 4993 + 4999 ], "tournament_id": [ - 4993 + 4999 ], "tournament_team_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -879,7 +891,7 @@ export default { 40 ], "payload": [ - 1817 + 1823 ], "start_ms": [ 40 @@ -913,7 +925,7 @@ export default { 80 ], "match_map_id": [ - 4993 + 4999 ], "output": [ 8 @@ -973,13 +985,13 @@ export default { }, "CpuStat": { "time": [ - 4492 + 4498 ], "total": [ - 252 + 258 ], "used": [ - 252 + 258 ], "window": [ 31 @@ -990,7 +1002,7 @@ export default { }, "CreateClipRenderOutput": { "job_id": [ - 4993 + 4999 ], "success": [ 5 @@ -1001,7 +1013,7 @@ export default { }, "CreateDraftGameOutput": { "draftGameId": [ - 4993 + 4999 ], "__typename": [ 80 @@ -1009,7 +1021,7 @@ export default { }, "CreateScheduledMatchOutput": { "matchId": [ - 4993 + 4999 ], "__typename": [ 80 @@ -1165,7 +1177,7 @@ export default { 22 ], "time": [ - 4492 + 4498 ], "__typename": [ 80 @@ -1191,7 +1203,7 @@ export default { 80 ], "id": [ - 4993 + 4999 ], "mode": [ 80 @@ -1259,7 +1271,7 @@ export default { 80 ], "size": [ - 252 + 258 ], "__typename": [ 80 @@ -1270,7 +1282,7 @@ export default { 5 ], "modified": [ - 4492 + 4498 ], "name": [ 80 @@ -1279,7 +1291,7 @@ export default { 80 ], "size": [ - 252 + 258 ], "type": [ 80 @@ -1374,7 +1386,7 @@ export default { 34 ], "time": [ - 4492 + 4498 ], "__typename": [ 80 @@ -1616,7 +1628,7 @@ export default { 80 ], "player": [ - 3904 + 3910 ], "profile_url": [ 80 @@ -1633,13 +1645,13 @@ export default { }, "MemoryStat": { "time": [ - 4492 + 4498 ], "total": [ - 252 + 258 ], "used": [ - 252 + 258 ], "__typename": [ 80 @@ -1650,7 +1662,7 @@ export default { 51 ], "time": [ - 4492 + 4498 ], "__typename": [ 80 @@ -1670,7 +1682,7 @@ export default { 80 ], "id": [ - 4993 + 4999 ], "published_at": [ 80 @@ -1691,7 +1703,7 @@ export default { 80 ], "view_count": [ - 252 + 258 ], "__typename": [ 80 @@ -1702,10 +1714,10 @@ export default { 80 ], "rx": [ - 252 + 258 ], "tx": [ - 252 + 258 ], "__typename": [ 80 @@ -1831,7 +1843,7 @@ export default { }, "PreviewTournamentMatchResetOutput": { "impacts": [ - 93 + 99 ], "__typename": [ 80 @@ -2428,16 +2440,16 @@ export default { 40 ], "last_analyze": [ - 4492 + 4498 ], "last_autoanalyze": [ - 4492 + 4498 ], "last_autovacuum": [ - 4492 + 4498 ], "last_vacuum": [ - 4492 + 4498 ], "n_dead_tup": [ 40 @@ -2481,10 +2493,151 @@ export default { 80 ] }, + "TelemetryActivityPoint": { + "day": [ + 80 + ], + "installs": [ + 40 + ], + "matches": [ + 40 + ], + "__typename": [ + 80 + ] + }, + "TelemetryFeatureAdoption": { + "enabled": [ + 40 + ], + "installsUsing": [ + 40 + ], + "key": [ + 80 + ], + "reporting": [ + 40 + ], + "total": [ + 40 + ], + "__typename": [ + 80 + ] + }, + "TelemetryFleetTotals": { + "dedicatedServers": [ + 40 + ], + "gameServerNodes": [ + 40 + ], + "mapsPlayed": [ + 40 + ], + "matches": [ + 40 + ], + "matchesMonth": [ + 40 + ], + "matchesWeek": [ + 40 + ], + "matchesYear": [ + 40 + ], + "playersActive30d": [ + 40 + ], + "playersRegistered": [ + 40 + ], + "publicServers": [ + 40 + ], + "serverCapacity": [ + 40 + ], + "servers": [ + 40 + ], + "teams": [ + 40 + ], + "__typename": [ + 80 + ] + }, + "TelemetryGrowthPoint": { + "installs": [ + 40 + ], + "month": [ + 80 + ], + "__typename": [ + 80 + ] + }, + "TelemetryInstallCounts": { + "active24h": [ + 40 + ], + "active30d": [ + 40 + ], + "active7d": [ + 40 + ], + "new30d": [ + 40 + ], + "retained180d": [ + 40 + ], + "total": [ + 40 + ], + "__typename": [ + 80 + ] + }, "TelemetryStats": { + "activity": [ + 88 + ], + "features": [ + 89 + ], + "growth": [ + 91 + ], + "installs": [ + 92 + ], "online": [ 40 ], + "totals": [ + 90 + ], + "versions": [ + 94 + ], + "__typename": [ + 80 + ] + }, + "TelemetryVersionSpread": { + "installs": [ + 40 + ], + "version": [ + 80 + ], "__typename": [ 80 ] @@ -2511,7 +2664,7 @@ export default { 80 ], "next_start": [ - 4492 + 4498 ], "__typename": [ 80 @@ -2525,7 +2678,7 @@ export default { 37 ], "jobs": [ - 90 + 96 ], "__typename": [ 80 @@ -2533,13 +2686,13 @@ export default { }, "TournamentAward": { "award_id": [ - 4993 + 4999 ], "custom_name": [ 80 ], "id": [ - 4993 + 4999 ], "image_url": [ 80 @@ -2551,7 +2704,7 @@ export default { 40 ], "tournament_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -2559,7 +2712,7 @@ export default { }, "TournamentMatchResetImpact": { "bracket_id": [ - 4993 + 4999 ], "depth": [ 40 @@ -2568,7 +2721,7 @@ export default { 5 ], "match_id": [ - 4993 + 4999 ], "match_number": [ 40 @@ -2611,10 +2764,10 @@ export default { }, "_map_pool": { "map_id": [ - 4993 + 4999 ], "map_pool_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -2622,10 +2775,10 @@ export default { }, "_map_pool_aggregate": { "aggregate": [ - 97 + 103 ], "nodes": [ - 95 + 101 ], "__typename": [ 80 @@ -2636,7 +2789,7 @@ export default { 40, { "columns": [ - 107, + 113, "[_map_pool_select_column!]" ], "distinct": [ @@ -2645,10 +2798,10 @@ export default { } ], "max": [ - 101 + 107 ], "min": [ - 102 + 108 ], "__typename": [ 80 @@ -2656,19 +2809,19 @@ export default { }, "_map_pool_bool_exp": { "_and": [ - 98 + 104 ], "_not": [ - 98 + 104 ], "_or": [ - 98 + 104 ], "map_id": [ - 4995 + 5001 ], "map_pool_id": [ - 4995 + 5001 ], "__typename": [ 80 @@ -2677,10 +2830,10 @@ export default { "_map_pool_constraint": {}, "_map_pool_insert_input": { "map_id": [ - 4993 + 4999 ], "map_pool_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -2688,10 +2841,10 @@ export default { }, "_map_pool_max_fields": { "map_id": [ - 4993 + 4999 ], "map_pool_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -2699,10 +2852,10 @@ export default { }, "_map_pool_min_fields": { "map_id": [ - 4993 + 4999 ], "map_pool_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -2713,7 +2866,7 @@ export default { 40 ], "returning": [ - 95 + 101 ], "__typename": [ 80 @@ -2721,13 +2874,13 @@ export default { }, "_map_pool_on_conflict": { "constraint": [ - 99 + 105 ], "update_columns": [ - 111 + 117 ], "where": [ - 98 + 104 ], "__typename": [ 80 @@ -2735,10 +2888,10 @@ export default { }, "_map_pool_order_by": { "map_id": [ - 2946 + 2952 ], "map_pool_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -2746,10 +2899,10 @@ export default { }, "_map_pool_pk_columns_input": { "map_id": [ - 4993 + 4999 ], "map_pool_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -2758,10 +2911,10 @@ export default { "_map_pool_select_column": {}, "_map_pool_set_input": { "map_id": [ - 4993 + 4999 ], "map_pool_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -2769,10 +2922,10 @@ export default { }, "_map_pool_stream_cursor_input": { "initial_value": [ - 110 + 116 ], "ordering": [ - 308 + 314 ], "__typename": [ 80 @@ -2780,10 +2933,10 @@ export default { }, "_map_pool_stream_cursor_value_input": { "map_id": [ - 4993 + 4999 ], "map_pool_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -2792,10 +2945,10 @@ export default { "_map_pool_update_column": {}, "_map_pool_updates": { "_set": [ - 108 + 114 ], "where": [ - 98 + 104 ], "__typename": [ 80 @@ -2804,13 +2957,13 @@ export default { "_uuid": {}, "abandoned_matches": { "abandoned_at": [ - 4493 + 4499 ], "id": [ - 4993 + 4999 ], "steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -2818,10 +2971,10 @@ export default { }, "abandoned_matches_aggregate": { "aggregate": [ - 118 + 124 ], "nodes": [ - 114 + 120 ], "__typename": [ 80 @@ -2829,7 +2982,7 @@ export default { }, "abandoned_matches_aggregate_bool_exp": { "count": [ - 117 + 123 ], "__typename": [ 80 @@ -2837,13 +2990,13 @@ export default { }, "abandoned_matches_aggregate_bool_exp_count": { "arguments": [ - 135 + 141 ], "distinct": [ 5 ], "filter": [ - 123 + 129 ], "predicate": [ 41 @@ -2854,13 +3007,13 @@ export default { }, "abandoned_matches_aggregate_fields": { "avg": [ - 121 + 127 ], "count": [ 40, { "columns": [ - 135, + 141, "[abandoned_matches_select_column!]" ], "distinct": [ @@ -2869,31 +3022,31 @@ export default { } ], "max": [ - 127 + 133 ], "min": [ - 129 + 135 ], "stddev": [ - 137 + 143 ], "stddev_pop": [ - 139 + 145 ], "stddev_samp": [ - 141 + 147 ], "sum": [ - 145 + 151 ], "var_pop": [ - 149 + 155 ], "var_samp": [ - 151 + 157 ], "variance": [ - 153 + 159 ], "__typename": [ 80 @@ -2901,37 +3054,37 @@ export default { }, "abandoned_matches_aggregate_order_by": { "avg": [ - 122 + 128 ], "count": [ - 2946 + 2952 ], "max": [ - 128 + 134 ], "min": [ - 130 + 136 ], "stddev": [ - 138 + 144 ], "stddev_pop": [ - 140 + 146 ], "stddev_samp": [ - 142 + 148 ], "sum": [ - 146 + 152 ], "var_pop": [ - 150 + 156 ], "var_samp": [ - 152 + 158 ], "variance": [ - 154 + 160 ], "__typename": [ 80 @@ -2939,10 +3092,10 @@ export default { }, "abandoned_matches_arr_rel_insert_input": { "data": [ - 126 + 132 ], "on_conflict": [ - 132 + 138 ], "__typename": [ 80 @@ -2958,7 +3111,7 @@ export default { }, "abandoned_matches_avg_order_by": { "steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -2966,22 +3119,22 @@ export default { }, "abandoned_matches_bool_exp": { "_and": [ - 123 + 129 ], "_not": [ - 123 + 129 ], "_or": [ - 123 + 129 ], "abandoned_at": [ - 4494 + 4500 ], "id": [ - 4995 + 5001 ], "steam_id": [ - 254 + 260 ], "__typename": [ 80 @@ -2990,7 +3143,7 @@ export default { "abandoned_matches_constraint": {}, "abandoned_matches_inc_input": { "steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -2998,13 +3151,13 @@ export default { }, "abandoned_matches_insert_input": { "abandoned_at": [ - 4493 + 4499 ], "id": [ - 4993 + 4999 ], "steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -3012,13 +3165,13 @@ export default { }, "abandoned_matches_max_fields": { "abandoned_at": [ - 4493 + 4499 ], "id": [ - 4993 + 4999 ], "steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -3026,13 +3179,13 @@ export default { }, "abandoned_matches_max_order_by": { "abandoned_at": [ - 2946 + 2952 ], "id": [ - 2946 + 2952 ], "steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -3040,13 +3193,13 @@ export default { }, "abandoned_matches_min_fields": { "abandoned_at": [ - 4493 + 4499 ], "id": [ - 4993 + 4999 ], "steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -3054,13 +3207,13 @@ export default { }, "abandoned_matches_min_order_by": { "abandoned_at": [ - 2946 + 2952 ], "id": [ - 2946 + 2952 ], "steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -3071,7 +3224,7 @@ export default { 40 ], "returning": [ - 114 + 120 ], "__typename": [ 80 @@ -3079,13 +3232,13 @@ export default { }, "abandoned_matches_on_conflict": { "constraint": [ - 124 + 130 ], "update_columns": [ - 147 + 153 ], "where": [ - 123 + 129 ], "__typename": [ 80 @@ -3093,13 +3246,13 @@ export default { }, "abandoned_matches_order_by": { "abandoned_at": [ - 2946 + 2952 ], "id": [ - 2946 + 2952 ], "steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -3107,7 +3260,7 @@ export default { }, "abandoned_matches_pk_columns_input": { "id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -3116,13 +3269,13 @@ export default { "abandoned_matches_select_column": {}, "abandoned_matches_set_input": { "abandoned_at": [ - 4493 + 4499 ], "id": [ - 4993 + 4999 ], "steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -3138,7 +3291,7 @@ export default { }, "abandoned_matches_stddev_order_by": { "steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -3154,7 +3307,7 @@ export default { }, "abandoned_matches_stddev_pop_order_by": { "steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -3170,7 +3323,7 @@ export default { }, "abandoned_matches_stddev_samp_order_by": { "steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -3178,10 +3331,10 @@ export default { }, "abandoned_matches_stream_cursor_input": { "initial_value": [ - 144 + 150 ], "ordering": [ - 308 + 314 ], "__typename": [ 80 @@ -3189,13 +3342,13 @@ export default { }, "abandoned_matches_stream_cursor_value_input": { "abandoned_at": [ - 4493 + 4499 ], "id": [ - 4993 + 4999 ], "steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -3203,7 +3356,7 @@ export default { }, "abandoned_matches_sum_fields": { "steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -3211,7 +3364,7 @@ export default { }, "abandoned_matches_sum_order_by": { "steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -3220,13 +3373,13 @@ export default { "abandoned_matches_update_column": {}, "abandoned_matches_updates": { "_inc": [ - 125 + 131 ], "_set": [ - 136 + 142 ], "where": [ - 123 + 129 ], "__typename": [ 80 @@ -3242,7 +3395,7 @@ export default { }, "abandoned_matches_var_pop_order_by": { "steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -3258,7 +3411,7 @@ export default { }, "abandoned_matches_var_samp_order_by": { "steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -3274,7 +3427,7 @@ export default { }, "abandoned_matches_variance_order_by": { "steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -3282,19 +3435,19 @@ export default { }, "api_keys": { "created_at": [ - 4493 + 4499 ], "id": [ - 4993 + 4999 ], "label": [ 80 ], "last_used_at": [ - 4493 + 4499 ], "steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -3302,10 +3455,10 @@ export default { }, "api_keys_aggregate": { "aggregate": [ - 157 + 163 ], "nodes": [ - 155 + 161 ], "__typename": [ 80 @@ -3313,13 +3466,13 @@ export default { }, "api_keys_aggregate_fields": { "avg": [ - 158 + 164 ], "count": [ 40, { "columns": [ - 169, + 175, "[api_keys_select_column!]" ], "distinct": [ @@ -3328,31 +3481,31 @@ export default { } ], "max": [ - 163 + 169 ], "min": [ - 164 + 170 ], "stddev": [ - 171 + 177 ], "stddev_pop": [ - 172 + 178 ], "stddev_samp": [ - 173 + 179 ], "sum": [ - 176 + 182 ], "var_pop": [ - 179 + 185 ], "var_samp": [ - 180 + 186 ], "variance": [ - 181 + 187 ], "__typename": [ 80 @@ -3368,28 +3521,28 @@ export default { }, "api_keys_bool_exp": { "_and": [ - 159 + 165 ], "_not": [ - 159 + 165 ], "_or": [ - 159 + 165 ], "created_at": [ - 4494 + 4500 ], "id": [ - 4995 + 5001 ], "label": [ 82 ], "last_used_at": [ - 4494 + 4500 ], "steam_id": [ - 254 + 260 ], "__typename": [ 80 @@ -3398,7 +3551,7 @@ export default { "api_keys_constraint": {}, "api_keys_inc_input": { "steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -3406,19 +3559,19 @@ export default { }, "api_keys_insert_input": { "created_at": [ - 4493 + 4499 ], "id": [ - 4993 + 4999 ], "label": [ 80 ], "last_used_at": [ - 4493 + 4499 ], "steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -3426,19 +3579,19 @@ export default { }, "api_keys_max_fields": { "created_at": [ - 4493 + 4499 ], "id": [ - 4993 + 4999 ], "label": [ 80 ], "last_used_at": [ - 4493 + 4499 ], "steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -3446,19 +3599,19 @@ export default { }, "api_keys_min_fields": { "created_at": [ - 4493 + 4499 ], "id": [ - 4993 + 4999 ], "label": [ 80 ], "last_used_at": [ - 4493 + 4499 ], "steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -3469,7 +3622,7 @@ export default { 40 ], "returning": [ - 155 + 161 ], "__typename": [ 80 @@ -3477,13 +3630,13 @@ export default { }, "api_keys_on_conflict": { "constraint": [ - 160 + 166 ], "update_columns": [ - 177 + 183 ], "where": [ - 159 + 165 ], "__typename": [ 80 @@ -3491,19 +3644,19 @@ export default { }, "api_keys_order_by": { "created_at": [ - 2946 + 2952 ], "id": [ - 2946 + 2952 ], "label": [ - 2946 + 2952 ], "last_used_at": [ - 2946 + 2952 ], "steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -3511,7 +3664,7 @@ export default { }, "api_keys_pk_columns_input": { "id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -3520,19 +3673,19 @@ export default { "api_keys_select_column": {}, "api_keys_set_input": { "created_at": [ - 4493 + 4499 ], "id": [ - 4993 + 4999 ], "label": [ 80 ], "last_used_at": [ - 4493 + 4499 ], "steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -3564,10 +3717,10 @@ export default { }, "api_keys_stream_cursor_input": { "initial_value": [ - 175 + 181 ], "ordering": [ - 308 + 314 ], "__typename": [ 80 @@ -3575,19 +3728,19 @@ export default { }, "api_keys_stream_cursor_value_input": { "created_at": [ - 4493 + 4499 ], "id": [ - 4993 + 4999 ], "label": [ 80 ], "last_used_at": [ - 4493 + 4499 ], "steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -3595,7 +3748,7 @@ export default { }, "api_keys_sum_fields": { "steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -3604,13 +3757,13 @@ export default { "api_keys_update_column": {}, "api_keys_updates": { "_inc": [ - 161 + 167 ], "_set": [ - 170 + 176 ], "where": [ - 159 + 165 ], "__typename": [ 80 @@ -3642,7 +3795,7 @@ export default { }, "approve_league_season_movements_args": { "_league_season_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -3650,22 +3803,34 @@ export default { }, "award_recipients": { "award": [ - 224 + 230 ], "award_id": [ - 4993 + 4999 ], "awarded_by": [ - 3904 + 3910 ], "awarded_by_steam_id": [ - 252 + 258 ], "created_at": [ - 4493 + 4499 + ], + "event": [ + 1642 + ], + "event_id": [ + 4999 ], "id": [ - 4993 + 4999 + ], + "league_season": [ + 2026 + ], + "league_season_id": [ + 4999 ], "note": [ 80 @@ -3677,34 +3842,40 @@ export default { 80 ], "player": [ - 3904 + 3910 ], "player_steam_id": [ - 252 + 258 + ], + "season": [ + 3969 + ], + "season_id": [ + 4999 ], "source": [ - 509 + 515 ], "team": [ - 4446 + 4452 ], "team_id": [ - 4993 + 4999 ], "tournament": [ - 4929 + 4935 ], "tournament_award": [ - 4495 + 4501 ], "tournament_id": [ - 4993 + 4999 ], "tournament_team": [ - 4887 + 4893 ], "tournament_team_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -3712,10 +3883,10 @@ export default { }, "award_recipients_aggregate": { "aggregate": [ - 187 + 193 ], "nodes": [ - 183 + 189 ], "__typename": [ 80 @@ -3723,7 +3894,7 @@ export default { }, "award_recipients_aggregate_bool_exp": { "count": [ - 186 + 192 ], "__typename": [ 80 @@ -3731,13 +3902,13 @@ export default { }, "award_recipients_aggregate_bool_exp_count": { "arguments": [ - 204 + 210 ], "distinct": [ 5 ], "filter": [ - 192 + 198 ], "predicate": [ 41 @@ -3748,13 +3919,13 @@ export default { }, "award_recipients_aggregate_fields": { "avg": [ - 190 + 196 ], "count": [ 40, { "columns": [ - 204, + 210, "[award_recipients_select_column!]" ], "distinct": [ @@ -3763,31 +3934,31 @@ export default { } ], "max": [ - 196 + 202 ], "min": [ - 198 + 204 ], "stddev": [ - 206 + 212 ], "stddev_pop": [ - 208 + 214 ], "stddev_samp": [ - 210 + 216 ], "sum": [ - 214 + 220 ], "var_pop": [ - 218 + 224 ], "var_samp": [ - 220 + 226 ], "variance": [ - 222 + 228 ], "__typename": [ 80 @@ -3795,37 +3966,37 @@ export default { }, "award_recipients_aggregate_order_by": { "avg": [ - 191 + 197 ], "count": [ - 2946 + 2952 ], "max": [ - 197 + 203 ], "min": [ - 199 + 205 ], "stddev": [ - 207 + 213 ], "stddev_pop": [ - 209 + 215 ], "stddev_samp": [ - 211 + 217 ], "sum": [ - 215 + 221 ], "var_pop": [ - 219 + 225 ], "var_samp": [ - 221 + 227 ], "variance": [ - 223 + 229 ], "__typename": [ 80 @@ -3833,10 +4004,10 @@ export default { }, "award_recipients_arr_rel_insert_input": { "data": [ - 195 + 201 ], "on_conflict": [ - 201 + 207 ], "__typename": [ 80 @@ -3858,13 +4029,13 @@ export default { }, "award_recipients_avg_order_by": { "awarded_by_steam_id": [ - 2946 + 2952 ], "placement": [ - 2946 + 2952 ], "player_steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -3872,31 +4043,43 @@ export default { }, "award_recipients_bool_exp": { "_and": [ - 192 + 198 ], "_not": [ - 192 + 198 ], "_or": [ - 192 + 198 ], "award": [ - 228 + 234 ], "award_id": [ - 4995 + 5001 ], "awarded_by": [ - 3908 + 3914 ], "awarded_by_steam_id": [ - 254 + 260 ], "created_at": [ - 4494 + 4500 + ], + "event": [ + 1646 + ], + "event_id": [ + 5001 ], "id": [ - 4995 + 5001 + ], + "league_season": [ + 2031 + ], + "league_season_id": [ + 5001 ], "note": [ 82 @@ -3908,34 +4091,40 @@ export default { 82 ], "player": [ - 3908 + 3914 ], "player_steam_id": [ - 254 + 260 + ], + "season": [ + 3973 + ], + "season_id": [ + 5001 ], "source": [ - 510 + 516 ], "team": [ - 4457 + 4463 ], "team_id": [ - 4995 + 5001 ], "tournament": [ - 4950 + 4956 ], "tournament_award": [ - 4504 + 4510 ], "tournament_id": [ - 4995 + 5001 ], "tournament_team": [ - 4896 + 4902 ], "tournament_team_id": [ - 4995 + 5001 ], "__typename": [ 80 @@ -3944,13 +4133,13 @@ export default { "award_recipients_constraint": {}, "award_recipients_inc_input": { "awarded_by_steam_id": [ - 252 + 258 ], "placement": [ 40 ], "player_steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -3958,22 +4147,34 @@ export default { }, "award_recipients_insert_input": { "award": [ - 235 + 241 ], "award_id": [ - 4993 + 4999 ], "awarded_by": [ - 3915 + 3921 ], "awarded_by_steam_id": [ - 252 + 258 ], "created_at": [ - 4493 + 4499 + ], + "event": [ + 1653 + ], + "event_id": [ + 4999 ], "id": [ - 4993 + 4999 + ], + "league_season": [ + 2041 + ], + "league_season_id": [ + 4999 ], "note": [ 80 @@ -3982,34 +4183,40 @@ export default { 40 ], "player": [ - 3915 + 3921 ], "player_steam_id": [ - 252 + 258 + ], + "season": [ + 3980 + ], + "season_id": [ + 4999 ], "source": [ - 509 + 515 ], "team": [ - 4466 + 4472 ], "team_id": [ - 4993 + 4999 ], "tournament": [ - 4959 + 4965 ], "tournament_award": [ - 4513 + 4519 ], "tournament_id": [ - 4993 + 4999 ], "tournament_team": [ - 4905 + 4911 ], "tournament_team_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -4017,16 +4224,22 @@ export default { }, "award_recipients_max_fields": { "award_id": [ - 4993 + 4999 ], "awarded_by_steam_id": [ - 252 + 258 ], "created_at": [ - 4493 + 4499 + ], + "event_id": [ + 4999 ], "id": [ - 4993 + 4999 + ], + "league_season_id": [ + 4999 ], "note": [ 80 @@ -4038,16 +4251,19 @@ export default { 80 ], "player_steam_id": [ - 252 + 258 + ], + "season_id": [ + 4999 ], "team_id": [ - 4993 + 4999 ], "tournament_id": [ - 4993 + 4999 ], "tournament_team_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -4055,37 +4271,46 @@ export default { }, "award_recipients_max_order_by": { "award_id": [ - 2946 + 2952 ], "awarded_by_steam_id": [ - 2946 + 2952 ], "created_at": [ - 2946 + 2952 + ], + "event_id": [ + 2952 ], "id": [ - 2946 + 2952 + ], + "league_season_id": [ + 2952 ], "note": [ - 2946 + 2952 ], "placement": [ - 2946 + 2952 ], "placement_tier": [ - 2946 + 2952 ], "player_steam_id": [ - 2946 + 2952 + ], + "season_id": [ + 2952 ], "team_id": [ - 2946 + 2952 ], "tournament_id": [ - 2946 + 2952 ], "tournament_team_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -4093,16 +4318,22 @@ export default { }, "award_recipients_min_fields": { "award_id": [ - 4993 + 4999 ], "awarded_by_steam_id": [ - 252 + 258 ], "created_at": [ - 4493 + 4499 + ], + "event_id": [ + 4999 ], "id": [ - 4993 + 4999 + ], + "league_season_id": [ + 4999 ], "note": [ 80 @@ -4114,16 +4345,19 @@ export default { 80 ], "player_steam_id": [ - 252 + 258 + ], + "season_id": [ + 4999 ], "team_id": [ - 4993 + 4999 ], "tournament_id": [ - 4993 + 4999 ], "tournament_team_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -4131,37 +4365,46 @@ export default { }, "award_recipients_min_order_by": { "award_id": [ - 2946 + 2952 ], "awarded_by_steam_id": [ - 2946 + 2952 ], "created_at": [ - 2946 + 2952 + ], + "event_id": [ + 2952 ], "id": [ - 2946 + 2952 + ], + "league_season_id": [ + 2952 ], "note": [ - 2946 + 2952 ], "placement": [ - 2946 + 2952 ], "placement_tier": [ - 2946 + 2952 ], "player_steam_id": [ - 2946 + 2952 + ], + "season_id": [ + 2952 ], "team_id": [ - 2946 + 2952 ], "tournament_id": [ - 2946 + 2952 ], "tournament_team_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -4172,7 +4415,7 @@ export default { 40 ], "returning": [ - 183 + 189 ], "__typename": [ 80 @@ -4180,13 +4423,13 @@ export default { }, "award_recipients_on_conflict": { "constraint": [ - 193 + 199 ], "update_columns": [ - 216 + 222 ], "where": [ - 192 + 198 ], "__typename": [ 80 @@ -4194,61 +4437,79 @@ export default { }, "award_recipients_order_by": { "award": [ - 237 + 243 ], "award_id": [ - 2946 + 2952 ], "awarded_by": [ - 3917 + 3923 ], "awarded_by_steam_id": [ - 2946 + 2952 ], "created_at": [ - 2946 + 2952 + ], + "event": [ + 1655 + ], + "event_id": [ + 2952 ], "id": [ - 2946 + 2952 + ], + "league_season": [ + 2043 + ], + "league_season_id": [ + 2952 ], "note": [ - 2946 + 2952 ], "placement": [ - 2946 + 2952 ], "placement_tier": [ - 2946 + 2952 ], "player": [ - 3917 + 3923 ], "player_steam_id": [ - 2946 + 2952 + ], + "season": [ + 3982 + ], + "season_id": [ + 2952 ], "source": [ - 2946 + 2952 ], "team": [ - 4468 + 4474 ], "team_id": [ - 2946 + 2952 ], "tournament": [ - 4961 + 4967 ], "tournament_award": [ - 4515 + 4521 ], "tournament_id": [ - 2946 + 2952 ], "tournament_team": [ - 4907 + 4913 ], "tournament_team_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -4256,7 +4517,7 @@ export default { }, "award_recipients_pk_columns_input": { "id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -4265,16 +4526,22 @@ export default { "award_recipients_select_column": {}, "award_recipients_set_input": { "award_id": [ - 4993 + 4999 ], "awarded_by_steam_id": [ - 252 + 258 ], "created_at": [ - 4493 + 4499 + ], + "event_id": [ + 4999 ], "id": [ - 4993 + 4999 + ], + "league_season_id": [ + 4999 ], "note": [ 80 @@ -4283,19 +4550,22 @@ export default { 40 ], "player_steam_id": [ - 252 + 258 + ], + "season_id": [ + 4999 ], "source": [ - 509 + 515 ], "team_id": [ - 4993 + 4999 ], "tournament_id": [ - 4993 + 4999 ], "tournament_team_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -4317,13 +4587,13 @@ export default { }, "award_recipients_stddev_order_by": { "awarded_by_steam_id": [ - 2946 + 2952 ], "placement": [ - 2946 + 2952 ], "player_steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -4345,13 +4615,13 @@ export default { }, "award_recipients_stddev_pop_order_by": { "awarded_by_steam_id": [ - 2946 + 2952 ], "placement": [ - 2946 + 2952 ], "player_steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -4373,13 +4643,13 @@ export default { }, "award_recipients_stddev_samp_order_by": { "awarded_by_steam_id": [ - 2946 + 2952 ], "placement": [ - 2946 + 2952 ], "player_steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -4387,10 +4657,10 @@ export default { }, "award_recipients_stream_cursor_input": { "initial_value": [ - 213 + 219 ], "ordering": [ - 308 + 314 ], "__typename": [ 80 @@ -4398,16 +4668,22 @@ export default { }, "award_recipients_stream_cursor_value_input": { "award_id": [ - 4993 + 4999 ], "awarded_by_steam_id": [ - 252 + 258 ], "created_at": [ - 4493 + 4499 + ], + "event_id": [ + 4999 ], "id": [ - 4993 + 4999 + ], + "league_season_id": [ + 4999 ], "note": [ 80 @@ -4419,19 +4695,22 @@ export default { 80 ], "player_steam_id": [ - 252 + 258 + ], + "season_id": [ + 4999 ], "source": [ - 509 + 515 ], "team_id": [ - 4993 + 4999 ], "tournament_id": [ - 4993 + 4999 ], "tournament_team_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -4439,13 +4718,13 @@ export default { }, "award_recipients_sum_fields": { "awarded_by_steam_id": [ - 252 + 258 ], "placement": [ 40 ], "player_steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -4453,13 +4732,13 @@ export default { }, "award_recipients_sum_order_by": { "awarded_by_steam_id": [ - 2946 + 2952 ], "placement": [ - 2946 + 2952 ], "player_steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -4468,13 +4747,13 @@ export default { "award_recipients_update_column": {}, "award_recipients_updates": { "_inc": [ - 194 + 200 ], "_set": [ - 205 + 211 ], "where": [ - 192 + 198 ], "__typename": [ 80 @@ -4496,13 +4775,13 @@ export default { }, "award_recipients_var_pop_order_by": { "awarded_by_steam_id": [ - 2946 + 2952 ], "placement": [ - 2946 + 2952 ], "player_steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -4524,13 +4803,13 @@ export default { }, "award_recipients_var_samp_order_by": { "awarded_by_steam_id": [ - 2946 + 2952 ], "placement": [ - 2946 + 2952 ], "player_steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -4552,13 +4831,13 @@ export default { }, "award_recipients_variance_order_by": { "awarded_by_steam_id": [ - 2946 + 2952 ], "placement": [ - 2946 + 2952 ], "player_steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -4569,31 +4848,43 @@ export default { 5 ], "created_at": [ - 4493 + 4499 ], "created_by": [ - 3904 + 3910 ], "created_by_steam_id": [ - 252 + 258 ], "description": [ 80 ], + "event": [ + 1642 + ], + "event_id": [ + 4999 + ], "id": [ - 4993 + 4999 ], "image_url": [ 80 ], + "league_season": [ + 2026 + ], + "league_season_id": [ + 4999 + ], "name": [ 80 ], "recipients": [ - 183, + 189, { "distinct_on": [ - 204, + 210, "[award_recipients_select_column!]" ], "limit": [ @@ -4603,19 +4894,19 @@ export default { 40 ], "order_by": [ - 202, + 208, "[award_recipients_order_by!]" ], "where": [ - 192 + 198 ] } ], "recipients_aggregate": [ - 184, + 190, { "distinct_on": [ - 204, + 210, "[award_recipients_select_column!]" ], "limit": [ @@ -4625,14 +4916,20 @@ export default { 40 ], "order_by": [ - 202, + 208, "[award_recipients_order_by!]" ], "where": [ - 192 + 198 ] } ], + "season": [ + 3969 + ], + "season_id": [ + 4999 + ], "silhouette": [ 40 ], @@ -4640,13 +4937,16 @@ export default { 80 ], "tier": [ - 529 + 535 + ], + "tournament": [ + 4935 ], "tournament_configs": [ - 4495, + 4501, { "distinct_on": [ - 4517, + 4523, "[tournament_awards_select_column!]" ], "limit": [ @@ -4656,19 +4956,19 @@ export default { 40 ], "order_by": [ - 4515, + 4521, "[tournament_awards_order_by!]" ], "where": [ - 4504 + 4510 ] } ], "tournament_configs_aggregate": [ - 4496, + 4502, { "distinct_on": [ - 4517, + 4523, "[tournament_awards_select_column!]" ], "limit": [ @@ -4678,16 +4978,19 @@ export default { 40 ], "order_by": [ - 4515, + 4521, "[tournament_awards_order_by!]" ], "where": [ - 4504 + 4510 ] } ], + "tournament_id": [ + 4999 + ], "updated_at": [ - 4493 + 4499 ], "__typename": [ 80 @@ -4695,10 +4998,10 @@ export default { }, "awards_aggregate": { "aggregate": [ - 226 + 232 ], "nodes": [ - 224 + 230 ], "__typename": [ 80 @@ -4706,13 +5009,13 @@ export default { }, "awards_aggregate_fields": { "avg": [ - 227 + 233 ], "count": [ 40, { "columns": [ - 239, + 245, "[awards_select_column!]" ], "distinct": [ @@ -4721,31 +5024,31 @@ export default { } ], "max": [ - 232 + 238 ], "min": [ - 233 + 239 ], "stddev": [ - 241 + 247 ], "stddev_pop": [ - 242 + 248 ], "stddev_samp": [ - 243 + 249 ], "sum": [ - 246 + 252 ], "var_pop": [ - 249 + 255 ], "var_samp": [ - 250 + 256 ], "variance": [ - 251 + 257 ], "__typename": [ 80 @@ -4764,43 +5067,61 @@ export default { }, "awards_bool_exp": { "_and": [ - 228 + 234 ], "_not": [ - 228 + 234 ], "_or": [ - 228 + 234 ], "allow_multiple": [ 6 ], "created_at": [ - 4494 + 4500 ], "created_by": [ - 3908 + 3914 ], "created_by_steam_id": [ - 254 + 260 ], "description": [ 82 ], + "event": [ + 1646 + ], + "event_id": [ + 5001 + ], "id": [ - 4995 + 5001 ], "image_url": [ 82 ], + "league_season": [ + 2031 + ], + "league_season_id": [ + 5001 + ], "name": [ 82 ], "recipients": [ - 192 + 198 ], "recipients_aggregate": [ - 185 + 191 + ], + "season": [ + 3973 + ], + "season_id": [ + 5001 ], "silhouette": [ 41 @@ -4809,16 +5130,22 @@ export default { 82 ], "tier": [ - 530 + 536 + ], + "tournament": [ + 4956 ], "tournament_configs": [ - 4504 + 4510 ], "tournament_configs_aggregate": [ - 4497 + 4503 + ], + "tournament_id": [ + 5001 ], "updated_at": [ - 4494 + 4500 ], "__typename": [ 80 @@ -4827,7 +5154,7 @@ export default { "awards_constraint": {}, "awards_inc_input": { "created_by_steam_id": [ - 252 + 258 ], "silhouette": [ 40 @@ -4841,28 +5168,46 @@ export default { 5 ], "created_at": [ - 4493 + 4499 ], "created_by": [ - 3915 + 3921 ], "created_by_steam_id": [ - 252 + 258 ], "description": [ 80 ], + "event": [ + 1653 + ], + "event_id": [ + 4999 + ], "id": [ - 4993 + 4999 ], "image_url": [ 80 ], + "league_season": [ + 2041 + ], + "league_season_id": [ + 4999 + ], "name": [ 80 ], "recipients": [ - 189 + 195 + ], + "season": [ + 3980 + ], + "season_id": [ + 4999 ], "silhouette": [ 40 @@ -4871,13 +5216,19 @@ export default { 80 ], "tier": [ - 529 + 535 + ], + "tournament": [ + 4965 ], "tournament_configs": [ - 4501 + 4507 + ], + "tournament_id": [ + 4999 ], "updated_at": [ - 4493 + 4499 ], "__typename": [ 80 @@ -4885,31 +5236,43 @@ export default { }, "awards_max_fields": { "created_at": [ - 4493 + 4499 ], "created_by_steam_id": [ - 252 + 258 ], "description": [ 80 ], + "event_id": [ + 4999 + ], "id": [ - 4993 + 4999 ], "image_url": [ 80 ], + "league_season_id": [ + 4999 + ], "name": [ 80 ], + "season_id": [ + 4999 + ], "silhouette": [ 40 ], "system_key": [ 80 ], + "tournament_id": [ + 4999 + ], "updated_at": [ - 4493 + 4499 ], "__typename": [ 80 @@ -4917,31 +5280,43 @@ export default { }, "awards_min_fields": { "created_at": [ - 4493 + 4499 ], "created_by_steam_id": [ - 252 + 258 ], "description": [ 80 ], + "event_id": [ + 4999 + ], "id": [ - 4993 + 4999 ], "image_url": [ 80 ], + "league_season_id": [ + 4999 + ], "name": [ 80 ], + "season_id": [ + 4999 + ], "silhouette": [ 40 ], "system_key": [ 80 ], + "tournament_id": [ + 4999 + ], "updated_at": [ - 4493 + 4499 ], "__typename": [ 80 @@ -4952,7 +5327,7 @@ export default { 40 ], "returning": [ - 224 + 230 ], "__typename": [ 80 @@ -4960,10 +5335,10 @@ export default { }, "awards_obj_rel_insert_input": { "data": [ - 231 + 237 ], "on_conflict": [ - 236 + 242 ], "__typename": [ 80 @@ -4971,13 +5346,13 @@ export default { }, "awards_on_conflict": { "constraint": [ - 229 + 235 ], "update_columns": [ - 247 + 253 ], "where": [ - 228 + 234 ], "__typename": [ 80 @@ -4985,46 +5360,70 @@ export default { }, "awards_order_by": { "allow_multiple": [ - 2946 + 2952 ], "created_at": [ - 2946 + 2952 ], "created_by": [ - 3917 + 3923 ], "created_by_steam_id": [ - 2946 + 2952 ], "description": [ - 2946 + 2952 + ], + "event": [ + 1655 + ], + "event_id": [ + 2952 ], "id": [ - 2946 + 2952 ], "image_url": [ - 2946 + 2952 + ], + "league_season": [ + 2043 + ], + "league_season_id": [ + 2952 ], "name": [ - 2946 + 2952 ], "recipients_aggregate": [ - 188 + 194 + ], + "season": [ + 3982 + ], + "season_id": [ + 2952 ], "silhouette": [ - 2946 + 2952 ], "system_key": [ - 2946 + 2952 ], "tier": [ - 2946 + 2952 + ], + "tournament": [ + 4967 ], "tournament_configs_aggregate": [ - 4500 + 4506 + ], + "tournament_id": [ + 2952 ], "updated_at": [ - 2946 + 2952 ], "__typename": [ 80 @@ -5032,7 +5431,7 @@ export default { }, "awards_pk_columns_input": { "id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -5044,23 +5443,32 @@ export default { 5 ], "created_at": [ - 4493 + 4499 ], "created_by_steam_id": [ - 252 + 258 ], "description": [ 80 ], + "event_id": [ + 4999 + ], "id": [ - 4993 + 4999 ], "image_url": [ 80 ], + "league_season_id": [ + 4999 + ], "name": [ 80 ], + "season_id": [ + 4999 + ], "silhouette": [ 40 ], @@ -5068,10 +5476,13 @@ export default { 80 ], "tier": [ - 529 + 535 + ], + "tournament_id": [ + 4999 ], "updated_at": [ - 4493 + 4499 ], "__typename": [ 80 @@ -5112,10 +5523,10 @@ export default { }, "awards_stream_cursor_input": { "initial_value": [ - 245 + 251 ], "ordering": [ - 308 + 314 ], "__typename": [ 80 @@ -5126,23 +5537,32 @@ export default { 5 ], "created_at": [ - 4493 + 4499 ], "created_by_steam_id": [ - 252 + 258 ], "description": [ 80 ], + "event_id": [ + 4999 + ], "id": [ - 4993 + 4999 ], "image_url": [ 80 ], + "league_season_id": [ + 4999 + ], "name": [ 80 ], + "season_id": [ + 4999 + ], "silhouette": [ 40 ], @@ -5150,10 +5570,13 @@ export default { 80 ], "tier": [ - 529 + 535 + ], + "tournament_id": [ + 4999 ], "updated_at": [ - 4493 + 4499 ], "__typename": [ 80 @@ -5161,7 +5584,7 @@ export default { }, "awards_sum_fields": { "created_by_steam_id": [ - 252 + 258 ], "silhouette": [ 40 @@ -5173,13 +5596,13 @@ export default { "awards_update_column": {}, "awards_updates": { "_inc": [ - 230 + 236 ], "_set": [ - 240 + 246 ], "where": [ - 228 + 234 ], "__typename": [ 80 @@ -5221,37 +5644,37 @@ export default { "bigint": {}, "bigint_array_comparison_exp": { "_contained_in": [ - 252 + 258 ], "_contains": [ - 252 + 258 ], "_eq": [ - 252 + 258 ], "_gt": [ - 252 + 258 ], "_gte": [ - 252 + 258 ], "_in": [ - 252 + 258 ], "_is_null": [ 5 ], "_lt": [ - 252 + 258 ], "_lte": [ - 252 + 258 ], "_neq": [ - 252 + 258 ], "_nin": [ - 252 + 258 ], "__typename": [ 80 @@ -5259,31 +5682,31 @@ export default { }, "bigint_comparison_exp": { "_eq": [ - 252 + 258 ], "_gt": [ - 252 + 258 ], "_gte": [ - 252 + 258 ], "_in": [ - 252 + 258 ], "_is_null": [ 5 ], "_lt": [ - 252 + 258 ], "_lte": [ - 252 + 258 ], "_neq": [ - 252 + 258 ], "_nin": [ - 252 + 258 ], "__typename": [ 80 @@ -5292,31 +5715,31 @@ export default { "bytea": {}, "bytea_comparison_exp": { "_eq": [ - 255 + 261 ], "_gt": [ - 255 + 261 ], "_gte": [ - 255 + 261 ], "_in": [ - 255 + 261 ], "_is_null": [ 5 ], "_lt": [ - 255 + 261 ], "_lte": [ - 255 + 261 ], "_neq": [ - 255 + 261 ], "_nin": [ - 255 + 261 ], "__typename": [ 80 @@ -5324,49 +5747,49 @@ export default { }, "clip_render_jobs": { "clip": [ - 2308 + 2314 ], "clip_id": [ - 4993 + 4999 ], "created_at": [ - 4493 + 4499 ], "error_message": [ 80 ], "game_server_node": [ - 1693 + 1699 ], "game_server_node_id": [ 80 ], "id": [ - 4993 + 4999 ], "k8s_job_name": [ 80 ], "last_status_at": [ - 4493 + 4499 ], "match_map": [ - 2599 + 2605 ], "match_map_demo": [ - 2483 + 2489 ], "match_map_demo_id": [ - 4993 + 4999 ], "match_map_id": [ - 4993 + 4999 ], "paused": [ 5 ], "progress": [ - 2944 + 2950 ], "session_token": [ 80 @@ -5375,7 +5798,7 @@ export default { 40 ], "spec": [ - 1817, + 1823, { "path": [ 80 @@ -5386,7 +5809,7 @@ export default { 80 ], "status_history": [ - 1817, + 1823, { "path": [ 80 @@ -5394,10 +5817,10 @@ export default { } ], "user": [ - 3904 + 3910 ], "user_steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -5405,10 +5828,10 @@ export default { }, "clip_render_jobs_aggregate": { "aggregate": [ - 263 + 269 ], "nodes": [ - 257 + 263 ], "__typename": [ 80 @@ -5416,13 +5839,13 @@ export default { }, "clip_render_jobs_aggregate_bool_exp": { "bool_and": [ - 260 + 266 ], "bool_or": [ - 261 + 267 ], "count": [ - 262 + 268 ], "__typename": [ 80 @@ -5430,13 +5853,13 @@ export default { }, "clip_render_jobs_aggregate_bool_exp_bool_and": { "arguments": [ - 286 + 292 ], "distinct": [ 5 ], "filter": [ - 269 + 275 ], "predicate": [ 6 @@ -5447,13 +5870,13 @@ export default { }, "clip_render_jobs_aggregate_bool_exp_bool_or": { "arguments": [ - 287 + 293 ], "distinct": [ 5 ], "filter": [ - 269 + 275 ], "predicate": [ 6 @@ -5464,13 +5887,13 @@ export default { }, "clip_render_jobs_aggregate_bool_exp_count": { "arguments": [ - 285 + 291 ], "distinct": [ 5 ], "filter": [ - 269 + 275 ], "predicate": [ 41 @@ -5481,13 +5904,13 @@ export default { }, "clip_render_jobs_aggregate_fields": { "avg": [ - 267 + 273 ], "count": [ 40, { "columns": [ - 285, + 291, "[clip_render_jobs_select_column!]" ], "distinct": [ @@ -5496,31 +5919,31 @@ export default { } ], "max": [ - 276 + 282 ], "min": [ - 278 + 284 ], "stddev": [ - 289 + 295 ], "stddev_pop": [ - 291 + 297 ], "stddev_samp": [ - 293 + 299 ], "sum": [ - 297 + 303 ], "var_pop": [ - 301 + 307 ], "var_samp": [ - 303 + 309 ], "variance": [ - 305 + 311 ], "__typename": [ 80 @@ -5528,37 +5951,37 @@ export default { }, "clip_render_jobs_aggregate_order_by": { "avg": [ - 268 + 274 ], "count": [ - 2946 + 2952 ], "max": [ - 277 + 283 ], "min": [ - 279 + 285 ], "stddev": [ - 290 + 296 ], "stddev_pop": [ - 292 + 298 ], "stddev_samp": [ - 294 + 300 ], "sum": [ - 298 + 304 ], "var_pop": [ - 302 + 308 ], "var_samp": [ - 304 + 310 ], "variance": [ - 306 + 312 ], "__typename": [ 80 @@ -5566,10 +5989,10 @@ export default { }, "clip_render_jobs_append_input": { "spec": [ - 1817 + 1823 ], "status_history": [ - 1817 + 1823 ], "__typename": [ 80 @@ -5577,10 +6000,10 @@ export default { }, "clip_render_jobs_arr_rel_insert_input": { "data": [ - 275 + 281 ], "on_conflict": [ - 281 + 287 ], "__typename": [ 80 @@ -5602,13 +6025,13 @@ export default { }, "clip_render_jobs_avg_order_by": { "progress": [ - 2946 + 2952 ], "sort_index": [ - 2946 + 2952 ], "user_steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -5616,58 +6039,58 @@ export default { }, "clip_render_jobs_bool_exp": { "_and": [ - 269 + 275 ], "_not": [ - 269 + 275 ], "_or": [ - 269 + 275 ], "clip": [ - 2317 + 2323 ], "clip_id": [ - 4995 + 5001 ], "created_at": [ - 4494 + 4500 ], "error_message": [ 82 ], "game_server_node": [ - 1705 + 1711 ], "game_server_node_id": [ 82 ], "id": [ - 4995 + 5001 ], "k8s_job_name": [ 82 ], "last_status_at": [ - 4494 + 4500 ], "match_map": [ - 2608 + 2614 ], "match_map_demo": [ - 2495 + 2501 ], "match_map_demo_id": [ - 4995 + 5001 ], "match_map_id": [ - 4995 + 5001 ], "paused": [ 6 ], "progress": [ - 2945 + 2951 ], "session_token": [ 82 @@ -5676,19 +6099,19 @@ export default { 41 ], "spec": [ - 1819 + 1825 ], "status": [ 82 ], "status_history": [ - 1819 + 1825 ], "user": [ - 3908 + 3914 ], "user_steam_id": [ - 254 + 260 ], "__typename": [ 80 @@ -5730,13 +6153,13 @@ export default { }, "clip_render_jobs_inc_input": { "progress": [ - 2944 + 2950 ], "sort_index": [ 40 ], "user_steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -5744,49 +6167,49 @@ export default { }, "clip_render_jobs_insert_input": { "clip": [ - 2326 + 2332 ], "clip_id": [ - 4993 + 4999 ], "created_at": [ - 4493 + 4499 ], "error_message": [ 80 ], "game_server_node": [ - 1717 + 1723 ], "game_server_node_id": [ 80 ], "id": [ - 4993 + 4999 ], "k8s_job_name": [ 80 ], "last_status_at": [ - 4493 + 4499 ], "match_map": [ - 2617 + 2623 ], "match_map_demo": [ - 2507 + 2513 ], "match_map_demo_id": [ - 4993 + 4999 ], "match_map_id": [ - 4993 + 4999 ], "paused": [ 5 ], "progress": [ - 2944 + 2950 ], "session_token": [ 80 @@ -5795,19 +6218,19 @@ export default { 40 ], "spec": [ - 1817 + 1823 ], "status": [ 80 ], "status_history": [ - 1817 + 1823 ], "user": [ - 3915 + 3921 ], "user_steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -5815,10 +6238,10 @@ export default { }, "clip_render_jobs_max_fields": { "clip_id": [ - 4993 + 4999 ], "created_at": [ - 4493 + 4499 ], "error_message": [ 80 @@ -5827,22 +6250,22 @@ export default { 80 ], "id": [ - 4993 + 4999 ], "k8s_job_name": [ 80 ], "last_status_at": [ - 4493 + 4499 ], "match_map_demo_id": [ - 4993 + 4999 ], "match_map_id": [ - 4993 + 4999 ], "progress": [ - 2944 + 2950 ], "session_token": [ 80 @@ -5854,7 +6277,7 @@ export default { 80 ], "user_steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -5862,46 +6285,46 @@ export default { }, "clip_render_jobs_max_order_by": { "clip_id": [ - 2946 + 2952 ], "created_at": [ - 2946 + 2952 ], "error_message": [ - 2946 + 2952 ], "game_server_node_id": [ - 2946 + 2952 ], "id": [ - 2946 + 2952 ], "k8s_job_name": [ - 2946 + 2952 ], "last_status_at": [ - 2946 + 2952 ], "match_map_demo_id": [ - 2946 + 2952 ], "match_map_id": [ - 2946 + 2952 ], "progress": [ - 2946 + 2952 ], "session_token": [ - 2946 + 2952 ], "sort_index": [ - 2946 + 2952 ], "status": [ - 2946 + 2952 ], "user_steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -5909,10 +6332,10 @@ export default { }, "clip_render_jobs_min_fields": { "clip_id": [ - 4993 + 4999 ], "created_at": [ - 4493 + 4499 ], "error_message": [ 80 @@ -5921,22 +6344,22 @@ export default { 80 ], "id": [ - 4993 + 4999 ], "k8s_job_name": [ 80 ], "last_status_at": [ - 4493 + 4499 ], "match_map_demo_id": [ - 4993 + 4999 ], "match_map_id": [ - 4993 + 4999 ], "progress": [ - 2944 + 2950 ], "session_token": [ 80 @@ -5948,7 +6371,7 @@ export default { 80 ], "user_steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -5956,46 +6379,46 @@ export default { }, "clip_render_jobs_min_order_by": { "clip_id": [ - 2946 + 2952 ], "created_at": [ - 2946 + 2952 ], "error_message": [ - 2946 + 2952 ], "game_server_node_id": [ - 2946 + 2952 ], "id": [ - 2946 + 2952 ], "k8s_job_name": [ - 2946 + 2952 ], "last_status_at": [ - 2946 + 2952 ], "match_map_demo_id": [ - 2946 + 2952 ], "match_map_id": [ - 2946 + 2952 ], "progress": [ - 2946 + 2952 ], "session_token": [ - 2946 + 2952 ], "sort_index": [ - 2946 + 2952 ], "status": [ - 2946 + 2952 ], "user_steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -6006,7 +6429,7 @@ export default { 40 ], "returning": [ - 257 + 263 ], "__typename": [ 80 @@ -6014,13 +6437,13 @@ export default { }, "clip_render_jobs_on_conflict": { "constraint": [ - 270 + 276 ], "update_columns": [ - 299 + 305 ], "where": [ - 269 + 275 ], "__typename": [ 80 @@ -6028,70 +6451,70 @@ export default { }, "clip_render_jobs_order_by": { "clip": [ - 2328 + 2334 ], "clip_id": [ - 2946 + 2952 ], "created_at": [ - 2946 + 2952 ], "error_message": [ - 2946 + 2952 ], "game_server_node": [ - 1719 + 1725 ], "game_server_node_id": [ - 2946 + 2952 ], "id": [ - 2946 + 2952 ], "k8s_job_name": [ - 2946 + 2952 ], "last_status_at": [ - 2946 + 2952 ], "match_map": [ - 2619 + 2625 ], "match_map_demo": [ - 2509 + 2515 ], "match_map_demo_id": [ - 2946 + 2952 ], "match_map_id": [ - 2946 + 2952 ], "paused": [ - 2946 + 2952 ], "progress": [ - 2946 + 2952 ], "session_token": [ - 2946 + 2952 ], "sort_index": [ - 2946 + 2952 ], "spec": [ - 2946 + 2952 ], "status": [ - 2946 + 2952 ], "status_history": [ - 2946 + 2952 ], "user": [ - 3917 + 3923 ], "user_steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -6099,7 +6522,7 @@ export default { }, "clip_render_jobs_pk_columns_input": { "id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -6107,10 +6530,10 @@ export default { }, "clip_render_jobs_prepend_input": { "spec": [ - 1817 + 1823 ], "status_history": [ - 1817 + 1823 ], "__typename": [ 80 @@ -6121,10 +6544,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": [ - 4993 + 4999 ], "created_at": [ - 4493 + 4499 ], "error_message": [ 80 @@ -6133,25 +6556,25 @@ export default { 80 ], "id": [ - 4993 + 4999 ], "k8s_job_name": [ 80 ], "last_status_at": [ - 4493 + 4499 ], "match_map_demo_id": [ - 4993 + 4999 ], "match_map_id": [ - 4993 + 4999 ], "paused": [ 5 ], "progress": [ - 2944 + 2950 ], "session_token": [ 80 @@ -6160,16 +6583,16 @@ export default { 40 ], "spec": [ - 1817 + 1823 ], "status": [ 80 ], "status_history": [ - 1817 + 1823 ], "user_steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -6191,13 +6614,13 @@ export default { }, "clip_render_jobs_stddev_order_by": { "progress": [ - 2946 + 2952 ], "sort_index": [ - 2946 + 2952 ], "user_steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -6219,13 +6642,13 @@ export default { }, "clip_render_jobs_stddev_pop_order_by": { "progress": [ - 2946 + 2952 ], "sort_index": [ - 2946 + 2952 ], "user_steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -6247,13 +6670,13 @@ export default { }, "clip_render_jobs_stddev_samp_order_by": { "progress": [ - 2946 + 2952 ], "sort_index": [ - 2946 + 2952 ], "user_steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -6261,10 +6684,10 @@ export default { }, "clip_render_jobs_stream_cursor_input": { "initial_value": [ - 296 + 302 ], "ordering": [ - 308 + 314 ], "__typename": [ 80 @@ -6272,10 +6695,10 @@ export default { }, "clip_render_jobs_stream_cursor_value_input": { "clip_id": [ - 4993 + 4999 ], "created_at": [ - 4493 + 4499 ], "error_message": [ 80 @@ -6284,25 +6707,25 @@ export default { 80 ], "id": [ - 4993 + 4999 ], "k8s_job_name": [ 80 ], "last_status_at": [ - 4493 + 4499 ], "match_map_demo_id": [ - 4993 + 4999 ], "match_map_id": [ - 4993 + 4999 ], "paused": [ 5 ], "progress": [ - 2944 + 2950 ], "session_token": [ 80 @@ -6311,16 +6734,16 @@ export default { 40 ], "spec": [ - 1817 + 1823 ], "status": [ 80 ], "status_history": [ - 1817 + 1823 ], "user_steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -6328,13 +6751,13 @@ export default { }, "clip_render_jobs_sum_fields": { "progress": [ - 2944 + 2950 ], "sort_index": [ 40 ], "user_steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -6342,13 +6765,13 @@ export default { }, "clip_render_jobs_sum_order_by": { "progress": [ - 2946 + 2952 ], "sort_index": [ - 2946 + 2952 ], "user_steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -6357,28 +6780,28 @@ export default { "clip_render_jobs_update_column": {}, "clip_render_jobs_updates": { "_append": [ - 265 + 271 ], "_delete_at_path": [ - 271 + 277 ], "_delete_elem": [ - 272 + 278 ], "_delete_key": [ - 273 + 279 ], "_inc": [ - 274 + 280 ], "_prepend": [ - 284 + 290 ], "_set": [ - 288 + 294 ], "where": [ - 269 + 275 ], "__typename": [ 80 @@ -6400,13 +6823,13 @@ export default { }, "clip_render_jobs_var_pop_order_by": { "progress": [ - 2946 + 2952 ], "sort_index": [ - 2946 + 2952 ], "user_steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -6428,13 +6851,13 @@ export default { }, "clip_render_jobs_var_samp_order_by": { "progress": [ - 2946 + 2952 ], "sort_index": [ - 2946 + 2952 ], "user_steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -6456,13 +6879,13 @@ export default { }, "clip_render_jobs_variance_order_by": { "progress": [ - 2946 + 2952 ], "sort_index": [ - 2946 + 2952 ], "user_steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -6470,7 +6893,7 @@ export default { }, "clone_league_season_args": { "_league_season_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -6479,10 +6902,10 @@ export default { "cursor_ordering": {}, "custom_pages": { "created_at": [ - 4493 + 4499 ], "deployments": [ - 1817, + 1823, { "path": [ 80 @@ -6499,7 +6922,7 @@ export default { 80 ], "id": [ - 4993 + 4999 ], "is_default": [ 5 @@ -6523,7 +6946,7 @@ export default { 80 ], "required_role": [ - 1065 + 1071 ], "slug": [ 80 @@ -6532,7 +6955,7 @@ export default { 80 ], "updated_at": [ - 4493 + 4499 ], "__typename": [ 80 @@ -6540,10 +6963,10 @@ export default { }, "custom_pages_aggregate": { "aggregate": [ - 311 + 317 ], "nodes": [ - 309 + 315 ], "__typename": [ 80 @@ -6551,13 +6974,13 @@ export default { }, "custom_pages_aggregate_fields": { "avg": [ - 313 + 319 ], "count": [ 40, { "columns": [ - 328, + 334, "[custom_pages_select_column!]" ], "distinct": [ @@ -6566,31 +6989,31 @@ export default { } ], "max": [ - 321 + 327 ], "min": [ - 322 + 328 ], "stddev": [ - 330 + 336 ], "stddev_pop": [ - 331 + 337 ], "stddev_samp": [ - 332 + 338 ], "sum": [ - 335 + 341 ], "var_pop": [ - 338 + 344 ], "var_samp": [ - 339 + 345 ], "variance": [ - 340 + 346 ], "__typename": [ 80 @@ -6598,7 +7021,7 @@ export default { }, "custom_pages_append_input": { "deployments": [ - 1817 + 1823 ], "__typename": [ 80 @@ -6614,19 +7037,19 @@ export default { }, "custom_pages_bool_exp": { "_and": [ - 314 + 320 ], "_not": [ - 314 + 320 ], "_or": [ - 314 + 320 ], "created_at": [ - 4494 + 4500 ], "deployments": [ - 1819 + 1825 ], "enabled": [ 6 @@ -6638,7 +7061,7 @@ export default { 82 ], "id": [ - 4995 + 5001 ], "is_default": [ 6 @@ -6662,7 +7085,7 @@ export default { 82 ], "required_role": [ - 1066 + 1072 ], "slug": [ 82 @@ -6671,7 +7094,7 @@ export default { 82 ], "updated_at": [ - 4494 + 4500 ], "__typename": [ 80 @@ -6712,10 +7135,10 @@ export default { }, "custom_pages_insert_input": { "created_at": [ - 4493 + 4499 ], "deployments": [ - 1817 + 1823 ], "enabled": [ 5 @@ -6727,7 +7150,7 @@ export default { 80 ], "id": [ - 4993 + 4999 ], "is_default": [ 5 @@ -6751,7 +7174,7 @@ export default { 80 ], "required_role": [ - 1065 + 1071 ], "slug": [ 80 @@ -6760,7 +7183,7 @@ export default { 80 ], "updated_at": [ - 4493 + 4499 ], "__typename": [ 80 @@ -6768,7 +7191,7 @@ export default { }, "custom_pages_max_fields": { "created_at": [ - 4493 + 4499 ], "exposed_module": [ 80 @@ -6777,7 +7200,7 @@ export default { 80 ], "id": [ - 4993 + 4999 ], "manifest_url": [ 80 @@ -6804,7 +7227,7 @@ export default { 80 ], "updated_at": [ - 4493 + 4499 ], "__typename": [ 80 @@ -6812,7 +7235,7 @@ export default { }, "custom_pages_min_fields": { "created_at": [ - 4493 + 4499 ], "exposed_module": [ 80 @@ -6821,7 +7244,7 @@ export default { 80 ], "id": [ - 4993 + 4999 ], "manifest_url": [ 80 @@ -6848,7 +7271,7 @@ export default { 80 ], "updated_at": [ - 4493 + 4499 ], "__typename": [ 80 @@ -6859,7 +7282,7 @@ export default { 40 ], "returning": [ - 309 + 315 ], "__typename": [ 80 @@ -6867,13 +7290,13 @@ export default { }, "custom_pages_on_conflict": { "constraint": [ - 315 + 321 ], "update_columns": [ - 336 + 342 ], "where": [ - 314 + 320 ], "__typename": [ 80 @@ -6881,55 +7304,55 @@ export default { }, "custom_pages_order_by": { "created_at": [ - 2946 + 2952 ], "deployments": [ - 2946 + 2952 ], "enabled": [ - 2946 + 2952 ], "exposed_module": [ - 2946 + 2952 ], "icon": [ - 2946 + 2952 ], "id": [ - 2946 + 2952 ], "is_default": [ - 2946 + 2952 ], "manifest_url": [ - 2946 + 2952 ], "nav_group": [ - 2946 + 2952 ], "nav_order": [ - 2946 + 2952 ], "profile_tab_label": [ - 2946 + 2952 ], "remote_entry_url": [ - 2946 + 2952 ], "remote_scope": [ - 2946 + 2952 ], "required_role": [ - 2946 + 2952 ], "slug": [ - 2946 + 2952 ], "title": [ - 2946 + 2952 ], "updated_at": [ - 2946 + 2952 ], "__typename": [ 80 @@ -6937,7 +7360,7 @@ export default { }, "custom_pages_pk_columns_input": { "id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -6945,7 +7368,7 @@ export default { }, "custom_pages_prepend_input": { "deployments": [ - 1817 + 1823 ], "__typename": [ 80 @@ -6954,10 +7377,10 @@ export default { "custom_pages_select_column": {}, "custom_pages_set_input": { "created_at": [ - 4493 + 4499 ], "deployments": [ - 1817 + 1823 ], "enabled": [ 5 @@ -6969,7 +7392,7 @@ export default { 80 ], "id": [ - 4993 + 4999 ], "is_default": [ 5 @@ -6993,7 +7416,7 @@ export default { 80 ], "required_role": [ - 1065 + 1071 ], "slug": [ 80 @@ -7002,7 +7425,7 @@ export default { 80 ], "updated_at": [ - 4493 + 4499 ], "__typename": [ 80 @@ -7034,10 +7457,10 @@ export default { }, "custom_pages_stream_cursor_input": { "initial_value": [ - 334 + 340 ], "ordering": [ - 308 + 314 ], "__typename": [ 80 @@ -7045,10 +7468,10 @@ export default { }, "custom_pages_stream_cursor_value_input": { "created_at": [ - 4493 + 4499 ], "deployments": [ - 1817 + 1823 ], "enabled": [ 5 @@ -7060,7 +7483,7 @@ export default { 80 ], "id": [ - 4993 + 4999 ], "is_default": [ 5 @@ -7084,7 +7507,7 @@ export default { 80 ], "required_role": [ - 1065 + 1071 ], "slug": [ 80 @@ -7093,7 +7516,7 @@ export default { 80 ], "updated_at": [ - 4493 + 4499 ], "__typename": [ 80 @@ -7110,28 +7533,28 @@ export default { "custom_pages_update_column": {}, "custom_pages_updates": { "_append": [ - 312 + 318 ], "_delete_at_path": [ - 316 + 322 ], "_delete_elem": [ - 317 + 323 ], "_delete_key": [ - 318 + 324 ], "_inc": [ - 319 + 325 ], "_prepend": [ - 327 + 333 ], "_set": [ - 329 + 335 ], "where": [ - 314 + 320 ], "__typename": [ 80 @@ -7163,10 +7586,10 @@ export default { }, "db_backups": { "created_at": [ - 4493 + 4499 ], "id": [ - 4993 + 4999 ], "name": [ 80 @@ -7180,10 +7603,10 @@ export default { }, "db_backups_aggregate": { "aggregate": [ - 343 + 349 ], "nodes": [ - 341 + 347 ], "__typename": [ 80 @@ -7191,13 +7614,13 @@ export default { }, "db_backups_aggregate_fields": { "avg": [ - 344 + 350 ], "count": [ 40, { "columns": [ - 355, + 361, "[db_backups_select_column!]" ], "distinct": [ @@ -7206,31 +7629,31 @@ export default { } ], "max": [ - 349 + 355 ], "min": [ - 350 + 356 ], "stddev": [ - 357 + 363 ], "stddev_pop": [ - 358 + 364 ], "stddev_samp": [ - 359 + 365 ], "sum": [ - 362 + 368 ], "var_pop": [ - 365 + 371 ], "var_samp": [ - 366 + 372 ], "variance": [ - 367 + 373 ], "__typename": [ 80 @@ -7246,19 +7669,19 @@ export default { }, "db_backups_bool_exp": { "_and": [ - 345 + 351 ], "_not": [ - 345 + 351 ], "_or": [ - 345 + 351 ], "created_at": [ - 4494 + 4500 ], "id": [ - 4995 + 5001 ], "name": [ 82 @@ -7281,10 +7704,10 @@ export default { }, "db_backups_insert_input": { "created_at": [ - 4493 + 4499 ], "id": [ - 4993 + 4999 ], "name": [ 80 @@ -7298,10 +7721,10 @@ export default { }, "db_backups_max_fields": { "created_at": [ - 4493 + 4499 ], "id": [ - 4993 + 4999 ], "name": [ 80 @@ -7315,10 +7738,10 @@ export default { }, "db_backups_min_fields": { "created_at": [ - 4493 + 4499 ], "id": [ - 4993 + 4999 ], "name": [ 80 @@ -7335,7 +7758,7 @@ export default { 40 ], "returning": [ - 341 + 347 ], "__typename": [ 80 @@ -7343,13 +7766,13 @@ export default { }, "db_backups_on_conflict": { "constraint": [ - 346 + 352 ], "update_columns": [ - 363 + 369 ], "where": [ - 345 + 351 ], "__typename": [ 80 @@ -7357,16 +7780,16 @@ export default { }, "db_backups_order_by": { "created_at": [ - 2946 + 2952 ], "id": [ - 2946 + 2952 ], "name": [ - 2946 + 2952 ], "size": [ - 2946 + 2952 ], "__typename": [ 80 @@ -7374,7 +7797,7 @@ export default { }, "db_backups_pk_columns_input": { "id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -7383,10 +7806,10 @@ export default { "db_backups_select_column": {}, "db_backups_set_input": { "created_at": [ - 4493 + 4499 ], "id": [ - 4993 + 4999 ], "name": [ 80 @@ -7424,10 +7847,10 @@ export default { }, "db_backups_stream_cursor_input": { "initial_value": [ - 361 + 367 ], "ordering": [ - 308 + 314 ], "__typename": [ 80 @@ -7435,10 +7858,10 @@ export default { }, "db_backups_stream_cursor_value_input": { "created_at": [ - 4493 + 4499 ], "id": [ - 4993 + 4999 ], "name": [ 80 @@ -7461,13 +7884,13 @@ export default { "db_backups_update_column": {}, "db_backups_updates": { "_inc": [ - 347 + 353 ], "_set": [ - 356 + 362 ], "where": [ - 345 + 351 ], "__typename": [ 80 @@ -7502,22 +7925,22 @@ export default { 5 ], "captain": [ - 3904 + 3910 ], "captain_steam_id": [ - 252 + 258 ], "created_at": [ - 4493 + 4499 ], "draft_game": [ - 458 + 464 ], "draft_game_id": [ - 4993 + 4999 ], "id": [ - 4993 + 4999 ], "is_organizer": [ 5 @@ -7526,10 +7949,10 @@ export default { 40 ], "picked": [ - 3904 + 3910 ], "picked_steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -7537,10 +7960,10 @@ export default { }, "draft_game_picks_aggregate": { "aggregate": [ - 374 + 380 ], "nodes": [ - 368 + 374 ], "__typename": [ 80 @@ -7548,13 +7971,13 @@ export default { }, "draft_game_picks_aggregate_bool_exp": { "bool_and": [ - 371 + 377 ], "bool_or": [ - 372 + 378 ], "count": [ - 373 + 379 ], "__typename": [ 80 @@ -7562,13 +7985,13 @@ export default { }, "draft_game_picks_aggregate_bool_exp_bool_and": { "arguments": [ - 392 + 398 ], "distinct": [ 5 ], "filter": [ - 379 + 385 ], "predicate": [ 6 @@ -7579,13 +8002,13 @@ export default { }, "draft_game_picks_aggregate_bool_exp_bool_or": { "arguments": [ - 393 + 399 ], "distinct": [ 5 ], "filter": [ - 379 + 385 ], "predicate": [ 6 @@ -7596,13 +8019,13 @@ export default { }, "draft_game_picks_aggregate_bool_exp_count": { "arguments": [ - 391 + 397 ], "distinct": [ 5 ], "filter": [ - 379 + 385 ], "predicate": [ 41 @@ -7613,13 +8036,13 @@ export default { }, "draft_game_picks_aggregate_fields": { "avg": [ - 377 + 383 ], "count": [ 40, { "columns": [ - 391, + 397, "[draft_game_picks_select_column!]" ], "distinct": [ @@ -7628,31 +8051,31 @@ export default { } ], "max": [ - 383 + 389 ], "min": [ - 385 + 391 ], "stddev": [ - 395 + 401 ], "stddev_pop": [ - 397 + 403 ], "stddev_samp": [ - 399 + 405 ], "sum": [ - 403 + 409 ], "var_pop": [ - 407 + 413 ], "var_samp": [ - 409 + 415 ], "variance": [ - 411 + 417 ], "__typename": [ 80 @@ -7660,37 +8083,37 @@ export default { }, "draft_game_picks_aggregate_order_by": { "avg": [ - 378 + 384 ], "count": [ - 2946 + 2952 ], "max": [ - 384 + 390 ], "min": [ - 386 + 392 ], "stddev": [ - 396 + 402 ], "stddev_pop": [ - 398 + 404 ], "stddev_samp": [ - 400 + 406 ], "sum": [ - 404 + 410 ], "var_pop": [ - 408 + 414 ], "var_samp": [ - 410 + 416 ], "variance": [ - 412 + 418 ], "__typename": [ 80 @@ -7698,10 +8121,10 @@ export default { }, "draft_game_picks_arr_rel_insert_input": { "data": [ - 382 + 388 ], "on_conflict": [ - 388 + 394 ], "__typename": [ 80 @@ -7723,13 +8146,13 @@ export default { }, "draft_game_picks_avg_order_by": { "captain_steam_id": [ - 2946 + 2952 ], "lineup": [ - 2946 + 2952 ], "picked_steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -7737,34 +8160,34 @@ export default { }, "draft_game_picks_bool_exp": { "_and": [ - 379 + 385 ], "_not": [ - 379 + 385 ], "_or": [ - 379 + 385 ], "auto_picked": [ 6 ], "captain": [ - 3908 + 3914 ], "captain_steam_id": [ - 254 + 260 ], "created_at": [ - 4494 + 4500 ], "draft_game": [ - 469 + 475 ], "draft_game_id": [ - 4995 + 5001 ], "id": [ - 4995 + 5001 ], "is_organizer": [ 6 @@ -7773,10 +8196,10 @@ export default { 41 ], "picked": [ - 3908 + 3914 ], "picked_steam_id": [ - 254 + 260 ], "__typename": [ 80 @@ -7785,13 +8208,13 @@ export default { "draft_game_picks_constraint": {}, "draft_game_picks_inc_input": { "captain_steam_id": [ - 252 + 258 ], "lineup": [ 40 ], "picked_steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -7802,31 +8225,31 @@ export default { 5 ], "captain": [ - 3915 + 3921 ], "captain_steam_id": [ - 252 + 258 ], "created_at": [ - 4493 + 4499 ], "draft_game": [ - 478 + 484 ], "draft_game_id": [ - 4993 + 4999 ], "id": [ - 4993 + 4999 ], "lineup": [ 40 ], "picked": [ - 3915 + 3921 ], "picked_steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -7834,22 +8257,22 @@ export default { }, "draft_game_picks_max_fields": { "captain_steam_id": [ - 252 + 258 ], "created_at": [ - 4493 + 4499 ], "draft_game_id": [ - 4993 + 4999 ], "id": [ - 4993 + 4999 ], "lineup": [ 40 ], "picked_steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -7857,22 +8280,22 @@ export default { }, "draft_game_picks_max_order_by": { "captain_steam_id": [ - 2946 + 2952 ], "created_at": [ - 2946 + 2952 ], "draft_game_id": [ - 2946 + 2952 ], "id": [ - 2946 + 2952 ], "lineup": [ - 2946 + 2952 ], "picked_steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -7880,22 +8303,22 @@ export default { }, "draft_game_picks_min_fields": { "captain_steam_id": [ - 252 + 258 ], "created_at": [ - 4493 + 4499 ], "draft_game_id": [ - 4993 + 4999 ], "id": [ - 4993 + 4999 ], "lineup": [ 40 ], "picked_steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -7903,22 +8326,22 @@ export default { }, "draft_game_picks_min_order_by": { "captain_steam_id": [ - 2946 + 2952 ], "created_at": [ - 2946 + 2952 ], "draft_game_id": [ - 2946 + 2952 ], "id": [ - 2946 + 2952 ], "lineup": [ - 2946 + 2952 ], "picked_steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -7929,7 +8352,7 @@ export default { 40 ], "returning": [ - 368 + 374 ], "__typename": [ 80 @@ -7937,13 +8360,13 @@ export default { }, "draft_game_picks_on_conflict": { "constraint": [ - 380 + 386 ], "update_columns": [ - 405 + 411 ], "where": [ - 379 + 385 ], "__typename": [ 80 @@ -7951,37 +8374,37 @@ export default { }, "draft_game_picks_order_by": { "auto_picked": [ - 2946 + 2952 ], "captain": [ - 3917 + 3923 ], "captain_steam_id": [ - 2946 + 2952 ], "created_at": [ - 2946 + 2952 ], "draft_game": [ - 480 + 486 ], "draft_game_id": [ - 2946 + 2952 ], "id": [ - 2946 + 2952 ], "is_organizer": [ - 2946 + 2952 ], "lineup": [ - 2946 + 2952 ], "picked": [ - 3917 + 3923 ], "picked_steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -7989,7 +8412,7 @@ export default { }, "draft_game_picks_pk_columns_input": { "id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -8003,22 +8426,22 @@ export default { 5 ], "captain_steam_id": [ - 252 + 258 ], "created_at": [ - 4493 + 4499 ], "draft_game_id": [ - 4993 + 4999 ], "id": [ - 4993 + 4999 ], "lineup": [ 40 ], "picked_steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -8040,13 +8463,13 @@ export default { }, "draft_game_picks_stddev_order_by": { "captain_steam_id": [ - 2946 + 2952 ], "lineup": [ - 2946 + 2952 ], "picked_steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -8068,13 +8491,13 @@ export default { }, "draft_game_picks_stddev_pop_order_by": { "captain_steam_id": [ - 2946 + 2952 ], "lineup": [ - 2946 + 2952 ], "picked_steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -8096,13 +8519,13 @@ export default { }, "draft_game_picks_stddev_samp_order_by": { "captain_steam_id": [ - 2946 + 2952 ], "lineup": [ - 2946 + 2952 ], "picked_steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -8110,10 +8533,10 @@ export default { }, "draft_game_picks_stream_cursor_input": { "initial_value": [ - 402 + 408 ], "ordering": [ - 308 + 314 ], "__typename": [ 80 @@ -8124,22 +8547,22 @@ export default { 5 ], "captain_steam_id": [ - 252 + 258 ], "created_at": [ - 4493 + 4499 ], "draft_game_id": [ - 4993 + 4999 ], "id": [ - 4993 + 4999 ], "lineup": [ 40 ], "picked_steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -8147,13 +8570,13 @@ export default { }, "draft_game_picks_sum_fields": { "captain_steam_id": [ - 252 + 258 ], "lineup": [ 40 ], "picked_steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -8161,13 +8584,13 @@ export default { }, "draft_game_picks_sum_order_by": { "captain_steam_id": [ - 2946 + 2952 ], "lineup": [ - 2946 + 2952 ], "picked_steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -8176,13 +8599,13 @@ export default { "draft_game_picks_update_column": {}, "draft_game_picks_updates": { "_inc": [ - 381 + 387 ], "_set": [ - 394 + 400 ], "where": [ - 379 + 385 ], "__typename": [ 80 @@ -8204,13 +8627,13 @@ export default { }, "draft_game_picks_var_pop_order_by": { "captain_steam_id": [ - 2946 + 2952 ], "lineup": [ - 2946 + 2952 ], "picked_steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -8232,13 +8655,13 @@ export default { }, "draft_game_picks_var_samp_order_by": { "captain_steam_id": [ - 2946 + 2952 ], "lineup": [ - 2946 + 2952 ], "picked_steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -8260,13 +8683,13 @@ export default { }, "draft_game_picks_variance_order_by": { "captain_steam_id": [ - 2946 + 2952 ], "lineup": [ - 2946 + 2952 ], "picked_steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -8274,13 +8697,13 @@ export default { }, "draft_game_players": { "draft_game": [ - 458 + 464 ], "draft_game_id": [ - 4993 + 4999 ], "e_draft_game_player_status": [ - 627 + 633 ], "elo_snapshot": [ 40 @@ -8292,7 +8715,7 @@ export default { 5 ], "joined_at": [ - 4493 + 4499 ], "lineup": [ 40 @@ -8301,13 +8724,13 @@ export default { 40 ], "player": [ - 3904 + 3910 ], "status": [ - 632 + 638 ], "steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -8315,10 +8738,10 @@ export default { }, "draft_game_players_aggregate": { "aggregate": [ - 419 + 425 ], "nodes": [ - 413 + 419 ], "__typename": [ 80 @@ -8326,13 +8749,13 @@ export default { }, "draft_game_players_aggregate_bool_exp": { "bool_and": [ - 416 + 422 ], "bool_or": [ - 417 + 423 ], "count": [ - 418 + 424 ], "__typename": [ 80 @@ -8340,13 +8763,13 @@ export default { }, "draft_game_players_aggregate_bool_exp_bool_and": { "arguments": [ - 437 + 443 ], "distinct": [ 5 ], "filter": [ - 424 + 430 ], "predicate": [ 6 @@ -8357,13 +8780,13 @@ export default { }, "draft_game_players_aggregate_bool_exp_bool_or": { "arguments": [ - 438 + 444 ], "distinct": [ 5 ], "filter": [ - 424 + 430 ], "predicate": [ 6 @@ -8374,13 +8797,13 @@ export default { }, "draft_game_players_aggregate_bool_exp_count": { "arguments": [ - 436 + 442 ], "distinct": [ 5 ], "filter": [ - 424 + 430 ], "predicate": [ 41 @@ -8391,13 +8814,13 @@ export default { }, "draft_game_players_aggregate_fields": { "avg": [ - 422 + 428 ], "count": [ 40, { "columns": [ - 436, + 442, "[draft_game_players_select_column!]" ], "distinct": [ @@ -8406,31 +8829,31 @@ export default { } ], "max": [ - 428 + 434 ], "min": [ - 430 + 436 ], "stddev": [ - 440 + 446 ], "stddev_pop": [ - 442 + 448 ], "stddev_samp": [ - 444 + 450 ], "sum": [ - 448 + 454 ], "var_pop": [ - 452 + 458 ], "var_samp": [ - 454 + 460 ], "variance": [ - 456 + 462 ], "__typename": [ 80 @@ -8438,37 +8861,37 @@ export default { }, "draft_game_players_aggregate_order_by": { "avg": [ - 423 + 429 ], "count": [ - 2946 + 2952 ], "max": [ - 429 + 435 ], "min": [ - 431 + 437 ], "stddev": [ - 441 + 447 ], "stddev_pop": [ - 443 + 449 ], "stddev_samp": [ - 445 + 451 ], "sum": [ - 449 + 455 ], "var_pop": [ - 453 + 459 ], "var_samp": [ - 455 + 461 ], "variance": [ - 457 + 463 ], "__typename": [ 80 @@ -8476,10 +8899,10 @@ export default { }, "draft_game_players_arr_rel_insert_input": { "data": [ - 427 + 433 ], "on_conflict": [ - 433 + 439 ], "__typename": [ 80 @@ -8504,16 +8927,16 @@ export default { }, "draft_game_players_avg_order_by": { "elo_snapshot": [ - 2946 + 2952 ], "lineup": [ - 2946 + 2952 ], "pick_order": [ - 2946 + 2952 ], "steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -8521,22 +8944,22 @@ export default { }, "draft_game_players_bool_exp": { "_and": [ - 424 + 430 ], "_not": [ - 424 + 430 ], "_or": [ - 424 + 430 ], "draft_game": [ - 469 + 475 ], "draft_game_id": [ - 4995 + 5001 ], "e_draft_game_player_status": [ - 630 + 636 ], "elo_snapshot": [ 41 @@ -8548,7 +8971,7 @@ export default { 6 ], "joined_at": [ - 4494 + 4500 ], "lineup": [ 41 @@ -8557,13 +8980,13 @@ export default { 41 ], "player": [ - 3908 + 3914 ], "status": [ - 633 + 639 ], "steam_id": [ - 254 + 260 ], "__typename": [ 80 @@ -8581,7 +9004,7 @@ export default { 40 ], "steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -8589,13 +9012,13 @@ export default { }, "draft_game_players_insert_input": { "draft_game": [ - 478 + 484 ], "draft_game_id": [ - 4993 + 4999 ], "e_draft_game_player_status": [ - 638 + 644 ], "elo_snapshot": [ 40 @@ -8604,7 +9027,7 @@ export default { 5 ], "joined_at": [ - 4493 + 4499 ], "lineup": [ 40 @@ -8613,13 +9036,13 @@ export default { 40 ], "player": [ - 3915 + 3921 ], "status": [ - 632 + 638 ], "steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -8627,13 +9050,13 @@ export default { }, "draft_game_players_max_fields": { "draft_game_id": [ - 4993 + 4999 ], "elo_snapshot": [ 40 ], "joined_at": [ - 4493 + 4499 ], "lineup": [ 40 @@ -8642,7 +9065,7 @@ export default { 40 ], "steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -8650,22 +9073,22 @@ export default { }, "draft_game_players_max_order_by": { "draft_game_id": [ - 2946 + 2952 ], "elo_snapshot": [ - 2946 + 2952 ], "joined_at": [ - 2946 + 2952 ], "lineup": [ - 2946 + 2952 ], "pick_order": [ - 2946 + 2952 ], "steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -8673,13 +9096,13 @@ export default { }, "draft_game_players_min_fields": { "draft_game_id": [ - 4993 + 4999 ], "elo_snapshot": [ 40 ], "joined_at": [ - 4493 + 4499 ], "lineup": [ 40 @@ -8688,7 +9111,7 @@ export default { 40 ], "steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -8696,22 +9119,22 @@ export default { }, "draft_game_players_min_order_by": { "draft_game_id": [ - 2946 + 2952 ], "elo_snapshot": [ - 2946 + 2952 ], "joined_at": [ - 2946 + 2952 ], "lineup": [ - 2946 + 2952 ], "pick_order": [ - 2946 + 2952 ], "steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -8722,7 +9145,7 @@ export default { 40 ], "returning": [ - 413 + 419 ], "__typename": [ 80 @@ -8730,13 +9153,13 @@ export default { }, "draft_game_players_on_conflict": { "constraint": [ - 425 + 431 ], "update_columns": [ - 450 + 456 ], "where": [ - 424 + 430 ], "__typename": [ 80 @@ -8744,40 +9167,40 @@ export default { }, "draft_game_players_order_by": { "draft_game": [ - 480 + 486 ], "draft_game_id": [ - 2946 + 2952 ], "e_draft_game_player_status": [ - 640 + 646 ], "elo_snapshot": [ - 2946 + 2952 ], "is_captain": [ - 2946 + 2952 ], "is_organizer": [ - 2946 + 2952 ], "joined_at": [ - 2946 + 2952 ], "lineup": [ - 2946 + 2952 ], "pick_order": [ - 2946 + 2952 ], "player": [ - 3917 + 3923 ], "status": [ - 2946 + 2952 ], "steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -8785,10 +9208,10 @@ export default { }, "draft_game_players_pk_columns_input": { "draft_game_id": [ - 4993 + 4999 ], "steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -8799,7 +9222,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": [ - 4993 + 4999 ], "elo_snapshot": [ 40 @@ -8808,7 +9231,7 @@ export default { 5 ], "joined_at": [ - 4493 + 4499 ], "lineup": [ 40 @@ -8817,10 +9240,10 @@ export default { 40 ], "status": [ - 632 + 638 ], "steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -8845,16 +9268,16 @@ export default { }, "draft_game_players_stddev_order_by": { "elo_snapshot": [ - 2946 + 2952 ], "lineup": [ - 2946 + 2952 ], "pick_order": [ - 2946 + 2952 ], "steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -8879,16 +9302,16 @@ export default { }, "draft_game_players_stddev_pop_order_by": { "elo_snapshot": [ - 2946 + 2952 ], "lineup": [ - 2946 + 2952 ], "pick_order": [ - 2946 + 2952 ], "steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -8913,16 +9336,16 @@ export default { }, "draft_game_players_stddev_samp_order_by": { "elo_snapshot": [ - 2946 + 2952 ], "lineup": [ - 2946 + 2952 ], "pick_order": [ - 2946 + 2952 ], "steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -8930,10 +9353,10 @@ export default { }, "draft_game_players_stream_cursor_input": { "initial_value": [ - 447 + 453 ], "ordering": [ - 308 + 314 ], "__typename": [ 80 @@ -8941,7 +9364,7 @@ export default { }, "draft_game_players_stream_cursor_value_input": { "draft_game_id": [ - 4993 + 4999 ], "elo_snapshot": [ 40 @@ -8950,7 +9373,7 @@ export default { 5 ], "joined_at": [ - 4493 + 4499 ], "lineup": [ 40 @@ -8959,10 +9382,10 @@ export default { 40 ], "status": [ - 632 + 638 ], "steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -8979,7 +9402,7 @@ export default { 40 ], "steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -8987,16 +9410,16 @@ export default { }, "draft_game_players_sum_order_by": { "elo_snapshot": [ - 2946 + 2952 ], "lineup": [ - 2946 + 2952 ], "pick_order": [ - 2946 + 2952 ], "steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -9005,13 +9428,13 @@ export default { "draft_game_players_update_column": {}, "draft_game_players_updates": { "_inc": [ - 426 + 432 ], "_set": [ - 439 + 445 ], "where": [ - 424 + 430 ], "__typename": [ 80 @@ -9036,16 +9459,16 @@ export default { }, "draft_game_players_var_pop_order_by": { "elo_snapshot": [ - 2946 + 2952 ], "lineup": [ - 2946 + 2952 ], "pick_order": [ - 2946 + 2952 ], "steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -9070,16 +9493,16 @@ export default { }, "draft_game_players_var_samp_order_by": { "elo_snapshot": [ - 2946 + 2952 ], "lineup": [ - 2946 + 2952 ], "pick_order": [ - 2946 + 2952 ], "steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -9104,16 +9527,16 @@ export default { }, "draft_game_players_variance_order_by": { "elo_snapshot": [ - 2946 + 2952 ], "lineup": [ - 2946 + 2952 ], "pick_order": [ - 2946 + 2952 ], "steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -9121,73 +9544,73 @@ export default { }, "draft_games": { "access": [ - 860 + 866 ], "capacity": [ 40 ], "captain_selection": [ - 569 + 575 ], "created_at": [ - 4493 + 4499 ], "current_pick_lineup": [ 40 ], "draft_order": [ - 590 + 596 ], "e_draft_game_captain_selection": [ - 564 + 570 ], "e_draft_game_draft_order": [ - 585 + 591 ], "e_draft_game_mode": [ - 606 + 612 ], "e_draft_game_status": [ - 648 + 654 ], "e_lobby_access": [ - 855 + 861 ], "expires_at": [ - 4493 + 4499 ], "host": [ - 3904 + 3910 ], "host_steam_id": [ - 252 + 258 ], "id": [ - 4993 + 4999 ], "inner_squad": [ 5 ], "invite_code": [ - 4993 + 4999 ], "is_organizer": [ 5 ], "map_pool": [ - 2260 + 2266 ], "map_pool_id": [ - 4993 + 4999 ], "match": [ - 2761 + 2767 ], "match_id": [ - 4993 + 4999 ], "match_options_id": [ - 4993 + 4999 ], "max_elo": [ 40 @@ -9196,13 +9619,13 @@ export default { 40 ], "mode": [ - 611 + 617 ], "options": [ - 2641 + 2647 ], "pattern": [ - 1817, + 1823, { "path": [ 80 @@ -9210,13 +9633,13 @@ export default { } ], "pick_deadline": [ - 4493 + 4499 ], "picks": [ - 368, + 374, { "distinct_on": [ - 391, + 397, "[draft_game_picks_select_column!]" ], "limit": [ @@ -9226,19 +9649,19 @@ export default { 40 ], "order_by": [ - 389, + 395, "[draft_game_picks_order_by!]" ], "where": [ - 379 + 385 ] } ], "picks_aggregate": [ - 369, + 375, { "distinct_on": [ - 391, + 397, "[draft_game_picks_select_column!]" ], "limit": [ @@ -9248,19 +9671,19 @@ export default { 40 ], "order_by": [ - 389, + 395, "[draft_game_picks_order_by!]" ], "where": [ - 379 + 385 ] } ], "players": [ - 413, + 419, { "distinct_on": [ - 436, + 442, "[draft_game_players_select_column!]" ], "limit": [ @@ -9270,19 +9693,19 @@ export default { 40 ], "order_by": [ - 434, + 440, "[draft_game_players_order_by!]" ], "where": [ - 424 + 430 ] } ], "players_aggregate": [ - 414, + 420, { "distinct_on": [ - 436, + 442, "[draft_game_players_select_column!]" ], "limit": [ @@ -9292,11 +9715,11 @@ export default { 40 ], "order_by": [ - 434, + 440, "[draft_game_players_order_by!]" ], "where": [ - 424 + 430 ] } ], @@ -9307,28 +9730,28 @@ export default { 5 ], "scheduled_at": [ - 4493 + 4499 ], "status": [ - 653 + 659 ], "team_1": [ - 4446 + 4452 ], "team_1_id": [ - 4993 + 4999 ], "team_2": [ - 4446 + 4452 ], "team_2_id": [ - 4993 + 4999 ], "type": [ - 1004 + 1010 ], "updated_at": [ - 4493 + 4499 ], "__typename": [ 80 @@ -9336,10 +9759,10 @@ export default { }, "draft_games_aggregate": { "aggregate": [ - 464 + 470 ], "nodes": [ - 458 + 464 ], "__typename": [ 80 @@ -9347,13 +9770,13 @@ export default { }, "draft_games_aggregate_bool_exp": { "bool_and": [ - 461 + 467 ], "bool_or": [ - 462 + 468 ], "count": [ - 463 + 469 ], "__typename": [ 80 @@ -9361,13 +9784,13 @@ export default { }, "draft_games_aggregate_bool_exp_bool_and": { "arguments": [ - 483 + 489 ], "distinct": [ 5 ], "filter": [ - 469 + 475 ], "predicate": [ 6 @@ -9378,13 +9801,13 @@ export default { }, "draft_games_aggregate_bool_exp_bool_or": { "arguments": [ - 484 + 490 ], "distinct": [ 5 ], "filter": [ - 469 + 475 ], "predicate": [ 6 @@ -9395,13 +9818,13 @@ export default { }, "draft_games_aggregate_bool_exp_count": { "arguments": [ - 482 + 488 ], "distinct": [ 5 ], "filter": [ - 469 + 475 ], "predicate": [ 41 @@ -9412,13 +9835,13 @@ export default { }, "draft_games_aggregate_fields": { "avg": [ - 467 + 473 ], "count": [ 40, { "columns": [ - 482, + 488, "[draft_games_select_column!]" ], "distinct": [ @@ -9427,31 +9850,31 @@ export default { } ], "max": [ - 473 + 479 ], "min": [ - 475 + 481 ], "stddev": [ - 486 + 492 ], "stddev_pop": [ - 488 + 494 ], "stddev_samp": [ - 490 + 496 ], "sum": [ - 494 + 500 ], "var_pop": [ - 498 + 504 ], "var_samp": [ - 500 + 506 ], "variance": [ - 502 + 508 ], "__typename": [ 80 @@ -9459,37 +9882,37 @@ export default { }, "draft_games_aggregate_order_by": { "avg": [ - 468 + 474 ], "count": [ - 2946 + 2952 ], "max": [ - 474 + 480 ], "min": [ - 476 + 482 ], "stddev": [ - 487 + 493 ], "stddev_pop": [ - 489 + 495 ], "stddev_samp": [ - 491 + 497 ], "sum": [ - 495 + 501 ], "var_pop": [ - 499 + 505 ], "var_samp": [ - 501 + 507 ], "variance": [ - 503 + 509 ], "__typename": [ 80 @@ -9497,10 +9920,10 @@ export default { }, "draft_games_arr_rel_insert_input": { "data": [ - 472 + 478 ], "on_conflict": [ - 479 + 485 ], "__typename": [ 80 @@ -9528,19 +9951,19 @@ export default { }, "draft_games_avg_order_by": { "capacity": [ - 2946 + 2952 ], "current_pick_lineup": [ - 2946 + 2952 ], "host_steam_id": [ - 2946 + 2952 ], "max_elo": [ - 2946 + 2952 ], "min_elo": [ - 2946 + 2952 ], "__typename": [ 80 @@ -9548,82 +9971,82 @@ export default { }, "draft_games_bool_exp": { "_and": [ - 469 + 475 ], "_not": [ - 469 + 475 ], "_or": [ - 469 + 475 ], "access": [ - 861 + 867 ], "capacity": [ 41 ], "captain_selection": [ - 570 + 576 ], "created_at": [ - 4494 + 4500 ], "current_pick_lineup": [ 41 ], "draft_order": [ - 591 + 597 ], "e_draft_game_captain_selection": [ - 567 + 573 ], "e_draft_game_draft_order": [ - 588 + 594 ], "e_draft_game_mode": [ - 609 + 615 ], "e_draft_game_status": [ - 651 + 657 ], "e_lobby_access": [ - 858 + 864 ], "expires_at": [ - 4494 + 4500 ], "host": [ - 3908 + 3914 ], "host_steam_id": [ - 254 + 260 ], "id": [ - 4995 + 5001 ], "inner_squad": [ 6 ], "invite_code": [ - 4995 + 5001 ], "is_organizer": [ 6 ], "map_pool": [ - 2263 + 2269 ], "map_pool_id": [ - 4995 + 5001 ], "match": [ - 2770 + 2776 ], "match_id": [ - 4995 + 5001 ], "match_options_id": [ - 4995 + 5001 ], "max_elo": [ 41 @@ -9632,28 +10055,28 @@ export default { 41 ], "mode": [ - 612 + 618 ], "options": [ - 2645 + 2651 ], "pattern": [ - 1819 + 1825 ], "pick_deadline": [ - 4494 + 4500 ], "picks": [ - 379 + 385 ], "picks_aggregate": [ - 370 + 376 ], "players": [ - 424 + 430 ], "players_aggregate": [ - 415 + 421 ], "regions": [ 81 @@ -9662,28 +10085,28 @@ export default { 6 ], "scheduled_at": [ - 4494 + 4500 ], "status": [ - 654 + 660 ], "team_1": [ - 4457 + 4463 ], "team_1_id": [ - 4995 + 5001 ], "team_2": [ - 4457 + 4463 ], "team_2_id": [ - 4995 + 5001 ], "type": [ - 1005 + 1011 ], "updated_at": [ - 4494 + 4500 ], "__typename": [ 80 @@ -9698,7 +10121,7 @@ export default { 40 ], "host_steam_id": [ - 252 + 258 ], "max_elo": [ 40 @@ -9712,70 +10135,70 @@ export default { }, "draft_games_insert_input": { "access": [ - 860 + 866 ], "capacity": [ 40 ], "captain_selection": [ - 569 + 575 ], "created_at": [ - 4493 + 4499 ], "current_pick_lineup": [ 40 ], "draft_order": [ - 590 + 596 ], "e_draft_game_captain_selection": [ - 575 + 581 ], "e_draft_game_draft_order": [ - 596 + 602 ], "e_draft_game_mode": [ - 617 + 623 ], "e_draft_game_status": [ - 659 + 665 ], "e_lobby_access": [ - 866 + 872 ], "expires_at": [ - 4493 + 4499 ], "host": [ - 3915 + 3921 ], "host_steam_id": [ - 252 + 258 ], "id": [ - 4993 + 4999 ], "inner_squad": [ 5 ], "invite_code": [ - 4993 + 4999 ], "map_pool": [ - 2269 + 2275 ], "map_pool_id": [ - 4993 + 4999 ], "match": [ - 2779 + 2785 ], "match_id": [ - 4993 + 4999 ], "match_options_id": [ - 4993 + 4999 ], "max_elo": [ 40 @@ -9784,19 +10207,19 @@ export default { 40 ], "mode": [ - 611 + 617 ], "options": [ - 2652 + 2658 ], "pick_deadline": [ - 4493 + 4499 ], "picks": [ - 376 + 382 ], "players": [ - 421 + 427 ], "regions": [ 80 @@ -9805,28 +10228,28 @@ export default { 5 ], "scheduled_at": [ - 4493 + 4499 ], "status": [ - 653 + 659 ], "team_1": [ - 4466 + 4472 ], "team_1_id": [ - 4993 + 4999 ], "team_2": [ - 4466 + 4472 ], "team_2_id": [ - 4993 + 4999 ], "type": [ - 1004 + 1010 ], "updated_at": [ - 4493 + 4499 ], "__typename": [ 80 @@ -9837,31 +10260,31 @@ export default { 40 ], "created_at": [ - 4493 + 4499 ], "current_pick_lineup": [ 40 ], "expires_at": [ - 4493 + 4499 ], "host_steam_id": [ - 252 + 258 ], "id": [ - 4993 + 4999 ], "invite_code": [ - 4993 + 4999 ], "map_pool_id": [ - 4993 + 4999 ], "match_id": [ - 4993 + 4999 ], "match_options_id": [ - 4993 + 4999 ], "max_elo": [ 40 @@ -9870,22 +10293,22 @@ export default { 40 ], "pick_deadline": [ - 4493 + 4499 ], "regions": [ 80 ], "scheduled_at": [ - 4493 + 4499 ], "team_1_id": [ - 4993 + 4999 ], "team_2_id": [ - 4993 + 4999 ], "updated_at": [ - 4493 + 4499 ], "__typename": [ 80 @@ -9893,58 +10316,58 @@ export default { }, "draft_games_max_order_by": { "capacity": [ - 2946 + 2952 ], "created_at": [ - 2946 + 2952 ], "current_pick_lineup": [ - 2946 + 2952 ], "expires_at": [ - 2946 + 2952 ], "host_steam_id": [ - 2946 + 2952 ], "id": [ - 2946 + 2952 ], "invite_code": [ - 2946 + 2952 ], "map_pool_id": [ - 2946 + 2952 ], "match_id": [ - 2946 + 2952 ], "match_options_id": [ - 2946 + 2952 ], "max_elo": [ - 2946 + 2952 ], "min_elo": [ - 2946 + 2952 ], "pick_deadline": [ - 2946 + 2952 ], "regions": [ - 2946 + 2952 ], "scheduled_at": [ - 2946 + 2952 ], "team_1_id": [ - 2946 + 2952 ], "team_2_id": [ - 2946 + 2952 ], "updated_at": [ - 2946 + 2952 ], "__typename": [ 80 @@ -9955,31 +10378,31 @@ export default { 40 ], "created_at": [ - 4493 + 4499 ], "current_pick_lineup": [ 40 ], "expires_at": [ - 4493 + 4499 ], "host_steam_id": [ - 252 + 258 ], "id": [ - 4993 + 4999 ], "invite_code": [ - 4993 + 4999 ], "map_pool_id": [ - 4993 + 4999 ], "match_id": [ - 4993 + 4999 ], "match_options_id": [ - 4993 + 4999 ], "max_elo": [ 40 @@ -9988,22 +10411,22 @@ export default { 40 ], "pick_deadline": [ - 4493 + 4499 ], "regions": [ 80 ], "scheduled_at": [ - 4493 + 4499 ], "team_1_id": [ - 4993 + 4999 ], "team_2_id": [ - 4993 + 4999 ], "updated_at": [ - 4493 + 4499 ], "__typename": [ 80 @@ -10011,58 +10434,58 @@ export default { }, "draft_games_min_order_by": { "capacity": [ - 2946 + 2952 ], "created_at": [ - 2946 + 2952 ], "current_pick_lineup": [ - 2946 + 2952 ], "expires_at": [ - 2946 + 2952 ], "host_steam_id": [ - 2946 + 2952 ], "id": [ - 2946 + 2952 ], "invite_code": [ - 2946 + 2952 ], "map_pool_id": [ - 2946 + 2952 ], "match_id": [ - 2946 + 2952 ], "match_options_id": [ - 2946 + 2952 ], "max_elo": [ - 2946 + 2952 ], "min_elo": [ - 2946 + 2952 ], "pick_deadline": [ - 2946 + 2952 ], "regions": [ - 2946 + 2952 ], "scheduled_at": [ - 2946 + 2952 ], "team_1_id": [ - 2946 + 2952 ], "team_2_id": [ - 2946 + 2952 ], "updated_at": [ - 2946 + 2952 ], "__typename": [ 80 @@ -10073,7 +10496,7 @@ export default { 40 ], "returning": [ - 458 + 464 ], "__typename": [ 80 @@ -10081,10 +10504,10 @@ export default { }, "draft_games_obj_rel_insert_input": { "data": [ - 472 + 478 ], "on_conflict": [ - 479 + 485 ], "__typename": [ 80 @@ -10092,13 +10515,13 @@ export default { }, "draft_games_on_conflict": { "constraint": [ - 470 + 476 ], "update_columns": [ - 496 + 502 ], "where": [ - 469 + 475 ], "__typename": [ 80 @@ -10106,127 +10529,127 @@ export default { }, "draft_games_order_by": { "access": [ - 2946 + 2952 ], "capacity": [ - 2946 + 2952 ], "captain_selection": [ - 2946 + 2952 ], "created_at": [ - 2946 + 2952 ], "current_pick_lineup": [ - 2946 + 2952 ], "draft_order": [ - 2946 + 2952 ], "e_draft_game_captain_selection": [ - 577 + 583 ], "e_draft_game_draft_order": [ - 598 + 604 ], "e_draft_game_mode": [ - 619 + 625 ], "e_draft_game_status": [ - 661 + 667 ], "e_lobby_access": [ - 868 + 874 ], "expires_at": [ - 2946 + 2952 ], "host": [ - 3917 + 3923 ], "host_steam_id": [ - 2946 + 2952 ], "id": [ - 2946 + 2952 ], "inner_squad": [ - 2946 + 2952 ], "invite_code": [ - 2946 + 2952 ], "is_organizer": [ - 2946 + 2952 ], "map_pool": [ - 2271 + 2277 ], "map_pool_id": [ - 2946 + 2952 ], "match": [ - 2781 + 2787 ], "match_id": [ - 2946 + 2952 ], "match_options_id": [ - 2946 + 2952 ], "max_elo": [ - 2946 + 2952 ], "min_elo": [ - 2946 + 2952 ], "mode": [ - 2946 + 2952 ], "options": [ - 2654 + 2660 ], "pattern": [ - 2946 + 2952 ], "pick_deadline": [ - 2946 + 2952 ], "picks_aggregate": [ - 375 + 381 ], "players_aggregate": [ - 420 + 426 ], "regions": [ - 2946 + 2952 ], "require_approval": [ - 2946 + 2952 ], "scheduled_at": [ - 2946 + 2952 ], "status": [ - 2946 + 2952 ], "team_1": [ - 4468 + 4474 ], "team_1_id": [ - 2946 + 2952 ], "team_2": [ - 4468 + 4474 ], "team_2_id": [ - 2946 + 2952 ], "type": [ - 2946 + 2952 ], "updated_at": [ - 2946 + 2952 ], "__typename": [ 80 @@ -10234,7 +10657,7 @@ export default { }, "draft_games_pk_columns_input": { "id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -10245,46 +10668,46 @@ export default { "draft_games_select_column_draft_games_aggregate_bool_exp_bool_or_arguments_columns": {}, "draft_games_set_input": { "access": [ - 860 + 866 ], "capacity": [ 40 ], "captain_selection": [ - 569 + 575 ], "created_at": [ - 4493 + 4499 ], "current_pick_lineup": [ 40 ], "draft_order": [ - 590 + 596 ], "expires_at": [ - 4493 + 4499 ], "host_steam_id": [ - 252 + 258 ], "id": [ - 4993 + 4999 ], "inner_squad": [ 5 ], "invite_code": [ - 4993 + 4999 ], "map_pool_id": [ - 4993 + 4999 ], "match_id": [ - 4993 + 4999 ], "match_options_id": [ - 4993 + 4999 ], "max_elo": [ 40 @@ -10293,10 +10716,10 @@ export default { 40 ], "mode": [ - 611 + 617 ], "pick_deadline": [ - 4493 + 4499 ], "regions": [ 80 @@ -10305,22 +10728,22 @@ export default { 5 ], "scheduled_at": [ - 4493 + 4499 ], "status": [ - 653 + 659 ], "team_1_id": [ - 4993 + 4999 ], "team_2_id": [ - 4993 + 4999 ], "type": [ - 1004 + 1010 ], "updated_at": [ - 4493 + 4499 ], "__typename": [ 80 @@ -10348,19 +10771,19 @@ export default { }, "draft_games_stddev_order_by": { "capacity": [ - 2946 + 2952 ], "current_pick_lineup": [ - 2946 + 2952 ], "host_steam_id": [ - 2946 + 2952 ], "max_elo": [ - 2946 + 2952 ], "min_elo": [ - 2946 + 2952 ], "__typename": [ 80 @@ -10388,19 +10811,19 @@ export default { }, "draft_games_stddev_pop_order_by": { "capacity": [ - 2946 + 2952 ], "current_pick_lineup": [ - 2946 + 2952 ], "host_steam_id": [ - 2946 + 2952 ], "max_elo": [ - 2946 + 2952 ], "min_elo": [ - 2946 + 2952 ], "__typename": [ 80 @@ -10428,19 +10851,19 @@ export default { }, "draft_games_stddev_samp_order_by": { "capacity": [ - 2946 + 2952 ], "current_pick_lineup": [ - 2946 + 2952 ], "host_steam_id": [ - 2946 + 2952 ], "max_elo": [ - 2946 + 2952 ], "min_elo": [ - 2946 + 2952 ], "__typename": [ 80 @@ -10448,10 +10871,10 @@ export default { }, "draft_games_stream_cursor_input": { "initial_value": [ - 493 + 499 ], "ordering": [ - 308 + 314 ], "__typename": [ 80 @@ -10459,46 +10882,46 @@ export default { }, "draft_games_stream_cursor_value_input": { "access": [ - 860 + 866 ], "capacity": [ 40 ], "captain_selection": [ - 569 + 575 ], "created_at": [ - 4493 + 4499 ], "current_pick_lineup": [ 40 ], "draft_order": [ - 590 + 596 ], "expires_at": [ - 4493 + 4499 ], "host_steam_id": [ - 252 + 258 ], "id": [ - 4993 + 4999 ], "inner_squad": [ 5 ], "invite_code": [ - 4993 + 4999 ], "map_pool_id": [ - 4993 + 4999 ], "match_id": [ - 4993 + 4999 ], "match_options_id": [ - 4993 + 4999 ], "max_elo": [ 40 @@ -10507,10 +10930,10 @@ export default { 40 ], "mode": [ - 611 + 617 ], "pick_deadline": [ - 4493 + 4499 ], "regions": [ 80 @@ -10519,22 +10942,22 @@ export default { 5 ], "scheduled_at": [ - 4493 + 4499 ], "status": [ - 653 + 659 ], "team_1_id": [ - 4993 + 4999 ], "team_2_id": [ - 4993 + 4999 ], "type": [ - 1004 + 1010 ], "updated_at": [ - 4493 + 4499 ], "__typename": [ 80 @@ -10548,7 +10971,7 @@ export default { 40 ], "host_steam_id": [ - 252 + 258 ], "max_elo": [ 40 @@ -10562,19 +10985,19 @@ export default { }, "draft_games_sum_order_by": { "capacity": [ - 2946 + 2952 ], "current_pick_lineup": [ - 2946 + 2952 ], "host_steam_id": [ - 2946 + 2952 ], "max_elo": [ - 2946 + 2952 ], "min_elo": [ - 2946 + 2952 ], "__typename": [ 80 @@ -10583,13 +11006,13 @@ export default { "draft_games_update_column": {}, "draft_games_updates": { "_inc": [ - 471 + 477 ], "_set": [ - 485 + 491 ], "where": [ - 469 + 475 ], "__typename": [ 80 @@ -10617,19 +11040,19 @@ export default { }, "draft_games_var_pop_order_by": { "capacity": [ - 2946 + 2952 ], "current_pick_lineup": [ - 2946 + 2952 ], "host_steam_id": [ - 2946 + 2952 ], "max_elo": [ - 2946 + 2952 ], "min_elo": [ - 2946 + 2952 ], "__typename": [ 80 @@ -10657,19 +11080,19 @@ export default { }, "draft_games_var_samp_order_by": { "capacity": [ - 2946 + 2952 ], "current_pick_lineup": [ - 2946 + 2952 ], "host_steam_id": [ - 2946 + 2952 ], "max_elo": [ - 2946 + 2952 ], "min_elo": [ - 2946 + 2952 ], "__typename": [ 80 @@ -10697,19 +11120,19 @@ export default { }, "draft_games_variance_order_by": { "capacity": [ - 2946 + 2952 ], "current_pick_lineup": [ - 2946 + 2952 ], "host_steam_id": [ - 2946 + 2952 ], "max_elo": [ - 2946 + 2952 ], "min_elo": [ - 2946 + 2952 ], "__typename": [ 80 @@ -10728,10 +11151,10 @@ export default { }, "e_award_sources_aggregate": { "aggregate": [ - 506 + 512 ], "nodes": [ - 504 + 510 ], "__typename": [ 80 @@ -10742,7 +11165,7 @@ export default { 40, { "columns": [ - 518, + 524, "[e_award_sources_select_column!]" ], "distinct": [ @@ -10751,10 +11174,10 @@ export default { } ], "max": [ - 512 + 518 ], "min": [ - 513 + 519 ], "__typename": [ 80 @@ -10762,13 +11185,13 @@ export default { }, "e_award_sources_bool_exp": { "_and": [ - 507 + 513 ], "_not": [ - 507 + 513 ], "_or": [ - 507 + 513 ], "description": [ 82 @@ -10784,19 +11207,19 @@ export default { "e_award_sources_enum": {}, "e_award_sources_enum_comparison_exp": { "_eq": [ - 509 + 515 ], "_in": [ - 509 + 515 ], "_is_null": [ 5 ], "_neq": [ - 509 + 515 ], "_nin": [ - 509 + 515 ], "__typename": [ 80 @@ -10840,7 +11263,7 @@ export default { 40 ], "returning": [ - 504 + 510 ], "__typename": [ 80 @@ -10848,13 +11271,13 @@ export default { }, "e_award_sources_on_conflict": { "constraint": [ - 508 + 514 ], "update_columns": [ - 522 + 528 ], "where": [ - 507 + 513 ], "__typename": [ 80 @@ -10862,10 +11285,10 @@ export default { }, "e_award_sources_order_by": { "description": [ - 2946 + 2952 ], "value": [ - 2946 + 2952 ], "__typename": [ 80 @@ -10893,10 +11316,10 @@ export default { }, "e_award_sources_stream_cursor_input": { "initial_value": [ - 521 + 527 ], "ordering": [ - 308 + 314 ], "__typename": [ 80 @@ -10916,10 +11339,10 @@ export default { "e_award_sources_update_column": {}, "e_award_sources_updates": { "_set": [ - 519 + 525 ], "where": [ - 507 + 513 ], "__typename": [ 80 @@ -10938,10 +11361,10 @@ export default { }, "e_award_tiers_aggregate": { "aggregate": [ - 526 + 532 ], "nodes": [ - 524 + 530 ], "__typename": [ 80 @@ -10952,7 +11375,7 @@ export default { 40, { "columns": [ - 538, + 544, "[e_award_tiers_select_column!]" ], "distinct": [ @@ -10961,10 +11384,10 @@ export default { } ], "max": [ - 532 + 538 ], "min": [ - 533 + 539 ], "__typename": [ 80 @@ -10972,13 +11395,13 @@ export default { }, "e_award_tiers_bool_exp": { "_and": [ - 527 + 533 ], "_not": [ - 527 + 533 ], "_or": [ - 527 + 533 ], "description": [ 82 @@ -10994,19 +11417,19 @@ export default { "e_award_tiers_enum": {}, "e_award_tiers_enum_comparison_exp": { "_eq": [ - 529 + 535 ], "_in": [ - 529 + 535 ], "_is_null": [ 5 ], "_neq": [ - 529 + 535 ], "_nin": [ - 529 + 535 ], "__typename": [ 80 @@ -11050,7 +11473,7 @@ export default { 40 ], "returning": [ - 524 + 530 ], "__typename": [ 80 @@ -11058,13 +11481,13 @@ export default { }, "e_award_tiers_on_conflict": { "constraint": [ - 528 + 534 ], "update_columns": [ - 542 + 548 ], "where": [ - 527 + 533 ], "__typename": [ 80 @@ -11072,10 +11495,10 @@ export default { }, "e_award_tiers_order_by": { "description": [ - 2946 + 2952 ], "value": [ - 2946 + 2952 ], "__typename": [ 80 @@ -11103,10 +11526,10 @@ export default { }, "e_award_tiers_stream_cursor_input": { "initial_value": [ - 541 + 547 ], "ordering": [ - 308 + 314 ], "__typename": [ 80 @@ -11126,10 +11549,10 @@ export default { "e_award_tiers_update_column": {}, "e_award_tiers_updates": { "_set": [ - 539 + 545 ], "where": [ - 527 + 533 ], "__typename": [ 80 @@ -11148,10 +11571,10 @@ export default { }, "e_check_in_settings_aggregate": { "aggregate": [ - 546 + 552 ], "nodes": [ - 544 + 550 ], "__typename": [ 80 @@ -11162,7 +11585,7 @@ export default { 40, { "columns": [ - 558, + 564, "[e_check_in_settings_select_column!]" ], "distinct": [ @@ -11171,10 +11594,10 @@ export default { } ], "max": [ - 552 + 558 ], "min": [ - 553 + 559 ], "__typename": [ 80 @@ -11182,13 +11605,13 @@ export default { }, "e_check_in_settings_bool_exp": { "_and": [ - 547 + 553 ], "_not": [ - 547 + 553 ], "_or": [ - 547 + 553 ], "description": [ 82 @@ -11204,19 +11627,19 @@ export default { "e_check_in_settings_enum": {}, "e_check_in_settings_enum_comparison_exp": { "_eq": [ - 549 + 555 ], "_in": [ - 549 + 555 ], "_is_null": [ 5 ], "_neq": [ - 549 + 555 ], "_nin": [ - 549 + 555 ], "__typename": [ 80 @@ -11260,7 +11683,7 @@ export default { 40 ], "returning": [ - 544 + 550 ], "__typename": [ 80 @@ -11268,13 +11691,13 @@ export default { }, "e_check_in_settings_on_conflict": { "constraint": [ - 548 + 554 ], "update_columns": [ - 562 + 568 ], "where": [ - 547 + 553 ], "__typename": [ 80 @@ -11282,10 +11705,10 @@ export default { }, "e_check_in_settings_order_by": { "description": [ - 2946 + 2952 ], "value": [ - 2946 + 2952 ], "__typename": [ 80 @@ -11313,10 +11736,10 @@ export default { }, "e_check_in_settings_stream_cursor_input": { "initial_value": [ - 561 + 567 ], "ordering": [ - 308 + 314 ], "__typename": [ 80 @@ -11336,10 +11759,10 @@ export default { "e_check_in_settings_update_column": {}, "e_check_in_settings_updates": { "_set": [ - 559 + 565 ], "where": [ - 547 + 553 ], "__typename": [ 80 @@ -11358,10 +11781,10 @@ export default { }, "e_draft_game_captain_selection_aggregate": { "aggregate": [ - 566 + 572 ], "nodes": [ - 564 + 570 ], "__typename": [ 80 @@ -11372,7 +11795,7 @@ export default { 40, { "columns": [ - 579, + 585, "[e_draft_game_captain_selection_select_column!]" ], "distinct": [ @@ -11381,10 +11804,10 @@ export default { } ], "max": [ - 572 + 578 ], "min": [ - 573 + 579 ], "__typename": [ 80 @@ -11392,13 +11815,13 @@ export default { }, "e_draft_game_captain_selection_bool_exp": { "_and": [ - 567 + 573 ], "_not": [ - 567 + 573 ], "_or": [ - 567 + 573 ], "description": [ 82 @@ -11414,19 +11837,19 @@ export default { "e_draft_game_captain_selection_enum": {}, "e_draft_game_captain_selection_enum_comparison_exp": { "_eq": [ - 569 + 575 ], "_in": [ - 569 + 575 ], "_is_null": [ 5 ], "_neq": [ - 569 + 575 ], "_nin": [ - 569 + 575 ], "__typename": [ 80 @@ -11470,7 +11893,7 @@ export default { 40 ], "returning": [ - 564 + 570 ], "__typename": [ 80 @@ -11478,10 +11901,10 @@ export default { }, "e_draft_game_captain_selection_obj_rel_insert_input": { "data": [ - 571 + 577 ], "on_conflict": [ - 576 + 582 ], "__typename": [ 80 @@ -11489,13 +11912,13 @@ export default { }, "e_draft_game_captain_selection_on_conflict": { "constraint": [ - 568 + 574 ], "update_columns": [ - 583 + 589 ], "where": [ - 567 + 573 ], "__typename": [ 80 @@ -11503,10 +11926,10 @@ export default { }, "e_draft_game_captain_selection_order_by": { "description": [ - 2946 + 2952 ], "value": [ - 2946 + 2952 ], "__typename": [ 80 @@ -11534,10 +11957,10 @@ export default { }, "e_draft_game_captain_selection_stream_cursor_input": { "initial_value": [ - 582 + 588 ], "ordering": [ - 308 + 314 ], "__typename": [ 80 @@ -11557,10 +11980,10 @@ export default { "e_draft_game_captain_selection_update_column": {}, "e_draft_game_captain_selection_updates": { "_set": [ - 580 + 586 ], "where": [ - 567 + 573 ], "__typename": [ 80 @@ -11579,10 +12002,10 @@ export default { }, "e_draft_game_draft_order_aggregate": { "aggregate": [ - 587 + 593 ], "nodes": [ - 585 + 591 ], "__typename": [ 80 @@ -11593,7 +12016,7 @@ export default { 40, { "columns": [ - 600, + 606, "[e_draft_game_draft_order_select_column!]" ], "distinct": [ @@ -11602,10 +12025,10 @@ export default { } ], "max": [ - 593 + 599 ], "min": [ - 594 + 600 ], "__typename": [ 80 @@ -11613,13 +12036,13 @@ export default { }, "e_draft_game_draft_order_bool_exp": { "_and": [ - 588 + 594 ], "_not": [ - 588 + 594 ], "_or": [ - 588 + 594 ], "description": [ 82 @@ -11635,19 +12058,19 @@ export default { "e_draft_game_draft_order_enum": {}, "e_draft_game_draft_order_enum_comparison_exp": { "_eq": [ - 590 + 596 ], "_in": [ - 590 + 596 ], "_is_null": [ 5 ], "_neq": [ - 590 + 596 ], "_nin": [ - 590 + 596 ], "__typename": [ 80 @@ -11691,7 +12114,7 @@ export default { 40 ], "returning": [ - 585 + 591 ], "__typename": [ 80 @@ -11699,10 +12122,10 @@ export default { }, "e_draft_game_draft_order_obj_rel_insert_input": { "data": [ - 592 + 598 ], "on_conflict": [ - 597 + 603 ], "__typename": [ 80 @@ -11710,13 +12133,13 @@ export default { }, "e_draft_game_draft_order_on_conflict": { "constraint": [ - 589 + 595 ], "update_columns": [ - 604 + 610 ], "where": [ - 588 + 594 ], "__typename": [ 80 @@ -11724,10 +12147,10 @@ export default { }, "e_draft_game_draft_order_order_by": { "description": [ - 2946 + 2952 ], "value": [ - 2946 + 2952 ], "__typename": [ 80 @@ -11755,10 +12178,10 @@ export default { }, "e_draft_game_draft_order_stream_cursor_input": { "initial_value": [ - 603 + 609 ], "ordering": [ - 308 + 314 ], "__typename": [ 80 @@ -11778,10 +12201,10 @@ export default { "e_draft_game_draft_order_update_column": {}, "e_draft_game_draft_order_updates": { "_set": [ - 601 + 607 ], "where": [ - 588 + 594 ], "__typename": [ 80 @@ -11800,10 +12223,10 @@ export default { }, "e_draft_game_mode_aggregate": { "aggregate": [ - 608 + 614 ], "nodes": [ - 606 + 612 ], "__typename": [ 80 @@ -11814,7 +12237,7 @@ export default { 40, { "columns": [ - 621, + 627, "[e_draft_game_mode_select_column!]" ], "distinct": [ @@ -11823,10 +12246,10 @@ export default { } ], "max": [ - 614 + 620 ], "min": [ - 615 + 621 ], "__typename": [ 80 @@ -11834,13 +12257,13 @@ export default { }, "e_draft_game_mode_bool_exp": { "_and": [ - 609 + 615 ], "_not": [ - 609 + 615 ], "_or": [ - 609 + 615 ], "description": [ 82 @@ -11856,19 +12279,19 @@ export default { "e_draft_game_mode_enum": {}, "e_draft_game_mode_enum_comparison_exp": { "_eq": [ - 611 + 617 ], "_in": [ - 611 + 617 ], "_is_null": [ 5 ], "_neq": [ - 611 + 617 ], "_nin": [ - 611 + 617 ], "__typename": [ 80 @@ -11912,7 +12335,7 @@ export default { 40 ], "returning": [ - 606 + 612 ], "__typename": [ 80 @@ -11920,10 +12343,10 @@ export default { }, "e_draft_game_mode_obj_rel_insert_input": { "data": [ - 613 + 619 ], "on_conflict": [ - 618 + 624 ], "__typename": [ 80 @@ -11931,13 +12354,13 @@ export default { }, "e_draft_game_mode_on_conflict": { "constraint": [ - 610 + 616 ], "update_columns": [ - 625 + 631 ], "where": [ - 609 + 615 ], "__typename": [ 80 @@ -11945,10 +12368,10 @@ export default { }, "e_draft_game_mode_order_by": { "description": [ - 2946 + 2952 ], "value": [ - 2946 + 2952 ], "__typename": [ 80 @@ -11976,10 +12399,10 @@ export default { }, "e_draft_game_mode_stream_cursor_input": { "initial_value": [ - 624 + 630 ], "ordering": [ - 308 + 314 ], "__typename": [ 80 @@ -11999,10 +12422,10 @@ export default { "e_draft_game_mode_update_column": {}, "e_draft_game_mode_updates": { "_set": [ - 622 + 628 ], "where": [ - 609 + 615 ], "__typename": [ 80 @@ -12021,10 +12444,10 @@ export default { }, "e_draft_game_player_status_aggregate": { "aggregate": [ - 629 + 635 ], "nodes": [ - 627 + 633 ], "__typename": [ 80 @@ -12035,7 +12458,7 @@ export default { 40, { "columns": [ - 642, + 648, "[e_draft_game_player_status_select_column!]" ], "distinct": [ @@ -12044,10 +12467,10 @@ export default { } ], "max": [ - 635 + 641 ], "min": [ - 636 + 642 ], "__typename": [ 80 @@ -12055,13 +12478,13 @@ export default { }, "e_draft_game_player_status_bool_exp": { "_and": [ - 630 + 636 ], "_not": [ - 630 + 636 ], "_or": [ - 630 + 636 ], "description": [ 82 @@ -12077,19 +12500,19 @@ export default { "e_draft_game_player_status_enum": {}, "e_draft_game_player_status_enum_comparison_exp": { "_eq": [ - 632 + 638 ], "_in": [ - 632 + 638 ], "_is_null": [ 5 ], "_neq": [ - 632 + 638 ], "_nin": [ - 632 + 638 ], "__typename": [ 80 @@ -12133,7 +12556,7 @@ export default { 40 ], "returning": [ - 627 + 633 ], "__typename": [ 80 @@ -12141,10 +12564,10 @@ export default { }, "e_draft_game_player_status_obj_rel_insert_input": { "data": [ - 634 + 640 ], "on_conflict": [ - 639 + 645 ], "__typename": [ 80 @@ -12152,13 +12575,13 @@ export default { }, "e_draft_game_player_status_on_conflict": { "constraint": [ - 631 + 637 ], "update_columns": [ - 646 + 652 ], "where": [ - 630 + 636 ], "__typename": [ 80 @@ -12166,10 +12589,10 @@ export default { }, "e_draft_game_player_status_order_by": { "description": [ - 2946 + 2952 ], "value": [ - 2946 + 2952 ], "__typename": [ 80 @@ -12197,10 +12620,10 @@ export default { }, "e_draft_game_player_status_stream_cursor_input": { "initial_value": [ - 645 + 651 ], "ordering": [ - 308 + 314 ], "__typename": [ 80 @@ -12220,10 +12643,10 @@ export default { "e_draft_game_player_status_update_column": {}, "e_draft_game_player_status_updates": { "_set": [ - 643 + 649 ], "where": [ - 630 + 636 ], "__typename": [ 80 @@ -12242,10 +12665,10 @@ export default { }, "e_draft_game_status_aggregate": { "aggregate": [ - 650 + 656 ], "nodes": [ - 648 + 654 ], "__typename": [ 80 @@ -12256,7 +12679,7 @@ export default { 40, { "columns": [ - 663, + 669, "[e_draft_game_status_select_column!]" ], "distinct": [ @@ -12265,10 +12688,10 @@ export default { } ], "max": [ - 656 + 662 ], "min": [ - 657 + 663 ], "__typename": [ 80 @@ -12276,13 +12699,13 @@ export default { }, "e_draft_game_status_bool_exp": { "_and": [ - 651 + 657 ], "_not": [ - 651 + 657 ], "_or": [ - 651 + 657 ], "description": [ 82 @@ -12298,19 +12721,19 @@ export default { "e_draft_game_status_enum": {}, "e_draft_game_status_enum_comparison_exp": { "_eq": [ - 653 + 659 ], "_in": [ - 653 + 659 ], "_is_null": [ 5 ], "_neq": [ - 653 + 659 ], "_nin": [ - 653 + 659 ], "__typename": [ 80 @@ -12354,7 +12777,7 @@ export default { 40 ], "returning": [ - 648 + 654 ], "__typename": [ 80 @@ -12362,10 +12785,10 @@ export default { }, "e_draft_game_status_obj_rel_insert_input": { "data": [ - 655 + 661 ], "on_conflict": [ - 660 + 666 ], "__typename": [ 80 @@ -12373,13 +12796,13 @@ export default { }, "e_draft_game_status_on_conflict": { "constraint": [ - 652 + 658 ], "update_columns": [ - 667 + 673 ], "where": [ - 651 + 657 ], "__typename": [ 80 @@ -12387,10 +12810,10 @@ export default { }, "e_draft_game_status_order_by": { "description": [ - 2946 + 2952 ], "value": [ - 2946 + 2952 ], "__typename": [ 80 @@ -12418,10 +12841,10 @@ export default { }, "e_draft_game_status_stream_cursor_input": { "initial_value": [ - 666 + 672 ], "ordering": [ - 308 + 314 ], "__typename": [ 80 @@ -12441,10 +12864,10 @@ export default { "e_draft_game_status_update_column": {}, "e_draft_game_status_updates": { "_set": [ - 664 + 670 ], "where": [ - 651 + 657 ], "__typename": [ 80 @@ -12463,10 +12886,10 @@ export default { }, "e_event_media_access_aggregate": { "aggregate": [ - 671 + 677 ], "nodes": [ - 669 + 675 ], "__typename": [ 80 @@ -12477,7 +12900,7 @@ export default { 40, { "columns": [ - 683, + 689, "[e_event_media_access_select_column!]" ], "distinct": [ @@ -12486,10 +12909,10 @@ export default { } ], "max": [ - 677 + 683 ], "min": [ - 678 + 684 ], "__typename": [ 80 @@ -12497,13 +12920,13 @@ export default { }, "e_event_media_access_bool_exp": { "_and": [ - 672 + 678 ], "_not": [ - 672 + 678 ], "_or": [ - 672 + 678 ], "description": [ 82 @@ -12519,19 +12942,19 @@ export default { "e_event_media_access_enum": {}, "e_event_media_access_enum_comparison_exp": { "_eq": [ - 674 + 680 ], "_in": [ - 674 + 680 ], "_is_null": [ 5 ], "_neq": [ - 674 + 680 ], "_nin": [ - 674 + 680 ], "__typename": [ 80 @@ -12575,7 +12998,7 @@ export default { 40 ], "returning": [ - 669 + 675 ], "__typename": [ 80 @@ -12583,13 +13006,13 @@ export default { }, "e_event_media_access_on_conflict": { "constraint": [ - 673 + 679 ], "update_columns": [ - 687 + 693 ], "where": [ - 672 + 678 ], "__typename": [ 80 @@ -12597,10 +13020,10 @@ export default { }, "e_event_media_access_order_by": { "description": [ - 2946 + 2952 ], "value": [ - 2946 + 2952 ], "__typename": [ 80 @@ -12628,10 +13051,10 @@ export default { }, "e_event_media_access_stream_cursor_input": { "initial_value": [ - 686 + 692 ], "ordering": [ - 308 + 314 ], "__typename": [ 80 @@ -12651,10 +13074,10 @@ export default { "e_event_media_access_update_column": {}, "e_event_media_access_updates": { "_set": [ - 684 + 690 ], "where": [ - 672 + 678 ], "__typename": [ 80 @@ -12673,10 +13096,10 @@ export default { }, "e_event_visibility_aggregate": { "aggregate": [ - 691 + 697 ], "nodes": [ - 689 + 695 ], "__typename": [ 80 @@ -12687,7 +13110,7 @@ export default { 40, { "columns": [ - 703, + 709, "[e_event_visibility_select_column!]" ], "distinct": [ @@ -12696,10 +13119,10 @@ export default { } ], "max": [ - 697 + 703 ], "min": [ - 698 + 704 ], "__typename": [ 80 @@ -12707,13 +13130,13 @@ export default { }, "e_event_visibility_bool_exp": { "_and": [ - 692 + 698 ], "_not": [ - 692 + 698 ], "_or": [ - 692 + 698 ], "description": [ 82 @@ -12729,19 +13152,19 @@ export default { "e_event_visibility_enum": {}, "e_event_visibility_enum_comparison_exp": { "_eq": [ - 694 + 700 ], "_in": [ - 694 + 700 ], "_is_null": [ 5 ], "_neq": [ - 694 + 700 ], "_nin": [ - 694 + 700 ], "__typename": [ 80 @@ -12785,7 +13208,7 @@ export default { 40 ], "returning": [ - 689 + 695 ], "__typename": [ 80 @@ -12793,13 +13216,13 @@ export default { }, "e_event_visibility_on_conflict": { "constraint": [ - 693 + 699 ], "update_columns": [ - 707 + 713 ], "where": [ - 692 + 698 ], "__typename": [ 80 @@ -12807,10 +13230,10 @@ export default { }, "e_event_visibility_order_by": { "description": [ - 2946 + 2952 ], "value": [ - 2946 + 2952 ], "__typename": [ 80 @@ -12838,10 +13261,10 @@ export default { }, "e_event_visibility_stream_cursor_input": { "initial_value": [ - 706 + 712 ], "ordering": [ - 308 + 314 ], "__typename": [ 80 @@ -12861,10 +13284,10 @@ export default { "e_event_visibility_update_column": {}, "e_event_visibility_updates": { "_set": [ - 704 + 710 ], "where": [ - 692 + 698 ], "__typename": [ 80 @@ -12883,10 +13306,10 @@ export default { }, "e_friend_status_aggregate": { "aggregate": [ - 711 + 717 ], "nodes": [ - 709 + 715 ], "__typename": [ 80 @@ -12897,7 +13320,7 @@ export default { 40, { "columns": [ - 724, + 730, "[e_friend_status_select_column!]" ], "distinct": [ @@ -12906,10 +13329,10 @@ export default { } ], "max": [ - 717 + 723 ], "min": [ - 718 + 724 ], "__typename": [ 80 @@ -12917,13 +13340,13 @@ export default { }, "e_friend_status_bool_exp": { "_and": [ - 712 + 718 ], "_not": [ - 712 + 718 ], "_or": [ - 712 + 718 ], "description": [ 82 @@ -12939,19 +13362,19 @@ export default { "e_friend_status_enum": {}, "e_friend_status_enum_comparison_exp": { "_eq": [ - 714 + 720 ], "_in": [ - 714 + 720 ], "_is_null": [ 5 ], "_neq": [ - 714 + 720 ], "_nin": [ - 714 + 720 ], "__typename": [ 80 @@ -12995,7 +13418,7 @@ export default { 40 ], "returning": [ - 709 + 715 ], "__typename": [ 80 @@ -13003,10 +13426,10 @@ export default { }, "e_friend_status_obj_rel_insert_input": { "data": [ - 716 + 722 ], "on_conflict": [ - 721 + 727 ], "__typename": [ 80 @@ -13014,13 +13437,13 @@ export default { }, "e_friend_status_on_conflict": { "constraint": [ - 713 + 719 ], "update_columns": [ - 728 + 734 ], "where": [ - 712 + 718 ], "__typename": [ 80 @@ -13028,10 +13451,10 @@ export default { }, "e_friend_status_order_by": { "description": [ - 2946 + 2952 ], "value": [ - 2946 + 2952 ], "__typename": [ 80 @@ -13059,10 +13482,10 @@ export default { }, "e_friend_status_stream_cursor_input": { "initial_value": [ - 727 + 733 ], "ordering": [ - 308 + 314 ], "__typename": [ 80 @@ -13082,10 +13505,10 @@ export default { "e_friend_status_update_column": {}, "e_friend_status_updates": { "_set": [ - 725 + 731 ], "where": [ - 712 + 718 ], "__typename": [ 80 @@ -13104,10 +13527,10 @@ export default { }, "e_game_cfg_types_aggregate": { "aggregate": [ - 732 + 738 ], "nodes": [ - 730 + 736 ], "__typename": [ 80 @@ -13118,7 +13541,7 @@ export default { 40, { "columns": [ - 744, + 750, "[e_game_cfg_types_select_column!]" ], "distinct": [ @@ -13127,10 +13550,10 @@ export default { } ], "max": [ - 738 + 744 ], "min": [ - 739 + 745 ], "__typename": [ 80 @@ -13138,13 +13561,13 @@ export default { }, "e_game_cfg_types_bool_exp": { "_and": [ - 733 + 739 ], "_not": [ - 733 + 739 ], "_or": [ - 733 + 739 ], "description": [ 82 @@ -13160,19 +13583,19 @@ export default { "e_game_cfg_types_enum": {}, "e_game_cfg_types_enum_comparison_exp": { "_eq": [ - 735 + 741 ], "_in": [ - 735 + 741 ], "_is_null": [ 5 ], "_neq": [ - 735 + 741 ], "_nin": [ - 735 + 741 ], "__typename": [ 80 @@ -13216,7 +13639,7 @@ export default { 40 ], "returning": [ - 730 + 736 ], "__typename": [ 80 @@ -13224,13 +13647,13 @@ export default { }, "e_game_cfg_types_on_conflict": { "constraint": [ - 734 + 740 ], "update_columns": [ - 748 + 754 ], "where": [ - 733 + 739 ], "__typename": [ 80 @@ -13238,10 +13661,10 @@ export default { }, "e_game_cfg_types_order_by": { "description": [ - 2946 + 2952 ], "value": [ - 2946 + 2952 ], "__typename": [ 80 @@ -13269,10 +13692,10 @@ export default { }, "e_game_cfg_types_stream_cursor_input": { "initial_value": [ - 747 + 753 ], "ordering": [ - 308 + 314 ], "__typename": [ 80 @@ -13292,10 +13715,10 @@ export default { "e_game_cfg_types_update_column": {}, "e_game_cfg_types_updates": { "_set": [ - 745 + 751 ], "where": [ - 733 + 739 ], "__typename": [ 80 @@ -13314,10 +13737,10 @@ export default { }, "e_game_server_node_statuses_aggregate": { "aggregate": [ - 752 + 758 ], "nodes": [ - 750 + 756 ], "__typename": [ 80 @@ -13328,7 +13751,7 @@ export default { 40, { "columns": [ - 765, + 771, "[e_game_server_node_statuses_select_column!]" ], "distinct": [ @@ -13337,10 +13760,10 @@ export default { } ], "max": [ - 758 + 764 ], "min": [ - 759 + 765 ], "__typename": [ 80 @@ -13348,13 +13771,13 @@ export default { }, "e_game_server_node_statuses_bool_exp": { "_and": [ - 753 + 759 ], "_not": [ - 753 + 759 ], "_or": [ - 753 + 759 ], "description": [ 82 @@ -13370,19 +13793,19 @@ export default { "e_game_server_node_statuses_enum": {}, "e_game_server_node_statuses_enum_comparison_exp": { "_eq": [ - 755 + 761 ], "_in": [ - 755 + 761 ], "_is_null": [ 5 ], "_neq": [ - 755 + 761 ], "_nin": [ - 755 + 761 ], "__typename": [ 80 @@ -13426,7 +13849,7 @@ export default { 40 ], "returning": [ - 750 + 756 ], "__typename": [ 80 @@ -13434,10 +13857,10 @@ export default { }, "e_game_server_node_statuses_obj_rel_insert_input": { "data": [ - 757 + 763 ], "on_conflict": [ - 762 + 768 ], "__typename": [ 80 @@ -13445,13 +13868,13 @@ export default { }, "e_game_server_node_statuses_on_conflict": { "constraint": [ - 754 + 760 ], "update_columns": [ - 769 + 775 ], "where": [ - 753 + 759 ], "__typename": [ 80 @@ -13459,10 +13882,10 @@ export default { }, "e_game_server_node_statuses_order_by": { "description": [ - 2946 + 2952 ], "value": [ - 2946 + 2952 ], "__typename": [ 80 @@ -13490,10 +13913,10 @@ export default { }, "e_game_server_node_statuses_stream_cursor_input": { "initial_value": [ - 768 + 774 ], "ordering": [ - 308 + 314 ], "__typename": [ 80 @@ -13513,10 +13936,10 @@ export default { "e_game_server_node_statuses_update_column": {}, "e_game_server_node_statuses_updates": { "_set": [ - 766 + 772 ], "where": [ - 753 + 759 ], "__typename": [ 80 @@ -13535,10 +13958,10 @@ export default { }, "e_league_movement_types_aggregate": { "aggregate": [ - 773 + 779 ], "nodes": [ - 771 + 777 ], "__typename": [ 80 @@ -13549,7 +13972,7 @@ export default { 40, { "columns": [ - 786, + 792, "[e_league_movement_types_select_column!]" ], "distinct": [ @@ -13558,10 +13981,10 @@ export default { } ], "max": [ - 779 + 785 ], "min": [ - 780 + 786 ], "__typename": [ 80 @@ -13569,13 +13992,13 @@ export default { }, "e_league_movement_types_bool_exp": { "_and": [ - 774 + 780 ], "_not": [ - 774 + 780 ], "_or": [ - 774 + 780 ], "description": [ 82 @@ -13591,19 +14014,19 @@ export default { "e_league_movement_types_enum": {}, "e_league_movement_types_enum_comparison_exp": { "_eq": [ - 776 + 782 ], "_in": [ - 776 + 782 ], "_is_null": [ 5 ], "_neq": [ - 776 + 782 ], "_nin": [ - 776 + 782 ], "__typename": [ 80 @@ -13647,7 +14070,7 @@ export default { 40 ], "returning": [ - 771 + 777 ], "__typename": [ 80 @@ -13655,10 +14078,10 @@ export default { }, "e_league_movement_types_obj_rel_insert_input": { "data": [ - 778 + 784 ], "on_conflict": [ - 783 + 789 ], "__typename": [ 80 @@ -13666,13 +14089,13 @@ export default { }, "e_league_movement_types_on_conflict": { "constraint": [ - 775 + 781 ], "update_columns": [ - 790 + 796 ], "where": [ - 774 + 780 ], "__typename": [ 80 @@ -13680,10 +14103,10 @@ export default { }, "e_league_movement_types_order_by": { "description": [ - 2946 + 2952 ], "value": [ - 2946 + 2952 ], "__typename": [ 80 @@ -13711,10 +14134,10 @@ export default { }, "e_league_movement_types_stream_cursor_input": { "initial_value": [ - 789 + 795 ], "ordering": [ - 308 + 314 ], "__typename": [ 80 @@ -13734,10 +14157,10 @@ export default { "e_league_movement_types_update_column": {}, "e_league_movement_types_updates": { "_set": [ - 787 + 793 ], "where": [ - 774 + 780 ], "__typename": [ 80 @@ -13756,10 +14179,10 @@ export default { }, "e_league_proposal_statuses_aggregate": { "aggregate": [ - 794 + 800 ], "nodes": [ - 792 + 798 ], "__typename": [ 80 @@ -13770,7 +14193,7 @@ export default { 40, { "columns": [ - 807, + 813, "[e_league_proposal_statuses_select_column!]" ], "distinct": [ @@ -13779,10 +14202,10 @@ export default { } ], "max": [ - 800 + 806 ], "min": [ - 801 + 807 ], "__typename": [ 80 @@ -13790,13 +14213,13 @@ export default { }, "e_league_proposal_statuses_bool_exp": { "_and": [ - 795 + 801 ], "_not": [ - 795 + 801 ], "_or": [ - 795 + 801 ], "description": [ 82 @@ -13812,19 +14235,19 @@ export default { "e_league_proposal_statuses_enum": {}, "e_league_proposal_statuses_enum_comparison_exp": { "_eq": [ - 797 + 803 ], "_in": [ - 797 + 803 ], "_is_null": [ 5 ], "_neq": [ - 797 + 803 ], "_nin": [ - 797 + 803 ], "__typename": [ 80 @@ -13868,7 +14291,7 @@ export default { 40 ], "returning": [ - 792 + 798 ], "__typename": [ 80 @@ -13876,10 +14299,10 @@ export default { }, "e_league_proposal_statuses_obj_rel_insert_input": { "data": [ - 799 + 805 ], "on_conflict": [ - 804 + 810 ], "__typename": [ 80 @@ -13887,13 +14310,13 @@ export default { }, "e_league_proposal_statuses_on_conflict": { "constraint": [ - 796 + 802 ], "update_columns": [ - 811 + 817 ], "where": [ - 795 + 801 ], "__typename": [ 80 @@ -13901,10 +14324,10 @@ export default { }, "e_league_proposal_statuses_order_by": { "description": [ - 2946 + 2952 ], "value": [ - 2946 + 2952 ], "__typename": [ 80 @@ -13932,10 +14355,10 @@ export default { }, "e_league_proposal_statuses_stream_cursor_input": { "initial_value": [ - 810 + 816 ], "ordering": [ - 308 + 314 ], "__typename": [ 80 @@ -13955,10 +14378,10 @@ export default { "e_league_proposal_statuses_update_column": {}, "e_league_proposal_statuses_updates": { "_set": [ - 808 + 814 ], "where": [ - 795 + 801 ], "__typename": [ 80 @@ -13977,10 +14400,10 @@ export default { }, "e_league_registration_statuses_aggregate": { "aggregate": [ - 815 + 821 ], "nodes": [ - 813 + 819 ], "__typename": [ 80 @@ -13991,7 +14414,7 @@ export default { 40, { "columns": [ - 828, + 834, "[e_league_registration_statuses_select_column!]" ], "distinct": [ @@ -14000,10 +14423,10 @@ export default { } ], "max": [ - 821 + 827 ], "min": [ - 822 + 828 ], "__typename": [ 80 @@ -14011,13 +14434,13 @@ export default { }, "e_league_registration_statuses_bool_exp": { "_and": [ - 816 + 822 ], "_not": [ - 816 + 822 ], "_or": [ - 816 + 822 ], "description": [ 82 @@ -14033,19 +14456,19 @@ export default { "e_league_registration_statuses_enum": {}, "e_league_registration_statuses_enum_comparison_exp": { "_eq": [ - 818 + 824 ], "_in": [ - 818 + 824 ], "_is_null": [ 5 ], "_neq": [ - 818 + 824 ], "_nin": [ - 818 + 824 ], "__typename": [ 80 @@ -14089,7 +14512,7 @@ export default { 40 ], "returning": [ - 813 + 819 ], "__typename": [ 80 @@ -14097,10 +14520,10 @@ export default { }, "e_league_registration_statuses_obj_rel_insert_input": { "data": [ - 820 + 826 ], "on_conflict": [ - 825 + 831 ], "__typename": [ 80 @@ -14108,13 +14531,13 @@ export default { }, "e_league_registration_statuses_on_conflict": { "constraint": [ - 817 + 823 ], "update_columns": [ - 832 + 838 ], "where": [ - 816 + 822 ], "__typename": [ 80 @@ -14122,10 +14545,10 @@ export default { }, "e_league_registration_statuses_order_by": { "description": [ - 2946 + 2952 ], "value": [ - 2946 + 2952 ], "__typename": [ 80 @@ -14153,10 +14576,10 @@ export default { }, "e_league_registration_statuses_stream_cursor_input": { "initial_value": [ - 831 + 837 ], "ordering": [ - 308 + 314 ], "__typename": [ 80 @@ -14176,10 +14599,10 @@ export default { "e_league_registration_statuses_update_column": {}, "e_league_registration_statuses_updates": { "_set": [ - 829 + 835 ], "where": [ - 816 + 822 ], "__typename": [ 80 @@ -14198,10 +14621,10 @@ export default { }, "e_league_season_statuses_aggregate": { "aggregate": [ - 836 + 842 ], "nodes": [ - 834 + 840 ], "__typename": [ 80 @@ -14212,7 +14635,7 @@ export default { 40, { "columns": [ - 849, + 855, "[e_league_season_statuses_select_column!]" ], "distinct": [ @@ -14221,10 +14644,10 @@ export default { } ], "max": [ - 842 + 848 ], "min": [ - 843 + 849 ], "__typename": [ 80 @@ -14232,13 +14655,13 @@ export default { }, "e_league_season_statuses_bool_exp": { "_and": [ - 837 + 843 ], "_not": [ - 837 + 843 ], "_or": [ - 837 + 843 ], "description": [ 82 @@ -14254,19 +14677,19 @@ export default { "e_league_season_statuses_enum": {}, "e_league_season_statuses_enum_comparison_exp": { "_eq": [ - 839 + 845 ], "_in": [ - 839 + 845 ], "_is_null": [ 5 ], "_neq": [ - 839 + 845 ], "_nin": [ - 839 + 845 ], "__typename": [ 80 @@ -14310,7 +14733,7 @@ export default { 40 ], "returning": [ - 834 + 840 ], "__typename": [ 80 @@ -14318,10 +14741,10 @@ export default { }, "e_league_season_statuses_obj_rel_insert_input": { "data": [ - 841 + 847 ], "on_conflict": [ - 846 + 852 ], "__typename": [ 80 @@ -14329,13 +14752,13 @@ export default { }, "e_league_season_statuses_on_conflict": { "constraint": [ - 838 + 844 ], "update_columns": [ - 853 + 859 ], "where": [ - 837 + 843 ], "__typename": [ 80 @@ -14343,10 +14766,10 @@ export default { }, "e_league_season_statuses_order_by": { "description": [ - 2946 + 2952 ], "value": [ - 2946 + 2952 ], "__typename": [ 80 @@ -14374,10 +14797,10 @@ export default { }, "e_league_season_statuses_stream_cursor_input": { "initial_value": [ - 852 + 858 ], "ordering": [ - 308 + 314 ], "__typename": [ 80 @@ -14397,10 +14820,10 @@ export default { "e_league_season_statuses_update_column": {}, "e_league_season_statuses_updates": { "_set": [ - 850 + 856 ], "where": [ - 837 + 843 ], "__typename": [ 80 @@ -14419,10 +14842,10 @@ export default { }, "e_lobby_access_aggregate": { "aggregate": [ - 857 + 863 ], "nodes": [ - 855 + 861 ], "__typename": [ 80 @@ -14433,7 +14856,7 @@ export default { 40, { "columns": [ - 870, + 876, "[e_lobby_access_select_column!]" ], "distinct": [ @@ -14442,10 +14865,10 @@ export default { } ], "max": [ - 863 + 869 ], "min": [ - 864 + 870 ], "__typename": [ 80 @@ -14453,13 +14876,13 @@ export default { }, "e_lobby_access_bool_exp": { "_and": [ - 858 + 864 ], "_not": [ - 858 + 864 ], "_or": [ - 858 + 864 ], "description": [ 82 @@ -14475,19 +14898,19 @@ export default { "e_lobby_access_enum": {}, "e_lobby_access_enum_comparison_exp": { "_eq": [ - 860 + 866 ], "_in": [ - 860 + 866 ], "_is_null": [ 5 ], "_neq": [ - 860 + 866 ], "_nin": [ - 860 + 866 ], "__typename": [ 80 @@ -14531,7 +14954,7 @@ export default { 40 ], "returning": [ - 855 + 861 ], "__typename": [ 80 @@ -14539,10 +14962,10 @@ export default { }, "e_lobby_access_obj_rel_insert_input": { "data": [ - 862 + 868 ], "on_conflict": [ - 867 + 873 ], "__typename": [ 80 @@ -14550,13 +14973,13 @@ export default { }, "e_lobby_access_on_conflict": { "constraint": [ - 859 + 865 ], "update_columns": [ - 874 + 880 ], "where": [ - 858 + 864 ], "__typename": [ 80 @@ -14564,10 +14987,10 @@ export default { }, "e_lobby_access_order_by": { "description": [ - 2946 + 2952 ], "value": [ - 2946 + 2952 ], "__typename": [ 80 @@ -14595,10 +15018,10 @@ export default { }, "e_lobby_access_stream_cursor_input": { "initial_value": [ - 873 + 879 ], "ordering": [ - 308 + 314 ], "__typename": [ 80 @@ -14618,10 +15041,10 @@ export default { "e_lobby_access_update_column": {}, "e_lobby_access_updates": { "_set": [ - 871 + 877 ], "where": [ - 858 + 864 ], "__typename": [ 80 @@ -14640,10 +15063,10 @@ export default { }, "e_lobby_player_status_aggregate": { "aggregate": [ - 878 + 884 ], "nodes": [ - 876 + 882 ], "__typename": [ 80 @@ -14654,7 +15077,7 @@ export default { 40, { "columns": [ - 890, + 896, "[e_lobby_player_status_select_column!]" ], "distinct": [ @@ -14663,10 +15086,10 @@ export default { } ], "max": [ - 884 + 890 ], "min": [ - 885 + 891 ], "__typename": [ 80 @@ -14674,13 +15097,13 @@ export default { }, "e_lobby_player_status_bool_exp": { "_and": [ - 879 + 885 ], "_not": [ - 879 + 885 ], "_or": [ - 879 + 885 ], "description": [ 82 @@ -14696,19 +15119,19 @@ export default { "e_lobby_player_status_enum": {}, "e_lobby_player_status_enum_comparison_exp": { "_eq": [ - 881 + 887 ], "_in": [ - 881 + 887 ], "_is_null": [ 5 ], "_neq": [ - 881 + 887 ], "_nin": [ - 881 + 887 ], "__typename": [ 80 @@ -14752,7 +15175,7 @@ export default { 40 ], "returning": [ - 876 + 882 ], "__typename": [ 80 @@ -14760,13 +15183,13 @@ export default { }, "e_lobby_player_status_on_conflict": { "constraint": [ - 880 + 886 ], "update_columns": [ - 894 + 900 ], "where": [ - 879 + 885 ], "__typename": [ 80 @@ -14774,10 +15197,10 @@ export default { }, "e_lobby_player_status_order_by": { "description": [ - 2946 + 2952 ], "value": [ - 2946 + 2952 ], "__typename": [ 80 @@ -14805,10 +15228,10 @@ export default { }, "e_lobby_player_status_stream_cursor_input": { "initial_value": [ - 893 + 899 ], "ordering": [ - 308 + 314 ], "__typename": [ 80 @@ -14828,10 +15251,10 @@ export default { "e_lobby_player_status_update_column": {}, "e_lobby_player_status_updates": { "_set": [ - 891 + 897 ], "where": [ - 879 + 885 ], "__typename": [ 80 @@ -14850,10 +15273,10 @@ export default { }, "e_map_pool_types_aggregate": { "aggregate": [ - 898 + 904 ], "nodes": [ - 896 + 902 ], "__typename": [ 80 @@ -14864,7 +15287,7 @@ export default { 40, { "columns": [ - 911, + 917, "[e_map_pool_types_select_column!]" ], "distinct": [ @@ -14873,10 +15296,10 @@ export default { } ], "max": [ - 904 + 910 ], "min": [ - 905 + 911 ], "__typename": [ 80 @@ -14884,13 +15307,13 @@ export default { }, "e_map_pool_types_bool_exp": { "_and": [ - 899 + 905 ], "_not": [ - 899 + 905 ], "_or": [ - 899 + 905 ], "description": [ 82 @@ -14906,19 +15329,19 @@ export default { "e_map_pool_types_enum": {}, "e_map_pool_types_enum_comparison_exp": { "_eq": [ - 901 + 907 ], "_in": [ - 901 + 907 ], "_is_null": [ 5 ], "_neq": [ - 901 + 907 ], "_nin": [ - 901 + 907 ], "__typename": [ 80 @@ -14962,7 +15385,7 @@ export default { 40 ], "returning": [ - 896 + 902 ], "__typename": [ 80 @@ -14970,10 +15393,10 @@ export default { }, "e_map_pool_types_obj_rel_insert_input": { "data": [ - 903 + 909 ], "on_conflict": [ - 908 + 914 ], "__typename": [ 80 @@ -14981,13 +15404,13 @@ export default { }, "e_map_pool_types_on_conflict": { "constraint": [ - 900 + 906 ], "update_columns": [ - 915 + 921 ], "where": [ - 899 + 905 ], "__typename": [ 80 @@ -14995,10 +15418,10 @@ export default { }, "e_map_pool_types_order_by": { "description": [ - 2946 + 2952 ], "value": [ - 2946 + 2952 ], "__typename": [ 80 @@ -15026,10 +15449,10 @@ export default { }, "e_map_pool_types_stream_cursor_input": { "initial_value": [ - 914 + 920 ], "ordering": [ - 308 + 314 ], "__typename": [ 80 @@ -15049,10 +15472,10 @@ export default { "e_map_pool_types_update_column": {}, "e_map_pool_types_updates": { "_set": [ - 912 + 918 ], "where": [ - 899 + 905 ], "__typename": [ 80 @@ -15063,10 +15486,10 @@ export default { 80 ], "match_clips": [ - 2308, + 2314, { "distinct_on": [ - 2330, + 2336, "[match_clips_select_column!]" ], "limit": [ @@ -15076,19 +15499,19 @@ export default { 40 ], "order_by": [ - 2328, + 2334, "[match_clips_order_by!]" ], "where": [ - 2317 + 2323 ] } ], "match_clips_aggregate": [ - 2309, + 2315, { "distinct_on": [ - 2330, + 2336, "[match_clips_select_column!]" ], "limit": [ @@ -15098,11 +15521,11 @@ export default { 40 ], "order_by": [ - 2328, + 2334, "[match_clips_order_by!]" ], "where": [ - 2317 + 2323 ] } ], @@ -15115,10 +15538,10 @@ export default { }, "e_match_clip_visibility_aggregate": { "aggregate": [ - 919 + 925 ], "nodes": [ - 917 + 923 ], "__typename": [ 80 @@ -15129,7 +15552,7 @@ export default { 40, { "columns": [ - 931, + 937, "[e_match_clip_visibility_select_column!]" ], "distinct": [ @@ -15138,10 +15561,10 @@ export default { } ], "max": [ - 925 + 931 ], "min": [ - 926 + 932 ], "__typename": [ 80 @@ -15149,22 +15572,22 @@ export default { }, "e_match_clip_visibility_bool_exp": { "_and": [ - 920 + 926 ], "_not": [ - 920 + 926 ], "_or": [ - 920 + 926 ], "description": [ 82 ], "match_clips": [ - 2317 + 2323 ], "match_clips_aggregate": [ - 2310 + 2316 ], "value": [ 82 @@ -15177,19 +15600,19 @@ export default { "e_match_clip_visibility_enum": {}, "e_match_clip_visibility_enum_comparison_exp": { "_eq": [ - 922 + 928 ], "_in": [ - 922 + 928 ], "_is_null": [ 5 ], "_neq": [ - 922 + 928 ], "_nin": [ - 922 + 928 ], "__typename": [ 80 @@ -15200,7 +15623,7 @@ export default { 80 ], "match_clips": [ - 2314 + 2320 ], "value": [ 80 @@ -15236,7 +15659,7 @@ export default { 40 ], "returning": [ - 917 + 923 ], "__typename": [ 80 @@ -15244,13 +15667,13 @@ export default { }, "e_match_clip_visibility_on_conflict": { "constraint": [ - 921 + 927 ], "update_columns": [ - 935 + 941 ], "where": [ - 920 + 926 ], "__typename": [ 80 @@ -15258,13 +15681,13 @@ export default { }, "e_match_clip_visibility_order_by": { "description": [ - 2946 + 2952 ], "match_clips_aggregate": [ - 2313 + 2319 ], "value": [ - 2946 + 2952 ], "__typename": [ 80 @@ -15292,10 +15715,10 @@ export default { }, "e_match_clip_visibility_stream_cursor_input": { "initial_value": [ - 934 + 940 ], "ordering": [ - 308 + 314 ], "__typename": [ 80 @@ -15315,10 +15738,10 @@ export default { "e_match_clip_visibility_update_column": {}, "e_match_clip_visibility_updates": { "_set": [ - 932 + 938 ], "where": [ - 920 + 926 ], "__typename": [ 80 @@ -15329,10 +15752,10 @@ export default { 80 ], "match_maps": [ - 2599, + 2605, { "distinct_on": [ - 2621, + 2627, "[match_maps_select_column!]" ], "limit": [ @@ -15342,19 +15765,19 @@ export default { 40 ], "order_by": [ - 2619, + 2625, "[match_maps_order_by!]" ], "where": [ - 2608 + 2614 ] } ], "match_maps_aggregate": [ - 2600, + 2606, { "distinct_on": [ - 2621, + 2627, "[match_maps_select_column!]" ], "limit": [ @@ -15364,11 +15787,11 @@ export default { 40 ], "order_by": [ - 2619, + 2625, "[match_maps_order_by!]" ], "where": [ - 2608 + 2614 ] } ], @@ -15381,10 +15804,10 @@ export default { }, "e_match_map_status_aggregate": { "aggregate": [ - 939 + 945 ], "nodes": [ - 937 + 943 ], "__typename": [ 80 @@ -15395,7 +15818,7 @@ export default { 40, { "columns": [ - 952, + 958, "[e_match_map_status_select_column!]" ], "distinct": [ @@ -15404,10 +15827,10 @@ export default { } ], "max": [ - 945 + 951 ], "min": [ - 946 + 952 ], "__typename": [ 80 @@ -15415,22 +15838,22 @@ export default { }, "e_match_map_status_bool_exp": { "_and": [ - 940 + 946 ], "_not": [ - 940 + 946 ], "_or": [ - 940 + 946 ], "description": [ 82 ], "match_maps": [ - 2608 + 2614 ], "match_maps_aggregate": [ - 2601 + 2607 ], "value": [ 82 @@ -15443,19 +15866,19 @@ export default { "e_match_map_status_enum": {}, "e_match_map_status_enum_comparison_exp": { "_eq": [ - 942 + 948 ], "_in": [ - 942 + 948 ], "_is_null": [ 5 ], "_neq": [ - 942 + 948 ], "_nin": [ - 942 + 948 ], "__typename": [ 80 @@ -15466,7 +15889,7 @@ export default { 80 ], "match_maps": [ - 2605 + 2611 ], "value": [ 80 @@ -15502,7 +15925,7 @@ export default { 40 ], "returning": [ - 937 + 943 ], "__typename": [ 80 @@ -15510,10 +15933,10 @@ export default { }, "e_match_map_status_obj_rel_insert_input": { "data": [ - 944 + 950 ], "on_conflict": [ - 949 + 955 ], "__typename": [ 80 @@ -15521,13 +15944,13 @@ export default { }, "e_match_map_status_on_conflict": { "constraint": [ - 941 + 947 ], "update_columns": [ - 956 + 962 ], "where": [ - 940 + 946 ], "__typename": [ 80 @@ -15535,13 +15958,13 @@ export default { }, "e_match_map_status_order_by": { "description": [ - 2946 + 2952 ], "match_maps_aggregate": [ - 2604 + 2610 ], "value": [ - 2946 + 2952 ], "__typename": [ 80 @@ -15569,10 +15992,10 @@ export default { }, "e_match_map_status_stream_cursor_input": { "initial_value": [ - 955 + 961 ], "ordering": [ - 308 + 314 ], "__typename": [ 80 @@ -15592,10 +16015,10 @@ export default { "e_match_map_status_update_column": {}, "e_match_map_status_updates": { "_set": [ - 953 + 959 ], "where": [ - 940 + 946 ], "__typename": [ 80 @@ -15614,10 +16037,10 @@ export default { }, "e_match_mode_aggregate": { "aggregate": [ - 960 + 966 ], "nodes": [ - 958 + 964 ], "__typename": [ 80 @@ -15628,7 +16051,7 @@ export default { 40, { "columns": [ - 972, + 978, "[e_match_mode_select_column!]" ], "distinct": [ @@ -15637,10 +16060,10 @@ export default { } ], "max": [ - 966 + 972 ], "min": [ - 967 + 973 ], "__typename": [ 80 @@ -15648,13 +16071,13 @@ export default { }, "e_match_mode_bool_exp": { "_and": [ - 961 + 967 ], "_not": [ - 961 + 967 ], "_or": [ - 961 + 967 ], "description": [ 82 @@ -15670,19 +16093,19 @@ export default { "e_match_mode_enum": {}, "e_match_mode_enum_comparison_exp": { "_eq": [ - 963 + 969 ], "_in": [ - 963 + 969 ], "_is_null": [ 5 ], "_neq": [ - 963 + 969 ], "_nin": [ - 963 + 969 ], "__typename": [ 80 @@ -15726,7 +16149,7 @@ export default { 40 ], "returning": [ - 958 + 964 ], "__typename": [ 80 @@ -15734,13 +16157,13 @@ export default { }, "e_match_mode_on_conflict": { "constraint": [ - 962 + 968 ], "update_columns": [ - 976 + 982 ], "where": [ - 961 + 967 ], "__typename": [ 80 @@ -15748,10 +16171,10 @@ export default { }, "e_match_mode_order_by": { "description": [ - 2946 + 2952 ], "value": [ - 2946 + 2952 ], "__typename": [ 80 @@ -15779,10 +16202,10 @@ export default { }, "e_match_mode_stream_cursor_input": { "initial_value": [ - 975 + 981 ], "ordering": [ - 308 + 314 ], "__typename": [ 80 @@ -15802,10 +16225,10 @@ export default { "e_match_mode_update_column": {}, "e_match_mode_updates": { "_set": [ - 973 + 979 ], "where": [ - 961 + 967 ], "__typename": [ 80 @@ -15816,10 +16239,10 @@ export default { 80 ], "matches": [ - 2761, + 2767, { "distinct_on": [ - 2783, + 2789, "[matches_select_column!]" ], "limit": [ @@ -15829,19 +16252,19 @@ export default { 40 ], "order_by": [ - 2781, + 2787, "[matches_order_by!]" ], "where": [ - 2770 + 2776 ] } ], "matches_aggregate": [ - 2762, + 2768, { "distinct_on": [ - 2783, + 2789, "[matches_select_column!]" ], "limit": [ @@ -15851,11 +16274,11 @@ export default { 40 ], "order_by": [ - 2781, + 2787, "[matches_order_by!]" ], "where": [ - 2770 + 2776 ] } ], @@ -15868,10 +16291,10 @@ export default { }, "e_match_status_aggregate": { "aggregate": [ - 980 + 986 ], "nodes": [ - 978 + 984 ], "__typename": [ 80 @@ -15882,7 +16305,7 @@ export default { 40, { "columns": [ - 993, + 999, "[e_match_status_select_column!]" ], "distinct": [ @@ -15891,10 +16314,10 @@ export default { } ], "max": [ - 986 + 992 ], "min": [ - 987 + 993 ], "__typename": [ 80 @@ -15902,22 +16325,22 @@ export default { }, "e_match_status_bool_exp": { "_and": [ - 981 + 987 ], "_not": [ - 981 + 987 ], "_or": [ - 981 + 987 ], "description": [ 82 ], "matches": [ - 2770 + 2776 ], "matches_aggregate": [ - 2763 + 2769 ], "value": [ 82 @@ -15930,19 +16353,19 @@ export default { "e_match_status_enum": {}, "e_match_status_enum_comparison_exp": { "_eq": [ - 983 + 989 ], "_in": [ - 983 + 989 ], "_is_null": [ 5 ], "_neq": [ - 983 + 989 ], "_nin": [ - 983 + 989 ], "__typename": [ 80 @@ -15953,7 +16376,7 @@ export default { 80 ], "matches": [ - 2767 + 2773 ], "value": [ 80 @@ -15989,7 +16412,7 @@ export default { 40 ], "returning": [ - 978 + 984 ], "__typename": [ 80 @@ -15997,10 +16420,10 @@ export default { }, "e_match_status_obj_rel_insert_input": { "data": [ - 985 + 991 ], "on_conflict": [ - 990 + 996 ], "__typename": [ 80 @@ -16008,13 +16431,13 @@ export default { }, "e_match_status_on_conflict": { "constraint": [ - 982 + 988 ], "update_columns": [ - 997 + 1003 ], "where": [ - 981 + 987 ], "__typename": [ 80 @@ -16022,13 +16445,13 @@ export default { }, "e_match_status_order_by": { "description": [ - 2946 + 2952 ], "matches_aggregate": [ - 2766 + 2772 ], "value": [ - 2946 + 2952 ], "__typename": [ 80 @@ -16056,10 +16479,10 @@ export default { }, "e_match_status_stream_cursor_input": { "initial_value": [ - 996 + 1002 ], "ordering": [ - 308 + 314 ], "__typename": [ 80 @@ -16079,10 +16502,10 @@ export default { "e_match_status_update_column": {}, "e_match_status_updates": { "_set": [ - 994 + 1000 ], "where": [ - 981 + 987 ], "__typename": [ 80 @@ -16093,10 +16516,10 @@ export default { 80 ], "maps": [ - 2279, + 2285, { "distinct_on": [ - 2300, + 2306, "[maps_select_column!]" ], "limit": [ @@ -16106,19 +16529,19 @@ export default { 40 ], "order_by": [ - 2298, + 2304, "[maps_order_by!]" ], "where": [ - 2288 + 2294 ] } ], "maps_aggregate": [ - 2280, + 2286, { "distinct_on": [ - 2300, + 2306, "[maps_select_column!]" ], "limit": [ @@ -16128,11 +16551,11 @@ export default { 40 ], "order_by": [ - 2298, + 2304, "[maps_order_by!]" ], "where": [ - 2288 + 2294 ] } ], @@ -16145,10 +16568,10 @@ export default { }, "e_match_types_aggregate": { "aggregate": [ - 1001 + 1007 ], "nodes": [ - 999 + 1005 ], "__typename": [ 80 @@ -16159,7 +16582,7 @@ export default { 40, { "columns": [ - 1014, + 1020, "[e_match_types_select_column!]" ], "distinct": [ @@ -16168,10 +16591,10 @@ export default { } ], "max": [ - 1007 + 1013 ], "min": [ - 1008 + 1014 ], "__typename": [ 80 @@ -16179,22 +16602,22 @@ export default { }, "e_match_types_bool_exp": { "_and": [ - 1002 + 1008 ], "_not": [ - 1002 + 1008 ], "_or": [ - 1002 + 1008 ], "description": [ 82 ], "maps": [ - 2288 + 2294 ], "maps_aggregate": [ - 2281 + 2287 ], "value": [ 82 @@ -16207,19 +16630,19 @@ export default { "e_match_types_enum": {}, "e_match_types_enum_comparison_exp": { "_eq": [ - 1004 + 1010 ], "_in": [ - 1004 + 1010 ], "_is_null": [ 5 ], "_neq": [ - 1004 + 1010 ], "_nin": [ - 1004 + 1010 ], "__typename": [ 80 @@ -16230,7 +16653,7 @@ export default { 80 ], "maps": [ - 2287 + 2293 ], "value": [ 80 @@ -16266,7 +16689,7 @@ export default { 40 ], "returning": [ - 999 + 1005 ], "__typename": [ 80 @@ -16274,10 +16697,10 @@ export default { }, "e_match_types_obj_rel_insert_input": { "data": [ - 1006 + 1012 ], "on_conflict": [ - 1011 + 1017 ], "__typename": [ 80 @@ -16285,13 +16708,13 @@ export default { }, "e_match_types_on_conflict": { "constraint": [ - 1003 + 1009 ], "update_columns": [ - 1018 + 1024 ], "where": [ - 1002 + 1008 ], "__typename": [ 80 @@ -16299,13 +16722,13 @@ export default { }, "e_match_types_order_by": { "description": [ - 2946 + 2952 ], "maps_aggregate": [ - 2286 + 2292 ], "value": [ - 2946 + 2952 ], "__typename": [ 80 @@ -16333,10 +16756,10 @@ export default { }, "e_match_types_stream_cursor_input": { "initial_value": [ - 1017 + 1023 ], "ordering": [ - 308 + 314 ], "__typename": [ 80 @@ -16356,10 +16779,10 @@ export default { "e_match_types_update_column": {}, "e_match_types_updates": { "_set": [ - 1015 + 1021 ], "where": [ - 1002 + 1008 ], "__typename": [ 80 @@ -16378,10 +16801,10 @@ export default { }, "e_notification_types_aggregate": { "aggregate": [ - 1022 + 1028 ], "nodes": [ - 1020 + 1026 ], "__typename": [ 80 @@ -16392,7 +16815,7 @@ export default { 40, { "columns": [ - 1034, + 1040, "[e_notification_types_select_column!]" ], "distinct": [ @@ -16401,10 +16824,10 @@ export default { } ], "max": [ - 1028 + 1034 ], "min": [ - 1029 + 1035 ], "__typename": [ 80 @@ -16412,13 +16835,13 @@ export default { }, "e_notification_types_bool_exp": { "_and": [ - 1023 + 1029 ], "_not": [ - 1023 + 1029 ], "_or": [ - 1023 + 1029 ], "description": [ 82 @@ -16434,19 +16857,19 @@ export default { "e_notification_types_enum": {}, "e_notification_types_enum_comparison_exp": { "_eq": [ - 1025 + 1031 ], "_in": [ - 1025 + 1031 ], "_is_null": [ 5 ], "_neq": [ - 1025 + 1031 ], "_nin": [ - 1025 + 1031 ], "__typename": [ 80 @@ -16490,7 +16913,7 @@ export default { 40 ], "returning": [ - 1020 + 1026 ], "__typename": [ 80 @@ -16498,13 +16921,13 @@ export default { }, "e_notification_types_on_conflict": { "constraint": [ - 1024 + 1030 ], "update_columns": [ - 1038 + 1044 ], "where": [ - 1023 + 1029 ], "__typename": [ 80 @@ -16512,10 +16935,10 @@ export default { }, "e_notification_types_order_by": { "description": [ - 2946 + 2952 ], "value": [ - 2946 + 2952 ], "__typename": [ 80 @@ -16543,10 +16966,10 @@ export default { }, "e_notification_types_stream_cursor_input": { "initial_value": [ - 1037 + 1043 ], "ordering": [ - 308 + 314 ], "__typename": [ 80 @@ -16566,10 +16989,10 @@ export default { "e_notification_types_update_column": {}, "e_notification_types_updates": { "_set": [ - 1035 + 1041 ], "where": [ - 1023 + 1029 ], "__typename": [ 80 @@ -16580,10 +17003,10 @@ export default { 80 ], "player_objectives": [ - 3502, + 3508, { "distinct_on": [ - 3523, + 3529, "[player_objectives_select_column!]" ], "limit": [ @@ -16593,19 +17016,19 @@ export default { 40 ], "order_by": [ - 3521, + 3527, "[player_objectives_order_by!]" ], "where": [ - 3511 + 3517 ] } ], "player_objectives_aggregate": [ - 3503, + 3509, { "distinct_on": [ - 3523, + 3529, "[player_objectives_select_column!]" ], "limit": [ @@ -16615,11 +17038,11 @@ export default { 40 ], "order_by": [ - 3521, + 3527, "[player_objectives_order_by!]" ], "where": [ - 3511 + 3517 ] } ], @@ -16632,10 +17055,10 @@ export default { }, "e_objective_types_aggregate": { "aggregate": [ - 1042 + 1048 ], "nodes": [ - 1040 + 1046 ], "__typename": [ 80 @@ -16646,7 +17069,7 @@ export default { 40, { "columns": [ - 1054, + 1060, "[e_objective_types_select_column!]" ], "distinct": [ @@ -16655,10 +17078,10 @@ export default { } ], "max": [ - 1048 + 1054 ], "min": [ - 1049 + 1055 ], "__typename": [ 80 @@ -16666,22 +17089,22 @@ export default { }, "e_objective_types_bool_exp": { "_and": [ - 1043 + 1049 ], "_not": [ - 1043 + 1049 ], "_or": [ - 1043 + 1049 ], "description": [ 82 ], "player_objectives": [ - 3511 + 3517 ], "player_objectives_aggregate": [ - 3504 + 3510 ], "value": [ 82 @@ -16694,19 +17117,19 @@ export default { "e_objective_types_enum": {}, "e_objective_types_enum_comparison_exp": { "_eq": [ - 1045 + 1051 ], "_in": [ - 1045 + 1051 ], "_is_null": [ 5 ], "_neq": [ - 1045 + 1051 ], "_nin": [ - 1045 + 1051 ], "__typename": [ 80 @@ -16717,7 +17140,7 @@ export default { 80 ], "player_objectives": [ - 3508 + 3514 ], "value": [ 80 @@ -16753,7 +17176,7 @@ export default { 40 ], "returning": [ - 1040 + 1046 ], "__typename": [ 80 @@ -16761,13 +17184,13 @@ export default { }, "e_objective_types_on_conflict": { "constraint": [ - 1044 + 1050 ], "update_columns": [ - 1058 + 1064 ], "where": [ - 1043 + 1049 ], "__typename": [ 80 @@ -16775,13 +17198,13 @@ export default { }, "e_objective_types_order_by": { "description": [ - 2946 + 2952 ], "player_objectives_aggregate": [ - 3507 + 3513 ], "value": [ - 2946 + 2952 ], "__typename": [ 80 @@ -16809,10 +17232,10 @@ export default { }, "e_objective_types_stream_cursor_input": { "initial_value": [ - 1057 + 1063 ], "ordering": [ - 308 + 314 ], "__typename": [ 80 @@ -16832,10 +17255,10 @@ export default { "e_objective_types_update_column": {}, "e_objective_types_updates": { "_set": [ - 1055 + 1061 ], "where": [ - 1043 + 1049 ], "__typename": [ 80 @@ -16854,10 +17277,10 @@ export default { }, "e_player_roles_aggregate": { "aggregate": [ - 1062 + 1068 ], "nodes": [ - 1060 + 1066 ], "__typename": [ 80 @@ -16868,7 +17291,7 @@ export default { 40, { "columns": [ - 1074, + 1080, "[e_player_roles_select_column!]" ], "distinct": [ @@ -16877,10 +17300,10 @@ export default { } ], "max": [ - 1068 + 1074 ], "min": [ - 1069 + 1075 ], "__typename": [ 80 @@ -16888,13 +17311,13 @@ export default { }, "e_player_roles_bool_exp": { "_and": [ - 1063 + 1069 ], "_not": [ - 1063 + 1069 ], "_or": [ - 1063 + 1069 ], "description": [ 82 @@ -16910,19 +17333,19 @@ export default { "e_player_roles_enum": {}, "e_player_roles_enum_comparison_exp": { "_eq": [ - 1065 + 1071 ], "_in": [ - 1065 + 1071 ], "_is_null": [ 5 ], "_neq": [ - 1065 + 1071 ], "_nin": [ - 1065 + 1071 ], "__typename": [ 80 @@ -16966,7 +17389,7 @@ export default { 40 ], "returning": [ - 1060 + 1066 ], "__typename": [ 80 @@ -16974,13 +17397,13 @@ export default { }, "e_player_roles_on_conflict": { "constraint": [ - 1064 + 1070 ], "update_columns": [ - 1078 + 1084 ], "where": [ - 1063 + 1069 ], "__typename": [ 80 @@ -16988,10 +17411,10 @@ export default { }, "e_player_roles_order_by": { "description": [ - 2946 + 2952 ], "value": [ - 2946 + 2952 ], "__typename": [ 80 @@ -17019,10 +17442,10 @@ export default { }, "e_player_roles_stream_cursor_input": { "initial_value": [ - 1077 + 1083 ], "ordering": [ - 308 + 314 ], "__typename": [ 80 @@ -17042,10 +17465,10 @@ export default { "e_player_roles_update_column": {}, "e_player_roles_updates": { "_set": [ - 1075 + 1081 ], "where": [ - 1063 + 1069 ], "__typename": [ 80 @@ -17064,10 +17487,10 @@ export default { }, "e_plugin_runtimes_aggregate": { "aggregate": [ - 1082 + 1088 ], "nodes": [ - 1080 + 1086 ], "__typename": [ 80 @@ -17078,7 +17501,7 @@ export default { 40, { "columns": [ - 1094, + 1100, "[e_plugin_runtimes_select_column!]" ], "distinct": [ @@ -17087,10 +17510,10 @@ export default { } ], "max": [ - 1088 + 1094 ], "min": [ - 1089 + 1095 ], "__typename": [ 80 @@ -17098,13 +17521,13 @@ export default { }, "e_plugin_runtimes_bool_exp": { "_and": [ - 1083 + 1089 ], "_not": [ - 1083 + 1089 ], "_or": [ - 1083 + 1089 ], "description": [ 82 @@ -17120,19 +17543,19 @@ export default { "e_plugin_runtimes_enum": {}, "e_plugin_runtimes_enum_comparison_exp": { "_eq": [ - 1085 + 1091 ], "_in": [ - 1085 + 1091 ], "_is_null": [ 5 ], "_neq": [ - 1085 + 1091 ], "_nin": [ - 1085 + 1091 ], "__typename": [ 80 @@ -17176,7 +17599,7 @@ export default { 40 ], "returning": [ - 1080 + 1086 ], "__typename": [ 80 @@ -17184,13 +17607,13 @@ export default { }, "e_plugin_runtimes_on_conflict": { "constraint": [ - 1084 + 1090 ], "update_columns": [ - 1098 + 1104 ], "where": [ - 1083 + 1089 ], "__typename": [ 80 @@ -17198,10 +17621,10 @@ export default { }, "e_plugin_runtimes_order_by": { "description": [ - 2946 + 2952 ], "value": [ - 2946 + 2952 ], "__typename": [ 80 @@ -17229,10 +17652,10 @@ export default { }, "e_plugin_runtimes_stream_cursor_input": { "initial_value": [ - 1097 + 1103 ], "ordering": [ - 308 + 314 ], "__typename": [ 80 @@ -17252,10 +17675,10 @@ export default { "e_plugin_runtimes_update_column": {}, "e_plugin_runtimes_updates": { "_set": [ - 1095 + 1101 ], "where": [ - 1083 + 1089 ], "__typename": [ 80 @@ -17274,10 +17697,10 @@ export default { }, "e_ready_settings_aggregate": { "aggregate": [ - 1102 + 1108 ], "nodes": [ - 1100 + 1106 ], "__typename": [ 80 @@ -17288,7 +17711,7 @@ export default { 40, { "columns": [ - 1114, + 1120, "[e_ready_settings_select_column!]" ], "distinct": [ @@ -17297,10 +17720,10 @@ export default { } ], "max": [ - 1108 + 1114 ], "min": [ - 1109 + 1115 ], "__typename": [ 80 @@ -17308,13 +17731,13 @@ export default { }, "e_ready_settings_bool_exp": { "_and": [ - 1103 + 1109 ], "_not": [ - 1103 + 1109 ], "_or": [ - 1103 + 1109 ], "description": [ 82 @@ -17330,19 +17753,19 @@ export default { "e_ready_settings_enum": {}, "e_ready_settings_enum_comparison_exp": { "_eq": [ - 1105 + 1111 ], "_in": [ - 1105 + 1111 ], "_is_null": [ 5 ], "_neq": [ - 1105 + 1111 ], "_nin": [ - 1105 + 1111 ], "__typename": [ 80 @@ -17386,7 +17809,7 @@ export default { 40 ], "returning": [ - 1100 + 1106 ], "__typename": [ 80 @@ -17394,13 +17817,13 @@ export default { }, "e_ready_settings_on_conflict": { "constraint": [ - 1104 + 1110 ], "update_columns": [ - 1118 + 1124 ], "where": [ - 1103 + 1109 ], "__typename": [ 80 @@ -17408,10 +17831,10 @@ export default { }, "e_ready_settings_order_by": { "description": [ - 2946 + 2952 ], "value": [ - 2946 + 2952 ], "__typename": [ 80 @@ -17439,10 +17862,10 @@ export default { }, "e_ready_settings_stream_cursor_input": { "initial_value": [ - 1117 + 1123 ], "ordering": [ - 308 + 314 ], "__typename": [ 80 @@ -17462,10 +17885,10 @@ export default { "e_ready_settings_update_column": {}, "e_ready_settings_updates": { "_set": [ - 1115 + 1121 ], "where": [ - 1103 + 1109 ], "__typename": [ 80 @@ -17484,10 +17907,10 @@ export default { }, "e_sanction_types_aggregate": { "aggregate": [ - 1122 + 1128 ], "nodes": [ - 1120 + 1126 ], "__typename": [ 80 @@ -17498,7 +17921,7 @@ export default { 40, { "columns": [ - 1135, + 1141, "[e_sanction_types_select_column!]" ], "distinct": [ @@ -17507,10 +17930,10 @@ export default { } ], "max": [ - 1128 + 1134 ], "min": [ - 1129 + 1135 ], "__typename": [ 80 @@ -17518,13 +17941,13 @@ export default { }, "e_sanction_types_bool_exp": { "_and": [ - 1123 + 1129 ], "_not": [ - 1123 + 1129 ], "_or": [ - 1123 + 1129 ], "description": [ 82 @@ -17540,19 +17963,19 @@ export default { "e_sanction_types_enum": {}, "e_sanction_types_enum_comparison_exp": { "_eq": [ - 1125 + 1131 ], "_in": [ - 1125 + 1131 ], "_is_null": [ 5 ], "_neq": [ - 1125 + 1131 ], "_nin": [ - 1125 + 1131 ], "__typename": [ 80 @@ -17596,7 +18019,7 @@ export default { 40 ], "returning": [ - 1120 + 1126 ], "__typename": [ 80 @@ -17604,10 +18027,10 @@ export default { }, "e_sanction_types_obj_rel_insert_input": { "data": [ - 1127 + 1133 ], "on_conflict": [ - 1132 + 1138 ], "__typename": [ 80 @@ -17615,13 +18038,13 @@ export default { }, "e_sanction_types_on_conflict": { "constraint": [ - 1124 + 1130 ], "update_columns": [ - 1139 + 1145 ], "where": [ - 1123 + 1129 ], "__typename": [ 80 @@ -17629,10 +18052,10 @@ export default { }, "e_sanction_types_order_by": { "description": [ - 2946 + 2952 ], "value": [ - 2946 + 2952 ], "__typename": [ 80 @@ -17660,10 +18083,10 @@ export default { }, "e_sanction_types_stream_cursor_input": { "initial_value": [ - 1138 + 1144 ], "ordering": [ - 308 + 314 ], "__typename": [ 80 @@ -17683,10 +18106,10 @@ export default { "e_sanction_types_update_column": {}, "e_sanction_types_updates": { "_set": [ - 1136 + 1142 ], "where": [ - 1123 + 1129 ], "__typename": [ 80 @@ -17697,10 +18120,10 @@ export default { 80 ], "scrim_requests": [ - 4345, + 4351, { "distinct_on": [ - 4369, + 4375, "[team_scrim_requests_select_column!]" ], "limit": [ @@ -17710,19 +18133,19 @@ export default { 40 ], "order_by": [ - 4367, + 4373, "[team_scrim_requests_order_by!]" ], "where": [ - 4356 + 4362 ] } ], "scrim_requests_aggregate": [ - 4346, + 4352, { "distinct_on": [ - 4369, + 4375, "[team_scrim_requests_select_column!]" ], "limit": [ @@ -17732,11 +18155,11 @@ export default { 40 ], "order_by": [ - 4367, + 4373, "[team_scrim_requests_order_by!]" ], "where": [ - 4356 + 4362 ] } ], @@ -17749,10 +18172,10 @@ export default { }, "e_scrim_request_statuses_aggregate": { "aggregate": [ - 1143 + 1149 ], "nodes": [ - 1141 + 1147 ], "__typename": [ 80 @@ -17763,7 +18186,7 @@ export default { 40, { "columns": [ - 1155, + 1161, "[e_scrim_request_statuses_select_column!]" ], "distinct": [ @@ -17772,10 +18195,10 @@ export default { } ], "max": [ - 1149 + 1155 ], "min": [ - 1150 + 1156 ], "__typename": [ 80 @@ -17783,22 +18206,22 @@ export default { }, "e_scrim_request_statuses_bool_exp": { "_and": [ - 1144 + 1150 ], "_not": [ - 1144 + 1150 ], "_or": [ - 1144 + 1150 ], "description": [ 82 ], "scrim_requests": [ - 4356 + 4362 ], "scrim_requests_aggregate": [ - 4347 + 4353 ], "value": [ 82 @@ -17811,19 +18234,19 @@ export default { "e_scrim_request_statuses_enum": {}, "e_scrim_request_statuses_enum_comparison_exp": { "_eq": [ - 1146 + 1152 ], "_in": [ - 1146 + 1152 ], "_is_null": [ 5 ], "_neq": [ - 1146 + 1152 ], "_nin": [ - 1146 + 1152 ], "__typename": [ 80 @@ -17834,7 +18257,7 @@ export default { 80 ], "scrim_requests": [ - 4353 + 4359 ], "value": [ 80 @@ -17870,7 +18293,7 @@ export default { 40 ], "returning": [ - 1141 + 1147 ], "__typename": [ 80 @@ -17878,13 +18301,13 @@ export default { }, "e_scrim_request_statuses_on_conflict": { "constraint": [ - 1145 + 1151 ], "update_columns": [ - 1159 + 1165 ], "where": [ - 1144 + 1150 ], "__typename": [ 80 @@ -17892,13 +18315,13 @@ export default { }, "e_scrim_request_statuses_order_by": { "description": [ - 2946 + 2952 ], "scrim_requests_aggregate": [ - 4352 + 4358 ], "value": [ - 2946 + 2952 ], "__typename": [ 80 @@ -17926,10 +18349,10 @@ export default { }, "e_scrim_request_statuses_stream_cursor_input": { "initial_value": [ - 1158 + 1164 ], "ordering": [ - 308 + 314 ], "__typename": [ 80 @@ -17949,10 +18372,10 @@ export default { "e_scrim_request_statuses_update_column": {}, "e_scrim_request_statuses_updates": { "_set": [ - 1156 + 1162 ], "where": [ - 1144 + 1150 ], "__typename": [ 80 @@ -17963,10 +18386,10 @@ export default { 80 ], "servers": [ - 4018, + 4024, { "distinct_on": [ - 4042, + 4048, "[servers_select_column!]" ], "limit": [ @@ -17976,19 +18399,19 @@ export default { 40 ], "order_by": [ - 4040, + 4046, "[servers_order_by!]" ], "where": [ - 4029 + 4035 ] } ], "servers_aggregate": [ - 4019, + 4025, { "distinct_on": [ - 4042, + 4048, "[servers_select_column!]" ], "limit": [ @@ -17998,11 +18421,11 @@ export default { 40 ], "order_by": [ - 4040, + 4046, "[servers_order_by!]" ], "where": [ - 4029 + 4035 ] } ], @@ -18015,10 +18438,10 @@ export default { }, "e_server_types_aggregate": { "aggregate": [ - 1163 + 1169 ], "nodes": [ - 1161 + 1167 ], "__typename": [ 80 @@ -18029,7 +18452,7 @@ export default { 40, { "columns": [ - 1175, + 1181, "[e_server_types_select_column!]" ], "distinct": [ @@ -18038,10 +18461,10 @@ export default { } ], "max": [ - 1169 + 1175 ], "min": [ - 1170 + 1176 ], "__typename": [ 80 @@ -18049,22 +18472,22 @@ export default { }, "e_server_types_bool_exp": { "_and": [ - 1164 + 1170 ], "_not": [ - 1164 + 1170 ], "_or": [ - 1164 + 1170 ], "description": [ 82 ], "servers": [ - 4029 + 4035 ], "servers_aggregate": [ - 4020 + 4026 ], "value": [ 82 @@ -18077,19 +18500,19 @@ export default { "e_server_types_enum": {}, "e_server_types_enum_comparison_exp": { "_eq": [ - 1166 + 1172 ], "_in": [ - 1166 + 1172 ], "_is_null": [ 5 ], "_neq": [ - 1166 + 1172 ], "_nin": [ - 1166 + 1172 ], "__typename": [ 80 @@ -18100,7 +18523,7 @@ export default { 80 ], "servers": [ - 4026 + 4032 ], "value": [ 80 @@ -18136,7 +18559,7 @@ export default { 40 ], "returning": [ - 1161 + 1167 ], "__typename": [ 80 @@ -18144,13 +18567,13 @@ export default { }, "e_server_types_on_conflict": { "constraint": [ - 1165 + 1171 ], "update_columns": [ - 1179 + 1185 ], "where": [ - 1164 + 1170 ], "__typename": [ 80 @@ -18158,13 +18581,13 @@ export default { }, "e_server_types_order_by": { "description": [ - 2946 + 2952 ], "servers_aggregate": [ - 4025 + 4031 ], "value": [ - 2946 + 2952 ], "__typename": [ 80 @@ -18192,10 +18615,10 @@ export default { }, "e_server_types_stream_cursor_input": { "initial_value": [ - 1178 + 1184 ], "ordering": [ - 308 + 314 ], "__typename": [ 80 @@ -18215,10 +18638,10 @@ export default { "e_server_types_update_column": {}, "e_server_types_updates": { "_set": [ - 1176 + 1182 ], "where": [ - 1164 + 1170 ], "__typename": [ 80 @@ -18229,10 +18652,10 @@ export default { 80 ], "match_map_lineup_1": [ - 2599, + 2605, { "distinct_on": [ - 2621, + 2627, "[match_maps_select_column!]" ], "limit": [ @@ -18242,19 +18665,19 @@ export default { 40 ], "order_by": [ - 2619, + 2625, "[match_maps_order_by!]" ], "where": [ - 2608 + 2614 ] } ], "match_map_lineup_1_aggregate": [ - 2600, + 2606, { "distinct_on": [ - 2621, + 2627, "[match_maps_select_column!]" ], "limit": [ @@ -18264,19 +18687,19 @@ export default { 40 ], "order_by": [ - 2619, + 2625, "[match_maps_order_by!]" ], "where": [ - 2608 + 2614 ] } ], "match_map_lineup_2": [ - 2599, + 2605, { "distinct_on": [ - 2621, + 2627, "[match_maps_select_column!]" ], "limit": [ @@ -18286,19 +18709,19 @@ export default { 40 ], "order_by": [ - 2619, + 2625, "[match_maps_order_by!]" ], "where": [ - 2608 + 2614 ] } ], "match_map_lineup_2_aggregate": [ - 2600, + 2606, { "distinct_on": [ - 2621, + 2627, "[match_maps_select_column!]" ], "limit": [ @@ -18308,11 +18731,11 @@ export default { 40 ], "order_by": [ - 2619, + 2625, "[match_maps_order_by!]" ], "where": [ - 2608 + 2614 ] } ], @@ -18325,10 +18748,10 @@ export default { }, "e_sides_aggregate": { "aggregate": [ - 1183 + 1189 ], "nodes": [ - 1181 + 1187 ], "__typename": [ 80 @@ -18339,7 +18762,7 @@ export default { 40, { "columns": [ - 1195, + 1201, "[e_sides_select_column!]" ], "distinct": [ @@ -18348,10 +18771,10 @@ export default { } ], "max": [ - 1189 + 1195 ], "min": [ - 1190 + 1196 ], "__typename": [ 80 @@ -18359,28 +18782,28 @@ export default { }, "e_sides_bool_exp": { "_and": [ - 1184 + 1190 ], "_not": [ - 1184 + 1190 ], "_or": [ - 1184 + 1190 ], "description": [ 82 ], "match_map_lineup_1": [ - 2608 + 2614 ], "match_map_lineup_1_aggregate": [ - 2601 + 2607 ], "match_map_lineup_2": [ - 2608 + 2614 ], "match_map_lineup_2_aggregate": [ - 2601 + 2607 ], "value": [ 82 @@ -18393,19 +18816,19 @@ export default { "e_sides_enum": {}, "e_sides_enum_comparison_exp": { "_eq": [ - 1186 + 1192 ], "_in": [ - 1186 + 1192 ], "_is_null": [ 5 ], "_neq": [ - 1186 + 1192 ], "_nin": [ - 1186 + 1192 ], "__typename": [ 80 @@ -18416,10 +18839,10 @@ export default { 80 ], "match_map_lineup_1": [ - 2605 + 2611 ], "match_map_lineup_2": [ - 2605 + 2611 ], "value": [ 80 @@ -18455,7 +18878,7 @@ export default { 40 ], "returning": [ - 1181 + 1187 ], "__typename": [ 80 @@ -18463,13 +18886,13 @@ export default { }, "e_sides_on_conflict": { "constraint": [ - 1185 + 1191 ], "update_columns": [ - 1199 + 1205 ], "where": [ - 1184 + 1190 ], "__typename": [ 80 @@ -18477,16 +18900,16 @@ export default { }, "e_sides_order_by": { "description": [ - 2946 + 2952 ], "match_map_lineup_1_aggregate": [ - 2604 + 2610 ], "match_map_lineup_2_aggregate": [ - 2604 + 2610 ], "value": [ - 2946 + 2952 ], "__typename": [ 80 @@ -18514,10 +18937,10 @@ export default { }, "e_sides_stream_cursor_input": { "initial_value": [ - 1198 + 1204 ], "ordering": [ - 308 + 314 ], "__typename": [ 80 @@ -18537,10 +18960,10 @@ export default { "e_sides_update_column": {}, "e_sides_updates": { "_set": [ - 1196 + 1202 ], "where": [ - 1184 + 1190 ], "__typename": [ 80 @@ -18559,10 +18982,10 @@ export default { }, "e_system_alert_types_aggregate": { "aggregate": [ - 1203 + 1209 ], "nodes": [ - 1201 + 1207 ], "__typename": [ 80 @@ -18573,7 +18996,7 @@ export default { 40, { "columns": [ - 1215, + 1221, "[e_system_alert_types_select_column!]" ], "distinct": [ @@ -18582,10 +19005,10 @@ export default { } ], "max": [ - 1209 + 1215 ], "min": [ - 1210 + 1216 ], "__typename": [ 80 @@ -18593,13 +19016,13 @@ export default { }, "e_system_alert_types_bool_exp": { "_and": [ - 1204 + 1210 ], "_not": [ - 1204 + 1210 ], "_or": [ - 1204 + 1210 ], "description": [ 82 @@ -18615,19 +19038,19 @@ export default { "e_system_alert_types_enum": {}, "e_system_alert_types_enum_comparison_exp": { "_eq": [ - 1206 + 1212 ], "_in": [ - 1206 + 1212 ], "_is_null": [ 5 ], "_neq": [ - 1206 + 1212 ], "_nin": [ - 1206 + 1212 ], "__typename": [ 80 @@ -18671,7 +19094,7 @@ export default { 40 ], "returning": [ - 1201 + 1207 ], "__typename": [ 80 @@ -18679,13 +19102,13 @@ export default { }, "e_system_alert_types_on_conflict": { "constraint": [ - 1205 + 1211 ], "update_columns": [ - 1219 + 1225 ], "where": [ - 1204 + 1210 ], "__typename": [ 80 @@ -18693,10 +19116,10 @@ export default { }, "e_system_alert_types_order_by": { "description": [ - 2946 + 2952 ], "value": [ - 2946 + 2952 ], "__typename": [ 80 @@ -18724,10 +19147,10 @@ export default { }, "e_system_alert_types_stream_cursor_input": { "initial_value": [ - 1218 + 1224 ], "ordering": [ - 308 + 314 ], "__typename": [ 80 @@ -18747,10 +19170,10 @@ export default { "e_system_alert_types_update_column": {}, "e_system_alert_types_updates": { "_set": [ - 1216 + 1222 ], "where": [ - 1204 + 1210 ], "__typename": [ 80 @@ -18761,10 +19184,10 @@ export default { 80 ], "team_rosters": [ - 4204, + 4210, { "distinct_on": [ - 4227, + 4233, "[team_roster_select_column!]" ], "limit": [ @@ -18774,19 +19197,19 @@ export default { 40 ], "order_by": [ - 4225, + 4231, "[team_roster_order_by!]" ], "where": [ - 4215 + 4221 ] } ], "team_rosters_aggregate": [ - 4205, + 4211, { "distinct_on": [ - 4227, + 4233, "[team_roster_select_column!]" ], "limit": [ @@ -18796,19 +19219,19 @@ export default { 40 ], "order_by": [ - 4225, + 4231, "[team_roster_order_by!]" ], "where": [ - 4215 + 4221 ] } ], "tournament_team_rosters": [ - 4846, + 4852, { "distinct_on": [ - 4867, + 4873, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -18818,19 +19241,19 @@ export default { 40 ], "order_by": [ - 4865, + 4871, "[tournament_team_roster_order_by!]" ], "where": [ - 4855 + 4861 ] } ], "tournament_team_rosters_aggregate": [ - 4847, + 4853, { "distinct_on": [ - 4867, + 4873, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -18840,11 +19263,11 @@ export default { 40 ], "order_by": [ - 4865, + 4871, "[tournament_team_roster_order_by!]" ], "where": [ - 4855 + 4861 ] } ], @@ -18857,10 +19280,10 @@ export default { }, "e_team_roles_aggregate": { "aggregate": [ - 1223 + 1229 ], "nodes": [ - 1221 + 1227 ], "__typename": [ 80 @@ -18871,7 +19294,7 @@ export default { 40, { "columns": [ - 1236, + 1242, "[e_team_roles_select_column!]" ], "distinct": [ @@ -18880,10 +19303,10 @@ export default { } ], "max": [ - 1229 + 1235 ], "min": [ - 1230 + 1236 ], "__typename": [ 80 @@ -18891,28 +19314,28 @@ export default { }, "e_team_roles_bool_exp": { "_and": [ - 1224 + 1230 ], "_not": [ - 1224 + 1230 ], "_or": [ - 1224 + 1230 ], "description": [ 82 ], "team_rosters": [ - 4215 + 4221 ], "team_rosters_aggregate": [ - 4206 + 4212 ], "tournament_team_rosters": [ - 4855 + 4861 ], "tournament_team_rosters_aggregate": [ - 4848 + 4854 ], "value": [ 82 @@ -18925,19 +19348,19 @@ export default { "e_team_roles_enum": {}, "e_team_roles_enum_comparison_exp": { "_eq": [ - 1226 + 1232 ], "_in": [ - 1226 + 1232 ], "_is_null": [ 5 ], "_neq": [ - 1226 + 1232 ], "_nin": [ - 1226 + 1232 ], "__typename": [ 80 @@ -18948,10 +19371,10 @@ export default { 80 ], "team_rosters": [ - 4212 + 4218 ], "tournament_team_rosters": [ - 4852 + 4858 ], "value": [ 80 @@ -18987,7 +19410,7 @@ export default { 40 ], "returning": [ - 1221 + 1227 ], "__typename": [ 80 @@ -18995,10 +19418,10 @@ export default { }, "e_team_roles_obj_rel_insert_input": { "data": [ - 1228 + 1234 ], "on_conflict": [ - 1233 + 1239 ], "__typename": [ 80 @@ -19006,13 +19429,13 @@ export default { }, "e_team_roles_on_conflict": { "constraint": [ - 1225 + 1231 ], "update_columns": [ - 1240 + 1246 ], "where": [ - 1224 + 1230 ], "__typename": [ 80 @@ -19020,16 +19443,16 @@ export default { }, "e_team_roles_order_by": { "description": [ - 2946 + 2952 ], "team_rosters_aggregate": [ - 4211 + 4217 ], "tournament_team_rosters_aggregate": [ - 4851 + 4857 ], "value": [ - 2946 + 2952 ], "__typename": [ 80 @@ -19057,10 +19480,10 @@ export default { }, "e_team_roles_stream_cursor_input": { "initial_value": [ - 1239 + 1245 ], "ordering": [ - 308 + 314 ], "__typename": [ 80 @@ -19080,10 +19503,10 @@ export default { "e_team_roles_update_column": {}, "e_team_roles_updates": { "_set": [ - 1237 + 1243 ], "where": [ - 1224 + 1230 ], "__typename": [ 80 @@ -19102,10 +19525,10 @@ export default { }, "e_team_roster_statuses_aggregate": { "aggregate": [ - 1244 + 1250 ], "nodes": [ - 1242 + 1248 ], "__typename": [ 80 @@ -19116,7 +19539,7 @@ export default { 40, { "columns": [ - 1256, + 1262, "[e_team_roster_statuses_select_column!]" ], "distinct": [ @@ -19125,10 +19548,10 @@ export default { } ], "max": [ - 1250 + 1256 ], "min": [ - 1251 + 1257 ], "__typename": [ 80 @@ -19136,13 +19559,13 @@ export default { }, "e_team_roster_statuses_bool_exp": { "_and": [ - 1245 + 1251 ], "_not": [ - 1245 + 1251 ], "_or": [ - 1245 + 1251 ], "description": [ 82 @@ -19158,19 +19581,19 @@ export default { "e_team_roster_statuses_enum": {}, "e_team_roster_statuses_enum_comparison_exp": { "_eq": [ - 1247 + 1253 ], "_in": [ - 1247 + 1253 ], "_is_null": [ 5 ], "_neq": [ - 1247 + 1253 ], "_nin": [ - 1247 + 1253 ], "__typename": [ 80 @@ -19214,7 +19637,7 @@ export default { 40 ], "returning": [ - 1242 + 1248 ], "__typename": [ 80 @@ -19222,13 +19645,13 @@ export default { }, "e_team_roster_statuses_on_conflict": { "constraint": [ - 1246 + 1252 ], "update_columns": [ - 1260 + 1266 ], "where": [ - 1245 + 1251 ], "__typename": [ 80 @@ -19236,10 +19659,10 @@ export default { }, "e_team_roster_statuses_order_by": { "description": [ - 2946 + 2952 ], "value": [ - 2946 + 2952 ], "__typename": [ 80 @@ -19267,10 +19690,10 @@ export default { }, "e_team_roster_statuses_stream_cursor_input": { "initial_value": [ - 1259 + 1265 ], "ordering": [ - 308 + 314 ], "__typename": [ 80 @@ -19290,10 +19713,10 @@ export default { "e_team_roster_statuses_update_column": {}, "e_team_roster_statuses_updates": { "_set": [ - 1257 + 1263 ], "where": [ - 1245 + 1251 ], "__typename": [ 80 @@ -19312,10 +19735,10 @@ export default { }, "e_timeout_settings_aggregate": { "aggregate": [ - 1264 + 1270 ], "nodes": [ - 1262 + 1268 ], "__typename": [ 80 @@ -19326,7 +19749,7 @@ export default { 40, { "columns": [ - 1276, + 1282, "[e_timeout_settings_select_column!]" ], "distinct": [ @@ -19335,10 +19758,10 @@ export default { } ], "max": [ - 1270 + 1276 ], "min": [ - 1271 + 1277 ], "__typename": [ 80 @@ -19346,13 +19769,13 @@ export default { }, "e_timeout_settings_bool_exp": { "_and": [ - 1265 + 1271 ], "_not": [ - 1265 + 1271 ], "_or": [ - 1265 + 1271 ], "description": [ 82 @@ -19368,19 +19791,19 @@ export default { "e_timeout_settings_enum": {}, "e_timeout_settings_enum_comparison_exp": { "_eq": [ - 1267 + 1273 ], "_in": [ - 1267 + 1273 ], "_is_null": [ 5 ], "_neq": [ - 1267 + 1273 ], "_nin": [ - 1267 + 1273 ], "__typename": [ 80 @@ -19424,7 +19847,7 @@ export default { 40 ], "returning": [ - 1262 + 1268 ], "__typename": [ 80 @@ -19432,13 +19855,13 @@ export default { }, "e_timeout_settings_on_conflict": { "constraint": [ - 1266 + 1272 ], "update_columns": [ - 1280 + 1286 ], "where": [ - 1265 + 1271 ], "__typename": [ 80 @@ -19446,10 +19869,10 @@ export default { }, "e_timeout_settings_order_by": { "description": [ - 2946 + 2952 ], "value": [ - 2946 + 2952 ], "__typename": [ 80 @@ -19477,10 +19900,10 @@ export default { }, "e_timeout_settings_stream_cursor_input": { "initial_value": [ - 1279 + 1285 ], "ordering": [ - 308 + 314 ], "__typename": [ 80 @@ -19500,10 +19923,10 @@ export default { "e_timeout_settings_update_column": {}, "e_timeout_settings_updates": { "_set": [ - 1277 + 1283 ], "where": [ - 1265 + 1271 ], "__typename": [ 80 @@ -19514,10 +19937,10 @@ export default { 80 ], "tournament_categories": [ - 4583, + 4589, { "distinct_on": [ - 4601, + 4607, "[tournament_categories_select_column!]" ], "limit": [ @@ -19527,19 +19950,19 @@ export default { 40 ], "order_by": [ - 4599, + 4605, "[tournament_categories_order_by!]" ], "where": [ - 4590 + 4596 ] } ], "tournament_categories_aggregate": [ - 4584, + 4590, { "distinct_on": [ - 4601, + 4607, "[tournament_categories_select_column!]" ], "limit": [ @@ -19549,11 +19972,11 @@ export default { 40 ], "order_by": [ - 4599, + 4605, "[tournament_categories_order_by!]" ], "where": [ - 4590 + 4596 ] } ], @@ -19566,10 +19989,10 @@ export default { }, "e_tournament_categories_aggregate": { "aggregate": [ - 1284 + 1290 ], "nodes": [ - 1282 + 1288 ], "__typename": [ 80 @@ -19580,7 +20003,7 @@ export default { 40, { "columns": [ - 1297, + 1303, "[e_tournament_categories_select_column!]" ], "distinct": [ @@ -19589,10 +20012,10 @@ export default { } ], "max": [ - 1290 + 1296 ], "min": [ - 1291 + 1297 ], "__typename": [ 80 @@ -19600,22 +20023,22 @@ export default { }, "e_tournament_categories_bool_exp": { "_and": [ - 1285 + 1291 ], "_not": [ - 1285 + 1291 ], "_or": [ - 1285 + 1291 ], "description": [ 82 ], "tournament_categories": [ - 4590 + 4596 ], "tournament_categories_aggregate": [ - 4585 + 4591 ], "value": [ 82 @@ -19628,19 +20051,19 @@ export default { "e_tournament_categories_enum": {}, "e_tournament_categories_enum_comparison_exp": { "_eq": [ - 1287 + 1293 ], "_in": [ - 1287 + 1293 ], "_is_null": [ 5 ], "_neq": [ - 1287 + 1293 ], "_nin": [ - 1287 + 1293 ], "__typename": [ 80 @@ -19651,7 +20074,7 @@ export default { 80 ], "tournament_categories": [ - 4589 + 4595 ], "value": [ 80 @@ -19687,7 +20110,7 @@ export default { 40 ], "returning": [ - 1282 + 1288 ], "__typename": [ 80 @@ -19695,10 +20118,10 @@ export default { }, "e_tournament_categories_obj_rel_insert_input": { "data": [ - 1289 + 1295 ], "on_conflict": [ - 1294 + 1300 ], "__typename": [ 80 @@ -19706,13 +20129,13 @@ export default { }, "e_tournament_categories_on_conflict": { "constraint": [ - 1286 + 1292 ], "update_columns": [ - 1301 + 1307 ], "where": [ - 1285 + 1291 ], "__typename": [ 80 @@ -19720,13 +20143,13 @@ export default { }, "e_tournament_categories_order_by": { "description": [ - 2946 + 2952 ], "tournament_categories_aggregate": [ - 4588 + 4594 ], "value": [ - 2946 + 2952 ], "__typename": [ 80 @@ -19754,10 +20177,10 @@ export default { }, "e_tournament_categories_stream_cursor_input": { "initial_value": [ - 1300 + 1306 ], "ordering": [ - 308 + 314 ], "__typename": [ 80 @@ -19777,10 +20200,10 @@ export default { "e_tournament_categories_update_column": {}, "e_tournament_categories_updates": { "_set": [ - 1298 + 1304 ], "where": [ - 1285 + 1291 ], "__typename": [ 80 @@ -19791,10 +20214,10 @@ export default { 80 ], "tournament_stages": [ - 4754, + 4760, { "distinct_on": [ - 4783, + 4789, "[tournament_stages_select_column!]" ], "limit": [ @@ -19804,19 +20227,19 @@ export default { 40 ], "order_by": [ - 4780, + 4786, "[tournament_stages_order_by!]" ], "where": [ - 4766 + 4772 ] } ], "tournament_stages_aggregate": [ - 4755, + 4761, { "distinct_on": [ - 4783, + 4789, "[tournament_stages_select_column!]" ], "limit": [ @@ -19826,11 +20249,11 @@ export default { 40 ], "order_by": [ - 4780, + 4786, "[tournament_stages_order_by!]" ], "where": [ - 4766 + 4772 ] } ], @@ -19843,10 +20266,10 @@ export default { }, "e_tournament_stage_types_aggregate": { "aggregate": [ - 1305 + 1311 ], "nodes": [ - 1303 + 1309 ], "__typename": [ 80 @@ -19857,7 +20280,7 @@ export default { 40, { "columns": [ - 1318, + 1324, "[e_tournament_stage_types_select_column!]" ], "distinct": [ @@ -19866,10 +20289,10 @@ export default { } ], "max": [ - 1311 + 1317 ], "min": [ - 1312 + 1318 ], "__typename": [ 80 @@ -19877,22 +20300,22 @@ export default { }, "e_tournament_stage_types_bool_exp": { "_and": [ - 1306 + 1312 ], "_not": [ - 1306 + 1312 ], "_or": [ - 1306 + 1312 ], "description": [ 82 ], "tournament_stages": [ - 4766 + 4772 ], "tournament_stages_aggregate": [ - 4756 + 4762 ], "value": [ 82 @@ -19905,19 +20328,19 @@ export default { "e_tournament_stage_types_enum": {}, "e_tournament_stage_types_enum_comparison_exp": { "_eq": [ - 1308 + 1314 ], "_in": [ - 1308 + 1314 ], "_is_null": [ 5 ], "_neq": [ - 1308 + 1314 ], "_nin": [ - 1308 + 1314 ], "__typename": [ 80 @@ -19928,7 +20351,7 @@ export default { 80 ], "tournament_stages": [ - 4763 + 4769 ], "value": [ 80 @@ -19964,7 +20387,7 @@ export default { 40 ], "returning": [ - 1303 + 1309 ], "__typename": [ 80 @@ -19972,10 +20395,10 @@ export default { }, "e_tournament_stage_types_obj_rel_insert_input": { "data": [ - 1310 + 1316 ], "on_conflict": [ - 1315 + 1321 ], "__typename": [ 80 @@ -19983,13 +20406,13 @@ export default { }, "e_tournament_stage_types_on_conflict": { "constraint": [ - 1307 + 1313 ], "update_columns": [ - 1322 + 1328 ], "where": [ - 1306 + 1312 ], "__typename": [ 80 @@ -19997,13 +20420,13 @@ export default { }, "e_tournament_stage_types_order_by": { "description": [ - 2946 + 2952 ], "tournament_stages_aggregate": [ - 4761 + 4767 ], "value": [ - 2946 + 2952 ], "__typename": [ 80 @@ -20031,10 +20454,10 @@ export default { }, "e_tournament_stage_types_stream_cursor_input": { "initial_value": [ - 1321 + 1327 ], "ordering": [ - 308 + 314 ], "__typename": [ 80 @@ -20054,10 +20477,10 @@ export default { "e_tournament_stage_types_update_column": {}, "e_tournament_stage_types_updates": { "_set": [ - 1319 + 1325 ], "where": [ - 1306 + 1312 ], "__typename": [ 80 @@ -20068,10 +20491,10 @@ export default { 80 ], "tournaments": [ - 4929, + 4935, { "distinct_on": [ - 4963, + 4969, "[tournaments_select_column!]" ], "limit": [ @@ -20081,19 +20504,19 @@ export default { 40 ], "order_by": [ - 4961, + 4967, "[tournaments_order_by!]" ], "where": [ - 4950 + 4956 ] } ], "tournaments_aggregate": [ - 4930, + 4936, { "distinct_on": [ - 4963, + 4969, "[tournaments_select_column!]" ], "limit": [ @@ -20103,11 +20526,11 @@ export default { 40 ], "order_by": [ - 4961, + 4967, "[tournaments_order_by!]" ], "where": [ - 4950 + 4956 ] } ], @@ -20120,10 +20543,10 @@ export default { }, "e_tournament_status_aggregate": { "aggregate": [ - 1326 + 1332 ], "nodes": [ - 1324 + 1330 ], "__typename": [ 80 @@ -20134,7 +20557,7 @@ export default { 40, { "columns": [ - 1339, + 1345, "[e_tournament_status_select_column!]" ], "distinct": [ @@ -20143,10 +20566,10 @@ export default { } ], "max": [ - 1332 + 1338 ], "min": [ - 1333 + 1339 ], "__typename": [ 80 @@ -20154,22 +20577,22 @@ export default { }, "e_tournament_status_bool_exp": { "_and": [ - 1327 + 1333 ], "_not": [ - 1327 + 1333 ], "_or": [ - 1327 + 1333 ], "description": [ 82 ], "tournaments": [ - 4950 + 4956 ], "tournaments_aggregate": [ - 4931 + 4937 ], "value": [ 82 @@ -20182,19 +20605,19 @@ export default { "e_tournament_status_enum": {}, "e_tournament_status_enum_comparison_exp": { "_eq": [ - 1329 + 1335 ], "_in": [ - 1329 + 1335 ], "_is_null": [ 5 ], "_neq": [ - 1329 + 1335 ], "_nin": [ - 1329 + 1335 ], "__typename": [ 80 @@ -20205,7 +20628,7 @@ export default { 80 ], "tournaments": [ - 4947 + 4953 ], "value": [ 80 @@ -20241,7 +20664,7 @@ export default { 40 ], "returning": [ - 1324 + 1330 ], "__typename": [ 80 @@ -20249,10 +20672,10 @@ export default { }, "e_tournament_status_obj_rel_insert_input": { "data": [ - 1331 + 1337 ], "on_conflict": [ - 1336 + 1342 ], "__typename": [ 80 @@ -20260,13 +20683,13 @@ export default { }, "e_tournament_status_on_conflict": { "constraint": [ - 1328 + 1334 ], "update_columns": [ - 1343 + 1349 ], "where": [ - 1327 + 1333 ], "__typename": [ 80 @@ -20274,13 +20697,13 @@ export default { }, "e_tournament_status_order_by": { "description": [ - 2946 + 2952 ], "tournaments_aggregate": [ - 4946 + 4952 ], "value": [ - 2946 + 2952 ], "__typename": [ 80 @@ -20308,10 +20731,10 @@ export default { }, "e_tournament_status_stream_cursor_input": { "initial_value": [ - 1342 + 1348 ], "ordering": [ - 308 + 314 ], "__typename": [ 80 @@ -20331,10 +20754,10 @@ export default { "e_tournament_status_update_column": {}, "e_tournament_status_updates": { "_set": [ - 1340 + 1346 ], "where": [ - 1327 + 1333 ], "__typename": [ 80 @@ -20345,10 +20768,10 @@ export default { 80 ], "player_utilities": [ - 3830, + 3836, { "distinct_on": [ - 3851, + 3857, "[player_utility_select_column!]" ], "limit": [ @@ -20358,19 +20781,19 @@ export default { 40 ], "order_by": [ - 3849, + 3855, "[player_utility_order_by!]" ], "where": [ - 3839 + 3845 ] } ], "player_utilities_aggregate": [ - 3831, + 3837, { "distinct_on": [ - 3851, + 3857, "[player_utility_select_column!]" ], "limit": [ @@ -20380,11 +20803,11 @@ export default { 40 ], "order_by": [ - 3849, + 3855, "[player_utility_order_by!]" ], "where": [ - 3839 + 3845 ] } ], @@ -20397,10 +20820,10 @@ export default { }, "e_utility_types_aggregate": { "aggregate": [ - 1347 + 1353 ], "nodes": [ - 1345 + 1351 ], "__typename": [ 80 @@ -20411,7 +20834,7 @@ export default { 40, { "columns": [ - 1359, + 1365, "[e_utility_types_select_column!]" ], "distinct": [ @@ -20420,10 +20843,10 @@ export default { } ], "max": [ - 1353 + 1359 ], "min": [ - 1354 + 1360 ], "__typename": [ 80 @@ -20431,22 +20854,22 @@ export default { }, "e_utility_types_bool_exp": { "_and": [ - 1348 + 1354 ], "_not": [ - 1348 + 1354 ], "_or": [ - 1348 + 1354 ], "description": [ 82 ], "player_utilities": [ - 3839 + 3845 ], "player_utilities_aggregate": [ - 3832 + 3838 ], "value": [ 82 @@ -20459,19 +20882,19 @@ export default { "e_utility_types_enum": {}, "e_utility_types_enum_comparison_exp": { "_eq": [ - 1350 + 1356 ], "_in": [ - 1350 + 1356 ], "_is_null": [ 5 ], "_neq": [ - 1350 + 1356 ], "_nin": [ - 1350 + 1356 ], "__typename": [ 80 @@ -20482,7 +20905,7 @@ export default { 80 ], "player_utilities": [ - 3836 + 3842 ], "value": [ 80 @@ -20518,7 +20941,7 @@ export default { 40 ], "returning": [ - 1345 + 1351 ], "__typename": [ 80 @@ -20526,13 +20949,13 @@ export default { }, "e_utility_types_on_conflict": { "constraint": [ - 1349 + 1355 ], "update_columns": [ - 1363 + 1369 ], "where": [ - 1348 + 1354 ], "__typename": [ 80 @@ -20540,13 +20963,13 @@ export default { }, "e_utility_types_order_by": { "description": [ - 2946 + 2952 ], "player_utilities_aggregate": [ - 3835 + 3841 ], "value": [ - 2946 + 2952 ], "__typename": [ 80 @@ -20574,10 +20997,10 @@ export default { }, "e_utility_types_stream_cursor_input": { "initial_value": [ - 1362 + 1368 ], "ordering": [ - 308 + 314 ], "__typename": [ 80 @@ -20597,10 +21020,10 @@ export default { "e_utility_types_update_column": {}, "e_utility_types_updates": { "_set": [ - 1360 + 1366 ], "where": [ - 1348 + 1354 ], "__typename": [ 80 @@ -20611,10 +21034,10 @@ export default { 80 ], "match_veto_picks": [ - 2575, + 2581, { "distinct_on": [ - 2593, + 2599, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -20624,19 +21047,19 @@ export default { 40 ], "order_by": [ - 2591, + 2597, "[match_map_veto_picks_order_by!]" ], "where": [ - 2582 + 2588 ] } ], "match_veto_picks_aggregate": [ - 2576, + 2582, { "distinct_on": [ - 2593, + 2599, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -20646,11 +21069,11 @@ export default { 40 ], "order_by": [ - 2591, + 2597, "[match_map_veto_picks_order_by!]" ], "where": [ - 2582 + 2588 ] } ], @@ -20663,10 +21086,10 @@ export default { }, "e_veto_pick_types_aggregate": { "aggregate": [ - 1367 + 1373 ], "nodes": [ - 1365 + 1371 ], "__typename": [ 80 @@ -20677,7 +21100,7 @@ export default { 40, { "columns": [ - 1379, + 1385, "[e_veto_pick_types_select_column!]" ], "distinct": [ @@ -20686,10 +21109,10 @@ export default { } ], "max": [ - 1373 + 1379 ], "min": [ - 1374 + 1380 ], "__typename": [ 80 @@ -20697,22 +21120,22 @@ export default { }, "e_veto_pick_types_bool_exp": { "_and": [ - 1368 + 1374 ], "_not": [ - 1368 + 1374 ], "_or": [ - 1368 + 1374 ], "description": [ 82 ], "match_veto_picks": [ - 2582 + 2588 ], "match_veto_picks_aggregate": [ - 2577 + 2583 ], "value": [ 82 @@ -20725,19 +21148,19 @@ export default { "e_veto_pick_types_enum": {}, "e_veto_pick_types_enum_comparison_exp": { "_eq": [ - 1370 + 1376 ], "_in": [ - 1370 + 1376 ], "_is_null": [ 5 ], "_neq": [ - 1370 + 1376 ], "_nin": [ - 1370 + 1376 ], "__typename": [ 80 @@ -20748,7 +21171,7 @@ export default { 80 ], "match_veto_picks": [ - 2581 + 2587 ], "value": [ 80 @@ -20784,7 +21207,7 @@ export default { 40 ], "returning": [ - 1365 + 1371 ], "__typename": [ 80 @@ -20792,13 +21215,13 @@ export default { }, "e_veto_pick_types_on_conflict": { "constraint": [ - 1369 + 1375 ], "update_columns": [ - 1383 + 1389 ], "where": [ - 1368 + 1374 ], "__typename": [ 80 @@ -20806,13 +21229,13 @@ export default { }, "e_veto_pick_types_order_by": { "description": [ - 2946 + 2952 ], "match_veto_picks_aggregate": [ - 2580 + 2586 ], "value": [ - 2946 + 2952 ], "__typename": [ 80 @@ -20840,10 +21263,10 @@ export default { }, "e_veto_pick_types_stream_cursor_input": { "initial_value": [ - 1382 + 1388 ], "ordering": [ - 308 + 314 ], "__typename": [ 80 @@ -20863,10 +21286,10 @@ export default { "e_veto_pick_types_update_column": {}, "e_veto_pick_types_updates": { "_set": [ - 1380 + 1386 ], "where": [ - 1368 + 1374 ], "__typename": [ 80 @@ -20885,10 +21308,10 @@ export default { }, "e_winning_reasons_aggregate": { "aggregate": [ - 1387 + 1393 ], "nodes": [ - 1385 + 1391 ], "__typename": [ 80 @@ -20899,7 +21322,7 @@ export default { 40, { "columns": [ - 1399, + 1405, "[e_winning_reasons_select_column!]" ], "distinct": [ @@ -20908,10 +21331,10 @@ export default { } ], "max": [ - 1393 + 1399 ], "min": [ - 1394 + 1400 ], "__typename": [ 80 @@ -20919,13 +21342,13 @@ export default { }, "e_winning_reasons_bool_exp": { "_and": [ - 1388 + 1394 ], "_not": [ - 1388 + 1394 ], "_or": [ - 1388 + 1394 ], "description": [ 82 @@ -20941,19 +21364,19 @@ export default { "e_winning_reasons_enum": {}, "e_winning_reasons_enum_comparison_exp": { "_eq": [ - 1390 + 1396 ], "_in": [ - 1390 + 1396 ], "_is_null": [ 5 ], "_neq": [ - 1390 + 1396 ], "_nin": [ - 1390 + 1396 ], "__typename": [ 80 @@ -20997,7 +21420,7 @@ export default { 40 ], "returning": [ - 1385 + 1391 ], "__typename": [ 80 @@ -21005,13 +21428,13 @@ export default { }, "e_winning_reasons_on_conflict": { "constraint": [ - 1389 + 1395 ], "update_columns": [ - 1403 + 1409 ], "where": [ - 1388 + 1394 ], "__typename": [ 80 @@ -21019,10 +21442,10 @@ export default { }, "e_winning_reasons_order_by": { "description": [ - 2946 + 2952 ], "value": [ - 2946 + 2952 ], "__typename": [ 80 @@ -21050,10 +21473,10 @@ export default { }, "e_winning_reasons_stream_cursor_input": { "initial_value": [ - 1402 + 1408 ], "ordering": [ - 308 + 314 ], "__typename": [ 80 @@ -21073,10 +21496,10 @@ export default { "e_winning_reasons_update_column": {}, "e_winning_reasons_updates": { "_set": [ - 1400 + 1406 ], "where": [ - 1388 + 1394 ], "__typename": [ 80 @@ -21084,19 +21507,19 @@ export default { }, "event_match_links": { "created_at": [ - 4493 + 4499 ], "event": [ - 1636 + 1642 ], "event_id": [ - 4993 + 4999 ], "match": [ - 2761 + 2767 ], "match_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -21104,10 +21527,10 @@ export default { }, "event_match_links_aggregate": { "aggregate": [ - 1407 + 1413 ], "nodes": [ - 1405 + 1411 ], "__typename": [ 80 @@ -21118,7 +21541,7 @@ export default { 40, { "columns": [ - 1417, + 1423, "[event_match_links_select_column!]" ], "distinct": [ @@ -21127,10 +21550,10 @@ export default { } ], "max": [ - 1411 + 1417 ], "min": [ - 1412 + 1418 ], "__typename": [ 80 @@ -21138,28 +21561,28 @@ export default { }, "event_match_links_bool_exp": { "_and": [ - 1408 + 1414 ], "_not": [ - 1408 + 1414 ], "_or": [ - 1408 + 1414 ], "created_at": [ - 4494 + 4500 ], "event": [ - 1640 + 1646 ], "event_id": [ - 4995 + 5001 ], "match": [ - 2770 + 2776 ], "match_id": [ - 4995 + 5001 ], "__typename": [ 80 @@ -21168,19 +21591,19 @@ export default { "event_match_links_constraint": {}, "event_match_links_insert_input": { "created_at": [ - 4493 + 4499 ], "event": [ - 1647 + 1653 ], "event_id": [ - 4993 + 4999 ], "match": [ - 2779 + 2785 ], "match_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -21188,13 +21611,13 @@ export default { }, "event_match_links_max_fields": { "created_at": [ - 4493 + 4499 ], "event_id": [ - 4993 + 4999 ], "match_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -21202,13 +21625,13 @@ export default { }, "event_match_links_min_fields": { "created_at": [ - 4493 + 4499 ], "event_id": [ - 4993 + 4999 ], "match_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -21219,7 +21642,7 @@ export default { 40 ], "returning": [ - 1405 + 1411 ], "__typename": [ 80 @@ -21227,13 +21650,13 @@ export default { }, "event_match_links_on_conflict": { "constraint": [ - 1409 + 1415 ], "update_columns": [ - 1421 + 1427 ], "where": [ - 1408 + 1414 ], "__typename": [ 80 @@ -21241,19 +21664,19 @@ export default { }, "event_match_links_order_by": { "created_at": [ - 2946 + 2952 ], "event": [ - 1649 + 1655 ], "event_id": [ - 2946 + 2952 ], "match": [ - 2781 + 2787 ], "match_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -21261,10 +21684,10 @@ export default { }, "event_match_links_pk_columns_input": { "event_id": [ - 4993 + 4999 ], "match_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -21273,13 +21696,13 @@ export default { "event_match_links_select_column": {}, "event_match_links_set_input": { "created_at": [ - 4493 + 4499 ], "event_id": [ - 4993 + 4999 ], "match_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -21287,10 +21710,10 @@ export default { }, "event_match_links_stream_cursor_input": { "initial_value": [ - 1420 + 1426 ], "ordering": [ - 308 + 314 ], "__typename": [ 80 @@ -21298,13 +21721,13 @@ export default { }, "event_match_links_stream_cursor_value_input": { "created_at": [ - 4493 + 4499 ], "event_id": [ - 4993 + 4999 ], "match_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -21313,10 +21736,10 @@ export default { "event_match_links_update_column": {}, "event_match_links_updates": { "_set": [ - 1418 + 1424 ], "where": [ - 1408 + 1414 ], "__typename": [ 80 @@ -21324,13 +21747,13 @@ export default { }, "event_media": { "created_at": [ - 4493 + 4499 ], "event": [ - 1636 + 1642 ], "event_id": [ - 4993 + 4999 ], "external_url": [ 80 @@ -21339,16 +21762,16 @@ export default { 80 ], "id": [ - 4993 + 4999 ], "mime_type": [ 80 ], "players": [ - 1445, + 1451, { "distinct_on": [ - 1466, + 1472, "[event_media_players_select_column!]" ], "limit": [ @@ -21358,19 +21781,19 @@ export default { 40 ], "order_by": [ - 1464, + 1470, "[event_media_players_order_by!]" ], "where": [ - 1454 + 1460 ] } ], "players_aggregate": [ - 1446, + 1452, { "distinct_on": [ - 1466, + 1472, "[event_media_players_select_column!]" ], "limit": [ @@ -21380,16 +21803,16 @@ export default { 40 ], "order_by": [ - 1464, + 1470, "[event_media_players_order_by!]" ], "where": [ - 1454 + 1460 ] } ], "size": [ - 252 + 258 ], "thumbnail_filename": [ 80 @@ -21398,10 +21821,10 @@ export default { 80 ], "uploader": [ - 3904 + 3910 ], "uploader_steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -21409,10 +21832,10 @@ export default { }, "event_media_aggregate": { "aggregate": [ - 1427 + 1433 ], "nodes": [ - 1423 + 1429 ], "__typename": [ 80 @@ -21420,7 +21843,7 @@ export default { }, "event_media_aggregate_bool_exp": { "count": [ - 1426 + 1432 ], "__typename": [ 80 @@ -21428,13 +21851,13 @@ export default { }, "event_media_aggregate_bool_exp_count": { "arguments": [ - 1486 + 1492 ], "distinct": [ 5 ], "filter": [ - 1432 + 1438 ], "predicate": [ 41 @@ -21445,13 +21868,13 @@ export default { }, "event_media_aggregate_fields": { "avg": [ - 1430 + 1436 ], "count": [ 40, { "columns": [ - 1486, + 1492, "[event_media_select_column!]" ], "distinct": [ @@ -21460,31 +21883,31 @@ export default { } ], "max": [ - 1436 + 1442 ], "min": [ - 1438 + 1444 ], "stddev": [ - 1488 + 1494 ], "stddev_pop": [ - 1490 + 1496 ], "stddev_samp": [ - 1492 + 1498 ], "sum": [ - 1496 + 1502 ], "var_pop": [ - 1500 + 1506 ], "var_samp": [ - 1502 + 1508 ], "variance": [ - 1504 + 1510 ], "__typename": [ 80 @@ -21492,37 +21915,37 @@ export default { }, "event_media_aggregate_order_by": { "avg": [ - 1431 + 1437 ], "count": [ - 2946 + 2952 ], "max": [ - 1437 + 1443 ], "min": [ - 1439 + 1445 ], "stddev": [ - 1489 + 1495 ], "stddev_pop": [ - 1491 + 1497 ], "stddev_samp": [ - 1493 + 1499 ], "sum": [ - 1497 + 1503 ], "var_pop": [ - 1501 + 1507 ], "var_samp": [ - 1503 + 1509 ], "variance": [ - 1505 + 1511 ], "__typename": [ 80 @@ -21530,10 +21953,10 @@ export default { }, "event_media_arr_rel_insert_input": { "data": [ - 1435 + 1441 ], "on_conflict": [ - 1442 + 1448 ], "__typename": [ 80 @@ -21552,10 +21975,10 @@ export default { }, "event_media_avg_order_by": { "size": [ - 2946 + 2952 ], "uploader_steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -21563,22 +21986,22 @@ export default { }, "event_media_bool_exp": { "_and": [ - 1432 + 1438 ], "_not": [ - 1432 + 1438 ], "_or": [ - 1432 + 1438 ], "created_at": [ - 4494 + 4500 ], "event": [ - 1640 + 1646 ], "event_id": [ - 4995 + 5001 ], "external_url": [ 82 @@ -21587,19 +22010,19 @@ export default { 82 ], "id": [ - 4995 + 5001 ], "mime_type": [ 82 ], "players": [ - 1454 + 1460 ], "players_aggregate": [ - 1447 + 1453 ], "size": [ - 254 + 260 ], "thumbnail_filename": [ 82 @@ -21608,10 +22031,10 @@ export default { 82 ], "uploader": [ - 3908 + 3914 ], "uploader_steam_id": [ - 254 + 260 ], "__typename": [ 80 @@ -21620,10 +22043,10 @@ export default { "event_media_constraint": {}, "event_media_inc_input": { "size": [ - 252 + 258 ], "uploader_steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -21631,13 +22054,13 @@ export default { }, "event_media_insert_input": { "created_at": [ - 4493 + 4499 ], "event": [ - 1647 + 1653 ], "event_id": [ - 4993 + 4999 ], "external_url": [ 80 @@ -21646,16 +22069,16 @@ export default { 80 ], "id": [ - 4993 + 4999 ], "mime_type": [ 80 ], "players": [ - 1451 + 1457 ], "size": [ - 252 + 258 ], "thumbnail_filename": [ 80 @@ -21664,10 +22087,10 @@ export default { 80 ], "uploader": [ - 3915 + 3921 ], "uploader_steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -21675,10 +22098,10 @@ export default { }, "event_media_max_fields": { "created_at": [ - 4493 + 4499 ], "event_id": [ - 4993 + 4999 ], "external_url": [ 80 @@ -21687,13 +22110,13 @@ export default { 80 ], "id": [ - 4993 + 4999 ], "mime_type": [ 80 ], "size": [ - 252 + 258 ], "thumbnail_filename": [ 80 @@ -21702,7 +22125,7 @@ export default { 80 ], "uploader_steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -21710,34 +22133,34 @@ export default { }, "event_media_max_order_by": { "created_at": [ - 2946 + 2952 ], "event_id": [ - 2946 + 2952 ], "external_url": [ - 2946 + 2952 ], "filename": [ - 2946 + 2952 ], "id": [ - 2946 + 2952 ], "mime_type": [ - 2946 + 2952 ], "size": [ - 2946 + 2952 ], "thumbnail_filename": [ - 2946 + 2952 ], "title": [ - 2946 + 2952 ], "uploader_steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -21745,10 +22168,10 @@ export default { }, "event_media_min_fields": { "created_at": [ - 4493 + 4499 ], "event_id": [ - 4993 + 4999 ], "external_url": [ 80 @@ -21757,13 +22180,13 @@ export default { 80 ], "id": [ - 4993 + 4999 ], "mime_type": [ 80 ], "size": [ - 252 + 258 ], "thumbnail_filename": [ 80 @@ -21772,7 +22195,7 @@ export default { 80 ], "uploader_steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -21780,34 +22203,34 @@ export default { }, "event_media_min_order_by": { "created_at": [ - 2946 + 2952 ], "event_id": [ - 2946 + 2952 ], "external_url": [ - 2946 + 2952 ], "filename": [ - 2946 + 2952 ], "id": [ - 2946 + 2952 ], "mime_type": [ - 2946 + 2952 ], "size": [ - 2946 + 2952 ], "thumbnail_filename": [ - 2946 + 2952 ], "title": [ - 2946 + 2952 ], "uploader_steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -21818,7 +22241,7 @@ export default { 40 ], "returning": [ - 1423 + 1429 ], "__typename": [ 80 @@ -21826,10 +22249,10 @@ export default { }, "event_media_obj_rel_insert_input": { "data": [ - 1435 + 1441 ], "on_conflict": [ - 1442 + 1448 ], "__typename": [ 80 @@ -21837,13 +22260,13 @@ export default { }, "event_media_on_conflict": { "constraint": [ - 1433 + 1439 ], "update_columns": [ - 1498 + 1504 ], "where": [ - 1432 + 1438 ], "__typename": [ 80 @@ -21851,43 +22274,43 @@ export default { }, "event_media_order_by": { "created_at": [ - 2946 + 2952 ], "event": [ - 1649 + 1655 ], "event_id": [ - 2946 + 2952 ], "external_url": [ - 2946 + 2952 ], "filename": [ - 2946 + 2952 ], "id": [ - 2946 + 2952 ], "mime_type": [ - 2946 + 2952 ], "players_aggregate": [ - 1450 + 1456 ], "size": [ - 2946 + 2952 ], "thumbnail_filename": [ - 2946 + 2952 ], "title": [ - 2946 + 2952 ], "uploader": [ - 3917 + 3923 ], "uploader_steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -21895,7 +22318,7 @@ export default { }, "event_media_pk_columns_input": { "id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -21903,19 +22326,19 @@ export default { }, "event_media_players": { "created_at": [ - 4493 + 4499 ], "media": [ - 1423 + 1429 ], "media_id": [ - 4993 + 4999 ], "player": [ - 3904 + 3910 ], "steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -21923,10 +22346,10 @@ export default { }, "event_media_players_aggregate": { "aggregate": [ - 1449 + 1455 ], "nodes": [ - 1445 + 1451 ], "__typename": [ 80 @@ -21934,7 +22357,7 @@ export default { }, "event_media_players_aggregate_bool_exp": { "count": [ - 1448 + 1454 ], "__typename": [ 80 @@ -21942,13 +22365,13 @@ export default { }, "event_media_players_aggregate_bool_exp_count": { "arguments": [ - 1466 + 1472 ], "distinct": [ 5 ], "filter": [ - 1454 + 1460 ], "predicate": [ 41 @@ -21959,13 +22382,13 @@ export default { }, "event_media_players_aggregate_fields": { "avg": [ - 1452 + 1458 ], "count": [ 40, { "columns": [ - 1466, + 1472, "[event_media_players_select_column!]" ], "distinct": [ @@ -21974,31 +22397,31 @@ export default { } ], "max": [ - 1458 + 1464 ], "min": [ - 1460 + 1466 ], "stddev": [ - 1468 + 1474 ], "stddev_pop": [ - 1470 + 1476 ], "stddev_samp": [ - 1472 + 1478 ], "sum": [ - 1476 + 1482 ], "var_pop": [ - 1480 + 1486 ], "var_samp": [ - 1482 + 1488 ], "variance": [ - 1484 + 1490 ], "__typename": [ 80 @@ -22006,37 +22429,37 @@ export default { }, "event_media_players_aggregate_order_by": { "avg": [ - 1453 + 1459 ], "count": [ - 2946 + 2952 ], "max": [ - 1459 + 1465 ], "min": [ - 1461 + 1467 ], "stddev": [ - 1469 + 1475 ], "stddev_pop": [ - 1471 + 1477 ], "stddev_samp": [ - 1473 + 1479 ], "sum": [ - 1477 + 1483 ], "var_pop": [ - 1481 + 1487 ], "var_samp": [ - 1483 + 1489 ], "variance": [ - 1485 + 1491 ], "__typename": [ 80 @@ -22044,10 +22467,10 @@ export default { }, "event_media_players_arr_rel_insert_input": { "data": [ - 1457 + 1463 ], "on_conflict": [ - 1463 + 1469 ], "__typename": [ 80 @@ -22063,7 +22486,7 @@ export default { }, "event_media_players_avg_order_by": { "steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -22071,28 +22494,28 @@ export default { }, "event_media_players_bool_exp": { "_and": [ - 1454 + 1460 ], "_not": [ - 1454 + 1460 ], "_or": [ - 1454 + 1460 ], "created_at": [ - 4494 + 4500 ], "media": [ - 1432 + 1438 ], "media_id": [ - 4995 + 5001 ], "player": [ - 3908 + 3914 ], "steam_id": [ - 254 + 260 ], "__typename": [ 80 @@ -22101,7 +22524,7 @@ export default { "event_media_players_constraint": {}, "event_media_players_inc_input": { "steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -22109,19 +22532,19 @@ export default { }, "event_media_players_insert_input": { "created_at": [ - 4493 + 4499 ], "media": [ - 1441 + 1447 ], "media_id": [ - 4993 + 4999 ], "player": [ - 3915 + 3921 ], "steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -22129,13 +22552,13 @@ export default { }, "event_media_players_max_fields": { "created_at": [ - 4493 + 4499 ], "media_id": [ - 4993 + 4999 ], "steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -22143,13 +22566,13 @@ export default { }, "event_media_players_max_order_by": { "created_at": [ - 2946 + 2952 ], "media_id": [ - 2946 + 2952 ], "steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -22157,13 +22580,13 @@ export default { }, "event_media_players_min_fields": { "created_at": [ - 4493 + 4499 ], "media_id": [ - 4993 + 4999 ], "steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -22171,13 +22594,13 @@ export default { }, "event_media_players_min_order_by": { "created_at": [ - 2946 + 2952 ], "media_id": [ - 2946 + 2952 ], "steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -22188,7 +22611,7 @@ export default { 40 ], "returning": [ - 1445 + 1451 ], "__typename": [ 80 @@ -22196,13 +22619,13 @@ export default { }, "event_media_players_on_conflict": { "constraint": [ - 1455 + 1461 ], "update_columns": [ - 1478 + 1484 ], "where": [ - 1454 + 1460 ], "__typename": [ 80 @@ -22210,19 +22633,19 @@ export default { }, "event_media_players_order_by": { "created_at": [ - 2946 + 2952 ], "media": [ - 1443 + 1449 ], "media_id": [ - 2946 + 2952 ], "player": [ - 3917 + 3923 ], "steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -22230,10 +22653,10 @@ export default { }, "event_media_players_pk_columns_input": { "media_id": [ - 4993 + 4999 ], "steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -22242,13 +22665,13 @@ export default { "event_media_players_select_column": {}, "event_media_players_set_input": { "created_at": [ - 4493 + 4499 ], "media_id": [ - 4993 + 4999 ], "steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -22264,7 +22687,7 @@ export default { }, "event_media_players_stddev_order_by": { "steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -22280,7 +22703,7 @@ export default { }, "event_media_players_stddev_pop_order_by": { "steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -22296,7 +22719,7 @@ export default { }, "event_media_players_stddev_samp_order_by": { "steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -22304,10 +22727,10 @@ export default { }, "event_media_players_stream_cursor_input": { "initial_value": [ - 1475 + 1481 ], "ordering": [ - 308 + 314 ], "__typename": [ 80 @@ -22315,13 +22738,13 @@ export default { }, "event_media_players_stream_cursor_value_input": { "created_at": [ - 4493 + 4499 ], "media_id": [ - 4993 + 4999 ], "steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -22329,7 +22752,7 @@ export default { }, "event_media_players_sum_fields": { "steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -22337,7 +22760,7 @@ export default { }, "event_media_players_sum_order_by": { "steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -22346,13 +22769,13 @@ export default { "event_media_players_update_column": {}, "event_media_players_updates": { "_inc": [ - 1456 + 1462 ], "_set": [ - 1467 + 1473 ], "where": [ - 1454 + 1460 ], "__typename": [ 80 @@ -22368,7 +22791,7 @@ export default { }, "event_media_players_var_pop_order_by": { "steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -22384,7 +22807,7 @@ export default { }, "event_media_players_var_samp_order_by": { "steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -22400,7 +22823,7 @@ export default { }, "event_media_players_variance_order_by": { "steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -22409,10 +22832,10 @@ export default { "event_media_select_column": {}, "event_media_set_input": { "created_at": [ - 4493 + 4499 ], "event_id": [ - 4993 + 4999 ], "external_url": [ 80 @@ -22421,13 +22844,13 @@ export default { 80 ], "id": [ - 4993 + 4999 ], "mime_type": [ 80 ], "size": [ - 252 + 258 ], "thumbnail_filename": [ 80 @@ -22436,7 +22859,7 @@ export default { 80 ], "uploader_steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -22455,10 +22878,10 @@ export default { }, "event_media_stddev_order_by": { "size": [ - 2946 + 2952 ], "uploader_steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -22477,10 +22900,10 @@ export default { }, "event_media_stddev_pop_order_by": { "size": [ - 2946 + 2952 ], "uploader_steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -22499,10 +22922,10 @@ export default { }, "event_media_stddev_samp_order_by": { "size": [ - 2946 + 2952 ], "uploader_steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -22510,10 +22933,10 @@ export default { }, "event_media_stream_cursor_input": { "initial_value": [ - 1495 + 1501 ], "ordering": [ - 308 + 314 ], "__typename": [ 80 @@ -22521,10 +22944,10 @@ export default { }, "event_media_stream_cursor_value_input": { "created_at": [ - 4493 + 4499 ], "event_id": [ - 4993 + 4999 ], "external_url": [ 80 @@ -22533,13 +22956,13 @@ export default { 80 ], "id": [ - 4993 + 4999 ], "mime_type": [ 80 ], "size": [ - 252 + 258 ], "thumbnail_filename": [ 80 @@ -22548,7 +22971,7 @@ export default { 80 ], "uploader_steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -22556,10 +22979,10 @@ export default { }, "event_media_sum_fields": { "size": [ - 252 + 258 ], "uploader_steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -22567,10 +22990,10 @@ export default { }, "event_media_sum_order_by": { "size": [ - 2946 + 2952 ], "uploader_steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -22579,13 +23002,13 @@ export default { "event_media_update_column": {}, "event_media_updates": { "_inc": [ - 1434 + 1440 ], "_set": [ - 1487 + 1493 ], "where": [ - 1432 + 1438 ], "__typename": [ 80 @@ -22604,10 +23027,10 @@ export default { }, "event_media_var_pop_order_by": { "size": [ - 2946 + 2952 ], "uploader_steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -22626,10 +23049,10 @@ export default { }, "event_media_var_samp_order_by": { "size": [ - 2946 + 2952 ], "uploader_steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -22648,10 +23071,10 @@ export default { }, "event_media_variance_order_by": { "size": [ - 2946 + 2952 ], "uploader_steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -22659,19 +23082,19 @@ export default { }, "event_organizers": { "created_at": [ - 4493 + 4499 ], "event": [ - 1636 + 1642 ], "event_id": [ - 4993 + 4999 ], "organizer": [ - 3904 + 3910 ], "steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -22679,10 +23102,10 @@ export default { }, "event_organizers_aggregate": { "aggregate": [ - 1510 + 1516 ], "nodes": [ - 1506 + 1512 ], "__typename": [ 80 @@ -22690,7 +23113,7 @@ export default { }, "event_organizers_aggregate_bool_exp": { "count": [ - 1509 + 1515 ], "__typename": [ 80 @@ -22698,13 +23121,13 @@ export default { }, "event_organizers_aggregate_bool_exp_count": { "arguments": [ - 1527 + 1533 ], "distinct": [ 5 ], "filter": [ - 1515 + 1521 ], "predicate": [ 41 @@ -22715,13 +23138,13 @@ export default { }, "event_organizers_aggregate_fields": { "avg": [ - 1513 + 1519 ], "count": [ 40, { "columns": [ - 1527, + 1533, "[event_organizers_select_column!]" ], "distinct": [ @@ -22730,31 +23153,31 @@ export default { } ], "max": [ - 1519 + 1525 ], "min": [ - 1521 + 1527 ], "stddev": [ - 1529 + 1535 ], "stddev_pop": [ - 1531 + 1537 ], "stddev_samp": [ - 1533 + 1539 ], "sum": [ - 1537 + 1543 ], "var_pop": [ - 1541 + 1547 ], "var_samp": [ - 1543 + 1549 ], "variance": [ - 1545 + 1551 ], "__typename": [ 80 @@ -22762,37 +23185,37 @@ export default { }, "event_organizers_aggregate_order_by": { "avg": [ - 1514 + 1520 ], "count": [ - 2946 + 2952 ], "max": [ - 1520 + 1526 ], "min": [ - 1522 + 1528 ], "stddev": [ - 1530 + 1536 ], "stddev_pop": [ - 1532 + 1538 ], "stddev_samp": [ - 1534 + 1540 ], "sum": [ - 1538 + 1544 ], "var_pop": [ - 1542 + 1548 ], "var_samp": [ - 1544 + 1550 ], "variance": [ - 1546 + 1552 ], "__typename": [ 80 @@ -22800,10 +23223,10 @@ export default { }, "event_organizers_arr_rel_insert_input": { "data": [ - 1518 + 1524 ], "on_conflict": [ - 1524 + 1530 ], "__typename": [ 80 @@ -22819,7 +23242,7 @@ export default { }, "event_organizers_avg_order_by": { "steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -22827,28 +23250,28 @@ export default { }, "event_organizers_bool_exp": { "_and": [ - 1515 + 1521 ], "_not": [ - 1515 + 1521 ], "_or": [ - 1515 + 1521 ], "created_at": [ - 4494 + 4500 ], "event": [ - 1640 + 1646 ], "event_id": [ - 4995 + 5001 ], "organizer": [ - 3908 + 3914 ], "steam_id": [ - 254 + 260 ], "__typename": [ 80 @@ -22857,7 +23280,7 @@ export default { "event_organizers_constraint": {}, "event_organizers_inc_input": { "steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -22865,19 +23288,19 @@ export default { }, "event_organizers_insert_input": { "created_at": [ - 4493 + 4499 ], "event": [ - 1647 + 1653 ], "event_id": [ - 4993 + 4999 ], "organizer": [ - 3915 + 3921 ], "steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -22885,13 +23308,13 @@ export default { }, "event_organizers_max_fields": { "created_at": [ - 4493 + 4499 ], "event_id": [ - 4993 + 4999 ], "steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -22899,13 +23322,13 @@ export default { }, "event_organizers_max_order_by": { "created_at": [ - 2946 + 2952 ], "event_id": [ - 2946 + 2952 ], "steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -22913,13 +23336,13 @@ export default { }, "event_organizers_min_fields": { "created_at": [ - 4493 + 4499 ], "event_id": [ - 4993 + 4999 ], "steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -22927,13 +23350,13 @@ export default { }, "event_organizers_min_order_by": { "created_at": [ - 2946 + 2952 ], "event_id": [ - 2946 + 2952 ], "steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -22944,7 +23367,7 @@ export default { 40 ], "returning": [ - 1506 + 1512 ], "__typename": [ 80 @@ -22952,13 +23375,13 @@ export default { }, "event_organizers_on_conflict": { "constraint": [ - 1516 + 1522 ], "update_columns": [ - 1539 + 1545 ], "where": [ - 1515 + 1521 ], "__typename": [ 80 @@ -22966,19 +23389,19 @@ export default { }, "event_organizers_order_by": { "created_at": [ - 2946 + 2952 ], "event": [ - 1649 + 1655 ], "event_id": [ - 2946 + 2952 ], "organizer": [ - 3917 + 3923 ], "steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -22986,10 +23409,10 @@ export default { }, "event_organizers_pk_columns_input": { "event_id": [ - 4993 + 4999 ], "steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -22998,13 +23421,13 @@ export default { "event_organizers_select_column": {}, "event_organizers_set_input": { "created_at": [ - 4493 + 4499 ], "event_id": [ - 4993 + 4999 ], "steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -23020,7 +23443,7 @@ export default { }, "event_organizers_stddev_order_by": { "steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -23036,7 +23459,7 @@ export default { }, "event_organizers_stddev_pop_order_by": { "steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -23052,7 +23475,7 @@ export default { }, "event_organizers_stddev_samp_order_by": { "steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -23060,10 +23483,10 @@ export default { }, "event_organizers_stream_cursor_input": { "initial_value": [ - 1536 + 1542 ], "ordering": [ - 308 + 314 ], "__typename": [ 80 @@ -23071,13 +23494,13 @@ export default { }, "event_organizers_stream_cursor_value_input": { "created_at": [ - 4493 + 4499 ], "event_id": [ - 4993 + 4999 ], "steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -23085,7 +23508,7 @@ export default { }, "event_organizers_sum_fields": { "steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -23093,7 +23516,7 @@ export default { }, "event_organizers_sum_order_by": { "steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -23102,13 +23525,13 @@ export default { "event_organizers_update_column": {}, "event_organizers_updates": { "_inc": [ - 1517 + 1523 ], "_set": [ - 1528 + 1534 ], "where": [ - 1515 + 1521 ], "__typename": [ 80 @@ -23124,7 +23547,7 @@ export default { }, "event_organizers_var_pop_order_by": { "steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -23140,7 +23563,7 @@ export default { }, "event_organizers_var_samp_order_by": { "steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -23156,7 +23579,7 @@ export default { }, "event_organizers_variance_order_by": { "steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -23164,19 +23587,19 @@ export default { }, "event_players": { "created_at": [ - 4493 + 4499 ], "event": [ - 1636 + 1642 ], "event_id": [ - 4993 + 4999 ], "player": [ - 3904 + 3910 ], "steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -23184,10 +23607,10 @@ export default { }, "event_players_aggregate": { "aggregate": [ - 1551 + 1557 ], "nodes": [ - 1547 + 1553 ], "__typename": [ 80 @@ -23195,7 +23618,7 @@ export default { }, "event_players_aggregate_bool_exp": { "count": [ - 1550 + 1556 ], "__typename": [ 80 @@ -23203,13 +23626,13 @@ export default { }, "event_players_aggregate_bool_exp_count": { "arguments": [ - 1568 + 1574 ], "distinct": [ 5 ], "filter": [ - 1556 + 1562 ], "predicate": [ 41 @@ -23220,13 +23643,13 @@ export default { }, "event_players_aggregate_fields": { "avg": [ - 1554 + 1560 ], "count": [ 40, { "columns": [ - 1568, + 1574, "[event_players_select_column!]" ], "distinct": [ @@ -23235,31 +23658,31 @@ export default { } ], "max": [ - 1560 + 1566 ], "min": [ - 1562 + 1568 ], "stddev": [ - 1570 + 1576 ], "stddev_pop": [ - 1572 + 1578 ], "stddev_samp": [ - 1574 + 1580 ], "sum": [ - 1578 + 1584 ], "var_pop": [ - 1582 + 1588 ], "var_samp": [ - 1584 + 1590 ], "variance": [ - 1586 + 1592 ], "__typename": [ 80 @@ -23267,37 +23690,37 @@ export default { }, "event_players_aggregate_order_by": { "avg": [ - 1555 + 1561 ], "count": [ - 2946 + 2952 ], "max": [ - 1561 + 1567 ], "min": [ - 1563 + 1569 ], "stddev": [ - 1571 + 1577 ], "stddev_pop": [ - 1573 + 1579 ], "stddev_samp": [ - 1575 + 1581 ], "sum": [ - 1579 + 1585 ], "var_pop": [ - 1583 + 1589 ], "var_samp": [ - 1585 + 1591 ], "variance": [ - 1587 + 1593 ], "__typename": [ 80 @@ -23305,10 +23728,10 @@ export default { }, "event_players_arr_rel_insert_input": { "data": [ - 1559 + 1565 ], "on_conflict": [ - 1565 + 1571 ], "__typename": [ 80 @@ -23324,7 +23747,7 @@ export default { }, "event_players_avg_order_by": { "steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -23332,28 +23755,28 @@ export default { }, "event_players_bool_exp": { "_and": [ - 1556 + 1562 ], "_not": [ - 1556 + 1562 ], "_or": [ - 1556 + 1562 ], "created_at": [ - 4494 + 4500 ], "event": [ - 1640 + 1646 ], "event_id": [ - 4995 + 5001 ], "player": [ - 3908 + 3914 ], "steam_id": [ - 254 + 260 ], "__typename": [ 80 @@ -23362,7 +23785,7 @@ export default { "event_players_constraint": {}, "event_players_inc_input": { "steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -23370,19 +23793,19 @@ export default { }, "event_players_insert_input": { "created_at": [ - 4493 + 4499 ], "event": [ - 1647 + 1653 ], "event_id": [ - 4993 + 4999 ], "player": [ - 3915 + 3921 ], "steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -23390,13 +23813,13 @@ export default { }, "event_players_max_fields": { "created_at": [ - 4493 + 4499 ], "event_id": [ - 4993 + 4999 ], "steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -23404,13 +23827,13 @@ export default { }, "event_players_max_order_by": { "created_at": [ - 2946 + 2952 ], "event_id": [ - 2946 + 2952 ], "steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -23418,13 +23841,13 @@ export default { }, "event_players_min_fields": { "created_at": [ - 4493 + 4499 ], "event_id": [ - 4993 + 4999 ], "steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -23432,13 +23855,13 @@ export default { }, "event_players_min_order_by": { "created_at": [ - 2946 + 2952 ], "event_id": [ - 2946 + 2952 ], "steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -23449,7 +23872,7 @@ export default { 40 ], "returning": [ - 1547 + 1553 ], "__typename": [ 80 @@ -23457,13 +23880,13 @@ export default { }, "event_players_on_conflict": { "constraint": [ - 1557 + 1563 ], "update_columns": [ - 1580 + 1586 ], "where": [ - 1556 + 1562 ], "__typename": [ 80 @@ -23471,19 +23894,19 @@ export default { }, "event_players_order_by": { "created_at": [ - 2946 + 2952 ], "event": [ - 1649 + 1655 ], "event_id": [ - 2946 + 2952 ], "player": [ - 3917 + 3923 ], "steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -23491,10 +23914,10 @@ export default { }, "event_players_pk_columns_input": { "event_id": [ - 4993 + 4999 ], "steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -23503,13 +23926,13 @@ export default { "event_players_select_column": {}, "event_players_set_input": { "created_at": [ - 4493 + 4499 ], "event_id": [ - 4993 + 4999 ], "steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -23525,7 +23948,7 @@ export default { }, "event_players_stddev_order_by": { "steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -23541,7 +23964,7 @@ export default { }, "event_players_stddev_pop_order_by": { "steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -23557,7 +23980,7 @@ export default { }, "event_players_stddev_samp_order_by": { "steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -23565,10 +23988,10 @@ export default { }, "event_players_stream_cursor_input": { "initial_value": [ - 1577 + 1583 ], "ordering": [ - 308 + 314 ], "__typename": [ 80 @@ -23576,13 +23999,13 @@ export default { }, "event_players_stream_cursor_value_input": { "created_at": [ - 4493 + 4499 ], "event_id": [ - 4993 + 4999 ], "steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -23590,7 +24013,7 @@ export default { }, "event_players_sum_fields": { "steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -23598,7 +24021,7 @@ export default { }, "event_players_sum_order_by": { "steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -23607,13 +24030,13 @@ export default { "event_players_update_column": {}, "event_players_updates": { "_inc": [ - 1558 + 1564 ], "_set": [ - 1569 + 1575 ], "where": [ - 1556 + 1562 ], "__typename": [ 80 @@ -23629,7 +24052,7 @@ export default { }, "event_players_var_pop_order_by": { "steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -23645,7 +24068,7 @@ export default { }, "event_players_var_samp_order_by": { "steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -23661,7 +24084,7 @@ export default { }, "event_players_variance_order_by": { "steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -23669,19 +24092,19 @@ export default { }, "event_teams": { "created_at": [ - 4493 + 4499 ], "event": [ - 1636 + 1642 ], "event_id": [ - 4993 + 4999 ], "team": [ - 4446 + 4452 ], "team_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -23689,10 +24112,10 @@ export default { }, "event_teams_aggregate": { "aggregate": [ - 1592 + 1598 ], "nodes": [ - 1588 + 1594 ], "__typename": [ 80 @@ -23700,7 +24123,7 @@ export default { }, "event_teams_aggregate_bool_exp": { "count": [ - 1591 + 1597 ], "__typename": [ 80 @@ -23708,13 +24131,13 @@ export default { }, "event_teams_aggregate_bool_exp_count": { "arguments": [ - 1606 + 1612 ], "distinct": [ 5 ], "filter": [ - 1595 + 1601 ], "predicate": [ 41 @@ -23728,7 +24151,7 @@ export default { 40, { "columns": [ - 1606, + 1612, "[event_teams_select_column!]" ], "distinct": [ @@ -23737,10 +24160,10 @@ export default { } ], "max": [ - 1598 + 1604 ], "min": [ - 1600 + 1606 ], "__typename": [ 80 @@ -23748,13 +24171,13 @@ export default { }, "event_teams_aggregate_order_by": { "count": [ - 2946 + 2952 ], "max": [ - 1599 + 1605 ], "min": [ - 1601 + 1607 ], "__typename": [ 80 @@ -23762,10 +24185,10 @@ export default { }, "event_teams_arr_rel_insert_input": { "data": [ - 1597 + 1603 ], "on_conflict": [ - 1603 + 1609 ], "__typename": [ 80 @@ -23773,28 +24196,28 @@ export default { }, "event_teams_bool_exp": { "_and": [ - 1595 + 1601 ], "_not": [ - 1595 + 1601 ], "_or": [ - 1595 + 1601 ], "created_at": [ - 4494 + 4500 ], "event": [ - 1640 + 1646 ], "event_id": [ - 4995 + 5001 ], "team": [ - 4457 + 4463 ], "team_id": [ - 4995 + 5001 ], "__typename": [ 80 @@ -23803,19 +24226,19 @@ export default { "event_teams_constraint": {}, "event_teams_insert_input": { "created_at": [ - 4493 + 4499 ], "event": [ - 1647 + 1653 ], "event_id": [ - 4993 + 4999 ], "team": [ - 4466 + 4472 ], "team_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -23823,13 +24246,13 @@ export default { }, "event_teams_max_fields": { "created_at": [ - 4493 + 4499 ], "event_id": [ - 4993 + 4999 ], "team_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -23837,13 +24260,13 @@ export default { }, "event_teams_max_order_by": { "created_at": [ - 2946 + 2952 ], "event_id": [ - 2946 + 2952 ], "team_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -23851,13 +24274,13 @@ export default { }, "event_teams_min_fields": { "created_at": [ - 4493 + 4499 ], "event_id": [ - 4993 + 4999 ], "team_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -23865,13 +24288,13 @@ export default { }, "event_teams_min_order_by": { "created_at": [ - 2946 + 2952 ], "event_id": [ - 2946 + 2952 ], "team_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -23882,7 +24305,7 @@ export default { 40 ], "returning": [ - 1588 + 1594 ], "__typename": [ 80 @@ -23890,13 +24313,13 @@ export default { }, "event_teams_on_conflict": { "constraint": [ - 1596 + 1602 ], "update_columns": [ - 1610 + 1616 ], "where": [ - 1595 + 1601 ], "__typename": [ 80 @@ -23904,19 +24327,19 @@ export default { }, "event_teams_order_by": { "created_at": [ - 2946 + 2952 ], "event": [ - 1649 + 1655 ], "event_id": [ - 2946 + 2952 ], "team": [ - 4468 + 4474 ], "team_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -23924,10 +24347,10 @@ export default { }, "event_teams_pk_columns_input": { "event_id": [ - 4993 + 4999 ], "team_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -23936,13 +24359,13 @@ export default { "event_teams_select_column": {}, "event_teams_set_input": { "created_at": [ - 4493 + 4499 ], "event_id": [ - 4993 + 4999 ], "team_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -23950,10 +24373,10 @@ export default { }, "event_teams_stream_cursor_input": { "initial_value": [ - 1609 + 1615 ], "ordering": [ - 308 + 314 ], "__typename": [ 80 @@ -23961,13 +24384,13 @@ export default { }, "event_teams_stream_cursor_value_input": { "created_at": [ - 4493 + 4499 ], "event_id": [ - 4993 + 4999 ], "team_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -23976,10 +24399,10 @@ export default { "event_teams_update_column": {}, "event_teams_updates": { "_set": [ - 1607 + 1613 ], "where": [ - 1595 + 1601 ], "__typename": [ 80 @@ -23987,19 +24410,19 @@ export default { }, "event_tournaments": { "created_at": [ - 4493 + 4499 ], "event": [ - 1636 + 1642 ], "event_id": [ - 4993 + 4999 ], "tournament": [ - 4929 + 4935 ], "tournament_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -24007,10 +24430,10 @@ export default { }, "event_tournaments_aggregate": { "aggregate": [ - 1616 + 1622 ], "nodes": [ - 1612 + 1618 ], "__typename": [ 80 @@ -24018,7 +24441,7 @@ export default { }, "event_tournaments_aggregate_bool_exp": { "count": [ - 1615 + 1621 ], "__typename": [ 80 @@ -24026,13 +24449,13 @@ export default { }, "event_tournaments_aggregate_bool_exp_count": { "arguments": [ - 1630 + 1636 ], "distinct": [ 5 ], "filter": [ - 1619 + 1625 ], "predicate": [ 41 @@ -24046,7 +24469,7 @@ export default { 40, { "columns": [ - 1630, + 1636, "[event_tournaments_select_column!]" ], "distinct": [ @@ -24055,10 +24478,10 @@ export default { } ], "max": [ - 1622 + 1628 ], "min": [ - 1624 + 1630 ], "__typename": [ 80 @@ -24066,13 +24489,13 @@ export default { }, "event_tournaments_aggregate_order_by": { "count": [ - 2946 + 2952 ], "max": [ - 1623 + 1629 ], "min": [ - 1625 + 1631 ], "__typename": [ 80 @@ -24080,10 +24503,10 @@ export default { }, "event_tournaments_arr_rel_insert_input": { "data": [ - 1621 + 1627 ], "on_conflict": [ - 1627 + 1633 ], "__typename": [ 80 @@ -24091,28 +24514,28 @@ export default { }, "event_tournaments_bool_exp": { "_and": [ - 1619 + 1625 ], "_not": [ - 1619 + 1625 ], "_or": [ - 1619 + 1625 ], "created_at": [ - 4494 + 4500 ], "event": [ - 1640 + 1646 ], "event_id": [ - 4995 + 5001 ], "tournament": [ - 4950 + 4956 ], "tournament_id": [ - 4995 + 5001 ], "__typename": [ 80 @@ -24121,19 +24544,19 @@ export default { "event_tournaments_constraint": {}, "event_tournaments_insert_input": { "created_at": [ - 4493 + 4499 ], "event": [ - 1647 + 1653 ], "event_id": [ - 4993 + 4999 ], "tournament": [ - 4959 + 4965 ], "tournament_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -24141,13 +24564,13 @@ export default { }, "event_tournaments_max_fields": { "created_at": [ - 4493 + 4499 ], "event_id": [ - 4993 + 4999 ], "tournament_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -24155,13 +24578,13 @@ export default { }, "event_tournaments_max_order_by": { "created_at": [ - 2946 + 2952 ], "event_id": [ - 2946 + 2952 ], "tournament_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -24169,13 +24592,13 @@ export default { }, "event_tournaments_min_fields": { "created_at": [ - 4493 + 4499 ], "event_id": [ - 4993 + 4999 ], "tournament_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -24183,13 +24606,13 @@ export default { }, "event_tournaments_min_order_by": { "created_at": [ - 2946 + 2952 ], "event_id": [ - 2946 + 2952 ], "tournament_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -24200,7 +24623,7 @@ export default { 40 ], "returning": [ - 1612 + 1618 ], "__typename": [ 80 @@ -24208,13 +24631,13 @@ export default { }, "event_tournaments_on_conflict": { "constraint": [ - 1620 + 1626 ], "update_columns": [ - 1634 + 1640 ], "where": [ - 1619 + 1625 ], "__typename": [ 80 @@ -24222,19 +24645,19 @@ export default { }, "event_tournaments_order_by": { "created_at": [ - 2946 + 2952 ], "event": [ - 1649 + 1655 ], "event_id": [ - 2946 + 2952 ], "tournament": [ - 4961 + 4967 ], "tournament_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -24242,10 +24665,10 @@ export default { }, "event_tournaments_pk_columns_input": { "event_id": [ - 4993 + 4999 ], "tournament_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -24254,13 +24677,13 @@ export default { "event_tournaments_select_column": {}, "event_tournaments_set_input": { "created_at": [ - 4493 + 4499 ], "event_id": [ - 4993 + 4999 ], "tournament_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -24268,10 +24691,10 @@ export default { }, "event_tournaments_stream_cursor_input": { "initial_value": [ - 1633 + 1639 ], "ordering": [ - 308 + 314 ], "__typename": [ 80 @@ -24279,13 +24702,13 @@ export default { }, "event_tournaments_stream_cursor_value_input": { "created_at": [ - 4493 + 4499 ], "event_id": [ - 4993 + 4999 ], "tournament_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -24294,21 +24717,65 @@ export default { "event_tournaments_update_column": {}, "event_tournaments_updates": { "_set": [ - 1631 + 1637 ], "where": [ - 1619 + 1625 ], "__typename": [ 80 ] }, "events": { + "awards": [ + 189, + { + "distinct_on": [ + 210, + "[award_recipients_select_column!]" + ], + "limit": [ + 40 + ], + "offset": [ + 40 + ], + "order_by": [ + 208, + "[award_recipients_order_by!]" + ], + "where": [ + 198 + ] + } + ], + "awards_aggregate": [ + 190, + { + "distinct_on": [ + 210, + "[award_recipients_select_column!]" + ], + "limit": [ + 40 + ], + "offset": [ + 40 + ], + "order_by": [ + 208, + "[award_recipients_order_by!]" + ], + "where": [ + 198 + ] + } + ], "banner": [ - 1423 + 1429 ], "banner_media_id": [ - 4993 + 4999 ], "can_upload_media": [ 5 @@ -24317,28 +24784,28 @@ export default { 5 ], "created_at": [ - 4493 + 4499 ], "description": [ 80 ], "ends_at": [ - 4493 + 4499 ], "hide_creator_organizer": [ 5 ], "id": [ - 4993 + 4999 ], "is_organizer": [ 5 ], "media": [ - 1423, + 1429, { "distinct_on": [ - 1486, + 1492, "[event_media_select_column!]" ], "limit": [ @@ -24348,22 +24815,22 @@ export default { 40 ], "order_by": [ - 1443, + 1449, "[event_media_order_by!]" ], "where": [ - 1432 + 1438 ] } ], "media_access": [ - 674 + 680 ], "media_aggregate": [ - 1424, + 1430, { "distinct_on": [ - 1486, + 1492, "[event_media_select_column!]" ], "limit": [ @@ -24373,11 +24840,11 @@ export default { 40 ], "order_by": [ - 1443, + 1449, "[event_media_order_by!]" ], "where": [ - 1432 + 1438 ] } ], @@ -24385,16 +24852,16 @@ export default { 80 ], "organizer": [ - 3904 + 3910 ], "organizer_steam_id": [ - 252 + 258 ], "organizers": [ - 1506, + 1512, { "distinct_on": [ - 1527, + 1533, "[event_organizers_select_column!]" ], "limit": [ @@ -24404,19 +24871,19 @@ export default { 40 ], "order_by": [ - 1525, + 1531, "[event_organizers_order_by!]" ], "where": [ - 1515 + 1521 ] } ], "organizers_aggregate": [ - 1507, + 1513, { "distinct_on": [ - 1527, + 1533, "[event_organizers_select_column!]" ], "limit": [ @@ -24426,19 +24893,19 @@ export default { 40 ], "order_by": [ - 1525, + 1531, "[event_organizers_order_by!]" ], "where": [ - 1515 + 1521 ] } ], "player_stats": [ - 4996, + 5002, { "distinct_on": [ - 5022, + 5028, "[v_event_player_stats_select_column!]" ], "limit": [ @@ -24448,19 +24915,19 @@ export default { 40 ], "order_by": [ - 5021, + 5027, "[v_event_player_stats_order_by!]" ], "where": [ - 5015 + 5021 ] } ], "player_stats_aggregate": [ - 4997, + 5003, { "distinct_on": [ - 5022, + 5028, "[v_event_player_stats_select_column!]" ], "limit": [ @@ -24470,19 +24937,19 @@ export default { 40 ], "order_by": [ - 5021, + 5027, "[v_event_player_stats_order_by!]" ], "where": [ - 5015 + 5021 ] } ], "players": [ - 1547, + 1553, { "distinct_on": [ - 1568, + 1574, "[event_players_select_column!]" ], "limit": [ @@ -24492,19 +24959,19 @@ export default { 40 ], "order_by": [ - 1566, + 1572, "[event_players_order_by!]" ], "where": [ - 1556 + 1562 ] } ], "players_aggregate": [ - 1548, + 1554, { "distinct_on": [ - 1568, + 1574, "[event_players_select_column!]" ], "limit": [ @@ -24514,22 +24981,22 @@ export default { 40 ], "order_by": [ - 1566, + 1572, "[event_players_order_by!]" ], "where": [ - 1556 + 1562 ] } ], "starts_at": [ - 4493 + 4499 ], "teams": [ - 1588, + 1594, { "distinct_on": [ - 1606, + 1612, "[event_teams_select_column!]" ], "limit": [ @@ -24539,19 +25006,19 @@ export default { 40 ], "order_by": [ - 1604, + 1610, "[event_teams_order_by!]" ], "where": [ - 1595 + 1601 ] } ], "teams_aggregate": [ - 1589, + 1595, { "distinct_on": [ - 1606, + 1612, "[event_teams_select_column!]" ], "limit": [ @@ -24561,19 +25028,19 @@ export default { 40 ], "order_by": [ - 1604, + 1610, "[event_teams_order_by!]" ], "where": [ - 1595 + 1601 ] } ], "tournaments": [ - 1612, + 1618, { "distinct_on": [ - 1630, + 1636, "[event_tournaments_select_column!]" ], "limit": [ @@ -24583,19 +25050,19 @@ export default { 40 ], "order_by": [ - 1628, + 1634, "[event_tournaments_order_by!]" ], "where": [ - 1619 + 1625 ] } ], "tournaments_aggregate": [ - 1613, + 1619, { "distinct_on": [ - 1630, + 1636, "[event_tournaments_select_column!]" ], "limit": [ @@ -24605,16 +25072,16 @@ export default { 40 ], "order_by": [ - 1628, + 1634, "[event_tournaments_order_by!]" ], "where": [ - 1619 + 1625 ] } ], "visibility": [ - 694 + 700 ], "__typename": [ 80 @@ -24622,10 +25089,10 @@ export default { }, "events_aggregate": { "aggregate": [ - 1638 + 1644 ], "nodes": [ - 1636 + 1642 ], "__typename": [ 80 @@ -24633,13 +25100,13 @@ export default { }, "events_aggregate_fields": { "avg": [ - 1639 + 1645 ], "count": [ 40, { "columns": [ - 1651, + 1657, "[events_select_column!]" ], "distinct": [ @@ -24648,31 +25115,31 @@ export default { } ], "max": [ - 1644 + 1650 ], "min": [ - 1645 + 1651 ], "stddev": [ - 1653 + 1659 ], "stddev_pop": [ - 1654 + 1660 ], "stddev_samp": [ - 1655 + 1661 ], "sum": [ - 1658 + 1664 ], "var_pop": [ - 1661 + 1667 ], "var_samp": [ - 1662 + 1668 ], "variance": [ - 1663 + 1669 ], "__typename": [ 80 @@ -24688,19 +25155,25 @@ export default { }, "events_bool_exp": { "_and": [ - 1640 + 1646 ], "_not": [ - 1640 + 1646 ], "_or": [ - 1640 + 1646 + ], + "awards": [ + 198 + ], + "awards_aggregate": [ + 191 ], "banner": [ - 1432 + 1438 ], "banner_media_id": [ - 4995 + 5001 ], "can_upload_media": [ 6 @@ -24709,76 +25182,76 @@ export default { 6 ], "created_at": [ - 4494 + 4500 ], "description": [ 82 ], "ends_at": [ - 4494 + 4500 ], "hide_creator_organizer": [ 6 ], "id": [ - 4995 + 5001 ], "is_organizer": [ 6 ], "media": [ - 1432 + 1438 ], "media_access": [ - 675 + 681 ], "media_aggregate": [ - 1425 + 1431 ], "name": [ 82 ], "organizer": [ - 3908 + 3914 ], "organizer_steam_id": [ - 254 + 260 ], "organizers": [ - 1515 + 1521 ], "organizers_aggregate": [ - 1508 + 1514 ], "player_stats": [ - 5015 + 5021 ], "player_stats_aggregate": [ - 4998 + 5004 ], "players": [ - 1556 + 1562 ], "players_aggregate": [ - 1549 + 1555 ], "starts_at": [ - 4494 + 4500 ], "teams": [ - 1595 + 1601 ], "teams_aggregate": [ - 1590 + 1596 ], "tournaments": [ - 1619 + 1625 ], "tournaments_aggregate": [ - 1614 + 1620 ], "visibility": [ - 695 + 701 ], "__typename": [ 80 @@ -24787,69 +25260,72 @@ export default { "events_constraint": {}, "events_inc_input": { "organizer_steam_id": [ - 252 + 258 ], "__typename": [ 80 ] }, "events_insert_input": { + "awards": [ + 195 + ], "banner": [ - 1441 + 1447 ], "banner_media_id": [ - 4993 + 4999 ], "created_at": [ - 4493 + 4499 ], "description": [ 80 ], "ends_at": [ - 4493 + 4499 ], "hide_creator_organizer": [ 5 ], "id": [ - 4993 + 4999 ], "media": [ - 1429 + 1435 ], "media_access": [ - 674 + 680 ], "name": [ 80 ], "organizer": [ - 3915 + 3921 ], "organizer_steam_id": [ - 252 + 258 ], "organizers": [ - 1512 + 1518 ], "player_stats": [ - 5012 + 5018 ], "players": [ - 1553 + 1559 ], "starts_at": [ - 4493 + 4499 ], "teams": [ - 1594 + 1600 ], "tournaments": [ - 1618 + 1624 ], "visibility": [ - 694 + 700 ], "__typename": [ 80 @@ -24857,28 +25333,28 @@ export default { }, "events_max_fields": { "banner_media_id": [ - 4993 + 4999 ], "created_at": [ - 4493 + 4499 ], "description": [ 80 ], "ends_at": [ - 4493 + 4499 ], "id": [ - 4993 + 4999 ], "name": [ 80 ], "organizer_steam_id": [ - 252 + 258 ], "starts_at": [ - 4493 + 4499 ], "__typename": [ 80 @@ -24886,28 +25362,28 @@ export default { }, "events_min_fields": { "banner_media_id": [ - 4993 + 4999 ], "created_at": [ - 4493 + 4499 ], "description": [ 80 ], "ends_at": [ - 4493 + 4499 ], "id": [ - 4993 + 4999 ], "name": [ 80 ], "organizer_steam_id": [ - 252 + 258 ], "starts_at": [ - 4493 + 4499 ], "__typename": [ 80 @@ -24918,7 +25394,7 @@ export default { 40 ], "returning": [ - 1636 + 1642 ], "__typename": [ 80 @@ -24926,10 +25402,10 @@ export default { }, "events_obj_rel_insert_input": { "data": [ - 1643 + 1649 ], "on_conflict": [ - 1648 + 1654 ], "__typename": [ 80 @@ -24937,84 +25413,87 @@ export default { }, "events_on_conflict": { "constraint": [ - 1641 + 1647 ], "update_columns": [ - 1659 + 1665 ], "where": [ - 1640 + 1646 ], "__typename": [ 80 ] }, "events_order_by": { + "awards_aggregate": [ + 194 + ], "banner": [ - 1443 + 1449 ], "banner_media_id": [ - 2946 + 2952 ], "can_upload_media": [ - 2946 + 2952 ], "can_view": [ - 2946 + 2952 ], "created_at": [ - 2946 + 2952 ], "description": [ - 2946 + 2952 ], "ends_at": [ - 2946 + 2952 ], "hide_creator_organizer": [ - 2946 + 2952 ], "id": [ - 2946 + 2952 ], "is_organizer": [ - 2946 + 2952 ], "media_access": [ - 2946 + 2952 ], "media_aggregate": [ - 1428 + 1434 ], "name": [ - 2946 + 2952 ], "organizer": [ - 3917 + 3923 ], "organizer_steam_id": [ - 2946 + 2952 ], "organizers_aggregate": [ - 1511 + 1517 ], "player_stats_aggregate": [ - 5011 + 5017 ], "players_aggregate": [ - 1552 + 1558 ], "starts_at": [ - 2946 + 2952 ], "teams_aggregate": [ - 1593 + 1599 ], "tournaments_aggregate": [ - 1617 + 1623 ], "visibility": [ - 2946 + 2952 ], "__typename": [ 80 @@ -25022,7 +25501,7 @@ export default { }, "events_pk_columns_input": { "id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -25031,37 +25510,37 @@ export default { "events_select_column": {}, "events_set_input": { "banner_media_id": [ - 4993 + 4999 ], "created_at": [ - 4493 + 4499 ], "description": [ 80 ], "ends_at": [ - 4493 + 4499 ], "hide_creator_organizer": [ 5 ], "id": [ - 4993 + 4999 ], "media_access": [ - 674 + 680 ], "name": [ 80 ], "organizer_steam_id": [ - 252 + 258 ], "starts_at": [ - 4493 + 4499 ], "visibility": [ - 694 + 700 ], "__typename": [ 80 @@ -25093,10 +25572,10 @@ export default { }, "events_stream_cursor_input": { "initial_value": [ - 1657 + 1663 ], "ordering": [ - 308 + 314 ], "__typename": [ 80 @@ -25104,37 +25583,37 @@ export default { }, "events_stream_cursor_value_input": { "banner_media_id": [ - 4993 + 4999 ], "created_at": [ - 4493 + 4499 ], "description": [ 80 ], "ends_at": [ - 4493 + 4499 ], "hide_creator_organizer": [ 5 ], "id": [ - 4993 + 4999 ], "media_access": [ - 674 + 680 ], "name": [ 80 ], "organizer_steam_id": [ - 252 + 258 ], "starts_at": [ - 4493 + 4499 ], "visibility": [ - 694 + 700 ], "__typename": [ 80 @@ -25142,7 +25621,7 @@ export default { }, "events_sum_fields": { "organizer_steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -25151,13 +25630,13 @@ export default { "events_update_column": {}, "events_updates": { "_inc": [ - 1642 + 1648 ], "_set": [ - 1652 + 1658 ], "where": [ - 1640 + 1646 ], "__typename": [ 80 @@ -25190,31 +25669,31 @@ export default { "float8": {}, "float8_comparison_exp": { "_eq": [ - 1664 + 1670 ], "_gt": [ - 1664 + 1670 ], "_gte": [ - 1664 + 1670 ], "_in": [ - 1664 + 1670 ], "_is_null": [ 5 ], "_lt": [ - 1664 + 1670 ], "_lte": [ - 1664 + 1670 ], "_neq": [ - 1664 + 1670 ], "_nin": [ - 1664 + 1670 ], "__typename": [ 80 @@ -25222,16 +25701,16 @@ export default { }, "friends": { "e_status": [ - 709 + 715 ], "other_player_steam_id": [ - 252 + 258 ], "player_steam_id": [ - 252 + 258 ], "status": [ - 714 + 720 ], "__typename": [ 80 @@ -25239,10 +25718,10 @@ export default { }, "friends_aggregate": { "aggregate": [ - 1668 + 1674 ], "nodes": [ - 1666 + 1672 ], "__typename": [ 80 @@ -25250,13 +25729,13 @@ export default { }, "friends_aggregate_fields": { "avg": [ - 1669 + 1675 ], "count": [ 40, { "columns": [ - 1680, + 1686, "[friends_select_column!]" ], "distinct": [ @@ -25265,31 +25744,31 @@ export default { } ], "max": [ - 1674 + 1680 ], "min": [ - 1675 + 1681 ], "stddev": [ - 1682 + 1688 ], "stddev_pop": [ - 1683 + 1689 ], "stddev_samp": [ - 1684 + 1690 ], "sum": [ - 1687 + 1693 ], "var_pop": [ - 1690 + 1696 ], "var_samp": [ - 1691 + 1697 ], "variance": [ - 1692 + 1698 ], "__typename": [ 80 @@ -25308,25 +25787,25 @@ export default { }, "friends_bool_exp": { "_and": [ - 1670 + 1676 ], "_not": [ - 1670 + 1676 ], "_or": [ - 1670 + 1676 ], "e_status": [ - 712 + 718 ], "other_player_steam_id": [ - 254 + 260 ], "player_steam_id": [ - 254 + 260 ], "status": [ - 715 + 721 ], "__typename": [ 80 @@ -25335,10 +25814,10 @@ export default { "friends_constraint": {}, "friends_inc_input": { "other_player_steam_id": [ - 252 + 258 ], "player_steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -25346,16 +25825,16 @@ export default { }, "friends_insert_input": { "e_status": [ - 720 + 726 ], "other_player_steam_id": [ - 252 + 258 ], "player_steam_id": [ - 252 + 258 ], "status": [ - 714 + 720 ], "__typename": [ 80 @@ -25363,10 +25842,10 @@ export default { }, "friends_max_fields": { "other_player_steam_id": [ - 252 + 258 ], "player_steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -25374,10 +25853,10 @@ export default { }, "friends_min_fields": { "other_player_steam_id": [ - 252 + 258 ], "player_steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -25388,7 +25867,7 @@ export default { 40 ], "returning": [ - 1666 + 1672 ], "__typename": [ 80 @@ -25396,13 +25875,13 @@ export default { }, "friends_on_conflict": { "constraint": [ - 1671 + 1677 ], "update_columns": [ - 1688 + 1694 ], "where": [ - 1670 + 1676 ], "__typename": [ 80 @@ -25410,16 +25889,16 @@ export default { }, "friends_order_by": { "e_status": [ - 722 + 728 ], "other_player_steam_id": [ - 2946 + 2952 ], "player_steam_id": [ - 2946 + 2952 ], "status": [ - 2946 + 2952 ], "__typename": [ 80 @@ -25427,10 +25906,10 @@ export default { }, "friends_pk_columns_input": { "other_player_steam_id": [ - 252 + 258 ], "player_steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -25439,13 +25918,13 @@ export default { "friends_select_column": {}, "friends_set_input": { "other_player_steam_id": [ - 252 + 258 ], "player_steam_id": [ - 252 + 258 ], "status": [ - 714 + 720 ], "__typename": [ 80 @@ -25486,10 +25965,10 @@ export default { }, "friends_stream_cursor_input": { "initial_value": [ - 1686 + 1692 ], "ordering": [ - 308 + 314 ], "__typename": [ 80 @@ -25497,13 +25976,13 @@ export default { }, "friends_stream_cursor_value_input": { "other_player_steam_id": [ - 252 + 258 ], "player_steam_id": [ - 252 + 258 ], "status": [ - 714 + 720 ], "__typename": [ 80 @@ -25511,10 +25990,10 @@ export default { }, "friends_sum_fields": { "other_player_steam_id": [ - 252 + 258 ], "player_steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -25523,13 +26002,13 @@ export default { "friends_update_column": {}, "friends_updates": { "_inc": [ - 1672 + 1678 ], "_set": [ - 1681 + 1687 ], "where": [ - 1670 + 1676 ], "__typename": [ 80 @@ -25579,7 +26058,7 @@ export default { 40 ], "cpu_frequency_info": [ - 1817, + 1823, { "path": [ 80 @@ -25587,7 +26066,7 @@ export default { } ], "cpu_governor_info": [ - 1817, + 1823, { "path": [ 80 @@ -25601,7 +26080,7 @@ export default { 40 ], "cpu_warnings": [ - 1817, + 1823, { "path": [ 80 @@ -25609,7 +26088,7 @@ export default { } ], "cs2_launch_options": [ - 1817, + 1823, { "path": [ 80 @@ -25617,7 +26096,7 @@ export default { } ], "cs2_video_settings": [ - 1817, + 1823, { "path": [ 80 @@ -25637,10 +26116,10 @@ export default { 40 ], "e_region": [ - 3991 + 3997 ], "e_status": [ - 750 + 756 ], "enabled": [ 5 @@ -25658,7 +26137,7 @@ export default { 5 ], "gpu_info": [ - 1817, + 1823, { "path": [ 80 @@ -25678,13 +26157,13 @@ export default { 80 ], "lan_ip": [ - 1813 + 1819 ], "node_ip": [ - 1813 + 1819 ], "offline_at": [ - 4493 + 4499 ], "pin_build_id": [ 40 @@ -25696,22 +26175,22 @@ export default { 80 ], "pinned_version": [ - 1744 + 1750 ], "plugin_supported": [ 5 ], "public_ip": [ - 1813 + 1819 ], "region": [ 80 ], "servers": [ - 4018, + 4024, { "distinct_on": [ - 4042, + 4048, "[servers_select_column!]" ], "limit": [ @@ -25721,19 +26200,19 @@ export default { 40 ], "order_by": [ - 4040, + 4046, "[servers_order_by!]" ], "where": [ - 4029 + 4035 ] } ], "servers_aggregate": [ - 4019, + 4025, { "distinct_on": [ - 4042, + 4048, "[servers_select_column!]" ], "limit": [ @@ -25743,16 +26222,16 @@ export default { 40 ], "order_by": [ - 4040, + 4046, "[servers_order_by!]" ], "where": [ - 4029 + 4035 ] } ], "shader_bake_progress": [ - 2944 + 2950 ], "shader_bake_progress_stage": [ 80 @@ -25761,7 +26240,7 @@ export default { 80 ], "shader_bake_status_history": [ - 1817, + 1823, { "path": [ 80 @@ -25772,7 +26251,7 @@ export default { 40 ], "status": [ - 755 + 761 ], "supports_cpu_pinning": [ 5 @@ -25790,7 +26269,7 @@ export default { 80 ], "version": [ - 1744 + 1750 ], "__typename": [ 80 @@ -25798,10 +26277,10 @@ export default { }, "game_server_nodes_aggregate": { "aggregate": [ - 1699 + 1705 ], "nodes": [ - 1693 + 1699 ], "__typename": [ 80 @@ -25809,13 +26288,13 @@ export default { }, "game_server_nodes_aggregate_bool_exp": { "bool_and": [ - 1696 + 1702 ], "bool_or": [ - 1697 + 1703 ], "count": [ - 1698 + 1704 ], "__typename": [ 80 @@ -25823,13 +26302,13 @@ export default { }, "game_server_nodes_aggregate_bool_exp_bool_and": { "arguments": [ - 1723 + 1729 ], "distinct": [ 5 ], "filter": [ - 1705 + 1711 ], "predicate": [ 6 @@ -25840,13 +26319,13 @@ export default { }, "game_server_nodes_aggregate_bool_exp_bool_or": { "arguments": [ - 1724 + 1730 ], "distinct": [ 5 ], "filter": [ - 1705 + 1711 ], "predicate": [ 6 @@ -25857,13 +26336,13 @@ export default { }, "game_server_nodes_aggregate_bool_exp_count": { "arguments": [ - 1722 + 1728 ], "distinct": [ 5 ], "filter": [ - 1705 + 1711 ], "predicate": [ 41 @@ -25874,13 +26353,13 @@ export default { }, "game_server_nodes_aggregate_fields": { "avg": [ - 1703 + 1709 ], "count": [ 40, { "columns": [ - 1722, + 1728, "[game_server_nodes_select_column!]" ], "distinct": [ @@ -25889,31 +26368,31 @@ export default { } ], "max": [ - 1712 + 1718 ], "min": [ - 1714 + 1720 ], "stddev": [ - 1726 + 1732 ], "stddev_pop": [ - 1728 + 1734 ], "stddev_samp": [ - 1730 + 1736 ], "sum": [ - 1734 + 1740 ], "var_pop": [ - 1738 + 1744 ], "var_samp": [ - 1740 + 1746 ], "variance": [ - 1742 + 1748 ], "__typename": [ 80 @@ -25921,37 +26400,37 @@ export default { }, "game_server_nodes_aggregate_order_by": { "avg": [ - 1704 + 1710 ], "count": [ - 2946 + 2952 ], "max": [ - 1713 + 1719 ], "min": [ - 1715 + 1721 ], "stddev": [ - 1727 + 1733 ], "stddev_pop": [ - 1729 + 1735 ], "stddev_samp": [ - 1731 + 1737 ], "sum": [ - 1735 + 1741 ], "var_pop": [ - 1739 + 1745 ], "var_samp": [ - 1741 + 1747 ], "variance": [ - 1743 + 1749 ], "__typename": [ 80 @@ -25959,25 +26438,25 @@ export default { }, "game_server_nodes_append_input": { "cpu_frequency_info": [ - 1817 + 1823 ], "cpu_governor_info": [ - 1817 + 1823 ], "cpu_warnings": [ - 1817 + 1823 ], "cs2_launch_options": [ - 1817 + 1823 ], "cs2_video_settings": [ - 1817 + 1823 ], "gpu_info": [ - 1817 + 1823 ], "shader_bake_status_history": [ - 1817 + 1823 ], "__typename": [ 80 @@ -25985,10 +26464,10 @@ export default { }, "game_server_nodes_arr_rel_insert_input": { "data": [ - 1711 + 1717 ], "on_conflict": [ - 1718 + 1724 ], "__typename": [ 80 @@ -26043,40 +26522,40 @@ export default { }, "game_server_nodes_avg_order_by": { "build_id": [ - 2946 + 2952 ], "cpu_cores_per_socket": [ - 2946 + 2952 ], "cpu_sockets": [ - 2946 + 2952 ], "cpu_threads_per_core": [ - 2946 + 2952 ], "csgo_build_id": [ - 2946 + 2952 ], "demo_network_limiter": [ - 2946 + 2952 ], "disk_available_gb": [ - 2946 + 2952 ], "disk_used_percent": [ - 2946 + 2952 ], "end_port_range": [ - 2946 + 2952 ], "pin_build_id": [ - 2946 + 2952 ], "shader_bake_progress": [ - 2946 + 2952 ], "start_port_range": [ - 2946 + 2952 ], "__typename": [ 80 @@ -26084,13 +26563,13 @@ export default { }, "game_server_nodes_bool_exp": { "_and": [ - 1705 + 1711 ], "_not": [ - 1705 + 1711 ], "_or": [ - 1705 + 1711 ], "available_server_count": [ 41 @@ -26102,10 +26581,10 @@ export default { 41 ], "cpu_frequency_info": [ - 1819 + 1825 ], "cpu_governor_info": [ - 1819 + 1825 ], "cpu_sockets": [ 41 @@ -26114,13 +26593,13 @@ export default { 41 ], "cpu_warnings": [ - 1819 + 1825 ], "cs2_launch_options": [ - 1819 + 1825 ], "cs2_video_settings": [ - 1819 + 1825 ], "csgo_build_id": [ 41 @@ -26135,10 +26614,10 @@ export default { 41 ], "e_region": [ - 3995 + 4001 ], "e_status": [ - 753 + 759 ], "enabled": [ 6 @@ -26156,7 +26635,7 @@ export default { 6 ], "gpu_info": [ - 1819 + 1825 ], "gpu_rendering_enabled": [ 6 @@ -26171,13 +26650,13 @@ export default { 82 ], "lan_ip": [ - 1814 + 1820 ], "node_ip": [ - 1814 + 1820 ], "offline_at": [ - 4494 + 4500 ], "pin_build_id": [ 41 @@ -26189,25 +26668,25 @@ export default { 82 ], "pinned_version": [ - 1749 + 1755 ], "plugin_supported": [ 6 ], "public_ip": [ - 1814 + 1820 ], "region": [ 82 ], "servers": [ - 4029 + 4035 ], "servers_aggregate": [ - 4020 + 4026 ], "shader_bake_progress": [ - 2945 + 2951 ], "shader_bake_progress_stage": [ 82 @@ -26216,13 +26695,13 @@ export default { 82 ], "shader_bake_status_history": [ - 1819 + 1825 ], "start_port_range": [ 41 ], "status": [ - 756 + 762 ], "supports_cpu_pinning": [ 6 @@ -26240,7 +26719,7 @@ export default { 82 ], "version": [ - 1749 + 1755 ], "__typename": [ 80 @@ -26357,7 +26836,7 @@ export default { 40 ], "shader_bake_progress": [ - 2944 + 2950 ], "start_port_range": [ 40 @@ -26374,10 +26853,10 @@ export default { 40 ], "cpu_frequency_info": [ - 1817 + 1823 ], "cpu_governor_info": [ - 1817 + 1823 ], "cpu_sockets": [ 40 @@ -26386,13 +26865,13 @@ export default { 40 ], "cpu_warnings": [ - 1817 + 1823 ], "cs2_launch_options": [ - 1817 + 1823 ], "cs2_video_settings": [ - 1817 + 1823 ], "csgo_build_id": [ 40 @@ -26407,10 +26886,10 @@ export default { 40 ], "e_region": [ - 4001 + 4007 ], "e_status": [ - 761 + 767 ], "enabled": [ 5 @@ -26428,7 +26907,7 @@ export default { 5 ], "gpu_info": [ - 1817 + 1823 ], "gpu_rendering_enabled": [ 5 @@ -26443,13 +26922,13 @@ export default { 80 ], "lan_ip": [ - 1813 + 1819 ], "node_ip": [ - 1813 + 1819 ], "offline_at": [ - 4493 + 4499 ], "pin_build_id": [ 40 @@ -26461,19 +26940,19 @@ export default { 80 ], "pinned_version": [ - 1759 + 1765 ], "public_ip": [ - 1813 + 1819 ], "region": [ 80 ], "servers": [ - 4026 + 4032 ], "shader_bake_progress": [ - 2944 + 2950 ], "shader_bake_progress_stage": [ 80 @@ -26482,13 +26961,13 @@ export default { 80 ], "shader_bake_status_history": [ - 1817 + 1823 ], "start_port_range": [ 40 ], "status": [ - 755 + 761 ], "supports_cpu_pinning": [ 5 @@ -26503,7 +26982,7 @@ export default { 80 ], "version": [ - 1759 + 1765 ], "__typename": [ 80 @@ -26547,7 +27026,7 @@ export default { 80 ], "offline_at": [ - 4493 + 4499 ], "pin_build_id": [ 40 @@ -26562,7 +27041,7 @@ export default { 80 ], "shader_bake_progress": [ - 2944 + 2950 ], "shader_bake_progress_stage": [ 80 @@ -26588,70 +27067,70 @@ export default { }, "game_server_nodes_max_order_by": { "build_id": [ - 2946 + 2952 ], "cpu_cores_per_socket": [ - 2946 + 2952 ], "cpu_sockets": [ - 2946 + 2952 ], "cpu_threads_per_core": [ - 2946 + 2952 ], "csgo_build_id": [ - 2946 + 2952 ], "demo_network_limiter": [ - 2946 + 2952 ], "disk_available_gb": [ - 2946 + 2952 ], "disk_used_percent": [ - 2946 + 2952 ], "end_port_range": [ - 2946 + 2952 ], "id": [ - 2946 + 2952 ], "label": [ - 2946 + 2952 ], "offline_at": [ - 2946 + 2952 ], "pin_build_id": [ - 2946 + 2952 ], "pin_plugin_runtime": [ - 2946 + 2952 ], "pin_plugin_version": [ - 2946 + 2952 ], "region": [ - 2946 + 2952 ], "shader_bake_progress": [ - 2946 + 2952 ], "shader_bake_progress_stage": [ - 2946 + 2952 ], "shader_bake_status": [ - 2946 + 2952 ], "start_port_range": [ - 2946 + 2952 ], "token": [ - 2946 + 2952 ], "update_status": [ - 2946 + 2952 ], "__typename": [ 80 @@ -26695,7 +27174,7 @@ export default { 80 ], "offline_at": [ - 4493 + 4499 ], "pin_build_id": [ 40 @@ -26710,7 +27189,7 @@ export default { 80 ], "shader_bake_progress": [ - 2944 + 2950 ], "shader_bake_progress_stage": [ 80 @@ -26736,70 +27215,70 @@ export default { }, "game_server_nodes_min_order_by": { "build_id": [ - 2946 + 2952 ], "cpu_cores_per_socket": [ - 2946 + 2952 ], "cpu_sockets": [ - 2946 + 2952 ], "cpu_threads_per_core": [ - 2946 + 2952 ], "csgo_build_id": [ - 2946 + 2952 ], "demo_network_limiter": [ - 2946 + 2952 ], "disk_available_gb": [ - 2946 + 2952 ], "disk_used_percent": [ - 2946 + 2952 ], "end_port_range": [ - 2946 + 2952 ], "id": [ - 2946 + 2952 ], "label": [ - 2946 + 2952 ], "offline_at": [ - 2946 + 2952 ], "pin_build_id": [ - 2946 + 2952 ], "pin_plugin_runtime": [ - 2946 + 2952 ], "pin_plugin_version": [ - 2946 + 2952 ], "region": [ - 2946 + 2952 ], "shader_bake_progress": [ - 2946 + 2952 ], "shader_bake_progress_stage": [ - 2946 + 2952 ], "shader_bake_status": [ - 2946 + 2952 ], "start_port_range": [ - 2946 + 2952 ], "token": [ - 2946 + 2952 ], "update_status": [ - 2946 + 2952 ], "__typename": [ 80 @@ -26810,7 +27289,7 @@ export default { 40 ], "returning": [ - 1693 + 1699 ], "__typename": [ 80 @@ -26818,10 +27297,10 @@ export default { }, "game_server_nodes_obj_rel_insert_input": { "data": [ - 1711 + 1717 ], "on_conflict": [ - 1718 + 1724 ], "__typename": [ 80 @@ -26829,13 +27308,13 @@ export default { }, "game_server_nodes_on_conflict": { "constraint": [ - 1706 + 1712 ], "update_columns": [ - 1736 + 1742 ], "where": [ - 1705 + 1711 ], "__typename": [ 80 @@ -26843,151 +27322,151 @@ export default { }, "game_server_nodes_order_by": { "available_server_count": [ - 2946 + 2952 ], "build_id": [ - 2946 + 2952 ], "cpu_cores_per_socket": [ - 2946 + 2952 ], "cpu_frequency_info": [ - 2946 + 2952 ], "cpu_governor_info": [ - 2946 + 2952 ], "cpu_sockets": [ - 2946 + 2952 ], "cpu_threads_per_core": [ - 2946 + 2952 ], "cpu_warnings": [ - 2946 + 2952 ], "cs2_launch_options": [ - 2946 + 2952 ], "cs2_video_settings": [ - 2946 + 2952 ], "csgo_build_id": [ - 2946 + 2952 ], "demo_network_limiter": [ - 2946 + 2952 ], "disk_available_gb": [ - 2946 + 2952 ], "disk_used_percent": [ - 2946 + 2952 ], "e_region": [ - 4003 + 4009 ], "e_status": [ - 763 + 769 ], "enabled": [ - 2946 + 2952 ], "enabled_for_match_making": [ - 2946 + 2952 ], "end_port_range": [ - 2946 + 2952 ], "gpu": [ - 2946 + 2952 ], "gpu_demos_enabled": [ - 2946 + 2952 ], "gpu_info": [ - 2946 + 2952 ], "gpu_rendering_enabled": [ - 2946 + 2952 ], "gpu_streaming_enabled": [ - 2946 + 2952 ], "id": [ - 2946 + 2952 ], "label": [ - 2946 + 2952 ], "lan_ip": [ - 2946 + 2952 ], "node_ip": [ - 2946 + 2952 ], "offline_at": [ - 2946 + 2952 ], "pin_build_id": [ - 2946 + 2952 ], "pin_plugin_runtime": [ - 2946 + 2952 ], "pin_plugin_version": [ - 2946 + 2952 ], "pinned_version": [ - 1761 + 1767 ], "plugin_supported": [ - 2946 + 2952 ], "public_ip": [ - 2946 + 2952 ], "region": [ - 2946 + 2952 ], "servers_aggregate": [ - 4025 + 4031 ], "shader_bake_progress": [ - 2946 + 2952 ], "shader_bake_progress_stage": [ - 2946 + 2952 ], "shader_bake_status": [ - 2946 + 2952 ], "shader_bake_status_history": [ - 2946 + 2952 ], "start_port_range": [ - 2946 + 2952 ], "status": [ - 2946 + 2952 ], "supports_cpu_pinning": [ - 2946 + 2952 ], "supports_low_latency": [ - 2946 + 2952 ], "token": [ - 2946 + 2952 ], "total_server_count": [ - 2946 + 2952 ], "update_status": [ - 2946 + 2952 ], "version": [ - 1761 + 1767 ], "__typename": [ 80 @@ -27003,25 +27482,25 @@ export default { }, "game_server_nodes_prepend_input": { "cpu_frequency_info": [ - 1817 + 1823 ], "cpu_governor_info": [ - 1817 + 1823 ], "cpu_warnings": [ - 1817 + 1823 ], "cs2_launch_options": [ - 1817 + 1823 ], "cs2_video_settings": [ - 1817 + 1823 ], "gpu_info": [ - 1817 + 1823 ], "shader_bake_status_history": [ - 1817 + 1823 ], "__typename": [ 80 @@ -27038,10 +27517,10 @@ export default { 40 ], "cpu_frequency_info": [ - 1817 + 1823 ], "cpu_governor_info": [ - 1817 + 1823 ], "cpu_sockets": [ 40 @@ -27050,13 +27529,13 @@ export default { 40 ], "cpu_warnings": [ - 1817 + 1823 ], "cs2_launch_options": [ - 1817 + 1823 ], "cs2_video_settings": [ - 1817 + 1823 ], "csgo_build_id": [ 40 @@ -27086,7 +27565,7 @@ export default { 5 ], "gpu_info": [ - 1817 + 1823 ], "gpu_rendering_enabled": [ 5 @@ -27101,13 +27580,13 @@ export default { 80 ], "lan_ip": [ - 1813 + 1819 ], "node_ip": [ - 1813 + 1819 ], "offline_at": [ - 4493 + 4499 ], "pin_build_id": [ 40 @@ -27119,13 +27598,13 @@ export default { 80 ], "public_ip": [ - 1813 + 1819 ], "region": [ 80 ], "shader_bake_progress": [ - 2944 + 2950 ], "shader_bake_progress_stage": [ 80 @@ -27134,13 +27613,13 @@ export default { 80 ], "shader_bake_status_history": [ - 1817 + 1823 ], "start_port_range": [ 40 ], "status": [ - 755 + 761 ], "supports_cpu_pinning": [ 5 @@ -27207,40 +27686,40 @@ export default { }, "game_server_nodes_stddev_order_by": { "build_id": [ - 2946 + 2952 ], "cpu_cores_per_socket": [ - 2946 + 2952 ], "cpu_sockets": [ - 2946 + 2952 ], "cpu_threads_per_core": [ - 2946 + 2952 ], "csgo_build_id": [ - 2946 + 2952 ], "demo_network_limiter": [ - 2946 + 2952 ], "disk_available_gb": [ - 2946 + 2952 ], "disk_used_percent": [ - 2946 + 2952 ], "end_port_range": [ - 2946 + 2952 ], "pin_build_id": [ - 2946 + 2952 ], "shader_bake_progress": [ - 2946 + 2952 ], "start_port_range": [ - 2946 + 2952 ], "__typename": [ 80 @@ -27295,40 +27774,40 @@ export default { }, "game_server_nodes_stddev_pop_order_by": { "build_id": [ - 2946 + 2952 ], "cpu_cores_per_socket": [ - 2946 + 2952 ], "cpu_sockets": [ - 2946 + 2952 ], "cpu_threads_per_core": [ - 2946 + 2952 ], "csgo_build_id": [ - 2946 + 2952 ], "demo_network_limiter": [ - 2946 + 2952 ], "disk_available_gb": [ - 2946 + 2952 ], "disk_used_percent": [ - 2946 + 2952 ], "end_port_range": [ - 2946 + 2952 ], "pin_build_id": [ - 2946 + 2952 ], "shader_bake_progress": [ - 2946 + 2952 ], "start_port_range": [ - 2946 + 2952 ], "__typename": [ 80 @@ -27383,40 +27862,40 @@ export default { }, "game_server_nodes_stddev_samp_order_by": { "build_id": [ - 2946 + 2952 ], "cpu_cores_per_socket": [ - 2946 + 2952 ], "cpu_sockets": [ - 2946 + 2952 ], "cpu_threads_per_core": [ - 2946 + 2952 ], "csgo_build_id": [ - 2946 + 2952 ], "demo_network_limiter": [ - 2946 + 2952 ], "disk_available_gb": [ - 2946 + 2952 ], "disk_used_percent": [ - 2946 + 2952 ], "end_port_range": [ - 2946 + 2952 ], "pin_build_id": [ - 2946 + 2952 ], "shader_bake_progress": [ - 2946 + 2952 ], "start_port_range": [ - 2946 + 2952 ], "__typename": [ 80 @@ -27424,10 +27903,10 @@ export default { }, "game_server_nodes_stream_cursor_input": { "initial_value": [ - 1733 + 1739 ], "ordering": [ - 308 + 314 ], "__typename": [ 80 @@ -27441,10 +27920,10 @@ export default { 40 ], "cpu_frequency_info": [ - 1817 + 1823 ], "cpu_governor_info": [ - 1817 + 1823 ], "cpu_sockets": [ 40 @@ -27453,13 +27932,13 @@ export default { 40 ], "cpu_warnings": [ - 1817 + 1823 ], "cs2_launch_options": [ - 1817 + 1823 ], "cs2_video_settings": [ - 1817 + 1823 ], "csgo_build_id": [ 40 @@ -27489,7 +27968,7 @@ export default { 5 ], "gpu_info": [ - 1817 + 1823 ], "gpu_rendering_enabled": [ 5 @@ -27504,13 +27983,13 @@ export default { 80 ], "lan_ip": [ - 1813 + 1819 ], "node_ip": [ - 1813 + 1819 ], "offline_at": [ - 4493 + 4499 ], "pin_build_id": [ 40 @@ -27522,13 +28001,13 @@ export default { 80 ], "public_ip": [ - 1813 + 1819 ], "region": [ 80 ], "shader_bake_progress": [ - 2944 + 2950 ], "shader_bake_progress_stage": [ 80 @@ -27537,13 +28016,13 @@ export default { 80 ], "shader_bake_status_history": [ - 1817 + 1823 ], "start_port_range": [ 40 ], "status": [ - 755 + 761 ], "supports_cpu_pinning": [ 5 @@ -27596,7 +28075,7 @@ export default { 40 ], "shader_bake_progress": [ - 2944 + 2950 ], "start_port_range": [ 40 @@ -27610,40 +28089,40 @@ export default { }, "game_server_nodes_sum_order_by": { "build_id": [ - 2946 + 2952 ], "cpu_cores_per_socket": [ - 2946 + 2952 ], "cpu_sockets": [ - 2946 + 2952 ], "cpu_threads_per_core": [ - 2946 + 2952 ], "csgo_build_id": [ - 2946 + 2952 ], "demo_network_limiter": [ - 2946 + 2952 ], "disk_available_gb": [ - 2946 + 2952 ], "disk_used_percent": [ - 2946 + 2952 ], "end_port_range": [ - 2946 + 2952 ], "pin_build_id": [ - 2946 + 2952 ], "shader_bake_progress": [ - 2946 + 2952 ], "start_port_range": [ - 2946 + 2952 ], "__typename": [ 80 @@ -27652,28 +28131,28 @@ export default { "game_server_nodes_update_column": {}, "game_server_nodes_updates": { "_append": [ - 1701 + 1707 ], "_delete_at_path": [ - 1707 + 1713 ], "_delete_elem": [ - 1708 + 1714 ], "_delete_key": [ - 1709 + 1715 ], "_inc": [ - 1710 + 1716 ], "_prepend": [ - 1721 + 1727 ], "_set": [ - 1725 + 1731 ], "where": [ - 1705 + 1711 ], "__typename": [ 80 @@ -27728,40 +28207,40 @@ export default { }, "game_server_nodes_var_pop_order_by": { "build_id": [ - 2946 + 2952 ], "cpu_cores_per_socket": [ - 2946 + 2952 ], "cpu_sockets": [ - 2946 + 2952 ], "cpu_threads_per_core": [ - 2946 + 2952 ], "csgo_build_id": [ - 2946 + 2952 ], "demo_network_limiter": [ - 2946 + 2952 ], "disk_available_gb": [ - 2946 + 2952 ], "disk_used_percent": [ - 2946 + 2952 ], "end_port_range": [ - 2946 + 2952 ], "pin_build_id": [ - 2946 + 2952 ], "shader_bake_progress": [ - 2946 + 2952 ], "start_port_range": [ - 2946 + 2952 ], "__typename": [ 80 @@ -27816,40 +28295,40 @@ export default { }, "game_server_nodes_var_samp_order_by": { "build_id": [ - 2946 + 2952 ], "cpu_cores_per_socket": [ - 2946 + 2952 ], "cpu_sockets": [ - 2946 + 2952 ], "cpu_threads_per_core": [ - 2946 + 2952 ], "csgo_build_id": [ - 2946 + 2952 ], "demo_network_limiter": [ - 2946 + 2952 ], "disk_available_gb": [ - 2946 + 2952 ], "disk_used_percent": [ - 2946 + 2952 ], "end_port_range": [ - 2946 + 2952 ], "pin_build_id": [ - 2946 + 2952 ], "shader_bake_progress": [ - 2946 + 2952 ], "start_port_range": [ - 2946 + 2952 ], "__typename": [ 80 @@ -27904,40 +28383,40 @@ export default { }, "game_server_nodes_variance_order_by": { "build_id": [ - 2946 + 2952 ], "cpu_cores_per_socket": [ - 2946 + 2952 ], "cpu_sockets": [ - 2946 + 2952 ], "cpu_threads_per_core": [ - 2946 + 2952 ], "csgo_build_id": [ - 2946 + 2952 ], "demo_network_limiter": [ - 2946 + 2952 ], "disk_available_gb": [ - 2946 + 2952 ], "disk_used_percent": [ - 2946 + 2952 ], "end_port_range": [ - 2946 + 2952 ], "pin_build_id": [ - 2946 + 2952 ], "shader_bake_progress": [ - 2946 + 2952 ], "start_port_range": [ - 2946 + 2952 ], "__typename": [ 80 @@ -27957,7 +28436,7 @@ export default { 80 ], "downloads": [ - 1817, + 1823, { "path": [ 80 @@ -27965,7 +28444,7 @@ export default { } ], "updated_at": [ - 4493 + 4499 ], "version": [ 80 @@ -27976,10 +28455,10 @@ export default { }, "game_versions_aggregate": { "aggregate": [ - 1746 + 1752 ], "nodes": [ - 1744 + 1750 ], "__typename": [ 80 @@ -27987,13 +28466,13 @@ export default { }, "game_versions_aggregate_fields": { "avg": [ - 1748 + 1754 ], "count": [ 40, { "columns": [ - 1764, + 1770, "[game_versions_select_column!]" ], "distinct": [ @@ -28002,31 +28481,31 @@ export default { } ], "max": [ - 1756 + 1762 ], "min": [ - 1757 + 1763 ], "stddev": [ - 1766 + 1772 ], "stddev_pop": [ - 1767 + 1773 ], "stddev_samp": [ - 1768 + 1774 ], "sum": [ - 1771 + 1777 ], "var_pop": [ - 1774 + 1780 ], "var_samp": [ - 1775 + 1781 ], "variance": [ - 1776 + 1782 ], "__typename": [ 80 @@ -28034,7 +28513,7 @@ export default { }, "game_versions_append_input": { "downloads": [ - 1817 + 1823 ], "__typename": [ 80 @@ -28050,13 +28529,13 @@ export default { }, "game_versions_bool_exp": { "_and": [ - 1749 + 1755 ], "_not": [ - 1749 + 1755 ], "_or": [ - 1749 + 1755 ], "build_id": [ 41 @@ -28071,10 +28550,10 @@ export default { 82 ], "downloads": [ - 1819 + 1825 ], "updated_at": [ - 4494 + 4500 ], "version": [ 82 @@ -28130,10 +28609,10 @@ export default { 80 ], "downloads": [ - 1817 + 1823 ], "updated_at": [ - 4493 + 4499 ], "version": [ 80 @@ -28150,7 +28629,7 @@ export default { 80 ], "updated_at": [ - 4493 + 4499 ], "version": [ 80 @@ -28167,7 +28646,7 @@ export default { 80 ], "updated_at": [ - 4493 + 4499 ], "version": [ 80 @@ -28181,7 +28660,7 @@ export default { 40 ], "returning": [ - 1744 + 1750 ], "__typename": [ 80 @@ -28189,10 +28668,10 @@ export default { }, "game_versions_obj_rel_insert_input": { "data": [ - 1755 + 1761 ], "on_conflict": [ - 1760 + 1766 ], "__typename": [ 80 @@ -28200,13 +28679,13 @@ export default { }, "game_versions_on_conflict": { "constraint": [ - 1750 + 1756 ], "update_columns": [ - 1772 + 1778 ], "where": [ - 1749 + 1755 ], "__typename": [ 80 @@ -28214,25 +28693,25 @@ export default { }, "game_versions_order_by": { "build_id": [ - 2946 + 2952 ], "current": [ - 2946 + 2952 ], "cvars": [ - 2946 + 2952 ], "description": [ - 2946 + 2952 ], "downloads": [ - 2946 + 2952 ], "updated_at": [ - 2946 + 2952 ], "version": [ - 2946 + 2952 ], "__typename": [ 80 @@ -28248,7 +28727,7 @@ export default { }, "game_versions_prepend_input": { "downloads": [ - 1817 + 1823 ], "__typename": [ 80 @@ -28269,10 +28748,10 @@ export default { 80 ], "downloads": [ - 1817 + 1823 ], "updated_at": [ - 4493 + 4499 ], "version": [ 80 @@ -28307,10 +28786,10 @@ export default { }, "game_versions_stream_cursor_input": { "initial_value": [ - 1770 + 1776 ], "ordering": [ - 308 + 314 ], "__typename": [ 80 @@ -28330,10 +28809,10 @@ export default { 80 ], "downloads": [ - 1817 + 1823 ], "updated_at": [ - 4493 + 4499 ], "version": [ 80 @@ -28353,28 +28832,28 @@ export default { "game_versions_update_column": {}, "game_versions_updates": { "_append": [ - 1747 + 1753 ], "_delete_at_path": [ - 1751 + 1757 ], "_delete_elem": [ - 1752 + 1758 ], "_delete_key": [ - 1753 + 1759 ], "_inc": [ - 1754 + 1760 ], "_prepend": [ - 1763 + 1769 ], "_set": [ - 1765 + 1771 ], "where": [ - 1749 + 1755 ], "__typename": [ 80 @@ -28412,13 +28891,13 @@ export default { 40 ], "game_version": [ - 1744 + 1750 ], "id": [ - 4993 + 4999 ], "results": [ - 1817, + 1823, { "path": [ 80 @@ -28429,7 +28908,7 @@ export default { 80 ], "validated_at": [ - 4493 + 4499 ], "__typename": [ 80 @@ -28437,10 +28916,10 @@ export default { }, "gamedata_signature_validations_aggregate": { "aggregate": [ - 1779 + 1785 ], "nodes": [ - 1777 + 1783 ], "__typename": [ 80 @@ -28448,13 +28927,13 @@ export default { }, "gamedata_signature_validations_aggregate_fields": { "avg": [ - 1781 + 1787 ], "count": [ 40, { "columns": [ - 1796, + 1802, "[gamedata_signature_validations_select_column!]" ], "distinct": [ @@ -28463,31 +28942,31 @@ export default { } ], "max": [ - 1789 + 1795 ], "min": [ - 1790 + 1796 ], "stddev": [ - 1798 + 1804 ], "stddev_pop": [ - 1799 + 1805 ], "stddev_samp": [ - 1800 + 1806 ], "sum": [ - 1803 + 1809 ], "var_pop": [ - 1806 + 1812 ], "var_samp": [ - 1807 + 1813 ], "variance": [ - 1808 + 1814 ], "__typename": [ 80 @@ -28495,7 +28974,7 @@ export default { }, "gamedata_signature_validations_append_input": { "results": [ - 1817 + 1823 ], "__typename": [ 80 @@ -28511,13 +28990,13 @@ export default { }, "gamedata_signature_validations_bool_exp": { "_and": [ - 1782 + 1788 ], "_not": [ - 1782 + 1788 ], "_or": [ - 1782 + 1788 ], "branch": [ 82 @@ -28526,19 +29005,19 @@ export default { 41 ], "game_version": [ - 1749 + 1755 ], "id": [ - 4995 + 5001 ], "results": [ - 1819 + 1825 ], "status": [ 82 ], "validated_at": [ - 4494 + 4500 ], "__typename": [ 80 @@ -28585,19 +29064,19 @@ export default { 40 ], "game_version": [ - 1759 + 1765 ], "id": [ - 4993 + 4999 ], "results": [ - 1817 + 1823 ], "status": [ 80 ], "validated_at": [ - 4493 + 4499 ], "__typename": [ 80 @@ -28611,13 +29090,13 @@ export default { 40 ], "id": [ - 4993 + 4999 ], "status": [ 80 ], "validated_at": [ - 4493 + 4499 ], "__typename": [ 80 @@ -28631,13 +29110,13 @@ export default { 40 ], "id": [ - 4993 + 4999 ], "status": [ 80 ], "validated_at": [ - 4493 + 4499 ], "__typename": [ 80 @@ -28648,7 +29127,7 @@ export default { 40 ], "returning": [ - 1777 + 1783 ], "__typename": [ 80 @@ -28656,13 +29135,13 @@ export default { }, "gamedata_signature_validations_on_conflict": { "constraint": [ - 1783 + 1789 ], "update_columns": [ - 1804 + 1810 ], "where": [ - 1782 + 1788 ], "__typename": [ 80 @@ -28670,25 +29149,25 @@ export default { }, "gamedata_signature_validations_order_by": { "branch": [ - 2946 + 2952 ], "build_id": [ - 2946 + 2952 ], "game_version": [ - 1761 + 1767 ], "id": [ - 2946 + 2952 ], "results": [ - 2946 + 2952 ], "status": [ - 2946 + 2952 ], "validated_at": [ - 2946 + 2952 ], "__typename": [ 80 @@ -28696,7 +29175,7 @@ export default { }, "gamedata_signature_validations_pk_columns_input": { "id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -28704,7 +29183,7 @@ export default { }, "gamedata_signature_validations_prepend_input": { "results": [ - 1817 + 1823 ], "__typename": [ 80 @@ -28719,16 +29198,16 @@ export default { 40 ], "id": [ - 4993 + 4999 ], "results": [ - 1817 + 1823 ], "status": [ 80 ], "validated_at": [ - 4493 + 4499 ], "__typename": [ 80 @@ -28760,10 +29239,10 @@ export default { }, "gamedata_signature_validations_stream_cursor_input": { "initial_value": [ - 1802 + 1808 ], "ordering": [ - 308 + 314 ], "__typename": [ 80 @@ -28777,16 +29256,16 @@ export default { 40 ], "id": [ - 4993 + 4999 ], "results": [ - 1817 + 1823 ], "status": [ 80 ], "validated_at": [ - 4493 + 4499 ], "__typename": [ 80 @@ -28803,28 +29282,28 @@ export default { "gamedata_signature_validations_update_column": {}, "gamedata_signature_validations_updates": { "_append": [ - 1780 + 1786 ], "_delete_at_path": [ - 1784 + 1790 ], "_delete_elem": [ - 1785 + 1791 ], "_delete_key": [ - 1786 + 1792 ], "_inc": [ - 1787 + 1793 ], "_prepend": [ - 1795 + 1801 ], "_set": [ - 1797 + 1803 ], "where": [ - 1782 + 1788 ], "__typename": [ 80 @@ -28859,7 +29338,7 @@ export default { 80 ], "_event_id": [ - 4993 + 4999 ], "_match_type": [ 80 @@ -28885,7 +29364,7 @@ export default { 80 ], "_season_id": [ - 4993 + 4999 ], "_window_days": [ 40 @@ -28899,7 +29378,7 @@ export default { 80 ], "_league_season_id": [ - 4993 + 4999 ], "_role": [ 80 @@ -28922,7 +29401,7 @@ export default { 80 ], "_season_id": [ - 4993 + 4999 ], "_window_days": [ 40 @@ -28934,31 +29413,31 @@ export default { "inet": {}, "inet_comparison_exp": { "_eq": [ - 1813 + 1819 ], "_gt": [ - 1813 + 1819 ], "_gte": [ - 1813 + 1819 ], "_in": [ - 1813 + 1819 ], "_is_null": [ 5 ], "_lt": [ - 1813 + 1819 ], "_lte": [ - 1813 + 1819 ], "_neq": [ - 1813 + 1819 ], "_nin": [ - 1813 + 1819 ], "__typename": [ 80 @@ -28967,31 +29446,31 @@ export default { "json": {}, "json_comparison_exp": { "_eq": [ - 1815 + 1821 ], "_gt": [ - 1815 + 1821 ], "_gte": [ - 1815 + 1821 ], "_in": [ - 1815 + 1821 ], "_is_null": [ 5 ], "_lt": [ - 1815 + 1821 ], "_lte": [ - 1815 + 1821 ], "_neq": [ - 1815 + 1821 ], "_nin": [ - 1815 + 1821 ], "__typename": [ 80 @@ -29008,22 +29487,22 @@ export default { }, "jsonb_comparison_exp": { "_cast": [ - 1818 + 1824 ], "_contained_in": [ - 1817 + 1823 ], "_contains": [ - 1817 + 1823 ], "_eq": [ - 1817 + 1823 ], "_gt": [ - 1817 + 1823 ], "_gte": [ - 1817 + 1823 ], "_has_key": [ 80 @@ -29035,22 +29514,22 @@ export default { 80 ], "_in": [ - 1817 + 1823 ], "_is_null": [ 5 ], "_lt": [ - 1817 + 1823 ], "_lte": [ - 1817 + 1823 ], "_neq": [ - 1817 + 1823 ], "_nin": [ - 1817 + 1823 ], "__typename": [ 80 @@ -29073,13 +29552,13 @@ export default { 80 ], "secondary_value": [ - 1664 + 1670 ], "tertiary_value": [ - 1664 + 1670 ], "value": [ - 1664 + 1670 ], "__typename": [ 80 @@ -29087,10 +29566,10 @@ export default { }, "leaderboard_entries_aggregate": { "aggregate": [ - 1822 + 1828 ], "nodes": [ - 1820 + 1826 ], "__typename": [ 80 @@ -29098,13 +29577,13 @@ export default { }, "leaderboard_entries_aggregate_fields": { "avg": [ - 1823 + 1829 ], "count": [ 40, { "columns": [ - 1831, + 1837, "[leaderboard_entries_select_column!]" ], "distinct": [ @@ -29113,31 +29592,31 @@ export default { } ], "max": [ - 1827 + 1833 ], "min": [ - 1828 + 1834 ], "stddev": [ - 1833 + 1839 ], "stddev_pop": [ - 1834 + 1840 ], "stddev_samp": [ - 1835 + 1841 ], "sum": [ - 1838 + 1844 ], "var_pop": [ - 1840 + 1846 ], "var_samp": [ - 1841 + 1847 ], "variance": [ - 1842 + 1848 ], "__typename": [ 80 @@ -29162,13 +29641,13 @@ export default { }, "leaderboard_entries_bool_exp": { "_and": [ - 1824 + 1830 ], "_not": [ - 1824 + 1830 ], "_or": [ - 1824 + 1830 ], "matches_played": [ 41 @@ -29186,13 +29665,13 @@ export default { 82 ], "secondary_value": [ - 1665 + 1671 ], "tertiary_value": [ - 1665 + 1671 ], "value": [ - 1665 + 1671 ], "__typename": [ 80 @@ -29203,13 +29682,13 @@ export default { 40 ], "secondary_value": [ - 1664 + 1670 ], "tertiary_value": [ - 1664 + 1670 ], "value": [ - 1664 + 1670 ], "__typename": [ 80 @@ -29232,13 +29711,13 @@ export default { 80 ], "secondary_value": [ - 1664 + 1670 ], "tertiary_value": [ - 1664 + 1670 ], "value": [ - 1664 + 1670 ], "__typename": [ 80 @@ -29261,13 +29740,13 @@ export default { 80 ], "secondary_value": [ - 1664 + 1670 ], "tertiary_value": [ - 1664 + 1670 ], "value": [ - 1664 + 1670 ], "__typename": [ 80 @@ -29290,13 +29769,13 @@ export default { 80 ], "secondary_value": [ - 1664 + 1670 ], "tertiary_value": [ - 1664 + 1670 ], "value": [ - 1664 + 1670 ], "__typename": [ 80 @@ -29307,7 +29786,7 @@ export default { 40 ], "returning": [ - 1820 + 1826 ], "__typename": [ 80 @@ -29315,28 +29794,28 @@ export default { }, "leaderboard_entries_order_by": { "matches_played": [ - 2946 + 2952 ], "player_avatar_url": [ - 2946 + 2952 ], "player_country": [ - 2946 + 2952 ], "player_name": [ - 2946 + 2952 ], "player_steam_id": [ - 2946 + 2952 ], "secondary_value": [ - 2946 + 2952 ], "tertiary_value": [ - 2946 + 2952 ], "value": [ - 2946 + 2952 ], "__typename": [ 80 @@ -29360,13 +29839,13 @@ export default { 80 ], "secondary_value": [ - 1664 + 1670 ], "tertiary_value": [ - 1664 + 1670 ], "value": [ - 1664 + 1670 ], "__typename": [ 80 @@ -29425,10 +29904,10 @@ export default { }, "leaderboard_entries_stream_cursor_input": { "initial_value": [ - 1837 + 1843 ], "ordering": [ - 308 + 314 ], "__typename": [ 80 @@ -29451,13 +29930,13 @@ export default { 80 ], "secondary_value": [ - 1664 + 1670 ], "tertiary_value": [ - 1664 + 1670 ], "value": [ - 1664 + 1670 ], "__typename": [ 80 @@ -29468,13 +29947,13 @@ export default { 40 ], "secondary_value": [ - 1664 + 1670 ], "tertiary_value": [ - 1664 + 1670 ], "value": [ - 1664 + 1670 ], "__typename": [ 80 @@ -29482,13 +29961,13 @@ export default { }, "leaderboard_entries_updates": { "_inc": [ - 1825 + 1831 ], "_set": [ - 1832 + 1838 ], "where": [ - 1824 + 1830 ], "__typename": [ 80 @@ -29547,10 +30026,10 @@ export default { }, "league_award_forfeit_args": { "_tournament_bracket_id": [ - 4993 + 4999 ], "_winning_tournament_team_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -29558,19 +30037,19 @@ export default { }, "league_divisions": { "created_at": [ - 4493 + 4499 ], "id": [ - 4993 + 4999 ], "name": [ 80 ], "season_divisions": [ - 1995, + 2001, { "distinct_on": [ - 2014, + 2020, "[league_season_divisions_select_column!]" ], "limit": [ @@ -29580,19 +30059,19 @@ export default { 40 ], "order_by": [ - 2012, + 2018, "[league_season_divisions_order_by!]" ], "where": [ - 2002 + 2008 ] } ], "season_divisions_aggregate": [ - 1996, + 2002, { "distinct_on": [ - 2014, + 2020, "[league_season_divisions_select_column!]" ], "limit": [ @@ -29602,16 +30081,16 @@ export default { 40 ], "order_by": [ - 2012, + 2018, "[league_season_divisions_order_by!]" ], "where": [ - 2002 + 2008 ] } ], "tier": [ - 4082 + 4088 ], "__typename": [ 80 @@ -29619,10 +30098,10 @@ export default { }, "league_divisions_aggregate": { "aggregate": [ - 1846 + 1852 ], "nodes": [ - 1844 + 1850 ], "__typename": [ 80 @@ -29630,13 +30109,13 @@ export default { }, "league_divisions_aggregate_fields": { "avg": [ - 1847 + 1853 ], "count": [ 40, { "columns": [ - 1859, + 1865, "[league_divisions_select_column!]" ], "distinct": [ @@ -29645,31 +30124,31 @@ export default { } ], "max": [ - 1852 + 1858 ], "min": [ - 1853 + 1859 ], "stddev": [ - 1861 + 1867 ], "stddev_pop": [ - 1862 + 1868 ], "stddev_samp": [ - 1863 + 1869 ], "sum": [ - 1866 + 1872 ], "var_pop": [ - 1869 + 1875 ], "var_samp": [ - 1870 + 1876 ], "variance": [ - 1871 + 1877 ], "__typename": [ 80 @@ -29685,31 +30164,31 @@ export default { }, "league_divisions_bool_exp": { "_and": [ - 1848 + 1854 ], "_not": [ - 1848 + 1854 ], "_or": [ - 1848 + 1854 ], "created_at": [ - 4494 + 4500 ], "id": [ - 4995 + 5001 ], "name": [ 82 ], "season_divisions": [ - 2002 + 2008 ], "season_divisions_aggregate": [ - 1997 + 2003 ], "tier": [ - 4083 + 4089 ], "__typename": [ 80 @@ -29718,7 +30197,7 @@ export default { "league_divisions_constraint": {}, "league_divisions_inc_input": { "tier": [ - 4082 + 4088 ], "__typename": [ 80 @@ -29726,19 +30205,19 @@ export default { }, "league_divisions_insert_input": { "created_at": [ - 4493 + 4499 ], "id": [ - 4993 + 4999 ], "name": [ 80 ], "season_divisions": [ - 2001 + 2007 ], "tier": [ - 4082 + 4088 ], "__typename": [ 80 @@ -29746,16 +30225,16 @@ export default { }, "league_divisions_max_fields": { "created_at": [ - 4493 + 4499 ], "id": [ - 4993 + 4999 ], "name": [ 80 ], "tier": [ - 4082 + 4088 ], "__typename": [ 80 @@ -29763,16 +30242,16 @@ export default { }, "league_divisions_min_fields": { "created_at": [ - 4493 + 4499 ], "id": [ - 4993 + 4999 ], "name": [ 80 ], "tier": [ - 4082 + 4088 ], "__typename": [ 80 @@ -29783,7 +30262,7 @@ export default { 40 ], "returning": [ - 1844 + 1850 ], "__typename": [ 80 @@ -29791,10 +30270,10 @@ export default { }, "league_divisions_obj_rel_insert_input": { "data": [ - 1851 + 1857 ], "on_conflict": [ - 1856 + 1862 ], "__typename": [ 80 @@ -29802,13 +30281,13 @@ export default { }, "league_divisions_on_conflict": { "constraint": [ - 1849 + 1855 ], "update_columns": [ - 1867 + 1873 ], "where": [ - 1848 + 1854 ], "__typename": [ 80 @@ -29816,19 +30295,19 @@ export default { }, "league_divisions_order_by": { "created_at": [ - 2946 + 2952 ], "id": [ - 2946 + 2952 ], "name": [ - 2946 + 2952 ], "season_divisions_aggregate": [ - 2000 + 2006 ], "tier": [ - 2946 + 2952 ], "__typename": [ 80 @@ -29836,7 +30315,7 @@ export default { }, "league_divisions_pk_columns_input": { "id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -29845,16 +30324,16 @@ export default { "league_divisions_select_column": {}, "league_divisions_set_input": { "created_at": [ - 4493 + 4499 ], "id": [ - 4993 + 4999 ], "name": [ 80 ], "tier": [ - 4082 + 4088 ], "__typename": [ 80 @@ -29886,10 +30365,10 @@ export default { }, "league_divisions_stream_cursor_input": { "initial_value": [ - 1865 + 1871 ], "ordering": [ - 308 + 314 ], "__typename": [ 80 @@ -29897,16 +30376,16 @@ export default { }, "league_divisions_stream_cursor_value_input": { "created_at": [ - 4493 + 4499 ], "id": [ - 4993 + 4999 ], "name": [ 80 ], "tier": [ - 4082 + 4088 ], "__typename": [ 80 @@ -29914,7 +30393,7 @@ export default { }, "league_divisions_sum_fields": { "tier": [ - 4082 + 4088 ], "__typename": [ 80 @@ -29923,13 +30402,13 @@ export default { "league_divisions_update_column": {}, "league_divisions_updates": { "_inc": [ - 1850 + 1856 ], "_set": [ - 1860 + 1866 ], "where": [ - 1848 + 1854 ], "__typename": [ 80 @@ -29961,25 +30440,25 @@ export default { }, "league_match_weeks": { "closes_at": [ - 4493 + 4499 ], "created_at": [ - 4493 + 4499 ], "default_match_at": [ - 4493 + 4499 ], "id": [ - 4993 + 4999 ], "league_season_id": [ - 4993 + 4999 ], "opens_at": [ - 4493 + 4499 ], "season": [ - 2020 + 2026 ], "week_number": [ 40 @@ -29990,10 +30469,10 @@ export default { }, "league_match_weeks_aggregate": { "aggregate": [ - 1876 + 1882 ], "nodes": [ - 1872 + 1878 ], "__typename": [ 80 @@ -30001,7 +30480,7 @@ export default { }, "league_match_weeks_aggregate_bool_exp": { "count": [ - 1875 + 1881 ], "__typename": [ 80 @@ -30009,13 +30488,13 @@ export default { }, "league_match_weeks_aggregate_bool_exp_count": { "arguments": [ - 1893 + 1899 ], "distinct": [ 5 ], "filter": [ - 1881 + 1887 ], "predicate": [ 41 @@ -30026,13 +30505,13 @@ export default { }, "league_match_weeks_aggregate_fields": { "avg": [ - 1879 + 1885 ], "count": [ 40, { "columns": [ - 1893, + 1899, "[league_match_weeks_select_column!]" ], "distinct": [ @@ -30041,31 +30520,31 @@ export default { } ], "max": [ - 1885 + 1891 ], "min": [ - 1887 + 1893 ], "stddev": [ - 1895 + 1901 ], "stddev_pop": [ - 1897 + 1903 ], "stddev_samp": [ - 1899 + 1905 ], "sum": [ - 1903 + 1909 ], "var_pop": [ - 1907 + 1913 ], "var_samp": [ - 1909 + 1915 ], "variance": [ - 1911 + 1917 ], "__typename": [ 80 @@ -30073,37 +30552,37 @@ export default { }, "league_match_weeks_aggregate_order_by": { "avg": [ - 1880 + 1886 ], "count": [ - 2946 + 2952 ], "max": [ - 1886 + 1892 ], "min": [ - 1888 + 1894 ], "stddev": [ - 1896 + 1902 ], "stddev_pop": [ - 1898 + 1904 ], "stddev_samp": [ - 1900 + 1906 ], "sum": [ - 1904 + 1910 ], "var_pop": [ - 1908 + 1914 ], "var_samp": [ - 1910 + 1916 ], "variance": [ - 1912 + 1918 ], "__typename": [ 80 @@ -30111,10 +30590,10 @@ export default { }, "league_match_weeks_arr_rel_insert_input": { "data": [ - 1884 + 1890 ], "on_conflict": [ - 1890 + 1896 ], "__typename": [ 80 @@ -30130,7 +30609,7 @@ export default { }, "league_match_weeks_avg_order_by": { "week_number": [ - 2946 + 2952 ], "__typename": [ 80 @@ -30138,34 +30617,34 @@ export default { }, "league_match_weeks_bool_exp": { "_and": [ - 1881 + 1887 ], "_not": [ - 1881 + 1887 ], "_or": [ - 1881 + 1887 ], "closes_at": [ - 4494 + 4500 ], "created_at": [ - 4494 + 4500 ], "default_match_at": [ - 4494 + 4500 ], "id": [ - 4995 + 5001 ], "league_season_id": [ - 4995 + 5001 ], "opens_at": [ - 4494 + 4500 ], "season": [ - 2025 + 2031 ], "week_number": [ 41 @@ -30185,25 +30664,25 @@ export default { }, "league_match_weeks_insert_input": { "closes_at": [ - 4493 + 4499 ], "created_at": [ - 4493 + 4499 ], "default_match_at": [ - 4493 + 4499 ], "id": [ - 4993 + 4999 ], "league_season_id": [ - 4993 + 4999 ], "opens_at": [ - 4493 + 4499 ], "season": [ - 2035 + 2041 ], "week_number": [ 40 @@ -30214,22 +30693,22 @@ export default { }, "league_match_weeks_max_fields": { "closes_at": [ - 4493 + 4499 ], "created_at": [ - 4493 + 4499 ], "default_match_at": [ - 4493 + 4499 ], "id": [ - 4993 + 4999 ], "league_season_id": [ - 4993 + 4999 ], "opens_at": [ - 4493 + 4499 ], "week_number": [ 40 @@ -30240,25 +30719,25 @@ export default { }, "league_match_weeks_max_order_by": { "closes_at": [ - 2946 + 2952 ], "created_at": [ - 2946 + 2952 ], "default_match_at": [ - 2946 + 2952 ], "id": [ - 2946 + 2952 ], "league_season_id": [ - 2946 + 2952 ], "opens_at": [ - 2946 + 2952 ], "week_number": [ - 2946 + 2952 ], "__typename": [ 80 @@ -30266,22 +30745,22 @@ export default { }, "league_match_weeks_min_fields": { "closes_at": [ - 4493 + 4499 ], "created_at": [ - 4493 + 4499 ], "default_match_at": [ - 4493 + 4499 ], "id": [ - 4993 + 4999 ], "league_season_id": [ - 4993 + 4999 ], "opens_at": [ - 4493 + 4499 ], "week_number": [ 40 @@ -30292,25 +30771,25 @@ export default { }, "league_match_weeks_min_order_by": { "closes_at": [ - 2946 + 2952 ], "created_at": [ - 2946 + 2952 ], "default_match_at": [ - 2946 + 2952 ], "id": [ - 2946 + 2952 ], "league_season_id": [ - 2946 + 2952 ], "opens_at": [ - 2946 + 2952 ], "week_number": [ - 2946 + 2952 ], "__typename": [ 80 @@ -30321,7 +30800,7 @@ export default { 40 ], "returning": [ - 1872 + 1878 ], "__typename": [ 80 @@ -30329,13 +30808,13 @@ export default { }, "league_match_weeks_on_conflict": { "constraint": [ - 1882 + 1888 ], "update_columns": [ - 1905 + 1911 ], "where": [ - 1881 + 1887 ], "__typename": [ 80 @@ -30343,28 +30822,28 @@ export default { }, "league_match_weeks_order_by": { "closes_at": [ - 2946 + 2952 ], "created_at": [ - 2946 + 2952 ], "default_match_at": [ - 2946 + 2952 ], "id": [ - 2946 + 2952 ], "league_season_id": [ - 2946 + 2952 ], "opens_at": [ - 2946 + 2952 ], "season": [ - 2037 + 2043 ], "week_number": [ - 2946 + 2952 ], "__typename": [ 80 @@ -30372,7 +30851,7 @@ export default { }, "league_match_weeks_pk_columns_input": { "id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -30381,22 +30860,22 @@ export default { "league_match_weeks_select_column": {}, "league_match_weeks_set_input": { "closes_at": [ - 4493 + 4499 ], "created_at": [ - 4493 + 4499 ], "default_match_at": [ - 4493 + 4499 ], "id": [ - 4993 + 4999 ], "league_season_id": [ - 4993 + 4999 ], "opens_at": [ - 4493 + 4499 ], "week_number": [ 40 @@ -30415,7 +30894,7 @@ export default { }, "league_match_weeks_stddev_order_by": { "week_number": [ - 2946 + 2952 ], "__typename": [ 80 @@ -30431,7 +30910,7 @@ export default { }, "league_match_weeks_stddev_pop_order_by": { "week_number": [ - 2946 + 2952 ], "__typename": [ 80 @@ -30447,7 +30926,7 @@ export default { }, "league_match_weeks_stddev_samp_order_by": { "week_number": [ - 2946 + 2952 ], "__typename": [ 80 @@ -30455,10 +30934,10 @@ export default { }, "league_match_weeks_stream_cursor_input": { "initial_value": [ - 1902 + 1908 ], "ordering": [ - 308 + 314 ], "__typename": [ 80 @@ -30466,22 +30945,22 @@ export default { }, "league_match_weeks_stream_cursor_value_input": { "closes_at": [ - 4493 + 4499 ], "created_at": [ - 4493 + 4499 ], "default_match_at": [ - 4493 + 4499 ], "id": [ - 4993 + 4999 ], "league_season_id": [ - 4993 + 4999 ], "opens_at": [ - 4493 + 4499 ], "week_number": [ 40 @@ -30500,7 +30979,7 @@ export default { }, "league_match_weeks_sum_order_by": { "week_number": [ - 2946 + 2952 ], "__typename": [ 80 @@ -30509,13 +30988,13 @@ export default { "league_match_weeks_update_column": {}, "league_match_weeks_updates": { "_inc": [ - 1883 + 1889 ], "_set": [ - 1894 + 1900 ], "where": [ - 1881 + 1887 ], "__typename": [ 80 @@ -30531,7 +31010,7 @@ export default { }, "league_match_weeks_var_pop_order_by": { "week_number": [ - 2946 + 2952 ], "__typename": [ 80 @@ -30547,7 +31026,7 @@ export default { }, "league_match_weeks_var_samp_order_by": { "week_number": [ - 2946 + 2952 ], "__typename": [ 80 @@ -30563,7 +31042,7 @@ export default { }, "league_match_weeks_variance_order_by": { "week_number": [ - 2946 + 2952 ], "__typename": [ 80 @@ -30571,40 +31050,40 @@ export default { }, "league_relegation_playoffs": { "created_at": [ - 4493 + 4499 ], "higher_division": [ - 1844 + 1850 ], "higher_division_id": [ - 4993 + 4999 ], "higher_slots": [ 40 ], "id": [ - 4993 + 4999 ], "league_season_id": [ - 4993 + 4999 ], "lower_division": [ - 1844 + 1850 ], "lower_division_id": [ - 4993 + 4999 ], "resolved_at": [ - 4493 + 4499 ], "season": [ - 2020 + 2026 ], "tournament": [ - 4929 + 4935 ], "tournament_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -30612,10 +31091,10 @@ export default { }, "league_relegation_playoffs_aggregate": { "aggregate": [ - 1917 + 1923 ], "nodes": [ - 1913 + 1919 ], "__typename": [ 80 @@ -30623,7 +31102,7 @@ export default { }, "league_relegation_playoffs_aggregate_bool_exp": { "count": [ - 1916 + 1922 ], "__typename": [ 80 @@ -30631,13 +31110,13 @@ export default { }, "league_relegation_playoffs_aggregate_bool_exp_count": { "arguments": [ - 1934 + 1940 ], "distinct": [ 5 ], "filter": [ - 1922 + 1928 ], "predicate": [ 41 @@ -30648,13 +31127,13 @@ export default { }, "league_relegation_playoffs_aggregate_fields": { "avg": [ - 1920 + 1926 ], "count": [ 40, { "columns": [ - 1934, + 1940, "[league_relegation_playoffs_select_column!]" ], "distinct": [ @@ -30663,31 +31142,31 @@ export default { } ], "max": [ - 1926 + 1932 ], "min": [ - 1928 + 1934 ], "stddev": [ - 1936 + 1942 ], "stddev_pop": [ - 1938 + 1944 ], "stddev_samp": [ - 1940 + 1946 ], "sum": [ - 1944 + 1950 ], "var_pop": [ - 1948 + 1954 ], "var_samp": [ - 1950 + 1956 ], "variance": [ - 1952 + 1958 ], "__typename": [ 80 @@ -30695,37 +31174,37 @@ export default { }, "league_relegation_playoffs_aggregate_order_by": { "avg": [ - 1921 + 1927 ], "count": [ - 2946 + 2952 ], "max": [ - 1927 + 1933 ], "min": [ - 1929 + 1935 ], "stddev": [ - 1937 + 1943 ], "stddev_pop": [ - 1939 + 1945 ], "stddev_samp": [ - 1941 + 1947 ], "sum": [ - 1945 + 1951 ], "var_pop": [ - 1949 + 1955 ], "var_samp": [ - 1951 + 1957 ], "variance": [ - 1953 + 1959 ], "__typename": [ 80 @@ -30733,10 +31212,10 @@ export default { }, "league_relegation_playoffs_arr_rel_insert_input": { "data": [ - 1925 + 1931 ], "on_conflict": [ - 1931 + 1937 ], "__typename": [ 80 @@ -30752,7 +31231,7 @@ export default { }, "league_relegation_playoffs_avg_order_by": { "higher_slots": [ - 2946 + 2952 ], "__typename": [ 80 @@ -30760,49 +31239,49 @@ export default { }, "league_relegation_playoffs_bool_exp": { "_and": [ - 1922 + 1928 ], "_not": [ - 1922 + 1928 ], "_or": [ - 1922 + 1928 ], "created_at": [ - 4494 + 4500 ], "higher_division": [ - 1848 + 1854 ], "higher_division_id": [ - 4995 + 5001 ], "higher_slots": [ 41 ], "id": [ - 4995 + 5001 ], "league_season_id": [ - 4995 + 5001 ], "lower_division": [ - 1848 + 1854 ], "lower_division_id": [ - 4995 + 5001 ], "resolved_at": [ - 4494 + 4500 ], "season": [ - 2025 + 2031 ], "tournament": [ - 4950 + 4956 ], "tournament_id": [ - 4995 + 5001 ], "__typename": [ 80 @@ -30819,40 +31298,40 @@ export default { }, "league_relegation_playoffs_insert_input": { "created_at": [ - 4493 + 4499 ], "higher_division": [ - 1855 + 1861 ], "higher_division_id": [ - 4993 + 4999 ], "higher_slots": [ 40 ], "id": [ - 4993 + 4999 ], "league_season_id": [ - 4993 + 4999 ], "lower_division": [ - 1855 + 1861 ], "lower_division_id": [ - 4993 + 4999 ], "resolved_at": [ - 4493 + 4499 ], "season": [ - 2035 + 2041 ], "tournament": [ - 4959 + 4965 ], "tournament_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -30860,28 +31339,28 @@ export default { }, "league_relegation_playoffs_max_fields": { "created_at": [ - 4493 + 4499 ], "higher_division_id": [ - 4993 + 4999 ], "higher_slots": [ 40 ], "id": [ - 4993 + 4999 ], "league_season_id": [ - 4993 + 4999 ], "lower_division_id": [ - 4993 + 4999 ], "resolved_at": [ - 4493 + 4499 ], "tournament_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -30889,28 +31368,28 @@ export default { }, "league_relegation_playoffs_max_order_by": { "created_at": [ - 2946 + 2952 ], "higher_division_id": [ - 2946 + 2952 ], "higher_slots": [ - 2946 + 2952 ], "id": [ - 2946 + 2952 ], "league_season_id": [ - 2946 + 2952 ], "lower_division_id": [ - 2946 + 2952 ], "resolved_at": [ - 2946 + 2952 ], "tournament_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -30918,28 +31397,28 @@ export default { }, "league_relegation_playoffs_min_fields": { "created_at": [ - 4493 + 4499 ], "higher_division_id": [ - 4993 + 4999 ], "higher_slots": [ 40 ], "id": [ - 4993 + 4999 ], "league_season_id": [ - 4993 + 4999 ], "lower_division_id": [ - 4993 + 4999 ], "resolved_at": [ - 4493 + 4499 ], "tournament_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -30947,28 +31426,28 @@ export default { }, "league_relegation_playoffs_min_order_by": { "created_at": [ - 2946 + 2952 ], "higher_division_id": [ - 2946 + 2952 ], "higher_slots": [ - 2946 + 2952 ], "id": [ - 2946 + 2952 ], "league_season_id": [ - 2946 + 2952 ], "lower_division_id": [ - 2946 + 2952 ], "resolved_at": [ - 2946 + 2952 ], "tournament_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -30979,7 +31458,7 @@ export default { 40 ], "returning": [ - 1913 + 1919 ], "__typename": [ 80 @@ -30987,13 +31466,13 @@ export default { }, "league_relegation_playoffs_on_conflict": { "constraint": [ - 1923 + 1929 ], "update_columns": [ - 1946 + 1952 ], "where": [ - 1922 + 1928 ], "__typename": [ 80 @@ -31001,40 +31480,40 @@ export default { }, "league_relegation_playoffs_order_by": { "created_at": [ - 2946 + 2952 ], "higher_division": [ - 1857 + 1863 ], "higher_division_id": [ - 2946 + 2952 ], "higher_slots": [ - 2946 + 2952 ], "id": [ - 2946 + 2952 ], "league_season_id": [ - 2946 + 2952 ], "lower_division": [ - 1857 + 1863 ], "lower_division_id": [ - 2946 + 2952 ], "resolved_at": [ - 2946 + 2952 ], "season": [ - 2037 + 2043 ], "tournament": [ - 4961 + 4967 ], "tournament_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -31042,7 +31521,7 @@ export default { }, "league_relegation_playoffs_pk_columns_input": { "id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -31051,28 +31530,28 @@ export default { "league_relegation_playoffs_select_column": {}, "league_relegation_playoffs_set_input": { "created_at": [ - 4493 + 4499 ], "higher_division_id": [ - 4993 + 4999 ], "higher_slots": [ 40 ], "id": [ - 4993 + 4999 ], "league_season_id": [ - 4993 + 4999 ], "lower_division_id": [ - 4993 + 4999 ], "resolved_at": [ - 4493 + 4499 ], "tournament_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -31088,7 +31567,7 @@ export default { }, "league_relegation_playoffs_stddev_order_by": { "higher_slots": [ - 2946 + 2952 ], "__typename": [ 80 @@ -31104,7 +31583,7 @@ export default { }, "league_relegation_playoffs_stddev_pop_order_by": { "higher_slots": [ - 2946 + 2952 ], "__typename": [ 80 @@ -31120,7 +31599,7 @@ export default { }, "league_relegation_playoffs_stddev_samp_order_by": { "higher_slots": [ - 2946 + 2952 ], "__typename": [ 80 @@ -31128,10 +31607,10 @@ export default { }, "league_relegation_playoffs_stream_cursor_input": { "initial_value": [ - 1943 + 1949 ], "ordering": [ - 308 + 314 ], "__typename": [ 80 @@ -31139,28 +31618,28 @@ export default { }, "league_relegation_playoffs_stream_cursor_value_input": { "created_at": [ - 4493 + 4499 ], "higher_division_id": [ - 4993 + 4999 ], "higher_slots": [ 40 ], "id": [ - 4993 + 4999 ], "league_season_id": [ - 4993 + 4999 ], "lower_division_id": [ - 4993 + 4999 ], "resolved_at": [ - 4493 + 4499 ], "tournament_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -31176,7 +31655,7 @@ export default { }, "league_relegation_playoffs_sum_order_by": { "higher_slots": [ - 2946 + 2952 ], "__typename": [ 80 @@ -31185,13 +31664,13 @@ export default { "league_relegation_playoffs_update_column": {}, "league_relegation_playoffs_updates": { "_inc": [ - 1924 + 1930 ], "_set": [ - 1935 + 1941 ], "where": [ - 1922 + 1928 ], "__typename": [ 80 @@ -31207,7 +31686,7 @@ export default { }, "league_relegation_playoffs_var_pop_order_by": { "higher_slots": [ - 2946 + 2952 ], "__typename": [ 80 @@ -31223,7 +31702,7 @@ export default { }, "league_relegation_playoffs_var_samp_order_by": { "higher_slots": [ - 2946 + 2952 ], "__typename": [ 80 @@ -31239,7 +31718,7 @@ export default { }, "league_relegation_playoffs_variance_order_by": { "higher_slots": [ - 2946 + 2952 ], "__typename": [ 80 @@ -31247,46 +31726,46 @@ export default { }, "league_scheduling_proposals": { "bracket": [ - 4537 + 4543 ], "created_at": [ - 4493 + 4499 ], "e_proposal_status": [ - 792 + 798 ], "id": [ - 4993 + 4999 ], "message": [ 80 ], "proposed_by": [ - 3904 + 3910 ], "proposed_by_league_team_season_id": [ - 4993 + 4999 ], "proposed_by_steam_id": [ - 252 + 258 ], "proposed_time": [ - 4493 + 4499 ], "responded_by": [ - 3904 + 3910 ], "responded_by_steam_id": [ - 252 + 258 ], "status": [ - 797 + 803 ], "team_season": [ - 2135 + 2141 ], "tournament_bracket_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -31294,10 +31773,10 @@ export default { }, "league_scheduling_proposals_aggregate": { "aggregate": [ - 1958 + 1964 ], "nodes": [ - 1954 + 1960 ], "__typename": [ 80 @@ -31305,7 +31784,7 @@ export default { }, "league_scheduling_proposals_aggregate_bool_exp": { "count": [ - 1957 + 1963 ], "__typename": [ 80 @@ -31313,13 +31792,13 @@ export default { }, "league_scheduling_proposals_aggregate_bool_exp_count": { "arguments": [ - 1975 + 1981 ], "distinct": [ 5 ], "filter": [ - 1963 + 1969 ], "predicate": [ 41 @@ -31330,13 +31809,13 @@ export default { }, "league_scheduling_proposals_aggregate_fields": { "avg": [ - 1961 + 1967 ], "count": [ 40, { "columns": [ - 1975, + 1981, "[league_scheduling_proposals_select_column!]" ], "distinct": [ @@ -31345,31 +31824,31 @@ export default { } ], "max": [ - 1967 + 1973 ], "min": [ - 1969 + 1975 ], "stddev": [ - 1977 + 1983 ], "stddev_pop": [ - 1979 + 1985 ], "stddev_samp": [ - 1981 + 1987 ], "sum": [ - 1985 + 1991 ], "var_pop": [ - 1989 + 1995 ], "var_samp": [ - 1991 + 1997 ], "variance": [ - 1993 + 1999 ], "__typename": [ 80 @@ -31377,37 +31856,37 @@ export default { }, "league_scheduling_proposals_aggregate_order_by": { "avg": [ - 1962 + 1968 ], "count": [ - 2946 + 2952 ], "max": [ - 1968 + 1974 ], "min": [ - 1970 + 1976 ], "stddev": [ - 1978 + 1984 ], "stddev_pop": [ - 1980 + 1986 ], "stddev_samp": [ - 1982 + 1988 ], "sum": [ - 1986 + 1992 ], "var_pop": [ - 1990 + 1996 ], "var_samp": [ - 1992 + 1998 ], "variance": [ - 1994 + 2000 ], "__typename": [ 80 @@ -31415,10 +31894,10 @@ export default { }, "league_scheduling_proposals_arr_rel_insert_input": { "data": [ - 1966 + 1972 ], "on_conflict": [ - 1972 + 1978 ], "__typename": [ 80 @@ -31437,10 +31916,10 @@ export default { }, "league_scheduling_proposals_avg_order_by": { "proposed_by_steam_id": [ - 2946 + 2952 ], "responded_by_steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -31448,55 +31927,55 @@ export default { }, "league_scheduling_proposals_bool_exp": { "_and": [ - 1963 + 1969 ], "_not": [ - 1963 + 1969 ], "_or": [ - 1963 + 1969 ], "bracket": [ - 4548 + 4554 ], "created_at": [ - 4494 + 4500 ], "e_proposal_status": [ - 795 + 801 ], "id": [ - 4995 + 5001 ], "message": [ 82 ], "proposed_by": [ - 3908 + 3914 ], "proposed_by_league_team_season_id": [ - 4995 + 5001 ], "proposed_by_steam_id": [ - 254 + 260 ], "proposed_time": [ - 4494 + 4500 ], "responded_by": [ - 3908 + 3914 ], "responded_by_steam_id": [ - 254 + 260 ], "status": [ - 798 + 804 ], "team_season": [ - 2144 + 2150 ], "tournament_bracket_id": [ - 4995 + 5001 ], "__typename": [ 80 @@ -31505,10 +31984,10 @@ export default { "league_scheduling_proposals_constraint": {}, "league_scheduling_proposals_inc_input": { "proposed_by_steam_id": [ - 252 + 258 ], "responded_by_steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -31516,46 +31995,46 @@ export default { }, "league_scheduling_proposals_insert_input": { "bracket": [ - 4557 + 4563 ], "created_at": [ - 4493 + 4499 ], "e_proposal_status": [ - 803 + 809 ], "id": [ - 4993 + 4999 ], "message": [ 80 ], "proposed_by": [ - 3915 + 3921 ], "proposed_by_league_team_season_id": [ - 4993 + 4999 ], "proposed_by_steam_id": [ - 252 + 258 ], "proposed_time": [ - 4493 + 4499 ], "responded_by": [ - 3915 + 3921 ], "responded_by_steam_id": [ - 252 + 258 ], "status": [ - 797 + 803 ], "team_season": [ - 2153 + 2159 ], "tournament_bracket_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -31563,28 +32042,28 @@ export default { }, "league_scheduling_proposals_max_fields": { "created_at": [ - 4493 + 4499 ], "id": [ - 4993 + 4999 ], "message": [ 80 ], "proposed_by_league_team_season_id": [ - 4993 + 4999 ], "proposed_by_steam_id": [ - 252 + 258 ], "proposed_time": [ - 4493 + 4499 ], "responded_by_steam_id": [ - 252 + 258 ], "tournament_bracket_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -31592,28 +32071,28 @@ export default { }, "league_scheduling_proposals_max_order_by": { "created_at": [ - 2946 + 2952 ], "id": [ - 2946 + 2952 ], "message": [ - 2946 + 2952 ], "proposed_by_league_team_season_id": [ - 2946 + 2952 ], "proposed_by_steam_id": [ - 2946 + 2952 ], "proposed_time": [ - 2946 + 2952 ], "responded_by_steam_id": [ - 2946 + 2952 ], "tournament_bracket_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -31621,28 +32100,28 @@ export default { }, "league_scheduling_proposals_min_fields": { "created_at": [ - 4493 + 4499 ], "id": [ - 4993 + 4999 ], "message": [ 80 ], "proposed_by_league_team_season_id": [ - 4993 + 4999 ], "proposed_by_steam_id": [ - 252 + 258 ], "proposed_time": [ - 4493 + 4499 ], "responded_by_steam_id": [ - 252 + 258 ], "tournament_bracket_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -31650,28 +32129,28 @@ export default { }, "league_scheduling_proposals_min_order_by": { "created_at": [ - 2946 + 2952 ], "id": [ - 2946 + 2952 ], "message": [ - 2946 + 2952 ], "proposed_by_league_team_season_id": [ - 2946 + 2952 ], "proposed_by_steam_id": [ - 2946 + 2952 ], "proposed_time": [ - 2946 + 2952 ], "responded_by_steam_id": [ - 2946 + 2952 ], "tournament_bracket_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -31682,7 +32161,7 @@ export default { 40 ], "returning": [ - 1954 + 1960 ], "__typename": [ 80 @@ -31690,13 +32169,13 @@ export default { }, "league_scheduling_proposals_on_conflict": { "constraint": [ - 1964 + 1970 ], "update_columns": [ - 1987 + 1993 ], "where": [ - 1963 + 1969 ], "__typename": [ 80 @@ -31704,46 +32183,46 @@ export default { }, "league_scheduling_proposals_order_by": { "bracket": [ - 4559 + 4565 ], "created_at": [ - 2946 + 2952 ], "e_proposal_status": [ - 805 + 811 ], "id": [ - 2946 + 2952 ], "message": [ - 2946 + 2952 ], "proposed_by": [ - 3917 + 3923 ], "proposed_by_league_team_season_id": [ - 2946 + 2952 ], "proposed_by_steam_id": [ - 2946 + 2952 ], "proposed_time": [ - 2946 + 2952 ], "responded_by": [ - 3917 + 3923 ], "responded_by_steam_id": [ - 2946 + 2952 ], "status": [ - 2946 + 2952 ], "team_season": [ - 2155 + 2161 ], "tournament_bracket_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -31751,7 +32230,7 @@ export default { }, "league_scheduling_proposals_pk_columns_input": { "id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -31760,31 +32239,31 @@ export default { "league_scheduling_proposals_select_column": {}, "league_scheduling_proposals_set_input": { "created_at": [ - 4493 + 4499 ], "id": [ - 4993 + 4999 ], "message": [ 80 ], "proposed_by_league_team_season_id": [ - 4993 + 4999 ], "proposed_by_steam_id": [ - 252 + 258 ], "proposed_time": [ - 4493 + 4499 ], "responded_by_steam_id": [ - 252 + 258 ], "status": [ - 797 + 803 ], "tournament_bracket_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -31803,10 +32282,10 @@ export default { }, "league_scheduling_proposals_stddev_order_by": { "proposed_by_steam_id": [ - 2946 + 2952 ], "responded_by_steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -31825,10 +32304,10 @@ export default { }, "league_scheduling_proposals_stddev_pop_order_by": { "proposed_by_steam_id": [ - 2946 + 2952 ], "responded_by_steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -31847,10 +32326,10 @@ export default { }, "league_scheduling_proposals_stddev_samp_order_by": { "proposed_by_steam_id": [ - 2946 + 2952 ], "responded_by_steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -31858,10 +32337,10 @@ export default { }, "league_scheduling_proposals_stream_cursor_input": { "initial_value": [ - 1984 + 1990 ], "ordering": [ - 308 + 314 ], "__typename": [ 80 @@ -31869,31 +32348,31 @@ export default { }, "league_scheduling_proposals_stream_cursor_value_input": { "created_at": [ - 4493 + 4499 ], "id": [ - 4993 + 4999 ], "message": [ 80 ], "proposed_by_league_team_season_id": [ - 4993 + 4999 ], "proposed_by_steam_id": [ - 252 + 258 ], "proposed_time": [ - 4493 + 4499 ], "responded_by_steam_id": [ - 252 + 258 ], "status": [ - 797 + 803 ], "tournament_bracket_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -31901,10 +32380,10 @@ export default { }, "league_scheduling_proposals_sum_fields": { "proposed_by_steam_id": [ - 252 + 258 ], "responded_by_steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -31912,10 +32391,10 @@ export default { }, "league_scheduling_proposals_sum_order_by": { "proposed_by_steam_id": [ - 2946 + 2952 ], "responded_by_steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -31924,13 +32403,13 @@ export default { "league_scheduling_proposals_update_column": {}, "league_scheduling_proposals_updates": { "_inc": [ - 1965 + 1971 ], "_set": [ - 1976 + 1982 ], "where": [ - 1963 + 1969 ], "__typename": [ 80 @@ -31949,10 +32428,10 @@ export default { }, "league_scheduling_proposals_var_pop_order_by": { "proposed_by_steam_id": [ - 2946 + 2952 ], "responded_by_steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -31971,10 +32450,10 @@ export default { }, "league_scheduling_proposals_var_samp_order_by": { "proposed_by_steam_id": [ - 2946 + 2952 ], "responded_by_steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -31993,10 +32472,10 @@ export default { }, "league_scheduling_proposals_variance_order_by": { "proposed_by_steam_id": [ - 2946 + 2952 ], "responded_by_steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -32004,28 +32483,28 @@ export default { }, "league_season_divisions": { "created_at": [ - 4493 + 4499 ], "division": [ - 1844 + 1850 ], "id": [ - 4993 + 4999 ], "league_division_id": [ - 4993 + 4999 ], "league_season_id": [ - 4993 + 4999 ], "season": [ - 2020 + 2026 ], "standings": [ - 5065, + 5071, { "distinct_on": [ - 5081, + 5087, "[v_league_division_standings_select_column!]" ], "limit": [ @@ -32035,19 +32514,19 @@ export default { 40 ], "order_by": [ - 5080, + 5086, "[v_league_division_standings_order_by!]" ], "where": [ - 5074 + 5080 ] } ], "standings_aggregate": [ - 5066, + 5072, { "distinct_on": [ - 5081, + 5087, "[v_league_division_standings_select_column!]" ], "limit": [ @@ -32057,19 +32536,19 @@ export default { 40 ], "order_by": [ - 5080, + 5086, "[v_league_division_standings_order_by!]" ], "where": [ - 5074 + 5080 ] } ], "tournament": [ - 4929 + 4935 ], "tournament_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -32077,10 +32556,10 @@ export default { }, "league_season_divisions_aggregate": { "aggregate": [ - 1999 + 2005 ], "nodes": [ - 1995 + 2001 ], "__typename": [ 80 @@ -32088,7 +32567,7 @@ export default { }, "league_season_divisions_aggregate_bool_exp": { "count": [ - 1998 + 2004 ], "__typename": [ 80 @@ -32096,13 +32575,13 @@ export default { }, "league_season_divisions_aggregate_bool_exp_count": { "arguments": [ - 2014 + 2020 ], "distinct": [ 5 ], "filter": [ - 2002 + 2008 ], "predicate": [ 41 @@ -32116,7 +32595,7 @@ export default { 40, { "columns": [ - 2014, + 2020, "[league_season_divisions_select_column!]" ], "distinct": [ @@ -32125,10 +32604,10 @@ export default { } ], "max": [ - 2005 + 2011 ], "min": [ - 2007 + 2013 ], "__typename": [ 80 @@ -32136,13 +32615,13 @@ export default { }, "league_season_divisions_aggregate_order_by": { "count": [ - 2946 + 2952 ], "max": [ - 2006 + 2012 ], "min": [ - 2008 + 2014 ], "__typename": [ 80 @@ -32150,10 +32629,10 @@ export default { }, "league_season_divisions_arr_rel_insert_input": { "data": [ - 2004 + 2010 ], "on_conflict": [ - 2011 + 2017 ], "__typename": [ 80 @@ -32161,43 +32640,43 @@ export default { }, "league_season_divisions_bool_exp": { "_and": [ - 2002 + 2008 ], "_not": [ - 2002 + 2008 ], "_or": [ - 2002 + 2008 ], "created_at": [ - 4494 + 4500 ], "division": [ - 1848 + 1854 ], "id": [ - 4995 + 5001 ], "league_division_id": [ - 4995 + 5001 ], "league_season_id": [ - 4995 + 5001 ], "season": [ - 2025 + 2031 ], "standings": [ - 5074 + 5080 ], "standings_aggregate": [ - 5067 + 5073 ], "tournament": [ - 4950 + 4956 ], "tournament_id": [ - 4995 + 5001 ], "__typename": [ 80 @@ -32206,31 +32685,31 @@ export default { "league_season_divisions_constraint": {}, "league_season_divisions_insert_input": { "created_at": [ - 4493 + 4499 ], "division": [ - 1855 + 1861 ], "id": [ - 4993 + 4999 ], "league_division_id": [ - 4993 + 4999 ], "league_season_id": [ - 4993 + 4999 ], "season": [ - 2035 + 2041 ], "standings": [ - 5071 + 5077 ], "tournament": [ - 4959 + 4965 ], "tournament_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -32238,19 +32717,19 @@ export default { }, "league_season_divisions_max_fields": { "created_at": [ - 4493 + 4499 ], "id": [ - 4993 + 4999 ], "league_division_id": [ - 4993 + 4999 ], "league_season_id": [ - 4993 + 4999 ], "tournament_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -32258,19 +32737,19 @@ export default { }, "league_season_divisions_max_order_by": { "created_at": [ - 2946 + 2952 ], "id": [ - 2946 + 2952 ], "league_division_id": [ - 2946 + 2952 ], "league_season_id": [ - 2946 + 2952 ], "tournament_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -32278,19 +32757,19 @@ export default { }, "league_season_divisions_min_fields": { "created_at": [ - 4493 + 4499 ], "id": [ - 4993 + 4999 ], "league_division_id": [ - 4993 + 4999 ], "league_season_id": [ - 4993 + 4999 ], "tournament_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -32298,19 +32777,19 @@ export default { }, "league_season_divisions_min_order_by": { "created_at": [ - 2946 + 2952 ], "id": [ - 2946 + 2952 ], "league_division_id": [ - 2946 + 2952 ], "league_season_id": [ - 2946 + 2952 ], "tournament_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -32321,7 +32800,7 @@ export default { 40 ], "returning": [ - 1995 + 2001 ], "__typename": [ 80 @@ -32329,10 +32808,10 @@ export default { }, "league_season_divisions_obj_rel_insert_input": { "data": [ - 2004 + 2010 ], "on_conflict": [ - 2011 + 2017 ], "__typename": [ 80 @@ -32340,13 +32819,13 @@ export default { }, "league_season_divisions_on_conflict": { "constraint": [ - 2003 + 2009 ], "update_columns": [ - 2018 + 2024 ], "where": [ - 2002 + 2008 ], "__typename": [ 80 @@ -32354,31 +32833,31 @@ export default { }, "league_season_divisions_order_by": { "created_at": [ - 2946 + 2952 ], "division": [ - 1857 + 1863 ], "id": [ - 2946 + 2952 ], "league_division_id": [ - 2946 + 2952 ], "league_season_id": [ - 2946 + 2952 ], "season": [ - 2037 + 2043 ], "standings_aggregate": [ - 5070 + 5076 ], "tournament": [ - 4961 + 4967 ], "tournament_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -32386,7 +32865,7 @@ export default { }, "league_season_divisions_pk_columns_input": { "id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -32395,19 +32874,19 @@ export default { "league_season_divisions_select_column": {}, "league_season_divisions_set_input": { "created_at": [ - 4493 + 4499 ], "id": [ - 4993 + 4999 ], "league_division_id": [ - 4993 + 4999 ], "league_season_id": [ - 4993 + 4999 ], "tournament_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -32415,10 +32894,10 @@ export default { }, "league_season_divisions_stream_cursor_input": { "initial_value": [ - 2017 + 2023 ], "ordering": [ - 308 + 314 ], "__typename": [ 80 @@ -32426,19 +32905,19 @@ export default { }, "league_season_divisions_stream_cursor_value_input": { "created_at": [ - 4493 + 4499 ], "id": [ - 4993 + 4999 ], "league_division_id": [ - 4993 + 4999 ], "league_season_id": [ - 4993 + 4999 ], "tournament_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -32447,10 +32926,10 @@ export default { "league_season_divisions_update_column": {}, "league_season_divisions_updates": { "_set": [ - 2015 + 2021 ], "where": [ - 2002 + 2008 ], "__typename": [ 80 @@ -32460,14 +32939,58 @@ export default { "auto_regular_season_format": [ 5 ], + "awards": [ + 189, + { + "distinct_on": [ + 210, + "[award_recipients_select_column!]" + ], + "limit": [ + 40 + ], + "offset": [ + 40 + ], + "order_by": [ + 208, + "[award_recipients_order_by!]" + ], + "where": [ + 198 + ] + } + ], + "awards_aggregate": [ + 190, + { + "distinct_on": [ + 210, + "[award_recipients_select_column!]" + ], + "limit": [ + 40 + ], + "offset": [ + 40 + ], + "order_by": [ + 208, + "[award_recipients_order_by!]" + ], + "where": [ + 198 + ] + } + ], "can_register": [ 5 ], "created_at": [ - 4493 + 4499 ], "created_by_steam_id": [ - 252 + 258 ], "default_best_of": [ 40 @@ -32479,13 +33002,13 @@ export default { 40 ], "e_league_season_status": [ - 834 + 840 ], "games_per_week": [ 40 ], "id": [ - 4993 + 4999 ], "is_league_admin": [ 5 @@ -32494,13 +33017,13 @@ export default { 5 ], "match_options_id": [ - 4993 + 4999 ], "match_weeks": [ - 1872, + 1878, { "distinct_on": [ - 1893, + 1899, "[league_match_weeks_select_column!]" ], "limit": [ @@ -32510,19 +33033,19 @@ export default { 40 ], "order_by": [ - 1891, + 1897, "[league_match_weeks_order_by!]" ], "where": [ - 1881 + 1887 ] } ], "match_weeks_aggregate": [ - 1873, + 1879, { "distinct_on": [ - 1893, + 1899, "[league_match_weeks_select_column!]" ], "limit": [ @@ -32532,11 +33055,11 @@ export default { 40 ], "order_by": [ - 1891, + 1897, "[league_match_weeks_order_by!]" ], "where": [ - 1881 + 1887 ] } ], @@ -32550,10 +33073,10 @@ export default { 40 ], "movements": [ - 2053, + 2059, { "distinct_on": [ - 2074, + 2080, "[league_team_movements_select_column!]" ], "limit": [ @@ -32563,19 +33086,19 @@ export default { 40 ], "order_by": [ - 2072, + 2078, "[league_team_movements_order_by!]" ], "where": [ - 2062 + 2068 ] } ], "movements_aggregate": [ - 2054, + 2060, { "distinct_on": [ - 2074, + 2080, "[league_team_movements_select_column!]" ], "limit": [ @@ -32585,19 +33108,19 @@ export default { 40 ], "order_by": [ - 2072, + 2078, "[league_team_movements_order_by!]" ], "where": [ - 2062 + 2068 ] } ], "my_registration": [ - 2135, + 2141, { "distinct_on": [ - 2157, + 2163, "[league_team_seasons_select_column!]" ], "limit": [ @@ -32607,11 +33130,11 @@ export default { 40 ], "order_by": [ - 2155, + 2161, "[league_team_seasons_order_by!]" ], "where": [ - 2144 + 2150 ] } ], @@ -32619,13 +33142,13 @@ export default { 80 ], "options": [ - 2641 + 2647 ], "player_stats": [ - 5098, + 5104, { "distinct_on": [ - 5124, + 5130, "[v_league_season_player_stats_select_column!]" ], "limit": [ @@ -32635,19 +33158,19 @@ export default { 40 ], "order_by": [ - 5123, + 5129, "[v_league_season_player_stats_order_by!]" ], "where": [ - 5117 + 5123 ] } ], "player_stats_aggregate": [ - 5099, + 5105, { "distinct_on": [ - 5124, + 5130, "[v_league_season_player_stats_select_column!]" ], "limit": [ @@ -32657,11 +33180,11 @@ export default { 40 ], "order_by": [ - 5123, + 5129, "[v_league_season_player_stats_order_by!]" ], "where": [ - 5117 + 5123 ] } ], @@ -32669,7 +33192,7 @@ export default { 40 ], "playoff_round_best_of": [ - 1817, + 1823, { "path": [ 80 @@ -32680,7 +33203,7 @@ export default { 40 ], "playoff_stage_type": [ - 1308 + 1314 ], "playoff_third_place_match": [ 5 @@ -32689,7 +33212,7 @@ export default { 40 ], "regular_season_stage_type": [ - 1308 + 1314 ], "relegate_count": [ 40 @@ -32698,10 +33221,10 @@ export default { 40 ], "relegation_playoffs": [ - 1913, + 1919, { "distinct_on": [ - 1934, + 1940, "[league_relegation_playoffs_select_column!]" ], "limit": [ @@ -32711,19 +33234,19 @@ export default { 40 ], "order_by": [ - 1932, + 1938, "[league_relegation_playoffs_order_by!]" ], "where": [ - 1922 + 1928 ] } ], "relegation_playoffs_aggregate": [ - 1914, + 1920, { "distinct_on": [ - 1934, + 1940, "[league_relegation_playoffs_select_column!]" ], "limit": [ @@ -32733,11 +33256,11 @@ export default { 40 ], "order_by": [ - 1932, + 1938, "[league_relegation_playoffs_order_by!]" ], "where": [ - 1922 + 1928 ] } ], @@ -32745,13 +33268,13 @@ export default { 40 ], "roster_lock_at": [ - 4493 + 4499 ], "season_divisions": [ - 1995, + 2001, { "distinct_on": [ - 2014, + 2020, "[league_season_divisions_select_column!]" ], "limit": [ @@ -32761,19 +33284,19 @@ export default { 40 ], "order_by": [ - 2012, + 2018, "[league_season_divisions_order_by!]" ], "where": [ - 2002 + 2008 ] } ], "season_divisions_aggregate": [ - 1996, + 2002, { "distinct_on": [ - 2014, + 2020, "[league_season_divisions_select_column!]" ], "limit": [ @@ -32783,11 +33306,11 @@ export default { 40 ], "order_by": [ - 2012, + 2018, "[league_season_divisions_order_by!]" ], "where": [ - 2002 + 2008 ] } ], @@ -32795,16 +33318,16 @@ export default { 40 ], "signup_closes_at": [ - 4493 + 4499 ], "signup_opens_at": [ - 4493 + 4499 ], "standings": [ - 5065, + 5071, { "distinct_on": [ - 5081, + 5087, "[v_league_division_standings_select_column!]" ], "limit": [ @@ -32814,19 +33337,19 @@ export default { 40 ], "order_by": [ - 5080, + 5086, "[v_league_division_standings_order_by!]" ], "where": [ - 5074 + 5080 ] } ], "standings_aggregate": [ - 5066, + 5072, { "distinct_on": [ - 5081, + 5087, "[v_league_division_standings_select_column!]" ], "limit": [ @@ -32836,25 +33359,25 @@ export default { 40 ], "order_by": [ - 5080, + 5086, "[v_league_division_standings_order_by!]" ], "where": [ - 5074 + 5080 ] } ], "starts_at": [ - 4493 + 4499 ], "status": [ - 839 + 845 ], "team_seasons": [ - 2135, + 2141, { "distinct_on": [ - 2157, + 2163, "[league_team_seasons_select_column!]" ], "limit": [ @@ -32864,19 +33387,19 @@ export default { 40 ], "order_by": [ - 2155, + 2161, "[league_team_seasons_order_by!]" ], "where": [ - 2144 + 2150 ] } ], "team_seasons_aggregate": [ - 2136, + 2142, { "distinct_on": [ - 2157, + 2163, "[league_team_seasons_select_column!]" ], "limit": [ @@ -32886,16 +33409,16 @@ export default { 40 ], "order_by": [ - 2155, + 2161, "[league_team_seasons_order_by!]" ], "where": [ - 2144 + 2150 ] } ], "week_best_of": [ - 1817, + 1823, { "path": [ 80 @@ -32908,10 +33431,10 @@ export default { }, "league_seasons_aggregate": { "aggregate": [ - 2022 + 2028 ], "nodes": [ - 2020 + 2026 ], "__typename": [ 80 @@ -32919,13 +33442,13 @@ export default { }, "league_seasons_aggregate_fields": { "avg": [ - 2024 + 2030 ], "count": [ 40, { "columns": [ - 2040, + 2046, "[league_seasons_select_column!]" ], "distinct": [ @@ -32934,31 +33457,31 @@ export default { } ], "max": [ - 2032 + 2038 ], "min": [ - 2033 + 2039 ], "stddev": [ - 2042 + 2048 ], "stddev_pop": [ - 2043 + 2049 ], "stddev_samp": [ - 2044 + 2050 ], "sum": [ - 2047 + 2053 ], "var_pop": [ - 2050 + 2056 ], "var_samp": [ - 2051 + 2057 ], "variance": [ - 2052 + 2058 ], "__typename": [ 80 @@ -32966,10 +33489,10 @@ export default { }, "league_seasons_append_input": { "playoff_round_best_of": [ - 1817 + 1823 ], "week_best_of": [ - 1817 + 1823 ], "__typename": [ 80 @@ -33027,25 +33550,31 @@ export default { }, "league_seasons_bool_exp": { "_and": [ - 2025 + 2031 ], "_not": [ - 2025 + 2031 ], "_or": [ - 2025 + 2031 ], "auto_regular_season_format": [ 6 ], + "awards": [ + 198 + ], + "awards_aggregate": [ + 191 + ], "can_register": [ 6 ], "created_at": [ - 4494 + 4500 ], "created_by_steam_id": [ - 254 + 260 ], "default_best_of": [ 41 @@ -33057,13 +33586,13 @@ export default { 41 ], "e_league_season_status": [ - 837 + 843 ], "games_per_week": [ 41 ], "id": [ - 4995 + 5001 ], "is_league_admin": [ 6 @@ -33072,13 +33601,13 @@ export default { 6 ], "match_options_id": [ - 4995 + 5001 ], "match_weeks": [ - 1881 + 1887 ], "match_weeks_aggregate": [ - 1874 + 1880 ], "match_weeks_count": [ 41 @@ -33090,37 +33619,37 @@ export default { 41 ], "movements": [ - 2062 + 2068 ], "movements_aggregate": [ - 2055 + 2061 ], "my_registration": [ - 2144 + 2150 ], "name": [ 82 ], "options": [ - 2645 + 2651 ], "player_stats": [ - 5117 + 5123 ], "player_stats_aggregate": [ - 5100 + 5106 ], "playoff_best_of": [ 41 ], "playoff_round_best_of": [ - 1819 + 1825 ], "playoff_seats": [ 41 ], "playoff_stage_type": [ - 1309 + 1315 ], "playoff_third_place_match": [ 6 @@ -33129,7 +33658,7 @@ export default { 41 ], "regular_season_stage_type": [ - 1309 + 1315 ], "relegate_count": [ 41 @@ -33138,52 +33667,52 @@ export default { 41 ], "relegation_playoffs": [ - 1922 + 1928 ], "relegation_playoffs_aggregate": [ - 1915 + 1921 ], "relegation_up_count": [ 41 ], "roster_lock_at": [ - 4494 + 4500 ], "season_divisions": [ - 2002 + 2008 ], "season_divisions_aggregate": [ - 1997 + 2003 ], "season_number": [ 41 ], "signup_closes_at": [ - 4494 + 4500 ], "signup_opens_at": [ - 4494 + 4500 ], "standings": [ - 5074 + 5080 ], "standings_aggregate": [ - 5067 + 5073 ], "starts_at": [ - 4494 + 4500 ], "status": [ - 840 + 846 ], "team_seasons": [ - 2144 + 2150 ], "team_seasons_aggregate": [ - 2137 + 2143 ], "week_best_of": [ - 1819 + 1825 ], "__typename": [ 80 @@ -33225,7 +33754,7 @@ export default { }, "league_seasons_inc_input": { "created_by_steam_id": [ - 252 + 258 ], "default_best_of": [ 40 @@ -33277,11 +33806,14 @@ export default { "auto_regular_season_format": [ 5 ], + "awards": [ + 195 + ], "created_at": [ - 4493 + 4499 ], "created_by_steam_id": [ - 252 + 258 ], "default_best_of": [ 40 @@ -33293,19 +33825,19 @@ export default { 40 ], "e_league_season_status": [ - 845 + 851 ], "games_per_week": [ 40 ], "id": [ - 4993 + 4999 ], "match_options_id": [ - 4993 + 4999 ], "match_weeks": [ - 1878 + 1884 ], "match_weeks_count": [ 40 @@ -33317,28 +33849,28 @@ export default { 40 ], "movements": [ - 2059 + 2065 ], "name": [ 80 ], "options": [ - 2652 + 2658 ], "player_stats": [ - 5114 + 5120 ], "playoff_best_of": [ 40 ], "playoff_round_best_of": [ - 1817 + 1823 ], "playoff_seats": [ 40 ], "playoff_stage_type": [ - 1308 + 1314 ], "playoff_third_place_match": [ 5 @@ -33347,7 +33879,7 @@ export default { 40 ], "regular_season_stage_type": [ - 1308 + 1314 ], "relegate_count": [ 40 @@ -33356,40 +33888,40 @@ export default { 40 ], "relegation_playoffs": [ - 1919 + 1925 ], "relegation_up_count": [ 40 ], "roster_lock_at": [ - 4493 + 4499 ], "season_divisions": [ - 2001 + 2007 ], "season_number": [ 40 ], "signup_closes_at": [ - 4493 + 4499 ], "signup_opens_at": [ - 4493 + 4499 ], "standings": [ - 5071 + 5077 ], "starts_at": [ - 4493 + 4499 ], "status": [ - 839 + 845 ], "team_seasons": [ - 2141 + 2147 ], "week_best_of": [ - 1817 + 1823 ], "__typename": [ 80 @@ -33397,10 +33929,10 @@ export default { }, "league_seasons_max_fields": { "created_at": [ - 4493 + 4499 ], "created_by_steam_id": [ - 252 + 258 ], "default_best_of": [ 40 @@ -33415,10 +33947,10 @@ export default { 40 ], "id": [ - 4993 + 4999 ], "match_options_id": [ - 4993 + 4999 ], "match_weeks_count": [ 40 @@ -33451,19 +33983,19 @@ export default { 40 ], "roster_lock_at": [ - 4493 + 4499 ], "season_number": [ 40 ], "signup_closes_at": [ - 4493 + 4499 ], "signup_opens_at": [ - 4493 + 4499 ], "starts_at": [ - 4493 + 4499 ], "__typename": [ 80 @@ -33471,10 +34003,10 @@ export default { }, "league_seasons_min_fields": { "created_at": [ - 4493 + 4499 ], "created_by_steam_id": [ - 252 + 258 ], "default_best_of": [ 40 @@ -33489,10 +34021,10 @@ export default { 40 ], "id": [ - 4993 + 4999 ], "match_options_id": [ - 4993 + 4999 ], "match_weeks_count": [ 40 @@ -33525,19 +34057,19 @@ export default { 40 ], "roster_lock_at": [ - 4493 + 4499 ], "season_number": [ 40 ], "signup_closes_at": [ - 4493 + 4499 ], "signup_opens_at": [ - 4493 + 4499 ], "starts_at": [ - 4493 + 4499 ], "__typename": [ 80 @@ -33548,7 +34080,7 @@ export default { 40 ], "returning": [ - 2020 + 2026 ], "__typename": [ 80 @@ -33556,10 +34088,10 @@ export default { }, "league_seasons_obj_rel_insert_input": { "data": [ - 2031 + 2037 ], "on_conflict": [ - 2036 + 2042 ], "__typename": [ 80 @@ -33567,13 +34099,13 @@ export default { }, "league_seasons_on_conflict": { "constraint": [ - 2026 + 2032 ], "update_columns": [ - 2048 + 2054 ], "where": [ - 2025 + 2031 ], "__typename": [ 80 @@ -33581,133 +34113,136 @@ export default { }, "league_seasons_order_by": { "auto_regular_season_format": [ - 2946 + 2952 + ], + "awards_aggregate": [ + 194 ], "can_register": [ - 2946 + 2952 ], "created_at": [ - 2946 + 2952 ], "created_by_steam_id": [ - 2946 + 2952 ], "default_best_of": [ - 2946 + 2952 ], "direct_promote_count": [ - 2946 + 2952 ], "direct_relegate_count": [ - 2946 + 2952 ], "e_league_season_status": [ - 847 + 853 ], "games_per_week": [ - 2946 + 2952 ], "id": [ - 2946 + 2952 ], "is_league_admin": [ - 2946 + 2952 ], "is_roster_locked": [ - 2946 + 2952 ], "match_options_id": [ - 2946 + 2952 ], "match_weeks_aggregate": [ - 1877 + 1883 ], "match_weeks_count": [ - 2946 + 2952 ], "max_roster_size": [ - 2946 + 2952 ], "min_roster_size": [ - 2946 + 2952 ], "movements_aggregate": [ - 2058 + 2064 ], "my_registration_aggregate": [ - 2140 + 2146 ], "name": [ - 2946 + 2952 ], "options": [ - 2654 + 2660 ], "player_stats_aggregate": [ - 5113 + 5119 ], "playoff_best_of": [ - 2946 + 2952 ], "playoff_round_best_of": [ - 2946 + 2952 ], "playoff_seats": [ - 2946 + 2952 ], "playoff_stage_type": [ - 2946 + 2952 ], "playoff_third_place_match": [ - 2946 + 2952 ], "promote_count": [ - 2946 + 2952 ], "regular_season_stage_type": [ - 2946 + 2952 ], "relegate_count": [ - 2946 + 2952 ], "relegation_down_count": [ - 2946 + 2952 ], "relegation_playoffs_aggregate": [ - 1918 + 1924 ], "relegation_up_count": [ - 2946 + 2952 ], "roster_lock_at": [ - 2946 + 2952 ], "season_divisions_aggregate": [ - 2000 + 2006 ], "season_number": [ - 2946 + 2952 ], "signup_closes_at": [ - 2946 + 2952 ], "signup_opens_at": [ - 2946 + 2952 ], "standings_aggregate": [ - 5070 + 5076 ], "starts_at": [ - 2946 + 2952 ], "status": [ - 2946 + 2952 ], "team_seasons_aggregate": [ - 2140 + 2146 ], "week_best_of": [ - 2946 + 2952 ], "__typename": [ 80 @@ -33715,7 +34250,7 @@ export default { }, "league_seasons_pk_columns_input": { "id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -33723,10 +34258,10 @@ export default { }, "league_seasons_prepend_input": { "playoff_round_best_of": [ - 1817 + 1823 ], "week_best_of": [ - 1817 + 1823 ], "__typename": [ 80 @@ -33738,10 +34273,10 @@ export default { 5 ], "created_at": [ - 4493 + 4499 ], "created_by_steam_id": [ - 252 + 258 ], "default_best_of": [ 40 @@ -33756,10 +34291,10 @@ export default { 40 ], "id": [ - 4993 + 4999 ], "match_options_id": [ - 4993 + 4999 ], "match_weeks_count": [ 40 @@ -33777,13 +34312,13 @@ export default { 40 ], "playoff_round_best_of": [ - 1817 + 1823 ], "playoff_seats": [ 40 ], "playoff_stage_type": [ - 1308 + 1314 ], "playoff_third_place_match": [ 5 @@ -33792,7 +34327,7 @@ export default { 40 ], "regular_season_stage_type": [ - 1308 + 1314 ], "relegate_count": [ 40 @@ -33804,25 +34339,25 @@ export default { 40 ], "roster_lock_at": [ - 4493 + 4499 ], "season_number": [ 40 ], "signup_closes_at": [ - 4493 + 4499 ], "signup_opens_at": [ - 4493 + 4499 ], "starts_at": [ - 4493 + 4499 ], "status": [ - 839 + 845 ], "week_best_of": [ - 1817 + 1823 ], "__typename": [ 80 @@ -33980,10 +34515,10 @@ export default { }, "league_seasons_stream_cursor_input": { "initial_value": [ - 2046 + 2052 ], "ordering": [ - 308 + 314 ], "__typename": [ 80 @@ -33994,10 +34529,10 @@ export default { 5 ], "created_at": [ - 4493 + 4499 ], "created_by_steam_id": [ - 252 + 258 ], "default_best_of": [ 40 @@ -34012,10 +34547,10 @@ export default { 40 ], "id": [ - 4993 + 4999 ], "match_options_id": [ - 4993 + 4999 ], "match_weeks_count": [ 40 @@ -34033,13 +34568,13 @@ export default { 40 ], "playoff_round_best_of": [ - 1817 + 1823 ], "playoff_seats": [ 40 ], "playoff_stage_type": [ - 1308 + 1314 ], "playoff_third_place_match": [ 5 @@ -34048,7 +34583,7 @@ export default { 40 ], "regular_season_stage_type": [ - 1308 + 1314 ], "relegate_count": [ 40 @@ -34060,25 +34595,25 @@ export default { 40 ], "roster_lock_at": [ - 4493 + 4499 ], "season_number": [ 40 ], "signup_closes_at": [ - 4493 + 4499 ], "signup_opens_at": [ - 4493 + 4499 ], "starts_at": [ - 4493 + 4499 ], "status": [ - 839 + 845 ], "week_best_of": [ - 1817 + 1823 ], "__typename": [ 80 @@ -34086,7 +34621,7 @@ export default { }, "league_seasons_sum_fields": { "created_by_steam_id": [ - 252 + 258 ], "default_best_of": [ 40 @@ -34137,28 +34672,28 @@ export default { "league_seasons_update_column": {}, "league_seasons_updates": { "_append": [ - 2023 + 2029 ], "_delete_at_path": [ - 2027 + 2033 ], "_delete_elem": [ - 2028 + 2034 ], "_delete_key": [ - 2029 + 2035 ], "_inc": [ - 2030 + 2036 ], "_prepend": [ - 2039 + 2045 ], "_set": [ - 2041 + 2047 ], "where": [ - 2025 + 2031 ], "__typename": [ 80 @@ -34316,58 +34851,58 @@ export default { }, "league_team_movements": { "approved_at": [ - 4493 + 4499 ], "approved_by": [ - 3904 + 3910 ], "approved_by_steam_id": [ - 252 + 258 ], "computed_to_division": [ - 1844 + 1850 ], "computed_to_division_id": [ - 4993 + 4999 ], "created_at": [ - 4493 + 4499 ], "e_movement_type": [ - 771 + 777 ], "final_rank": [ 40 ], "final_to_division": [ - 1844 + 1850 ], "final_to_division_id": [ - 4993 + 4999 ], "from_division": [ - 1844 + 1850 ], "from_division_id": [ - 4993 + 4999 ], "id": [ - 4993 + 4999 ], "league_season_id": [ - 4993 + 4999 ], "league_team": [ - 2177 + 2183 ], "league_team_id": [ - 4993 + 4999 ], "season": [ - 2020 + 2026 ], "type": [ - 776 + 782 ], "__typename": [ 80 @@ -34375,10 +34910,10 @@ export default { }, "league_team_movements_aggregate": { "aggregate": [ - 2057 + 2063 ], "nodes": [ - 2053 + 2059 ], "__typename": [ 80 @@ -34386,7 +34921,7 @@ export default { }, "league_team_movements_aggregate_bool_exp": { "count": [ - 2056 + 2062 ], "__typename": [ 80 @@ -34394,13 +34929,13 @@ export default { }, "league_team_movements_aggregate_bool_exp_count": { "arguments": [ - 2074 + 2080 ], "distinct": [ 5 ], "filter": [ - 2062 + 2068 ], "predicate": [ 41 @@ -34411,13 +34946,13 @@ export default { }, "league_team_movements_aggregate_fields": { "avg": [ - 2060 + 2066 ], "count": [ 40, { "columns": [ - 2074, + 2080, "[league_team_movements_select_column!]" ], "distinct": [ @@ -34426,31 +34961,31 @@ export default { } ], "max": [ - 2066 + 2072 ], "min": [ - 2068 + 2074 ], "stddev": [ - 2076 + 2082 ], "stddev_pop": [ - 2078 + 2084 ], "stddev_samp": [ - 2080 + 2086 ], "sum": [ - 2084 + 2090 ], "var_pop": [ - 2088 + 2094 ], "var_samp": [ - 2090 + 2096 ], "variance": [ - 2092 + 2098 ], "__typename": [ 80 @@ -34458,37 +34993,37 @@ export default { }, "league_team_movements_aggregate_order_by": { "avg": [ - 2061 + 2067 ], "count": [ - 2946 + 2952 ], "max": [ - 2067 + 2073 ], "min": [ - 2069 + 2075 ], "stddev": [ - 2077 + 2083 ], "stddev_pop": [ - 2079 + 2085 ], "stddev_samp": [ - 2081 + 2087 ], "sum": [ - 2085 + 2091 ], "var_pop": [ - 2089 + 2095 ], "var_samp": [ - 2091 + 2097 ], "variance": [ - 2093 + 2099 ], "__typename": [ 80 @@ -34496,10 +35031,10 @@ export default { }, "league_team_movements_arr_rel_insert_input": { "data": [ - 2065 + 2071 ], "on_conflict": [ - 2071 + 2077 ], "__typename": [ 80 @@ -34518,10 +35053,10 @@ export default { }, "league_team_movements_avg_order_by": { "approved_by_steam_id": [ - 2946 + 2952 ], "final_rank": [ - 2946 + 2952 ], "__typename": [ 80 @@ -34529,67 +35064,67 @@ export default { }, "league_team_movements_bool_exp": { "_and": [ - 2062 + 2068 ], "_not": [ - 2062 + 2068 ], "_or": [ - 2062 + 2068 ], "approved_at": [ - 4494 + 4500 ], "approved_by": [ - 3908 + 3914 ], "approved_by_steam_id": [ - 254 + 260 ], "computed_to_division": [ - 1848 + 1854 ], "computed_to_division_id": [ - 4995 + 5001 ], "created_at": [ - 4494 + 4500 ], "e_movement_type": [ - 774 + 780 ], "final_rank": [ 41 ], "final_to_division": [ - 1848 + 1854 ], "final_to_division_id": [ - 4995 + 5001 ], "from_division": [ - 1848 + 1854 ], "from_division_id": [ - 4995 + 5001 ], "id": [ - 4995 + 5001 ], "league_season_id": [ - 4995 + 5001 ], "league_team": [ - 2180 + 2186 ], "league_team_id": [ - 4995 + 5001 ], "season": [ - 2025 + 2031 ], "type": [ - 777 + 783 ], "__typename": [ 80 @@ -34598,7 +35133,7 @@ export default { "league_team_movements_constraint": {}, "league_team_movements_inc_input": { "approved_by_steam_id": [ - 252 + 258 ], "final_rank": [ 40 @@ -34609,58 +35144,58 @@ export default { }, "league_team_movements_insert_input": { "approved_at": [ - 4493 + 4499 ], "approved_by": [ - 3915 + 3921 ], "approved_by_steam_id": [ - 252 + 258 ], "computed_to_division": [ - 1855 + 1861 ], "computed_to_division_id": [ - 4993 + 4999 ], "created_at": [ - 4493 + 4499 ], "e_movement_type": [ - 782 + 788 ], "final_rank": [ 40 ], "final_to_division": [ - 1855 + 1861 ], "final_to_division_id": [ - 4993 + 4999 ], "from_division": [ - 1855 + 1861 ], "from_division_id": [ - 4993 + 4999 ], "id": [ - 4993 + 4999 ], "league_season_id": [ - 4993 + 4999 ], "league_team": [ - 2186 + 2192 ], "league_team_id": [ - 4993 + 4999 ], "season": [ - 2035 + 2041 ], "type": [ - 776 + 782 ], "__typename": [ 80 @@ -34668,34 +35203,34 @@ export default { }, "league_team_movements_max_fields": { "approved_at": [ - 4493 + 4499 ], "approved_by_steam_id": [ - 252 + 258 ], "computed_to_division_id": [ - 4993 + 4999 ], "created_at": [ - 4493 + 4499 ], "final_rank": [ 40 ], "final_to_division_id": [ - 4993 + 4999 ], "from_division_id": [ - 4993 + 4999 ], "id": [ - 4993 + 4999 ], "league_season_id": [ - 4993 + 4999 ], "league_team_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -34703,34 +35238,34 @@ export default { }, "league_team_movements_max_order_by": { "approved_at": [ - 2946 + 2952 ], "approved_by_steam_id": [ - 2946 + 2952 ], "computed_to_division_id": [ - 2946 + 2952 ], "created_at": [ - 2946 + 2952 ], "final_rank": [ - 2946 + 2952 ], "final_to_division_id": [ - 2946 + 2952 ], "from_division_id": [ - 2946 + 2952 ], "id": [ - 2946 + 2952 ], "league_season_id": [ - 2946 + 2952 ], "league_team_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -34738,34 +35273,34 @@ export default { }, "league_team_movements_min_fields": { "approved_at": [ - 4493 + 4499 ], "approved_by_steam_id": [ - 252 + 258 ], "computed_to_division_id": [ - 4993 + 4999 ], "created_at": [ - 4493 + 4499 ], "final_rank": [ 40 ], "final_to_division_id": [ - 4993 + 4999 ], "from_division_id": [ - 4993 + 4999 ], "id": [ - 4993 + 4999 ], "league_season_id": [ - 4993 + 4999 ], "league_team_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -34773,34 +35308,34 @@ export default { }, "league_team_movements_min_order_by": { "approved_at": [ - 2946 + 2952 ], "approved_by_steam_id": [ - 2946 + 2952 ], "computed_to_division_id": [ - 2946 + 2952 ], "created_at": [ - 2946 + 2952 ], "final_rank": [ - 2946 + 2952 ], "final_to_division_id": [ - 2946 + 2952 ], "from_division_id": [ - 2946 + 2952 ], "id": [ - 2946 + 2952 ], "league_season_id": [ - 2946 + 2952 ], "league_team_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -34811,7 +35346,7 @@ export default { 40 ], "returning": [ - 2053 + 2059 ], "__typename": [ 80 @@ -34819,13 +35354,13 @@ export default { }, "league_team_movements_on_conflict": { "constraint": [ - 2063 + 2069 ], "update_columns": [ - 2086 + 2092 ], "where": [ - 2062 + 2068 ], "__typename": [ 80 @@ -34833,58 +35368,58 @@ export default { }, "league_team_movements_order_by": { "approved_at": [ - 2946 + 2952 ], "approved_by": [ - 3917 + 3923 ], "approved_by_steam_id": [ - 2946 + 2952 ], "computed_to_division": [ - 1857 + 1863 ], "computed_to_division_id": [ - 2946 + 2952 ], "created_at": [ - 2946 + 2952 ], "e_movement_type": [ - 784 + 790 ], "final_rank": [ - 2946 + 2952 ], "final_to_division": [ - 1857 + 1863 ], "final_to_division_id": [ - 2946 + 2952 ], "from_division": [ - 1857 + 1863 ], "from_division_id": [ - 2946 + 2952 ], "id": [ - 2946 + 2952 ], "league_season_id": [ - 2946 + 2952 ], "league_team": [ - 2188 + 2194 ], "league_team_id": [ - 2946 + 2952 ], "season": [ - 2037 + 2043 ], "type": [ - 2946 + 2952 ], "__typename": [ 80 @@ -34892,7 +35427,7 @@ export default { }, "league_team_movements_pk_columns_input": { "id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -34901,37 +35436,37 @@ export default { "league_team_movements_select_column": {}, "league_team_movements_set_input": { "approved_at": [ - 4493 + 4499 ], "approved_by_steam_id": [ - 252 + 258 ], "computed_to_division_id": [ - 4993 + 4999 ], "created_at": [ - 4493 + 4499 ], "final_rank": [ 40 ], "final_to_division_id": [ - 4993 + 4999 ], "from_division_id": [ - 4993 + 4999 ], "id": [ - 4993 + 4999 ], "league_season_id": [ - 4993 + 4999 ], "league_team_id": [ - 4993 + 4999 ], "type": [ - 776 + 782 ], "__typename": [ 80 @@ -34950,10 +35485,10 @@ export default { }, "league_team_movements_stddev_order_by": { "approved_by_steam_id": [ - 2946 + 2952 ], "final_rank": [ - 2946 + 2952 ], "__typename": [ 80 @@ -34972,10 +35507,10 @@ export default { }, "league_team_movements_stddev_pop_order_by": { "approved_by_steam_id": [ - 2946 + 2952 ], "final_rank": [ - 2946 + 2952 ], "__typename": [ 80 @@ -34994,10 +35529,10 @@ export default { }, "league_team_movements_stddev_samp_order_by": { "approved_by_steam_id": [ - 2946 + 2952 ], "final_rank": [ - 2946 + 2952 ], "__typename": [ 80 @@ -35005,10 +35540,10 @@ export default { }, "league_team_movements_stream_cursor_input": { "initial_value": [ - 2083 + 2089 ], "ordering": [ - 308 + 314 ], "__typename": [ 80 @@ -35016,37 +35551,37 @@ export default { }, "league_team_movements_stream_cursor_value_input": { "approved_at": [ - 4493 + 4499 ], "approved_by_steam_id": [ - 252 + 258 ], "computed_to_division_id": [ - 4993 + 4999 ], "created_at": [ - 4493 + 4499 ], "final_rank": [ 40 ], "final_to_division_id": [ - 4993 + 4999 ], "from_division_id": [ - 4993 + 4999 ], "id": [ - 4993 + 4999 ], "league_season_id": [ - 4993 + 4999 ], "league_team_id": [ - 4993 + 4999 ], "type": [ - 776 + 782 ], "__typename": [ 80 @@ -35054,7 +35589,7 @@ export default { }, "league_team_movements_sum_fields": { "approved_by_steam_id": [ - 252 + 258 ], "final_rank": [ 40 @@ -35065,10 +35600,10 @@ export default { }, "league_team_movements_sum_order_by": { "approved_by_steam_id": [ - 2946 + 2952 ], "final_rank": [ - 2946 + 2952 ], "__typename": [ 80 @@ -35077,13 +35612,13 @@ export default { "league_team_movements_update_column": {}, "league_team_movements_updates": { "_inc": [ - 2064 + 2070 ], "_set": [ - 2075 + 2081 ], "where": [ - 2062 + 2068 ], "__typename": [ 80 @@ -35102,10 +35637,10 @@ export default { }, "league_team_movements_var_pop_order_by": { "approved_by_steam_id": [ - 2946 + 2952 ], "final_rank": [ - 2946 + 2952 ], "__typename": [ 80 @@ -35124,10 +35659,10 @@ export default { }, "league_team_movements_var_samp_order_by": { "approved_by_steam_id": [ - 2946 + 2952 ], "final_rank": [ - 2946 + 2952 ], "__typename": [ 80 @@ -35146,10 +35681,10 @@ export default { }, "league_team_movements_variance_order_by": { "approved_by_steam_id": [ - 2946 + 2952 ], "final_rank": [ - 2946 + 2952 ], "__typename": [ 80 @@ -35157,28 +35692,28 @@ export default { }, "league_team_rosters": { "added_at": [ - 4493 + 4499 ], "league_team_season_id": [ - 4993 + 4999 ], "player": [ - 3904 + 3910 ], "player_steam_id": [ - 252 + 258 ], "removed_at": [ - 4493 + 4499 ], "removed_reason": [ 80 ], "status": [ - 1247 + 1253 ], "team_season": [ - 2135 + 2141 ], "__typename": [ 80 @@ -35186,10 +35721,10 @@ export default { }, "league_team_rosters_aggregate": { "aggregate": [ - 2098 + 2104 ], "nodes": [ - 2094 + 2100 ], "__typename": [ 80 @@ -35197,7 +35732,7 @@ export default { }, "league_team_rosters_aggregate_bool_exp": { "count": [ - 2097 + 2103 ], "__typename": [ 80 @@ -35205,13 +35740,13 @@ export default { }, "league_team_rosters_aggregate_bool_exp_count": { "arguments": [ - 2115 + 2121 ], "distinct": [ 5 ], "filter": [ - 2103 + 2109 ], "predicate": [ 41 @@ -35222,13 +35757,13 @@ export default { }, "league_team_rosters_aggregate_fields": { "avg": [ - 2101 + 2107 ], "count": [ 40, { "columns": [ - 2115, + 2121, "[league_team_rosters_select_column!]" ], "distinct": [ @@ -35237,31 +35772,31 @@ export default { } ], "max": [ - 2107 + 2113 ], "min": [ - 2109 + 2115 ], "stddev": [ - 2117 + 2123 ], "stddev_pop": [ - 2119 + 2125 ], "stddev_samp": [ - 2121 + 2127 ], "sum": [ - 2125 + 2131 ], "var_pop": [ - 2129 + 2135 ], "var_samp": [ - 2131 + 2137 ], "variance": [ - 2133 + 2139 ], "__typename": [ 80 @@ -35269,37 +35804,37 @@ export default { }, "league_team_rosters_aggregate_order_by": { "avg": [ - 2102 + 2108 ], "count": [ - 2946 + 2952 ], "max": [ - 2108 + 2114 ], "min": [ - 2110 + 2116 ], "stddev": [ - 2118 + 2124 ], "stddev_pop": [ - 2120 + 2126 ], "stddev_samp": [ - 2122 + 2128 ], "sum": [ - 2126 + 2132 ], "var_pop": [ - 2130 + 2136 ], "var_samp": [ - 2132 + 2138 ], "variance": [ - 2134 + 2140 ], "__typename": [ 80 @@ -35307,10 +35842,10 @@ export default { }, "league_team_rosters_arr_rel_insert_input": { "data": [ - 2106 + 2112 ], "on_conflict": [ - 2112 + 2118 ], "__typename": [ 80 @@ -35326,7 +35861,7 @@ export default { }, "league_team_rosters_avg_order_by": { "player_steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -35334,37 +35869,37 @@ export default { }, "league_team_rosters_bool_exp": { "_and": [ - 2103 + 2109 ], "_not": [ - 2103 + 2109 ], "_or": [ - 2103 + 2109 ], "added_at": [ - 4494 + 4500 ], "league_team_season_id": [ - 4995 + 5001 ], "player": [ - 3908 + 3914 ], "player_steam_id": [ - 254 + 260 ], "removed_at": [ - 4494 + 4500 ], "removed_reason": [ 82 ], "status": [ - 1248 + 1254 ], "team_season": [ - 2144 + 2150 ], "__typename": [ 80 @@ -35373,7 +35908,7 @@ export default { "league_team_rosters_constraint": {}, "league_team_rosters_inc_input": { "player_steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -35381,28 +35916,28 @@ export default { }, "league_team_rosters_insert_input": { "added_at": [ - 4493 + 4499 ], "league_team_season_id": [ - 4993 + 4999 ], "player": [ - 3915 + 3921 ], "player_steam_id": [ - 252 + 258 ], "removed_at": [ - 4493 + 4499 ], "removed_reason": [ 80 ], "status": [ - 1247 + 1253 ], "team_season": [ - 2153 + 2159 ], "__typename": [ 80 @@ -35410,16 +35945,16 @@ export default { }, "league_team_rosters_max_fields": { "added_at": [ - 4493 + 4499 ], "league_team_season_id": [ - 4993 + 4999 ], "player_steam_id": [ - 252 + 258 ], "removed_at": [ - 4493 + 4499 ], "removed_reason": [ 80 @@ -35430,19 +35965,19 @@ export default { }, "league_team_rosters_max_order_by": { "added_at": [ - 2946 + 2952 ], "league_team_season_id": [ - 2946 + 2952 ], "player_steam_id": [ - 2946 + 2952 ], "removed_at": [ - 2946 + 2952 ], "removed_reason": [ - 2946 + 2952 ], "__typename": [ 80 @@ -35450,16 +35985,16 @@ export default { }, "league_team_rosters_min_fields": { "added_at": [ - 4493 + 4499 ], "league_team_season_id": [ - 4993 + 4999 ], "player_steam_id": [ - 252 + 258 ], "removed_at": [ - 4493 + 4499 ], "removed_reason": [ 80 @@ -35470,19 +36005,19 @@ export default { }, "league_team_rosters_min_order_by": { "added_at": [ - 2946 + 2952 ], "league_team_season_id": [ - 2946 + 2952 ], "player_steam_id": [ - 2946 + 2952 ], "removed_at": [ - 2946 + 2952 ], "removed_reason": [ - 2946 + 2952 ], "__typename": [ 80 @@ -35493,7 +36028,7 @@ export default { 40 ], "returning": [ - 2094 + 2100 ], "__typename": [ 80 @@ -35501,13 +36036,13 @@ export default { }, "league_team_rosters_on_conflict": { "constraint": [ - 2104 + 2110 ], "update_columns": [ - 2127 + 2133 ], "where": [ - 2103 + 2109 ], "__typename": [ 80 @@ -35515,28 +36050,28 @@ export default { }, "league_team_rosters_order_by": { "added_at": [ - 2946 + 2952 ], "league_team_season_id": [ - 2946 + 2952 ], "player": [ - 3917 + 3923 ], "player_steam_id": [ - 2946 + 2952 ], "removed_at": [ - 2946 + 2952 ], "removed_reason": [ - 2946 + 2952 ], "status": [ - 2946 + 2952 ], "team_season": [ - 2155 + 2161 ], "__typename": [ 80 @@ -35544,10 +36079,10 @@ export default { }, "league_team_rosters_pk_columns_input": { "league_team_season_id": [ - 4993 + 4999 ], "player_steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -35556,22 +36091,22 @@ export default { "league_team_rosters_select_column": {}, "league_team_rosters_set_input": { "added_at": [ - 4493 + 4499 ], "league_team_season_id": [ - 4993 + 4999 ], "player_steam_id": [ - 252 + 258 ], "removed_at": [ - 4493 + 4499 ], "removed_reason": [ 80 ], "status": [ - 1247 + 1253 ], "__typename": [ 80 @@ -35587,7 +36122,7 @@ export default { }, "league_team_rosters_stddev_order_by": { "player_steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -35603,7 +36138,7 @@ export default { }, "league_team_rosters_stddev_pop_order_by": { "player_steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -35619,7 +36154,7 @@ export default { }, "league_team_rosters_stddev_samp_order_by": { "player_steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -35627,10 +36162,10 @@ export default { }, "league_team_rosters_stream_cursor_input": { "initial_value": [ - 2124 + 2130 ], "ordering": [ - 308 + 314 ], "__typename": [ 80 @@ -35638,22 +36173,22 @@ export default { }, "league_team_rosters_stream_cursor_value_input": { "added_at": [ - 4493 + 4499 ], "league_team_season_id": [ - 4993 + 4999 ], "player_steam_id": [ - 252 + 258 ], "removed_at": [ - 4493 + 4499 ], "removed_reason": [ 80 ], "status": [ - 1247 + 1253 ], "__typename": [ 80 @@ -35661,7 +36196,7 @@ export default { }, "league_team_rosters_sum_fields": { "player_steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -35669,7 +36204,7 @@ export default { }, "league_team_rosters_sum_order_by": { "player_steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -35678,13 +36213,13 @@ export default { "league_team_rosters_update_column": {}, "league_team_rosters_updates": { "_inc": [ - 2105 + 2111 ], "_set": [ - 2116 + 2122 ], "where": [ - 2103 + 2109 ], "__typename": [ 80 @@ -35700,7 +36235,7 @@ export default { }, "league_team_rosters_var_pop_order_by": { "player_steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -35716,7 +36251,7 @@ export default { }, "league_team_rosters_var_samp_order_by": { "player_steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -35732,7 +36267,7 @@ export default { }, "league_team_rosters_variance_order_by": { "player_steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -35740,55 +36275,55 @@ export default { }, "league_team_seasons": { "assigned_division": [ - 1844 + 1850 ], "assigned_division_id": [ - 4993 + 4999 ], "captain": [ - 3904 + 3910 ], "captain_steam_id": [ - 252 + 258 ], "created_at": [ - 4493 + 4499 ], "decline_reason": [ 80 ], "e_registration_status": [ - 813 + 819 ], "id": [ - 4993 + 4999 ], "league_season_id": [ - 4993 + 4999 ], "league_team": [ - 2177 + 2183 ], "league_team_id": [ - 4993 + 4999 ], "registered_by": [ - 3904 + 3910 ], "registered_by_steam_id": [ - 252 + 258 ], "requested_division": [ - 1844 + 1850 ], "requested_division_id": [ - 4993 + 4999 ], "roster": [ - 2094, + 2100, { "distinct_on": [ - 2115, + 2121, "[league_team_rosters_select_column!]" ], "limit": [ @@ -35798,19 +36333,19 @@ export default { 40 ], "order_by": [ - 2113, + 2119, "[league_team_rosters_order_by!]" ], "where": [ - 2103 + 2109 ] } ], "roster_aggregate": [ - 2095, + 2101, { "distinct_on": [ - 2115, + 2121, "[league_team_rosters_select_column!]" ], "limit": [ @@ -35820,28 +36355,28 @@ export default { 40 ], "order_by": [ - 2113, + 2119, "[league_team_rosters_order_by!]" ], "where": [ - 2103 + 2109 ] } ], "season": [ - 2020 + 2026 ], "seed": [ 40 ], "status": [ - 818 + 824 ], "tournament_team": [ - 4887 + 4893 ], "tournament_team_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -35849,10 +36384,10 @@ export default { }, "league_team_seasons_aggregate": { "aggregate": [ - 2139 + 2145 ], "nodes": [ - 2135 + 2141 ], "__typename": [ 80 @@ -35860,7 +36395,7 @@ export default { }, "league_team_seasons_aggregate_bool_exp": { "count": [ - 2138 + 2144 ], "__typename": [ 80 @@ -35868,13 +36403,13 @@ export default { }, "league_team_seasons_aggregate_bool_exp_count": { "arguments": [ - 2157 + 2163 ], "distinct": [ 5 ], "filter": [ - 2144 + 2150 ], "predicate": [ 41 @@ -35885,13 +36420,13 @@ export default { }, "league_team_seasons_aggregate_fields": { "avg": [ - 2142 + 2148 ], "count": [ 40, { "columns": [ - 2157, + 2163, "[league_team_seasons_select_column!]" ], "distinct": [ @@ -35900,31 +36435,31 @@ export default { } ], "max": [ - 2148 + 2154 ], "min": [ - 2150 + 2156 ], "stddev": [ - 2159 + 2165 ], "stddev_pop": [ - 2161 + 2167 ], "stddev_samp": [ - 2163 + 2169 ], "sum": [ - 2167 + 2173 ], "var_pop": [ - 2171 + 2177 ], "var_samp": [ - 2173 + 2179 ], "variance": [ - 2175 + 2181 ], "__typename": [ 80 @@ -35932,37 +36467,37 @@ export default { }, "league_team_seasons_aggregate_order_by": { "avg": [ - 2143 + 2149 ], "count": [ - 2946 + 2952 ], "max": [ - 2149 + 2155 ], "min": [ - 2151 + 2157 ], "stddev": [ - 2160 + 2166 ], "stddev_pop": [ - 2162 + 2168 ], "stddev_samp": [ - 2164 + 2170 ], "sum": [ - 2168 + 2174 ], "var_pop": [ - 2172 + 2178 ], "var_samp": [ - 2174 + 2180 ], "variance": [ - 2176 + 2182 ], "__typename": [ 80 @@ -35970,10 +36505,10 @@ export default { }, "league_team_seasons_arr_rel_insert_input": { "data": [ - 2147 + 2153 ], "on_conflict": [ - 2154 + 2160 ], "__typename": [ 80 @@ -35995,13 +36530,13 @@ export default { }, "league_team_seasons_avg_order_by": { "captain_steam_id": [ - 2946 + 2952 ], "registered_by_steam_id": [ - 2946 + 2952 ], "seed": [ - 2946 + 2952 ], "__typename": [ 80 @@ -36009,79 +36544,79 @@ export default { }, "league_team_seasons_bool_exp": { "_and": [ - 2144 + 2150 ], "_not": [ - 2144 + 2150 ], "_or": [ - 2144 + 2150 ], "assigned_division": [ - 1848 + 1854 ], "assigned_division_id": [ - 4995 + 5001 ], "captain": [ - 3908 + 3914 ], "captain_steam_id": [ - 254 + 260 ], "created_at": [ - 4494 + 4500 ], "decline_reason": [ 82 ], "e_registration_status": [ - 816 + 822 ], "id": [ - 4995 + 5001 ], "league_season_id": [ - 4995 + 5001 ], "league_team": [ - 2180 + 2186 ], "league_team_id": [ - 4995 + 5001 ], "registered_by": [ - 3908 + 3914 ], "registered_by_steam_id": [ - 254 + 260 ], "requested_division": [ - 1848 + 1854 ], "requested_division_id": [ - 4995 + 5001 ], "roster": [ - 2103 + 2109 ], "roster_aggregate": [ - 2096 + 2102 ], "season": [ - 2025 + 2031 ], "seed": [ 41 ], "status": [ - 819 + 825 ], "tournament_team": [ - 4896 + 4902 ], "tournament_team_id": [ - 4995 + 5001 ], "__typename": [ 80 @@ -36090,10 +36625,10 @@ export default { "league_team_seasons_constraint": {}, "league_team_seasons_inc_input": { "captain_steam_id": [ - 252 + 258 ], "registered_by_steam_id": [ - 252 + 258 ], "seed": [ 40 @@ -36104,67 +36639,67 @@ export default { }, "league_team_seasons_insert_input": { "assigned_division": [ - 1855 + 1861 ], "assigned_division_id": [ - 4993 + 4999 ], "captain": [ - 3915 + 3921 ], "captain_steam_id": [ - 252 + 258 ], "created_at": [ - 4493 + 4499 ], "decline_reason": [ 80 ], "e_registration_status": [ - 824 + 830 ], "id": [ - 4993 + 4999 ], "league_season_id": [ - 4993 + 4999 ], "league_team": [ - 2186 + 2192 ], "league_team_id": [ - 4993 + 4999 ], "registered_by": [ - 3915 + 3921 ], "registered_by_steam_id": [ - 252 + 258 ], "requested_division": [ - 1855 + 1861 ], "requested_division_id": [ - 4993 + 4999 ], "roster": [ - 2100 + 2106 ], "season": [ - 2035 + 2041 ], "seed": [ 40 ], "status": [ - 818 + 824 ], "tournament_team": [ - 4905 + 4911 ], "tournament_team_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -36172,37 +36707,37 @@ export default { }, "league_team_seasons_max_fields": { "assigned_division_id": [ - 4993 + 4999 ], "captain_steam_id": [ - 252 + 258 ], "created_at": [ - 4493 + 4499 ], "decline_reason": [ 80 ], "id": [ - 4993 + 4999 ], "league_season_id": [ - 4993 + 4999 ], "league_team_id": [ - 4993 + 4999 ], "registered_by_steam_id": [ - 252 + 258 ], "requested_division_id": [ - 4993 + 4999 ], "seed": [ 40 ], "tournament_team_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -36210,37 +36745,37 @@ export default { }, "league_team_seasons_max_order_by": { "assigned_division_id": [ - 2946 + 2952 ], "captain_steam_id": [ - 2946 + 2952 ], "created_at": [ - 2946 + 2952 ], "decline_reason": [ - 2946 + 2952 ], "id": [ - 2946 + 2952 ], "league_season_id": [ - 2946 + 2952 ], "league_team_id": [ - 2946 + 2952 ], "registered_by_steam_id": [ - 2946 + 2952 ], "requested_division_id": [ - 2946 + 2952 ], "seed": [ - 2946 + 2952 ], "tournament_team_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -36248,37 +36783,37 @@ export default { }, "league_team_seasons_min_fields": { "assigned_division_id": [ - 4993 + 4999 ], "captain_steam_id": [ - 252 + 258 ], "created_at": [ - 4493 + 4499 ], "decline_reason": [ 80 ], "id": [ - 4993 + 4999 ], "league_season_id": [ - 4993 + 4999 ], "league_team_id": [ - 4993 + 4999 ], "registered_by_steam_id": [ - 252 + 258 ], "requested_division_id": [ - 4993 + 4999 ], "seed": [ 40 ], "tournament_team_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -36286,37 +36821,37 @@ export default { }, "league_team_seasons_min_order_by": { "assigned_division_id": [ - 2946 + 2952 ], "captain_steam_id": [ - 2946 + 2952 ], "created_at": [ - 2946 + 2952 ], "decline_reason": [ - 2946 + 2952 ], "id": [ - 2946 + 2952 ], "league_season_id": [ - 2946 + 2952 ], "league_team_id": [ - 2946 + 2952 ], "registered_by_steam_id": [ - 2946 + 2952 ], "requested_division_id": [ - 2946 + 2952 ], "seed": [ - 2946 + 2952 ], "tournament_team_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -36327,7 +36862,7 @@ export default { 40 ], "returning": [ - 2135 + 2141 ], "__typename": [ 80 @@ -36335,10 +36870,10 @@ export default { }, "league_team_seasons_obj_rel_insert_input": { "data": [ - 2147 + 2153 ], "on_conflict": [ - 2154 + 2160 ], "__typename": [ 80 @@ -36346,13 +36881,13 @@ export default { }, "league_team_seasons_on_conflict": { "constraint": [ - 2145 + 2151 ], "update_columns": [ - 2169 + 2175 ], "where": [ - 2144 + 2150 ], "__typename": [ 80 @@ -36360,67 +36895,67 @@ export default { }, "league_team_seasons_order_by": { "assigned_division": [ - 1857 + 1863 ], "assigned_division_id": [ - 2946 + 2952 ], "captain": [ - 3917 + 3923 ], "captain_steam_id": [ - 2946 + 2952 ], "created_at": [ - 2946 + 2952 ], "decline_reason": [ - 2946 + 2952 ], "e_registration_status": [ - 826 + 832 ], "id": [ - 2946 + 2952 ], "league_season_id": [ - 2946 + 2952 ], "league_team": [ - 2188 + 2194 ], "league_team_id": [ - 2946 + 2952 ], "registered_by": [ - 3917 + 3923 ], "registered_by_steam_id": [ - 2946 + 2952 ], "requested_division": [ - 1857 + 1863 ], "requested_division_id": [ - 2946 + 2952 ], "roster_aggregate": [ - 2099 + 2105 ], "season": [ - 2037 + 2043 ], "seed": [ - 2946 + 2952 ], "status": [ - 2946 + 2952 ], "tournament_team": [ - 4907 + 4913 ], "tournament_team_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -36428,7 +36963,7 @@ export default { }, "league_team_seasons_pk_columns_input": { "id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -36437,40 +36972,40 @@ export default { "league_team_seasons_select_column": {}, "league_team_seasons_set_input": { "assigned_division_id": [ - 4993 + 4999 ], "captain_steam_id": [ - 252 + 258 ], "created_at": [ - 4493 + 4499 ], "decline_reason": [ 80 ], "id": [ - 4993 + 4999 ], "league_season_id": [ - 4993 + 4999 ], "league_team_id": [ - 4993 + 4999 ], "registered_by_steam_id": [ - 252 + 258 ], "requested_division_id": [ - 4993 + 4999 ], "seed": [ 40 ], "status": [ - 818 + 824 ], "tournament_team_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -36492,13 +37027,13 @@ export default { }, "league_team_seasons_stddev_order_by": { "captain_steam_id": [ - 2946 + 2952 ], "registered_by_steam_id": [ - 2946 + 2952 ], "seed": [ - 2946 + 2952 ], "__typename": [ 80 @@ -36520,13 +37055,13 @@ export default { }, "league_team_seasons_stddev_pop_order_by": { "captain_steam_id": [ - 2946 + 2952 ], "registered_by_steam_id": [ - 2946 + 2952 ], "seed": [ - 2946 + 2952 ], "__typename": [ 80 @@ -36548,13 +37083,13 @@ export default { }, "league_team_seasons_stddev_samp_order_by": { "captain_steam_id": [ - 2946 + 2952 ], "registered_by_steam_id": [ - 2946 + 2952 ], "seed": [ - 2946 + 2952 ], "__typename": [ 80 @@ -36562,10 +37097,10 @@ export default { }, "league_team_seasons_stream_cursor_input": { "initial_value": [ - 2166 + 2172 ], "ordering": [ - 308 + 314 ], "__typename": [ 80 @@ -36573,40 +37108,40 @@ export default { }, "league_team_seasons_stream_cursor_value_input": { "assigned_division_id": [ - 4993 + 4999 ], "captain_steam_id": [ - 252 + 258 ], "created_at": [ - 4493 + 4499 ], "decline_reason": [ 80 ], "id": [ - 4993 + 4999 ], "league_season_id": [ - 4993 + 4999 ], "league_team_id": [ - 4993 + 4999 ], "registered_by_steam_id": [ - 252 + 258 ], "requested_division_id": [ - 4993 + 4999 ], "seed": [ 40 ], "status": [ - 818 + 824 ], "tournament_team_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -36614,10 +37149,10 @@ export default { }, "league_team_seasons_sum_fields": { "captain_steam_id": [ - 252 + 258 ], "registered_by_steam_id": [ - 252 + 258 ], "seed": [ 40 @@ -36628,13 +37163,13 @@ export default { }, "league_team_seasons_sum_order_by": { "captain_steam_id": [ - 2946 + 2952 ], "registered_by_steam_id": [ - 2946 + 2952 ], "seed": [ - 2946 + 2952 ], "__typename": [ 80 @@ -36643,13 +37178,13 @@ export default { "league_team_seasons_update_column": {}, "league_team_seasons_updates": { "_inc": [ - 2146 + 2152 ], "_set": [ - 2158 + 2164 ], "where": [ - 2144 + 2150 ], "__typename": [ 80 @@ -36671,13 +37206,13 @@ export default { }, "league_team_seasons_var_pop_order_by": { "captain_steam_id": [ - 2946 + 2952 ], "registered_by_steam_id": [ - 2946 + 2952 ], "seed": [ - 2946 + 2952 ], "__typename": [ 80 @@ -36699,13 +37234,13 @@ export default { }, "league_team_seasons_var_samp_order_by": { "captain_steam_id": [ - 2946 + 2952 ], "registered_by_steam_id": [ - 2946 + 2952 ], "seed": [ - 2946 + 2952 ], "__typename": [ 80 @@ -36727,13 +37262,13 @@ export default { }, "league_team_seasons_variance_order_by": { "captain_steam_id": [ - 2946 + 2952 ], "registered_by_steam_id": [ - 2946 + 2952 ], "seed": [ - 2946 + 2952 ], "__typename": [ 80 @@ -36741,16 +37276,16 @@ export default { }, "league_teams": { "created_at": [ - 4493 + 4499 ], "id": [ - 4993 + 4999 ], "movements": [ - 2053, + 2059, { "distinct_on": [ - 2074, + 2080, "[league_team_movements_select_column!]" ], "limit": [ @@ -36760,19 +37295,19 @@ export default { 40 ], "order_by": [ - 2072, + 2078, "[league_team_movements_order_by!]" ], "where": [ - 2062 + 2068 ] } ], "movements_aggregate": [ - 2054, + 2060, { "distinct_on": [ - 2074, + 2080, "[league_team_movements_select_column!]" ], "limit": [ @@ -36782,25 +37317,25 @@ export default { 40 ], "order_by": [ - 2072, + 2078, "[league_team_movements_order_by!]" ], "where": [ - 2062 + 2068 ] } ], "team": [ - 4446 + 4452 ], "team_id": [ - 4993 + 4999 ], "team_seasons": [ - 2135, + 2141, { "distinct_on": [ - 2157, + 2163, "[league_team_seasons_select_column!]" ], "limit": [ @@ -36810,19 +37345,19 @@ export default { 40 ], "order_by": [ - 2155, + 2161, "[league_team_seasons_order_by!]" ], "where": [ - 2144 + 2150 ] } ], "team_seasons_aggregate": [ - 2136, + 2142, { "distinct_on": [ - 2157, + 2163, "[league_team_seasons_select_column!]" ], "limit": [ @@ -36832,11 +37367,11 @@ export default { 40 ], "order_by": [ - 2155, + 2161, "[league_team_seasons_order_by!]" ], "where": [ - 2144 + 2150 ] } ], @@ -36846,10 +37381,10 @@ export default { }, "league_teams_aggregate": { "aggregate": [ - 2179 + 2185 ], "nodes": [ - 2177 + 2183 ], "__typename": [ 80 @@ -36860,7 +37395,7 @@ export default { 40, { "columns": [ - 2190, + 2196, "[league_teams_select_column!]" ], "distinct": [ @@ -36869,10 +37404,10 @@ export default { } ], "max": [ - 2183 + 2189 ], "min": [ - 2184 + 2190 ], "__typename": [ 80 @@ -36880,37 +37415,37 @@ export default { }, "league_teams_bool_exp": { "_and": [ - 2180 + 2186 ], "_not": [ - 2180 + 2186 ], "_or": [ - 2180 + 2186 ], "created_at": [ - 4494 + 4500 ], "id": [ - 4995 + 5001 ], "movements": [ - 2062 + 2068 ], "movements_aggregate": [ - 2055 + 2061 ], "team": [ - 4457 + 4463 ], "team_id": [ - 4995 + 5001 ], "team_seasons": [ - 2144 + 2150 ], "team_seasons_aggregate": [ - 2137 + 2143 ], "__typename": [ 80 @@ -36919,22 +37454,22 @@ export default { "league_teams_constraint": {}, "league_teams_insert_input": { "created_at": [ - 4493 + 4499 ], "id": [ - 4993 + 4999 ], "movements": [ - 2059 + 2065 ], "team": [ - 4466 + 4472 ], "team_id": [ - 4993 + 4999 ], "team_seasons": [ - 2141 + 2147 ], "__typename": [ 80 @@ -36942,13 +37477,13 @@ export default { }, "league_teams_max_fields": { "created_at": [ - 4493 + 4499 ], "id": [ - 4993 + 4999 ], "team_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -36956,13 +37491,13 @@ export default { }, "league_teams_min_fields": { "created_at": [ - 4493 + 4499 ], "id": [ - 4993 + 4999 ], "team_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -36973,7 +37508,7 @@ export default { 40 ], "returning": [ - 2177 + 2183 ], "__typename": [ 80 @@ -36981,10 +37516,10 @@ export default { }, "league_teams_obj_rel_insert_input": { "data": [ - 2182 + 2188 ], "on_conflict": [ - 2187 + 2193 ], "__typename": [ 80 @@ -36992,13 +37527,13 @@ export default { }, "league_teams_on_conflict": { "constraint": [ - 2181 + 2187 ], "update_columns": [ - 2194 + 2200 ], "where": [ - 2180 + 2186 ], "__typename": [ 80 @@ -37006,22 +37541,22 @@ export default { }, "league_teams_order_by": { "created_at": [ - 2946 + 2952 ], "id": [ - 2946 + 2952 ], "movements_aggregate": [ - 2058 + 2064 ], "team": [ - 4468 + 4474 ], "team_id": [ - 2946 + 2952 ], "team_seasons_aggregate": [ - 2140 + 2146 ], "__typename": [ 80 @@ -37029,7 +37564,7 @@ export default { }, "league_teams_pk_columns_input": { "id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -37038,13 +37573,13 @@ export default { "league_teams_select_column": {}, "league_teams_set_input": { "created_at": [ - 4493 + 4499 ], "id": [ - 4993 + 4999 ], "team_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -37052,10 +37587,10 @@ export default { }, "league_teams_stream_cursor_input": { "initial_value": [ - 2193 + 2199 ], "ordering": [ - 308 + 314 ], "__typename": [ 80 @@ -37063,13 +37598,13 @@ export default { }, "league_teams_stream_cursor_value_input": { "created_at": [ - 4493 + 4499 ], "id": [ - 4993 + 4999 ], "team_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -37078,10 +37613,10 @@ export default { "league_teams_update_column": {}, "league_teams_updates": { "_set": [ - 2191 + 2197 ], "where": [ - 2180 + 2186 ], "__typename": [ 80 @@ -37089,22 +37624,22 @@ export default { }, "lobbies": { "access": [ - 860 + 866 ], "created_at": [ - 4493 + 4499 ], "e_lobby_access": [ - 855 + 861 ], "id": [ - 4993 + 4999 ], "players": [ - 2215, + 2221, { "distinct_on": [ - 2238, + 2244, "[lobby_players_select_column!]" ], "limit": [ @@ -37114,19 +37649,19 @@ export default { 40 ], "order_by": [ - 2236, + 2242, "[lobby_players_order_by!]" ], "where": [ - 2226 + 2232 ] } ], "players_aggregate": [ - 2216, + 2222, { "distinct_on": [ - 2238, + 2244, "[lobby_players_select_column!]" ], "limit": [ @@ -37136,11 +37671,11 @@ export default { 40 ], "order_by": [ - 2236, + 2242, "[lobby_players_order_by!]" ], "where": [ - 2226 + 2232 ] } ], @@ -37150,10 +37685,10 @@ export default { }, "lobbies_aggregate": { "aggregate": [ - 2198 + 2204 ], "nodes": [ - 2196 + 2202 ], "__typename": [ 80 @@ -37164,7 +37699,7 @@ export default { 40, { "columns": [ - 2209, + 2215, "[lobbies_select_column!]" ], "distinct": [ @@ -37173,10 +37708,10 @@ export default { } ], "max": [ - 2202 + 2208 ], "min": [ - 2203 + 2209 ], "__typename": [ 80 @@ -37184,31 +37719,31 @@ export default { }, "lobbies_bool_exp": { "_and": [ - 2199 + 2205 ], "_not": [ - 2199 + 2205 ], "_or": [ - 2199 + 2205 ], "access": [ - 861 + 867 ], "created_at": [ - 4494 + 4500 ], "e_lobby_access": [ - 858 + 864 ], "id": [ - 4995 + 5001 ], "players": [ - 2226 + 2232 ], "players_aggregate": [ - 2217 + 2223 ], "__typename": [ 80 @@ -37217,19 +37752,19 @@ export default { "lobbies_constraint": {}, "lobbies_insert_input": { "access": [ - 860 + 866 ], "created_at": [ - 4493 + 4499 ], "e_lobby_access": [ - 866 + 872 ], "id": [ - 4993 + 4999 ], "players": [ - 2223 + 2229 ], "__typename": [ 80 @@ -37237,10 +37772,10 @@ export default { }, "lobbies_max_fields": { "created_at": [ - 4493 + 4499 ], "id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -37248,10 +37783,10 @@ export default { }, "lobbies_min_fields": { "created_at": [ - 4493 + 4499 ], "id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -37262,7 +37797,7 @@ export default { 40 ], "returning": [ - 2196 + 2202 ], "__typename": [ 80 @@ -37270,10 +37805,10 @@ export default { }, "lobbies_obj_rel_insert_input": { "data": [ - 2201 + 2207 ], "on_conflict": [ - 2206 + 2212 ], "__typename": [ 80 @@ -37281,13 +37816,13 @@ export default { }, "lobbies_on_conflict": { "constraint": [ - 2200 + 2206 ], "update_columns": [ - 2213 + 2219 ], "where": [ - 2199 + 2205 ], "__typename": [ 80 @@ -37295,19 +37830,19 @@ export default { }, "lobbies_order_by": { "access": [ - 2946 + 2952 ], "created_at": [ - 2946 + 2952 ], "e_lobby_access": [ - 868 + 874 ], "id": [ - 2946 + 2952 ], "players_aggregate": [ - 2222 + 2228 ], "__typename": [ 80 @@ -37315,7 +37850,7 @@ export default { }, "lobbies_pk_columns_input": { "id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -37324,13 +37859,13 @@ export default { "lobbies_select_column": {}, "lobbies_set_input": { "access": [ - 860 + 866 ], "created_at": [ - 4493 + 4499 ], "id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -37338,10 +37873,10 @@ export default { }, "lobbies_stream_cursor_input": { "initial_value": [ - 2212 + 2218 ], "ordering": [ - 308 + 314 ], "__typename": [ 80 @@ -37349,13 +37884,13 @@ export default { }, "lobbies_stream_cursor_value_input": { "access": [ - 860 + 866 ], "created_at": [ - 4493 + 4499 ], "id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -37364,10 +37899,10 @@ export default { "lobbies_update_column": {}, "lobbies_updates": { "_set": [ - 2210 + 2216 ], "where": [ - 2199 + 2205 ], "__typename": [ 80 @@ -37378,22 +37913,22 @@ export default { 5 ], "invited_by_steam_id": [ - 252 + 258 ], "lobby": [ - 2196 + 2202 ], "lobby_id": [ - 4993 + 4999 ], "player": [ - 3904 + 3910 ], "status": [ - 881 + 887 ], "steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -37401,10 +37936,10 @@ export default { }, "lobby_players_aggregate": { "aggregate": [ - 2221 + 2227 ], "nodes": [ - 2215 + 2221 ], "__typename": [ 80 @@ -37412,13 +37947,13 @@ export default { }, "lobby_players_aggregate_bool_exp": { "bool_and": [ - 2218 + 2224 ], "bool_or": [ - 2219 + 2225 ], "count": [ - 2220 + 2226 ], "__typename": [ 80 @@ -37426,13 +37961,13 @@ export default { }, "lobby_players_aggregate_bool_exp_bool_and": { "arguments": [ - 2239 + 2245 ], "distinct": [ 5 ], "filter": [ - 2226 + 2232 ], "predicate": [ 6 @@ -37443,13 +37978,13 @@ export default { }, "lobby_players_aggregate_bool_exp_bool_or": { "arguments": [ - 2240 + 2246 ], "distinct": [ 5 ], "filter": [ - 2226 + 2232 ], "predicate": [ 6 @@ -37460,13 +37995,13 @@ export default { }, "lobby_players_aggregate_bool_exp_count": { "arguments": [ - 2238 + 2244 ], "distinct": [ 5 ], "filter": [ - 2226 + 2232 ], "predicate": [ 41 @@ -37477,13 +38012,13 @@ export default { }, "lobby_players_aggregate_fields": { "avg": [ - 2224 + 2230 ], "count": [ 40, { "columns": [ - 2238, + 2244, "[lobby_players_select_column!]" ], "distinct": [ @@ -37492,31 +38027,31 @@ export default { } ], "max": [ - 2230 + 2236 ], "min": [ - 2232 + 2238 ], "stddev": [ - 2242 + 2248 ], "stddev_pop": [ - 2244 + 2250 ], "stddev_samp": [ - 2246 + 2252 ], "sum": [ - 2250 + 2256 ], "var_pop": [ - 2254 + 2260 ], "var_samp": [ - 2256 + 2262 ], "variance": [ - 2258 + 2264 ], "__typename": [ 80 @@ -37524,37 +38059,37 @@ export default { }, "lobby_players_aggregate_order_by": { "avg": [ - 2225 + 2231 ], "count": [ - 2946 + 2952 ], "max": [ - 2231 + 2237 ], "min": [ - 2233 + 2239 ], "stddev": [ - 2243 + 2249 ], "stddev_pop": [ - 2245 + 2251 ], "stddev_samp": [ - 2247 + 2253 ], "sum": [ - 2251 + 2257 ], "var_pop": [ - 2255 + 2261 ], "var_samp": [ - 2257 + 2263 ], "variance": [ - 2259 + 2265 ], "__typename": [ 80 @@ -37562,10 +38097,10 @@ export default { }, "lobby_players_arr_rel_insert_input": { "data": [ - 2229 + 2235 ], "on_conflict": [ - 2235 + 2241 ], "__typename": [ 80 @@ -37584,10 +38119,10 @@ export default { }, "lobby_players_avg_order_by": { "invited_by_steam_id": [ - 2946 + 2952 ], "steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -37595,34 +38130,34 @@ export default { }, "lobby_players_bool_exp": { "_and": [ - 2226 + 2232 ], "_not": [ - 2226 + 2232 ], "_or": [ - 2226 + 2232 ], "captain": [ 6 ], "invited_by_steam_id": [ - 254 + 260 ], "lobby": [ - 2199 + 2205 ], "lobby_id": [ - 4995 + 5001 ], "player": [ - 3908 + 3914 ], "status": [ - 882 + 888 ], "steam_id": [ - 254 + 260 ], "__typename": [ 80 @@ -37631,10 +38166,10 @@ export default { "lobby_players_constraint": {}, "lobby_players_inc_input": { "invited_by_steam_id": [ - 252 + 258 ], "steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -37645,22 +38180,22 @@ export default { 5 ], "invited_by_steam_id": [ - 252 + 258 ], "lobby": [ - 2205 + 2211 ], "lobby_id": [ - 4993 + 4999 ], "player": [ - 3915 + 3921 ], "status": [ - 881 + 887 ], "steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -37668,13 +38203,13 @@ export default { }, "lobby_players_max_fields": { "invited_by_steam_id": [ - 252 + 258 ], "lobby_id": [ - 4993 + 4999 ], "steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -37682,13 +38217,13 @@ export default { }, "lobby_players_max_order_by": { "invited_by_steam_id": [ - 2946 + 2952 ], "lobby_id": [ - 2946 + 2952 ], "steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -37696,13 +38231,13 @@ export default { }, "lobby_players_min_fields": { "invited_by_steam_id": [ - 252 + 258 ], "lobby_id": [ - 4993 + 4999 ], "steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -37710,13 +38245,13 @@ export default { }, "lobby_players_min_order_by": { "invited_by_steam_id": [ - 2946 + 2952 ], "lobby_id": [ - 2946 + 2952 ], "steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -37727,7 +38262,7 @@ export default { 40 ], "returning": [ - 2215 + 2221 ], "__typename": [ 80 @@ -37735,13 +38270,13 @@ export default { }, "lobby_players_on_conflict": { "constraint": [ - 2227 + 2233 ], "update_columns": [ - 2252 + 2258 ], "where": [ - 2226 + 2232 ], "__typename": [ 80 @@ -37749,25 +38284,25 @@ export default { }, "lobby_players_order_by": { "captain": [ - 2946 + 2952 ], "invited_by_steam_id": [ - 2946 + 2952 ], "lobby": [ - 2207 + 2213 ], "lobby_id": [ - 2946 + 2952 ], "player": [ - 3917 + 3923 ], "status": [ - 2946 + 2952 ], "steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -37775,10 +38310,10 @@ export default { }, "lobby_players_pk_columns_input": { "lobby_id": [ - 4993 + 4999 ], "steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -37792,16 +38327,16 @@ export default { 5 ], "invited_by_steam_id": [ - 252 + 258 ], "lobby_id": [ - 4993 + 4999 ], "status": [ - 881 + 887 ], "steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -37820,10 +38355,10 @@ export default { }, "lobby_players_stddev_order_by": { "invited_by_steam_id": [ - 2946 + 2952 ], "steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -37842,10 +38377,10 @@ export default { }, "lobby_players_stddev_pop_order_by": { "invited_by_steam_id": [ - 2946 + 2952 ], "steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -37864,10 +38399,10 @@ export default { }, "lobby_players_stddev_samp_order_by": { "invited_by_steam_id": [ - 2946 + 2952 ], "steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -37875,10 +38410,10 @@ export default { }, "lobby_players_stream_cursor_input": { "initial_value": [ - 2249 + 2255 ], "ordering": [ - 308 + 314 ], "__typename": [ 80 @@ -37889,16 +38424,16 @@ export default { 5 ], "invited_by_steam_id": [ - 252 + 258 ], "lobby_id": [ - 4993 + 4999 ], "status": [ - 881 + 887 ], "steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -37906,10 +38441,10 @@ export default { }, "lobby_players_sum_fields": { "invited_by_steam_id": [ - 252 + 258 ], "steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -37917,10 +38452,10 @@ export default { }, "lobby_players_sum_order_by": { "invited_by_steam_id": [ - 2946 + 2952 ], "steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -37929,13 +38464,13 @@ export default { "lobby_players_update_column": {}, "lobby_players_updates": { "_inc": [ - 2228 + 2234 ], "_set": [ - 2241 + 2247 ], "where": [ - 2226 + 2232 ], "__typename": [ 80 @@ -37954,10 +38489,10 @@ export default { }, "lobby_players_var_pop_order_by": { "invited_by_steam_id": [ - 2946 + 2952 ], "steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -37976,10 +38511,10 @@ export default { }, "lobby_players_var_samp_order_by": { "invited_by_steam_id": [ - 2946 + 2952 ], "steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -37998,10 +38533,10 @@ export default { }, "lobby_players_variance_order_by": { "invited_by_steam_id": [ - 2946 + 2952 ], "steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -38009,19 +38544,19 @@ export default { }, "map_pools": { "e_type": [ - 896 + 902 ], "enabled": [ 5 ], "id": [ - 4993 + 4999 ], "maps": [ - 5635, + 5641, { "distinct_on": [ - 5652, + 5658, "[v_pool_maps_select_column!]" ], "limit": [ @@ -38031,19 +38566,19 @@ export default { 40 ], "order_by": [ - 5651, + 5657, "[v_pool_maps_order_by!]" ], "where": [ - 5644 + 5650 ] } ], "maps_aggregate": [ - 5636, + 5642, { "distinct_on": [ - 5652, + 5658, "[v_pool_maps_select_column!]" ], "limit": [ @@ -38053,11 +38588,11 @@ export default { 40 ], "order_by": [ - 5651, + 5657, "[v_pool_maps_order_by!]" ], "where": [ - 5644 + 5650 ] } ], @@ -38065,7 +38600,7 @@ export default { 5 ], "type": [ - 901 + 907 ], "__typename": [ 80 @@ -38073,10 +38608,10 @@ export default { }, "map_pools_aggregate": { "aggregate": [ - 2262 + 2268 ], "nodes": [ - 2260 + 2266 ], "__typename": [ 80 @@ -38087,7 +38622,7 @@ export default { 40, { "columns": [ - 2273, + 2279, "[map_pools_select_column!]" ], "distinct": [ @@ -38096,10 +38631,10 @@ export default { } ], "max": [ - 2266 + 2272 ], "min": [ - 2267 + 2273 ], "__typename": [ 80 @@ -38107,34 +38642,34 @@ export default { }, "map_pools_bool_exp": { "_and": [ - 2263 + 2269 ], "_not": [ - 2263 + 2269 ], "_or": [ - 2263 + 2269 ], "e_type": [ - 899 + 905 ], "enabled": [ 6 ], "id": [ - 4995 + 5001 ], "maps": [ - 5644 + 5650 ], "maps_aggregate": [ - 5637 + 5643 ], "seed": [ 6 ], "type": [ - 902 + 908 ], "__typename": [ 80 @@ -38143,22 +38678,22 @@ export default { "map_pools_constraint": {}, "map_pools_insert_input": { "e_type": [ - 907 + 913 ], "enabled": [ 5 ], "id": [ - 4993 + 4999 ], "maps": [ - 5643 + 5649 ], "seed": [ 5 ], "type": [ - 901 + 907 ], "__typename": [ 80 @@ -38166,7 +38701,7 @@ export default { }, "map_pools_max_fields": { "id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -38174,7 +38709,7 @@ export default { }, "map_pools_min_fields": { "id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -38185,7 +38720,7 @@ export default { 40 ], "returning": [ - 2260 + 2266 ], "__typename": [ 80 @@ -38193,10 +38728,10 @@ export default { }, "map_pools_obj_rel_insert_input": { "data": [ - 2265 + 2271 ], "on_conflict": [ - 2270 + 2276 ], "__typename": [ 80 @@ -38204,13 +38739,13 @@ export default { }, "map_pools_on_conflict": { "constraint": [ - 2264 + 2270 ], "update_columns": [ - 2277 + 2283 ], "where": [ - 2263 + 2269 ], "__typename": [ 80 @@ -38218,22 +38753,22 @@ export default { }, "map_pools_order_by": { "e_type": [ - 909 + 915 ], "enabled": [ - 2946 + 2952 ], "id": [ - 2946 + 2952 ], "maps_aggregate": [ - 5642 + 5648 ], "seed": [ - 2946 + 2952 ], "type": [ - 2946 + 2952 ], "__typename": [ 80 @@ -38241,7 +38776,7 @@ export default { }, "map_pools_pk_columns_input": { "id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -38253,13 +38788,13 @@ export default { 5 ], "id": [ - 4993 + 4999 ], "seed": [ 5 ], "type": [ - 901 + 907 ], "__typename": [ 80 @@ -38267,10 +38802,10 @@ export default { }, "map_pools_stream_cursor_input": { "initial_value": [ - 2276 + 2282 ], "ordering": [ - 308 + 314 ], "__typename": [ 80 @@ -38281,13 +38816,13 @@ export default { 5 ], "id": [ - 4993 + 4999 ], "seed": [ 5 ], "type": [ - 901 + 907 ], "__typename": [ 80 @@ -38296,10 +38831,10 @@ export default { "map_pools_update_column": {}, "map_pools_updates": { "_set": [ - 2274 + 2280 ], "where": [ - 2263 + 2269 ], "__typename": [ 80 @@ -38310,22 +38845,22 @@ export default { 5 ], "e_match_type": [ - 999 + 1005 ], "enabled": [ 5 ], "id": [ - 4993 + 4999 ], "label": [ 80 ], "match_maps": [ - 2599, + 2605, { "distinct_on": [ - 2621, + 2627, "[match_maps_select_column!]" ], "limit": [ @@ -38335,19 +38870,19 @@ export default { 40 ], "order_by": [ - 2619, + 2625, "[match_maps_order_by!]" ], "where": [ - 2608 + 2614 ] } ], "match_maps_aggregate": [ - 2600, + 2606, { "distinct_on": [ - 2621, + 2627, "[match_maps_select_column!]" ], "limit": [ @@ -38357,19 +38892,19 @@ export default { 40 ], "order_by": [ - 2619, + 2625, "[match_maps_order_by!]" ], "where": [ - 2608 + 2614 ] } ], "match_veto_picks": [ - 2575, + 2581, { "distinct_on": [ - 2593, + 2599, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -38379,19 +38914,19 @@ export default { 40 ], "order_by": [ - 2591, + 2597, "[match_map_veto_picks_order_by!]" ], "where": [ - 2582 + 2588 ] } ], "match_veto_picks_aggregate": [ - 2576, + 2582, { "distinct_on": [ - 2593, + 2599, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -38401,11 +38936,11 @@ export default { 40 ], "order_by": [ - 2591, + 2597, "[match_map_veto_picks_order_by!]" ], "where": [ - 2582 + 2588 ] } ], @@ -38419,7 +38954,7 @@ export default { 80 ], "type": [ - 1004 + 1010 ], "workshop_map_id": [ 80 @@ -38430,10 +38965,10 @@ export default { }, "maps_aggregate": { "aggregate": [ - 2285 + 2291 ], "nodes": [ - 2279 + 2285 ], "__typename": [ 80 @@ -38441,13 +38976,13 @@ export default { }, "maps_aggregate_bool_exp": { "bool_and": [ - 2282 + 2288 ], "bool_or": [ - 2283 + 2289 ], "count": [ - 2284 + 2290 ], "__typename": [ 80 @@ -38455,13 +38990,13 @@ export default { }, "maps_aggregate_bool_exp_bool_and": { "arguments": [ - 2301 + 2307 ], "distinct": [ 5 ], "filter": [ - 2288 + 2294 ], "predicate": [ 6 @@ -38472,13 +39007,13 @@ export default { }, "maps_aggregate_bool_exp_bool_or": { "arguments": [ - 2302 + 2308 ], "distinct": [ 5 ], "filter": [ - 2288 + 2294 ], "predicate": [ 6 @@ -38489,13 +39024,13 @@ export default { }, "maps_aggregate_bool_exp_count": { "arguments": [ - 2300 + 2306 ], "distinct": [ 5 ], "filter": [ - 2288 + 2294 ], "predicate": [ 41 @@ -38509,7 +39044,7 @@ export default { 40, { "columns": [ - 2300, + 2306, "[maps_select_column!]" ], "distinct": [ @@ -38518,10 +39053,10 @@ export default { } ], "max": [ - 2291 + 2297 ], "min": [ - 2293 + 2299 ], "__typename": [ 80 @@ -38529,13 +39064,13 @@ export default { }, "maps_aggregate_order_by": { "count": [ - 2946 + 2952 ], "max": [ - 2292 + 2298 ], "min": [ - 2294 + 2300 ], "__typename": [ 80 @@ -38543,10 +39078,10 @@ export default { }, "maps_arr_rel_insert_input": { "data": [ - 2290 + 2296 ], "on_conflict": [ - 2297 + 2303 ], "__typename": [ 80 @@ -38554,40 +39089,40 @@ export default { }, "maps_bool_exp": { "_and": [ - 2288 + 2294 ], "_not": [ - 2288 + 2294 ], "_or": [ - 2288 + 2294 ], "active_pool": [ 6 ], "e_match_type": [ - 1002 + 1008 ], "enabled": [ 6 ], "id": [ - 4995 + 5001 ], "label": [ 82 ], "match_maps": [ - 2608 + 2614 ], "match_maps_aggregate": [ - 2601 + 2607 ], "match_veto_picks": [ - 2582 + 2588 ], "match_veto_picks_aggregate": [ - 2577 + 2583 ], "name": [ 82 @@ -38599,7 +39134,7 @@ export default { 82 ], "type": [ - 1005 + 1011 ], "workshop_map_id": [ 82 @@ -38614,22 +39149,22 @@ export default { 5 ], "e_match_type": [ - 1010 + 1016 ], "enabled": [ 5 ], "id": [ - 4993 + 4999 ], "label": [ 80 ], "match_maps": [ - 2605 + 2611 ], "match_veto_picks": [ - 2581 + 2587 ], "name": [ 80 @@ -38641,7 +39176,7 @@ export default { 80 ], "type": [ - 1004 + 1010 ], "workshop_map_id": [ 80 @@ -38652,7 +39187,7 @@ export default { }, "maps_max_fields": { "id": [ - 4993 + 4999 ], "label": [ 80 @@ -38675,22 +39210,22 @@ export default { }, "maps_max_order_by": { "id": [ - 2946 + 2952 ], "label": [ - 2946 + 2952 ], "name": [ - 2946 + 2952 ], "patch": [ - 2946 + 2952 ], "poster": [ - 2946 + 2952 ], "workshop_map_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -38698,7 +39233,7 @@ export default { }, "maps_min_fields": { "id": [ - 4993 + 4999 ], "label": [ 80 @@ -38721,22 +39256,22 @@ export default { }, "maps_min_order_by": { "id": [ - 2946 + 2952 ], "label": [ - 2946 + 2952 ], "name": [ - 2946 + 2952 ], "patch": [ - 2946 + 2952 ], "poster": [ - 2946 + 2952 ], "workshop_map_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -38747,7 +39282,7 @@ export default { 40 ], "returning": [ - 2279 + 2285 ], "__typename": [ 80 @@ -38755,10 +39290,10 @@ export default { }, "maps_obj_rel_insert_input": { "data": [ - 2290 + 2296 ], "on_conflict": [ - 2297 + 2303 ], "__typename": [ 80 @@ -38766,13 +39301,13 @@ export default { }, "maps_on_conflict": { "constraint": [ - 2289 + 2295 ], "update_columns": [ - 2306 + 2312 ], "where": [ - 2288 + 2294 ], "__typename": [ 80 @@ -38780,40 +39315,40 @@ export default { }, "maps_order_by": { "active_pool": [ - 2946 + 2952 ], "e_match_type": [ - 1012 + 1018 ], "enabled": [ - 2946 + 2952 ], "id": [ - 2946 + 2952 ], "label": [ - 2946 + 2952 ], "match_maps_aggregate": [ - 2604 + 2610 ], "match_veto_picks_aggregate": [ - 2580 + 2586 ], "name": [ - 2946 + 2952 ], "patch": [ - 2946 + 2952 ], "poster": [ - 2946 + 2952 ], "type": [ - 2946 + 2952 ], "workshop_map_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -38821,7 +39356,7 @@ export default { }, "maps_pk_columns_input": { "id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -38838,7 +39373,7 @@ export default { 5 ], "id": [ - 4993 + 4999 ], "label": [ 80 @@ -38853,7 +39388,7 @@ export default { 80 ], "type": [ - 1004 + 1010 ], "workshop_map_id": [ 80 @@ -38864,10 +39399,10 @@ export default { }, "maps_stream_cursor_input": { "initial_value": [ - 2305 + 2311 ], "ordering": [ - 308 + 314 ], "__typename": [ 80 @@ -38881,7 +39416,7 @@ export default { 5 ], "id": [ - 4993 + 4999 ], "label": [ 80 @@ -38896,7 +39431,7 @@ export default { 80 ], "type": [ - 1004 + 1010 ], "workshop_map_id": [ 80 @@ -38908,10 +39443,10 @@ export default { "maps_update_column": {}, "maps_updates": { "_set": [ - 2303 + 2309 ], "where": [ - 2288 + 2294 ], "__typename": [ 80 @@ -38919,7 +39454,7 @@ export default { }, "match_clips": { "created_at": [ - 4493 + 4499 ], "download_url": [ 80 @@ -38931,28 +39466,28 @@ export default { 80 ], "id": [ - 4993 + 4999 ], "kills_count": [ 40 ], "match_map": [ - 2599 + 2605 ], "match_map_demo": [ - 2483 + 2489 ], "match_map_demo_id": [ - 4993 + 4999 ], "match_map_id": [ - 4993 + 4999 ], "render_jobs": [ - 257, + 263, { "distinct_on": [ - 285, + 291, "[clip_render_jobs_select_column!]" ], "limit": [ @@ -38962,19 +39497,19 @@ export default { 40 ], "order_by": [ - 282, + 288, "[clip_render_jobs_order_by!]" ], "where": [ - 269 + 275 ] } ], "render_jobs_aggregate": [ - 258, + 264, { "distinct_on": [ - 285, + 291, "[clip_render_jobs_select_column!]" ], "limit": [ @@ -38984,11 +39519,11 @@ export default { 40 ], "order_by": [ - 282, + 288, "[clip_render_jobs_order_by!]" ], "where": [ - 269 + 275 ] } ], @@ -38996,13 +39531,13 @@ export default { 40 ], "size": [ - 252 + 258 ], "target": [ - 3904 + 3910 ], "target_steam_id": [ - 252 + 258 ], "thumbnail_download_url": [ 80 @@ -39014,16 +39549,16 @@ export default { 80 ], "user": [ - 3904 + 3910 ], "user_steam_id": [ - 252 + 258 ], "views_count": [ 40 ], "visibility": [ - 922 + 928 ], "__typename": [ 80 @@ -39031,10 +39566,10 @@ export default { }, "match_clips_aggregate": { "aggregate": [ - 2312 + 2318 ], "nodes": [ - 2308 + 2314 ], "__typename": [ 80 @@ -39042,7 +39577,7 @@ export default { }, "match_clips_aggregate_bool_exp": { "count": [ - 2311 + 2317 ], "__typename": [ 80 @@ -39050,13 +39585,13 @@ export default { }, "match_clips_aggregate_bool_exp_count": { "arguments": [ - 2330 + 2336 ], "distinct": [ 5 ], "filter": [ - 2317 + 2323 ], "predicate": [ 41 @@ -39067,13 +39602,13 @@ export default { }, "match_clips_aggregate_fields": { "avg": [ - 2315 + 2321 ], "count": [ 40, { "columns": [ - 2330, + 2336, "[match_clips_select_column!]" ], "distinct": [ @@ -39082,31 +39617,31 @@ export default { } ], "max": [ - 2321 + 2327 ], "min": [ - 2323 + 2329 ], "stddev": [ - 2332 + 2338 ], "stddev_pop": [ - 2334 + 2340 ], "stddev_samp": [ - 2336 + 2342 ], "sum": [ - 2340 + 2346 ], "var_pop": [ - 2344 + 2350 ], "var_samp": [ - 2346 + 2352 ], "variance": [ - 2348 + 2354 ], "__typename": [ 80 @@ -39114,37 +39649,37 @@ export default { }, "match_clips_aggregate_order_by": { "avg": [ - 2316 + 2322 ], "count": [ - 2946 + 2952 ], "max": [ - 2322 + 2328 ], "min": [ - 2324 + 2330 ], "stddev": [ - 2333 + 2339 ], "stddev_pop": [ - 2335 + 2341 ], "stddev_samp": [ - 2337 + 2343 ], "sum": [ - 2341 + 2347 ], "var_pop": [ - 2345 + 2351 ], "var_samp": [ - 2347 + 2353 ], "variance": [ - 2349 + 2355 ], "__typename": [ 80 @@ -39152,10 +39687,10 @@ export default { }, "match_clips_arr_rel_insert_input": { "data": [ - 2320 + 2326 ], "on_conflict": [ - 2327 + 2333 ], "__typename": [ 80 @@ -39189,25 +39724,25 @@ export default { }, "match_clips_avg_order_by": { "duration_ms": [ - 2946 + 2952 ], "kills_count": [ - 2946 + 2952 ], "round": [ - 2946 + 2952 ], "size": [ - 2946 + 2952 ], "target_steam_id": [ - 2946 + 2952 ], "user_steam_id": [ - 2946 + 2952 ], "views_count": [ - 2946 + 2952 ], "__typename": [ 80 @@ -39215,16 +39750,16 @@ export default { }, "match_clips_bool_exp": { "_and": [ - 2317 + 2323 ], "_not": [ - 2317 + 2323 ], "_or": [ - 2317 + 2323 ], "created_at": [ - 4494 + 4500 ], "download_url": [ 82 @@ -39236,40 +39771,40 @@ export default { 82 ], "id": [ - 4995 + 5001 ], "kills_count": [ 41 ], "match_map": [ - 2608 + 2614 ], "match_map_demo": [ - 2495 + 2501 ], "match_map_demo_id": [ - 4995 + 5001 ], "match_map_id": [ - 4995 + 5001 ], "render_jobs": [ - 269 + 275 ], "render_jobs_aggregate": [ - 259 + 265 ], "round": [ 41 ], "size": [ - 254 + 260 ], "target": [ - 3908 + 3914 ], "target_steam_id": [ - 254 + 260 ], "thumbnail_download_url": [ 82 @@ -39281,16 +39816,16 @@ export default { 82 ], "user": [ - 3908 + 3914 ], "user_steam_id": [ - 254 + 260 ], "views_count": [ 41 ], "visibility": [ - 923 + 929 ], "__typename": [ 80 @@ -39308,13 +39843,13 @@ export default { 40 ], "size": [ - 252 + 258 ], "target_steam_id": [ - 252 + 258 ], "user_steam_id": [ - 252 + 258 ], "views_count": [ 40 @@ -39325,7 +39860,7 @@ export default { }, "match_clips_insert_input": { "created_at": [ - 4493 + 4499 ], "duration_ms": [ 40 @@ -39334,37 +39869,37 @@ export default { 80 ], "id": [ - 4993 + 4999 ], "kills_count": [ 40 ], "match_map": [ - 2617 + 2623 ], "match_map_demo": [ - 2507 + 2513 ], "match_map_demo_id": [ - 4993 + 4999 ], "match_map_id": [ - 4993 + 4999 ], "render_jobs": [ - 266 + 272 ], "round": [ 40 ], "size": [ - 252 + 258 ], "target": [ - 3915 + 3921 ], "target_steam_id": [ - 252 + 258 ], "thumbnail_url": [ 80 @@ -39373,16 +39908,16 @@ export default { 80 ], "user": [ - 3915 + 3921 ], "user_steam_id": [ - 252 + 258 ], "views_count": [ 40 ], "visibility": [ - 922 + 928 ], "__typename": [ 80 @@ -39390,7 +39925,7 @@ export default { }, "match_clips_max_fields": { "created_at": [ - 4493 + 4499 ], "download_url": [ 80 @@ -39402,25 +39937,25 @@ export default { 80 ], "id": [ - 4993 + 4999 ], "kills_count": [ 40 ], "match_map_demo_id": [ - 4993 + 4999 ], "match_map_id": [ - 4993 + 4999 ], "round": [ 40 ], "size": [ - 252 + 258 ], "target_steam_id": [ - 252 + 258 ], "thumbnail_download_url": [ 80 @@ -39432,7 +39967,7 @@ export default { 80 ], "user_steam_id": [ - 252 + 258 ], "views_count": [ 40 @@ -39443,46 +39978,46 @@ export default { }, "match_clips_max_order_by": { "created_at": [ - 2946 + 2952 ], "duration_ms": [ - 2946 + 2952 ], "file": [ - 2946 + 2952 ], "id": [ - 2946 + 2952 ], "kills_count": [ - 2946 + 2952 ], "match_map_demo_id": [ - 2946 + 2952 ], "match_map_id": [ - 2946 + 2952 ], "round": [ - 2946 + 2952 ], "size": [ - 2946 + 2952 ], "target_steam_id": [ - 2946 + 2952 ], "thumbnail_url": [ - 2946 + 2952 ], "title": [ - 2946 + 2952 ], "user_steam_id": [ - 2946 + 2952 ], "views_count": [ - 2946 + 2952 ], "__typename": [ 80 @@ -39490,7 +40025,7 @@ export default { }, "match_clips_min_fields": { "created_at": [ - 4493 + 4499 ], "download_url": [ 80 @@ -39502,25 +40037,25 @@ export default { 80 ], "id": [ - 4993 + 4999 ], "kills_count": [ 40 ], "match_map_demo_id": [ - 4993 + 4999 ], "match_map_id": [ - 4993 + 4999 ], "round": [ 40 ], "size": [ - 252 + 258 ], "target_steam_id": [ - 252 + 258 ], "thumbnail_download_url": [ 80 @@ -39532,7 +40067,7 @@ export default { 80 ], "user_steam_id": [ - 252 + 258 ], "views_count": [ 40 @@ -39543,46 +40078,46 @@ export default { }, "match_clips_min_order_by": { "created_at": [ - 2946 + 2952 ], "duration_ms": [ - 2946 + 2952 ], "file": [ - 2946 + 2952 ], "id": [ - 2946 + 2952 ], "kills_count": [ - 2946 + 2952 ], "match_map_demo_id": [ - 2946 + 2952 ], "match_map_id": [ - 2946 + 2952 ], "round": [ - 2946 + 2952 ], "size": [ - 2946 + 2952 ], "target_steam_id": [ - 2946 + 2952 ], "thumbnail_url": [ - 2946 + 2952 ], "title": [ - 2946 + 2952 ], "user_steam_id": [ - 2946 + 2952 ], "views_count": [ - 2946 + 2952 ], "__typename": [ 80 @@ -39593,7 +40128,7 @@ export default { 40 ], "returning": [ - 2308 + 2314 ], "__typename": [ 80 @@ -39601,10 +40136,10 @@ export default { }, "match_clips_obj_rel_insert_input": { "data": [ - 2320 + 2326 ], "on_conflict": [ - 2327 + 2333 ], "__typename": [ 80 @@ -39612,13 +40147,13 @@ export default { }, "match_clips_on_conflict": { "constraint": [ - 2318 + 2324 ], "update_columns": [ - 2342 + 2348 ], "where": [ - 2317 + 2323 ], "__typename": [ 80 @@ -39626,70 +40161,70 @@ export default { }, "match_clips_order_by": { "created_at": [ - 2946 + 2952 ], "download_url": [ - 2946 + 2952 ], "duration_ms": [ - 2946 + 2952 ], "file": [ - 2946 + 2952 ], "id": [ - 2946 + 2952 ], "kills_count": [ - 2946 + 2952 ], "match_map": [ - 2619 + 2625 ], "match_map_demo": [ - 2509 + 2515 ], "match_map_demo_id": [ - 2946 + 2952 ], "match_map_id": [ - 2946 + 2952 ], "render_jobs_aggregate": [ - 264 + 270 ], "round": [ - 2946 + 2952 ], "size": [ - 2946 + 2952 ], "target": [ - 3917 + 3923 ], "target_steam_id": [ - 2946 + 2952 ], "thumbnail_download_url": [ - 2946 + 2952 ], "thumbnail_url": [ - 2946 + 2952 ], "title": [ - 2946 + 2952 ], "user": [ - 3917 + 3923 ], "user_steam_id": [ - 2946 + 2952 ], "views_count": [ - 2946 + 2952 ], "visibility": [ - 2946 + 2952 ], "__typename": [ 80 @@ -39697,7 +40232,7 @@ export default { }, "match_clips_pk_columns_input": { "id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -39706,7 +40241,7 @@ export default { "match_clips_select_column": {}, "match_clips_set_input": { "created_at": [ - 4493 + 4499 ], "duration_ms": [ 40 @@ -39715,25 +40250,25 @@ export default { 80 ], "id": [ - 4993 + 4999 ], "kills_count": [ 40 ], "match_map_demo_id": [ - 4993 + 4999 ], "match_map_id": [ - 4993 + 4999 ], "round": [ 40 ], "size": [ - 252 + 258 ], "target_steam_id": [ - 252 + 258 ], "thumbnail_url": [ 80 @@ -39742,13 +40277,13 @@ export default { 80 ], "user_steam_id": [ - 252 + 258 ], "views_count": [ 40 ], "visibility": [ - 922 + 928 ], "__typename": [ 80 @@ -39782,25 +40317,25 @@ export default { }, "match_clips_stddev_order_by": { "duration_ms": [ - 2946 + 2952 ], "kills_count": [ - 2946 + 2952 ], "round": [ - 2946 + 2952 ], "size": [ - 2946 + 2952 ], "target_steam_id": [ - 2946 + 2952 ], "user_steam_id": [ - 2946 + 2952 ], "views_count": [ - 2946 + 2952 ], "__typename": [ 80 @@ -39834,25 +40369,25 @@ export default { }, "match_clips_stddev_pop_order_by": { "duration_ms": [ - 2946 + 2952 ], "kills_count": [ - 2946 + 2952 ], "round": [ - 2946 + 2952 ], "size": [ - 2946 + 2952 ], "target_steam_id": [ - 2946 + 2952 ], "user_steam_id": [ - 2946 + 2952 ], "views_count": [ - 2946 + 2952 ], "__typename": [ 80 @@ -39886,25 +40421,25 @@ export default { }, "match_clips_stddev_samp_order_by": { "duration_ms": [ - 2946 + 2952 ], "kills_count": [ - 2946 + 2952 ], "round": [ - 2946 + 2952 ], "size": [ - 2946 + 2952 ], "target_steam_id": [ - 2946 + 2952 ], "user_steam_id": [ - 2946 + 2952 ], "views_count": [ - 2946 + 2952 ], "__typename": [ 80 @@ -39912,10 +40447,10 @@ export default { }, "match_clips_stream_cursor_input": { "initial_value": [ - 2339 + 2345 ], "ordering": [ - 308 + 314 ], "__typename": [ 80 @@ -39923,7 +40458,7 @@ export default { }, "match_clips_stream_cursor_value_input": { "created_at": [ - 4493 + 4499 ], "duration_ms": [ 40 @@ -39932,25 +40467,25 @@ export default { 80 ], "id": [ - 4993 + 4999 ], "kills_count": [ 40 ], "match_map_demo_id": [ - 4993 + 4999 ], "match_map_id": [ - 4993 + 4999 ], "round": [ 40 ], "size": [ - 252 + 258 ], "target_steam_id": [ - 252 + 258 ], "thumbnail_url": [ 80 @@ -39959,13 +40494,13 @@ export default { 80 ], "user_steam_id": [ - 252 + 258 ], "views_count": [ 40 ], "visibility": [ - 922 + 928 ], "__typename": [ 80 @@ -39982,13 +40517,13 @@ export default { 40 ], "size": [ - 252 + 258 ], "target_steam_id": [ - 252 + 258 ], "user_steam_id": [ - 252 + 258 ], "views_count": [ 40 @@ -39999,25 +40534,25 @@ export default { }, "match_clips_sum_order_by": { "duration_ms": [ - 2946 + 2952 ], "kills_count": [ - 2946 + 2952 ], "round": [ - 2946 + 2952 ], "size": [ - 2946 + 2952 ], "target_steam_id": [ - 2946 + 2952 ], "user_steam_id": [ - 2946 + 2952 ], "views_count": [ - 2946 + 2952 ], "__typename": [ 80 @@ -40026,13 +40561,13 @@ export default { "match_clips_update_column": {}, "match_clips_updates": { "_inc": [ - 2319 + 2325 ], "_set": [ - 2331 + 2337 ], "where": [ - 2317 + 2323 ], "__typename": [ 80 @@ -40066,25 +40601,25 @@ export default { }, "match_clips_var_pop_order_by": { "duration_ms": [ - 2946 + 2952 ], "kills_count": [ - 2946 + 2952 ], "round": [ - 2946 + 2952 ], "size": [ - 2946 + 2952 ], "target_steam_id": [ - 2946 + 2952 ], "user_steam_id": [ - 2946 + 2952 ], "views_count": [ - 2946 + 2952 ], "__typename": [ 80 @@ -40118,25 +40653,25 @@ export default { }, "match_clips_var_samp_order_by": { "duration_ms": [ - 2946 + 2952 ], "kills_count": [ - 2946 + 2952 ], "round": [ - 2946 + 2952 ], "size": [ - 2946 + 2952 ], "target_steam_id": [ - 2946 + 2952 ], "user_steam_id": [ - 2946 + 2952 ], "views_count": [ - 2946 + 2952 ], "__typename": [ 80 @@ -40170,25 +40705,25 @@ export default { }, "match_clips_variance_order_by": { "duration_ms": [ - 2946 + 2952 ], "kills_count": [ - 2946 + 2952 ], "round": [ - 2946 + 2952 ], "size": [ - 2946 + 2952 ], "target_steam_id": [ - 2946 + 2952 ], "user_steam_id": [ - 2946 + 2952 ], "views_count": [ - 2946 + 2952 ], "__typename": [ 80 @@ -40196,52 +40731,52 @@ export default { }, "match_demo_sessions": { "created_at": [ - 4493 + 4499 ], "error_message": [ 80 ], "game_server_node": [ - 1693 + 1699 ], "game_server_node_id": [ 80 ], "id": [ - 4993 + 4999 ], "k8s_job_name": [ 80 ], "last_activity_at": [ - 4493 + 4499 ], "last_status_at": [ - 4493 + 4499 ], "match": [ - 2761 + 2767 ], "match_id": [ - 4993 + 4999 ], "match_map": [ - 2599 + 2605 ], "match_map_demo": [ - 2483 + 2489 ], "match_map_demo_id": [ - 4993 + 4999 ], "match_map_id": [ - 4993 + 4999 ], "status": [ 80 ], "status_history": [ - 1817, + 1823, { "path": [ 80 @@ -40252,10 +40787,10 @@ export default { 80 ], "watcher": [ - 3904 + 3910 ], "watcher_steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -40263,10 +40798,10 @@ export default { }, "match_demo_sessions_aggregate": { "aggregate": [ - 2354 + 2360 ], "nodes": [ - 2350 + 2356 ], "__typename": [ 80 @@ -40274,7 +40809,7 @@ export default { }, "match_demo_sessions_aggregate_bool_exp": { "count": [ - 2353 + 2359 ], "__typename": [ 80 @@ -40282,13 +40817,13 @@ export default { }, "match_demo_sessions_aggregate_bool_exp_count": { "arguments": [ - 2376 + 2382 ], "distinct": [ 5 ], "filter": [ - 2360 + 2366 ], "predicate": [ 41 @@ -40299,13 +40834,13 @@ export default { }, "match_demo_sessions_aggregate_fields": { "avg": [ - 2358 + 2364 ], "count": [ 40, { "columns": [ - 2376, + 2382, "[match_demo_sessions_select_column!]" ], "distinct": [ @@ -40314,31 +40849,31 @@ export default { } ], "max": [ - 2367 + 2373 ], "min": [ - 2369 + 2375 ], "stddev": [ - 2378 + 2384 ], "stddev_pop": [ - 2380 + 2386 ], "stddev_samp": [ - 2382 + 2388 ], "sum": [ - 2386 + 2392 ], "var_pop": [ - 2390 + 2396 ], "var_samp": [ - 2392 + 2398 ], "variance": [ - 2394 + 2400 ], "__typename": [ 80 @@ -40346,37 +40881,37 @@ export default { }, "match_demo_sessions_aggregate_order_by": { "avg": [ - 2359 + 2365 ], "count": [ - 2946 + 2952 ], "max": [ - 2368 + 2374 ], "min": [ - 2370 + 2376 ], "stddev": [ - 2379 + 2385 ], "stddev_pop": [ - 2381 + 2387 ], "stddev_samp": [ - 2383 + 2389 ], "sum": [ - 2387 + 2393 ], "var_pop": [ - 2391 + 2397 ], "var_samp": [ - 2393 + 2399 ], "variance": [ - 2395 + 2401 ], "__typename": [ 80 @@ -40384,7 +40919,7 @@ export default { }, "match_demo_sessions_append_input": { "status_history": [ - 1817 + 1823 ], "__typename": [ 80 @@ -40392,10 +40927,10 @@ export default { }, "match_demo_sessions_arr_rel_insert_input": { "data": [ - 2366 + 2372 ], "on_conflict": [ - 2372 + 2378 ], "__typename": [ 80 @@ -40411,7 +40946,7 @@ export default { }, "match_demo_sessions_avg_order_by": { "watcher_steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -40419,70 +40954,70 @@ export default { }, "match_demo_sessions_bool_exp": { "_and": [ - 2360 + 2366 ], "_not": [ - 2360 + 2366 ], "_or": [ - 2360 + 2366 ], "created_at": [ - 4494 + 4500 ], "error_message": [ 82 ], "game_server_node": [ - 1705 + 1711 ], "game_server_node_id": [ 82 ], "id": [ - 4995 + 5001 ], "k8s_job_name": [ 82 ], "last_activity_at": [ - 4494 + 4500 ], "last_status_at": [ - 4494 + 4500 ], "match": [ - 2770 + 2776 ], "match_id": [ - 4995 + 5001 ], "match_map": [ - 2608 + 2614 ], "match_map_demo": [ - 2495 + 2501 ], "match_map_demo_id": [ - 4995 + 5001 ], "match_map_id": [ - 4995 + 5001 ], "status": [ 82 ], "status_history": [ - 1819 + 1825 ], "stream_url": [ 82 ], "watcher": [ - 3908 + 3914 ], "watcher_steam_id": [ - 254 + 260 ], "__typename": [ 80 @@ -40515,7 +41050,7 @@ export default { }, "match_demo_sessions_inc_input": { "watcher_steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -40523,61 +41058,61 @@ export default { }, "match_demo_sessions_insert_input": { "created_at": [ - 4493 + 4499 ], "error_message": [ 80 ], "game_server_node": [ - 1717 + 1723 ], "game_server_node_id": [ 80 ], "id": [ - 4993 + 4999 ], "k8s_job_name": [ 80 ], "last_activity_at": [ - 4493 + 4499 ], "last_status_at": [ - 4493 + 4499 ], "match": [ - 2779 + 2785 ], "match_id": [ - 4993 + 4999 ], "match_map": [ - 2617 + 2623 ], "match_map_demo": [ - 2507 + 2513 ], "match_map_demo_id": [ - 4993 + 4999 ], "match_map_id": [ - 4993 + 4999 ], "status": [ 80 ], "status_history": [ - 1817 + 1823 ], "stream_url": [ 80 ], "watcher": [ - 3915 + 3921 ], "watcher_steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -40585,7 +41120,7 @@ export default { }, "match_demo_sessions_max_fields": { "created_at": [ - 4493 + 4499 ], "error_message": [ 80 @@ -40594,25 +41129,25 @@ export default { 80 ], "id": [ - 4993 + 4999 ], "k8s_job_name": [ 80 ], "last_activity_at": [ - 4493 + 4499 ], "last_status_at": [ - 4493 + 4499 ], "match_id": [ - 4993 + 4999 ], "match_map_demo_id": [ - 4993 + 4999 ], "match_map_id": [ - 4993 + 4999 ], "status": [ 80 @@ -40621,7 +41156,7 @@ export default { 80 ], "watcher_steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -40629,43 +41164,43 @@ export default { }, "match_demo_sessions_max_order_by": { "created_at": [ - 2946 + 2952 ], "error_message": [ - 2946 + 2952 ], "game_server_node_id": [ - 2946 + 2952 ], "id": [ - 2946 + 2952 ], "k8s_job_name": [ - 2946 + 2952 ], "last_activity_at": [ - 2946 + 2952 ], "last_status_at": [ - 2946 + 2952 ], "match_id": [ - 2946 + 2952 ], "match_map_demo_id": [ - 2946 + 2952 ], "match_map_id": [ - 2946 + 2952 ], "status": [ - 2946 + 2952 ], "stream_url": [ - 2946 + 2952 ], "watcher_steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -40673,7 +41208,7 @@ export default { }, "match_demo_sessions_min_fields": { "created_at": [ - 4493 + 4499 ], "error_message": [ 80 @@ -40682,25 +41217,25 @@ export default { 80 ], "id": [ - 4993 + 4999 ], "k8s_job_name": [ 80 ], "last_activity_at": [ - 4493 + 4499 ], "last_status_at": [ - 4493 + 4499 ], "match_id": [ - 4993 + 4999 ], "match_map_demo_id": [ - 4993 + 4999 ], "match_map_id": [ - 4993 + 4999 ], "status": [ 80 @@ -40709,7 +41244,7 @@ export default { 80 ], "watcher_steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -40717,43 +41252,43 @@ export default { }, "match_demo_sessions_min_order_by": { "created_at": [ - 2946 + 2952 ], "error_message": [ - 2946 + 2952 ], "game_server_node_id": [ - 2946 + 2952 ], "id": [ - 2946 + 2952 ], "k8s_job_name": [ - 2946 + 2952 ], "last_activity_at": [ - 2946 + 2952 ], "last_status_at": [ - 2946 + 2952 ], "match_id": [ - 2946 + 2952 ], "match_map_demo_id": [ - 2946 + 2952 ], "match_map_id": [ - 2946 + 2952 ], "status": [ - 2946 + 2952 ], "stream_url": [ - 2946 + 2952 ], "watcher_steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -40764,7 +41299,7 @@ export default { 40 ], "returning": [ - 2350 + 2356 ], "__typename": [ 80 @@ -40772,13 +41307,13 @@ export default { }, "match_demo_sessions_on_conflict": { "constraint": [ - 2361 + 2367 ], "update_columns": [ - 2388 + 2394 ], "where": [ - 2360 + 2366 ], "__typename": [ 80 @@ -40786,61 +41321,61 @@ export default { }, "match_demo_sessions_order_by": { "created_at": [ - 2946 + 2952 ], "error_message": [ - 2946 + 2952 ], "game_server_node": [ - 1719 + 1725 ], "game_server_node_id": [ - 2946 + 2952 ], "id": [ - 2946 + 2952 ], "k8s_job_name": [ - 2946 + 2952 ], "last_activity_at": [ - 2946 + 2952 ], "last_status_at": [ - 2946 + 2952 ], "match": [ - 2781 + 2787 ], "match_id": [ - 2946 + 2952 ], "match_map": [ - 2619 + 2625 ], "match_map_demo": [ - 2509 + 2515 ], "match_map_demo_id": [ - 2946 + 2952 ], "match_map_id": [ - 2946 + 2952 ], "status": [ - 2946 + 2952 ], "status_history": [ - 2946 + 2952 ], "stream_url": [ - 2946 + 2952 ], "watcher": [ - 3917 + 3923 ], "watcher_steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -40848,7 +41383,7 @@ export default { }, "match_demo_sessions_pk_columns_input": { "id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -40856,7 +41391,7 @@ export default { }, "match_demo_sessions_prepend_input": { "status_history": [ - 1817 + 1823 ], "__typename": [ 80 @@ -40865,7 +41400,7 @@ export default { "match_demo_sessions_select_column": {}, "match_demo_sessions_set_input": { "created_at": [ - 4493 + 4499 ], "error_message": [ 80 @@ -40874,37 +41409,37 @@ export default { 80 ], "id": [ - 4993 + 4999 ], "k8s_job_name": [ 80 ], "last_activity_at": [ - 4493 + 4499 ], "last_status_at": [ - 4493 + 4499 ], "match_id": [ - 4993 + 4999 ], "match_map_demo_id": [ - 4993 + 4999 ], "match_map_id": [ - 4993 + 4999 ], "status": [ 80 ], "status_history": [ - 1817 + 1823 ], "stream_url": [ 80 ], "watcher_steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -40920,7 +41455,7 @@ export default { }, "match_demo_sessions_stddev_order_by": { "watcher_steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -40936,7 +41471,7 @@ export default { }, "match_demo_sessions_stddev_pop_order_by": { "watcher_steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -40952,7 +41487,7 @@ export default { }, "match_demo_sessions_stddev_samp_order_by": { "watcher_steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -40960,10 +41495,10 @@ export default { }, "match_demo_sessions_stream_cursor_input": { "initial_value": [ - 2385 + 2391 ], "ordering": [ - 308 + 314 ], "__typename": [ 80 @@ -40971,7 +41506,7 @@ export default { }, "match_demo_sessions_stream_cursor_value_input": { "created_at": [ - 4493 + 4499 ], "error_message": [ 80 @@ -40980,37 +41515,37 @@ export default { 80 ], "id": [ - 4993 + 4999 ], "k8s_job_name": [ 80 ], "last_activity_at": [ - 4493 + 4499 ], "last_status_at": [ - 4493 + 4499 ], "match_id": [ - 4993 + 4999 ], "match_map_demo_id": [ - 4993 + 4999 ], "match_map_id": [ - 4993 + 4999 ], "status": [ 80 ], "status_history": [ - 1817 + 1823 ], "stream_url": [ 80 ], "watcher_steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -41018,7 +41553,7 @@ export default { }, "match_demo_sessions_sum_fields": { "watcher_steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -41026,7 +41561,7 @@ export default { }, "match_demo_sessions_sum_order_by": { "watcher_steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -41035,28 +41570,28 @@ export default { "match_demo_sessions_update_column": {}, "match_demo_sessions_updates": { "_append": [ - 2356 + 2362 ], "_delete_at_path": [ - 2362 + 2368 ], "_delete_elem": [ - 2363 + 2369 ], "_delete_key": [ - 2364 + 2370 ], "_inc": [ - 2365 + 2371 ], "_prepend": [ - 2375 + 2381 ], "_set": [ - 2377 + 2383 ], "where": [ - 2360 + 2366 ], "__typename": [ 80 @@ -41072,7 +41607,7 @@ export default { }, "match_demo_sessions_var_pop_order_by": { "watcher_steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -41088,7 +41623,7 @@ export default { }, "match_demo_sessions_var_samp_order_by": { "watcher_steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -41104,7 +41639,7 @@ export default { }, "match_demo_sessions_variance_order_by": { "watcher_steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -41121,22 +41656,22 @@ export default { 80 ], "id": [ - 4993 + 4999 ], "lineup": [ - 2441 + 2447 ], "match_lineup_id": [ - 4993 + 4999 ], "placeholder_name": [ 80 ], "player": [ - 3904 + 3910 ], "steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -41144,10 +41679,10 @@ export default { }, "match_lineup_players_aggregate": { "aggregate": [ - 2402 + 2408 ], "nodes": [ - 2396 + 2402 ], "__typename": [ 80 @@ -41155,13 +41690,13 @@ export default { }, "match_lineup_players_aggregate_bool_exp": { "bool_and": [ - 2399 + 2405 ], "bool_or": [ - 2400 + 2406 ], "count": [ - 2401 + 2407 ], "__typename": [ 80 @@ -41169,13 +41704,13 @@ export default { }, "match_lineup_players_aggregate_bool_exp_bool_and": { "arguments": [ - 2420 + 2426 ], "distinct": [ 5 ], "filter": [ - 2407 + 2413 ], "predicate": [ 6 @@ -41186,13 +41721,13 @@ export default { }, "match_lineup_players_aggregate_bool_exp_bool_or": { "arguments": [ - 2421 + 2427 ], "distinct": [ 5 ], "filter": [ - 2407 + 2413 ], "predicate": [ 6 @@ -41203,13 +41738,13 @@ export default { }, "match_lineup_players_aggregate_bool_exp_count": { "arguments": [ - 2419 + 2425 ], "distinct": [ 5 ], "filter": [ - 2407 + 2413 ], "predicate": [ 41 @@ -41220,13 +41755,13 @@ export default { }, "match_lineup_players_aggregate_fields": { "avg": [ - 2405 + 2411 ], "count": [ 40, { "columns": [ - 2419, + 2425, "[match_lineup_players_select_column!]" ], "distinct": [ @@ -41235,31 +41770,31 @@ export default { } ], "max": [ - 2411 + 2417 ], "min": [ - 2413 + 2419 ], "stddev": [ - 2423 + 2429 ], "stddev_pop": [ - 2425 + 2431 ], "stddev_samp": [ - 2427 + 2433 ], "sum": [ - 2431 + 2437 ], "var_pop": [ - 2435 + 2441 ], "var_samp": [ - 2437 + 2443 ], "variance": [ - 2439 + 2445 ], "__typename": [ 80 @@ -41267,37 +41802,37 @@ export default { }, "match_lineup_players_aggregate_order_by": { "avg": [ - 2406 + 2412 ], "count": [ - 2946 + 2952 ], "max": [ - 2412 + 2418 ], "min": [ - 2414 + 2420 ], "stddev": [ - 2424 + 2430 ], "stddev_pop": [ - 2426 + 2432 ], "stddev_samp": [ - 2428 + 2434 ], "sum": [ - 2432 + 2438 ], "var_pop": [ - 2436 + 2442 ], "var_samp": [ - 2438 + 2444 ], "variance": [ - 2440 + 2446 ], "__typename": [ 80 @@ -41305,10 +41840,10 @@ export default { }, "match_lineup_players_arr_rel_insert_input": { "data": [ - 2410 + 2416 ], "on_conflict": [ - 2416 + 2422 ], "__typename": [ 80 @@ -41324,7 +41859,7 @@ export default { }, "match_lineup_players_avg_order_by": { "steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -41332,13 +41867,13 @@ export default { }, "match_lineup_players_bool_exp": { "_and": [ - 2407 + 2413 ], "_not": [ - 2407 + 2413 ], "_or": [ - 2407 + 2413 ], "captain": [ 6 @@ -41350,22 +41885,22 @@ export default { 82 ], "id": [ - 4995 + 5001 ], "lineup": [ - 2450 + 2456 ], "match_lineup_id": [ - 4995 + 5001 ], "placeholder_name": [ 82 ], "player": [ - 3908 + 3914 ], "steam_id": [ - 254 + 260 ], "__typename": [ 80 @@ -41374,7 +41909,7 @@ export default { "match_lineup_players_constraint": {}, "match_lineup_players_inc_input": { "steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -41391,22 +41926,22 @@ export default { 80 ], "id": [ - 4993 + 4999 ], "lineup": [ - 2459 + 2465 ], "match_lineup_id": [ - 4993 + 4999 ], "placeholder_name": [ 80 ], "player": [ - 3915 + 3921 ], "steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -41417,16 +41952,16 @@ export default { 80 ], "id": [ - 4993 + 4999 ], "match_lineup_id": [ - 4993 + 4999 ], "placeholder_name": [ 80 ], "steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -41434,19 +41969,19 @@ export default { }, "match_lineup_players_max_order_by": { "discord_id": [ - 2946 + 2952 ], "id": [ - 2946 + 2952 ], "match_lineup_id": [ - 2946 + 2952 ], "placeholder_name": [ - 2946 + 2952 ], "steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -41457,16 +41992,16 @@ export default { 80 ], "id": [ - 4993 + 4999 ], "match_lineup_id": [ - 4993 + 4999 ], "placeholder_name": [ 80 ], "steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -41474,19 +42009,19 @@ export default { }, "match_lineup_players_min_order_by": { "discord_id": [ - 2946 + 2952 ], "id": [ - 2946 + 2952 ], "match_lineup_id": [ - 2946 + 2952 ], "placeholder_name": [ - 2946 + 2952 ], "steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -41497,7 +42032,7 @@ export default { 40 ], "returning": [ - 2396 + 2402 ], "__typename": [ 80 @@ -41505,13 +42040,13 @@ export default { }, "match_lineup_players_on_conflict": { "constraint": [ - 2408 + 2414 ], "update_columns": [ - 2433 + 2439 ], "where": [ - 2407 + 2413 ], "__typename": [ 80 @@ -41519,31 +42054,31 @@ export default { }, "match_lineup_players_order_by": { "captain": [ - 2946 + 2952 ], "checked_in": [ - 2946 + 2952 ], "discord_id": [ - 2946 + 2952 ], "id": [ - 2946 + 2952 ], "lineup": [ - 2461 + 2467 ], "match_lineup_id": [ - 2946 + 2952 ], "placeholder_name": [ - 2946 + 2952 ], "player": [ - 3917 + 3923 ], "steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -41551,7 +42086,7 @@ export default { }, "match_lineup_players_pk_columns_input": { "id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -41571,16 +42106,16 @@ export default { 80 ], "id": [ - 4993 + 4999 ], "match_lineup_id": [ - 4993 + 4999 ], "placeholder_name": [ 80 ], "steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -41596,7 +42131,7 @@ export default { }, "match_lineup_players_stddev_order_by": { "steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -41612,7 +42147,7 @@ export default { }, "match_lineup_players_stddev_pop_order_by": { "steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -41628,7 +42163,7 @@ export default { }, "match_lineup_players_stddev_samp_order_by": { "steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -41636,10 +42171,10 @@ export default { }, "match_lineup_players_stream_cursor_input": { "initial_value": [ - 2430 + 2436 ], "ordering": [ - 308 + 314 ], "__typename": [ 80 @@ -41656,16 +42191,16 @@ export default { 80 ], "id": [ - 4993 + 4999 ], "match_lineup_id": [ - 4993 + 4999 ], "placeholder_name": [ 80 ], "steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -41673,7 +42208,7 @@ export default { }, "match_lineup_players_sum_fields": { "steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -41681,7 +42216,7 @@ export default { }, "match_lineup_players_sum_order_by": { "steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -41690,13 +42225,13 @@ export default { "match_lineup_players_update_column": {}, "match_lineup_players_updates": { "_inc": [ - 2409 + 2415 ], "_set": [ - 2422 + 2428 ], "where": [ - 2407 + 2413 ], "__typename": [ 80 @@ -41712,7 +42247,7 @@ export default { }, "match_lineup_players_var_pop_order_by": { "steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -41728,7 +42263,7 @@ export default { }, "match_lineup_players_var_samp_order_by": { "steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -41744,7 +42279,7 @@ export default { }, "match_lineup_players_variance_order_by": { "steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -41761,16 +42296,16 @@ export default { 5 ], "captain": [ - 5149 + 5155 ], "coach": [ - 3904 + 3910 ], "coach_steam_id": [ - 252 + 258 ], "id": [ - 4993 + 4999 ], "is_on_lineup": [ 5 @@ -41785,10 +42320,10 @@ export default { 5 ], "lineup_players": [ - 2396, + 2402, { "distinct_on": [ - 2419, + 2425, "[match_lineup_players_select_column!]" ], "limit": [ @@ -41798,19 +42333,19 @@ export default { 40 ], "order_by": [ - 2417, + 2423, "[match_lineup_players_order_by!]" ], "where": [ - 2407 + 2413 ] } ], "lineup_players_aggregate": [ - 2397, + 2403, { "distinct_on": [ - 2419, + 2425, "[match_lineup_players_select_column!]" ], "limit": [ @@ -41820,25 +42355,25 @@ export default { 40 ], "order_by": [ - 2417, + 2423, "[match_lineup_players_order_by!]" ], "where": [ - 2407 + 2413 ] } ], "match": [ - 2761 + 2767 ], "match_id": [ - 4993 + 4999 ], "match_veto_picks": [ - 2575, + 2581, { "distinct_on": [ - 2593, + 2599, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -41848,19 +42383,19 @@ export default { 40 ], "order_by": [ - 2591, + 2597, "[match_map_veto_picks_order_by!]" ], "where": [ - 2582 + 2588 ] } ], "match_veto_picks_aggregate": [ - 2576, + 2582, { "distinct_on": [ - 2593, + 2599, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -41870,11 +42405,11 @@ export default { 40 ], "order_by": [ - 2591, + 2597, "[match_map_veto_picks_order_by!]" ], "where": [ - 2582 + 2588 ] } ], @@ -41882,10 +42417,10 @@ export default { 80 ], "team": [ - 4446 + 4452 ], "team_id": [ - 4993 + 4999 ], "team_name": [ 80 @@ -41896,10 +42431,10 @@ export default { }, "match_lineups_aggregate": { "aggregate": [ - 2445 + 2451 ], "nodes": [ - 2441 + 2447 ], "__typename": [ 80 @@ -41907,7 +42442,7 @@ export default { }, "match_lineups_aggregate_bool_exp": { "count": [ - 2444 + 2450 ], "__typename": [ 80 @@ -41915,13 +42450,13 @@ export default { }, "match_lineups_aggregate_bool_exp_count": { "arguments": [ - 2463 + 2469 ], "distinct": [ 5 ], "filter": [ - 2450 + 2456 ], "predicate": [ 41 @@ -41932,13 +42467,13 @@ export default { }, "match_lineups_aggregate_fields": { "avg": [ - 2448 + 2454 ], "count": [ 40, { "columns": [ - 2463, + 2469, "[match_lineups_select_column!]" ], "distinct": [ @@ -41947,31 +42482,31 @@ export default { } ], "max": [ - 2454 + 2460 ], "min": [ - 2456 + 2462 ], "stddev": [ - 2465 + 2471 ], "stddev_pop": [ - 2467 + 2473 ], "stddev_samp": [ - 2469 + 2475 ], "sum": [ - 2473 + 2479 ], "var_pop": [ - 2477 + 2483 ], "var_samp": [ - 2479 + 2485 ], "variance": [ - 2481 + 2487 ], "__typename": [ 80 @@ -41979,37 +42514,37 @@ export default { }, "match_lineups_aggregate_order_by": { "avg": [ - 2449 + 2455 ], "count": [ - 2946 + 2952 ], "max": [ - 2455 + 2461 ], "min": [ - 2457 + 2463 ], "stddev": [ - 2466 + 2472 ], "stddev_pop": [ - 2468 + 2474 ], "stddev_samp": [ - 2470 + 2476 ], "sum": [ - 2474 + 2480 ], "var_pop": [ - 2478 + 2484 ], "var_samp": [ - 2480 + 2486 ], "variance": [ - 2482 + 2488 ], "__typename": [ 80 @@ -42017,10 +42552,10 @@ export default { }, "match_lineups_arr_rel_insert_input": { "data": [ - 2453 + 2459 ], "on_conflict": [ - 2460 + 2466 ], "__typename": [ 80 @@ -42036,7 +42571,7 @@ export default { }, "match_lineups_avg_order_by": { "coach_steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -42044,13 +42579,13 @@ export default { }, "match_lineups_bool_exp": { "_and": [ - 2450 + 2456 ], "_not": [ - 2450 + 2456 ], "_or": [ - 2450 + 2456 ], "can_pick_map_veto": [ 6 @@ -42062,16 +42597,16 @@ export default { 6 ], "captain": [ - 5153 + 5159 ], "coach": [ - 3908 + 3914 ], "coach_steam_id": [ - 254 + 260 ], "id": [ - 4995 + 5001 ], "is_on_lineup": [ 6 @@ -42086,31 +42621,31 @@ export default { 6 ], "lineup_players": [ - 2407 + 2413 ], "lineup_players_aggregate": [ - 2398 + 2404 ], "match": [ - 2770 + 2776 ], "match_id": [ - 4995 + 5001 ], "match_veto_picks": [ - 2582 + 2588 ], "match_veto_picks_aggregate": [ - 2577 + 2583 ], "name": [ 82 ], "team": [ - 4457 + 4463 ], "team_id": [ - 4995 + 5001 ], "team_name": [ 82 @@ -42122,7 +42657,7 @@ export default { "match_lineups_constraint": {}, "match_lineups_inc_input": { "coach_steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -42130,34 +42665,34 @@ export default { }, "match_lineups_insert_input": { "captain": [ - 5159 + 5165 ], "coach": [ - 3915 + 3921 ], "coach_steam_id": [ - 252 + 258 ], "id": [ - 4993 + 4999 ], "lineup_players": [ - 2404 + 2410 ], "match": [ - 2779 + 2785 ], "match_id": [ - 4993 + 4999 ], "match_veto_picks": [ - 2581 + 2587 ], "team": [ - 4466 + 4472 ], "team_id": [ - 4993 + 4999 ], "team_name": [ 80 @@ -42168,19 +42703,19 @@ export default { }, "match_lineups_max_fields": { "coach_steam_id": [ - 252 + 258 ], "id": [ - 4993 + 4999 ], "match_id": [ - 4993 + 4999 ], "name": [ 80 ], "team_id": [ - 4993 + 4999 ], "team_name": [ 80 @@ -42191,19 +42726,19 @@ export default { }, "match_lineups_max_order_by": { "coach_steam_id": [ - 2946 + 2952 ], "id": [ - 2946 + 2952 ], "match_id": [ - 2946 + 2952 ], "team_id": [ - 2946 + 2952 ], "team_name": [ - 2946 + 2952 ], "__typename": [ 80 @@ -42211,19 +42746,19 @@ export default { }, "match_lineups_min_fields": { "coach_steam_id": [ - 252 + 258 ], "id": [ - 4993 + 4999 ], "match_id": [ - 4993 + 4999 ], "name": [ 80 ], "team_id": [ - 4993 + 4999 ], "team_name": [ 80 @@ -42234,19 +42769,19 @@ export default { }, "match_lineups_min_order_by": { "coach_steam_id": [ - 2946 + 2952 ], "id": [ - 2946 + 2952 ], "match_id": [ - 2946 + 2952 ], "team_id": [ - 2946 + 2952 ], "team_name": [ - 2946 + 2952 ], "__typename": [ 80 @@ -42257,7 +42792,7 @@ export default { 40 ], "returning": [ - 2441 + 2447 ], "__typename": [ 80 @@ -42265,10 +42800,10 @@ export default { }, "match_lineups_obj_rel_insert_input": { "data": [ - 2453 + 2459 ], "on_conflict": [ - 2460 + 2466 ], "__typename": [ 80 @@ -42276,13 +42811,13 @@ export default { }, "match_lineups_on_conflict": { "constraint": [ - 2451 + 2457 ], "update_columns": [ - 2475 + 2481 ], "where": [ - 2450 + 2456 ], "__typename": [ 80 @@ -42290,61 +42825,61 @@ export default { }, "match_lineups_order_by": { "can_pick_map_veto": [ - 2946 + 2952 ], "can_pick_region_veto": [ - 2946 + 2952 ], "can_update_lineup": [ - 2946 + 2952 ], "captain": [ - 5160 + 5166 ], "coach": [ - 3917 + 3923 ], "coach_steam_id": [ - 2946 + 2952 ], "id": [ - 2946 + 2952 ], "is_on_lineup": [ - 2946 + 2952 ], "is_picking_map_veto": [ - 2946 + 2952 ], "is_picking_region_veto": [ - 2946 + 2952 ], "is_ready": [ - 2946 + 2952 ], "lineup_players_aggregate": [ - 2403 + 2409 ], "match": [ - 2781 + 2787 ], "match_id": [ - 2946 + 2952 ], "match_veto_picks_aggregate": [ - 2580 + 2586 ], "name": [ - 2946 + 2952 ], "team": [ - 4468 + 4474 ], "team_id": [ - 2946 + 2952 ], "team_name": [ - 2946 + 2952 ], "__typename": [ 80 @@ -42352,7 +42887,7 @@ export default { }, "match_lineups_pk_columns_input": { "id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -42361,16 +42896,16 @@ export default { "match_lineups_select_column": {}, "match_lineups_set_input": { "coach_steam_id": [ - 252 + 258 ], "id": [ - 4993 + 4999 ], "match_id": [ - 4993 + 4999 ], "team_id": [ - 4993 + 4999 ], "team_name": [ 80 @@ -42389,7 +42924,7 @@ export default { }, "match_lineups_stddev_order_by": { "coach_steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -42405,7 +42940,7 @@ export default { }, "match_lineups_stddev_pop_order_by": { "coach_steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -42421,7 +42956,7 @@ export default { }, "match_lineups_stddev_samp_order_by": { "coach_steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -42429,10 +42964,10 @@ export default { }, "match_lineups_stream_cursor_input": { "initial_value": [ - 2472 + 2478 ], "ordering": [ - 308 + 314 ], "__typename": [ 80 @@ -42440,16 +42975,16 @@ export default { }, "match_lineups_stream_cursor_value_input": { "coach_steam_id": [ - 252 + 258 ], "id": [ - 4993 + 4999 ], "match_id": [ - 4993 + 4999 ], "team_id": [ - 4993 + 4999 ], "team_name": [ 80 @@ -42460,7 +42995,7 @@ export default { }, "match_lineups_sum_fields": { "coach_steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -42468,7 +43003,7 @@ export default { }, "match_lineups_sum_order_by": { "coach_steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -42477,13 +43012,13 @@ export default { "match_lineups_update_column": {}, "match_lineups_updates": { "_inc": [ - 2452 + 2458 ], "_set": [ - 2464 + 2470 ], "where": [ - 2450 + 2456 ], "__typename": [ 80 @@ -42499,7 +43034,7 @@ export default { }, "match_lineups_var_pop_order_by": { "coach_steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -42515,7 +43050,7 @@ export default { }, "match_lineups_var_samp_order_by": { "coach_steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -42531,7 +43066,7 @@ export default { }, "match_lineups_variance_order_by": { "coach_steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -42539,7 +43074,7 @@ export default { }, "match_map_demos": { "bombs": [ - 1817, + 1823, { "path": [ 80 @@ -42547,10 +43082,10 @@ export default { } ], "clip_render_jobs": [ - 257, + 263, { "distinct_on": [ - 285, + 291, "[clip_render_jobs_select_column!]" ], "limit": [ @@ -42560,19 +43095,19 @@ export default { 40 ], "order_by": [ - 282, + 288, "[clip_render_jobs_order_by!]" ], "where": [ - 269 + 275 ] } ], "clip_render_jobs_aggregate": [ - 258, + 264, { "distinct_on": [ - 285, + 291, "[clip_render_jobs_select_column!]" ], "limit": [ @@ -42582,25 +43117,25 @@ export default { 40 ], "order_by": [ - 282, + 288, "[clip_render_jobs_order_by!]" ], "where": [ - 269 + 275 ] } ], "created_at": [ - 4493 + 4499 ], "cs2_build": [ 80 ], "demo_sessions": [ - 2350, + 2356, { "distinct_on": [ - 2376, + 2382, "[match_demo_sessions_select_column!]" ], "limit": [ @@ -42610,19 +43145,19 @@ export default { 40 ], "order_by": [ - 2373, + 2379, "[match_demo_sessions_order_by!]" ], "where": [ - 2360 + 2366 ] } ], "demo_sessions_aggregate": [ - 2351, + 2357, { "distinct_on": [ - 2376, + 2382, "[match_demo_sessions_select_column!]" ], "limit": [ @@ -42632,11 +43167,11 @@ export default { 40 ], "order_by": [ - 2373, + 2379, "[match_demo_sessions_order_by!]" ], "where": [ - 2360 + 2366 ] } ], @@ -42653,10 +43188,10 @@ export default { 5 ], "id": [ - 4993 + 4999 ], "kills": [ - 1817, + 1823, { "path": [ 80 @@ -42667,13 +43202,13 @@ export default { 80 ], "match": [ - 2761 + 2767 ], "match_clips": [ - 2308, + 2314, { "distinct_on": [ - 2330, + 2336, "[match_clips_select_column!]" ], "limit": [ @@ -42683,19 +43218,19 @@ export default { 40 ], "order_by": [ - 2328, + 2334, "[match_clips_order_by!]" ], "where": [ - 2317 + 2323 ] } ], "match_clips_aggregate": [ - 2309, + 2315, { "distinct_on": [ - 2330, + 2336, "[match_clips_select_column!]" ], "limit": [ @@ -42705,25 +43240,25 @@ export default { 40 ], "order_by": [ - 2328, + 2334, "[match_clips_order_by!]" ], "where": [ - 2317 + 2323 ] } ], "match_id": [ - 4993 + 4999 ], "match_map": [ - 2599 + 2605 ], "match_map_id": [ - 4993 + 4999 ], "metadata_parsed_at": [ - 4493 + 4499 ], "playback_file": [ 80 @@ -42735,7 +43270,7 @@ export default { 80 ], "players": [ - 1817, + 1823, { "path": [ 80 @@ -42743,7 +43278,7 @@ export default { } ], "round_ticks": [ - 1817, + 1823, { "path": [ 80 @@ -42768,10 +43303,10 @@ export default { }, "match_map_demos_aggregate": { "aggregate": [ - 2489 + 2495 ], "nodes": [ - 2483 + 2489 ], "__typename": [ 80 @@ -42779,13 +43314,13 @@ export default { }, "match_map_demos_aggregate_bool_exp": { "bool_and": [ - 2486 + 2492 ], "bool_or": [ - 2487 + 2493 ], "count": [ - 2488 + 2494 ], "__typename": [ 80 @@ -42793,13 +43328,13 @@ export default { }, "match_map_demos_aggregate_bool_exp_bool_and": { "arguments": [ - 2513 + 2519 ], "distinct": [ 5 ], "filter": [ - 2495 + 2501 ], "predicate": [ 6 @@ -42810,13 +43345,13 @@ export default { }, "match_map_demos_aggregate_bool_exp_bool_or": { "arguments": [ - 2514 + 2520 ], "distinct": [ 5 ], "filter": [ - 2495 + 2501 ], "predicate": [ 6 @@ -42827,13 +43362,13 @@ export default { }, "match_map_demos_aggregate_bool_exp_count": { "arguments": [ - 2512 + 2518 ], "distinct": [ 5 ], "filter": [ - 2495 + 2501 ], "predicate": [ 41 @@ -42844,13 +43379,13 @@ export default { }, "match_map_demos_aggregate_fields": { "avg": [ - 2493 + 2499 ], "count": [ 40, { "columns": [ - 2512, + 2518, "[match_map_demos_select_column!]" ], "distinct": [ @@ -42859,31 +43394,31 @@ export default { } ], "max": [ - 2502 + 2508 ], "min": [ - 2504 + 2510 ], "stddev": [ - 2516 + 2522 ], "stddev_pop": [ - 2518 + 2524 ], "stddev_samp": [ - 2520 + 2526 ], "sum": [ - 2524 + 2530 ], "var_pop": [ - 2528 + 2534 ], "var_samp": [ - 2530 + 2536 ], "variance": [ - 2532 + 2538 ], "__typename": [ 80 @@ -42891,37 +43426,37 @@ export default { }, "match_map_demos_aggregate_order_by": { "avg": [ - 2494 + 2500 ], "count": [ - 2946 + 2952 ], "max": [ - 2503 + 2509 ], "min": [ - 2505 + 2511 ], "stddev": [ - 2517 + 2523 ], "stddev_pop": [ - 2519 + 2525 ], "stddev_samp": [ - 2521 + 2527 ], "sum": [ - 2525 + 2531 ], "var_pop": [ - 2529 + 2535 ], "var_samp": [ - 2531 + 2537 ], "variance": [ - 2533 + 2539 ], "__typename": [ 80 @@ -42929,16 +43464,16 @@ export default { }, "match_map_demos_append_input": { "bombs": [ - 1817 + 1823 ], "kills": [ - 1817 + 1823 ], "players": [ - 1817 + 1823 ], "round_ticks": [ - 1817 + 1823 ], "__typename": [ 80 @@ -42946,10 +43481,10 @@ export default { }, "match_map_demos_arr_rel_insert_input": { "data": [ - 2501 + 2507 ], "on_conflict": [ - 2508 + 2514 ], "__typename": [ 80 @@ -42977,19 +43512,19 @@ export default { }, "match_map_demos_avg_order_by": { "duration_seconds": [ - 2946 + 2952 ], "playback_size": [ - 2946 + 2952 ], "size": [ - 2946 + 2952 ], "tick_rate": [ - 2946 + 2952 ], "total_ticks": [ - 2946 + 2952 ], "__typename": [ 80 @@ -42997,34 +43532,34 @@ export default { }, "match_map_demos_bool_exp": { "_and": [ - 2495 + 2501 ], "_not": [ - 2495 + 2501 ], "_or": [ - 2495 + 2501 ], "bombs": [ - 1819 + 1825 ], "clip_render_jobs": [ - 269 + 275 ], "clip_render_jobs_aggregate": [ - 259 + 265 ], "created_at": [ - 4494 + 4500 ], "cs2_build": [ 82 ], "demo_sessions": [ - 2360 + 2366 ], "demo_sessions_aggregate": [ - 2352 + 2358 ], "download_url": [ 82 @@ -43039,34 +43574,34 @@ export default { 6 ], "id": [ - 4995 + 5001 ], "kills": [ - 1819 + 1825 ], "map_name": [ 82 ], "match": [ - 2770 + 2776 ], "match_clips": [ - 2317 + 2323 ], "match_clips_aggregate": [ - 2310 + 2316 ], "match_id": [ - 4995 + 5001 ], "match_map": [ - 2608 + 2614 ], "match_map_id": [ - 4995 + 5001 ], "metadata_parsed_at": [ - 4494 + 4500 ], "playback_file": [ 82 @@ -43078,10 +43613,10 @@ export default { 82 ], "players": [ - 1819 + 1825 ], "round_ticks": [ - 1819 + 1825 ], "size": [ 41 @@ -43170,19 +43705,19 @@ export default { }, "match_map_demos_insert_input": { "bombs": [ - 1817 + 1823 ], "clip_render_jobs": [ - 266 + 272 ], "created_at": [ - 4493 + 4499 ], "cs2_build": [ 80 ], "demo_sessions": [ - 2357 + 2363 ], "file": [ 80 @@ -43191,31 +43726,31 @@ export default { 5 ], "id": [ - 4993 + 4999 ], "kills": [ - 1817 + 1823 ], "map_name": [ 80 ], "match": [ - 2779 + 2785 ], "match_clips": [ - 2314 + 2320 ], "match_id": [ - 4993 + 4999 ], "match_map": [ - 2617 + 2623 ], "match_map_id": [ - 4993 + 4999 ], "metadata_parsed_at": [ - 4493 + 4499 ], "playback_file": [ 80 @@ -43224,10 +43759,10 @@ export default { 40 ], "players": [ - 1817 + 1823 ], "round_ticks": [ - 1817 + 1823 ], "size": [ 40 @@ -43247,7 +43782,7 @@ export default { }, "match_map_demos_max_fields": { "created_at": [ - 4493 + 4499 ], "cs2_build": [ 80 @@ -43262,19 +43797,19 @@ export default { 80 ], "id": [ - 4993 + 4999 ], "map_name": [ 80 ], "match_id": [ - 4993 + 4999 ], "match_map_id": [ - 4993 + 4999 ], "metadata_parsed_at": [ - 4493 + 4499 ], "playback_file": [ 80 @@ -43303,49 +43838,49 @@ export default { }, "match_map_demos_max_order_by": { "created_at": [ - 2946 + 2952 ], "cs2_build": [ - 2946 + 2952 ], "duration_seconds": [ - 2946 + 2952 ], "file": [ - 2946 + 2952 ], "id": [ - 2946 + 2952 ], "map_name": [ - 2946 + 2952 ], "match_id": [ - 2946 + 2952 ], "match_map_id": [ - 2946 + 2952 ], "metadata_parsed_at": [ - 2946 + 2952 ], "playback_file": [ - 2946 + 2952 ], "playback_size": [ - 2946 + 2952 ], "size": [ - 2946 + 2952 ], "tick_rate": [ - 2946 + 2952 ], "total_ticks": [ - 2946 + 2952 ], "workshop_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -43353,7 +43888,7 @@ export default { }, "match_map_demos_min_fields": { "created_at": [ - 4493 + 4499 ], "cs2_build": [ 80 @@ -43368,19 +43903,19 @@ export default { 80 ], "id": [ - 4993 + 4999 ], "map_name": [ 80 ], "match_id": [ - 4993 + 4999 ], "match_map_id": [ - 4993 + 4999 ], "metadata_parsed_at": [ - 4493 + 4499 ], "playback_file": [ 80 @@ -43409,49 +43944,49 @@ export default { }, "match_map_demos_min_order_by": { "created_at": [ - 2946 + 2952 ], "cs2_build": [ - 2946 + 2952 ], "duration_seconds": [ - 2946 + 2952 ], "file": [ - 2946 + 2952 ], "id": [ - 2946 + 2952 ], "map_name": [ - 2946 + 2952 ], "match_id": [ - 2946 + 2952 ], "match_map_id": [ - 2946 + 2952 ], "metadata_parsed_at": [ - 2946 + 2952 ], "playback_file": [ - 2946 + 2952 ], "playback_size": [ - 2946 + 2952 ], "size": [ - 2946 + 2952 ], "tick_rate": [ - 2946 + 2952 ], "total_ticks": [ - 2946 + 2952 ], "workshop_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -43462,7 +43997,7 @@ export default { 40 ], "returning": [ - 2483 + 2489 ], "__typename": [ 80 @@ -43470,10 +44005,10 @@ export default { }, "match_map_demos_obj_rel_insert_input": { "data": [ - 2501 + 2507 ], "on_conflict": [ - 2508 + 2514 ], "__typename": [ 80 @@ -43481,13 +44016,13 @@ export default { }, "match_map_demos_on_conflict": { "constraint": [ - 2496 + 2502 ], "update_columns": [ - 2526 + 2532 ], "where": [ - 2495 + 2501 ], "__typename": [ 80 @@ -43495,85 +44030,85 @@ export default { }, "match_map_demos_order_by": { "bombs": [ - 2946 + 2952 ], "clip_render_jobs_aggregate": [ - 264 + 270 ], "created_at": [ - 2946 + 2952 ], "cs2_build": [ - 2946 + 2952 ], "demo_sessions_aggregate": [ - 2355 + 2361 ], "download_url": [ - 2946 + 2952 ], "duration_seconds": [ - 2946 + 2952 ], "file": [ - 2946 + 2952 ], "geometry_validated": [ - 2946 + 2952 ], "id": [ - 2946 + 2952 ], "kills": [ - 2946 + 2952 ], "map_name": [ - 2946 + 2952 ], "match": [ - 2781 + 2787 ], "match_clips_aggregate": [ - 2313 + 2319 ], "match_id": [ - 2946 + 2952 ], "match_map": [ - 2619 + 2625 ], "match_map_id": [ - 2946 + 2952 ], "metadata_parsed_at": [ - 2946 + 2952 ], "playback_file": [ - 2946 + 2952 ], "playback_size": [ - 2946 + 2952 ], "playback_url": [ - 2946 + 2952 ], "players": [ - 2946 + 2952 ], "round_ticks": [ - 2946 + 2952 ], "size": [ - 2946 + 2952 ], "tick_rate": [ - 2946 + 2952 ], "total_ticks": [ - 2946 + 2952 ], "workshop_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -43581,7 +44116,7 @@ export default { }, "match_map_demos_pk_columns_input": { "id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -43589,16 +44124,16 @@ export default { }, "match_map_demos_prepend_input": { "bombs": [ - 1817 + 1823 ], "kills": [ - 1817 + 1823 ], "players": [ - 1817 + 1823 ], "round_ticks": [ - 1817 + 1823 ], "__typename": [ 80 @@ -43609,10 +44144,10 @@ export default { "match_map_demos_select_column_match_map_demos_aggregate_bool_exp_bool_or_arguments_columns": {}, "match_map_demos_set_input": { "bombs": [ - 1817 + 1823 ], "created_at": [ - 4493 + 4499 ], "cs2_build": [ 80 @@ -43624,22 +44159,22 @@ export default { 5 ], "id": [ - 4993 + 4999 ], "kills": [ - 1817 + 1823 ], "map_name": [ 80 ], "match_id": [ - 4993 + 4999 ], "match_map_id": [ - 4993 + 4999 ], "metadata_parsed_at": [ - 4493 + 4499 ], "playback_file": [ 80 @@ -43648,10 +44183,10 @@ export default { 40 ], "players": [ - 1817 + 1823 ], "round_ticks": [ - 1817 + 1823 ], "size": [ 40 @@ -43691,19 +44226,19 @@ export default { }, "match_map_demos_stddev_order_by": { "duration_seconds": [ - 2946 + 2952 ], "playback_size": [ - 2946 + 2952 ], "size": [ - 2946 + 2952 ], "tick_rate": [ - 2946 + 2952 ], "total_ticks": [ - 2946 + 2952 ], "__typename": [ 80 @@ -43731,19 +44266,19 @@ export default { }, "match_map_demos_stddev_pop_order_by": { "duration_seconds": [ - 2946 + 2952 ], "playback_size": [ - 2946 + 2952 ], "size": [ - 2946 + 2952 ], "tick_rate": [ - 2946 + 2952 ], "total_ticks": [ - 2946 + 2952 ], "__typename": [ 80 @@ -43771,19 +44306,19 @@ export default { }, "match_map_demos_stddev_samp_order_by": { "duration_seconds": [ - 2946 + 2952 ], "playback_size": [ - 2946 + 2952 ], "size": [ - 2946 + 2952 ], "tick_rate": [ - 2946 + 2952 ], "total_ticks": [ - 2946 + 2952 ], "__typename": [ 80 @@ -43791,10 +44326,10 @@ export default { }, "match_map_demos_stream_cursor_input": { "initial_value": [ - 2523 + 2529 ], "ordering": [ - 308 + 314 ], "__typename": [ 80 @@ -43802,10 +44337,10 @@ export default { }, "match_map_demos_stream_cursor_value_input": { "bombs": [ - 1817 + 1823 ], "created_at": [ - 4493 + 4499 ], "cs2_build": [ 80 @@ -43820,22 +44355,22 @@ export default { 5 ], "id": [ - 4993 + 4999 ], "kills": [ - 1817 + 1823 ], "map_name": [ 80 ], "match_id": [ - 4993 + 4999 ], "match_map_id": [ - 4993 + 4999 ], "metadata_parsed_at": [ - 4493 + 4499 ], "playback_file": [ 80 @@ -43844,10 +44379,10 @@ export default { 40 ], "players": [ - 1817 + 1823 ], "round_ticks": [ - 1817 + 1823 ], "size": [ 40 @@ -43887,19 +44422,19 @@ export default { }, "match_map_demos_sum_order_by": { "duration_seconds": [ - 2946 + 2952 ], "playback_size": [ - 2946 + 2952 ], "size": [ - 2946 + 2952 ], "tick_rate": [ - 2946 + 2952 ], "total_ticks": [ - 2946 + 2952 ], "__typename": [ 80 @@ -43908,28 +44443,28 @@ export default { "match_map_demos_update_column": {}, "match_map_demos_updates": { "_append": [ - 2491 + 2497 ], "_delete_at_path": [ - 2497 + 2503 ], "_delete_elem": [ - 2498 + 2504 ], "_delete_key": [ - 2499 + 2505 ], "_inc": [ - 2500 + 2506 ], "_prepend": [ - 2511 + 2517 ], "_set": [ - 2515 + 2521 ], "where": [ - 2495 + 2501 ], "__typename": [ 80 @@ -43957,19 +44492,19 @@ export default { }, "match_map_demos_var_pop_order_by": { "duration_seconds": [ - 2946 + 2952 ], "playback_size": [ - 2946 + 2952 ], "size": [ - 2946 + 2952 ], "tick_rate": [ - 2946 + 2952 ], "total_ticks": [ - 2946 + 2952 ], "__typename": [ 80 @@ -43997,19 +44532,19 @@ export default { }, "match_map_demos_var_samp_order_by": { "duration_seconds": [ - 2946 + 2952 ], "playback_size": [ - 2946 + 2952 ], "size": [ - 2946 + 2952 ], "tick_rate": [ - 2946 + 2952 ], "total_ticks": [ - 2946 + 2952 ], "__typename": [ 80 @@ -44037,19 +44572,19 @@ export default { }, "match_map_demos_variance_order_by": { "duration_seconds": [ - 2946 + 2952 ], "playback_size": [ - 2946 + 2952 ], "size": [ - 2946 + 2952 ], "tick_rate": [ - 2946 + 2952 ], "total_ticks": [ - 2946 + 2952 ], "__typename": [ 80 @@ -44057,10 +44592,10 @@ export default { }, "match_map_rounds": { "assists": [ - 3084, + 3090, { "distinct_on": [ - 3107, + 3113, "[player_assists_select_column!]" ], "limit": [ @@ -44070,19 +44605,19 @@ export default { 40 ], "order_by": [ - 3105, + 3111, "[player_assists_order_by!]" ], "where": [ - 3095 + 3101 ] } ], "assists_aggregate": [ - 3085, + 3091, { "distinct_on": [ - 3107, + 3113, "[player_assists_select_column!]" ], "limit": [ @@ -44092,11 +44627,11 @@ export default { 40 ], "order_by": [ - 3105, + 3111, "[player_assists_order_by!]" ], "where": [ - 3095 + 3101 ] } ], @@ -44104,22 +44639,22 @@ export default { 80 ], "created_at": [ - 4493 + 4499 ], "deleted_at": [ - 4493 + 4499 ], "has_backup_file": [ 5 ], "id": [ - 4993 + 4999 ], "kills": [ - 3301, + 3307, { "distinct_on": [ - 3365, + 3371, "[player_kills_select_column!]" ], "limit": [ @@ -44129,19 +44664,19 @@ export default { 40 ], "order_by": [ - 3363, + 3369, "[player_kills_order_by!]" ], "where": [ - 3312 + 3318 ] } ], "kills_aggregate": [ - 3302, + 3308, { "distinct_on": [ - 3365, + 3371, "[player_kills_select_column!]" ], "limit": [ @@ -44151,11 +44686,11 @@ export default { 40 ], "order_by": [ - 3363, + 3369, "[player_kills_order_by!]" ], "where": [ - 3312 + 3318 ] } ], @@ -44166,7 +44701,7 @@ export default { 40 ], "lineup_1_side": [ - 1186 + 1192 ], "lineup_1_timeouts_available": [ 40 @@ -44178,25 +44713,25 @@ export default { 40 ], "lineup_2_side": [ - 1186 + 1192 ], "lineup_2_timeouts_available": [ 40 ], "match_map": [ - 2599 + 2605 ], "match_map_id": [ - 4993 + 4999 ], "round": [ 40 ], "time": [ - 4493 + 4499 ], "winning_reason": [ - 1390 + 1396 ], "winning_side": [ 80 @@ -44207,10 +44742,10 @@ export default { }, "match_map_rounds_aggregate": { "aggregate": [ - 2538 + 2544 ], "nodes": [ - 2534 + 2540 ], "__typename": [ 80 @@ -44218,7 +44753,7 @@ export default { }, "match_map_rounds_aggregate_bool_exp": { "count": [ - 2537 + 2543 ], "__typename": [ 80 @@ -44226,13 +44761,13 @@ export default { }, "match_map_rounds_aggregate_bool_exp_count": { "arguments": [ - 2555 + 2561 ], "distinct": [ 5 ], "filter": [ - 2543 + 2549 ], "predicate": [ 41 @@ -44243,13 +44778,13 @@ export default { }, "match_map_rounds_aggregate_fields": { "avg": [ - 2541 + 2547 ], "count": [ 40, { "columns": [ - 2555, + 2561, "[match_map_rounds_select_column!]" ], "distinct": [ @@ -44258,31 +44793,31 @@ export default { } ], "max": [ - 2547 + 2553 ], "min": [ - 2549 + 2555 ], "stddev": [ - 2557 + 2563 ], "stddev_pop": [ - 2559 + 2565 ], "stddev_samp": [ - 2561 + 2567 ], "sum": [ - 2565 + 2571 ], "var_pop": [ - 2569 + 2575 ], "var_samp": [ - 2571 + 2577 ], "variance": [ - 2573 + 2579 ], "__typename": [ 80 @@ -44290,37 +44825,37 @@ export default { }, "match_map_rounds_aggregate_order_by": { "avg": [ - 2542 + 2548 ], "count": [ - 2946 + 2952 ], "max": [ - 2548 + 2554 ], "min": [ - 2550 + 2556 ], "stddev": [ - 2558 + 2564 ], "stddev_pop": [ - 2560 + 2566 ], "stddev_samp": [ - 2562 + 2568 ], "sum": [ - 2566 + 2572 ], "var_pop": [ - 2570 + 2576 ], "var_samp": [ - 2572 + 2578 ], "variance": [ - 2574 + 2580 ], "__typename": [ 80 @@ -44328,10 +44863,10 @@ export default { }, "match_map_rounds_arr_rel_insert_input": { "data": [ - 2546 + 2552 ], "on_conflict": [ - 2552 + 2558 ], "__typename": [ 80 @@ -44365,25 +44900,25 @@ export default { }, "match_map_rounds_avg_order_by": { "lineup_1_money": [ - 2946 + 2952 ], "lineup_1_score": [ - 2946 + 2952 ], "lineup_1_timeouts_available": [ - 2946 + 2952 ], "lineup_2_money": [ - 2946 + 2952 ], "lineup_2_score": [ - 2946 + 2952 ], "lineup_2_timeouts_available": [ - 2946 + 2952 ], "round": [ - 2946 + 2952 ], "__typename": [ 80 @@ -44391,40 +44926,40 @@ export default { }, "match_map_rounds_bool_exp": { "_and": [ - 2543 + 2549 ], "_not": [ - 2543 + 2549 ], "_or": [ - 2543 + 2549 ], "assists": [ - 3095 + 3101 ], "assists_aggregate": [ - 3086 + 3092 ], "backup_file": [ 82 ], "created_at": [ - 4494 + 4500 ], "deleted_at": [ - 4494 + 4500 ], "has_backup_file": [ 6 ], "id": [ - 4995 + 5001 ], "kills": [ - 3312 + 3318 ], "kills_aggregate": [ - 3303 + 3309 ], "lineup_1_money": [ 41 @@ -44433,7 +44968,7 @@ export default { 41 ], "lineup_1_side": [ - 1187 + 1193 ], "lineup_1_timeouts_available": [ 41 @@ -44445,25 +44980,25 @@ export default { 41 ], "lineup_2_side": [ - 1187 + 1193 ], "lineup_2_timeouts_available": [ 41 ], "match_map": [ - 2608 + 2614 ], "match_map_id": [ - 4995 + 5001 ], "round": [ 41 ], "time": [ - 4494 + 4500 ], "winning_reason": [ - 1391 + 1397 ], "winning_side": [ 82 @@ -44501,22 +45036,22 @@ export default { }, "match_map_rounds_insert_input": { "assists": [ - 3092 + 3098 ], "backup_file": [ 80 ], "created_at": [ - 4493 + 4499 ], "deleted_at": [ - 4493 + 4499 ], "id": [ - 4993 + 4999 ], "kills": [ - 3309 + 3315 ], "lineup_1_money": [ 40 @@ -44525,7 +45060,7 @@ export default { 40 ], "lineup_1_side": [ - 1186 + 1192 ], "lineup_1_timeouts_available": [ 40 @@ -44537,25 +45072,25 @@ export default { 40 ], "lineup_2_side": [ - 1186 + 1192 ], "lineup_2_timeouts_available": [ 40 ], "match_map": [ - 2617 + 2623 ], "match_map_id": [ - 4993 + 4999 ], "round": [ 40 ], "time": [ - 4493 + 4499 ], "winning_reason": [ - 1390 + 1396 ], "winning_side": [ 80 @@ -44569,13 +45104,13 @@ export default { 80 ], "created_at": [ - 4493 + 4499 ], "deleted_at": [ - 4493 + 4499 ], "id": [ - 4993 + 4999 ], "lineup_1_money": [ 40 @@ -44596,13 +45131,13 @@ export default { 40 ], "match_map_id": [ - 4993 + 4999 ], "round": [ 40 ], "time": [ - 4493 + 4499 ], "winning_side": [ 80 @@ -44613,46 +45148,46 @@ export default { }, "match_map_rounds_max_order_by": { "backup_file": [ - 2946 + 2952 ], "created_at": [ - 2946 + 2952 ], "deleted_at": [ - 2946 + 2952 ], "id": [ - 2946 + 2952 ], "lineup_1_money": [ - 2946 + 2952 ], "lineup_1_score": [ - 2946 + 2952 ], "lineup_1_timeouts_available": [ - 2946 + 2952 ], "lineup_2_money": [ - 2946 + 2952 ], "lineup_2_score": [ - 2946 + 2952 ], "lineup_2_timeouts_available": [ - 2946 + 2952 ], "match_map_id": [ - 2946 + 2952 ], "round": [ - 2946 + 2952 ], "time": [ - 2946 + 2952 ], "winning_side": [ - 2946 + 2952 ], "__typename": [ 80 @@ -44663,13 +45198,13 @@ export default { 80 ], "created_at": [ - 4493 + 4499 ], "deleted_at": [ - 4493 + 4499 ], "id": [ - 4993 + 4999 ], "lineup_1_money": [ 40 @@ -44690,13 +45225,13 @@ export default { 40 ], "match_map_id": [ - 4993 + 4999 ], "round": [ 40 ], "time": [ - 4493 + 4499 ], "winning_side": [ 80 @@ -44707,46 +45242,46 @@ export default { }, "match_map_rounds_min_order_by": { "backup_file": [ - 2946 + 2952 ], "created_at": [ - 2946 + 2952 ], "deleted_at": [ - 2946 + 2952 ], "id": [ - 2946 + 2952 ], "lineup_1_money": [ - 2946 + 2952 ], "lineup_1_score": [ - 2946 + 2952 ], "lineup_1_timeouts_available": [ - 2946 + 2952 ], "lineup_2_money": [ - 2946 + 2952 ], "lineup_2_score": [ - 2946 + 2952 ], "lineup_2_timeouts_available": [ - 2946 + 2952 ], "match_map_id": [ - 2946 + 2952 ], "round": [ - 2946 + 2952 ], "time": [ - 2946 + 2952 ], "winning_side": [ - 2946 + 2952 ], "__typename": [ 80 @@ -44757,7 +45292,7 @@ export default { 40 ], "returning": [ - 2534 + 2540 ], "__typename": [ 80 @@ -44765,13 +45300,13 @@ export default { }, "match_map_rounds_on_conflict": { "constraint": [ - 2544 + 2550 ], "update_columns": [ - 2567 + 2573 ], "where": [ - 2543 + 2549 ], "__typename": [ 80 @@ -44779,67 +45314,67 @@ export default { }, "match_map_rounds_order_by": { "assists_aggregate": [ - 3091 + 3097 ], "backup_file": [ - 2946 + 2952 ], "created_at": [ - 2946 + 2952 ], "deleted_at": [ - 2946 + 2952 ], "has_backup_file": [ - 2946 + 2952 ], "id": [ - 2946 + 2952 ], "kills_aggregate": [ - 3308 + 3314 ], "lineup_1_money": [ - 2946 + 2952 ], "lineup_1_score": [ - 2946 + 2952 ], "lineup_1_side": [ - 2946 + 2952 ], "lineup_1_timeouts_available": [ - 2946 + 2952 ], "lineup_2_money": [ - 2946 + 2952 ], "lineup_2_score": [ - 2946 + 2952 ], "lineup_2_side": [ - 2946 + 2952 ], "lineup_2_timeouts_available": [ - 2946 + 2952 ], "match_map": [ - 2619 + 2625 ], "match_map_id": [ - 2946 + 2952 ], "round": [ - 2946 + 2952 ], "time": [ - 2946 + 2952 ], "winning_reason": [ - 2946 + 2952 ], "winning_side": [ - 2946 + 2952 ], "__typename": [ 80 @@ -44847,7 +45382,7 @@ export default { }, "match_map_rounds_pk_columns_input": { "id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -44859,13 +45394,13 @@ export default { 80 ], "created_at": [ - 4493 + 4499 ], "deleted_at": [ - 4493 + 4499 ], "id": [ - 4993 + 4999 ], "lineup_1_money": [ 40 @@ -44874,7 +45409,7 @@ export default { 40 ], "lineup_1_side": [ - 1186 + 1192 ], "lineup_1_timeouts_available": [ 40 @@ -44886,22 +45421,22 @@ export default { 40 ], "lineup_2_side": [ - 1186 + 1192 ], "lineup_2_timeouts_available": [ 40 ], "match_map_id": [ - 4993 + 4999 ], "round": [ 40 ], "time": [ - 4493 + 4499 ], "winning_reason": [ - 1390 + 1396 ], "winning_side": [ 80 @@ -44938,25 +45473,25 @@ export default { }, "match_map_rounds_stddev_order_by": { "lineup_1_money": [ - 2946 + 2952 ], "lineup_1_score": [ - 2946 + 2952 ], "lineup_1_timeouts_available": [ - 2946 + 2952 ], "lineup_2_money": [ - 2946 + 2952 ], "lineup_2_score": [ - 2946 + 2952 ], "lineup_2_timeouts_available": [ - 2946 + 2952 ], "round": [ - 2946 + 2952 ], "__typename": [ 80 @@ -44990,25 +45525,25 @@ export default { }, "match_map_rounds_stddev_pop_order_by": { "lineup_1_money": [ - 2946 + 2952 ], "lineup_1_score": [ - 2946 + 2952 ], "lineup_1_timeouts_available": [ - 2946 + 2952 ], "lineup_2_money": [ - 2946 + 2952 ], "lineup_2_score": [ - 2946 + 2952 ], "lineup_2_timeouts_available": [ - 2946 + 2952 ], "round": [ - 2946 + 2952 ], "__typename": [ 80 @@ -45042,25 +45577,25 @@ export default { }, "match_map_rounds_stddev_samp_order_by": { "lineup_1_money": [ - 2946 + 2952 ], "lineup_1_score": [ - 2946 + 2952 ], "lineup_1_timeouts_available": [ - 2946 + 2952 ], "lineup_2_money": [ - 2946 + 2952 ], "lineup_2_score": [ - 2946 + 2952 ], "lineup_2_timeouts_available": [ - 2946 + 2952 ], "round": [ - 2946 + 2952 ], "__typename": [ 80 @@ -45068,10 +45603,10 @@ export default { }, "match_map_rounds_stream_cursor_input": { "initial_value": [ - 2564 + 2570 ], "ordering": [ - 308 + 314 ], "__typename": [ 80 @@ -45082,13 +45617,13 @@ export default { 80 ], "created_at": [ - 4493 + 4499 ], "deleted_at": [ - 4493 + 4499 ], "id": [ - 4993 + 4999 ], "lineup_1_money": [ 40 @@ -45097,7 +45632,7 @@ export default { 40 ], "lineup_1_side": [ - 1186 + 1192 ], "lineup_1_timeouts_available": [ 40 @@ -45109,22 +45644,22 @@ export default { 40 ], "lineup_2_side": [ - 1186 + 1192 ], "lineup_2_timeouts_available": [ 40 ], "match_map_id": [ - 4993 + 4999 ], "round": [ 40 ], "time": [ - 4493 + 4499 ], "winning_reason": [ - 1390 + 1396 ], "winning_side": [ 80 @@ -45161,25 +45696,25 @@ export default { }, "match_map_rounds_sum_order_by": { "lineup_1_money": [ - 2946 + 2952 ], "lineup_1_score": [ - 2946 + 2952 ], "lineup_1_timeouts_available": [ - 2946 + 2952 ], "lineup_2_money": [ - 2946 + 2952 ], "lineup_2_score": [ - 2946 + 2952 ], "lineup_2_timeouts_available": [ - 2946 + 2952 ], "round": [ - 2946 + 2952 ], "__typename": [ 80 @@ -45188,13 +45723,13 @@ export default { "match_map_rounds_update_column": {}, "match_map_rounds_updates": { "_inc": [ - 2545 + 2551 ], "_set": [ - 2556 + 2562 ], "where": [ - 2543 + 2549 ], "__typename": [ 80 @@ -45228,25 +45763,25 @@ export default { }, "match_map_rounds_var_pop_order_by": { "lineup_1_money": [ - 2946 + 2952 ], "lineup_1_score": [ - 2946 + 2952 ], "lineup_1_timeouts_available": [ - 2946 + 2952 ], "lineup_2_money": [ - 2946 + 2952 ], "lineup_2_score": [ - 2946 + 2952 ], "lineup_2_timeouts_available": [ - 2946 + 2952 ], "round": [ - 2946 + 2952 ], "__typename": [ 80 @@ -45280,25 +45815,25 @@ export default { }, "match_map_rounds_var_samp_order_by": { "lineup_1_money": [ - 2946 + 2952 ], "lineup_1_score": [ - 2946 + 2952 ], "lineup_1_timeouts_available": [ - 2946 + 2952 ], "lineup_2_money": [ - 2946 + 2952 ], "lineup_2_score": [ - 2946 + 2952 ], "lineup_2_timeouts_available": [ - 2946 + 2952 ], "round": [ - 2946 + 2952 ], "__typename": [ 80 @@ -45332,25 +45867,25 @@ export default { }, "match_map_rounds_variance_order_by": { "lineup_1_money": [ - 2946 + 2952 ], "lineup_1_score": [ - 2946 + 2952 ], "lineup_1_timeouts_available": [ - 2946 + 2952 ], "lineup_2_money": [ - 2946 + 2952 ], "lineup_2_score": [ - 2946 + 2952 ], "lineup_2_timeouts_available": [ - 2946 + 2952 ], "round": [ - 2946 + 2952 ], "__typename": [ 80 @@ -45358,34 +45893,34 @@ export default { }, "match_map_veto_picks": { "created_at": [ - 4493 + 4499 ], "id": [ - 4993 + 4999 ], "map": [ - 2279 + 2285 ], "map_id": [ - 4993 + 4999 ], "match": [ - 2761 + 2767 ], "match_id": [ - 4993 + 4999 ], "match_lineup": [ - 2441 + 2447 ], "match_lineup_id": [ - 4993 + 4999 ], "side": [ 80 ], "type": [ - 1370 + 1376 ], "__typename": [ 80 @@ -45393,10 +45928,10 @@ export default { }, "match_map_veto_picks_aggregate": { "aggregate": [ - 2579 + 2585 ], "nodes": [ - 2575 + 2581 ], "__typename": [ 80 @@ -45404,7 +45939,7 @@ export default { }, "match_map_veto_picks_aggregate_bool_exp": { "count": [ - 2578 + 2584 ], "__typename": [ 80 @@ -45412,13 +45947,13 @@ export default { }, "match_map_veto_picks_aggregate_bool_exp_count": { "arguments": [ - 2593 + 2599 ], "distinct": [ 5 ], "filter": [ - 2582 + 2588 ], "predicate": [ 41 @@ -45432,7 +45967,7 @@ export default { 40, { "columns": [ - 2593, + 2599, "[match_map_veto_picks_select_column!]" ], "distinct": [ @@ -45441,10 +45976,10 @@ export default { } ], "max": [ - 2585 + 2591 ], "min": [ - 2587 + 2593 ], "__typename": [ 80 @@ -45452,13 +45987,13 @@ export default { }, "match_map_veto_picks_aggregate_order_by": { "count": [ - 2946 + 2952 ], "max": [ - 2586 + 2592 ], "min": [ - 2588 + 2594 ], "__typename": [ 80 @@ -45466,10 +46001,10 @@ export default { }, "match_map_veto_picks_arr_rel_insert_input": { "data": [ - 2584 + 2590 ], "on_conflict": [ - 2590 + 2596 ], "__typename": [ 80 @@ -45477,43 +46012,43 @@ export default { }, "match_map_veto_picks_bool_exp": { "_and": [ - 2582 + 2588 ], "_not": [ - 2582 + 2588 ], "_or": [ - 2582 + 2588 ], "created_at": [ - 4494 + 4500 ], "id": [ - 4995 + 5001 ], "map": [ - 2288 + 2294 ], "map_id": [ - 4995 + 5001 ], "match": [ - 2770 + 2776 ], "match_id": [ - 4995 + 5001 ], "match_lineup": [ - 2450 + 2456 ], "match_lineup_id": [ - 4995 + 5001 ], "side": [ 82 ], "type": [ - 1371 + 1377 ], "__typename": [ 80 @@ -45522,34 +46057,34 @@ export default { "match_map_veto_picks_constraint": {}, "match_map_veto_picks_insert_input": { "created_at": [ - 4493 + 4499 ], "id": [ - 4993 + 4999 ], "map": [ - 2296 + 2302 ], "map_id": [ - 4993 + 4999 ], "match": [ - 2779 + 2785 ], "match_id": [ - 4993 + 4999 ], "match_lineup": [ - 2459 + 2465 ], "match_lineup_id": [ - 4993 + 4999 ], "side": [ 80 ], "type": [ - 1370 + 1376 ], "__typename": [ 80 @@ -45557,19 +46092,19 @@ export default { }, "match_map_veto_picks_max_fields": { "created_at": [ - 4493 + 4499 ], "id": [ - 4993 + 4999 ], "map_id": [ - 4993 + 4999 ], "match_id": [ - 4993 + 4999 ], "match_lineup_id": [ - 4993 + 4999 ], "side": [ 80 @@ -45580,22 +46115,22 @@ export default { }, "match_map_veto_picks_max_order_by": { "created_at": [ - 2946 + 2952 ], "id": [ - 2946 + 2952 ], "map_id": [ - 2946 + 2952 ], "match_id": [ - 2946 + 2952 ], "match_lineup_id": [ - 2946 + 2952 ], "side": [ - 2946 + 2952 ], "__typename": [ 80 @@ -45603,19 +46138,19 @@ export default { }, "match_map_veto_picks_min_fields": { "created_at": [ - 4493 + 4499 ], "id": [ - 4993 + 4999 ], "map_id": [ - 4993 + 4999 ], "match_id": [ - 4993 + 4999 ], "match_lineup_id": [ - 4993 + 4999 ], "side": [ 80 @@ -45626,22 +46161,22 @@ export default { }, "match_map_veto_picks_min_order_by": { "created_at": [ - 2946 + 2952 ], "id": [ - 2946 + 2952 ], "map_id": [ - 2946 + 2952 ], "match_id": [ - 2946 + 2952 ], "match_lineup_id": [ - 2946 + 2952 ], "side": [ - 2946 + 2952 ], "__typename": [ 80 @@ -45652,7 +46187,7 @@ export default { 40 ], "returning": [ - 2575 + 2581 ], "__typename": [ 80 @@ -45660,13 +46195,13 @@ export default { }, "match_map_veto_picks_on_conflict": { "constraint": [ - 2583 + 2589 ], "update_columns": [ - 2597 + 2603 ], "where": [ - 2582 + 2588 ], "__typename": [ 80 @@ -45674,34 +46209,34 @@ export default { }, "match_map_veto_picks_order_by": { "created_at": [ - 2946 + 2952 ], "id": [ - 2946 + 2952 ], "map": [ - 2298 + 2304 ], "map_id": [ - 2946 + 2952 ], "match": [ - 2781 + 2787 ], "match_id": [ - 2946 + 2952 ], "match_lineup": [ - 2461 + 2467 ], "match_lineup_id": [ - 2946 + 2952 ], "side": [ - 2946 + 2952 ], "type": [ - 2946 + 2952 ], "__typename": [ 80 @@ -45709,7 +46244,7 @@ export default { }, "match_map_veto_picks_pk_columns_input": { "id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -45718,25 +46253,25 @@ export default { "match_map_veto_picks_select_column": {}, "match_map_veto_picks_set_input": { "created_at": [ - 4493 + 4499 ], "id": [ - 4993 + 4999 ], "map_id": [ - 4993 + 4999 ], "match_id": [ - 4993 + 4999 ], "match_lineup_id": [ - 4993 + 4999 ], "side": [ 80 ], "type": [ - 1370 + 1376 ], "__typename": [ 80 @@ -45744,10 +46279,10 @@ export default { }, "match_map_veto_picks_stream_cursor_input": { "initial_value": [ - 2596 + 2602 ], "ordering": [ - 308 + 314 ], "__typename": [ 80 @@ -45755,25 +46290,25 @@ export default { }, "match_map_veto_picks_stream_cursor_value_input": { "created_at": [ - 4493 + 4499 ], "id": [ - 4993 + 4999 ], "map_id": [ - 4993 + 4999 ], "match_id": [ - 4993 + 4999 ], "match_lineup_id": [ - 4993 + 4999 ], "side": [ 80 ], "type": [ - 1370 + 1376 ], "__typename": [ 80 @@ -45782,10 +46317,10 @@ export default { "match_map_veto_picks_update_column": {}, "match_map_veto_picks_updates": { "_set": [ - 2594 + 2600 ], "where": [ - 2582 + 2588 ], "__typename": [ 80 @@ -45796,13 +46331,13 @@ export default { 40 ], "created_at": [ - 4493 + 4499 ], "demos": [ - 2483, + 2489, { "distinct_on": [ - 2512, + 2518, "[match_map_demos_select_column!]" ], "limit": [ @@ -45812,19 +46347,19 @@ export default { 40 ], "order_by": [ - 2509, + 2515, "[match_map_demos_order_by!]" ], "where": [ - 2495 + 2501 ] } ], "demos_aggregate": [ - 2484, + 2490, { "distinct_on": [ - 2512, + 2518, "[match_map_demos_select_column!]" ], "limit": [ @@ -45834,11 +46369,11 @@ export default { 40 ], "order_by": [ - 2509, + 2515, "[match_map_demos_order_by!]" ], "where": [ - 2495 + 2501 ] } ], @@ -45849,16 +46384,16 @@ export default { 40 ], "e_match_map_status": [ - 937 + 943 ], "ended_at": [ - 4493 + 4499 ], "flashes": [ - 3256, + 3262, { "distinct_on": [ - 3279, + 3285, "[player_flashes_select_column!]" ], "limit": [ @@ -45868,19 +46403,19 @@ export default { 40 ], "order_by": [ - 3277, + 3283, "[player_flashes_order_by!]" ], "where": [ - 3267 + 3273 ] } ], "flashes_aggregate": [ - 3257, + 3263, { "distinct_on": [ - 3279, + 3285, "[player_flashes_select_column!]" ], "limit": [ @@ -45890,28 +46425,28 @@ export default { 40 ], "order_by": [ - 3277, + 3283, "[player_flashes_order_by!]" ], "where": [ - 3267 + 3273 ] } ], "id": [ - 4993 + 4999 ], "is_current_map": [ 5 ], "latest_clip_at": [ - 4493 + 4499 ], "lineup_1_score": [ 40 ], "lineup_1_side": [ - 1186 + 1192 ], "lineup_1_timeouts_available": [ 40 @@ -45920,25 +46455,25 @@ export default { 40 ], "lineup_2_side": [ - 1186 + 1192 ], "lineup_2_timeouts_available": [ 40 ], "map": [ - 2279 + 2285 ], "map_id": [ - 4993 + 4999 ], "match": [ - 2761 + 2767 ], "match_clips": [ - 2308, + 2314, { "distinct_on": [ - 2330, + 2336, "[match_clips_select_column!]" ], "limit": [ @@ -45948,19 +46483,19 @@ export default { 40 ], "order_by": [ - 2328, + 2334, "[match_clips_order_by!]" ], "where": [ - 2317 + 2323 ] } ], "match_clips_aggregate": [ - 2309, + 2315, { "distinct_on": [ - 2330, + 2336, "[match_clips_select_column!]" ], "limit": [ @@ -45970,22 +46505,22 @@ export default { 40 ], "order_by": [ - 2328, + 2334, "[match_clips_order_by!]" ], "where": [ - 2317 + 2323 ] } ], "match_id": [ - 4993 + 4999 ], "objectives": [ - 3502, + 3508, { "distinct_on": [ - 3523, + 3529, "[player_objectives_select_column!]" ], "limit": [ @@ -45995,19 +46530,19 @@ export default { 40 ], "order_by": [ - 3521, + 3527, "[player_objectives_order_by!]" ], "where": [ - 3511 + 3517 ] } ], "objectives_aggregate": [ - 3503, + 3509, { "distinct_on": [ - 3523, + 3529, "[player_objectives_select_column!]" ], "limit": [ @@ -46017,11 +46552,11 @@ export default { 40 ], "order_by": [ - 3521, + 3527, "[player_objectives_order_by!]" ], "where": [ - 3511 + 3517 ] } ], @@ -46029,10 +46564,10 @@ export default { 40 ], "player_assists": [ - 3084, + 3090, { "distinct_on": [ - 3107, + 3113, "[player_assists_select_column!]" ], "limit": [ @@ -46042,19 +46577,19 @@ export default { 40 ], "order_by": [ - 3105, + 3111, "[player_assists_order_by!]" ], "where": [ - 3095 + 3101 ] } ], "player_assists_aggregate": [ - 3085, + 3091, { "distinct_on": [ - 3107, + 3113, "[player_assists_select_column!]" ], "limit": [ @@ -46064,19 +46599,19 @@ export default { 40 ], "order_by": [ - 3105, + 3111, "[player_assists_order_by!]" ], "where": [ - 3095 + 3101 ] } ], "player_damages": [ - 3147, + 3153, { "distinct_on": [ - 3168, + 3174, "[player_damages_select_column!]" ], "limit": [ @@ -46086,19 +46621,19 @@ export default { 40 ], "order_by": [ - 3166, + 3172, "[player_damages_order_by!]" ], "where": [ - 3156 + 3162 ] } ], "player_damages_aggregate": [ - 3148, + 3154, { "distinct_on": [ - 3168, + 3174, "[player_damages_select_column!]" ], "limit": [ @@ -46108,19 +46643,19 @@ export default { 40 ], "order_by": [ - 3166, + 3172, "[player_damages_order_by!]" ], "where": [ - 3156 + 3162 ] } ], "player_kills": [ - 3301, + 3307, { "distinct_on": [ - 3365, + 3371, "[player_kills_select_column!]" ], "limit": [ @@ -46130,19 +46665,19 @@ export default { 40 ], "order_by": [ - 3363, + 3369, "[player_kills_order_by!]" ], "where": [ - 3312 + 3318 ] } ], "player_kills_aggregate": [ - 3302, + 3308, { "distinct_on": [ - 3365, + 3371, "[player_kills_select_column!]" ], "limit": [ @@ -46152,19 +46687,19 @@ export default { 40 ], "order_by": [ - 3363, + 3369, "[player_kills_order_by!]" ], "where": [ - 3312 + 3318 ] } ], "player_unused_utilities": [ - 3789, + 3795, { "distinct_on": [ - 3810, + 3816, "[player_unused_utility_select_column!]" ], "limit": [ @@ -46174,19 +46709,19 @@ export default { 40 ], "order_by": [ - 3808, + 3814, "[player_unused_utility_order_by!]" ], "where": [ - 3798 + 3804 ] } ], "player_unused_utilities_aggregate": [ - 3790, + 3796, { "distinct_on": [ - 3810, + 3816, "[player_unused_utility_select_column!]" ], "limit": [ @@ -46196,11 +46731,11 @@ export default { 40 ], "order_by": [ - 3808, + 3814, "[player_unused_utility_order_by!]" ], "where": [ - 3798 + 3804 ] } ], @@ -46208,13 +46743,13 @@ export default { 40 ], "public_latest_clip_at": [ - 4493 + 4499 ], "rounds": [ - 2534, + 2540, { "distinct_on": [ - 2555, + 2561, "[match_map_rounds_select_column!]" ], "limit": [ @@ -46224,19 +46759,19 @@ export default { 40 ], "order_by": [ - 2553, + 2559, "[match_map_rounds_order_by!]" ], "where": [ - 2543 + 2549 ] } ], "rounds_aggregate": [ - 2535, + 2541, { "distinct_on": [ - 2555, + 2561, "[match_map_rounds_select_column!]" ], "limit": [ @@ -46246,25 +46781,25 @@ export default { 40 ], "order_by": [ - 2553, + 2559, "[match_map_rounds_order_by!]" ], "where": [ - 2543 + 2549 ] } ], "started_at": [ - 4493 + 4499 ], "status": [ - 942 + 948 ], "utility": [ - 3830, + 3836, { "distinct_on": [ - 3851, + 3857, "[player_utility_select_column!]" ], "limit": [ @@ -46274,19 +46809,19 @@ export default { 40 ], "order_by": [ - 3849, + 3855, "[player_utility_order_by!]" ], "where": [ - 3839 + 3845 ] } ], "utility_aggregate": [ - 3831, + 3837, { "distinct_on": [ - 3851, + 3857, "[player_utility_select_column!]" ], "limit": [ @@ -46296,19 +46831,19 @@ export default { 40 ], "order_by": [ - 3849, + 3855, "[player_utility_order_by!]" ], "where": [ - 3839 + 3845 ] } ], "vetos": [ - 2575, + 2581, { "distinct_on": [ - 2593, + 2599, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -46318,19 +46853,19 @@ export default { 40 ], "order_by": [ - 2591, + 2597, "[match_map_veto_picks_order_by!]" ], "where": [ - 2582 + 2588 ] } ], "vetos_aggregate": [ - 2576, + 2582, { "distinct_on": [ - 2593, + 2599, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -46340,16 +46875,16 @@ export default { 40 ], "order_by": [ - 2591, + 2597, "[match_map_veto_picks_order_by!]" ], "where": [ - 2582 + 2588 ] } ], "winning_lineup_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -46357,10 +46892,10 @@ export default { }, "match_maps_aggregate": { "aggregate": [ - 2603 + 2609 ], "nodes": [ - 2599 + 2605 ], "__typename": [ 80 @@ -46368,7 +46903,7 @@ export default { }, "match_maps_aggregate_bool_exp": { "count": [ - 2602 + 2608 ], "__typename": [ 80 @@ -46376,13 +46911,13 @@ export default { }, "match_maps_aggregate_bool_exp_count": { "arguments": [ - 2621 + 2627 ], "distinct": [ 5 ], "filter": [ - 2608 + 2614 ], "predicate": [ 41 @@ -46393,13 +46928,13 @@ export default { }, "match_maps_aggregate_fields": { "avg": [ - 2606 + 2612 ], "count": [ 40, { "columns": [ - 2621, + 2627, "[match_maps_select_column!]" ], "distinct": [ @@ -46408,31 +46943,31 @@ export default { } ], "max": [ - 2612 + 2618 ], "min": [ - 2614 + 2620 ], "stddev": [ - 2623 + 2629 ], "stddev_pop": [ - 2625 + 2631 ], "stddev_samp": [ - 2627 + 2633 ], "sum": [ - 2631 + 2637 ], "var_pop": [ - 2635 + 2641 ], "var_samp": [ - 2637 + 2643 ], "variance": [ - 2639 + 2645 ], "__typename": [ 80 @@ -46440,37 +46975,37 @@ export default { }, "match_maps_aggregate_order_by": { "avg": [ - 2607 + 2613 ], "count": [ - 2946 + 2952 ], "max": [ - 2613 + 2619 ], "min": [ - 2615 + 2621 ], "stddev": [ - 2624 + 2630 ], "stddev_pop": [ - 2626 + 2632 ], "stddev_samp": [ - 2628 + 2634 ], "sum": [ - 2632 + 2638 ], "var_pop": [ - 2636 + 2642 ], "var_samp": [ - 2638 + 2644 ], "variance": [ - 2640 + 2646 ], "__typename": [ 80 @@ -46478,10 +47013,10 @@ export default { }, "match_maps_arr_rel_insert_input": { "data": [ - 2611 + 2617 ], "on_conflict": [ - 2618 + 2624 ], "__typename": [ 80 @@ -46518,19 +47053,19 @@ export default { }, "match_maps_avg_order_by": { "clips_count": [ - 2946 + 2952 ], "lineup_1_timeouts_available": [ - 2946 + 2952 ], "lineup_2_timeouts_available": [ - 2946 + 2952 ], "order": [ - 2946 + 2952 ], "public_clips_count": [ - 2946 + 2952 ], "__typename": [ 80 @@ -46538,25 +47073,25 @@ export default { }, "match_maps_bool_exp": { "_and": [ - 2608 + 2614 ], "_not": [ - 2608 + 2614 ], "_or": [ - 2608 + 2614 ], "clips_count": [ 41 ], "created_at": [ - 4494 + 4500 ], "demos": [ - 2495 + 2501 ], "demos_aggregate": [ - 2485 + 2491 ], "demos_download_url": [ 82 @@ -46565,31 +47100,31 @@ export default { 41 ], "e_match_map_status": [ - 940 + 946 ], "ended_at": [ - 4494 + 4500 ], "flashes": [ - 3267 + 3273 ], "flashes_aggregate": [ - 3258 + 3264 ], "id": [ - 4995 + 5001 ], "is_current_map": [ 6 ], "latest_clip_at": [ - 4494 + 4500 ], "lineup_1_score": [ 41 ], "lineup_1_side": [ - 1187 + 1193 ], "lineup_1_timeouts_available": [ 41 @@ -46598,94 +47133,94 @@ export default { 41 ], "lineup_2_side": [ - 1187 + 1193 ], "lineup_2_timeouts_available": [ 41 ], "map": [ - 2288 + 2294 ], "map_id": [ - 4995 + 5001 ], "match": [ - 2770 + 2776 ], "match_clips": [ - 2317 + 2323 ], "match_clips_aggregate": [ - 2310 + 2316 ], "match_id": [ - 4995 + 5001 ], "objectives": [ - 3511 + 3517 ], "objectives_aggregate": [ - 3504 + 3510 ], "order": [ 41 ], "player_assists": [ - 3095 + 3101 ], "player_assists_aggregate": [ - 3086 + 3092 ], "player_damages": [ - 3156 + 3162 ], "player_damages_aggregate": [ - 3149 + 3155 ], "player_kills": [ - 3312 + 3318 ], "player_kills_aggregate": [ - 3303 + 3309 ], "player_unused_utilities": [ - 3798 + 3804 ], "player_unused_utilities_aggregate": [ - 3791 + 3797 ], "public_clips_count": [ 41 ], "public_latest_clip_at": [ - 4494 + 4500 ], "rounds": [ - 2543 + 2549 ], "rounds_aggregate": [ - 2536 + 2542 ], "started_at": [ - 4494 + 4500 ], "status": [ - 943 + 949 ], "utility": [ - 3839 + 3845 ], "utility_aggregate": [ - 3832 + 3838 ], "vetos": [ - 2582 + 2588 ], "vetos_aggregate": [ - 2577 + 2583 ], "winning_lineup_id": [ - 4995 + 5001 ], "__typename": [ 80 @@ -46717,94 +47252,94 @@ export default { 40 ], "created_at": [ - 4493 + 4499 ], "demos": [ - 2492 + 2498 ], "e_match_map_status": [ - 948 + 954 ], "ended_at": [ - 4493 + 4499 ], "flashes": [ - 3264 + 3270 ], "id": [ - 4993 + 4999 ], "latest_clip_at": [ - 4493 + 4499 ], "lineup_1_side": [ - 1186 + 1192 ], "lineup_1_timeouts_available": [ 40 ], "lineup_2_side": [ - 1186 + 1192 ], "lineup_2_timeouts_available": [ 40 ], "map": [ - 2296 + 2302 ], "map_id": [ - 4993 + 4999 ], "match": [ - 2779 + 2785 ], "match_clips": [ - 2314 + 2320 ], "match_id": [ - 4993 + 4999 ], "objectives": [ - 3508 + 3514 ], "order": [ 40 ], "player_assists": [ - 3092 + 3098 ], "player_damages": [ - 3153 + 3159 ], "player_kills": [ - 3309 + 3315 ], "player_unused_utilities": [ - 3795 + 3801 ], "public_clips_count": [ 40 ], "public_latest_clip_at": [ - 4493 + 4499 ], "rounds": [ - 2540 + 2546 ], "started_at": [ - 4493 + 4499 ], "status": [ - 942 + 948 ], "utility": [ - 3836 + 3842 ], "vetos": [ - 2581 + 2587 ], "winning_lineup_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -46815,7 +47350,7 @@ export default { 40 ], "created_at": [ - 4493 + 4499 ], "demos_download_url": [ 80 @@ -46824,13 +47359,13 @@ export default { 40 ], "ended_at": [ - 4493 + 4499 ], "id": [ - 4993 + 4999 ], "latest_clip_at": [ - 4493 + 4499 ], "lineup_1_score": [ 40 @@ -46845,10 +47380,10 @@ export default { 40 ], "map_id": [ - 4993 + 4999 ], "match_id": [ - 4993 + 4999 ], "order": [ 40 @@ -46857,13 +47392,13 @@ export default { 40 ], "public_latest_clip_at": [ - 4493 + 4499 ], "started_at": [ - 4493 + 4499 ], "winning_lineup_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -46871,46 +47406,46 @@ export default { }, "match_maps_max_order_by": { "clips_count": [ - 2946 + 2952 ], "created_at": [ - 2946 + 2952 ], "ended_at": [ - 2946 + 2952 ], "id": [ - 2946 + 2952 ], "latest_clip_at": [ - 2946 + 2952 ], "lineup_1_timeouts_available": [ - 2946 + 2952 ], "lineup_2_timeouts_available": [ - 2946 + 2952 ], "map_id": [ - 2946 + 2952 ], "match_id": [ - 2946 + 2952 ], "order": [ - 2946 + 2952 ], "public_clips_count": [ - 2946 + 2952 ], "public_latest_clip_at": [ - 2946 + 2952 ], "started_at": [ - 2946 + 2952 ], "winning_lineup_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -46921,7 +47456,7 @@ export default { 40 ], "created_at": [ - 4493 + 4499 ], "demos_download_url": [ 80 @@ -46930,13 +47465,13 @@ export default { 40 ], "ended_at": [ - 4493 + 4499 ], "id": [ - 4993 + 4999 ], "latest_clip_at": [ - 4493 + 4499 ], "lineup_1_score": [ 40 @@ -46951,10 +47486,10 @@ export default { 40 ], "map_id": [ - 4993 + 4999 ], "match_id": [ - 4993 + 4999 ], "order": [ 40 @@ -46963,13 +47498,13 @@ export default { 40 ], "public_latest_clip_at": [ - 4493 + 4499 ], "started_at": [ - 4493 + 4499 ], "winning_lineup_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -46977,46 +47512,46 @@ export default { }, "match_maps_min_order_by": { "clips_count": [ - 2946 + 2952 ], "created_at": [ - 2946 + 2952 ], "ended_at": [ - 2946 + 2952 ], "id": [ - 2946 + 2952 ], "latest_clip_at": [ - 2946 + 2952 ], "lineup_1_timeouts_available": [ - 2946 + 2952 ], "lineup_2_timeouts_available": [ - 2946 + 2952 ], "map_id": [ - 2946 + 2952 ], "match_id": [ - 2946 + 2952 ], "order": [ - 2946 + 2952 ], "public_clips_count": [ - 2946 + 2952 ], "public_latest_clip_at": [ - 2946 + 2952 ], "started_at": [ - 2946 + 2952 ], "winning_lineup_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -47027,7 +47562,7 @@ export default { 40 ], "returning": [ - 2599 + 2605 ], "__typename": [ 80 @@ -47035,10 +47570,10 @@ export default { }, "match_maps_obj_rel_insert_input": { "data": [ - 2611 + 2617 ], "on_conflict": [ - 2618 + 2624 ], "__typename": [ 80 @@ -47046,13 +47581,13 @@ export default { }, "match_maps_on_conflict": { "constraint": [ - 2609 + 2615 ], "update_columns": [ - 2633 + 2639 ], "where": [ - 2608 + 2614 ], "__typename": [ 80 @@ -47060,112 +47595,112 @@ export default { }, "match_maps_order_by": { "clips_count": [ - 2946 + 2952 ], "created_at": [ - 2946 + 2952 ], "demos_aggregate": [ - 2490 + 2496 ], "demos_download_url": [ - 2946 + 2952 ], "demos_total_size": [ - 2946 + 2952 ], "e_match_map_status": [ - 950 + 956 ], "ended_at": [ - 2946 + 2952 ], "flashes_aggregate": [ - 3263 + 3269 ], "id": [ - 2946 + 2952 ], "is_current_map": [ - 2946 + 2952 ], "latest_clip_at": [ - 2946 + 2952 ], "lineup_1_score": [ - 2946 + 2952 ], "lineup_1_side": [ - 2946 + 2952 ], "lineup_1_timeouts_available": [ - 2946 + 2952 ], "lineup_2_score": [ - 2946 + 2952 ], "lineup_2_side": [ - 2946 + 2952 ], "lineup_2_timeouts_available": [ - 2946 + 2952 ], "map": [ - 2298 + 2304 ], "map_id": [ - 2946 + 2952 ], "match": [ - 2781 + 2787 ], "match_clips_aggregate": [ - 2313 + 2319 ], "match_id": [ - 2946 + 2952 ], "objectives_aggregate": [ - 3507 + 3513 ], "order": [ - 2946 + 2952 ], "player_assists_aggregate": [ - 3091 + 3097 ], "player_damages_aggregate": [ - 3152 + 3158 ], "player_kills_aggregate": [ - 3308 + 3314 ], "player_unused_utilities_aggregate": [ - 3794 + 3800 ], "public_clips_count": [ - 2946 + 2952 ], "public_latest_clip_at": [ - 2946 + 2952 ], "rounds_aggregate": [ - 2539 + 2545 ], "started_at": [ - 2946 + 2952 ], "status": [ - 2946 + 2952 ], "utility_aggregate": [ - 3835 + 3841 ], "vetos_aggregate": [ - 2580 + 2586 ], "winning_lineup_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -47173,7 +47708,7 @@ export default { }, "match_maps_pk_columns_input": { "id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -47185,34 +47720,34 @@ export default { 40 ], "created_at": [ - 4493 + 4499 ], "ended_at": [ - 4493 + 4499 ], "id": [ - 4993 + 4999 ], "latest_clip_at": [ - 4493 + 4499 ], "lineup_1_side": [ - 1186 + 1192 ], "lineup_1_timeouts_available": [ 40 ], "lineup_2_side": [ - 1186 + 1192 ], "lineup_2_timeouts_available": [ 40 ], "map_id": [ - 4993 + 4999 ], "match_id": [ - 4993 + 4999 ], "order": [ 40 @@ -47221,16 +47756,16 @@ export default { 40 ], "public_latest_clip_at": [ - 4493 + 4499 ], "started_at": [ - 4493 + 4499 ], "status": [ - 942 + 948 ], "winning_lineup_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -47267,19 +47802,19 @@ export default { }, "match_maps_stddev_order_by": { "clips_count": [ - 2946 + 2952 ], "lineup_1_timeouts_available": [ - 2946 + 2952 ], "lineup_2_timeouts_available": [ - 2946 + 2952 ], "order": [ - 2946 + 2952 ], "public_clips_count": [ - 2946 + 2952 ], "__typename": [ 80 @@ -47316,19 +47851,19 @@ export default { }, "match_maps_stddev_pop_order_by": { "clips_count": [ - 2946 + 2952 ], "lineup_1_timeouts_available": [ - 2946 + 2952 ], "lineup_2_timeouts_available": [ - 2946 + 2952 ], "order": [ - 2946 + 2952 ], "public_clips_count": [ - 2946 + 2952 ], "__typename": [ 80 @@ -47365,19 +47900,19 @@ export default { }, "match_maps_stddev_samp_order_by": { "clips_count": [ - 2946 + 2952 ], "lineup_1_timeouts_available": [ - 2946 + 2952 ], "lineup_2_timeouts_available": [ - 2946 + 2952 ], "order": [ - 2946 + 2952 ], "public_clips_count": [ - 2946 + 2952 ], "__typename": [ 80 @@ -47385,10 +47920,10 @@ export default { }, "match_maps_stream_cursor_input": { "initial_value": [ - 2630 + 2636 ], "ordering": [ - 308 + 314 ], "__typename": [ 80 @@ -47399,34 +47934,34 @@ export default { 40 ], "created_at": [ - 4493 + 4499 ], "ended_at": [ - 4493 + 4499 ], "id": [ - 4993 + 4999 ], "latest_clip_at": [ - 4493 + 4499 ], "lineup_1_side": [ - 1186 + 1192 ], "lineup_1_timeouts_available": [ 40 ], "lineup_2_side": [ - 1186 + 1192 ], "lineup_2_timeouts_available": [ 40 ], "map_id": [ - 4993 + 4999 ], "match_id": [ - 4993 + 4999 ], "order": [ 40 @@ -47435,16 +47970,16 @@ export default { 40 ], "public_latest_clip_at": [ - 4493 + 4499 ], "started_at": [ - 4493 + 4499 ], "status": [ - 942 + 948 ], "winning_lineup_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -47481,19 +48016,19 @@ export default { }, "match_maps_sum_order_by": { "clips_count": [ - 2946 + 2952 ], "lineup_1_timeouts_available": [ - 2946 + 2952 ], "lineup_2_timeouts_available": [ - 2946 + 2952 ], "order": [ - 2946 + 2952 ], "public_clips_count": [ - 2946 + 2952 ], "__typename": [ 80 @@ -47502,13 +48037,13 @@ export default { "match_maps_update_column": {}, "match_maps_updates": { "_inc": [ - 2610 + 2616 ], "_set": [ - 2622 + 2628 ], "where": [ - 2608 + 2614 ], "__typename": [ 80 @@ -47545,19 +48080,19 @@ export default { }, "match_maps_var_pop_order_by": { "clips_count": [ - 2946 + 2952 ], "lineup_1_timeouts_available": [ - 2946 + 2952 ], "lineup_2_timeouts_available": [ - 2946 + 2952 ], "order": [ - 2946 + 2952 ], "public_clips_count": [ - 2946 + 2952 ], "__typename": [ 80 @@ -47594,19 +48129,19 @@ export default { }, "match_maps_var_samp_order_by": { "clips_count": [ - 2946 + 2952 ], "lineup_1_timeouts_available": [ - 2946 + 2952 ], "lineup_2_timeouts_available": [ - 2946 + 2952 ], "order": [ - 2946 + 2952 ], "public_clips_count": [ - 2946 + 2952 ], "__typename": [ 80 @@ -47643,19 +48178,19 @@ export default { }, "match_maps_variance_order_by": { "clips_count": [ - 2946 + 2952 ], "lineup_1_timeouts_available": [ - 2946 + 2952 ], "lineup_2_timeouts_available": [ - 2946 + 2952 ], "order": [ - 2946 + 2952 ], "public_clips_count": [ - 2946 + 2952 ], "__typename": [ 80 @@ -47672,7 +48207,7 @@ export default { 40 ], "check_in_setting": [ - 549 + 555 ], "coaches": [ 5 @@ -47687,7 +48222,7 @@ export default { 5 ], "id": [ - 4993 + 4999 ], "invite_code": [ 80 @@ -47699,22 +48234,22 @@ export default { 40 ], "map_pool": [ - 2260 + 2266 ], "map_pool_id": [ - 4993 + 4999 ], "map_veto": [ 5 ], "match_mode": [ - 963 + 969 ], "matches": [ - 2761, + 2767, { "distinct_on": [ - 2783, + 2789, "[matches_select_column!]" ], "limit": [ @@ -47724,19 +48259,19 @@ export default { 40 ], "order_by": [ - 2781, + 2787, "[matches_order_by!]" ], "where": [ - 2770 + 2776 ] } ], "matches_aggregate": [ - 2762, + 2768, { "distinct_on": [ - 2783, + 2789, "[matches_select_column!]" ], "limit": [ @@ -47746,11 +48281,11 @@ export default { 40 ], "order_by": [ - 2781, + 2787, "[matches_order_by!]" ], "where": [ - 2770 + 2776 ] } ], @@ -47767,7 +48302,7 @@ export default { 5 ], "ready_setting": [ - 1105 + 1111 ], "region_veto": [ 5 @@ -47779,25 +48314,25 @@ export default { 40 ], "tech_timeout_setting": [ - 1267 + 1273 ], "timeout_setting": [ - 1267 + 1273 ], "tournament": [ - 4929 + 4935 ], "tournament_bracket": [ - 4537 + 4543 ], "tournament_stage": [ - 4754 + 4760 ], "tv_delay": [ 40 ], "type": [ - 1004 + 1010 ], "__typename": [ 80 @@ -47805,10 +48340,10 @@ export default { }, "match_options_aggregate": { "aggregate": [ - 2643 + 2649 ], "nodes": [ - 2641 + 2647 ], "__typename": [ 80 @@ -47816,13 +48351,13 @@ export default { }, "match_options_aggregate_fields": { "avg": [ - 2644 + 2650 ], "count": [ 40, { "columns": [ - 2656, + 2662, "[match_options_select_column!]" ], "distinct": [ @@ -47831,31 +48366,31 @@ export default { } ], "max": [ - 2649 + 2655 ], "min": [ - 2650 + 2656 ], "stddev": [ - 2658 + 2664 ], "stddev_pop": [ - 2659 + 2665 ], "stddev_samp": [ - 2660 + 2666 ], "sum": [ - 2663 + 2669 ], "var_pop": [ - 2666 + 2672 ], "var_samp": [ - 2667 + 2673 ], "variance": [ - 2668 + 2674 ], "__typename": [ 80 @@ -47889,13 +48424,13 @@ export default { }, "match_options_bool_exp": { "_and": [ - 2645 + 2651 ], "_not": [ - 2645 + 2651 ], "_or": [ - 2645 + 2651 ], "auto_cancel_duration": [ 41 @@ -47907,7 +48442,7 @@ export default { 41 ], "check_in_setting": [ - 550 + 556 ], "coaches": [ 6 @@ -47922,7 +48457,7 @@ export default { 6 ], "id": [ - 4995 + 5001 ], "invite_code": [ 82 @@ -47934,22 +48469,22 @@ export default { 41 ], "map_pool": [ - 2263 + 2269 ], "map_pool_id": [ - 4995 + 5001 ], "map_veto": [ 6 ], "match_mode": [ - 964 + 970 ], "matches": [ - 2770 + 2776 ], "matches_aggregate": [ - 2763 + 2769 ], "mr": [ 41 @@ -47964,7 +48499,7 @@ export default { 6 ], "ready_setting": [ - 1106 + 1112 ], "region_veto": [ 6 @@ -47976,25 +48511,25 @@ export default { 41 ], "tech_timeout_setting": [ - 1268 + 1274 ], "timeout_setting": [ - 1268 + 1274 ], "tournament": [ - 4950 + 4956 ], "tournament_bracket": [ - 4548 + 4554 ], "tournament_stage": [ - 4766 + 4772 ], "tv_delay": [ 41 ], "type": [ - 1005 + 1011 ], "__typename": [ 80 @@ -48038,7 +48573,7 @@ export default { 40 ], "check_in_setting": [ - 549 + 555 ], "coaches": [ 5 @@ -48050,7 +48585,7 @@ export default { 5 ], "id": [ - 4993 + 4999 ], "invite_code": [ 80 @@ -48062,19 +48597,19 @@ export default { 40 ], "map_pool": [ - 2269 + 2275 ], "map_pool_id": [ - 4993 + 4999 ], "map_veto": [ 5 ], "match_mode": [ - 963 + 969 ], "matches": [ - 2767 + 2773 ], "mr": [ 40 @@ -48089,7 +48624,7 @@ export default { 5 ], "ready_setting": [ - 1105 + 1111 ], "region_veto": [ 5 @@ -48101,25 +48636,25 @@ export default { 40 ], "tech_timeout_setting": [ - 1267 + 1273 ], "timeout_setting": [ - 1267 + 1273 ], "tournament": [ - 4959 + 4965 ], "tournament_bracket": [ - 4557 + 4563 ], "tournament_stage": [ - 4778 + 4784 ], "tv_delay": [ 40 ], "type": [ - 1004 + 1010 ], "__typename": [ 80 @@ -48133,7 +48668,7 @@ export default { 40 ], "id": [ - 4993 + 4999 ], "invite_code": [ 80 @@ -48142,7 +48677,7 @@ export default { 40 ], "map_pool_id": [ - 4993 + 4999 ], "mr": [ 40 @@ -48171,7 +48706,7 @@ export default { 40 ], "id": [ - 4993 + 4999 ], "invite_code": [ 80 @@ -48180,7 +48715,7 @@ export default { 40 ], "map_pool_id": [ - 4993 + 4999 ], "mr": [ 40 @@ -48206,7 +48741,7 @@ export default { 40 ], "returning": [ - 2641 + 2647 ], "__typename": [ 80 @@ -48214,10 +48749,10 @@ export default { }, "match_options_obj_rel_insert_input": { "data": [ - 2648 + 2654 ], "on_conflict": [ - 2653 + 2659 ], "__typename": [ 80 @@ -48225,13 +48760,13 @@ export default { }, "match_options_on_conflict": { "constraint": [ - 2646 + 2652 ], "update_columns": [ - 2664 + 2670 ], "where": [ - 2645 + 2651 ], "__typename": [ 80 @@ -48239,100 +48774,100 @@ export default { }, "match_options_order_by": { "auto_cancel_duration": [ - 2946 + 2952 ], "auto_cancellation": [ - 2946 + 2952 ], "best_of": [ - 2946 + 2952 ], "check_in_setting": [ - 2946 + 2952 ], "coaches": [ - 2946 + 2952 ], "default_models": [ - 2946 + 2952 ], "halftime_pausematch": [ - 2946 + 2952 ], "has_active_matches": [ - 2946 + 2952 ], "id": [ - 2946 + 2952 ], "invite_code": [ - 2946 + 2952 ], "knife_round": [ - 2946 + 2952 ], "live_match_timeout": [ - 2946 + 2952 ], "map_pool": [ - 2271 + 2277 ], "map_pool_id": [ - 2946 + 2952 ], "map_veto": [ - 2946 + 2952 ], "match_mode": [ - 2946 + 2952 ], "matches_aggregate": [ - 2766 + 2772 ], "mr": [ - 2946 + 2952 ], "number_of_substitutes": [ - 2946 + 2952 ], "overtime": [ - 2946 + 2952 ], "prefer_dedicated_server": [ - 2946 + 2952 ], "ready_setting": [ - 2946 + 2952 ], "region_veto": [ - 2946 + 2952 ], "regions": [ - 2946 + 2952 ], "round_restart_delay": [ - 2946 + 2952 ], "tech_timeout_setting": [ - 2946 + 2952 ], "timeout_setting": [ - 2946 + 2952 ], "tournament": [ - 4961 + 4967 ], "tournament_bracket": [ - 4559 + 4565 ], "tournament_stage": [ - 4780 + 4786 ], "tv_delay": [ - 2946 + 2952 ], "type": [ - 2946 + 2952 ], "__typename": [ 80 @@ -48340,7 +48875,7 @@ export default { }, "match_options_pk_columns_input": { "id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -48358,7 +48893,7 @@ export default { 40 ], "check_in_setting": [ - 549 + 555 ], "coaches": [ 5 @@ -48370,7 +48905,7 @@ export default { 5 ], "id": [ - 4993 + 4999 ], "invite_code": [ 80 @@ -48382,13 +48917,13 @@ export default { 40 ], "map_pool_id": [ - 4993 + 4999 ], "map_veto": [ 5 ], "match_mode": [ - 963 + 969 ], "mr": [ 40 @@ -48403,7 +48938,7 @@ export default { 5 ], "ready_setting": [ - 1105 + 1111 ], "region_veto": [ 5 @@ -48415,16 +48950,16 @@ export default { 40 ], "tech_timeout_setting": [ - 1267 + 1273 ], "timeout_setting": [ - 1267 + 1273 ], "tv_delay": [ 40 ], "type": [ - 1004 + 1010 ], "__typename": [ 80 @@ -48510,10 +49045,10 @@ export default { }, "match_options_stream_cursor_input": { "initial_value": [ - 2662 + 2668 ], "ordering": [ - 308 + 314 ], "__typename": [ 80 @@ -48530,7 +49065,7 @@ export default { 40 ], "check_in_setting": [ - 549 + 555 ], "coaches": [ 5 @@ -48542,7 +49077,7 @@ export default { 5 ], "id": [ - 4993 + 4999 ], "invite_code": [ 80 @@ -48554,13 +49089,13 @@ export default { 40 ], "map_pool_id": [ - 4993 + 4999 ], "map_veto": [ 5 ], "match_mode": [ - 963 + 969 ], "mr": [ 40 @@ -48575,7 +49110,7 @@ export default { 5 ], "ready_setting": [ - 1105 + 1111 ], "region_veto": [ 5 @@ -48587,16 +49122,16 @@ export default { 40 ], "tech_timeout_setting": [ - 1267 + 1273 ], "timeout_setting": [ - 1267 + 1273 ], "tv_delay": [ 40 ], "type": [ - 1004 + 1010 ], "__typename": [ 80 @@ -48631,13 +49166,13 @@ export default { "match_options_update_column": {}, "match_options_updates": { "_inc": [ - 2647 + 2653 ], "_set": [ - 2657 + 2663 ], "where": [ - 2645 + 2651 ], "__typename": [ 80 @@ -48723,28 +49258,28 @@ export default { }, "match_region_veto_picks": { "created_at": [ - 4493 + 4499 ], "id": [ - 4993 + 4999 ], "match": [ - 2761 + 2767 ], "match_id": [ - 4993 + 4999 ], "match_lineup": [ - 2441 + 2447 ], "match_lineup_id": [ - 4993 + 4999 ], "region": [ 80 ], "type": [ - 1370 + 1376 ], "__typename": [ 80 @@ -48752,10 +49287,10 @@ export default { }, "match_region_veto_picks_aggregate": { "aggregate": [ - 2673 + 2679 ], "nodes": [ - 2669 + 2675 ], "__typename": [ 80 @@ -48763,7 +49298,7 @@ export default { }, "match_region_veto_picks_aggregate_bool_exp": { "count": [ - 2672 + 2678 ], "__typename": [ 80 @@ -48771,13 +49306,13 @@ export default { }, "match_region_veto_picks_aggregate_bool_exp_count": { "arguments": [ - 2687 + 2693 ], "distinct": [ 5 ], "filter": [ - 2676 + 2682 ], "predicate": [ 41 @@ -48791,7 +49326,7 @@ export default { 40, { "columns": [ - 2687, + 2693, "[match_region_veto_picks_select_column!]" ], "distinct": [ @@ -48800,10 +49335,10 @@ export default { } ], "max": [ - 2679 + 2685 ], "min": [ - 2681 + 2687 ], "__typename": [ 80 @@ -48811,13 +49346,13 @@ export default { }, "match_region_veto_picks_aggregate_order_by": { "count": [ - 2946 + 2952 ], "max": [ - 2680 + 2686 ], "min": [ - 2682 + 2688 ], "__typename": [ 80 @@ -48825,10 +49360,10 @@ export default { }, "match_region_veto_picks_arr_rel_insert_input": { "data": [ - 2678 + 2684 ], "on_conflict": [ - 2684 + 2690 ], "__typename": [ 80 @@ -48836,37 +49371,37 @@ export default { }, "match_region_veto_picks_bool_exp": { "_and": [ - 2676 + 2682 ], "_not": [ - 2676 + 2682 ], "_or": [ - 2676 + 2682 ], "created_at": [ - 4494 + 4500 ], "id": [ - 4995 + 5001 ], "match": [ - 2770 + 2776 ], "match_id": [ - 4995 + 5001 ], "match_lineup": [ - 2450 + 2456 ], "match_lineup_id": [ - 4995 + 5001 ], "region": [ 82 ], "type": [ - 1371 + 1377 ], "__typename": [ 80 @@ -48875,28 +49410,28 @@ export default { "match_region_veto_picks_constraint": {}, "match_region_veto_picks_insert_input": { "created_at": [ - 4493 + 4499 ], "id": [ - 4993 + 4999 ], "match": [ - 2779 + 2785 ], "match_id": [ - 4993 + 4999 ], "match_lineup": [ - 2459 + 2465 ], "match_lineup_id": [ - 4993 + 4999 ], "region": [ 80 ], "type": [ - 1370 + 1376 ], "__typename": [ 80 @@ -48904,16 +49439,16 @@ export default { }, "match_region_veto_picks_max_fields": { "created_at": [ - 4493 + 4499 ], "id": [ - 4993 + 4999 ], "match_id": [ - 4993 + 4999 ], "match_lineup_id": [ - 4993 + 4999 ], "region": [ 80 @@ -48924,19 +49459,19 @@ export default { }, "match_region_veto_picks_max_order_by": { "created_at": [ - 2946 + 2952 ], "id": [ - 2946 + 2952 ], "match_id": [ - 2946 + 2952 ], "match_lineup_id": [ - 2946 + 2952 ], "region": [ - 2946 + 2952 ], "__typename": [ 80 @@ -48944,16 +49479,16 @@ export default { }, "match_region_veto_picks_min_fields": { "created_at": [ - 4493 + 4499 ], "id": [ - 4993 + 4999 ], "match_id": [ - 4993 + 4999 ], "match_lineup_id": [ - 4993 + 4999 ], "region": [ 80 @@ -48964,19 +49499,19 @@ export default { }, "match_region_veto_picks_min_order_by": { "created_at": [ - 2946 + 2952 ], "id": [ - 2946 + 2952 ], "match_id": [ - 2946 + 2952 ], "match_lineup_id": [ - 2946 + 2952 ], "region": [ - 2946 + 2952 ], "__typename": [ 80 @@ -48987,7 +49522,7 @@ export default { 40 ], "returning": [ - 2669 + 2675 ], "__typename": [ 80 @@ -48995,13 +49530,13 @@ export default { }, "match_region_veto_picks_on_conflict": { "constraint": [ - 2677 + 2683 ], "update_columns": [ - 2691 + 2697 ], "where": [ - 2676 + 2682 ], "__typename": [ 80 @@ -49009,28 +49544,28 @@ export default { }, "match_region_veto_picks_order_by": { "created_at": [ - 2946 + 2952 ], "id": [ - 2946 + 2952 ], "match": [ - 2781 + 2787 ], "match_id": [ - 2946 + 2952 ], "match_lineup": [ - 2461 + 2467 ], "match_lineup_id": [ - 2946 + 2952 ], "region": [ - 2946 + 2952 ], "type": [ - 2946 + 2952 ], "__typename": [ 80 @@ -49038,7 +49573,7 @@ export default { }, "match_region_veto_picks_pk_columns_input": { "id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -49047,22 +49582,22 @@ export default { "match_region_veto_picks_select_column": {}, "match_region_veto_picks_set_input": { "created_at": [ - 4493 + 4499 ], "id": [ - 4993 + 4999 ], "match_id": [ - 4993 + 4999 ], "match_lineup_id": [ - 4993 + 4999 ], "region": [ 80 ], "type": [ - 1370 + 1376 ], "__typename": [ 80 @@ -49070,10 +49605,10 @@ export default { }, "match_region_veto_picks_stream_cursor_input": { "initial_value": [ - 2690 + 2696 ], "ordering": [ - 308 + 314 ], "__typename": [ 80 @@ -49081,22 +49616,22 @@ export default { }, "match_region_veto_picks_stream_cursor_value_input": { "created_at": [ - 4493 + 4499 ], "id": [ - 4993 + 4999 ], "match_id": [ - 4993 + 4999 ], "match_lineup_id": [ - 4993 + 4999 ], "region": [ 80 ], "type": [ - 1370 + 1376 ], "__typename": [ 80 @@ -49105,10 +49640,10 @@ export default { "match_region_veto_picks_update_column": {}, "match_region_veto_picks_updates": { "_set": [ - 2688 + 2694 ], "where": [ - 2676 + 2682 ], "__typename": [ 80 @@ -49122,13 +49657,13 @@ export default { 80 ], "game_server_node": [ - 1693 + 1699 ], "game_server_node_id": [ 80 ], "id": [ - 4993 + 4999 ], "is_game_streamer": [ 5 @@ -49140,16 +49675,16 @@ export default { 80 ], "last_status_at": [ - 4493 + 4499 ], "link": [ 80 ], "match": [ - 2761 + 2767 ], "match_id": [ - 4993 + 4999 ], "mode": [ 80 @@ -49161,7 +49696,7 @@ export default { 80 ], "status_history": [ - 1817, + 1823, { "path": [ 80 @@ -49180,10 +49715,10 @@ export default { }, "match_streams_aggregate": { "aggregate": [ - 2699 + 2705 ], "nodes": [ - 2693 + 2699 ], "__typename": [ 80 @@ -49191,13 +49726,13 @@ export default { }, "match_streams_aggregate_bool_exp": { "bool_and": [ - 2696 + 2702 ], "bool_or": [ - 2697 + 2703 ], "count": [ - 2698 + 2704 ], "__typename": [ 80 @@ -49205,13 +49740,13 @@ export default { }, "match_streams_aggregate_bool_exp_bool_and": { "arguments": [ - 2722 + 2728 ], "distinct": [ 5 ], "filter": [ - 2705 + 2711 ], "predicate": [ 6 @@ -49222,13 +49757,13 @@ export default { }, "match_streams_aggregate_bool_exp_bool_or": { "arguments": [ - 2723 + 2729 ], "distinct": [ 5 ], "filter": [ - 2705 + 2711 ], "predicate": [ 6 @@ -49239,13 +49774,13 @@ export default { }, "match_streams_aggregate_bool_exp_count": { "arguments": [ - 2721 + 2727 ], "distinct": [ 5 ], "filter": [ - 2705 + 2711 ], "predicate": [ 41 @@ -49256,13 +49791,13 @@ export default { }, "match_streams_aggregate_fields": { "avg": [ - 2703 + 2709 ], "count": [ 40, { "columns": [ - 2721, + 2727, "[match_streams_select_column!]" ], "distinct": [ @@ -49271,31 +49806,31 @@ export default { } ], "max": [ - 2712 + 2718 ], "min": [ - 2714 + 2720 ], "stddev": [ - 2725 + 2731 ], "stddev_pop": [ - 2727 + 2733 ], "stddev_samp": [ - 2729 + 2735 ], "sum": [ - 2733 + 2739 ], "var_pop": [ - 2737 + 2743 ], "var_samp": [ - 2739 + 2745 ], "variance": [ - 2741 + 2747 ], "__typename": [ 80 @@ -49303,37 +49838,37 @@ export default { }, "match_streams_aggregate_order_by": { "avg": [ - 2704 + 2710 ], "count": [ - 2946 + 2952 ], "max": [ - 2713 + 2719 ], "min": [ - 2715 + 2721 ], "stddev": [ - 2726 + 2732 ], "stddev_pop": [ - 2728 + 2734 ], "stddev_samp": [ - 2730 + 2736 ], "sum": [ - 2734 + 2740 ], "var_pop": [ - 2738 + 2744 ], "var_samp": [ - 2740 + 2746 ], "variance": [ - 2742 + 2748 ], "__typename": [ 80 @@ -49341,7 +49876,7 @@ export default { }, "match_streams_append_input": { "status_history": [ - 1817 + 1823 ], "__typename": [ 80 @@ -49349,10 +49884,10 @@ export default { }, "match_streams_arr_rel_insert_input": { "data": [ - 2711 + 2717 ], "on_conflict": [ - 2717 + 2723 ], "__typename": [ 80 @@ -49368,7 +49903,7 @@ export default { }, "match_streams_avg_order_by": { "priority": [ - 2946 + 2952 ], "__typename": [ 80 @@ -49376,13 +49911,13 @@ export default { }, "match_streams_bool_exp": { "_and": [ - 2705 + 2711 ], "_not": [ - 2705 + 2711 ], "_or": [ - 2705 + 2711 ], "autodirector": [ 6 @@ -49391,13 +49926,13 @@ export default { 82 ], "game_server_node": [ - 1705 + 1711 ], "game_server_node_id": [ 82 ], "id": [ - 4995 + 5001 ], "is_game_streamer": [ 6 @@ -49409,16 +49944,16 @@ export default { 82 ], "last_status_at": [ - 4494 + 4500 ], "link": [ 82 ], "match": [ - 2770 + 2776 ], "match_id": [ - 4995 + 5001 ], "mode": [ 82 @@ -49430,7 +49965,7 @@ export default { 82 ], "status_history": [ - 1819 + 1825 ], "stream_url": [ 82 @@ -49483,13 +50018,13 @@ export default { 80 ], "game_server_node": [ - 1717 + 1723 ], "game_server_node_id": [ 80 ], "id": [ - 4993 + 4999 ], "is_game_streamer": [ 5 @@ -49501,16 +50036,16 @@ export default { 80 ], "last_status_at": [ - 4493 + 4499 ], "link": [ 80 ], "match": [ - 2779 + 2785 ], "match_id": [ - 4993 + 4999 ], "mode": [ 80 @@ -49522,7 +50057,7 @@ export default { 80 ], "status_history": [ - 1817 + 1823 ], "stream_url": [ 80 @@ -49542,19 +50077,19 @@ export default { 80 ], "id": [ - 4993 + 4999 ], "k8s_service_name": [ 80 ], "last_status_at": [ - 4493 + 4499 ], "link": [ 80 ], "match_id": [ - 4993 + 4999 ], "mode": [ 80 @@ -49577,40 +50112,40 @@ export default { }, "match_streams_max_order_by": { "error_message": [ - 2946 + 2952 ], "game_server_node_id": [ - 2946 + 2952 ], "id": [ - 2946 + 2952 ], "k8s_service_name": [ - 2946 + 2952 ], "last_status_at": [ - 2946 + 2952 ], "link": [ - 2946 + 2952 ], "match_id": [ - 2946 + 2952 ], "mode": [ - 2946 + 2952 ], "priority": [ - 2946 + 2952 ], "status": [ - 2946 + 2952 ], "stream_url": [ - 2946 + 2952 ], "title": [ - 2946 + 2952 ], "__typename": [ 80 @@ -49624,19 +50159,19 @@ export default { 80 ], "id": [ - 4993 + 4999 ], "k8s_service_name": [ 80 ], "last_status_at": [ - 4493 + 4499 ], "link": [ 80 ], "match_id": [ - 4993 + 4999 ], "mode": [ 80 @@ -49659,40 +50194,40 @@ export default { }, "match_streams_min_order_by": { "error_message": [ - 2946 + 2952 ], "game_server_node_id": [ - 2946 + 2952 ], "id": [ - 2946 + 2952 ], "k8s_service_name": [ - 2946 + 2952 ], "last_status_at": [ - 2946 + 2952 ], "link": [ - 2946 + 2952 ], "match_id": [ - 2946 + 2952 ], "mode": [ - 2946 + 2952 ], "priority": [ - 2946 + 2952 ], "status": [ - 2946 + 2952 ], "stream_url": [ - 2946 + 2952 ], "title": [ - 2946 + 2952 ], "__typename": [ 80 @@ -49703,7 +50238,7 @@ export default { 40 ], "returning": [ - 2693 + 2699 ], "__typename": [ 80 @@ -49711,13 +50246,13 @@ export default { }, "match_streams_on_conflict": { "constraint": [ - 2706 + 2712 ], "update_columns": [ - 2735 + 2741 ], "where": [ - 2705 + 2711 ], "__typename": [ 80 @@ -49725,58 +50260,58 @@ export default { }, "match_streams_order_by": { "autodirector": [ - 2946 + 2952 ], "error_message": [ - 2946 + 2952 ], "game_server_node": [ - 1719 + 1725 ], "game_server_node_id": [ - 2946 + 2952 ], "id": [ - 2946 + 2952 ], "is_game_streamer": [ - 2946 + 2952 ], "is_live": [ - 2946 + 2952 ], "k8s_service_name": [ - 2946 + 2952 ], "last_status_at": [ - 2946 + 2952 ], "link": [ - 2946 + 2952 ], "match": [ - 2781 + 2787 ], "match_id": [ - 2946 + 2952 ], "mode": [ - 2946 + 2952 ], "priority": [ - 2946 + 2952 ], "status": [ - 2946 + 2952 ], "status_history": [ - 2946 + 2952 ], "stream_url": [ - 2946 + 2952 ], "title": [ - 2946 + 2952 ], "__typename": [ 80 @@ -49784,7 +50319,7 @@ export default { }, "match_streams_pk_columns_input": { "id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -49792,7 +50327,7 @@ export default { }, "match_streams_prepend_input": { "status_history": [ - 1817 + 1823 ], "__typename": [ 80 @@ -49812,7 +50347,7 @@ export default { 80 ], "id": [ - 4993 + 4999 ], "is_game_streamer": [ 5 @@ -49824,13 +50359,13 @@ export default { 80 ], "last_status_at": [ - 4493 + 4499 ], "link": [ 80 ], "match_id": [ - 4993 + 4999 ], "mode": [ 80 @@ -49842,7 +50377,7 @@ export default { 80 ], "status_history": [ - 1817 + 1823 ], "stream_url": [ 80 @@ -49864,7 +50399,7 @@ export default { }, "match_streams_stddev_order_by": { "priority": [ - 2946 + 2952 ], "__typename": [ 80 @@ -49880,7 +50415,7 @@ export default { }, "match_streams_stddev_pop_order_by": { "priority": [ - 2946 + 2952 ], "__typename": [ 80 @@ -49896,7 +50431,7 @@ export default { }, "match_streams_stddev_samp_order_by": { "priority": [ - 2946 + 2952 ], "__typename": [ 80 @@ -49904,10 +50439,10 @@ export default { }, "match_streams_stream_cursor_input": { "initial_value": [ - 2732 + 2738 ], "ordering": [ - 308 + 314 ], "__typename": [ 80 @@ -49924,7 +50459,7 @@ export default { 80 ], "id": [ - 4993 + 4999 ], "is_game_streamer": [ 5 @@ -49936,13 +50471,13 @@ export default { 80 ], "last_status_at": [ - 4493 + 4499 ], "link": [ 80 ], "match_id": [ - 4993 + 4999 ], "mode": [ 80 @@ -49954,7 +50489,7 @@ export default { 80 ], "status_history": [ - 1817 + 1823 ], "stream_url": [ 80 @@ -49976,7 +50511,7 @@ export default { }, "match_streams_sum_order_by": { "priority": [ - 2946 + 2952 ], "__typename": [ 80 @@ -49985,28 +50520,28 @@ export default { "match_streams_update_column": {}, "match_streams_updates": { "_append": [ - 2701 + 2707 ], "_delete_at_path": [ - 2707 + 2713 ], "_delete_elem": [ - 2708 + 2714 ], "_delete_key": [ - 2709 + 2715 ], "_inc": [ - 2710 + 2716 ], "_prepend": [ - 2720 + 2726 ], "_set": [ - 2724 + 2730 ], "where": [ - 2705 + 2711 ], "__typename": [ 80 @@ -50022,7 +50557,7 @@ export default { }, "match_streams_var_pop_order_by": { "priority": [ - 2946 + 2952 ], "__typename": [ 80 @@ -50038,7 +50573,7 @@ export default { }, "match_streams_var_samp_order_by": { "priority": [ - 2946 + 2952 ], "__typename": [ 80 @@ -50054,7 +50589,7 @@ export default { }, "match_streams_variance_order_by": { "priority": [ - 2946 + 2952 ], "__typename": [ 80 @@ -50065,7 +50600,7 @@ export default { 80 ], "type": [ - 735 + 741 ], "__typename": [ 80 @@ -50073,10 +50608,10 @@ export default { }, "match_type_cfgs_aggregate": { "aggregate": [ - 2745 + 2751 ], "nodes": [ - 2743 + 2749 ], "__typename": [ 80 @@ -50087,7 +50622,7 @@ export default { 40, { "columns": [ - 2755, + 2761, "[match_type_cfgs_select_column!]" ], "distinct": [ @@ -50096,10 +50631,10 @@ export default { } ], "max": [ - 2749 + 2755 ], "min": [ - 2750 + 2756 ], "__typename": [ 80 @@ -50107,19 +50642,19 @@ export default { }, "match_type_cfgs_bool_exp": { "_and": [ - 2746 + 2752 ], "_not": [ - 2746 + 2752 ], "_or": [ - 2746 + 2752 ], "cfg": [ 82 ], "type": [ - 736 + 742 ], "__typename": [ 80 @@ -50131,7 +50666,7 @@ export default { 80 ], "type": [ - 735 + 741 ], "__typename": [ 80 @@ -50158,7 +50693,7 @@ export default { 40 ], "returning": [ - 2743 + 2749 ], "__typename": [ 80 @@ -50166,13 +50701,13 @@ export default { }, "match_type_cfgs_on_conflict": { "constraint": [ - 2747 + 2753 ], "update_columns": [ - 2759 + 2765 ], "where": [ - 2746 + 2752 ], "__typename": [ 80 @@ -50180,10 +50715,10 @@ export default { }, "match_type_cfgs_order_by": { "cfg": [ - 2946 + 2952 ], "type": [ - 2946 + 2952 ], "__typename": [ 80 @@ -50191,7 +50726,7 @@ export default { }, "match_type_cfgs_pk_columns_input": { "type": [ - 735 + 741 ], "__typename": [ 80 @@ -50203,7 +50738,7 @@ export default { 80 ], "type": [ - 735 + 741 ], "__typename": [ 80 @@ -50211,10 +50746,10 @@ export default { }, "match_type_cfgs_stream_cursor_input": { "initial_value": [ - 2758 + 2764 ], "ordering": [ - 308 + 314 ], "__typename": [ 80 @@ -50225,7 +50760,7 @@ export default { 80 ], "type": [ - 735 + 741 ], "__typename": [ 80 @@ -50234,10 +50769,10 @@ export default { "match_type_cfgs_update_column": {}, "match_type_cfgs_updates": { "_set": [ - 2756 + 2762 ], "where": [ - 2746 + 2752 ], "__typename": [ 80 @@ -50269,13 +50804,13 @@ export default { 5 ], "cancels_at": [ - 4493 + 4499 ], "clutches": [ - 5173, + 5179, { "distinct_on": [ - 5189, + 5195, "[v_match_clutches_select_column!]" ], "limit": [ @@ -50285,19 +50820,19 @@ export default { 40 ], "order_by": [ - 5188, + 5194, "[v_match_clutches_order_by!]" ], "where": [ - 5182 + 5188 ] } ], "clutches_aggregate": [ - 5174, + 5180, { "distinct_on": [ - 5189, + 5195, "[v_match_clutches_select_column!]" ], "limit": [ @@ -50307,11 +50842,11 @@ export default { 40 ], "order_by": [ - 5188, + 5194, "[v_match_clutches_order_by!]" ], "where": [ - 5182 + 5188 ] } ], @@ -50322,16 +50857,16 @@ export default { 80 ], "created_at": [ - 4493 + 4499 ], "current_match_map_id": [ - 4993 + 4999 ], "demos": [ - 2483, + 2489, { "distinct_on": [ - 2512, + 2518, "[match_map_demos_select_column!]" ], "limit": [ @@ -50341,19 +50876,19 @@ export default { 40 ], "order_by": [ - 2509, + 2515, "[match_map_demos_order_by!]" ], "where": [ - 2495 + 2501 ] } ], "demos_aggregate": [ - 2484, + 2490, { "distinct_on": [ - 2512, + 2518, "[match_map_demos_select_column!]" ], "limit": [ @@ -50363,19 +50898,19 @@ export default { 40 ], "order_by": [ - 2509, + 2515, "[match_map_demos_order_by!]" ], "where": [ - 2495 + 2501 ] } ], "draft_games": [ - 458, + 464, { "distinct_on": [ - 482, + 488, "[draft_games_select_column!]" ], "limit": [ @@ -50385,19 +50920,19 @@ export default { 40 ], "order_by": [ - 480, + 486, "[draft_games_order_by!]" ], "where": [ - 469 + 475 ] } ], "draft_games_aggregate": [ - 459, + 465, { "distinct_on": [ - 482, + 488, "[draft_games_select_column!]" ], "limit": [ @@ -50407,28 +50942,28 @@ export default { 40 ], "order_by": [ - 480, + 486, "[draft_games_order_by!]" ], "where": [ - 469 + 475 ] } ], "e_match_status": [ - 978 + 984 ], "e_region": [ - 3991 + 3997 ], "effective_at": [ - 4493 + 4499 ], "elo_changes": [ - 5370, + 5376, { "distinct_on": [ - 5396, + 5402, "[v_player_elo_select_column!]" ], "limit": [ @@ -50438,19 +50973,19 @@ export default { 40 ], "order_by": [ - 5395, + 5401, "[v_player_elo_order_by!]" ], "where": [ - 5389 + 5395 ] } ], "elo_changes_aggregate": [ - 5371, + 5377, { "distinct_on": [ - 5396, + 5402, "[v_player_elo_select_column!]" ], "limit": [ @@ -50460,22 +50995,22 @@ export default { 40 ], "order_by": [ - 5395, + 5401, "[v_player_elo_order_by!]" ], "where": [ - 5389 + 5395 ] } ], "ended_at": [ - 4493 + 4499 ], "external_id": [ 80 ], "id": [ - 4993 + 4999 ], "invite_code": [ 80 @@ -50508,19 +51043,19 @@ export default { 80 ], "lineup_1": [ - 2441 + 2447 ], "lineup_1_id": [ - 4993 + 4999 ], "lineup_2": [ - 2441 + 2447 ], "lineup_2_id": [ - 4993 + 4999 ], "lineup_counts": [ - 1815, + 1821, { "path": [ 80 @@ -50528,13 +51063,13 @@ export default { } ], "map_veto_picking_lineup_id": [ - 4993 + 4999 ], "map_veto_picks": [ - 2575, + 2581, { "distinct_on": [ - 2593, + 2599, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -50544,19 +51079,19 @@ export default { 40 ], "order_by": [ - 2591, + 2597, "[match_map_veto_picks_order_by!]" ], "where": [ - 2582 + 2588 ] } ], "map_veto_picks_aggregate": [ - 2576, + 2582, { "distinct_on": [ - 2593, + 2599, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -50566,11 +51101,11 @@ export default { 40 ], "order_by": [ - 2591, + 2597, "[match_map_veto_picks_order_by!]" ], "where": [ - 2582 + 2588 ] } ], @@ -50578,10 +51113,10 @@ export default { 80 ], "match_maps": [ - 2599, + 2605, { "distinct_on": [ - 2621, + 2627, "[match_maps_select_column!]" ], "limit": [ @@ -50591,19 +51126,19 @@ export default { 40 ], "order_by": [ - 2619, + 2625, "[match_maps_order_by!]" ], "where": [ - 2608 + 2614 ] } ], "match_maps_aggregate": [ - 2600, + 2606, { "distinct_on": [ - 2621, + 2627, "[match_maps_select_column!]" ], "limit": [ @@ -50613,16 +51148,16 @@ export default { 40 ], "order_by": [ - 2619, + 2625, "[match_maps_order_by!]" ], "where": [ - 2608 + 2614 ] } ], "match_options_id": [ - 4993 + 4999 ], "max_players_per_lineup": [ 40 @@ -50631,10 +51166,10 @@ export default { 40 ], "opening_duels": [ - 5301, + 5307, { "distinct_on": [ - 5317, + 5323, "[v_match_player_opening_duels_select_column!]" ], "limit": [ @@ -50644,19 +51179,19 @@ export default { 40 ], "order_by": [ - 5316, + 5322, "[v_match_player_opening_duels_order_by!]" ], "where": [ - 5310 + 5316 ] } ], "opening_duels_aggregate": [ - 5302, + 5308, { "distinct_on": [ - 5317, + 5323, "[v_match_player_opening_duels_select_column!]" ], "limit": [ @@ -50666,31 +51201,31 @@ export default { 40 ], "order_by": [ - 5316, + 5322, "[v_match_player_opening_duels_order_by!]" ], "where": [ - 5310 + 5316 ] } ], "options": [ - 2641 + 2647 ], "organizer": [ - 3904 + 3910 ], "organizer_steam_id": [ - 252 + 258 ], "password": [ 80 ], "player_assists": [ - 3084, + 3090, { "distinct_on": [ - 3107, + 3113, "[player_assists_select_column!]" ], "limit": [ @@ -50700,19 +51235,19 @@ export default { 40 ], "order_by": [ - 3105, + 3111, "[player_assists_order_by!]" ], "where": [ - 3095 + 3101 ] } ], "player_assists_aggregate": [ - 3085, + 3091, { "distinct_on": [ - 3107, + 3113, "[player_assists_select_column!]" ], "limit": [ @@ -50722,19 +51257,19 @@ export default { 40 ], "order_by": [ - 3105, + 3111, "[player_assists_order_by!]" ], "where": [ - 3095 + 3101 ] } ], "player_damages": [ - 3147, + 3153, { "distinct_on": [ - 3168, + 3174, "[player_damages_select_column!]" ], "limit": [ @@ -50744,19 +51279,19 @@ export default { 40 ], "order_by": [ - 3166, + 3172, "[player_damages_order_by!]" ], "where": [ - 3156 + 3162 ] } ], "player_damages_aggregate": [ - 3148, + 3154, { "distinct_on": [ - 3168, + 3174, "[player_damages_select_column!]" ], "limit": [ @@ -50766,19 +51301,19 @@ export default { 40 ], "order_by": [ - 3166, + 3172, "[player_damages_order_by!]" ], "where": [ - 3156 + 3162 ] } ], "player_flashes": [ - 3256, + 3262, { "distinct_on": [ - 3279, + 3285, "[player_flashes_select_column!]" ], "limit": [ @@ -50788,19 +51323,19 @@ export default { 40 ], "order_by": [ - 3277, + 3283, "[player_flashes_order_by!]" ], "where": [ - 3267 + 3273 ] } ], "player_flashes_aggregate": [ - 3257, + 3263, { "distinct_on": [ - 3279, + 3285, "[player_flashes_select_column!]" ], "limit": [ @@ -50810,19 +51345,19 @@ export default { 40 ], "order_by": [ - 3277, + 3283, "[player_flashes_order_by!]" ], "where": [ - 3267 + 3273 ] } ], "player_kills": [ - 3301, + 3307, { "distinct_on": [ - 3365, + 3371, "[player_kills_select_column!]" ], "limit": [ @@ -50832,19 +51367,19 @@ export default { 40 ], "order_by": [ - 3363, + 3369, "[player_kills_order_by!]" ], "where": [ - 3312 + 3318 ] } ], "player_kills_aggregate": [ - 3302, + 3308, { "distinct_on": [ - 3365, + 3371, "[player_kills_select_column!]" ], "limit": [ @@ -50854,19 +51389,19 @@ export default { 40 ], "order_by": [ - 3363, + 3369, "[player_kills_order_by!]" ], "where": [ - 3312 + 3318 ] } ], "player_objectives": [ - 3502, + 3508, { "distinct_on": [ - 3523, + 3529, "[player_objectives_select_column!]" ], "limit": [ @@ -50876,19 +51411,19 @@ export default { 40 ], "order_by": [ - 3521, + 3527, "[player_objectives_order_by!]" ], "where": [ - 3511 + 3517 ] } ], "player_objectives_aggregate": [ - 3503, + 3509, { "distinct_on": [ - 3523, + 3529, "[player_objectives_select_column!]" ], "limit": [ @@ -50898,19 +51433,19 @@ export default { 40 ], "order_by": [ - 3521, + 3527, "[player_objectives_order_by!]" ], "where": [ - 3511 + 3517 ] } ], "player_unused_utilities": [ - 3789, + 3795, { "distinct_on": [ - 3810, + 3816, "[player_unused_utility_select_column!]" ], "limit": [ @@ -50920,19 +51455,19 @@ export default { 40 ], "order_by": [ - 3808, + 3814, "[player_unused_utility_order_by!]" ], "where": [ - 3798 + 3804 ] } ], "player_unused_utilities_aggregate": [ - 3790, + 3796, { "distinct_on": [ - 3810, + 3816, "[player_unused_utility_select_column!]" ], "limit": [ @@ -50942,19 +51477,19 @@ export default { 40 ], "order_by": [ - 3808, + 3814, "[player_unused_utility_order_by!]" ], "where": [ - 3798 + 3804 ] } ], "player_utility": [ - 3830, + 3836, { "distinct_on": [ - 3851, + 3857, "[player_utility_select_column!]" ], "limit": [ @@ -50964,19 +51499,19 @@ export default { 40 ], "order_by": [ - 3849, + 3855, "[player_utility_order_by!]" ], "where": [ - 3839 + 3845 ] } ], "player_utility_aggregate": [ - 3831, + 3837, { "distinct_on": [ - 3851, + 3857, "[player_utility_select_column!]" ], "limit": [ @@ -50986,11 +51521,11 @@ export default { 40 ], "order_by": [ - 3849, + 3855, "[player_utility_order_by!]" ], "where": [ - 3839 + 3845 ] } ], @@ -50998,13 +51533,13 @@ export default { 80 ], "region_veto_picking_lineup_id": [ - 4993 + 4999 ], "region_veto_picks": [ - 2669, + 2675, { "distinct_on": [ - 2687, + 2693, "[match_region_veto_picks_select_column!]" ], "limit": [ @@ -51014,19 +51549,19 @@ export default { 40 ], "order_by": [ - 2685, + 2691, "[match_region_veto_picks_order_by!]" ], "where": [ - 2676 + 2682 ] } ], "region_veto_picks_aggregate": [ - 2670, + 2676, { "distinct_on": [ - 2687, + 2693, "[match_region_veto_picks_select_column!]" ], "limit": [ @@ -51036,11 +51571,11 @@ export default { 40 ], "order_by": [ - 2685, + 2691, "[match_region_veto_picks_order_by!]" ], "where": [ - 2676 + 2682 ] } ], @@ -51048,16 +51583,16 @@ export default { 5 ], "scheduled_at": [ - 4493 + 4499 ], "server": [ - 4018 + 4024 ], "server_error": [ 80 ], "server_id": [ - 4993 + 4999 ], "server_plugin_runtime": [ 80 @@ -51072,16 +51607,16 @@ export default { 80 ], "started_at": [ - 4493 + 4499 ], "status": [ - 983 + 989 ], "streams": [ - 2693, + 2699, { "distinct_on": [ - 2721, + 2727, "[match_streams_select_column!]" ], "limit": [ @@ -51091,19 +51626,19 @@ export default { 40 ], "order_by": [ - 2718, + 2724, "[match_streams_order_by!]" ], "where": [ - 2705 + 2711 ] } ], "streams_aggregate": [ - 2694, + 2700, { "distinct_on": [ - 2721, + 2727, "[match_streams_select_column!]" ], "limit": [ @@ -51113,19 +51648,19 @@ export default { 40 ], "order_by": [ - 2718, + 2724, "[match_streams_order_by!]" ], "where": [ - 2705 + 2711 ] } ], "teams": [ - 4446, + 4452, { "distinct_on": [ - 4470, + 4476, "[teams_select_column!]" ], "limit": [ @@ -51135,19 +51670,19 @@ export default { 40 ], "order_by": [ - 4468, + 4474, "[teams_order_by!]" ], "where": [ - 4457 + 4463 ] } ], "tournament_brackets": [ - 4537, + 4543, { "distinct_on": [ - 4561, + 4567, "[tournament_brackets_select_column!]" ], "limit": [ @@ -51157,19 +51692,19 @@ export default { 40 ], "order_by": [ - 4559, + 4565, "[tournament_brackets_order_by!]" ], "where": [ - 4548 + 4554 ] } ], "tournament_brackets_aggregate": [ - 4538, + 4544, { "distinct_on": [ - 4561, + 4567, "[tournament_brackets_select_column!]" ], "limit": [ @@ -51179,11 +51714,11 @@ export default { 40 ], "order_by": [ - 4559, + 4565, "[tournament_brackets_order_by!]" ], "where": [ - 4548 + 4554 ] } ], @@ -51191,10 +51726,10 @@ export default { 80 ], "winner": [ - 2441 + 2447 ], "winning_lineup_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -51202,10 +51737,10 @@ export default { }, "matches_aggregate": { "aggregate": [ - 2765 + 2771 ], "nodes": [ - 2761 + 2767 ], "__typename": [ 80 @@ -51213,7 +51748,7 @@ export default { }, "matches_aggregate_bool_exp": { "count": [ - 2764 + 2770 ], "__typename": [ 80 @@ -51221,13 +51756,13 @@ export default { }, "matches_aggregate_bool_exp_count": { "arguments": [ - 2783 + 2789 ], "distinct": [ 5 ], "filter": [ - 2770 + 2776 ], "predicate": [ 41 @@ -51238,13 +51773,13 @@ export default { }, "matches_aggregate_fields": { "avg": [ - 2768 + 2774 ], "count": [ 40, { "columns": [ - 2783, + 2789, "[matches_select_column!]" ], "distinct": [ @@ -51253,31 +51788,31 @@ export default { } ], "max": [ - 2774 + 2780 ], "min": [ - 2776 + 2782 ], "stddev": [ - 2785 + 2791 ], "stddev_pop": [ - 2787 + 2793 ], "stddev_samp": [ - 2789 + 2795 ], "sum": [ - 2793 + 2799 ], "var_pop": [ - 2797 + 2803 ], "var_samp": [ - 2799 + 2805 ], "variance": [ - 2801 + 2807 ], "__typename": [ 80 @@ -51285,37 +51820,37 @@ export default { }, "matches_aggregate_order_by": { "avg": [ - 2769 + 2775 ], "count": [ - 2946 + 2952 ], "max": [ - 2775 + 2781 ], "min": [ - 2777 + 2783 ], "stddev": [ - 2786 + 2792 ], "stddev_pop": [ - 2788 + 2794 ], "stddev_samp": [ - 2790 + 2796 ], "sum": [ - 2794 + 2800 ], "var_pop": [ - 2798 + 2804 ], "var_samp": [ - 2800 + 2806 ], "variance": [ - 2802 + 2808 ], "__typename": [ 80 @@ -51323,10 +51858,10 @@ export default { }, "matches_arr_rel_insert_input": { "data": [ - 2773 + 2779 ], "on_conflict": [ - 2780 + 2786 ], "__typename": [ 80 @@ -51348,7 +51883,7 @@ export default { }, "matches_avg_order_by": { "organizer_steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -51356,13 +51891,13 @@ export default { }, "matches_bool_exp": { "_and": [ - 2770 + 2776 ], "_not": [ - 2770 + 2776 ], "_or": [ - 2770 + 2776 ], "can_assign_server": [ 6 @@ -51389,13 +51924,13 @@ export default { 6 ], "cancels_at": [ - 4494 + 4500 ], "clutches": [ - 5182 + 5188 ], "clutches_aggregate": [ - 5175 + 5181 ], "connection_link": [ 82 @@ -51404,46 +51939,46 @@ export default { 82 ], "created_at": [ - 4494 + 4500 ], "current_match_map_id": [ - 4995 + 5001 ], "demos": [ - 2495 + 2501 ], "demos_aggregate": [ - 2485 + 2491 ], "draft_games": [ - 469 + 475 ], "draft_games_aggregate": [ - 460 + 466 ], "e_match_status": [ - 981 + 987 ], "e_region": [ - 3995 + 4001 ], "effective_at": [ - 4494 + 4500 ], "elo_changes": [ - 5389 + 5395 ], "elo_changes_aggregate": [ - 5372 + 5378 ], "ended_at": [ - 4494 + 4500 ], "external_id": [ 82 ], "id": [ - 4995 + 5001 ], "invite_code": [ 82 @@ -51476,40 +52011,40 @@ export default { 82 ], "lineup_1": [ - 2450 + 2456 ], "lineup_1_id": [ - 4995 + 5001 ], "lineup_2": [ - 2450 + 2456 ], "lineup_2_id": [ - 4995 + 5001 ], "lineup_counts": [ - 1816 + 1822 ], "map_veto_picking_lineup_id": [ - 4995 + 5001 ], "map_veto_picks": [ - 2582 + 2588 ], "map_veto_picks_aggregate": [ - 2577 + 2583 ], "map_veto_type": [ 82 ], "match_maps": [ - 2608 + 2614 ], "match_maps_aggregate": [ - 2601 + 2607 ], "match_options_id": [ - 4995 + 5001 ], "max_players_per_lineup": [ 41 @@ -51518,91 +52053,91 @@ export default { 41 ], "opening_duels": [ - 5310 + 5316 ], "opening_duels_aggregate": [ - 5303 + 5309 ], "options": [ - 2645 + 2651 ], "organizer": [ - 3908 + 3914 ], "organizer_steam_id": [ - 254 + 260 ], "password": [ 82 ], "player_assists": [ - 3095 + 3101 ], "player_assists_aggregate": [ - 3086 + 3092 ], "player_damages": [ - 3156 + 3162 ], "player_damages_aggregate": [ - 3149 + 3155 ], "player_flashes": [ - 3267 + 3273 ], "player_flashes_aggregate": [ - 3258 + 3264 ], "player_kills": [ - 3312 + 3318 ], "player_kills_aggregate": [ - 3303 + 3309 ], "player_objectives": [ - 3511 + 3517 ], "player_objectives_aggregate": [ - 3504 + 3510 ], "player_unused_utilities": [ - 3798 + 3804 ], "player_unused_utilities_aggregate": [ - 3791 + 3797 ], "player_utility": [ - 3839 + 3845 ], "player_utility_aggregate": [ - 3832 + 3838 ], "region": [ 82 ], "region_veto_picking_lineup_id": [ - 4995 + 5001 ], "region_veto_picks": [ - 2676 + 2682 ], "region_veto_picks_aggregate": [ - 2671 + 2677 ], "requested_organizer": [ 6 ], "scheduled_at": [ - 4494 + 4500 ], "server": [ - 4029 + 4035 ], "server_error": [ 82 ], "server_id": [ - 4995 + 5001 ], "server_plugin_runtime": [ 82 @@ -51617,34 +52152,34 @@ export default { 82 ], "started_at": [ - 4494 + 4500 ], "status": [ - 984 + 990 ], "streams": [ - 2705 + 2711 ], "streams_aggregate": [ - 2695 + 2701 ], "teams": [ - 4457 + 4463 ], "tournament_brackets": [ - 4548 + 4554 ], "tournament_brackets_aggregate": [ - 4539 + 4545 ], "tv_connection_string": [ 82 ], "winner": [ - 2450 + 2456 ], "winning_lineup_id": [ - 4995 + 5001 ], "__typename": [ 80 @@ -51653,7 +52188,7 @@ export default { "matches_constraint": {}, "matches_inc_input": { "organizer_steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -51661,136 +52196,136 @@ export default { }, "matches_insert_input": { "cancels_at": [ - 4493 + 4499 ], "clutches": [ - 5179 + 5185 ], "created_at": [ - 4493 + 4499 ], "demos": [ - 2492 + 2498 ], "draft_games": [ - 466 + 472 ], "e_match_status": [ - 989 + 995 ], "e_region": [ - 4001 + 4007 ], "elo_changes": [ - 5386 + 5392 ], "ended_at": [ - 4493 + 4499 ], "external_id": [ 80 ], "id": [ - 4993 + 4999 ], "label": [ 80 ], "lineup_1": [ - 2459 + 2465 ], "lineup_1_id": [ - 4993 + 4999 ], "lineup_2": [ - 2459 + 2465 ], "lineup_2_id": [ - 4993 + 4999 ], "map_veto_picks": [ - 2581 + 2587 ], "match_maps": [ - 2605 + 2611 ], "match_options_id": [ - 4993 + 4999 ], "opening_duels": [ - 5307 + 5313 ], "options": [ - 2652 + 2658 ], "organizer": [ - 3915 + 3921 ], "organizer_steam_id": [ - 252 + 258 ], "password": [ 80 ], "player_assists": [ - 3092 + 3098 ], "player_damages": [ - 3153 + 3159 ], "player_flashes": [ - 3264 + 3270 ], "player_kills": [ - 3309 + 3315 ], "player_objectives": [ - 3508 + 3514 ], "player_unused_utilities": [ - 3795 + 3801 ], "player_utility": [ - 3836 + 3842 ], "region": [ 80 ], "region_veto_picks": [ - 2675 + 2681 ], "scheduled_at": [ - 4493 + 4499 ], "server": [ - 4038 + 4044 ], "server_error": [ 80 ], "server_id": [ - 4993 + 4999 ], "source": [ 80 ], "started_at": [ - 4493 + 4499 ], "status": [ - 983 + 989 ], "streams": [ - 2702 + 2708 ], "tournament_brackets": [ - 4545 + 4551 ], "winner": [ - 2459 + 2465 ], "winning_lineup_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -51798,7 +52333,7 @@ export default { }, "matches_max_fields": { "cancels_at": [ - 4493 + 4499 ], "connection_link": [ 80 @@ -51807,22 +52342,22 @@ export default { 80 ], "created_at": [ - 4493 + 4499 ], "current_match_map_id": [ - 4993 + 4999 ], "effective_at": [ - 4493 + 4499 ], "ended_at": [ - 4493 + 4499 ], "external_id": [ 80 ], "id": [ - 4993 + 4999 ], "invite_code": [ 80 @@ -51831,19 +52366,19 @@ export default { 80 ], "lineup_1_id": [ - 4993 + 4999 ], "lineup_2_id": [ - 4993 + 4999 ], "map_veto_picking_lineup_id": [ - 4993 + 4999 ], "map_veto_type": [ 80 ], "match_options_id": [ - 4993 + 4999 ], "max_players_per_lineup": [ 40 @@ -51852,7 +52387,7 @@ export default { 40 ], "organizer_steam_id": [ - 252 + 258 ], "password": [ 80 @@ -51861,16 +52396,16 @@ export default { 80 ], "region_veto_picking_lineup_id": [ - 4993 + 4999 ], "scheduled_at": [ - 4493 + 4499 ], "server_error": [ 80 ], "server_id": [ - 4993 + 4999 ], "server_plugin_runtime": [ 80 @@ -51885,13 +52420,13 @@ export default { 80 ], "started_at": [ - 4493 + 4499 ], "tv_connection_string": [ 80 ], "winning_lineup_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -51899,61 +52434,61 @@ export default { }, "matches_max_order_by": { "cancels_at": [ - 2946 + 2952 ], "created_at": [ - 2946 + 2952 ], "effective_at": [ - 2946 + 2952 ], "ended_at": [ - 2946 + 2952 ], "external_id": [ - 2946 + 2952 ], "id": [ - 2946 + 2952 ], "label": [ - 2946 + 2952 ], "lineup_1_id": [ - 2946 + 2952 ], "lineup_2_id": [ - 2946 + 2952 ], "match_options_id": [ - 2946 + 2952 ], "organizer_steam_id": [ - 2946 + 2952 ], "password": [ - 2946 + 2952 ], "region": [ - 2946 + 2952 ], "scheduled_at": [ - 2946 + 2952 ], "server_error": [ - 2946 + 2952 ], "server_id": [ - 2946 + 2952 ], "source": [ - 2946 + 2952 ], "started_at": [ - 2946 + 2952 ], "winning_lineup_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -51961,7 +52496,7 @@ export default { }, "matches_min_fields": { "cancels_at": [ - 4493 + 4499 ], "connection_link": [ 80 @@ -51970,22 +52505,22 @@ export default { 80 ], "created_at": [ - 4493 + 4499 ], "current_match_map_id": [ - 4993 + 4999 ], "effective_at": [ - 4493 + 4499 ], "ended_at": [ - 4493 + 4499 ], "external_id": [ 80 ], "id": [ - 4993 + 4999 ], "invite_code": [ 80 @@ -51994,19 +52529,19 @@ export default { 80 ], "lineup_1_id": [ - 4993 + 4999 ], "lineup_2_id": [ - 4993 + 4999 ], "map_veto_picking_lineup_id": [ - 4993 + 4999 ], "map_veto_type": [ 80 ], "match_options_id": [ - 4993 + 4999 ], "max_players_per_lineup": [ 40 @@ -52015,7 +52550,7 @@ export default { 40 ], "organizer_steam_id": [ - 252 + 258 ], "password": [ 80 @@ -52024,16 +52559,16 @@ export default { 80 ], "region_veto_picking_lineup_id": [ - 4993 + 4999 ], "scheduled_at": [ - 4493 + 4499 ], "server_error": [ 80 ], "server_id": [ - 4993 + 4999 ], "server_plugin_runtime": [ 80 @@ -52048,13 +52583,13 @@ export default { 80 ], "started_at": [ - 4493 + 4499 ], "tv_connection_string": [ 80 ], "winning_lineup_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -52062,61 +52597,61 @@ export default { }, "matches_min_order_by": { "cancels_at": [ - 2946 + 2952 ], "created_at": [ - 2946 + 2952 ], "effective_at": [ - 2946 + 2952 ], "ended_at": [ - 2946 + 2952 ], "external_id": [ - 2946 + 2952 ], "id": [ - 2946 + 2952 ], "label": [ - 2946 + 2952 ], "lineup_1_id": [ - 2946 + 2952 ], "lineup_2_id": [ - 2946 + 2952 ], "match_options_id": [ - 2946 + 2952 ], "organizer_steam_id": [ - 2946 + 2952 ], "password": [ - 2946 + 2952 ], "region": [ - 2946 + 2952 ], "scheduled_at": [ - 2946 + 2952 ], "server_error": [ - 2946 + 2952 ], "server_id": [ - 2946 + 2952 ], "source": [ - 2946 + 2952 ], "started_at": [ - 2946 + 2952 ], "winning_lineup_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -52127,7 +52662,7 @@ export default { 40 ], "returning": [ - 2761 + 2767 ], "__typename": [ 80 @@ -52135,10 +52670,10 @@ export default { }, "matches_obj_rel_insert_input": { "data": [ - 2773 + 2779 ], "on_conflict": [ - 2780 + 2786 ], "__typename": [ 80 @@ -52146,13 +52681,13 @@ export default { }, "matches_on_conflict": { "constraint": [ - 2771 + 2777 ], "update_columns": [ - 2795 + 2801 ], "where": [ - 2770 + 2776 ], "__typename": [ 80 @@ -52160,235 +52695,235 @@ export default { }, "matches_order_by": { "can_assign_server": [ - 2946 + 2952 ], "can_cancel": [ - 2946 + 2952 ], "can_check_in": [ - 2946 + 2952 ], "can_reassign_winner": [ - 2946 + 2952 ], "can_schedule": [ - 2946 + 2952 ], "can_start": [ - 2946 + 2952 ], "can_stream_live": [ - 2946 + 2952 ], "can_stream_tv": [ - 2946 + 2952 ], "cancels_at": [ - 2946 + 2952 ], "clutches_aggregate": [ - 5178 + 5184 ], "connection_link": [ - 2946 + 2952 ], "connection_string": [ - 2946 + 2952 ], "created_at": [ - 2946 + 2952 ], "current_match_map_id": [ - 2946 + 2952 ], "demos_aggregate": [ - 2490 + 2496 ], "draft_games_aggregate": [ - 465 + 471 ], "e_match_status": [ - 991 + 997 ], "e_region": [ - 4003 + 4009 ], "effective_at": [ - 2946 + 2952 ], "elo_changes_aggregate": [ - 5385 + 5391 ], "ended_at": [ - 2946 + 2952 ], "external_id": [ - 2946 + 2952 ], "id": [ - 2946 + 2952 ], "invite_code": [ - 2946 + 2952 ], "is_captain": [ - 2946 + 2952 ], "is_coach": [ - 2946 + 2952 ], "is_friend_in_match_lineup": [ - 2946 + 2952 ], "is_in_lineup": [ - 2946 + 2952 ], "is_match_server_available": [ - 2946 + 2952 ], "is_organizer": [ - 2946 + 2952 ], "is_server_online": [ - 2946 + 2952 ], "is_tournament_match": [ - 2946 + 2952 ], "label": [ - 2946 + 2952 ], "lineup_1": [ - 2461 + 2467 ], "lineup_1_id": [ - 2946 + 2952 ], "lineup_2": [ - 2461 + 2467 ], "lineup_2_id": [ - 2946 + 2952 ], "lineup_counts": [ - 2946 + 2952 ], "map_veto_picking_lineup_id": [ - 2946 + 2952 ], "map_veto_picks_aggregate": [ - 2580 + 2586 ], "map_veto_type": [ - 2946 + 2952 ], "match_maps_aggregate": [ - 2604 + 2610 ], "match_options_id": [ - 2946 + 2952 ], "max_players_per_lineup": [ - 2946 + 2952 ], "min_players_per_lineup": [ - 2946 + 2952 ], "opening_duels_aggregate": [ - 5306 + 5312 ], "options": [ - 2654 + 2660 ], "organizer": [ - 3917 + 3923 ], "organizer_steam_id": [ - 2946 + 2952 ], "password": [ - 2946 + 2952 ], "player_assists_aggregate": [ - 3091 + 3097 ], "player_damages_aggregate": [ - 3152 + 3158 ], "player_flashes_aggregate": [ - 3263 + 3269 ], "player_kills_aggregate": [ - 3308 + 3314 ], "player_objectives_aggregate": [ - 3507 + 3513 ], "player_unused_utilities_aggregate": [ - 3794 + 3800 ], "player_utility_aggregate": [ - 3835 + 3841 ], "region": [ - 2946 + 2952 ], "region_veto_picking_lineup_id": [ - 2946 + 2952 ], "region_veto_picks_aggregate": [ - 2674 + 2680 ], "requested_organizer": [ - 2946 + 2952 ], "scheduled_at": [ - 2946 + 2952 ], "server": [ - 4040 + 4046 ], "server_error": [ - 2946 + 2952 ], "server_id": [ - 2946 + 2952 ], "server_plugin_runtime": [ - 2946 + 2952 ], "server_region": [ - 2946 + 2952 ], "server_type": [ - 2946 + 2952 ], "source": [ - 2946 + 2952 ], "started_at": [ - 2946 + 2952 ], "status": [ - 2946 + 2952 ], "streams_aggregate": [ - 2700 + 2706 ], "teams_aggregate": [ - 4453 + 4459 ], "tournament_brackets_aggregate": [ - 4544 + 4550 ], "tv_connection_string": [ - 2946 + 2952 ], "winner": [ - 2461 + 2467 ], "winning_lineup_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -52396,7 +52931,7 @@ export default { }, "matches_pk_columns_input": { "id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -52405,34 +52940,34 @@ export default { "matches_select_column": {}, "matches_set_input": { "cancels_at": [ - 4493 + 4499 ], "created_at": [ - 4493 + 4499 ], "ended_at": [ - 4493 + 4499 ], "external_id": [ 80 ], "id": [ - 4993 + 4999 ], "label": [ 80 ], "lineup_1_id": [ - 4993 + 4999 ], "lineup_2_id": [ - 4993 + 4999 ], "match_options_id": [ - 4993 + 4999 ], "organizer_steam_id": [ - 252 + 258 ], "password": [ 80 @@ -52441,25 +52976,25 @@ export default { 80 ], "scheduled_at": [ - 4493 + 4499 ], "server_error": [ 80 ], "server_id": [ - 4993 + 4999 ], "source": [ 80 ], "started_at": [ - 4493 + 4499 ], "status": [ - 983 + 989 ], "winning_lineup_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -52481,7 +53016,7 @@ export default { }, "matches_stddev_order_by": { "organizer_steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -52503,7 +53038,7 @@ export default { }, "matches_stddev_pop_order_by": { "organizer_steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -52525,7 +53060,7 @@ export default { }, "matches_stddev_samp_order_by": { "organizer_steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -52533,10 +53068,10 @@ export default { }, "matches_stream_cursor_input": { "initial_value": [ - 2792 + 2798 ], "ordering": [ - 308 + 314 ], "__typename": [ 80 @@ -52544,37 +53079,37 @@ export default { }, "matches_stream_cursor_value_input": { "cancels_at": [ - 4493 + 4499 ], "created_at": [ - 4493 + 4499 ], "effective_at": [ - 4493 + 4499 ], "ended_at": [ - 4493 + 4499 ], "external_id": [ 80 ], "id": [ - 4993 + 4999 ], "label": [ 80 ], "lineup_1_id": [ - 4993 + 4999 ], "lineup_2_id": [ - 4993 + 4999 ], "match_options_id": [ - 4993 + 4999 ], "organizer_steam_id": [ - 252 + 258 ], "password": [ 80 @@ -52583,25 +53118,25 @@ export default { 80 ], "scheduled_at": [ - 4493 + 4499 ], "server_error": [ 80 ], "server_id": [ - 4993 + 4999 ], "source": [ 80 ], "started_at": [ - 4493 + 4499 ], "status": [ - 983 + 989 ], "winning_lineup_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -52615,7 +53150,7 @@ export default { 40 ], "organizer_steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -52623,7 +53158,7 @@ export default { }, "matches_sum_order_by": { "organizer_steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -52632,13 +53167,13 @@ export default { "matches_update_column": {}, "matches_updates": { "_inc": [ - 2772 + 2778 ], "_set": [ - 2784 + 2790 ], "where": [ - 2770 + 2776 ], "__typename": [ 80 @@ -52660,7 +53195,7 @@ export default { }, "matches_var_pop_order_by": { "organizer_steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -52682,7 +53217,7 @@ export default { }, "matches_var_samp_order_by": { "organizer_steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -52704,7 +53239,7 @@ export default { }, "matches_variance_order_by": { "organizer_steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -52723,10 +53258,10 @@ export default { }, "migration_hashes_hashes_aggregate": { "aggregate": [ - 2805 + 2811 ], "nodes": [ - 2803 + 2809 ], "__typename": [ 80 @@ -52737,7 +53272,7 @@ export default { 40, { "columns": [ - 2815, + 2821, "[migration_hashes_hashes_select_column!]" ], "distinct": [ @@ -52746,10 +53281,10 @@ export default { } ], "max": [ - 2809 + 2815 ], "min": [ - 2810 + 2816 ], "__typename": [ 80 @@ -52757,13 +53292,13 @@ export default { }, "migration_hashes_hashes_bool_exp": { "_and": [ - 2806 + 2812 ], "_not": [ - 2806 + 2812 ], "_or": [ - 2806 + 2812 ], "hash": [ 82 @@ -52814,7 +53349,7 @@ export default { 40 ], "returning": [ - 2803 + 2809 ], "__typename": [ 80 @@ -52822,13 +53357,13 @@ export default { }, "migration_hashes_hashes_on_conflict": { "constraint": [ - 2807 + 2813 ], "update_columns": [ - 2819 + 2825 ], "where": [ - 2806 + 2812 ], "__typename": [ 80 @@ -52836,10 +53371,10 @@ export default { }, "migration_hashes_hashes_order_by": { "hash": [ - 2946 + 2952 ], "name": [ - 2946 + 2952 ], "__typename": [ 80 @@ -52867,10 +53402,10 @@ export default { }, "migration_hashes_hashes_stream_cursor_input": { "initial_value": [ - 2818 + 2824 ], "ordering": [ - 308 + 314 ], "__typename": [ 80 @@ -52890,10 +53425,10 @@ export default { "migration_hashes_hashes_update_column": {}, "migration_hashes_hashes_updates": { "_set": [ - 2816 + 2822 ], "where": [ - 2806 + 2812 ], "__typename": [ 80 @@ -52907,7 +53442,7 @@ export default { 80 ], "created_at": [ - 4493 + 4499 ], "custom_avatar_url": [ 80 @@ -52919,7 +53454,7 @@ export default { 80 ], "elo": [ - 1817, + 1823, { "path": [ 80 @@ -52939,25 +53474,25 @@ export default { 40 ], "faceit_updated_at": [ - 4493 + 4499 ], "faceit_url": [ 80 ], "friend_steam_id": [ - 252 + 258 ], "game_ban_count": [ 40 ], "invited_by_steam_id": [ - 252 + 258 ], "language": [ 80 ], "last_presence_state": [ - 1817, + 1823, { "path": [ 80 @@ -52965,10 +53500,10 @@ export default { } ], "last_read_news_at": [ - 4493 + 4499 ], "last_sign_in_at": [ - 4493 + 4499 ], "name": [ 80 @@ -52977,16 +53512,16 @@ export default { 5 ], "player": [ - 3904 + 3910 ], "premier_rank": [ 40 ], "premier_rank_updated_at": [ - 4493 + 4499 ], "presence_updated_at": [ - 4493 + 4499 ], "profile_url": [ 80 @@ -53004,10 +53539,10 @@ export default { 80 ], "steam_bans_checked_at": [ - 4493 + 4499 ], "steam_id": [ - 252 + 258 ], "vac_ban_count": [ 40 @@ -53021,10 +53556,10 @@ export default { }, "my_friends_aggregate": { "aggregate": [ - 2827 + 2833 ], "nodes": [ - 2821 + 2827 ], "__typename": [ 80 @@ -53032,13 +53567,13 @@ export default { }, "my_friends_aggregate_bool_exp": { "bool_and": [ - 2824 + 2830 ], "bool_or": [ - 2825 + 2831 ], "count": [ - 2826 + 2832 ], "__typename": [ 80 @@ -53046,13 +53581,13 @@ export default { }, "my_friends_aggregate_bool_exp_bool_and": { "arguments": [ - 2847 + 2853 ], "distinct": [ 5 ], "filter": [ - 2833 + 2839 ], "predicate": [ 6 @@ -53063,13 +53598,13 @@ export default { }, "my_friends_aggregate_bool_exp_bool_or": { "arguments": [ - 2848 + 2854 ], "distinct": [ 5 ], "filter": [ - 2833 + 2839 ], "predicate": [ 6 @@ -53080,13 +53615,13 @@ export default { }, "my_friends_aggregate_bool_exp_count": { "arguments": [ - 2846 + 2852 ], "distinct": [ 5 ], "filter": [ - 2833 + 2839 ], "predicate": [ 41 @@ -53097,13 +53632,13 @@ export default { }, "my_friends_aggregate_fields": { "avg": [ - 2831 + 2837 ], "count": [ 40, { "columns": [ - 2846, + 2852, "[my_friends_select_column!]" ], "distinct": [ @@ -53112,31 +53647,31 @@ export default { } ], "max": [ - 2839 + 2845 ], "min": [ - 2841 + 2847 ], "stddev": [ - 2850 + 2856 ], "stddev_pop": [ - 2852 + 2858 ], "stddev_samp": [ - 2854 + 2860 ], "sum": [ - 2858 + 2864 ], "var_pop": [ - 2861 + 2867 ], "var_samp": [ - 2863 + 2869 ], "variance": [ - 2865 + 2871 ], "__typename": [ 80 @@ -53144,37 +53679,37 @@ export default { }, "my_friends_aggregate_order_by": { "avg": [ - 2832 + 2838 ], "count": [ - 2946 + 2952 ], "max": [ - 2840 + 2846 ], "min": [ - 2842 + 2848 ], "stddev": [ - 2851 + 2857 ], "stddev_pop": [ - 2853 + 2859 ], "stddev_samp": [ - 2855 + 2861 ], "sum": [ - 2859 + 2865 ], "var_pop": [ - 2862 + 2868 ], "var_samp": [ - 2864 + 2870 ], "variance": [ - 2866 + 2872 ], "__typename": [ 80 @@ -53182,10 +53717,10 @@ export default { }, "my_friends_append_input": { "elo": [ - 1817 + 1823 ], "last_presence_state": [ - 1817 + 1823 ], "__typename": [ 80 @@ -53193,7 +53728,7 @@ export default { }, "my_friends_arr_rel_insert_input": { "data": [ - 2838 + 2844 ], "__typename": [ 80 @@ -53233,31 +53768,31 @@ export default { }, "my_friends_avg_order_by": { "days_since_last_ban": [ - 2946 + 2952 ], "faceit_elo": [ - 2946 + 2952 ], "faceit_skill_level": [ - 2946 + 2952 ], "friend_steam_id": [ - 2946 + 2952 ], "game_ban_count": [ - 2946 + 2952 ], "invited_by_steam_id": [ - 2946 + 2952 ], "premier_rank": [ - 2946 + 2952 ], "steam_id": [ - 2946 + 2952 ], "vac_ban_count": [ - 2946 + 2952 ], "__typename": [ 80 @@ -53265,13 +53800,13 @@ export default { }, "my_friends_bool_exp": { "_and": [ - 2833 + 2839 ], "_not": [ - 2833 + 2839 ], "_or": [ - 2833 + 2839 ], "avatar_url": [ 82 @@ -53280,7 +53815,7 @@ export default { 82 ], "created_at": [ - 4494 + 4500 ], "custom_avatar_url": [ 82 @@ -53292,7 +53827,7 @@ export default { 82 ], "elo": [ - 1819 + 1825 ], "faceit_elo": [ 41 @@ -53307,31 +53842,31 @@ export default { 41 ], "faceit_updated_at": [ - 4494 + 4500 ], "faceit_url": [ 82 ], "friend_steam_id": [ - 254 + 260 ], "game_ban_count": [ 41 ], "invited_by_steam_id": [ - 254 + 260 ], "language": [ 82 ], "last_presence_state": [ - 1819 + 1825 ], "last_read_news_at": [ - 4494 + 4500 ], "last_sign_in_at": [ - 4494 + 4500 ], "name": [ 82 @@ -53340,16 +53875,16 @@ export default { 6 ], "player": [ - 3908 + 3914 ], "premier_rank": [ 41 ], "premier_rank_updated_at": [ - 4494 + 4500 ], "presence_updated_at": [ - 4494 + 4500 ], "profile_url": [ 82 @@ -53367,10 +53902,10 @@ export default { 82 ], "steam_bans_checked_at": [ - 4494 + 4500 ], "steam_id": [ - 254 + 260 ], "vac_ban_count": [ 41 @@ -53426,19 +53961,19 @@ export default { 40 ], "friend_steam_id": [ - 252 + 258 ], "game_ban_count": [ 40 ], "invited_by_steam_id": [ - 252 + 258 ], "premier_rank": [ 40 ], "steam_id": [ - 252 + 258 ], "vac_ban_count": [ 40 @@ -53455,7 +53990,7 @@ export default { 80 ], "created_at": [ - 4493 + 4499 ], "custom_avatar_url": [ 80 @@ -53467,7 +54002,7 @@ export default { 80 ], "elo": [ - 1817 + 1823 ], "faceit_elo": [ 40 @@ -53482,31 +54017,31 @@ export default { 40 ], "faceit_updated_at": [ - 4493 + 4499 ], "faceit_url": [ 80 ], "friend_steam_id": [ - 252 + 258 ], "game_ban_count": [ 40 ], "invited_by_steam_id": [ - 252 + 258 ], "language": [ 80 ], "last_presence_state": [ - 1817 + 1823 ], "last_read_news_at": [ - 4493 + 4499 ], "last_sign_in_at": [ - 4493 + 4499 ], "name": [ 80 @@ -53515,16 +54050,16 @@ export default { 5 ], "player": [ - 3915 + 3921 ], "premier_rank": [ 40 ], "premier_rank_updated_at": [ - 4493 + 4499 ], "presence_updated_at": [ - 4493 + 4499 ], "profile_url": [ 80 @@ -53542,10 +54077,10 @@ export default { 80 ], "steam_bans_checked_at": [ - 4493 + 4499 ], "steam_id": [ - 252 + 258 ], "vac_ban_count": [ 40 @@ -53565,7 +54100,7 @@ export default { 80 ], "created_at": [ - 4493 + 4499 ], "custom_avatar_url": [ 80 @@ -53589,28 +54124,28 @@ export default { 40 ], "faceit_updated_at": [ - 4493 + 4499 ], "faceit_url": [ 80 ], "friend_steam_id": [ - 252 + 258 ], "game_ban_count": [ 40 ], "invited_by_steam_id": [ - 252 + 258 ], "language": [ 80 ], "last_read_news_at": [ - 4493 + 4499 ], "last_sign_in_at": [ - 4493 + 4499 ], "name": [ 80 @@ -53619,10 +54154,10 @@ export default { 40 ], "premier_rank_updated_at": [ - 4493 + 4499 ], "presence_updated_at": [ - 4493 + 4499 ], "profile_url": [ 80 @@ -53637,10 +54172,10 @@ export default { 80 ], "steam_bans_checked_at": [ - 4493 + 4499 ], "steam_id": [ - 252 + 258 ], "vac_ban_count": [ 40 @@ -53651,91 +54186,91 @@ export default { }, "my_friends_max_order_by": { "avatar_url": [ - 2946 + 2952 ], "country": [ - 2946 + 2952 ], "created_at": [ - 2946 + 2952 ], "custom_avatar_url": [ - 2946 + 2952 ], "days_since_last_ban": [ - 2946 + 2952 ], "discord_id": [ - 2946 + 2952 ], "faceit_elo": [ - 2946 + 2952 ], "faceit_nickname": [ - 2946 + 2952 ], "faceit_player_id": [ - 2946 + 2952 ], "faceit_skill_level": [ - 2946 + 2952 ], "faceit_updated_at": [ - 2946 + 2952 ], "faceit_url": [ - 2946 + 2952 ], "friend_steam_id": [ - 2946 + 2952 ], "game_ban_count": [ - 2946 + 2952 ], "invited_by_steam_id": [ - 2946 + 2952 ], "language": [ - 2946 + 2952 ], "last_read_news_at": [ - 2946 + 2952 ], "last_sign_in_at": [ - 2946 + 2952 ], "name": [ - 2946 + 2952 ], "premier_rank": [ - 2946 + 2952 ], "premier_rank_updated_at": [ - 2946 + 2952 ], "presence_updated_at": [ - 2946 + 2952 ], "profile_url": [ - 2946 + 2952 ], "role": [ - 2946 + 2952 ], "roster_image_url": [ - 2946 + 2952 ], "status": [ - 2946 + 2952 ], "steam_bans_checked_at": [ - 2946 + 2952 ], "steam_id": [ - 2946 + 2952 ], "vac_ban_count": [ - 2946 + 2952 ], "__typename": [ 80 @@ -53749,7 +54284,7 @@ export default { 80 ], "created_at": [ - 4493 + 4499 ], "custom_avatar_url": [ 80 @@ -53773,28 +54308,28 @@ export default { 40 ], "faceit_updated_at": [ - 4493 + 4499 ], "faceit_url": [ 80 ], "friend_steam_id": [ - 252 + 258 ], "game_ban_count": [ 40 ], "invited_by_steam_id": [ - 252 + 258 ], "language": [ 80 ], "last_read_news_at": [ - 4493 + 4499 ], "last_sign_in_at": [ - 4493 + 4499 ], "name": [ 80 @@ -53803,10 +54338,10 @@ export default { 40 ], "premier_rank_updated_at": [ - 4493 + 4499 ], "presence_updated_at": [ - 4493 + 4499 ], "profile_url": [ 80 @@ -53821,10 +54356,10 @@ export default { 80 ], "steam_bans_checked_at": [ - 4493 + 4499 ], "steam_id": [ - 252 + 258 ], "vac_ban_count": [ 40 @@ -53835,91 +54370,91 @@ export default { }, "my_friends_min_order_by": { "avatar_url": [ - 2946 + 2952 ], "country": [ - 2946 + 2952 ], "created_at": [ - 2946 + 2952 ], "custom_avatar_url": [ - 2946 + 2952 ], "days_since_last_ban": [ - 2946 + 2952 ], "discord_id": [ - 2946 + 2952 ], "faceit_elo": [ - 2946 + 2952 ], "faceit_nickname": [ - 2946 + 2952 ], "faceit_player_id": [ - 2946 + 2952 ], "faceit_skill_level": [ - 2946 + 2952 ], "faceit_updated_at": [ - 2946 + 2952 ], "faceit_url": [ - 2946 + 2952 ], "friend_steam_id": [ - 2946 + 2952 ], "game_ban_count": [ - 2946 + 2952 ], "invited_by_steam_id": [ - 2946 + 2952 ], "language": [ - 2946 + 2952 ], "last_read_news_at": [ - 2946 + 2952 ], "last_sign_in_at": [ - 2946 + 2952 ], "name": [ - 2946 + 2952 ], "premier_rank": [ - 2946 + 2952 ], "premier_rank_updated_at": [ - 2946 + 2952 ], "presence_updated_at": [ - 2946 + 2952 ], "profile_url": [ - 2946 + 2952 ], "role": [ - 2946 + 2952 ], "roster_image_url": [ - 2946 + 2952 ], "status": [ - 2946 + 2952 ], "steam_bans_checked_at": [ - 2946 + 2952 ], "steam_id": [ - 2946 + 2952 ], "vac_ban_count": [ - 2946 + 2952 ], "__typename": [ 80 @@ -53930,7 +54465,7 @@ export default { 40 ], "returning": [ - 2821 + 2827 ], "__typename": [ 80 @@ -53938,109 +54473,109 @@ export default { }, "my_friends_order_by": { "avatar_url": [ - 2946 + 2952 ], "country": [ - 2946 + 2952 ], "created_at": [ - 2946 + 2952 ], "custom_avatar_url": [ - 2946 + 2952 ], "days_since_last_ban": [ - 2946 + 2952 ], "discord_id": [ - 2946 + 2952 ], "elo": [ - 2946 + 2952 ], "faceit_elo": [ - 2946 + 2952 ], "faceit_nickname": [ - 2946 + 2952 ], "faceit_player_id": [ - 2946 + 2952 ], "faceit_skill_level": [ - 2946 + 2952 ], "faceit_updated_at": [ - 2946 + 2952 ], "faceit_url": [ - 2946 + 2952 ], "friend_steam_id": [ - 2946 + 2952 ], "game_ban_count": [ - 2946 + 2952 ], "invited_by_steam_id": [ - 2946 + 2952 ], "language": [ - 2946 + 2952 ], "last_presence_state": [ - 2946 + 2952 ], "last_read_news_at": [ - 2946 + 2952 ], "last_sign_in_at": [ - 2946 + 2952 ], "name": [ - 2946 + 2952 ], "name_registered": [ - 2946 + 2952 ], "player": [ - 3917 + 3923 ], "premier_rank": [ - 2946 + 2952 ], "premier_rank_updated_at": [ - 2946 + 2952 ], "presence_updated_at": [ - 2946 + 2952 ], "profile_url": [ - 2946 + 2952 ], "role": [ - 2946 + 2952 ], "roster_image_url": [ - 2946 + 2952 ], "show_match_ready_modal": [ - 2946 + 2952 ], "status": [ - 2946 + 2952 ], "steam_bans_checked_at": [ - 2946 + 2952 ], "steam_id": [ - 2946 + 2952 ], "vac_ban_count": [ - 2946 + 2952 ], "vac_banned": [ - 2946 + 2952 ], "__typename": [ 80 @@ -54048,10 +54583,10 @@ export default { }, "my_friends_prepend_input": { "elo": [ - 1817 + 1823 ], "last_presence_state": [ - 1817 + 1823 ], "__typename": [ 80 @@ -54068,7 +54603,7 @@ export default { 80 ], "created_at": [ - 4493 + 4499 ], "custom_avatar_url": [ 80 @@ -54080,7 +54615,7 @@ export default { 80 ], "elo": [ - 1817 + 1823 ], "faceit_elo": [ 40 @@ -54095,31 +54630,31 @@ export default { 40 ], "faceit_updated_at": [ - 4493 + 4499 ], "faceit_url": [ 80 ], "friend_steam_id": [ - 252 + 258 ], "game_ban_count": [ 40 ], "invited_by_steam_id": [ - 252 + 258 ], "language": [ 80 ], "last_presence_state": [ - 1817 + 1823 ], "last_read_news_at": [ - 4493 + 4499 ], "last_sign_in_at": [ - 4493 + 4499 ], "name": [ 80 @@ -54131,10 +54666,10 @@ export default { 40 ], "premier_rank_updated_at": [ - 4493 + 4499 ], "presence_updated_at": [ - 4493 + 4499 ], "profile_url": [ 80 @@ -54152,10 +54687,10 @@ export default { 80 ], "steam_bans_checked_at": [ - 4493 + 4499 ], "steam_id": [ - 252 + 258 ], "vac_ban_count": [ 40 @@ -54201,31 +54736,31 @@ export default { }, "my_friends_stddev_order_by": { "days_since_last_ban": [ - 2946 + 2952 ], "faceit_elo": [ - 2946 + 2952 ], "faceit_skill_level": [ - 2946 + 2952 ], "friend_steam_id": [ - 2946 + 2952 ], "game_ban_count": [ - 2946 + 2952 ], "invited_by_steam_id": [ - 2946 + 2952 ], "premier_rank": [ - 2946 + 2952 ], "steam_id": [ - 2946 + 2952 ], "vac_ban_count": [ - 2946 + 2952 ], "__typename": [ 80 @@ -54265,31 +54800,31 @@ export default { }, "my_friends_stddev_pop_order_by": { "days_since_last_ban": [ - 2946 + 2952 ], "faceit_elo": [ - 2946 + 2952 ], "faceit_skill_level": [ - 2946 + 2952 ], "friend_steam_id": [ - 2946 + 2952 ], "game_ban_count": [ - 2946 + 2952 ], "invited_by_steam_id": [ - 2946 + 2952 ], "premier_rank": [ - 2946 + 2952 ], "steam_id": [ - 2946 + 2952 ], "vac_ban_count": [ - 2946 + 2952 ], "__typename": [ 80 @@ -54329,31 +54864,31 @@ export default { }, "my_friends_stddev_samp_order_by": { "days_since_last_ban": [ - 2946 + 2952 ], "faceit_elo": [ - 2946 + 2952 ], "faceit_skill_level": [ - 2946 + 2952 ], "friend_steam_id": [ - 2946 + 2952 ], "game_ban_count": [ - 2946 + 2952 ], "invited_by_steam_id": [ - 2946 + 2952 ], "premier_rank": [ - 2946 + 2952 ], "steam_id": [ - 2946 + 2952 ], "vac_ban_count": [ - 2946 + 2952 ], "__typename": [ 80 @@ -54361,10 +54896,10 @@ export default { }, "my_friends_stream_cursor_input": { "initial_value": [ - 2857 + 2863 ], "ordering": [ - 308 + 314 ], "__typename": [ 80 @@ -54378,7 +54913,7 @@ export default { 80 ], "created_at": [ - 4493 + 4499 ], "custom_avatar_url": [ 80 @@ -54390,7 +54925,7 @@ export default { 80 ], "elo": [ - 1817 + 1823 ], "faceit_elo": [ 40 @@ -54405,31 +54940,31 @@ export default { 40 ], "faceit_updated_at": [ - 4493 + 4499 ], "faceit_url": [ 80 ], "friend_steam_id": [ - 252 + 258 ], "game_ban_count": [ 40 ], "invited_by_steam_id": [ - 252 + 258 ], "language": [ 80 ], "last_presence_state": [ - 1817 + 1823 ], "last_read_news_at": [ - 4493 + 4499 ], "last_sign_in_at": [ - 4493 + 4499 ], "name": [ 80 @@ -54441,10 +54976,10 @@ export default { 40 ], "premier_rank_updated_at": [ - 4493 + 4499 ], "presence_updated_at": [ - 4493 + 4499 ], "profile_url": [ 80 @@ -54462,10 +54997,10 @@ export default { 80 ], "steam_bans_checked_at": [ - 4493 + 4499 ], "steam_id": [ - 252 + 258 ], "vac_ban_count": [ 40 @@ -54488,19 +55023,19 @@ export default { 40 ], "friend_steam_id": [ - 252 + 258 ], "game_ban_count": [ 40 ], "invited_by_steam_id": [ - 252 + 258 ], "premier_rank": [ 40 ], "steam_id": [ - 252 + 258 ], "vac_ban_count": [ 40 @@ -54511,31 +55046,31 @@ export default { }, "my_friends_sum_order_by": { "days_since_last_ban": [ - 2946 + 2952 ], "faceit_elo": [ - 2946 + 2952 ], "faceit_skill_level": [ - 2946 + 2952 ], "friend_steam_id": [ - 2946 + 2952 ], "game_ban_count": [ - 2946 + 2952 ], "invited_by_steam_id": [ - 2946 + 2952 ], "premier_rank": [ - 2946 + 2952 ], "steam_id": [ - 2946 + 2952 ], "vac_ban_count": [ - 2946 + 2952 ], "__typename": [ 80 @@ -54543,28 +55078,28 @@ export default { }, "my_friends_updates": { "_append": [ - 2829 + 2835 ], "_delete_at_path": [ - 2834 + 2840 ], "_delete_elem": [ - 2835 + 2841 ], "_delete_key": [ - 2836 + 2842 ], "_inc": [ - 2837 + 2843 ], "_prepend": [ - 2845 + 2851 ], "_set": [ - 2849 + 2855 ], "where": [ - 2833 + 2839 ], "__typename": [ 80 @@ -54604,31 +55139,31 @@ export default { }, "my_friends_var_pop_order_by": { "days_since_last_ban": [ - 2946 + 2952 ], "faceit_elo": [ - 2946 + 2952 ], "faceit_skill_level": [ - 2946 + 2952 ], "friend_steam_id": [ - 2946 + 2952 ], "game_ban_count": [ - 2946 + 2952 ], "invited_by_steam_id": [ - 2946 + 2952 ], "premier_rank": [ - 2946 + 2952 ], "steam_id": [ - 2946 + 2952 ], "vac_ban_count": [ - 2946 + 2952 ], "__typename": [ 80 @@ -54668,31 +55203,31 @@ export default { }, "my_friends_var_samp_order_by": { "days_since_last_ban": [ - 2946 + 2952 ], "faceit_elo": [ - 2946 + 2952 ], "faceit_skill_level": [ - 2946 + 2952 ], "friend_steam_id": [ - 2946 + 2952 ], "game_ban_count": [ - 2946 + 2952 ], "invited_by_steam_id": [ - 2946 + 2952 ], "premier_rank": [ - 2946 + 2952 ], "steam_id": [ - 2946 + 2952 ], "vac_ban_count": [ - 2946 + 2952 ], "__typename": [ 80 @@ -54732,31 +55267,31 @@ export default { }, "my_friends_variance_order_by": { "days_since_last_ban": [ - 2946 + 2952 ], "faceit_elo": [ - 2946 + 2952 ], "faceit_skill_level": [ - 2946 + 2952 ], "friend_steam_id": [ - 2946 + 2952 ], "game_ban_count": [ - 2946 + 2952 ], "invited_by_steam_id": [ - 2946 + 2952 ], "premier_rank": [ - 2946 + 2952 ], "steam_id": [ - 2946 + 2952 ], "vac_ban_count": [ - 2946 + 2952 ], "__typename": [ 80 @@ -54764,10 +55299,10 @@ export default { }, "news_articles": { "author": [ - 3904 + 3910 ], "author_steam_id": [ - 252 + 258 ], "content_markdown": [ 80 @@ -54776,13 +55311,13 @@ export default { 80 ], "created_at": [ - 4493 + 4499 ], "id": [ - 4993 + 4999 ], "published_at": [ - 4493 + 4499 ], "slug": [ 80 @@ -54797,10 +55332,10 @@ export default { 80 ], "updated_at": [ - 4493 + 4499 ], "view_count": [ - 252 + 258 ], "__typename": [ 80 @@ -54808,10 +55343,10 @@ export default { }, "news_articles_aggregate": { "aggregate": [ - 2869 + 2875 ], "nodes": [ - 2867 + 2873 ], "__typename": [ 80 @@ -54819,13 +55354,13 @@ export default { }, "news_articles_aggregate_fields": { "avg": [ - 2870 + 2876 ], "count": [ 40, { "columns": [ - 2881, + 2887, "[news_articles_select_column!]" ], "distinct": [ @@ -54834,31 +55369,31 @@ export default { } ], "max": [ - 2875 + 2881 ], "min": [ - 2876 + 2882 ], "stddev": [ - 2883 + 2889 ], "stddev_pop": [ - 2884 + 2890 ], "stddev_samp": [ - 2885 + 2891 ], "sum": [ - 2888 + 2894 ], "var_pop": [ - 2891 + 2897 ], "var_samp": [ - 2892 + 2898 ], "variance": [ - 2893 + 2899 ], "__typename": [ 80 @@ -54877,19 +55412,19 @@ export default { }, "news_articles_bool_exp": { "_and": [ - 2871 + 2877 ], "_not": [ - 2871 + 2877 ], "_or": [ - 2871 + 2877 ], "author": [ - 3908 + 3914 ], "author_steam_id": [ - 254 + 260 ], "content_markdown": [ 82 @@ -54898,13 +55433,13 @@ export default { 82 ], "created_at": [ - 4494 + 4500 ], "id": [ - 4995 + 5001 ], "published_at": [ - 4494 + 4500 ], "slug": [ 82 @@ -54919,10 +55454,10 @@ export default { 82 ], "updated_at": [ - 4494 + 4500 ], "view_count": [ - 254 + 260 ], "__typename": [ 80 @@ -54931,10 +55466,10 @@ export default { "news_articles_constraint": {}, "news_articles_inc_input": { "author_steam_id": [ - 252 + 258 ], "view_count": [ - 252 + 258 ], "__typename": [ 80 @@ -54942,10 +55477,10 @@ export default { }, "news_articles_insert_input": { "author": [ - 3915 + 3921 ], "author_steam_id": [ - 252 + 258 ], "content_markdown": [ 80 @@ -54954,13 +55489,13 @@ export default { 80 ], "created_at": [ - 4493 + 4499 ], "id": [ - 4993 + 4999 ], "published_at": [ - 4493 + 4499 ], "slug": [ 80 @@ -54975,10 +55510,10 @@ export default { 80 ], "updated_at": [ - 4493 + 4499 ], "view_count": [ - 252 + 258 ], "__typename": [ 80 @@ -54986,7 +55521,7 @@ export default { }, "news_articles_max_fields": { "author_steam_id": [ - 252 + 258 ], "content_markdown": [ 80 @@ -54995,13 +55530,13 @@ export default { 80 ], "created_at": [ - 4493 + 4499 ], "id": [ - 4993 + 4999 ], "published_at": [ - 4493 + 4499 ], "slug": [ 80 @@ -55016,10 +55551,10 @@ export default { 80 ], "updated_at": [ - 4493 + 4499 ], "view_count": [ - 252 + 258 ], "__typename": [ 80 @@ -55027,7 +55562,7 @@ export default { }, "news_articles_min_fields": { "author_steam_id": [ - 252 + 258 ], "content_markdown": [ 80 @@ -55036,13 +55571,13 @@ export default { 80 ], "created_at": [ - 4493 + 4499 ], "id": [ - 4993 + 4999 ], "published_at": [ - 4493 + 4499 ], "slug": [ 80 @@ -55057,10 +55592,10 @@ export default { 80 ], "updated_at": [ - 4493 + 4499 ], "view_count": [ - 252 + 258 ], "__typename": [ 80 @@ -55071,7 +55606,7 @@ export default { 40 ], "returning": [ - 2867 + 2873 ], "__typename": [ 80 @@ -55079,13 +55614,13 @@ export default { }, "news_articles_on_conflict": { "constraint": [ - 2872 + 2878 ], "update_columns": [ - 2889 + 2895 ], "where": [ - 2871 + 2877 ], "__typename": [ 80 @@ -55093,43 +55628,43 @@ export default { }, "news_articles_order_by": { "author": [ - 3917 + 3923 ], "author_steam_id": [ - 2946 + 2952 ], "content_markdown": [ - 2946 + 2952 ], "cover_image_url": [ - 2946 + 2952 ], "created_at": [ - 2946 + 2952 ], "id": [ - 2946 + 2952 ], "published_at": [ - 2946 + 2952 ], "slug": [ - 2946 + 2952 ], "status": [ - 2946 + 2952 ], "teaser": [ - 2946 + 2952 ], "title": [ - 2946 + 2952 ], "updated_at": [ - 2946 + 2952 ], "view_count": [ - 2946 + 2952 ], "__typename": [ 80 @@ -55137,7 +55672,7 @@ export default { }, "news_articles_pk_columns_input": { "id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -55146,7 +55681,7 @@ export default { "news_articles_select_column": {}, "news_articles_set_input": { "author_steam_id": [ - 252 + 258 ], "content_markdown": [ 80 @@ -55155,13 +55690,13 @@ export default { 80 ], "created_at": [ - 4493 + 4499 ], "id": [ - 4993 + 4999 ], "published_at": [ - 4493 + 4499 ], "slug": [ 80 @@ -55176,10 +55711,10 @@ export default { 80 ], "updated_at": [ - 4493 + 4499 ], "view_count": [ - 252 + 258 ], "__typename": [ 80 @@ -55220,10 +55755,10 @@ export default { }, "news_articles_stream_cursor_input": { "initial_value": [ - 2887 + 2893 ], "ordering": [ - 308 + 314 ], "__typename": [ 80 @@ -55231,7 +55766,7 @@ export default { }, "news_articles_stream_cursor_value_input": { "author_steam_id": [ - 252 + 258 ], "content_markdown": [ 80 @@ -55240,13 +55775,13 @@ export default { 80 ], "created_at": [ - 4493 + 4499 ], "id": [ - 4993 + 4999 ], "published_at": [ - 4493 + 4499 ], "slug": [ 80 @@ -55261,10 +55796,10 @@ export default { 80 ], "updated_at": [ - 4493 + 4499 ], "view_count": [ - 252 + 258 ], "__typename": [ 80 @@ -55272,10 +55807,10 @@ export default { }, "news_articles_sum_fields": { "author_steam_id": [ - 252 + 258 ], "view_count": [ - 252 + 258 ], "__typename": [ 80 @@ -55284,13 +55819,13 @@ export default { "news_articles_update_column": {}, "news_articles_updates": { "_inc": [ - 2873 + 2879 ], "_set": [ - 2882 + 2888 ], "where": [ - 2871 + 2877 ], "__typename": [ 80 @@ -55331,7 +55866,7 @@ export default { }, "notifications": { "actions": [ - 1817, + 1823, { "path": [ 80 @@ -55339,19 +55874,19 @@ export default { } ], "created_at": [ - 4493 + 4499 ], "deletable": [ 5 ], "deleted_at": [ - 4493 + 4499 ], "entity_id": [ 80 ], "id": [ - 4993 + 4999 ], "is_read": [ 5 @@ -55360,19 +55895,19 @@ export default { 80 ], "player": [ - 3904 + 3910 ], "role": [ - 1065 + 1071 ], "steam_id": [ - 252 + 258 ], "title": [ 80 ], "type": [ - 1025 + 1031 ], "__typename": [ 80 @@ -55380,10 +55915,10 @@ export default { }, "notifications_aggregate": { "aggregate": [ - 2900 + 2906 ], "nodes": [ - 2894 + 2900 ], "__typename": [ 80 @@ -55391,13 +55926,13 @@ export default { }, "notifications_aggregate_bool_exp": { "bool_and": [ - 2897 + 2903 ], "bool_or": [ - 2898 + 2904 ], "count": [ - 2899 + 2905 ], "__typename": [ 80 @@ -55405,13 +55940,13 @@ export default { }, "notifications_aggregate_bool_exp_bool_and": { "arguments": [ - 2923 + 2929 ], "distinct": [ 5 ], "filter": [ - 2906 + 2912 ], "predicate": [ 6 @@ -55422,13 +55957,13 @@ export default { }, "notifications_aggregate_bool_exp_bool_or": { "arguments": [ - 2924 + 2930 ], "distinct": [ 5 ], "filter": [ - 2906 + 2912 ], "predicate": [ 6 @@ -55439,13 +55974,13 @@ export default { }, "notifications_aggregate_bool_exp_count": { "arguments": [ - 2922 + 2928 ], "distinct": [ 5 ], "filter": [ - 2906 + 2912 ], "predicate": [ 41 @@ -55456,13 +55991,13 @@ export default { }, "notifications_aggregate_fields": { "avg": [ - 2904 + 2910 ], "count": [ 40, { "columns": [ - 2922, + 2928, "[notifications_select_column!]" ], "distinct": [ @@ -55471,31 +56006,31 @@ export default { } ], "max": [ - 2913 + 2919 ], "min": [ - 2915 + 2921 ], "stddev": [ - 2926 + 2932 ], "stddev_pop": [ - 2928 + 2934 ], "stddev_samp": [ - 2930 + 2936 ], "sum": [ - 2934 + 2940 ], "var_pop": [ - 2938 + 2944 ], "var_samp": [ - 2940 + 2946 ], "variance": [ - 2942 + 2948 ], "__typename": [ 80 @@ -55503,37 +56038,37 @@ export default { }, "notifications_aggregate_order_by": { "avg": [ - 2905 + 2911 ], "count": [ - 2946 + 2952 ], "max": [ - 2914 + 2920 ], "min": [ - 2916 + 2922 ], "stddev": [ - 2927 + 2933 ], "stddev_pop": [ - 2929 + 2935 ], "stddev_samp": [ - 2931 + 2937 ], "sum": [ - 2935 + 2941 ], "var_pop": [ - 2939 + 2945 ], "var_samp": [ - 2941 + 2947 ], "variance": [ - 2943 + 2949 ], "__typename": [ 80 @@ -55541,7 +56076,7 @@ export default { }, "notifications_append_input": { "actions": [ - 1817 + 1823 ], "__typename": [ 80 @@ -55549,10 +56084,10 @@ export default { }, "notifications_arr_rel_insert_input": { "data": [ - 2912 + 2918 ], "on_conflict": [ - 2918 + 2924 ], "__typename": [ 80 @@ -55568,7 +56103,7 @@ export default { }, "notifications_avg_order_by": { "steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -55576,31 +56111,31 @@ export default { }, "notifications_bool_exp": { "_and": [ - 2906 + 2912 ], "_not": [ - 2906 + 2912 ], "_or": [ - 2906 + 2912 ], "actions": [ - 1819 + 1825 ], "created_at": [ - 4494 + 4500 ], "deletable": [ 6 ], "deleted_at": [ - 4494 + 4500 ], "entity_id": [ 82 ], "id": [ - 4995 + 5001 ], "is_read": [ 6 @@ -55609,19 +56144,19 @@ export default { 82 ], "player": [ - 3908 + 3914 ], "role": [ - 1066 + 1072 ], "steam_id": [ - 254 + 260 ], "title": [ 82 ], "type": [ - 1026 + 1032 ], "__typename": [ 80 @@ -55654,7 +56189,7 @@ export default { }, "notifications_inc_input": { "steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -55662,22 +56197,22 @@ export default { }, "notifications_insert_input": { "actions": [ - 1817 + 1823 ], "created_at": [ - 4493 + 4499 ], "deletable": [ 5 ], "deleted_at": [ - 4493 + 4499 ], "entity_id": [ 80 ], "id": [ - 4993 + 4999 ], "is_read": [ 5 @@ -55686,19 +56221,19 @@ export default { 80 ], "player": [ - 3915 + 3921 ], "role": [ - 1065 + 1071 ], "steam_id": [ - 252 + 258 ], "title": [ 80 ], "type": [ - 1025 + 1031 ], "__typename": [ 80 @@ -55706,22 +56241,22 @@ export default { }, "notifications_max_fields": { "created_at": [ - 4493 + 4499 ], "deleted_at": [ - 4493 + 4499 ], "entity_id": [ 80 ], "id": [ - 4993 + 4999 ], "message": [ 80 ], "steam_id": [ - 252 + 258 ], "title": [ 80 @@ -55732,25 +56267,25 @@ export default { }, "notifications_max_order_by": { "created_at": [ - 2946 + 2952 ], "deleted_at": [ - 2946 + 2952 ], "entity_id": [ - 2946 + 2952 ], "id": [ - 2946 + 2952 ], "message": [ - 2946 + 2952 ], "steam_id": [ - 2946 + 2952 ], "title": [ - 2946 + 2952 ], "__typename": [ 80 @@ -55758,22 +56293,22 @@ export default { }, "notifications_min_fields": { "created_at": [ - 4493 + 4499 ], "deleted_at": [ - 4493 + 4499 ], "entity_id": [ 80 ], "id": [ - 4993 + 4999 ], "message": [ 80 ], "steam_id": [ - 252 + 258 ], "title": [ 80 @@ -55784,25 +56319,25 @@ export default { }, "notifications_min_order_by": { "created_at": [ - 2946 + 2952 ], "deleted_at": [ - 2946 + 2952 ], "entity_id": [ - 2946 + 2952 ], "id": [ - 2946 + 2952 ], "message": [ - 2946 + 2952 ], "steam_id": [ - 2946 + 2952 ], "title": [ - 2946 + 2952 ], "__typename": [ 80 @@ -55813,7 +56348,7 @@ export default { 40 ], "returning": [ - 2894 + 2900 ], "__typename": [ 80 @@ -55821,13 +56356,13 @@ export default { }, "notifications_on_conflict": { "constraint": [ - 2907 + 2913 ], "update_columns": [ - 2936 + 2942 ], "where": [ - 2906 + 2912 ], "__typename": [ 80 @@ -55835,43 +56370,43 @@ export default { }, "notifications_order_by": { "actions": [ - 2946 + 2952 ], "created_at": [ - 2946 + 2952 ], "deletable": [ - 2946 + 2952 ], "deleted_at": [ - 2946 + 2952 ], "entity_id": [ - 2946 + 2952 ], "id": [ - 2946 + 2952 ], "is_read": [ - 2946 + 2952 ], "message": [ - 2946 + 2952 ], "player": [ - 3917 + 3923 ], "role": [ - 2946 + 2952 ], "steam_id": [ - 2946 + 2952 ], "title": [ - 2946 + 2952 ], "type": [ - 2946 + 2952 ], "__typename": [ 80 @@ -55879,7 +56414,7 @@ export default { }, "notifications_pk_columns_input": { "id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -55887,7 +56422,7 @@ export default { }, "notifications_prepend_input": { "actions": [ - 1817 + 1823 ], "__typename": [ 80 @@ -55898,22 +56433,22 @@ export default { "notifications_select_column_notifications_aggregate_bool_exp_bool_or_arguments_columns": {}, "notifications_set_input": { "actions": [ - 1817 + 1823 ], "created_at": [ - 4493 + 4499 ], "deletable": [ 5 ], "deleted_at": [ - 4493 + 4499 ], "entity_id": [ 80 ], "id": [ - 4993 + 4999 ], "is_read": [ 5 @@ -55922,16 +56457,16 @@ export default { 80 ], "role": [ - 1065 + 1071 ], "steam_id": [ - 252 + 258 ], "title": [ 80 ], "type": [ - 1025 + 1031 ], "__typename": [ 80 @@ -55947,7 +56482,7 @@ export default { }, "notifications_stddev_order_by": { "steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -55963,7 +56498,7 @@ export default { }, "notifications_stddev_pop_order_by": { "steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -55979,7 +56514,7 @@ export default { }, "notifications_stddev_samp_order_by": { "steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -55987,10 +56522,10 @@ export default { }, "notifications_stream_cursor_input": { "initial_value": [ - 2933 + 2939 ], "ordering": [ - 308 + 314 ], "__typename": [ 80 @@ -55998,22 +56533,22 @@ export default { }, "notifications_stream_cursor_value_input": { "actions": [ - 1817 + 1823 ], "created_at": [ - 4493 + 4499 ], "deletable": [ 5 ], "deleted_at": [ - 4493 + 4499 ], "entity_id": [ 80 ], "id": [ - 4993 + 4999 ], "is_read": [ 5 @@ -56022,16 +56557,16 @@ export default { 80 ], "role": [ - 1065 + 1071 ], "steam_id": [ - 252 + 258 ], "title": [ 80 ], "type": [ - 1025 + 1031 ], "__typename": [ 80 @@ -56039,7 +56574,7 @@ export default { }, "notifications_sum_fields": { "steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -56047,7 +56582,7 @@ export default { }, "notifications_sum_order_by": { "steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -56056,28 +56591,28 @@ export default { "notifications_update_column": {}, "notifications_updates": { "_append": [ - 2902 + 2908 ], "_delete_at_path": [ - 2908 + 2914 ], "_delete_elem": [ - 2909 + 2915 ], "_delete_key": [ - 2910 + 2916 ], "_inc": [ - 2911 + 2917 ], "_prepend": [ - 2921 + 2927 ], "_set": [ - 2925 + 2931 ], "where": [ - 2906 + 2912 ], "__typename": [ 80 @@ -56093,7 +56628,7 @@ export default { }, "notifications_var_pop_order_by": { "steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -56109,7 +56644,7 @@ export default { }, "notifications_var_samp_order_by": { "steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -56125,7 +56660,7 @@ export default { }, "notifications_variance_order_by": { "steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -56134,31 +56669,31 @@ export default { "numeric": {}, "numeric_comparison_exp": { "_eq": [ - 2944 + 2950 ], "_gt": [ - 2944 + 2950 ], "_gte": [ - 2944 + 2950 ], "_in": [ - 2944 + 2950 ], "_is_null": [ 5 ], "_lt": [ - 2944 + 2950 ], "_lte": [ - 2944 + 2950 ], "_neq": [ - 2944 + 2950 ], "_nin": [ - 2944 + 2950 ], "__typename": [ 80 @@ -56167,19 +56702,19 @@ export default { "order_by": {}, "pending_match_import_players": { "created_at": [ - 4493 + 4499 ], "pending_match_import": [ - 2988 + 2994 ], "player": [ - 3904 + 3910 ], "steam_id": [ - 252 + 258 ], "valve_match_id": [ - 2944 + 2950 ], "__typename": [ 80 @@ -56187,10 +56722,10 @@ export default { }, "pending_match_import_players_aggregate": { "aggregate": [ - 2951 + 2957 ], "nodes": [ - 2947 + 2953 ], "__typename": [ 80 @@ -56198,7 +56733,7 @@ export default { }, "pending_match_import_players_aggregate_bool_exp": { "count": [ - 2950 + 2956 ], "__typename": [ 80 @@ -56206,13 +56741,13 @@ export default { }, "pending_match_import_players_aggregate_bool_exp_count": { "arguments": [ - 2968 + 2974 ], "distinct": [ 5 ], "filter": [ - 2956 + 2962 ], "predicate": [ 41 @@ -56223,13 +56758,13 @@ export default { }, "pending_match_import_players_aggregate_fields": { "avg": [ - 2954 + 2960 ], "count": [ 40, { "columns": [ - 2968, + 2974, "[pending_match_import_players_select_column!]" ], "distinct": [ @@ -56238,31 +56773,31 @@ export default { } ], "max": [ - 2960 + 2966 ], "min": [ - 2962 + 2968 ], "stddev": [ - 2970 + 2976 ], "stddev_pop": [ - 2972 + 2978 ], "stddev_samp": [ - 2974 + 2980 ], "sum": [ - 2978 + 2984 ], "var_pop": [ - 2982 + 2988 ], "var_samp": [ - 2984 + 2990 ], "variance": [ - 2986 + 2992 ], "__typename": [ 80 @@ -56270,37 +56805,37 @@ export default { }, "pending_match_import_players_aggregate_order_by": { "avg": [ - 2955 + 2961 ], "count": [ - 2946 + 2952 ], "max": [ - 2961 + 2967 ], "min": [ - 2963 + 2969 ], "stddev": [ - 2971 + 2977 ], "stddev_pop": [ - 2973 + 2979 ], "stddev_samp": [ - 2975 + 2981 ], "sum": [ - 2979 + 2985 ], "var_pop": [ - 2983 + 2989 ], "var_samp": [ - 2985 + 2991 ], "variance": [ - 2987 + 2993 ], "__typename": [ 80 @@ -56308,10 +56843,10 @@ export default { }, "pending_match_import_players_arr_rel_insert_input": { "data": [ - 2959 + 2965 ], "on_conflict": [ - 2965 + 2971 ], "__typename": [ 80 @@ -56330,10 +56865,10 @@ export default { }, "pending_match_import_players_avg_order_by": { "steam_id": [ - 2946 + 2952 ], "valve_match_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -56341,28 +56876,28 @@ export default { }, "pending_match_import_players_bool_exp": { "_and": [ - 2956 + 2962 ], "_not": [ - 2956 + 2962 ], "_or": [ - 2956 + 2962 ], "created_at": [ - 4494 + 4500 ], "pending_match_import": [ - 2992 + 2998 ], "player": [ - 3908 + 3914 ], "steam_id": [ - 254 + 260 ], "valve_match_id": [ - 2945 + 2951 ], "__typename": [ 80 @@ -56371,10 +56906,10 @@ export default { "pending_match_import_players_constraint": {}, "pending_match_import_players_inc_input": { "steam_id": [ - 252 + 258 ], "valve_match_id": [ - 2944 + 2950 ], "__typename": [ 80 @@ -56382,19 +56917,19 @@ export default { }, "pending_match_import_players_insert_input": { "created_at": [ - 4493 + 4499 ], "pending_match_import": [ - 2999 + 3005 ], "player": [ - 3915 + 3921 ], "steam_id": [ - 252 + 258 ], "valve_match_id": [ - 2944 + 2950 ], "__typename": [ 80 @@ -56402,13 +56937,13 @@ export default { }, "pending_match_import_players_max_fields": { "created_at": [ - 4493 + 4499 ], "steam_id": [ - 252 + 258 ], "valve_match_id": [ - 2944 + 2950 ], "__typename": [ 80 @@ -56416,13 +56951,13 @@ export default { }, "pending_match_import_players_max_order_by": { "created_at": [ - 2946 + 2952 ], "steam_id": [ - 2946 + 2952 ], "valve_match_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -56430,13 +56965,13 @@ export default { }, "pending_match_import_players_min_fields": { "created_at": [ - 4493 + 4499 ], "steam_id": [ - 252 + 258 ], "valve_match_id": [ - 2944 + 2950 ], "__typename": [ 80 @@ -56444,13 +56979,13 @@ export default { }, "pending_match_import_players_min_order_by": { "created_at": [ - 2946 + 2952 ], "steam_id": [ - 2946 + 2952 ], "valve_match_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -56461,7 +56996,7 @@ export default { 40 ], "returning": [ - 2947 + 2953 ], "__typename": [ 80 @@ -56469,13 +57004,13 @@ export default { }, "pending_match_import_players_on_conflict": { "constraint": [ - 2957 + 2963 ], "update_columns": [ - 2980 + 2986 ], "where": [ - 2956 + 2962 ], "__typename": [ 80 @@ -56483,19 +57018,19 @@ export default { }, "pending_match_import_players_order_by": { "created_at": [ - 2946 + 2952 ], "pending_match_import": [ - 3001 + 3007 ], "player": [ - 3917 + 3923 ], "steam_id": [ - 2946 + 2952 ], "valve_match_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -56503,10 +57038,10 @@ export default { }, "pending_match_import_players_pk_columns_input": { "steam_id": [ - 252 + 258 ], "valve_match_id": [ - 2944 + 2950 ], "__typename": [ 80 @@ -56515,13 +57050,13 @@ export default { "pending_match_import_players_select_column": {}, "pending_match_import_players_set_input": { "created_at": [ - 4493 + 4499 ], "steam_id": [ - 252 + 258 ], "valve_match_id": [ - 2944 + 2950 ], "__typename": [ 80 @@ -56540,10 +57075,10 @@ export default { }, "pending_match_import_players_stddev_order_by": { "steam_id": [ - 2946 + 2952 ], "valve_match_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -56562,10 +57097,10 @@ export default { }, "pending_match_import_players_stddev_pop_order_by": { "steam_id": [ - 2946 + 2952 ], "valve_match_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -56584,10 +57119,10 @@ export default { }, "pending_match_import_players_stddev_samp_order_by": { "steam_id": [ - 2946 + 2952 ], "valve_match_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -56595,10 +57130,10 @@ export default { }, "pending_match_import_players_stream_cursor_input": { "initial_value": [ - 2977 + 2983 ], "ordering": [ - 308 + 314 ], "__typename": [ 80 @@ -56606,13 +57141,13 @@ export default { }, "pending_match_import_players_stream_cursor_value_input": { "created_at": [ - 4493 + 4499 ], "steam_id": [ - 252 + 258 ], "valve_match_id": [ - 2944 + 2950 ], "__typename": [ 80 @@ -56620,10 +57155,10 @@ export default { }, "pending_match_import_players_sum_fields": { "steam_id": [ - 252 + 258 ], "valve_match_id": [ - 2944 + 2950 ], "__typename": [ 80 @@ -56631,10 +57166,10 @@ export default { }, "pending_match_import_players_sum_order_by": { "steam_id": [ - 2946 + 2952 ], "valve_match_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -56643,13 +57178,13 @@ export default { "pending_match_import_players_update_column": {}, "pending_match_import_players_updates": { "_inc": [ - 2958 + 2964 ], "_set": [ - 2969 + 2975 ], "where": [ - 2956 + 2962 ], "__typename": [ 80 @@ -56668,10 +57203,10 @@ export default { }, "pending_match_import_players_var_pop_order_by": { "steam_id": [ - 2946 + 2952 ], "valve_match_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -56690,10 +57225,10 @@ export default { }, "pending_match_import_players_var_samp_order_by": { "steam_id": [ - 2946 + 2952 ], "valve_match_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -56712,10 +57247,10 @@ export default { }, "pending_match_import_players_variance_order_by": { "steam_id": [ - 2946 + 2952 ], "valve_match_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -56723,7 +57258,7 @@ export default { }, "pending_match_imports": { "created_at": [ - 4493 + 4499 ], "demo_url": [ 80 @@ -56735,13 +57270,13 @@ export default { 80 ], "match_start_time": [ - 4493 + 4499 ], "players": [ - 2947, + 2953, { "distinct_on": [ - 2968, + 2974, "[pending_match_import_players_select_column!]" ], "limit": [ @@ -56751,19 +57286,19 @@ export default { 40 ], "order_by": [ - 2966, + 2972, "[pending_match_import_players_order_by!]" ], "where": [ - 2956 + 2962 ] } ], "players_aggregate": [ - 2948, + 2954, { "distinct_on": [ - 2968, + 2974, "[pending_match_import_players_select_column!]" ], "limit": [ @@ -56773,11 +57308,11 @@ export default { 40 ], "order_by": [ - 2966, + 2972, "[pending_match_import_players_order_by!]" ], "where": [ - 2956 + 2962 ] } ], @@ -56788,10 +57323,10 @@ export default { 80 ], "updated_at": [ - 4493 + 4499 ], "valve_match_id": [ - 2944 + 2950 ], "__typename": [ 80 @@ -56799,10 +57334,10 @@ export default { }, "pending_match_imports_aggregate": { "aggregate": [ - 2990 + 2996 ], "nodes": [ - 2988 + 2994 ], "__typename": [ 80 @@ -56810,13 +57345,13 @@ export default { }, "pending_match_imports_aggregate_fields": { "avg": [ - 2991 + 2997 ], "count": [ 40, { "columns": [ - 3003, + 3009, "[pending_match_imports_select_column!]" ], "distinct": [ @@ -56825,31 +57360,31 @@ export default { } ], "max": [ - 2996 + 3002 ], "min": [ - 2997 + 3003 ], "stddev": [ - 3005 + 3011 ], "stddev_pop": [ - 3006 + 3012 ], "stddev_samp": [ - 3007 + 3013 ], "sum": [ - 3010 + 3016 ], "var_pop": [ - 3013 + 3019 ], "var_samp": [ - 3014 + 3020 ], "variance": [ - 3015 + 3021 ], "__typename": [ 80 @@ -56865,16 +57400,16 @@ export default { }, "pending_match_imports_bool_exp": { "_and": [ - 2992 + 2998 ], "_not": [ - 2992 + 2998 ], "_or": [ - 2992 + 2998 ], "created_at": [ - 4494 + 4500 ], "demo_url": [ 82 @@ -56886,13 +57421,13 @@ export default { 82 ], "match_start_time": [ - 4494 + 4500 ], "players": [ - 2956 + 2962 ], "players_aggregate": [ - 2949 + 2955 ], "share_code": [ 82 @@ -56901,10 +57436,10 @@ export default { 82 ], "updated_at": [ - 4494 + 4500 ], "valve_match_id": [ - 2945 + 2951 ], "__typename": [ 80 @@ -56913,7 +57448,7 @@ export default { "pending_match_imports_constraint": {}, "pending_match_imports_inc_input": { "valve_match_id": [ - 2944 + 2950 ], "__typename": [ 80 @@ -56921,7 +57456,7 @@ export default { }, "pending_match_imports_insert_input": { "created_at": [ - 4493 + 4499 ], "demo_url": [ 80 @@ -56933,10 +57468,10 @@ export default { 80 ], "match_start_time": [ - 4493 + 4499 ], "players": [ - 2953 + 2959 ], "share_code": [ 80 @@ -56945,10 +57480,10 @@ export default { 80 ], "updated_at": [ - 4493 + 4499 ], "valve_match_id": [ - 2944 + 2950 ], "__typename": [ 80 @@ -56956,7 +57491,7 @@ export default { }, "pending_match_imports_max_fields": { "created_at": [ - 4493 + 4499 ], "demo_url": [ 80 @@ -56968,7 +57503,7 @@ export default { 80 ], "match_start_time": [ - 4493 + 4499 ], "share_code": [ 80 @@ -56977,10 +57512,10 @@ export default { 80 ], "updated_at": [ - 4493 + 4499 ], "valve_match_id": [ - 2944 + 2950 ], "__typename": [ 80 @@ -56988,7 +57523,7 @@ export default { }, "pending_match_imports_min_fields": { "created_at": [ - 4493 + 4499 ], "demo_url": [ 80 @@ -57000,7 +57535,7 @@ export default { 80 ], "match_start_time": [ - 4493 + 4499 ], "share_code": [ 80 @@ -57009,10 +57544,10 @@ export default { 80 ], "updated_at": [ - 4493 + 4499 ], "valve_match_id": [ - 2944 + 2950 ], "__typename": [ 80 @@ -57023,7 +57558,7 @@ export default { 40 ], "returning": [ - 2988 + 2994 ], "__typename": [ 80 @@ -57031,10 +57566,10 @@ export default { }, "pending_match_imports_obj_rel_insert_input": { "data": [ - 2995 + 3001 ], "on_conflict": [ - 3000 + 3006 ], "__typename": [ 80 @@ -57042,13 +57577,13 @@ export default { }, "pending_match_imports_on_conflict": { "constraint": [ - 2993 + 2999 ], "update_columns": [ - 3011 + 3017 ], "where": [ - 2992 + 2998 ], "__typename": [ 80 @@ -57056,34 +57591,34 @@ export default { }, "pending_match_imports_order_by": { "created_at": [ - 2946 + 2952 ], "demo_url": [ - 2946 + 2952 ], "error": [ - 2946 + 2952 ], "map_name": [ - 2946 + 2952 ], "match_start_time": [ - 2946 + 2952 ], "players_aggregate": [ - 2952 + 2958 ], "share_code": [ - 2946 + 2952 ], "status": [ - 2946 + 2952 ], "updated_at": [ - 2946 + 2952 ], "valve_match_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -57091,7 +57626,7 @@ export default { }, "pending_match_imports_pk_columns_input": { "valve_match_id": [ - 2944 + 2950 ], "__typename": [ 80 @@ -57100,7 +57635,7 @@ export default { "pending_match_imports_select_column": {}, "pending_match_imports_set_input": { "created_at": [ - 4493 + 4499 ], "demo_url": [ 80 @@ -57112,7 +57647,7 @@ export default { 80 ], "match_start_time": [ - 4493 + 4499 ], "share_code": [ 80 @@ -57121,10 +57656,10 @@ export default { 80 ], "updated_at": [ - 4493 + 4499 ], "valve_match_id": [ - 2944 + 2950 ], "__typename": [ 80 @@ -57156,10 +57691,10 @@ export default { }, "pending_match_imports_stream_cursor_input": { "initial_value": [ - 3009 + 3015 ], "ordering": [ - 308 + 314 ], "__typename": [ 80 @@ -57167,7 +57702,7 @@ export default { }, "pending_match_imports_stream_cursor_value_input": { "created_at": [ - 4493 + 4499 ], "demo_url": [ 80 @@ -57179,7 +57714,7 @@ export default { 80 ], "match_start_time": [ - 4493 + 4499 ], "share_code": [ 80 @@ -57188,10 +57723,10 @@ export default { 80 ], "updated_at": [ - 4493 + 4499 ], "valve_match_id": [ - 2944 + 2950 ], "__typename": [ 80 @@ -57199,7 +57734,7 @@ export default { }, "pending_match_imports_sum_fields": { "valve_match_id": [ - 2944 + 2950 ], "__typename": [ 80 @@ -57208,13 +57743,13 @@ export default { "pending_match_imports_update_column": {}, "pending_match_imports_updates": { "_inc": [ - 2994 + 3000 ], "_set": [ - 3004 + 3010 ], "where": [ - 2992 + 2998 ], "__typename": [ 80 @@ -57246,10 +57781,10 @@ export default { }, "player_aim_stats_demo": { "attacker": [ - 3904 + 3910 ], "attacker_steam_id": [ - 252 + 258 ], "counter_strafe_eligible_shots": [ 40 @@ -57261,7 +57796,7 @@ export default { 40 ], "crosshair_angle_sum_deg": [ - 2944 + 2950 ], "first_bullet_hits": [ 40 @@ -57279,16 +57814,16 @@ export default { 40 ], "match": [ - 2761 + 2767 ], "match_id": [ - 4993 + 4999 ], "match_map": [ - 2599 + 2605 ], "match_map_id": [ - 4993 + 4999 ], "non_awp_hits": [ 40 @@ -57309,7 +57844,7 @@ export default { 40 ], "time_to_damage_sum_s": [ - 2944 + 2950 ], "total_engagement_frames": [ 40 @@ -57320,10 +57855,10 @@ export default { }, "player_aim_stats_demo_aggregate": { "aggregate": [ - 3018 + 3024 ], "nodes": [ - 3016 + 3022 ], "__typename": [ 80 @@ -57331,13 +57866,13 @@ export default { }, "player_aim_stats_demo_aggregate_fields": { "avg": [ - 3019 + 3025 ], "count": [ 40, { "columns": [ - 3030, + 3036, "[player_aim_stats_demo_select_column!]" ], "distinct": [ @@ -57346,31 +57881,31 @@ export default { } ], "max": [ - 3024 + 3030 ], "min": [ - 3025 + 3031 ], "stddev": [ - 3032 + 3038 ], "stddev_pop": [ - 3033 + 3039 ], "stddev_samp": [ - 3034 + 3040 ], "sum": [ - 3037 + 3043 ], "var_pop": [ - 3040 + 3046 ], "var_samp": [ - 3041 + 3047 ], "variance": [ - 3042 + 3048 ], "__typename": [ 80 @@ -57437,19 +57972,19 @@ export default { }, "player_aim_stats_demo_bool_exp": { "_and": [ - 3020 + 3026 ], "_not": [ - 3020 + 3026 ], "_or": [ - 3020 + 3026 ], "attacker": [ - 3908 + 3914 ], "attacker_steam_id": [ - 254 + 260 ], "counter_strafe_eligible_shots": [ 41 @@ -57461,7 +57996,7 @@ export default { 41 ], "crosshair_angle_sum_deg": [ - 2945 + 2951 ], "first_bullet_hits": [ 41 @@ -57479,16 +58014,16 @@ export default { 41 ], "match": [ - 2770 + 2776 ], "match_id": [ - 4995 + 5001 ], "match_map": [ - 2608 + 2614 ], "match_map_id": [ - 4995 + 5001 ], "non_awp_hits": [ 41 @@ -57509,7 +58044,7 @@ export default { 41 ], "time_to_damage_sum_s": [ - 2945 + 2951 ], "total_engagement_frames": [ 41 @@ -57521,7 +58056,7 @@ export default { "player_aim_stats_demo_constraint": {}, "player_aim_stats_demo_inc_input": { "attacker_steam_id": [ - 252 + 258 ], "counter_strafe_eligible_shots": [ 40 @@ -57533,7 +58068,7 @@ export default { 40 ], "crosshair_angle_sum_deg": [ - 2944 + 2950 ], "first_bullet_hits": [ 40 @@ -57569,7 +58104,7 @@ export default { 40 ], "time_to_damage_sum_s": [ - 2944 + 2950 ], "total_engagement_frames": [ 40 @@ -57580,10 +58115,10 @@ export default { }, "player_aim_stats_demo_insert_input": { "attacker": [ - 3915 + 3921 ], "attacker_steam_id": [ - 252 + 258 ], "counter_strafe_eligible_shots": [ 40 @@ -57595,7 +58130,7 @@ export default { 40 ], "crosshair_angle_sum_deg": [ - 2944 + 2950 ], "first_bullet_hits": [ 40 @@ -57613,16 +58148,16 @@ export default { 40 ], "match": [ - 2779 + 2785 ], "match_id": [ - 4993 + 4999 ], "match_map": [ - 2617 + 2623 ], "match_map_id": [ - 4993 + 4999 ], "non_awp_hits": [ 40 @@ -57643,7 +58178,7 @@ export default { 40 ], "time_to_damage_sum_s": [ - 2944 + 2950 ], "total_engagement_frames": [ 40 @@ -57654,7 +58189,7 @@ export default { }, "player_aim_stats_demo_max_fields": { "attacker_steam_id": [ - 252 + 258 ], "counter_strafe_eligible_shots": [ 40 @@ -57666,7 +58201,7 @@ export default { 40 ], "crosshair_angle_sum_deg": [ - 2944 + 2950 ], "first_bullet_hits": [ 40 @@ -57684,10 +58219,10 @@ export default { 40 ], "match_id": [ - 4993 + 4999 ], "match_map_id": [ - 4993 + 4999 ], "non_awp_hits": [ 40 @@ -57708,7 +58243,7 @@ export default { 40 ], "time_to_damage_sum_s": [ - 2944 + 2950 ], "total_engagement_frames": [ 40 @@ -57719,7 +58254,7 @@ export default { }, "player_aim_stats_demo_min_fields": { "attacker_steam_id": [ - 252 + 258 ], "counter_strafe_eligible_shots": [ 40 @@ -57731,7 +58266,7 @@ export default { 40 ], "crosshair_angle_sum_deg": [ - 2944 + 2950 ], "first_bullet_hits": [ 40 @@ -57749,10 +58284,10 @@ export default { 40 ], "match_id": [ - 4993 + 4999 ], "match_map_id": [ - 4993 + 4999 ], "non_awp_hits": [ 40 @@ -57773,7 +58308,7 @@ export default { 40 ], "time_to_damage_sum_s": [ - 2944 + 2950 ], "total_engagement_frames": [ 40 @@ -57787,7 +58322,7 @@ export default { 40 ], "returning": [ - 3016 + 3022 ], "__typename": [ 80 @@ -57795,13 +58330,13 @@ export default { }, "player_aim_stats_demo_on_conflict": { "constraint": [ - 3021 + 3027 ], "update_columns": [ - 3038 + 3044 ], "where": [ - 3020 + 3026 ], "__typename": [ 80 @@ -57809,73 +58344,73 @@ export default { }, "player_aim_stats_demo_order_by": { "attacker": [ - 3917 + 3923 ], "attacker_steam_id": [ - 2946 + 2952 ], "counter_strafe_eligible_shots": [ - 2946 + 2952 ], "counter_strafed_shots": [ - 2946 + 2952 ], "crosshair_angle_count": [ - 2946 + 2952 ], "crosshair_angle_sum_deg": [ - 2946 + 2952 ], "first_bullet_hits": [ - 2946 + 2952 ], "first_bullet_shots": [ - 2946 + 2952 ], "headshot_hits": [ - 2946 + 2952 ], "hits": [ - 2946 + 2952 ], "hits_at_spotted": [ - 2946 + 2952 ], "match": [ - 2781 + 2787 ], "match_id": [ - 2946 + 2952 ], "match_map": [ - 2619 + 2625 ], "match_map_id": [ - 2946 + 2952 ], "non_awp_hits": [ - 2946 + 2952 ], "on_target_frames": [ - 2946 + 2952 ], "shots_at_spotted": [ - 2946 + 2952 ], "spray_hits": [ - 2946 + 2952 ], "spray_shots": [ - 2946 + 2952 ], "time_to_damage_count": [ - 2946 + 2952 ], "time_to_damage_sum_s": [ - 2946 + 2952 ], "total_engagement_frames": [ - 2946 + 2952 ], "__typename": [ 80 @@ -57883,10 +58418,10 @@ export default { }, "player_aim_stats_demo_pk_columns_input": { "attacker_steam_id": [ - 252 + 258 ], "match_map_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -57895,7 +58430,7 @@ export default { "player_aim_stats_demo_select_column": {}, "player_aim_stats_demo_set_input": { "attacker_steam_id": [ - 252 + 258 ], "counter_strafe_eligible_shots": [ 40 @@ -57907,7 +58442,7 @@ export default { 40 ], "crosshair_angle_sum_deg": [ - 2944 + 2950 ], "first_bullet_hits": [ 40 @@ -57925,10 +58460,10 @@ export default { 40 ], "match_id": [ - 4993 + 4999 ], "match_map_id": [ - 4993 + 4999 ], "non_awp_hits": [ 40 @@ -57949,7 +58484,7 @@ export default { 40 ], "time_to_damage_sum_s": [ - 2944 + 2950 ], "total_engagement_frames": [ 40 @@ -58137,10 +58672,10 @@ export default { }, "player_aim_stats_demo_stream_cursor_input": { "initial_value": [ - 3036 + 3042 ], "ordering": [ - 308 + 314 ], "__typename": [ 80 @@ -58148,7 +58683,7 @@ export default { }, "player_aim_stats_demo_stream_cursor_value_input": { "attacker_steam_id": [ - 252 + 258 ], "counter_strafe_eligible_shots": [ 40 @@ -58160,7 +58695,7 @@ export default { 40 ], "crosshair_angle_sum_deg": [ - 2944 + 2950 ], "first_bullet_hits": [ 40 @@ -58178,10 +58713,10 @@ export default { 40 ], "match_id": [ - 4993 + 4999 ], "match_map_id": [ - 4993 + 4999 ], "non_awp_hits": [ 40 @@ -58202,7 +58737,7 @@ export default { 40 ], "time_to_damage_sum_s": [ - 2944 + 2950 ], "total_engagement_frames": [ 40 @@ -58213,7 +58748,7 @@ export default { }, "player_aim_stats_demo_sum_fields": { "attacker_steam_id": [ - 252 + 258 ], "counter_strafe_eligible_shots": [ 40 @@ -58225,7 +58760,7 @@ export default { 40 ], "crosshair_angle_sum_deg": [ - 2944 + 2950 ], "first_bullet_hits": [ 40 @@ -58261,7 +58796,7 @@ export default { 40 ], "time_to_damage_sum_s": [ - 2944 + 2950 ], "total_engagement_frames": [ 40 @@ -58273,13 +58808,13 @@ export default { "player_aim_stats_demo_update_column": {}, "player_aim_stats_demo_updates": { "_inc": [ - 3022 + 3028 ], "_set": [ - 3031 + 3037 ], "where": [ - 3020 + 3026 ], "__typename": [ 80 @@ -58476,19 +59011,19 @@ export default { 40 ], "match": [ - 2761 + 2767 ], "match_id": [ - 4993 + 4999 ], "match_map": [ - 2599 + 2605 ], "match_map_id": [ - 4993 + 4999 ], "player": [ - 3904 + 3910 ], "shots": [ 40 @@ -58497,7 +59032,7 @@ export default { 40 ], "steam_id": [ - 252 + 258 ], "weapon_class": [ 80 @@ -58508,10 +59043,10 @@ export default { }, "player_aim_weapon_stats_aggregate": { "aggregate": [ - 3047 + 3053 ], "nodes": [ - 3043 + 3049 ], "__typename": [ 80 @@ -58519,7 +59054,7 @@ export default { }, "player_aim_weapon_stats_aggregate_bool_exp": { "count": [ - 3046 + 3052 ], "__typename": [ 80 @@ -58527,13 +59062,13 @@ export default { }, "player_aim_weapon_stats_aggregate_bool_exp_count": { "arguments": [ - 3064 + 3070 ], "distinct": [ 5 ], "filter": [ - 3052 + 3058 ], "predicate": [ 41 @@ -58544,13 +59079,13 @@ export default { }, "player_aim_weapon_stats_aggregate_fields": { "avg": [ - 3050 + 3056 ], "count": [ 40, { "columns": [ - 3064, + 3070, "[player_aim_weapon_stats_select_column!]" ], "distinct": [ @@ -58559,31 +59094,31 @@ export default { } ], "max": [ - 3056 + 3062 ], "min": [ - 3058 + 3064 ], "stddev": [ - 3066 + 3072 ], "stddev_pop": [ - 3068 + 3074 ], "stddev_samp": [ - 3070 + 3076 ], "sum": [ - 3074 + 3080 ], "var_pop": [ - 3078 + 3084 ], "var_samp": [ - 3080 + 3086 ], "variance": [ - 3082 + 3088 ], "__typename": [ 80 @@ -58591,37 +59126,37 @@ export default { }, "player_aim_weapon_stats_aggregate_order_by": { "avg": [ - 3051 + 3057 ], "count": [ - 2946 + 2952 ], "max": [ - 3057 + 3063 ], "min": [ - 3059 + 3065 ], "stddev": [ - 3067 + 3073 ], "stddev_pop": [ - 3069 + 3075 ], "stddev_samp": [ - 3071 + 3077 ], "sum": [ - 3075 + 3081 ], "var_pop": [ - 3079 + 3085 ], "var_samp": [ - 3081 + 3087 ], "variance": [ - 3083 + 3089 ], "__typename": [ 80 @@ -58629,10 +59164,10 @@ export default { }, "player_aim_weapon_stats_arr_rel_insert_input": { "data": [ - 3055 + 3061 ], "on_conflict": [ - 3061 + 3067 ], "__typename": [ 80 @@ -58666,25 +59201,25 @@ export default { }, "player_aim_weapon_stats_avg_order_by": { "first_bullet_hits": [ - 2946 + 2952 ], "first_bullet_shots": [ - 2946 + 2952 ], "hits": [ - 2946 + 2952 ], "hits_spotted": [ - 2946 + 2952 ], "shots": [ - 2946 + 2952 ], "shots_spotted": [ - 2946 + 2952 ], "steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -58692,13 +59227,13 @@ export default { }, "player_aim_weapon_stats_bool_exp": { "_and": [ - 3052 + 3058 ], "_not": [ - 3052 + 3058 ], "_or": [ - 3052 + 3058 ], "first_bullet_hits": [ 41 @@ -58713,19 +59248,19 @@ export default { 41 ], "match": [ - 2770 + 2776 ], "match_id": [ - 4995 + 5001 ], "match_map": [ - 2608 + 2614 ], "match_map_id": [ - 4995 + 5001 ], "player": [ - 3908 + 3914 ], "shots": [ 41 @@ -58734,7 +59269,7 @@ export default { 41 ], "steam_id": [ - 254 + 260 ], "weapon_class": [ 82 @@ -58764,7 +59299,7 @@ export default { 40 ], "steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -58784,19 +59319,19 @@ export default { 40 ], "match": [ - 2779 + 2785 ], "match_id": [ - 4993 + 4999 ], "match_map": [ - 2617 + 2623 ], "match_map_id": [ - 4993 + 4999 ], "player": [ - 3915 + 3921 ], "shots": [ 40 @@ -58805,7 +59340,7 @@ export default { 40 ], "steam_id": [ - 252 + 258 ], "weapon_class": [ 80 @@ -58828,10 +59363,10 @@ export default { 40 ], "match_id": [ - 4993 + 4999 ], "match_map_id": [ - 4993 + 4999 ], "shots": [ 40 @@ -58840,7 +59375,7 @@ export default { 40 ], "steam_id": [ - 252 + 258 ], "weapon_class": [ 80 @@ -58851,34 +59386,34 @@ export default { }, "player_aim_weapon_stats_max_order_by": { "first_bullet_hits": [ - 2946 + 2952 ], "first_bullet_shots": [ - 2946 + 2952 ], "hits": [ - 2946 + 2952 ], "hits_spotted": [ - 2946 + 2952 ], "match_id": [ - 2946 + 2952 ], "match_map_id": [ - 2946 + 2952 ], "shots": [ - 2946 + 2952 ], "shots_spotted": [ - 2946 + 2952 ], "steam_id": [ - 2946 + 2952 ], "weapon_class": [ - 2946 + 2952 ], "__typename": [ 80 @@ -58898,10 +59433,10 @@ export default { 40 ], "match_id": [ - 4993 + 4999 ], "match_map_id": [ - 4993 + 4999 ], "shots": [ 40 @@ -58910,7 +59445,7 @@ export default { 40 ], "steam_id": [ - 252 + 258 ], "weapon_class": [ 80 @@ -58921,34 +59456,34 @@ export default { }, "player_aim_weapon_stats_min_order_by": { "first_bullet_hits": [ - 2946 + 2952 ], "first_bullet_shots": [ - 2946 + 2952 ], "hits": [ - 2946 + 2952 ], "hits_spotted": [ - 2946 + 2952 ], "match_id": [ - 2946 + 2952 ], "match_map_id": [ - 2946 + 2952 ], "shots": [ - 2946 + 2952 ], "shots_spotted": [ - 2946 + 2952 ], "steam_id": [ - 2946 + 2952 ], "weapon_class": [ - 2946 + 2952 ], "__typename": [ 80 @@ -58959,7 +59494,7 @@ export default { 40 ], "returning": [ - 3043 + 3049 ], "__typename": [ 80 @@ -58967,13 +59502,13 @@ export default { }, "player_aim_weapon_stats_on_conflict": { "constraint": [ - 3053 + 3059 ], "update_columns": [ - 3076 + 3082 ], "where": [ - 3052 + 3058 ], "__typename": [ 80 @@ -58981,43 +59516,43 @@ export default { }, "player_aim_weapon_stats_order_by": { "first_bullet_hits": [ - 2946 + 2952 ], "first_bullet_shots": [ - 2946 + 2952 ], "hits": [ - 2946 + 2952 ], "hits_spotted": [ - 2946 + 2952 ], "match": [ - 2781 + 2787 ], "match_id": [ - 2946 + 2952 ], "match_map": [ - 2619 + 2625 ], "match_map_id": [ - 2946 + 2952 ], "player": [ - 3917 + 3923 ], "shots": [ - 2946 + 2952 ], "shots_spotted": [ - 2946 + 2952 ], "steam_id": [ - 2946 + 2952 ], "weapon_class": [ - 2946 + 2952 ], "__typename": [ 80 @@ -59025,10 +59560,10 @@ export default { }, "player_aim_weapon_stats_pk_columns_input": { "match_map_id": [ - 4993 + 4999 ], "steam_id": [ - 252 + 258 ], "weapon_class": [ 80 @@ -59052,10 +59587,10 @@ export default { 40 ], "match_id": [ - 4993 + 4999 ], "match_map_id": [ - 4993 + 4999 ], "shots": [ 40 @@ -59064,7 +59599,7 @@ export default { 40 ], "steam_id": [ - 252 + 258 ], "weapon_class": [ 80 @@ -59101,25 +59636,25 @@ export default { }, "player_aim_weapon_stats_stddev_order_by": { "first_bullet_hits": [ - 2946 + 2952 ], "first_bullet_shots": [ - 2946 + 2952 ], "hits": [ - 2946 + 2952 ], "hits_spotted": [ - 2946 + 2952 ], "shots": [ - 2946 + 2952 ], "shots_spotted": [ - 2946 + 2952 ], "steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -59153,25 +59688,25 @@ export default { }, "player_aim_weapon_stats_stddev_pop_order_by": { "first_bullet_hits": [ - 2946 + 2952 ], "first_bullet_shots": [ - 2946 + 2952 ], "hits": [ - 2946 + 2952 ], "hits_spotted": [ - 2946 + 2952 ], "shots": [ - 2946 + 2952 ], "shots_spotted": [ - 2946 + 2952 ], "steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -59205,25 +59740,25 @@ export default { }, "player_aim_weapon_stats_stddev_samp_order_by": { "first_bullet_hits": [ - 2946 + 2952 ], "first_bullet_shots": [ - 2946 + 2952 ], "hits": [ - 2946 + 2952 ], "hits_spotted": [ - 2946 + 2952 ], "shots": [ - 2946 + 2952 ], "shots_spotted": [ - 2946 + 2952 ], "steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -59231,10 +59766,10 @@ export default { }, "player_aim_weapon_stats_stream_cursor_input": { "initial_value": [ - 3073 + 3079 ], "ordering": [ - 308 + 314 ], "__typename": [ 80 @@ -59254,10 +59789,10 @@ export default { 40 ], "match_id": [ - 4993 + 4999 ], "match_map_id": [ - 4993 + 4999 ], "shots": [ 40 @@ -59266,7 +59801,7 @@ export default { 40 ], "steam_id": [ - 252 + 258 ], "weapon_class": [ 80 @@ -59295,7 +59830,7 @@ export default { 40 ], "steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -59303,25 +59838,25 @@ export default { }, "player_aim_weapon_stats_sum_order_by": { "first_bullet_hits": [ - 2946 + 2952 ], "first_bullet_shots": [ - 2946 + 2952 ], "hits": [ - 2946 + 2952 ], "hits_spotted": [ - 2946 + 2952 ], "shots": [ - 2946 + 2952 ], "shots_spotted": [ - 2946 + 2952 ], "steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -59330,13 +59865,13 @@ export default { "player_aim_weapon_stats_update_column": {}, "player_aim_weapon_stats_updates": { "_inc": [ - 3054 + 3060 ], "_set": [ - 3065 + 3071 ], "where": [ - 3052 + 3058 ], "__typename": [ 80 @@ -59370,25 +59905,25 @@ export default { }, "player_aim_weapon_stats_var_pop_order_by": { "first_bullet_hits": [ - 2946 + 2952 ], "first_bullet_shots": [ - 2946 + 2952 ], "hits": [ - 2946 + 2952 ], "hits_spotted": [ - 2946 + 2952 ], "shots": [ - 2946 + 2952 ], "shots_spotted": [ - 2946 + 2952 ], "steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -59422,25 +59957,25 @@ export default { }, "player_aim_weapon_stats_var_samp_order_by": { "first_bullet_hits": [ - 2946 + 2952 ], "first_bullet_shots": [ - 2946 + 2952 ], "hits": [ - 2946 + 2952 ], "hits_spotted": [ - 2946 + 2952 ], "shots": [ - 2946 + 2952 ], "shots_spotted": [ - 2946 + 2952 ], "steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -59474,25 +60009,25 @@ export default { }, "player_aim_weapon_stats_variance_order_by": { "first_bullet_hits": [ - 2946 + 2952 ], "first_bullet_shots": [ - 2946 + 2952 ], "hits": [ - 2946 + 2952 ], "hits_spotted": [ - 2946 + 2952 ], "shots": [ - 2946 + 2952 ], "shots_spotted": [ - 2946 + 2952 ], "steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -59500,22 +60035,22 @@ export default { }, "player_assists": { "attacked_player": [ - 3904 + 3910 ], "attacked_steam_id": [ - 252 + 258 ], "attacked_team": [ 80 ], "attacker_steam_id": [ - 252 + 258 ], "attacker_team": [ 80 ], "deleted_at": [ - 4493 + 4499 ], "flash": [ 5 @@ -59524,25 +60059,25 @@ export default { 5 ], "match": [ - 2761 + 2767 ], "match_id": [ - 4993 + 4999 ], "match_map": [ - 2599 + 2605 ], "match_map_id": [ - 4993 + 4999 ], "player": [ - 3904 + 3910 ], "round": [ 40 ], "time": [ - 4493 + 4499 ], "__typename": [ 80 @@ -59550,10 +60085,10 @@ export default { }, "player_assists_aggregate": { "aggregate": [ - 3090 + 3096 ], "nodes": [ - 3084 + 3090 ], "__typename": [ 80 @@ -59561,13 +60096,13 @@ export default { }, "player_assists_aggregate_bool_exp": { "bool_and": [ - 3087 + 3093 ], "bool_or": [ - 3088 + 3094 ], "count": [ - 3089 + 3095 ], "__typename": [ 80 @@ -59575,13 +60110,13 @@ export default { }, "player_assists_aggregate_bool_exp_bool_and": { "arguments": [ - 3108 + 3114 ], "distinct": [ 5 ], "filter": [ - 3095 + 3101 ], "predicate": [ 6 @@ -59592,13 +60127,13 @@ export default { }, "player_assists_aggregate_bool_exp_bool_or": { "arguments": [ - 3109 + 3115 ], "distinct": [ 5 ], "filter": [ - 3095 + 3101 ], "predicate": [ 6 @@ -59609,13 +60144,13 @@ export default { }, "player_assists_aggregate_bool_exp_count": { "arguments": [ - 3107 + 3113 ], "distinct": [ 5 ], "filter": [ - 3095 + 3101 ], "predicate": [ 41 @@ -59626,13 +60161,13 @@ export default { }, "player_assists_aggregate_fields": { "avg": [ - 3093 + 3099 ], "count": [ 40, { "columns": [ - 3107, + 3113, "[player_assists_select_column!]" ], "distinct": [ @@ -59641,31 +60176,31 @@ export default { } ], "max": [ - 3099 + 3105 ], "min": [ - 3101 + 3107 ], "stddev": [ - 3111 + 3117 ], "stddev_pop": [ - 3113 + 3119 ], "stddev_samp": [ - 3115 + 3121 ], "sum": [ - 3119 + 3125 ], "var_pop": [ - 3123 + 3129 ], "var_samp": [ - 3125 + 3131 ], "variance": [ - 3127 + 3133 ], "__typename": [ 80 @@ -59673,37 +60208,37 @@ export default { }, "player_assists_aggregate_order_by": { "avg": [ - 3094 + 3100 ], "count": [ - 2946 + 2952 ], "max": [ - 3100 + 3106 ], "min": [ - 3102 + 3108 ], "stddev": [ - 3112 + 3118 ], "stddev_pop": [ - 3114 + 3120 ], "stddev_samp": [ - 3116 + 3122 ], "sum": [ - 3120 + 3126 ], "var_pop": [ - 3124 + 3130 ], "var_samp": [ - 3126 + 3132 ], "variance": [ - 3128 + 3134 ], "__typename": [ 80 @@ -59711,10 +60246,10 @@ export default { }, "player_assists_arr_rel_insert_input": { "data": [ - 3098 + 3104 ], "on_conflict": [ - 3104 + 3110 ], "__typename": [ 80 @@ -59736,13 +60271,13 @@ export default { }, "player_assists_avg_order_by": { "attacked_steam_id": [ - 2946 + 2952 ], "attacker_steam_id": [ - 2946 + 2952 ], "round": [ - 2946 + 2952 ], "__typename": [ 80 @@ -59750,31 +60285,31 @@ export default { }, "player_assists_bool_exp": { "_and": [ - 3095 + 3101 ], "_not": [ - 3095 + 3101 ], "_or": [ - 3095 + 3101 ], "attacked_player": [ - 3908 + 3914 ], "attacked_steam_id": [ - 254 + 260 ], "attacked_team": [ 82 ], "attacker_steam_id": [ - 254 + 260 ], "attacker_team": [ 82 ], "deleted_at": [ - 4494 + 4500 ], "flash": [ 6 @@ -59783,25 +60318,25 @@ export default { 6 ], "match": [ - 2770 + 2776 ], "match_id": [ - 4995 + 5001 ], "match_map": [ - 2608 + 2614 ], "match_map_id": [ - 4995 + 5001 ], "player": [ - 3908 + 3914 ], "round": [ 41 ], "time": [ - 4494 + 4500 ], "__typename": [ 80 @@ -59810,10 +60345,10 @@ export default { "player_assists_constraint": {}, "player_assists_inc_input": { "attacked_steam_id": [ - 252 + 258 ], "attacker_steam_id": [ - 252 + 258 ], "round": [ 40 @@ -59824,46 +60359,46 @@ export default { }, "player_assists_insert_input": { "attacked_player": [ - 3915 + 3921 ], "attacked_steam_id": [ - 252 + 258 ], "attacked_team": [ 80 ], "attacker_steam_id": [ - 252 + 258 ], "attacker_team": [ 80 ], "deleted_at": [ - 4493 + 4499 ], "flash": [ 5 ], "match": [ - 2779 + 2785 ], "match_id": [ - 4993 + 4999 ], "match_map": [ - 2617 + 2623 ], "match_map_id": [ - 4993 + 4999 ], "player": [ - 3915 + 3921 ], "round": [ 40 ], "time": [ - 4493 + 4499 ], "__typename": [ 80 @@ -59871,31 +60406,31 @@ export default { }, "player_assists_max_fields": { "attacked_steam_id": [ - 252 + 258 ], "attacked_team": [ 80 ], "attacker_steam_id": [ - 252 + 258 ], "attacker_team": [ 80 ], "deleted_at": [ - 4493 + 4499 ], "match_id": [ - 4993 + 4999 ], "match_map_id": [ - 4993 + 4999 ], "round": [ 40 ], "time": [ - 4493 + 4499 ], "__typename": [ 80 @@ -59903,31 +60438,31 @@ export default { }, "player_assists_max_order_by": { "attacked_steam_id": [ - 2946 + 2952 ], "attacked_team": [ - 2946 + 2952 ], "attacker_steam_id": [ - 2946 + 2952 ], "attacker_team": [ - 2946 + 2952 ], "deleted_at": [ - 2946 + 2952 ], "match_id": [ - 2946 + 2952 ], "match_map_id": [ - 2946 + 2952 ], "round": [ - 2946 + 2952 ], "time": [ - 2946 + 2952 ], "__typename": [ 80 @@ -59935,31 +60470,31 @@ export default { }, "player_assists_min_fields": { "attacked_steam_id": [ - 252 + 258 ], "attacked_team": [ 80 ], "attacker_steam_id": [ - 252 + 258 ], "attacker_team": [ 80 ], "deleted_at": [ - 4493 + 4499 ], "match_id": [ - 4993 + 4999 ], "match_map_id": [ - 4993 + 4999 ], "round": [ 40 ], "time": [ - 4493 + 4499 ], "__typename": [ 80 @@ -59967,31 +60502,31 @@ export default { }, "player_assists_min_order_by": { "attacked_steam_id": [ - 2946 + 2952 ], "attacked_team": [ - 2946 + 2952 ], "attacker_steam_id": [ - 2946 + 2952 ], "attacker_team": [ - 2946 + 2952 ], "deleted_at": [ - 2946 + 2952 ], "match_id": [ - 2946 + 2952 ], "match_map_id": [ - 2946 + 2952 ], "round": [ - 2946 + 2952 ], "time": [ - 2946 + 2952 ], "__typename": [ 80 @@ -60002,7 +60537,7 @@ export default { 40 ], "returning": [ - 3084 + 3090 ], "__typename": [ 80 @@ -60010,13 +60545,13 @@ export default { }, "player_assists_on_conflict": { "constraint": [ - 3096 + 3102 ], "update_columns": [ - 3121 + 3127 ], "where": [ - 3095 + 3101 ], "__typename": [ 80 @@ -60024,49 +60559,49 @@ export default { }, "player_assists_order_by": { "attacked_player": [ - 3917 + 3923 ], "attacked_steam_id": [ - 2946 + 2952 ], "attacked_team": [ - 2946 + 2952 ], "attacker_steam_id": [ - 2946 + 2952 ], "attacker_team": [ - 2946 + 2952 ], "deleted_at": [ - 2946 + 2952 ], "flash": [ - 2946 + 2952 ], "is_team_assist": [ - 2946 + 2952 ], "match": [ - 2781 + 2787 ], "match_id": [ - 2946 + 2952 ], "match_map": [ - 2619 + 2625 ], "match_map_id": [ - 2946 + 2952 ], "player": [ - 3917 + 3923 ], "round": [ - 2946 + 2952 ], "time": [ - 2946 + 2952 ], "__typename": [ 80 @@ -60074,16 +60609,16 @@ export default { }, "player_assists_pk_columns_input": { "attacked_steam_id": [ - 252 + 258 ], "attacker_steam_id": [ - 252 + 258 ], "match_map_id": [ - 4993 + 4999 ], "time": [ - 4493 + 4499 ], "__typename": [ 80 @@ -60094,34 +60629,34 @@ export default { "player_assists_select_column_player_assists_aggregate_bool_exp_bool_or_arguments_columns": {}, "player_assists_set_input": { "attacked_steam_id": [ - 252 + 258 ], "attacked_team": [ 80 ], "attacker_steam_id": [ - 252 + 258 ], "attacker_team": [ 80 ], "deleted_at": [ - 4493 + 4499 ], "flash": [ 5 ], "match_id": [ - 4993 + 4999 ], "match_map_id": [ - 4993 + 4999 ], "round": [ 40 ], "time": [ - 4493 + 4499 ], "__typename": [ 80 @@ -60143,13 +60678,13 @@ export default { }, "player_assists_stddev_order_by": { "attacked_steam_id": [ - 2946 + 2952 ], "attacker_steam_id": [ - 2946 + 2952 ], "round": [ - 2946 + 2952 ], "__typename": [ 80 @@ -60171,13 +60706,13 @@ export default { }, "player_assists_stddev_pop_order_by": { "attacked_steam_id": [ - 2946 + 2952 ], "attacker_steam_id": [ - 2946 + 2952 ], "round": [ - 2946 + 2952 ], "__typename": [ 80 @@ -60199,13 +60734,13 @@ export default { }, "player_assists_stddev_samp_order_by": { "attacked_steam_id": [ - 2946 + 2952 ], "attacker_steam_id": [ - 2946 + 2952 ], "round": [ - 2946 + 2952 ], "__typename": [ 80 @@ -60213,10 +60748,10 @@ export default { }, "player_assists_stream_cursor_input": { "initial_value": [ - 3118 + 3124 ], "ordering": [ - 308 + 314 ], "__typename": [ 80 @@ -60224,34 +60759,34 @@ export default { }, "player_assists_stream_cursor_value_input": { "attacked_steam_id": [ - 252 + 258 ], "attacked_team": [ 80 ], "attacker_steam_id": [ - 252 + 258 ], "attacker_team": [ 80 ], "deleted_at": [ - 4493 + 4499 ], "flash": [ 5 ], "match_id": [ - 4993 + 4999 ], "match_map_id": [ - 4993 + 4999 ], "round": [ 40 ], "time": [ - 4493 + 4499 ], "__typename": [ 80 @@ -60259,10 +60794,10 @@ export default { }, "player_assists_sum_fields": { "attacked_steam_id": [ - 252 + 258 ], "attacker_steam_id": [ - 252 + 258 ], "round": [ 40 @@ -60273,13 +60808,13 @@ export default { }, "player_assists_sum_order_by": { "attacked_steam_id": [ - 2946 + 2952 ], "attacker_steam_id": [ - 2946 + 2952 ], "round": [ - 2946 + 2952 ], "__typename": [ 80 @@ -60288,13 +60823,13 @@ export default { "player_assists_update_column": {}, "player_assists_updates": { "_inc": [ - 3097 + 3103 ], "_set": [ - 3110 + 3116 ], "where": [ - 3095 + 3101 ], "__typename": [ 80 @@ -60316,13 +60851,13 @@ export default { }, "player_assists_var_pop_order_by": { "attacked_steam_id": [ - 2946 + 2952 ], "attacker_steam_id": [ - 2946 + 2952 ], "round": [ - 2946 + 2952 ], "__typename": [ 80 @@ -60344,13 +60879,13 @@ export default { }, "player_assists_var_samp_order_by": { "attacked_steam_id": [ - 2946 + 2952 ], "attacker_steam_id": [ - 2946 + 2952 ], "round": [ - 2946 + 2952 ], "__typename": [ 80 @@ -60372,13 +60907,13 @@ export default { }, "player_assists_variance_order_by": { "attacked_steam_id": [ - 2946 + 2952 ], "attacker_steam_id": [ - 2946 + 2952 ], "round": [ - 2946 + 2952 ], "__typename": [ 80 @@ -60386,28 +60921,28 @@ export default { }, "player_career_stats_v": { "accuracy": [ - 2944 + 2950 ], "accuracy_spotted": [ - 2944 + 2950 ], "counter_strafe_pct": [ - 2944 + 2950 ], "crosshair_deg": [ - 2944 + 2950 ], "enemy_blind_pr": [ - 2944 + 2950 ], "flash_assists_pr": [ - 2944 + 2950 ], "hs_pct": [ - 2944 + 2950 ], "kast_pct": [ - 2944 + 2950 ], "maps": [ 40 @@ -60419,19 +60954,19 @@ export default { 40 ], "steam_id": [ - 252 + 258 ], "survival_pct": [ - 2944 + 2950 ], "time_to_damage_s": [ - 2944 + 2950 ], "traded_death_pct": [ - 2944 + 2950 ], "util_efficiency": [ - 2944 + 2950 ], "__typename": [ 80 @@ -60439,10 +60974,10 @@ export default { }, "player_career_stats_v_aggregate": { "aggregate": [ - 3131 + 3137 ], "nodes": [ - 3129 + 3135 ], "__typename": [ 80 @@ -60450,13 +60985,13 @@ export default { }, "player_career_stats_v_aggregate_fields": { "avg": [ - 3132 + 3138 ], "count": [ 40, { "columns": [ - 3137, + 3143, "[player_career_stats_v_select_column!]" ], "distinct": [ @@ -60465,31 +61000,31 @@ export default { } ], "max": [ - 3134 + 3140 ], "min": [ - 3135 + 3141 ], "stddev": [ - 3138 + 3144 ], "stddev_pop": [ - 3139 + 3145 ], "stddev_samp": [ - 3140 + 3146 ], "sum": [ - 3143 + 3149 ], "var_pop": [ - 3144 + 3150 ], "var_samp": [ - 3145 + 3151 ], "variance": [ - 3146 + 3152 ], "__typename": [ 80 @@ -60550,37 +61085,37 @@ export default { }, "player_career_stats_v_bool_exp": { "_and": [ - 3133 + 3139 ], "_not": [ - 3133 + 3139 ], "_or": [ - 3133 + 3139 ], "accuracy": [ - 2945 + 2951 ], "accuracy_spotted": [ - 2945 + 2951 ], "counter_strafe_pct": [ - 2945 + 2951 ], "crosshair_deg": [ - 2945 + 2951 ], "enemy_blind_pr": [ - 2945 + 2951 ], "flash_assists_pr": [ - 2945 + 2951 ], "hs_pct": [ - 2945 + 2951 ], "kast_pct": [ - 2945 + 2951 ], "maps": [ 41 @@ -60592,19 +61127,19 @@ export default { 41 ], "steam_id": [ - 254 + 260 ], "survival_pct": [ - 2945 + 2951 ], "time_to_damage_s": [ - 2945 + 2951 ], "traded_death_pct": [ - 2945 + 2951 ], "util_efficiency": [ - 2945 + 2951 ], "__typename": [ 80 @@ -60612,28 +61147,28 @@ export default { }, "player_career_stats_v_max_fields": { "accuracy": [ - 2944 + 2950 ], "accuracy_spotted": [ - 2944 + 2950 ], "counter_strafe_pct": [ - 2944 + 2950 ], "crosshair_deg": [ - 2944 + 2950 ], "enemy_blind_pr": [ - 2944 + 2950 ], "flash_assists_pr": [ - 2944 + 2950 ], "hs_pct": [ - 2944 + 2950 ], "kast_pct": [ - 2944 + 2950 ], "maps": [ 40 @@ -60645,19 +61180,19 @@ export default { 40 ], "steam_id": [ - 252 + 258 ], "survival_pct": [ - 2944 + 2950 ], "time_to_damage_s": [ - 2944 + 2950 ], "traded_death_pct": [ - 2944 + 2950 ], "util_efficiency": [ - 2944 + 2950 ], "__typename": [ 80 @@ -60665,28 +61200,28 @@ export default { }, "player_career_stats_v_min_fields": { "accuracy": [ - 2944 + 2950 ], "accuracy_spotted": [ - 2944 + 2950 ], "counter_strafe_pct": [ - 2944 + 2950 ], "crosshair_deg": [ - 2944 + 2950 ], "enemy_blind_pr": [ - 2944 + 2950 ], "flash_assists_pr": [ - 2944 + 2950 ], "hs_pct": [ - 2944 + 2950 ], "kast_pct": [ - 2944 + 2950 ], "maps": [ 40 @@ -60698,19 +61233,19 @@ export default { 40 ], "steam_id": [ - 252 + 258 ], "survival_pct": [ - 2944 + 2950 ], "time_to_damage_s": [ - 2944 + 2950 ], "traded_death_pct": [ - 2944 + 2950 ], "util_efficiency": [ - 2944 + 2950 ], "__typename": [ 80 @@ -60718,52 +61253,52 @@ export default { }, "player_career_stats_v_order_by": { "accuracy": [ - 2946 + 2952 ], "accuracy_spotted": [ - 2946 + 2952 ], "counter_strafe_pct": [ - 2946 + 2952 ], "crosshair_deg": [ - 2946 + 2952 ], "enemy_blind_pr": [ - 2946 + 2952 ], "flash_assists_pr": [ - 2946 + 2952 ], "hs_pct": [ - 2946 + 2952 ], "kast_pct": [ - 2946 + 2952 ], "maps": [ - 2946 + 2952 ], "premier_rank": [ - 2946 + 2952 ], "rounds": [ - 2946 + 2952 ], "steam_id": [ - 2946 + 2952 ], "survival_pct": [ - 2946 + 2952 ], "time_to_damage_s": [ - 2946 + 2952 ], "traded_death_pct": [ - 2946 + 2952 ], "util_efficiency": [ - 2946 + 2952 ], "__typename": [ 80 @@ -60931,10 +61466,10 @@ export default { }, "player_career_stats_v_stream_cursor_input": { "initial_value": [ - 3142 + 3148 ], "ordering": [ - 308 + 314 ], "__typename": [ 80 @@ -60942,28 +61477,28 @@ export default { }, "player_career_stats_v_stream_cursor_value_input": { "accuracy": [ - 2944 + 2950 ], "accuracy_spotted": [ - 2944 + 2950 ], "counter_strafe_pct": [ - 2944 + 2950 ], "crosshair_deg": [ - 2944 + 2950 ], "enemy_blind_pr": [ - 2944 + 2950 ], "flash_assists_pr": [ - 2944 + 2950 ], "hs_pct": [ - 2944 + 2950 ], "kast_pct": [ - 2944 + 2950 ], "maps": [ 40 @@ -60975,19 +61510,19 @@ export default { 40 ], "steam_id": [ - 252 + 258 ], "survival_pct": [ - 2944 + 2950 ], "time_to_damage_s": [ - 2944 + 2950 ], "traded_death_pct": [ - 2944 + 2950 ], "util_efficiency": [ - 2944 + 2950 ], "__typename": [ 80 @@ -60995,28 +61530,28 @@ export default { }, "player_career_stats_v_sum_fields": { "accuracy": [ - 2944 + 2950 ], "accuracy_spotted": [ - 2944 + 2950 ], "counter_strafe_pct": [ - 2944 + 2950 ], "crosshair_deg": [ - 2944 + 2950 ], "enemy_blind_pr": [ - 2944 + 2950 ], "flash_assists_pr": [ - 2944 + 2950 ], "hs_pct": [ - 2944 + 2950 ], "kast_pct": [ - 2944 + 2950 ], "maps": [ 40 @@ -61028,19 +61563,19 @@ export default { 40 ], "steam_id": [ - 252 + 258 ], "survival_pct": [ - 2944 + 2950 ], "time_to_damage_s": [ - 2944 + 2950 ], "traded_death_pct": [ - 2944 + 2950 ], "util_efficiency": [ - 2944 + 2950 ], "__typename": [ 80 @@ -61216,10 +61751,10 @@ export default { 80 ], "attacked_player": [ - 3904 + 3910 ], "attacked_steam_id": [ - 252 + 258 ], "attacked_team": [ 80 @@ -61231,7 +61766,7 @@ export default { 80 ], "attacker_steam_id": [ - 252 + 258 ], "attacker_team": [ 80 @@ -61243,7 +61778,7 @@ export default { 40 ], "deleted_at": [ - 4493 + 4499 ], "health": [ 40 @@ -61252,31 +61787,31 @@ export default { 80 ], "id": [ - 4993 + 4999 ], "match": [ - 2761 + 2767 ], "match_id": [ - 4993 + 4999 ], "match_map": [ - 2599 + 2605 ], "match_map_id": [ - 4993 + 4999 ], "player": [ - 3904 + 3910 ], "round": [ - 2944 + 2950 ], "team_damage": [ 5 ], "time": [ - 4493 + 4499 ], "with": [ 80 @@ -61287,10 +61822,10 @@ export default { }, "player_damages_aggregate": { "aggregate": [ - 3151 + 3157 ], "nodes": [ - 3147 + 3153 ], "__typename": [ 80 @@ -61298,7 +61833,7 @@ export default { }, "player_damages_aggregate_bool_exp": { "count": [ - 3150 + 3156 ], "__typename": [ 80 @@ -61306,13 +61841,13 @@ export default { }, "player_damages_aggregate_bool_exp_count": { "arguments": [ - 3168 + 3174 ], "distinct": [ 5 ], "filter": [ - 3156 + 3162 ], "predicate": [ 41 @@ -61323,13 +61858,13 @@ export default { }, "player_damages_aggregate_fields": { "avg": [ - 3154 + 3160 ], "count": [ 40, { "columns": [ - 3168, + 3174, "[player_damages_select_column!]" ], "distinct": [ @@ -61338,31 +61873,31 @@ export default { } ], "max": [ - 3160 + 3166 ], "min": [ - 3162 + 3168 ], "stddev": [ - 3170 + 3176 ], "stddev_pop": [ - 3172 + 3178 ], "stddev_samp": [ - 3174 + 3180 ], "sum": [ - 3178 + 3184 ], "var_pop": [ - 3182 + 3188 ], "var_samp": [ - 3184 + 3190 ], "variance": [ - 3186 + 3192 ], "__typename": [ 80 @@ -61370,37 +61905,37 @@ export default { }, "player_damages_aggregate_order_by": { "avg": [ - 3155 + 3161 ], "count": [ - 2946 + 2952 ], "max": [ - 3161 + 3167 ], "min": [ - 3163 + 3169 ], "stddev": [ - 3171 + 3177 ], "stddev_pop": [ - 3173 + 3179 ], "stddev_samp": [ - 3175 + 3181 ], "sum": [ - 3179 + 3185 ], "var_pop": [ - 3183 + 3189 ], "var_samp": [ - 3185 + 3191 ], "variance": [ - 3187 + 3193 ], "__typename": [ 80 @@ -61408,10 +61943,10 @@ export default { }, "player_damages_arr_rel_insert_input": { "data": [ - 3159 + 3165 ], "on_conflict": [ - 3165 + 3171 ], "__typename": [ 80 @@ -61445,25 +61980,25 @@ export default { }, "player_damages_avg_order_by": { "armor": [ - 2946 + 2952 ], "attacked_steam_id": [ - 2946 + 2952 ], "attacker_steam_id": [ - 2946 + 2952 ], "damage": [ - 2946 + 2952 ], "damage_armor": [ - 2946 + 2952 ], "health": [ - 2946 + 2952 ], "round": [ - 2946 + 2952 ], "__typename": [ 80 @@ -61471,13 +62006,13 @@ export default { }, "player_damages_bool_exp": { "_and": [ - 3156 + 3162 ], "_not": [ - 3156 + 3162 ], "_or": [ - 3156 + 3162 ], "armor": [ 41 @@ -61489,10 +62024,10 @@ export default { 82 ], "attacked_player": [ - 3908 + 3914 ], "attacked_steam_id": [ - 254 + 260 ], "attacked_team": [ 82 @@ -61504,7 +62039,7 @@ export default { 82 ], "attacker_steam_id": [ - 254 + 260 ], "attacker_team": [ 82 @@ -61516,7 +62051,7 @@ export default { 41 ], "deleted_at": [ - 4494 + 4500 ], "health": [ 41 @@ -61525,31 +62060,31 @@ export default { 82 ], "id": [ - 4995 + 5001 ], "match": [ - 2770 + 2776 ], "match_id": [ - 4995 + 5001 ], "match_map": [ - 2608 + 2614 ], "match_map_id": [ - 4995 + 5001 ], "player": [ - 3908 + 3914 ], "round": [ - 2945 + 2951 ], "team_damage": [ 6 ], "time": [ - 4494 + 4500 ], "with": [ 82 @@ -61564,10 +62099,10 @@ export default { 40 ], "attacked_steam_id": [ - 252 + 258 ], "attacker_steam_id": [ - 252 + 258 ], "damage": [ 40 @@ -61579,7 +62114,7 @@ export default { 40 ], "round": [ - 2944 + 2950 ], "__typename": [ 80 @@ -61596,10 +62131,10 @@ export default { 80 ], "attacked_player": [ - 3915 + 3921 ], "attacked_steam_id": [ - 252 + 258 ], "attacked_team": [ 80 @@ -61611,7 +62146,7 @@ export default { 80 ], "attacker_steam_id": [ - 252 + 258 ], "attacker_team": [ 80 @@ -61623,7 +62158,7 @@ export default { 40 ], "deleted_at": [ - 4493 + 4499 ], "health": [ 40 @@ -61632,28 +62167,28 @@ export default { 80 ], "id": [ - 4993 + 4999 ], "match": [ - 2779 + 2785 ], "match_id": [ - 4993 + 4999 ], "match_map": [ - 2617 + 2623 ], "match_map_id": [ - 4993 + 4999 ], "player": [ - 3915 + 3921 ], "round": [ - 2944 + 2950 ], "time": [ - 4493 + 4499 ], "with": [ 80 @@ -61673,7 +62208,7 @@ export default { 80 ], "attacked_steam_id": [ - 252 + 258 ], "attacked_team": [ 80 @@ -61685,7 +62220,7 @@ export default { 80 ], "attacker_steam_id": [ - 252 + 258 ], "attacker_team": [ 80 @@ -61697,7 +62232,7 @@ export default { 40 ], "deleted_at": [ - 4493 + 4499 ], "health": [ 40 @@ -61706,19 +62241,19 @@ export default { 80 ], "id": [ - 4993 + 4999 ], "match_id": [ - 4993 + 4999 ], "match_map_id": [ - 4993 + 4999 ], "round": [ - 2944 + 2950 ], "time": [ - 4493 + 4499 ], "with": [ 80 @@ -61729,64 +62264,64 @@ export default { }, "player_damages_max_order_by": { "armor": [ - 2946 + 2952 ], "attacked_location": [ - 2946 + 2952 ], "attacked_location_coordinates": [ - 2946 + 2952 ], "attacked_steam_id": [ - 2946 + 2952 ], "attacked_team": [ - 2946 + 2952 ], "attacker_location": [ - 2946 + 2952 ], "attacker_location_coordinates": [ - 2946 + 2952 ], "attacker_steam_id": [ - 2946 + 2952 ], "attacker_team": [ - 2946 + 2952 ], "damage": [ - 2946 + 2952 ], "damage_armor": [ - 2946 + 2952 ], "deleted_at": [ - 2946 + 2952 ], "health": [ - 2946 + 2952 ], "hitgroup": [ - 2946 + 2952 ], "id": [ - 2946 + 2952 ], "match_id": [ - 2946 + 2952 ], "match_map_id": [ - 2946 + 2952 ], "round": [ - 2946 + 2952 ], "time": [ - 2946 + 2952 ], "with": [ - 2946 + 2952 ], "__typename": [ 80 @@ -61803,7 +62338,7 @@ export default { 80 ], "attacked_steam_id": [ - 252 + 258 ], "attacked_team": [ 80 @@ -61815,7 +62350,7 @@ export default { 80 ], "attacker_steam_id": [ - 252 + 258 ], "attacker_team": [ 80 @@ -61827,7 +62362,7 @@ export default { 40 ], "deleted_at": [ - 4493 + 4499 ], "health": [ 40 @@ -61836,19 +62371,19 @@ export default { 80 ], "id": [ - 4993 + 4999 ], "match_id": [ - 4993 + 4999 ], "match_map_id": [ - 4993 + 4999 ], "round": [ - 2944 + 2950 ], "time": [ - 4493 + 4499 ], "with": [ 80 @@ -61859,64 +62394,64 @@ export default { }, "player_damages_min_order_by": { "armor": [ - 2946 + 2952 ], "attacked_location": [ - 2946 + 2952 ], "attacked_location_coordinates": [ - 2946 + 2952 ], "attacked_steam_id": [ - 2946 + 2952 ], "attacked_team": [ - 2946 + 2952 ], "attacker_location": [ - 2946 + 2952 ], "attacker_location_coordinates": [ - 2946 + 2952 ], "attacker_steam_id": [ - 2946 + 2952 ], "attacker_team": [ - 2946 + 2952 ], "damage": [ - 2946 + 2952 ], "damage_armor": [ - 2946 + 2952 ], "deleted_at": [ - 2946 + 2952 ], "health": [ - 2946 + 2952 ], "hitgroup": [ - 2946 + 2952 ], "id": [ - 2946 + 2952 ], "match_id": [ - 2946 + 2952 ], "match_map_id": [ - 2946 + 2952 ], "round": [ - 2946 + 2952 ], "time": [ - 2946 + 2952 ], "with": [ - 2946 + 2952 ], "__typename": [ 80 @@ -61927,7 +62462,7 @@ export default { 40 ], "returning": [ - 3147 + 3153 ], "__typename": [ 80 @@ -61935,13 +62470,13 @@ export default { }, "player_damages_on_conflict": { "constraint": [ - 3157 + 3163 ], "update_columns": [ - 3180 + 3186 ], "where": [ - 3156 + 3162 ], "__typename": [ 80 @@ -61949,79 +62484,79 @@ export default { }, "player_damages_order_by": { "armor": [ - 2946 + 2952 ], "attacked_location": [ - 2946 + 2952 ], "attacked_location_coordinates": [ - 2946 + 2952 ], "attacked_player": [ - 3917 + 3923 ], "attacked_steam_id": [ - 2946 + 2952 ], "attacked_team": [ - 2946 + 2952 ], "attacker_location": [ - 2946 + 2952 ], "attacker_location_coordinates": [ - 2946 + 2952 ], "attacker_steam_id": [ - 2946 + 2952 ], "attacker_team": [ - 2946 + 2952 ], "damage": [ - 2946 + 2952 ], "damage_armor": [ - 2946 + 2952 ], "deleted_at": [ - 2946 + 2952 ], "health": [ - 2946 + 2952 ], "hitgroup": [ - 2946 + 2952 ], "id": [ - 2946 + 2952 ], "match": [ - 2781 + 2787 ], "match_id": [ - 2946 + 2952 ], "match_map": [ - 2619 + 2625 ], "match_map_id": [ - 2946 + 2952 ], "player": [ - 3917 + 3923 ], "round": [ - 2946 + 2952 ], "team_damage": [ - 2946 + 2952 ], "time": [ - 2946 + 2952 ], "with": [ - 2946 + 2952 ], "__typename": [ 80 @@ -62029,13 +62564,13 @@ export default { }, "player_damages_pk_columns_input": { "id": [ - 4993 + 4999 ], "match_map_id": [ - 4993 + 4999 ], "time": [ - 4493 + 4499 ], "__typename": [ 80 @@ -62053,7 +62588,7 @@ export default { 80 ], "attacked_steam_id": [ - 252 + 258 ], "attacked_team": [ 80 @@ -62065,7 +62600,7 @@ export default { 80 ], "attacker_steam_id": [ - 252 + 258 ], "attacker_team": [ 80 @@ -62077,7 +62612,7 @@ export default { 40 ], "deleted_at": [ - 4493 + 4499 ], "health": [ 40 @@ -62086,19 +62621,19 @@ export default { 80 ], "id": [ - 4993 + 4999 ], "match_id": [ - 4993 + 4999 ], "match_map_id": [ - 4993 + 4999 ], "round": [ - 2944 + 2950 ], "time": [ - 4493 + 4499 ], "with": [ 80 @@ -62135,25 +62670,25 @@ export default { }, "player_damages_stddev_order_by": { "armor": [ - 2946 + 2952 ], "attacked_steam_id": [ - 2946 + 2952 ], "attacker_steam_id": [ - 2946 + 2952 ], "damage": [ - 2946 + 2952 ], "damage_armor": [ - 2946 + 2952 ], "health": [ - 2946 + 2952 ], "round": [ - 2946 + 2952 ], "__typename": [ 80 @@ -62187,25 +62722,25 @@ export default { }, "player_damages_stddev_pop_order_by": { "armor": [ - 2946 + 2952 ], "attacked_steam_id": [ - 2946 + 2952 ], "attacker_steam_id": [ - 2946 + 2952 ], "damage": [ - 2946 + 2952 ], "damage_armor": [ - 2946 + 2952 ], "health": [ - 2946 + 2952 ], "round": [ - 2946 + 2952 ], "__typename": [ 80 @@ -62239,25 +62774,25 @@ export default { }, "player_damages_stddev_samp_order_by": { "armor": [ - 2946 + 2952 ], "attacked_steam_id": [ - 2946 + 2952 ], "attacker_steam_id": [ - 2946 + 2952 ], "damage": [ - 2946 + 2952 ], "damage_armor": [ - 2946 + 2952 ], "health": [ - 2946 + 2952 ], "round": [ - 2946 + 2952 ], "__typename": [ 80 @@ -62265,10 +62800,10 @@ export default { }, "player_damages_stream_cursor_input": { "initial_value": [ - 3177 + 3183 ], "ordering": [ - 308 + 314 ], "__typename": [ 80 @@ -62285,7 +62820,7 @@ export default { 80 ], "attacked_steam_id": [ - 252 + 258 ], "attacked_team": [ 80 @@ -62297,7 +62832,7 @@ export default { 80 ], "attacker_steam_id": [ - 252 + 258 ], "attacker_team": [ 80 @@ -62309,7 +62844,7 @@ export default { 40 ], "deleted_at": [ - 4493 + 4499 ], "health": [ 40 @@ -62318,19 +62853,19 @@ export default { 80 ], "id": [ - 4993 + 4999 ], "match_id": [ - 4993 + 4999 ], "match_map_id": [ - 4993 + 4999 ], "round": [ - 2944 + 2950 ], "time": [ - 4493 + 4499 ], "with": [ 80 @@ -62344,10 +62879,10 @@ export default { 40 ], "attacked_steam_id": [ - 252 + 258 ], "attacker_steam_id": [ - 252 + 258 ], "damage": [ 40 @@ -62359,7 +62894,7 @@ export default { 40 ], "round": [ - 2944 + 2950 ], "__typename": [ 80 @@ -62367,25 +62902,25 @@ export default { }, "player_damages_sum_order_by": { "armor": [ - 2946 + 2952 ], "attacked_steam_id": [ - 2946 + 2952 ], "attacker_steam_id": [ - 2946 + 2952 ], "damage": [ - 2946 + 2952 ], "damage_armor": [ - 2946 + 2952 ], "health": [ - 2946 + 2952 ], "round": [ - 2946 + 2952 ], "__typename": [ 80 @@ -62394,13 +62929,13 @@ export default { "player_damages_update_column": {}, "player_damages_updates": { "_inc": [ - 3158 + 3164 ], "_set": [ - 3169 + 3175 ], "where": [ - 3156 + 3162 ], "__typename": [ 80 @@ -62434,25 +62969,25 @@ export default { }, "player_damages_var_pop_order_by": { "armor": [ - 2946 + 2952 ], "attacked_steam_id": [ - 2946 + 2952 ], "attacker_steam_id": [ - 2946 + 2952 ], "damage": [ - 2946 + 2952 ], "damage_armor": [ - 2946 + 2952 ], "health": [ - 2946 + 2952 ], "round": [ - 2946 + 2952 ], "__typename": [ 80 @@ -62486,25 +63021,25 @@ export default { }, "player_damages_var_samp_order_by": { "armor": [ - 2946 + 2952 ], "attacked_steam_id": [ - 2946 + 2952 ], "attacker_steam_id": [ - 2946 + 2952 ], "damage": [ - 2946 + 2952 ], "damage_armor": [ - 2946 + 2952 ], "health": [ - 2946 + 2952 ], "round": [ - 2946 + 2952 ], "__typename": [ 80 @@ -62538,25 +63073,25 @@ export default { }, "player_damages_variance_order_by": { "armor": [ - 2946 + 2952 ], "attacked_steam_id": [ - 2946 + 2952 ], "attacker_steam_id": [ - 2946 + 2952 ], "damage": [ - 2946 + 2952 ], "damage_armor": [ - 2946 + 2952 ], "health": [ - 2946 + 2952 ], "round": [ - 2946 + 2952 ], "__typename": [ 80 @@ -62564,40 +63099,40 @@ export default { }, "player_elo": { "actual_score": [ - 1664 + 1670 ], "assists": [ 40 ], "change": [ - 2944 + 2950 ], "created_at": [ - 4493 + 4499 ], "current": [ - 2944 + 2950 ], "damage": [ 40 ], "damage_percent": [ - 1664 + 1670 ], "deaths": [ 40 ], "expected_score": [ - 1664 + 1670 ], "impact": [ - 2944 + 2950 ], "k_factor": [ 40 ], "kda": [ - 1664 + 1670 ], "kills": [ 40 @@ -62609,40 +63144,40 @@ export default { 40 ], "match": [ - 2761 + 2767 ], "match_id": [ - 4993 + 4999 ], "opponent_team_elo_avg": [ - 1664 + 1670 ], "performance_multiplier": [ - 1664 + 1670 ], "player": [ - 3904 + 3910 ], "player_team_elo_avg": [ - 1664 + 1670 ], "season": [ - 3963 + 3969 ], "season_id": [ - 4993 + 4999 ], "series_multiplier": [ 40 ], "steam_id": [ - 252 + 258 ], "team_avg_kda": [ - 1664 + 1670 ], "type": [ - 1004 + 1010 ], "__typename": [ 80 @@ -62650,10 +63185,10 @@ export default { }, "player_elo_aggregate": { "aggregate": [ - 3190 + 3196 ], "nodes": [ - 3188 + 3194 ], "__typename": [ 80 @@ -62661,13 +63196,13 @@ export default { }, "player_elo_aggregate_fields": { "avg": [ - 3191 + 3197 ], "count": [ 40, { "columns": [ - 3202, + 3208, "[player_elo_select_column!]" ], "distinct": [ @@ -62676,31 +63211,31 @@ export default { } ], "max": [ - 3196 + 3202 ], "min": [ - 3197 + 3203 ], "stddev": [ - 3204 + 3210 ], "stddev_pop": [ - 3205 + 3211 ], "stddev_samp": [ - 3206 + 3212 ], "sum": [ - 3209 + 3215 ], "var_pop": [ - 3212 + 3218 ], "var_samp": [ - 3213 + 3219 ], "variance": [ - 3214 + 3220 ], "__typename": [ 80 @@ -62773,49 +63308,49 @@ export default { }, "player_elo_bool_exp": { "_and": [ - 3192 + 3198 ], "_not": [ - 3192 + 3198 ], "_or": [ - 3192 + 3198 ], "actual_score": [ - 1665 + 1671 ], "assists": [ 41 ], "change": [ - 2945 + 2951 ], "created_at": [ - 4494 + 4500 ], "current": [ - 2945 + 2951 ], "damage": [ 41 ], "damage_percent": [ - 1665 + 1671 ], "deaths": [ 41 ], "expected_score": [ - 1665 + 1671 ], "impact": [ - 2945 + 2951 ], "k_factor": [ 41 ], "kda": [ - 1665 + 1671 ], "kills": [ 41 @@ -62827,40 +63362,40 @@ export default { 41 ], "match": [ - 2770 + 2776 ], "match_id": [ - 4995 + 5001 ], "opponent_team_elo_avg": [ - 1665 + 1671 ], "performance_multiplier": [ - 1665 + 1671 ], "player": [ - 3908 + 3914 ], "player_team_elo_avg": [ - 1665 + 1671 ], "season": [ - 3967 + 3973 ], "season_id": [ - 4995 + 5001 ], "series_multiplier": [ 41 ], "steam_id": [ - 254 + 260 ], "team_avg_kda": [ - 1665 + 1671 ], "type": [ - 1005 + 1011 ], "__typename": [ 80 @@ -62869,37 +63404,37 @@ export default { "player_elo_constraint": {}, "player_elo_inc_input": { "actual_score": [ - 1664 + 1670 ], "assists": [ 40 ], "change": [ - 2944 + 2950 ], "current": [ - 2944 + 2950 ], "damage": [ 40 ], "damage_percent": [ - 1664 + 1670 ], "deaths": [ 40 ], "expected_score": [ - 1664 + 1670 ], "impact": [ - 2944 + 2950 ], "k_factor": [ 40 ], "kda": [ - 1664 + 1670 ], "kills": [ 40 @@ -62911,22 +63446,22 @@ export default { 40 ], "opponent_team_elo_avg": [ - 1664 + 1670 ], "performance_multiplier": [ - 1664 + 1670 ], "player_team_elo_avg": [ - 1664 + 1670 ], "series_multiplier": [ 40 ], "steam_id": [ - 252 + 258 ], "team_avg_kda": [ - 1664 + 1670 ], "__typename": [ 80 @@ -62934,40 +63469,40 @@ export default { }, "player_elo_insert_input": { "actual_score": [ - 1664 + 1670 ], "assists": [ 40 ], "change": [ - 2944 + 2950 ], "created_at": [ - 4493 + 4499 ], "current": [ - 2944 + 2950 ], "damage": [ 40 ], "damage_percent": [ - 1664 + 1670 ], "deaths": [ 40 ], "expected_score": [ - 1664 + 1670 ], "impact": [ - 2944 + 2950 ], "k_factor": [ 40 ], "kda": [ - 1664 + 1670 ], "kills": [ 40 @@ -62979,40 +63514,40 @@ export default { 40 ], "match": [ - 2779 + 2785 ], "match_id": [ - 4993 + 4999 ], "opponent_team_elo_avg": [ - 1664 + 1670 ], "performance_multiplier": [ - 1664 + 1670 ], "player": [ - 3915 + 3921 ], "player_team_elo_avg": [ - 1664 + 1670 ], "season": [ - 3974 + 3980 ], "season_id": [ - 4993 + 4999 ], "series_multiplier": [ 40 ], "steam_id": [ - 252 + 258 ], "team_avg_kda": [ - 1664 + 1670 ], "type": [ - 1004 + 1010 ], "__typename": [ 80 @@ -63020,40 +63555,40 @@ export default { }, "player_elo_max_fields": { "actual_score": [ - 1664 + 1670 ], "assists": [ 40 ], "change": [ - 2944 + 2950 ], "created_at": [ - 4493 + 4499 ], "current": [ - 2944 + 2950 ], "damage": [ 40 ], "damage_percent": [ - 1664 + 1670 ], "deaths": [ 40 ], "expected_score": [ - 1664 + 1670 ], "impact": [ - 2944 + 2950 ], "k_factor": [ 40 ], "kda": [ - 1664 + 1670 ], "kills": [ 40 @@ -63065,28 +63600,28 @@ export default { 40 ], "match_id": [ - 4993 + 4999 ], "opponent_team_elo_avg": [ - 1664 + 1670 ], "performance_multiplier": [ - 1664 + 1670 ], "player_team_elo_avg": [ - 1664 + 1670 ], "season_id": [ - 4993 + 4999 ], "series_multiplier": [ 40 ], "steam_id": [ - 252 + 258 ], "team_avg_kda": [ - 1664 + 1670 ], "__typename": [ 80 @@ -63094,40 +63629,40 @@ export default { }, "player_elo_min_fields": { "actual_score": [ - 1664 + 1670 ], "assists": [ 40 ], "change": [ - 2944 + 2950 ], "created_at": [ - 4493 + 4499 ], "current": [ - 2944 + 2950 ], "damage": [ 40 ], "damage_percent": [ - 1664 + 1670 ], "deaths": [ 40 ], "expected_score": [ - 1664 + 1670 ], "impact": [ - 2944 + 2950 ], "k_factor": [ 40 ], "kda": [ - 1664 + 1670 ], "kills": [ 40 @@ -63139,28 +63674,28 @@ export default { 40 ], "match_id": [ - 4993 + 4999 ], "opponent_team_elo_avg": [ - 1664 + 1670 ], "performance_multiplier": [ - 1664 + 1670 ], "player_team_elo_avg": [ - 1664 + 1670 ], "season_id": [ - 4993 + 4999 ], "series_multiplier": [ 40 ], "steam_id": [ - 252 + 258 ], "team_avg_kda": [ - 1664 + 1670 ], "__typename": [ 80 @@ -63171,7 +63706,7 @@ export default { 40 ], "returning": [ - 3188 + 3194 ], "__typename": [ 80 @@ -63179,13 +63714,13 @@ export default { }, "player_elo_on_conflict": { "constraint": [ - 3193 + 3199 ], "update_columns": [ - 3210 + 3216 ], "where": [ - 3192 + 3198 ], "__typename": [ 80 @@ -63193,85 +63728,85 @@ export default { }, "player_elo_order_by": { "actual_score": [ - 2946 + 2952 ], "assists": [ - 2946 + 2952 ], "change": [ - 2946 + 2952 ], "created_at": [ - 2946 + 2952 ], "current": [ - 2946 + 2952 ], "damage": [ - 2946 + 2952 ], "damage_percent": [ - 2946 + 2952 ], "deaths": [ - 2946 + 2952 ], "expected_score": [ - 2946 + 2952 ], "impact": [ - 2946 + 2952 ], "k_factor": [ - 2946 + 2952 ], "kda": [ - 2946 + 2952 ], "kills": [ - 2946 + 2952 ], "map_losses": [ - 2946 + 2952 ], "map_wins": [ - 2946 + 2952 ], "match": [ - 2781 + 2787 ], "match_id": [ - 2946 + 2952 ], "opponent_team_elo_avg": [ - 2946 + 2952 ], "performance_multiplier": [ - 2946 + 2952 ], "player": [ - 3917 + 3923 ], "player_team_elo_avg": [ - 2946 + 2952 ], "season": [ - 3976 + 3982 ], "season_id": [ - 2946 + 2952 ], "series_multiplier": [ - 2946 + 2952 ], "steam_id": [ - 2946 + 2952 ], "team_avg_kda": [ - 2946 + 2952 ], "type": [ - 2946 + 2952 ], "__typename": [ 80 @@ -63279,13 +63814,13 @@ export default { }, "player_elo_pk_columns_input": { "match_id": [ - 4993 + 4999 ], "steam_id": [ - 252 + 258 ], "type": [ - 1004 + 1010 ], "__typename": [ 80 @@ -63294,40 +63829,40 @@ export default { "player_elo_select_column": {}, "player_elo_set_input": { "actual_score": [ - 1664 + 1670 ], "assists": [ 40 ], "change": [ - 2944 + 2950 ], "created_at": [ - 4493 + 4499 ], "current": [ - 2944 + 2950 ], "damage": [ 40 ], "damage_percent": [ - 1664 + 1670 ], "deaths": [ 40 ], "expected_score": [ - 1664 + 1670 ], "impact": [ - 2944 + 2950 ], "k_factor": [ 40 ], "kda": [ - 1664 + 1670 ], "kills": [ 40 @@ -63339,31 +63874,31 @@ export default { 40 ], "match_id": [ - 4993 + 4999 ], "opponent_team_elo_avg": [ - 1664 + 1670 ], "performance_multiplier": [ - 1664 + 1670 ], "player_team_elo_avg": [ - 1664 + 1670 ], "season_id": [ - 4993 + 4999 ], "series_multiplier": [ 40 ], "steam_id": [ - 252 + 258 ], "team_avg_kda": [ - 1664 + 1670 ], "type": [ - 1004 + 1010 ], "__typename": [ 80 @@ -63566,10 +64101,10 @@ export default { }, "player_elo_stream_cursor_input": { "initial_value": [ - 3208 + 3214 ], "ordering": [ - 308 + 314 ], "__typename": [ 80 @@ -63577,40 +64112,40 @@ export default { }, "player_elo_stream_cursor_value_input": { "actual_score": [ - 1664 + 1670 ], "assists": [ 40 ], "change": [ - 2944 + 2950 ], "created_at": [ - 4493 + 4499 ], "current": [ - 2944 + 2950 ], "damage": [ 40 ], "damage_percent": [ - 1664 + 1670 ], "deaths": [ 40 ], "expected_score": [ - 1664 + 1670 ], "impact": [ - 2944 + 2950 ], "k_factor": [ 40 ], "kda": [ - 1664 + 1670 ], "kills": [ 40 @@ -63622,31 +64157,31 @@ export default { 40 ], "match_id": [ - 4993 + 4999 ], "opponent_team_elo_avg": [ - 1664 + 1670 ], "performance_multiplier": [ - 1664 + 1670 ], "player_team_elo_avg": [ - 1664 + 1670 ], "season_id": [ - 4993 + 4999 ], "series_multiplier": [ 40 ], "steam_id": [ - 252 + 258 ], "team_avg_kda": [ - 1664 + 1670 ], "type": [ - 1004 + 1010 ], "__typename": [ 80 @@ -63654,37 +64189,37 @@ export default { }, "player_elo_sum_fields": { "actual_score": [ - 1664 + 1670 ], "assists": [ 40 ], "change": [ - 2944 + 2950 ], "current": [ - 2944 + 2950 ], "damage": [ 40 ], "damage_percent": [ - 1664 + 1670 ], "deaths": [ 40 ], "expected_score": [ - 1664 + 1670 ], "impact": [ - 2944 + 2950 ], "k_factor": [ 40 ], "kda": [ - 1664 + 1670 ], "kills": [ 40 @@ -63696,22 +64231,22 @@ export default { 40 ], "opponent_team_elo_avg": [ - 1664 + 1670 ], "performance_multiplier": [ - 1664 + 1670 ], "player_team_elo_avg": [ - 1664 + 1670 ], "series_multiplier": [ 40 ], "steam_id": [ - 252 + 258 ], "team_avg_kda": [ - 1664 + 1670 ], "__typename": [ 80 @@ -63720,13 +64255,13 @@ export default { "player_elo_update_column": {}, "player_elo_updates": { "_inc": [ - 3194 + 3200 ], "_set": [ - 3203 + 3209 ], "where": [ - 3192 + 3198 ], "__typename": [ 80 @@ -63932,19 +64467,19 @@ export default { 40 ], "id": [ - 4993 + 4999 ], "match": [ - 2761 + 2767 ], "match_id": [ - 4993 + 4999 ], "observed_at": [ - 4493 + 4499 ], "player": [ - 3904 + 3910 ], "previous_rank": [ 40 @@ -63953,7 +64488,7 @@ export default { 40 ], "steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -63961,10 +64496,10 @@ export default { }, "player_faceit_rank_history_aggregate": { "aggregate": [ - 3219 + 3225 ], "nodes": [ - 3215 + 3221 ], "__typename": [ 80 @@ -63972,7 +64507,7 @@ export default { }, "player_faceit_rank_history_aggregate_bool_exp": { "count": [ - 3218 + 3224 ], "__typename": [ 80 @@ -63980,13 +64515,13 @@ export default { }, "player_faceit_rank_history_aggregate_bool_exp_count": { "arguments": [ - 3236 + 3242 ], "distinct": [ 5 ], "filter": [ - 3224 + 3230 ], "predicate": [ 41 @@ -63997,13 +64532,13 @@ export default { }, "player_faceit_rank_history_aggregate_fields": { "avg": [ - 3222 + 3228 ], "count": [ 40, { "columns": [ - 3236, + 3242, "[player_faceit_rank_history_select_column!]" ], "distinct": [ @@ -64012,31 +64547,31 @@ export default { } ], "max": [ - 3228 + 3234 ], "min": [ - 3230 + 3236 ], "stddev": [ - 3238 + 3244 ], "stddev_pop": [ - 3240 + 3246 ], "stddev_samp": [ - 3242 + 3248 ], "sum": [ - 3246 + 3252 ], "var_pop": [ - 3250 + 3256 ], "var_samp": [ - 3252 + 3258 ], "variance": [ - 3254 + 3260 ], "__typename": [ 80 @@ -64044,37 +64579,37 @@ export default { }, "player_faceit_rank_history_aggregate_order_by": { "avg": [ - 3223 + 3229 ], "count": [ - 2946 + 2952 ], "max": [ - 3229 + 3235 ], "min": [ - 3231 + 3237 ], "stddev": [ - 3239 + 3245 ], "stddev_pop": [ - 3241 + 3247 ], "stddev_samp": [ - 3243 + 3249 ], "sum": [ - 3247 + 3253 ], "var_pop": [ - 3251 + 3257 ], "var_samp": [ - 3253 + 3259 ], "variance": [ - 3255 + 3261 ], "__typename": [ 80 @@ -64082,10 +64617,10 @@ export default { }, "player_faceit_rank_history_arr_rel_insert_input": { "data": [ - 3227 + 3233 ], "on_conflict": [ - 3233 + 3239 ], "__typename": [ 80 @@ -64110,16 +64645,16 @@ export default { }, "player_faceit_rank_history_avg_order_by": { "elo": [ - 2946 + 2952 ], "previous_rank": [ - 2946 + 2952 ], "skill_level": [ - 2946 + 2952 ], "steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -64127,31 +64662,31 @@ export default { }, "player_faceit_rank_history_bool_exp": { "_and": [ - 3224 + 3230 ], "_not": [ - 3224 + 3230 ], "_or": [ - 3224 + 3230 ], "elo": [ 41 ], "id": [ - 4995 + 5001 ], "match": [ - 2770 + 2776 ], "match_id": [ - 4995 + 5001 ], "observed_at": [ - 4494 + 4500 ], "player": [ - 3908 + 3914 ], "previous_rank": [ 41 @@ -64160,7 +64695,7 @@ export default { 41 ], "steam_id": [ - 254 + 260 ], "__typename": [ 80 @@ -64178,7 +64713,7 @@ export default { 40 ], "steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -64189,19 +64724,19 @@ export default { 40 ], "id": [ - 4993 + 4999 ], "match": [ - 2779 + 2785 ], "match_id": [ - 4993 + 4999 ], "observed_at": [ - 4493 + 4499 ], "player": [ - 3915 + 3921 ], "previous_rank": [ 40 @@ -64210,7 +64745,7 @@ export default { 40 ], "steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -64221,13 +64756,13 @@ export default { 40 ], "id": [ - 4993 + 4999 ], "match_id": [ - 4993 + 4999 ], "observed_at": [ - 4493 + 4499 ], "previous_rank": [ 40 @@ -64236,7 +64771,7 @@ export default { 40 ], "steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -64244,25 +64779,25 @@ export default { }, "player_faceit_rank_history_max_order_by": { "elo": [ - 2946 + 2952 ], "id": [ - 2946 + 2952 ], "match_id": [ - 2946 + 2952 ], "observed_at": [ - 2946 + 2952 ], "previous_rank": [ - 2946 + 2952 ], "skill_level": [ - 2946 + 2952 ], "steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -64273,13 +64808,13 @@ export default { 40 ], "id": [ - 4993 + 4999 ], "match_id": [ - 4993 + 4999 ], "observed_at": [ - 4493 + 4499 ], "previous_rank": [ 40 @@ -64288,7 +64823,7 @@ export default { 40 ], "steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -64296,25 +64831,25 @@ export default { }, "player_faceit_rank_history_min_order_by": { "elo": [ - 2946 + 2952 ], "id": [ - 2946 + 2952 ], "match_id": [ - 2946 + 2952 ], "observed_at": [ - 2946 + 2952 ], "previous_rank": [ - 2946 + 2952 ], "skill_level": [ - 2946 + 2952 ], "steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -64325,7 +64860,7 @@ export default { 40 ], "returning": [ - 3215 + 3221 ], "__typename": [ 80 @@ -64333,13 +64868,13 @@ export default { }, "player_faceit_rank_history_on_conflict": { "constraint": [ - 3225 + 3231 ], "update_columns": [ - 3248 + 3254 ], "where": [ - 3224 + 3230 ], "__typename": [ 80 @@ -64347,31 +64882,31 @@ export default { }, "player_faceit_rank_history_order_by": { "elo": [ - 2946 + 2952 ], "id": [ - 2946 + 2952 ], "match": [ - 2781 + 2787 ], "match_id": [ - 2946 + 2952 ], "observed_at": [ - 2946 + 2952 ], "player": [ - 3917 + 3923 ], "previous_rank": [ - 2946 + 2952 ], "skill_level": [ - 2946 + 2952 ], "steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -64379,7 +64914,7 @@ export default { }, "player_faceit_rank_history_pk_columns_input": { "id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -64391,13 +64926,13 @@ export default { 40 ], "id": [ - 4993 + 4999 ], "match_id": [ - 4993 + 4999 ], "observed_at": [ - 4493 + 4499 ], "previous_rank": [ 40 @@ -64406,7 +64941,7 @@ export default { 40 ], "steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -64431,16 +64966,16 @@ export default { }, "player_faceit_rank_history_stddev_order_by": { "elo": [ - 2946 + 2952 ], "previous_rank": [ - 2946 + 2952 ], "skill_level": [ - 2946 + 2952 ], "steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -64465,16 +65000,16 @@ export default { }, "player_faceit_rank_history_stddev_pop_order_by": { "elo": [ - 2946 + 2952 ], "previous_rank": [ - 2946 + 2952 ], "skill_level": [ - 2946 + 2952 ], "steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -64499,16 +65034,16 @@ export default { }, "player_faceit_rank_history_stddev_samp_order_by": { "elo": [ - 2946 + 2952 ], "previous_rank": [ - 2946 + 2952 ], "skill_level": [ - 2946 + 2952 ], "steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -64516,10 +65051,10 @@ export default { }, "player_faceit_rank_history_stream_cursor_input": { "initial_value": [ - 3245 + 3251 ], "ordering": [ - 308 + 314 ], "__typename": [ 80 @@ -64530,13 +65065,13 @@ export default { 40 ], "id": [ - 4993 + 4999 ], "match_id": [ - 4993 + 4999 ], "observed_at": [ - 4493 + 4499 ], "previous_rank": [ 40 @@ -64545,7 +65080,7 @@ export default { 40 ], "steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -64562,7 +65097,7 @@ export default { 40 ], "steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -64570,16 +65105,16 @@ export default { }, "player_faceit_rank_history_sum_order_by": { "elo": [ - 2946 + 2952 ], "previous_rank": [ - 2946 + 2952 ], "skill_level": [ - 2946 + 2952 ], "steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -64588,13 +65123,13 @@ export default { "player_faceit_rank_history_update_column": {}, "player_faceit_rank_history_updates": { "_inc": [ - 3226 + 3232 ], "_set": [ - 3237 + 3243 ], "where": [ - 3224 + 3230 ], "__typename": [ 80 @@ -64619,16 +65154,16 @@ export default { }, "player_faceit_rank_history_var_pop_order_by": { "elo": [ - 2946 + 2952 ], "previous_rank": [ - 2946 + 2952 ], "skill_level": [ - 2946 + 2952 ], "steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -64653,16 +65188,16 @@ export default { }, "player_faceit_rank_history_var_samp_order_by": { "elo": [ - 2946 + 2952 ], "previous_rank": [ - 2946 + 2952 ], "skill_level": [ - 2946 + 2952 ], "steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -64687,16 +65222,16 @@ export default { }, "player_faceit_rank_history_variance_order_by": { "elo": [ - 2946 + 2952 ], "previous_rank": [ - 2946 + 2952 ], "skill_level": [ - 2946 + 2952 ], "steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -64704,31 +65239,31 @@ export default { }, "player_flashes": { "attacked_steam_id": [ - 252 + 258 ], "attacker_steam_id": [ - 252 + 258 ], "blinded": [ - 3904 + 3910 ], "deleted_at": [ - 4493 + 4499 ], "duration": [ - 2944 + 2950 ], "match": [ - 2761 + 2767 ], "match_id": [ - 4993 + 4999 ], "match_map": [ - 2599 + 2605 ], "match_map_id": [ - 4993 + 4999 ], "round": [ 40 @@ -64737,10 +65272,10 @@ export default { 5 ], "thrown_by": [ - 3904 + 3910 ], "time": [ - 4493 + 4499 ], "__typename": [ 80 @@ -64748,10 +65283,10 @@ export default { }, "player_flashes_aggregate": { "aggregate": [ - 3262 + 3268 ], "nodes": [ - 3256 + 3262 ], "__typename": [ 80 @@ -64759,13 +65294,13 @@ export default { }, "player_flashes_aggregate_bool_exp": { "bool_and": [ - 3259 + 3265 ], "bool_or": [ - 3260 + 3266 ], "count": [ - 3261 + 3267 ], "__typename": [ 80 @@ -64773,13 +65308,13 @@ export default { }, "player_flashes_aggregate_bool_exp_bool_and": { "arguments": [ - 3280 + 3286 ], "distinct": [ 5 ], "filter": [ - 3267 + 3273 ], "predicate": [ 6 @@ -64790,13 +65325,13 @@ export default { }, "player_flashes_aggregate_bool_exp_bool_or": { "arguments": [ - 3281 + 3287 ], "distinct": [ 5 ], "filter": [ - 3267 + 3273 ], "predicate": [ 6 @@ -64807,13 +65342,13 @@ export default { }, "player_flashes_aggregate_bool_exp_count": { "arguments": [ - 3279 + 3285 ], "distinct": [ 5 ], "filter": [ - 3267 + 3273 ], "predicate": [ 41 @@ -64824,13 +65359,13 @@ export default { }, "player_flashes_aggregate_fields": { "avg": [ - 3265 + 3271 ], "count": [ 40, { "columns": [ - 3279, + 3285, "[player_flashes_select_column!]" ], "distinct": [ @@ -64839,31 +65374,31 @@ export default { } ], "max": [ - 3271 + 3277 ], "min": [ - 3273 + 3279 ], "stddev": [ - 3283 + 3289 ], "stddev_pop": [ - 3285 + 3291 ], "stddev_samp": [ - 3287 + 3293 ], "sum": [ - 3291 + 3297 ], "var_pop": [ - 3295 + 3301 ], "var_samp": [ - 3297 + 3303 ], "variance": [ - 3299 + 3305 ], "__typename": [ 80 @@ -64871,37 +65406,37 @@ export default { }, "player_flashes_aggregate_order_by": { "avg": [ - 3266 + 3272 ], "count": [ - 2946 + 2952 ], "max": [ - 3272 + 3278 ], "min": [ - 3274 + 3280 ], "stddev": [ - 3284 + 3290 ], "stddev_pop": [ - 3286 + 3292 ], "stddev_samp": [ - 3288 + 3294 ], "sum": [ - 3292 + 3298 ], "var_pop": [ - 3296 + 3302 ], "var_samp": [ - 3298 + 3304 ], "variance": [ - 3300 + 3306 ], "__typename": [ 80 @@ -64909,10 +65444,10 @@ export default { }, "player_flashes_arr_rel_insert_input": { "data": [ - 3270 + 3276 ], "on_conflict": [ - 3276 + 3282 ], "__typename": [ 80 @@ -64937,16 +65472,16 @@ export default { }, "player_flashes_avg_order_by": { "attacked_steam_id": [ - 2946 + 2952 ], "attacker_steam_id": [ - 2946 + 2952 ], "duration": [ - 2946 + 2952 ], "round": [ - 2946 + 2952 ], "__typename": [ 80 @@ -64954,40 +65489,40 @@ export default { }, "player_flashes_bool_exp": { "_and": [ - 3267 + 3273 ], "_not": [ - 3267 + 3273 ], "_or": [ - 3267 + 3273 ], "attacked_steam_id": [ - 254 + 260 ], "attacker_steam_id": [ - 254 + 260 ], "blinded": [ - 3908 + 3914 ], "deleted_at": [ - 4494 + 4500 ], "duration": [ - 2945 + 2951 ], "match": [ - 2770 + 2776 ], "match_id": [ - 4995 + 5001 ], "match_map": [ - 2608 + 2614 ], "match_map_id": [ - 4995 + 5001 ], "round": [ 41 @@ -64996,10 +65531,10 @@ export default { 6 ], "thrown_by": [ - 3908 + 3914 ], "time": [ - 4494 + 4500 ], "__typename": [ 80 @@ -65008,13 +65543,13 @@ export default { "player_flashes_constraint": {}, "player_flashes_inc_input": { "attacked_steam_id": [ - 252 + 258 ], "attacker_steam_id": [ - 252 + 258 ], "duration": [ - 2944 + 2950 ], "round": [ 40 @@ -65025,31 +65560,31 @@ export default { }, "player_flashes_insert_input": { "attacked_steam_id": [ - 252 + 258 ], "attacker_steam_id": [ - 252 + 258 ], "blinded": [ - 3915 + 3921 ], "deleted_at": [ - 4493 + 4499 ], "duration": [ - 2944 + 2950 ], "match": [ - 2779 + 2785 ], "match_id": [ - 4993 + 4999 ], "match_map": [ - 2617 + 2623 ], "match_map_id": [ - 4993 + 4999 ], "round": [ 40 @@ -65058,10 +65593,10 @@ export default { 5 ], "thrown_by": [ - 3915 + 3921 ], "time": [ - 4493 + 4499 ], "__typename": [ 80 @@ -65069,28 +65604,28 @@ export default { }, "player_flashes_max_fields": { "attacked_steam_id": [ - 252 + 258 ], "attacker_steam_id": [ - 252 + 258 ], "deleted_at": [ - 4493 + 4499 ], "duration": [ - 2944 + 2950 ], "match_id": [ - 4993 + 4999 ], "match_map_id": [ - 4993 + 4999 ], "round": [ 40 ], "time": [ - 4493 + 4499 ], "__typename": [ 80 @@ -65098,28 +65633,28 @@ export default { }, "player_flashes_max_order_by": { "attacked_steam_id": [ - 2946 + 2952 ], "attacker_steam_id": [ - 2946 + 2952 ], "deleted_at": [ - 2946 + 2952 ], "duration": [ - 2946 + 2952 ], "match_id": [ - 2946 + 2952 ], "match_map_id": [ - 2946 + 2952 ], "round": [ - 2946 + 2952 ], "time": [ - 2946 + 2952 ], "__typename": [ 80 @@ -65127,28 +65662,28 @@ export default { }, "player_flashes_min_fields": { "attacked_steam_id": [ - 252 + 258 ], "attacker_steam_id": [ - 252 + 258 ], "deleted_at": [ - 4493 + 4499 ], "duration": [ - 2944 + 2950 ], "match_id": [ - 4993 + 4999 ], "match_map_id": [ - 4993 + 4999 ], "round": [ 40 ], "time": [ - 4493 + 4499 ], "__typename": [ 80 @@ -65156,28 +65691,28 @@ export default { }, "player_flashes_min_order_by": { "attacked_steam_id": [ - 2946 + 2952 ], "attacker_steam_id": [ - 2946 + 2952 ], "deleted_at": [ - 2946 + 2952 ], "duration": [ - 2946 + 2952 ], "match_id": [ - 2946 + 2952 ], "match_map_id": [ - 2946 + 2952 ], "round": [ - 2946 + 2952 ], "time": [ - 2946 + 2952 ], "__typename": [ 80 @@ -65188,7 +65723,7 @@ export default { 40 ], "returning": [ - 3256 + 3262 ], "__typename": [ 80 @@ -65196,13 +65731,13 @@ export default { }, "player_flashes_on_conflict": { "constraint": [ - 3268 + 3274 ], "update_columns": [ - 3293 + 3299 ], "where": [ - 3267 + 3273 ], "__typename": [ 80 @@ -65210,43 +65745,43 @@ export default { }, "player_flashes_order_by": { "attacked_steam_id": [ - 2946 + 2952 ], "attacker_steam_id": [ - 2946 + 2952 ], "blinded": [ - 3917 + 3923 ], "deleted_at": [ - 2946 + 2952 ], "duration": [ - 2946 + 2952 ], "match": [ - 2781 + 2787 ], "match_id": [ - 2946 + 2952 ], "match_map": [ - 2619 + 2625 ], "match_map_id": [ - 2946 + 2952 ], "round": [ - 2946 + 2952 ], "team_flash": [ - 2946 + 2952 ], "thrown_by": [ - 3917 + 3923 ], "time": [ - 2946 + 2952 ], "__typename": [ 80 @@ -65254,16 +65789,16 @@ export default { }, "player_flashes_pk_columns_input": { "attacked_steam_id": [ - 252 + 258 ], "attacker_steam_id": [ - 252 + 258 ], "match_map_id": [ - 4993 + 4999 ], "time": [ - 4493 + 4499 ], "__typename": [ 80 @@ -65274,22 +65809,22 @@ export default { "player_flashes_select_column_player_flashes_aggregate_bool_exp_bool_or_arguments_columns": {}, "player_flashes_set_input": { "attacked_steam_id": [ - 252 + 258 ], "attacker_steam_id": [ - 252 + 258 ], "deleted_at": [ - 4493 + 4499 ], "duration": [ - 2944 + 2950 ], "match_id": [ - 4993 + 4999 ], "match_map_id": [ - 4993 + 4999 ], "round": [ 40 @@ -65298,7 +65833,7 @@ export default { 5 ], "time": [ - 4493 + 4499 ], "__typename": [ 80 @@ -65323,16 +65858,16 @@ export default { }, "player_flashes_stddev_order_by": { "attacked_steam_id": [ - 2946 + 2952 ], "attacker_steam_id": [ - 2946 + 2952 ], "duration": [ - 2946 + 2952 ], "round": [ - 2946 + 2952 ], "__typename": [ 80 @@ -65357,16 +65892,16 @@ export default { }, "player_flashes_stddev_pop_order_by": { "attacked_steam_id": [ - 2946 + 2952 ], "attacker_steam_id": [ - 2946 + 2952 ], "duration": [ - 2946 + 2952 ], "round": [ - 2946 + 2952 ], "__typename": [ 80 @@ -65391,16 +65926,16 @@ export default { }, "player_flashes_stddev_samp_order_by": { "attacked_steam_id": [ - 2946 + 2952 ], "attacker_steam_id": [ - 2946 + 2952 ], "duration": [ - 2946 + 2952 ], "round": [ - 2946 + 2952 ], "__typename": [ 80 @@ -65408,10 +65943,10 @@ export default { }, "player_flashes_stream_cursor_input": { "initial_value": [ - 3290 + 3296 ], "ordering": [ - 308 + 314 ], "__typename": [ 80 @@ -65419,22 +65954,22 @@ export default { }, "player_flashes_stream_cursor_value_input": { "attacked_steam_id": [ - 252 + 258 ], "attacker_steam_id": [ - 252 + 258 ], "deleted_at": [ - 4493 + 4499 ], "duration": [ - 2944 + 2950 ], "match_id": [ - 4993 + 4999 ], "match_map_id": [ - 4993 + 4999 ], "round": [ 40 @@ -65443,7 +65978,7 @@ export default { 5 ], "time": [ - 4493 + 4499 ], "__typename": [ 80 @@ -65451,13 +65986,13 @@ export default { }, "player_flashes_sum_fields": { "attacked_steam_id": [ - 252 + 258 ], "attacker_steam_id": [ - 252 + 258 ], "duration": [ - 2944 + 2950 ], "round": [ 40 @@ -65468,16 +66003,16 @@ export default { }, "player_flashes_sum_order_by": { "attacked_steam_id": [ - 2946 + 2952 ], "attacker_steam_id": [ - 2946 + 2952 ], "duration": [ - 2946 + 2952 ], "round": [ - 2946 + 2952 ], "__typename": [ 80 @@ -65486,13 +66021,13 @@ export default { "player_flashes_update_column": {}, "player_flashes_updates": { "_inc": [ - 3269 + 3275 ], "_set": [ - 3282 + 3288 ], "where": [ - 3267 + 3273 ], "__typename": [ 80 @@ -65517,16 +66052,16 @@ export default { }, "player_flashes_var_pop_order_by": { "attacked_steam_id": [ - 2946 + 2952 ], "attacker_steam_id": [ - 2946 + 2952 ], "duration": [ - 2946 + 2952 ], "round": [ - 2946 + 2952 ], "__typename": [ 80 @@ -65551,16 +66086,16 @@ export default { }, "player_flashes_var_samp_order_by": { "attacked_steam_id": [ - 2946 + 2952 ], "attacker_steam_id": [ - 2946 + 2952 ], "duration": [ - 2946 + 2952 ], "round": [ - 2946 + 2952 ], "__typename": [ 80 @@ -65585,16 +66120,16 @@ export default { }, "player_flashes_variance_order_by": { "attacked_steam_id": [ - 2946 + 2952 ], "attacker_steam_id": [ - 2946 + 2952 ], "duration": [ - 2946 + 2952 ], "round": [ - 2946 + 2952 ], "__typename": [ 80 @@ -65611,10 +66146,10 @@ export default { 80 ], "attacked_player": [ - 3904 + 3910 ], "attacked_steam_id": [ - 252 + 258 ], "attacked_team": [ 80 @@ -65626,7 +66161,7 @@ export default { 80 ], "attacker_steam_id": [ - 252 + 258 ], "attacker_team": [ 80 @@ -65635,7 +66170,7 @@ export default { 5 ], "deleted_at": [ - 4493 + 4499 ], "headshot": [ 5 @@ -65650,22 +66185,22 @@ export default { 5 ], "match": [ - 2761 + 2767 ], "match_id": [ - 4993 + 4999 ], "match_map": [ - 2599 + 2605 ], "match_map_id": [ - 4993 + 4999 ], "no_scope": [ 5 ], "player": [ - 3904 + 3910 ], "round": [ 40 @@ -65680,7 +66215,7 @@ export default { 5 ], "time": [ - 4493 + 4499 ], "with": [ 80 @@ -65691,10 +66226,10 @@ export default { }, "player_kills_aggregate": { "aggregate": [ - 3307 + 3313 ], "nodes": [ - 3301 + 3307 ], "__typename": [ 80 @@ -65702,13 +66237,13 @@ export default { }, "player_kills_aggregate_bool_exp": { "bool_and": [ - 3304 + 3310 ], "bool_or": [ - 3305 + 3311 ], "count": [ - 3306 + 3312 ], "__typename": [ 80 @@ -65716,13 +66251,13 @@ export default { }, "player_kills_aggregate_bool_exp_bool_and": { "arguments": [ - 3366 + 3372 ], "distinct": [ 5 ], "filter": [ - 3312 + 3318 ], "predicate": [ 6 @@ -65733,13 +66268,13 @@ export default { }, "player_kills_aggregate_bool_exp_bool_or": { "arguments": [ - 3367 + 3373 ], "distinct": [ 5 ], "filter": [ - 3312 + 3318 ], "predicate": [ 6 @@ -65750,13 +66285,13 @@ export default { }, "player_kills_aggregate_bool_exp_count": { "arguments": [ - 3365 + 3371 ], "distinct": [ 5 ], "filter": [ - 3312 + 3318 ], "predicate": [ 41 @@ -65767,13 +66302,13 @@ export default { }, "player_kills_aggregate_fields": { "avg": [ - 3310 + 3316 ], "count": [ 40, { "columns": [ - 3365, + 3371, "[player_kills_select_column!]" ], "distinct": [ @@ -65782,31 +66317,31 @@ export default { } ], "max": [ - 3357 + 3363 ], "min": [ - 3359 + 3365 ], "stddev": [ - 3369 + 3375 ], "stddev_pop": [ - 3371 + 3377 ], "stddev_samp": [ - 3373 + 3379 ], "sum": [ - 3377 + 3383 ], "var_pop": [ - 3381 + 3387 ], "var_samp": [ - 3383 + 3389 ], "variance": [ - 3385 + 3391 ], "__typename": [ 80 @@ -65814,37 +66349,37 @@ export default { }, "player_kills_aggregate_order_by": { "avg": [ - 3311 + 3317 ], "count": [ - 2946 + 2952 ], "max": [ - 3358 + 3364 ], "min": [ - 3360 + 3366 ], "stddev": [ - 3370 + 3376 ], "stddev_pop": [ - 3372 + 3378 ], "stddev_samp": [ - 3374 + 3380 ], "sum": [ - 3378 + 3384 ], "var_pop": [ - 3382 + 3388 ], "var_samp": [ - 3384 + 3390 ], "variance": [ - 3386 + 3392 ], "__typename": [ 80 @@ -65852,10 +66387,10 @@ export default { }, "player_kills_arr_rel_insert_input": { "data": [ - 3356 + 3362 ], "on_conflict": [ - 3362 + 3368 ], "__typename": [ 80 @@ -65877,13 +66412,13 @@ export default { }, "player_kills_avg_order_by": { "attacked_steam_id": [ - 2946 + 2952 ], "attacker_steam_id": [ - 2946 + 2952 ], "round": [ - 2946 + 2952 ], "__typename": [ 80 @@ -65891,13 +66426,13 @@ export default { }, "player_kills_bool_exp": { "_and": [ - 3312 + 3318 ], "_not": [ - 3312 + 3318 ], "_or": [ - 3312 + 3318 ], "assisted": [ 6 @@ -65909,10 +66444,10 @@ export default { 82 ], "attacked_player": [ - 3908 + 3914 ], "attacked_steam_id": [ - 254 + 260 ], "attacked_team": [ 82 @@ -65924,7 +66459,7 @@ export default { 82 ], "attacker_steam_id": [ - 254 + 260 ], "attacker_team": [ 82 @@ -65933,7 +66468,7 @@ export default { 6 ], "deleted_at": [ - 4494 + 4500 ], "headshot": [ 6 @@ -65948,22 +66483,22 @@ export default { 6 ], "match": [ - 2770 + 2776 ], "match_id": [ - 4995 + 5001 ], "match_map": [ - 2608 + 2614 ], "match_map_id": [ - 4995 + 5001 ], "no_scope": [ 6 ], "player": [ - 3908 + 3914 ], "round": [ 41 @@ -65978,7 +66513,7 @@ export default { 6 ], "time": [ - 4494 + 4500 ], "with": [ 82 @@ -65989,13 +66524,13 @@ export default { }, "player_kills_by_weapon": { "kill_count": [ - 252 + 258 ], "player": [ - 3904 + 3910 ], "player_steam_id": [ - 252 + 258 ], "with": [ 80 @@ -66006,10 +66541,10 @@ export default { }, "player_kills_by_weapon_aggregate": { "aggregate": [ - 3317 + 3323 ], "nodes": [ - 3313 + 3319 ], "__typename": [ 80 @@ -66017,7 +66552,7 @@ export default { }, "player_kills_by_weapon_aggregate_bool_exp": { "count": [ - 3316 + 3322 ], "__typename": [ 80 @@ -66025,13 +66560,13 @@ export default { }, "player_kills_by_weapon_aggregate_bool_exp_count": { "arguments": [ - 3334 + 3340 ], "distinct": [ 5 ], "filter": [ - 3322 + 3328 ], "predicate": [ 41 @@ -66042,13 +66577,13 @@ export default { }, "player_kills_by_weapon_aggregate_fields": { "avg": [ - 3320 + 3326 ], "count": [ 40, { "columns": [ - 3334, + 3340, "[player_kills_by_weapon_select_column!]" ], "distinct": [ @@ -66057,31 +66592,31 @@ export default { } ], "max": [ - 3326 + 3332 ], "min": [ - 3328 + 3334 ], "stddev": [ - 3336 + 3342 ], "stddev_pop": [ - 3338 + 3344 ], "stddev_samp": [ - 3340 + 3346 ], "sum": [ - 3344 + 3350 ], "var_pop": [ - 3348 + 3354 ], "var_samp": [ - 3350 + 3356 ], "variance": [ - 3352 + 3358 ], "__typename": [ 80 @@ -66089,37 +66624,37 @@ export default { }, "player_kills_by_weapon_aggregate_order_by": { "avg": [ - 3321 + 3327 ], "count": [ - 2946 + 2952 ], "max": [ - 3327 + 3333 ], "min": [ - 3329 + 3335 ], "stddev": [ - 3337 + 3343 ], "stddev_pop": [ - 3339 + 3345 ], "stddev_samp": [ - 3341 + 3347 ], "sum": [ - 3345 + 3351 ], "var_pop": [ - 3349 + 3355 ], "var_samp": [ - 3351 + 3357 ], "variance": [ - 3353 + 3359 ], "__typename": [ 80 @@ -66127,10 +66662,10 @@ export default { }, "player_kills_by_weapon_arr_rel_insert_input": { "data": [ - 3325 + 3331 ], "on_conflict": [ - 3331 + 3337 ], "__typename": [ 80 @@ -66149,10 +66684,10 @@ export default { }, "player_kills_by_weapon_avg_order_by": { "kill_count": [ - 2946 + 2952 ], "player_steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -66160,22 +66695,22 @@ export default { }, "player_kills_by_weapon_bool_exp": { "_and": [ - 3322 + 3328 ], "_not": [ - 3322 + 3328 ], "_or": [ - 3322 + 3328 ], "kill_count": [ - 254 + 260 ], "player": [ - 3908 + 3914 ], "player_steam_id": [ - 254 + 260 ], "with": [ 82 @@ -66187,10 +66722,10 @@ export default { "player_kills_by_weapon_constraint": {}, "player_kills_by_weapon_inc_input": { "kill_count": [ - 252 + 258 ], "player_steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -66198,13 +66733,13 @@ export default { }, "player_kills_by_weapon_insert_input": { "kill_count": [ - 252 + 258 ], "player": [ - 3915 + 3921 ], "player_steam_id": [ - 252 + 258 ], "with": [ 80 @@ -66215,10 +66750,10 @@ export default { }, "player_kills_by_weapon_max_fields": { "kill_count": [ - 252 + 258 ], "player_steam_id": [ - 252 + 258 ], "with": [ 80 @@ -66229,13 +66764,13 @@ export default { }, "player_kills_by_weapon_max_order_by": { "kill_count": [ - 2946 + 2952 ], "player_steam_id": [ - 2946 + 2952 ], "with": [ - 2946 + 2952 ], "__typename": [ 80 @@ -66243,10 +66778,10 @@ export default { }, "player_kills_by_weapon_min_fields": { "kill_count": [ - 252 + 258 ], "player_steam_id": [ - 252 + 258 ], "with": [ 80 @@ -66257,13 +66792,13 @@ export default { }, "player_kills_by_weapon_min_order_by": { "kill_count": [ - 2946 + 2952 ], "player_steam_id": [ - 2946 + 2952 ], "with": [ - 2946 + 2952 ], "__typename": [ 80 @@ -66274,7 +66809,7 @@ export default { 40 ], "returning": [ - 3313 + 3319 ], "__typename": [ 80 @@ -66282,13 +66817,13 @@ export default { }, "player_kills_by_weapon_on_conflict": { "constraint": [ - 3323 + 3329 ], "update_columns": [ - 3346 + 3352 ], "where": [ - 3322 + 3328 ], "__typename": [ 80 @@ -66296,16 +66831,16 @@ export default { }, "player_kills_by_weapon_order_by": { "kill_count": [ - 2946 + 2952 ], "player": [ - 3917 + 3923 ], "player_steam_id": [ - 2946 + 2952 ], "with": [ - 2946 + 2952 ], "__typename": [ 80 @@ -66313,7 +66848,7 @@ export default { }, "player_kills_by_weapon_pk_columns_input": { "player_steam_id": [ - 252 + 258 ], "with": [ 80 @@ -66325,10 +66860,10 @@ export default { "player_kills_by_weapon_select_column": {}, "player_kills_by_weapon_set_input": { "kill_count": [ - 252 + 258 ], "player_steam_id": [ - 252 + 258 ], "with": [ 80 @@ -66350,10 +66885,10 @@ export default { }, "player_kills_by_weapon_stddev_order_by": { "kill_count": [ - 2946 + 2952 ], "player_steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -66372,10 +66907,10 @@ export default { }, "player_kills_by_weapon_stddev_pop_order_by": { "kill_count": [ - 2946 + 2952 ], "player_steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -66394,10 +66929,10 @@ export default { }, "player_kills_by_weapon_stddev_samp_order_by": { "kill_count": [ - 2946 + 2952 ], "player_steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -66405,10 +66940,10 @@ export default { }, "player_kills_by_weapon_stream_cursor_input": { "initial_value": [ - 3343 + 3349 ], "ordering": [ - 308 + 314 ], "__typename": [ 80 @@ -66416,10 +66951,10 @@ export default { }, "player_kills_by_weapon_stream_cursor_value_input": { "kill_count": [ - 252 + 258 ], "player_steam_id": [ - 252 + 258 ], "with": [ 80 @@ -66430,10 +66965,10 @@ export default { }, "player_kills_by_weapon_sum_fields": { "kill_count": [ - 252 + 258 ], "player_steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -66441,10 +66976,10 @@ export default { }, "player_kills_by_weapon_sum_order_by": { "kill_count": [ - 2946 + 2952 ], "player_steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -66453,13 +66988,13 @@ export default { "player_kills_by_weapon_update_column": {}, "player_kills_by_weapon_updates": { "_inc": [ - 3324 + 3330 ], "_set": [ - 3335 + 3341 ], "where": [ - 3322 + 3328 ], "__typename": [ 80 @@ -66478,10 +67013,10 @@ export default { }, "player_kills_by_weapon_var_pop_order_by": { "kill_count": [ - 2946 + 2952 ], "player_steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -66500,10 +67035,10 @@ export default { }, "player_kills_by_weapon_var_samp_order_by": { "kill_count": [ - 2946 + 2952 ], "player_steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -66522,10 +67057,10 @@ export default { }, "player_kills_by_weapon_variance_order_by": { "kill_count": [ - 2946 + 2952 ], "player_steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -66534,10 +67069,10 @@ export default { "player_kills_constraint": {}, "player_kills_inc_input": { "attacked_steam_id": [ - 252 + 258 ], "attacker_steam_id": [ - 252 + 258 ], "round": [ 40 @@ -66557,10 +67092,10 @@ export default { 80 ], "attacked_player": [ - 3915 + 3921 ], "attacked_steam_id": [ - 252 + 258 ], "attacked_team": [ 80 @@ -66572,7 +67107,7 @@ export default { 80 ], "attacker_steam_id": [ - 252 + 258 ], "attacker_team": [ 80 @@ -66581,7 +67116,7 @@ export default { 5 ], "deleted_at": [ - 4493 + 4499 ], "headshot": [ 5 @@ -66593,22 +67128,22 @@ export default { 5 ], "match": [ - 2779 + 2785 ], "match_id": [ - 4993 + 4999 ], "match_map": [ - 2617 + 2623 ], "match_map_id": [ - 4993 + 4999 ], "no_scope": [ 5 ], "player": [ - 3915 + 3921 ], "round": [ 40 @@ -66620,7 +67155,7 @@ export default { 5 ], "time": [ - 4493 + 4499 ], "with": [ 80 @@ -66637,7 +67172,7 @@ export default { 80 ], "attacked_steam_id": [ - 252 + 258 ], "attacked_team": [ 80 @@ -66649,28 +67184,28 @@ export default { 80 ], "attacker_steam_id": [ - 252 + 258 ], "attacker_team": [ 80 ], "deleted_at": [ - 4493 + 4499 ], "hitgroup": [ 80 ], "match_id": [ - 4993 + 4999 ], "match_map_id": [ - 4993 + 4999 ], "round": [ 40 ], "time": [ - 4493 + 4499 ], "with": [ 80 @@ -66681,49 +67216,49 @@ export default { }, "player_kills_max_order_by": { "attacked_location": [ - 2946 + 2952 ], "attacked_location_coordinates": [ - 2946 + 2952 ], "attacked_steam_id": [ - 2946 + 2952 ], "attacked_team": [ - 2946 + 2952 ], "attacker_location": [ - 2946 + 2952 ], "attacker_location_coordinates": [ - 2946 + 2952 ], "attacker_steam_id": [ - 2946 + 2952 ], "attacker_team": [ - 2946 + 2952 ], "deleted_at": [ - 2946 + 2952 ], "hitgroup": [ - 2946 + 2952 ], "match_id": [ - 2946 + 2952 ], "match_map_id": [ - 2946 + 2952 ], "round": [ - 2946 + 2952 ], "time": [ - 2946 + 2952 ], "with": [ - 2946 + 2952 ], "__typename": [ 80 @@ -66737,7 +67272,7 @@ export default { 80 ], "attacked_steam_id": [ - 252 + 258 ], "attacked_team": [ 80 @@ -66749,28 +67284,28 @@ export default { 80 ], "attacker_steam_id": [ - 252 + 258 ], "attacker_team": [ 80 ], "deleted_at": [ - 4493 + 4499 ], "hitgroup": [ 80 ], "match_id": [ - 4993 + 4999 ], "match_map_id": [ - 4993 + 4999 ], "round": [ 40 ], "time": [ - 4493 + 4499 ], "with": [ 80 @@ -66781,49 +67316,49 @@ export default { }, "player_kills_min_order_by": { "attacked_location": [ - 2946 + 2952 ], "attacked_location_coordinates": [ - 2946 + 2952 ], "attacked_steam_id": [ - 2946 + 2952 ], "attacked_team": [ - 2946 + 2952 ], "attacker_location": [ - 2946 + 2952 ], "attacker_location_coordinates": [ - 2946 + 2952 ], "attacker_steam_id": [ - 2946 + 2952 ], "attacker_team": [ - 2946 + 2952 ], "deleted_at": [ - 2946 + 2952 ], "hitgroup": [ - 2946 + 2952 ], "match_id": [ - 2946 + 2952 ], "match_map_id": [ - 2946 + 2952 ], "round": [ - 2946 + 2952 ], "time": [ - 2946 + 2952 ], "with": [ - 2946 + 2952 ], "__typename": [ 80 @@ -66834,7 +67369,7 @@ export default { 40 ], "returning": [ - 3301 + 3307 ], "__typename": [ 80 @@ -66842,13 +67377,13 @@ export default { }, "player_kills_on_conflict": { "constraint": [ - 3354 + 3360 ], "update_columns": [ - 3379 + 3385 ], "where": [ - 3312 + 3318 ], "__typename": [ 80 @@ -66856,88 +67391,88 @@ export default { }, "player_kills_order_by": { "assisted": [ - 2946 + 2952 ], "attacked_location": [ - 2946 + 2952 ], "attacked_location_coordinates": [ - 2946 + 2952 ], "attacked_player": [ - 3917 + 3923 ], "attacked_steam_id": [ - 2946 + 2952 ], "attacked_team": [ - 2946 + 2952 ], "attacker_location": [ - 2946 + 2952 ], "attacker_location_coordinates": [ - 2946 + 2952 ], "attacker_steam_id": [ - 2946 + 2952 ], "attacker_team": [ - 2946 + 2952 ], "blinded": [ - 2946 + 2952 ], "deleted_at": [ - 2946 + 2952 ], "headshot": [ - 2946 + 2952 ], "hitgroup": [ - 2946 + 2952 ], "in_air": [ - 2946 + 2952 ], "is_suicide": [ - 2946 + 2952 ], "match": [ - 2781 + 2787 ], "match_id": [ - 2946 + 2952 ], "match_map": [ - 2619 + 2625 ], "match_map_id": [ - 2946 + 2952 ], "no_scope": [ - 2946 + 2952 ], "player": [ - 3917 + 3923 ], "round": [ - 2946 + 2952 ], "team_kill": [ - 2946 + 2952 ], "thru_smoke": [ - 2946 + 2952 ], "thru_wall": [ - 2946 + 2952 ], "time": [ - 2946 + 2952 ], "with": [ - 2946 + 2952 ], "__typename": [ 80 @@ -66945,16 +67480,16 @@ export default { }, "player_kills_pk_columns_input": { "attacked_steam_id": [ - 252 + 258 ], "attacker_steam_id": [ - 252 + 258 ], "match_map_id": [ - 4993 + 4999 ], "time": [ - 4493 + 4499 ], "__typename": [ 80 @@ -66974,7 +67509,7 @@ export default { 80 ], "attacked_steam_id": [ - 252 + 258 ], "attacked_team": [ 80 @@ -66986,7 +67521,7 @@ export default { 80 ], "attacker_steam_id": [ - 252 + 258 ], "attacker_team": [ 80 @@ -66995,7 +67530,7 @@ export default { 5 ], "deleted_at": [ - 4493 + 4499 ], "headshot": [ 5 @@ -67007,10 +67542,10 @@ export default { 5 ], "match_id": [ - 4993 + 4999 ], "match_map_id": [ - 4993 + 4999 ], "no_scope": [ 5 @@ -67025,7 +67560,7 @@ export default { 5 ], "time": [ - 4493 + 4499 ], "with": [ 80 @@ -67050,13 +67585,13 @@ export default { }, "player_kills_stddev_order_by": { "attacked_steam_id": [ - 2946 + 2952 ], "attacker_steam_id": [ - 2946 + 2952 ], "round": [ - 2946 + 2952 ], "__typename": [ 80 @@ -67078,13 +67613,13 @@ export default { }, "player_kills_stddev_pop_order_by": { "attacked_steam_id": [ - 2946 + 2952 ], "attacker_steam_id": [ - 2946 + 2952 ], "round": [ - 2946 + 2952 ], "__typename": [ 80 @@ -67106,13 +67641,13 @@ export default { }, "player_kills_stddev_samp_order_by": { "attacked_steam_id": [ - 2946 + 2952 ], "attacker_steam_id": [ - 2946 + 2952 ], "round": [ - 2946 + 2952 ], "__typename": [ 80 @@ -67120,10 +67655,10 @@ export default { }, "player_kills_stream_cursor_input": { "initial_value": [ - 3376 + 3382 ], "ordering": [ - 308 + 314 ], "__typename": [ 80 @@ -67140,7 +67675,7 @@ export default { 80 ], "attacked_steam_id": [ - 252 + 258 ], "attacked_team": [ 80 @@ -67152,7 +67687,7 @@ export default { 80 ], "attacker_steam_id": [ - 252 + 258 ], "attacker_team": [ 80 @@ -67161,7 +67696,7 @@ export default { 5 ], "deleted_at": [ - 4493 + 4499 ], "headshot": [ 5 @@ -67173,10 +67708,10 @@ export default { 5 ], "match_id": [ - 4993 + 4999 ], "match_map_id": [ - 4993 + 4999 ], "no_scope": [ 5 @@ -67191,7 +67726,7 @@ export default { 5 ], "time": [ - 4493 + 4499 ], "with": [ 80 @@ -67202,10 +67737,10 @@ export default { }, "player_kills_sum_fields": { "attacked_steam_id": [ - 252 + 258 ], "attacker_steam_id": [ - 252 + 258 ], "round": [ 40 @@ -67216,13 +67751,13 @@ export default { }, "player_kills_sum_order_by": { "attacked_steam_id": [ - 2946 + 2952 ], "attacker_steam_id": [ - 2946 + 2952 ], "round": [ - 2946 + 2952 ], "__typename": [ 80 @@ -67231,13 +67766,13 @@ export default { "player_kills_update_column": {}, "player_kills_updates": { "_inc": [ - 3355 + 3361 ], "_set": [ - 3368 + 3374 ], "where": [ - 3312 + 3318 ], "__typename": [ 80 @@ -67259,13 +67794,13 @@ export default { }, "player_kills_var_pop_order_by": { "attacked_steam_id": [ - 2946 + 2952 ], "attacker_steam_id": [ - 2946 + 2952 ], "round": [ - 2946 + 2952 ], "__typename": [ 80 @@ -67287,13 +67822,13 @@ export default { }, "player_kills_var_samp_order_by": { "attacked_steam_id": [ - 2946 + 2952 ], "attacker_steam_id": [ - 2946 + 2952 ], "round": [ - 2946 + 2952 ], "__typename": [ 80 @@ -67315,13 +67850,13 @@ export default { }, "player_kills_variance_order_by": { "attacked_steam_id": [ - 2946 + 2952 ], "attacker_steam_id": [ - 2946 + 2952 ], "round": [ - 2946 + 2952 ], "__typename": [ 80 @@ -67338,7 +67873,7 @@ export default { 40 ], "value": [ - 1664 + 1670 ], "__typename": [ 80 @@ -67346,10 +67881,10 @@ export default { }, "player_leaderboard_rank_aggregate": { "aggregate": [ - 3389 + 3395 ], "nodes": [ - 3387 + 3393 ], "__typename": [ 80 @@ -67357,13 +67892,13 @@ export default { }, "player_leaderboard_rank_aggregate_fields": { "avg": [ - 3390 + 3396 ], "count": [ 40, { "columns": [ - 3398, + 3404, "[player_leaderboard_rank_select_column!]" ], "distinct": [ @@ -67372,31 +67907,31 @@ export default { } ], "max": [ - 3394 + 3400 ], "min": [ - 3395 + 3401 ], "stddev": [ - 3400 + 3406 ], "stddev_pop": [ - 3401 + 3407 ], "stddev_samp": [ - 3402 + 3408 ], "sum": [ - 3405 + 3411 ], "var_pop": [ - 3407 + 3413 ], "var_samp": [ - 3408 + 3414 ], "variance": [ - 3409 + 3415 ], "__typename": [ 80 @@ -67418,13 +67953,13 @@ export default { }, "player_leaderboard_rank_bool_exp": { "_and": [ - 3391 + 3397 ], "_not": [ - 3391 + 3397 ], "_or": [ - 3391 + 3397 ], "player_steam_id": [ 82 @@ -67436,7 +67971,7 @@ export default { 41 ], "value": [ - 1665 + 1671 ], "__typename": [ 80 @@ -67450,7 +67985,7 @@ export default { 40 ], "value": [ - 1664 + 1670 ], "__typename": [ 80 @@ -67467,7 +68002,7 @@ export default { 40 ], "value": [ - 1664 + 1670 ], "__typename": [ 80 @@ -67484,7 +68019,7 @@ export default { 40 ], "value": [ - 1664 + 1670 ], "__typename": [ 80 @@ -67501,7 +68036,7 @@ export default { 40 ], "value": [ - 1664 + 1670 ], "__typename": [ 80 @@ -67512,7 +68047,7 @@ export default { 40 ], "returning": [ - 3387 + 3393 ], "__typename": [ 80 @@ -67520,16 +68055,16 @@ export default { }, "player_leaderboard_rank_order_by": { "player_steam_id": [ - 2946 + 2952 ], "rank": [ - 2946 + 2952 ], "total": [ - 2946 + 2952 ], "value": [ - 2946 + 2952 ], "__typename": [ 80 @@ -67547,7 +68082,7 @@ export default { 40 ], "value": [ - 1664 + 1670 ], "__typename": [ 80 @@ -67597,10 +68132,10 @@ export default { }, "player_leaderboard_rank_stream_cursor_input": { "initial_value": [ - 3404 + 3410 ], "ordering": [ - 308 + 314 ], "__typename": [ 80 @@ -67617,7 +68152,7 @@ export default { 40 ], "value": [ - 1664 + 1670 ], "__typename": [ 80 @@ -67631,7 +68166,7 @@ export default { 40 ], "value": [ - 1664 + 1670 ], "__typename": [ 80 @@ -67639,13 +68174,13 @@ export default { }, "player_leaderboard_rank_updates": { "_inc": [ - 3392 + 3398 ], "_set": [ - 3399 + 3405 ], "where": [ - 3391 + 3397 ], "__typename": [ 80 @@ -67713,7 +68248,7 @@ export default { 40 ], "crosshair_angle_sum_deg": [ - 2944 + 2950 ], "damage": [ 40 @@ -67755,7 +68290,7 @@ export default { 40 ], "flash_duration_sum": [ - 2944 + 2950 ], "flashes_thrown": [ 40 @@ -67809,16 +68344,16 @@ export default { 40 ], "match": [ - 2761 + 2767 ], "match_id": [ - 4993 + 4999 ], "match_map": [ - 2599 + 2605 ], "match_map_id": [ - 4993 + 4999 ], "molotov_damage": [ 40 @@ -67833,7 +68368,7 @@ export default { 40 ], "player": [ - 3904 + 3910 ], "rounds_ct": [ 40 @@ -67866,7 +68401,7 @@ export default { 40 ], "steam_id": [ - 252 + 258 ], "team_damage": [ 40 @@ -67881,7 +68416,7 @@ export default { 40 ], "time_to_damage_sum_s": [ - 2944 + 2950 ], "total_engagement_frames": [ 40 @@ -67911,7 +68446,7 @@ export default { 40 ], "updated_at": [ - 4493 + 4499 ], "util_on_death_count": [ 40 @@ -67931,10 +68466,10 @@ export default { }, "player_match_map_stats_aggregate": { "aggregate": [ - 3414 + 3420 ], "nodes": [ - 3410 + 3416 ], "__typename": [ 80 @@ -67942,7 +68477,7 @@ export default { }, "player_match_map_stats_aggregate_bool_exp": { "count": [ - 3413 + 3419 ], "__typename": [ 80 @@ -67950,13 +68485,13 @@ export default { }, "player_match_map_stats_aggregate_bool_exp_count": { "arguments": [ - 3431 + 3437 ], "distinct": [ 5 ], "filter": [ - 3419 + 3425 ], "predicate": [ 41 @@ -67967,13 +68502,13 @@ export default { }, "player_match_map_stats_aggregate_fields": { "avg": [ - 3417 + 3423 ], "count": [ 40, { "columns": [ - 3431, + 3437, "[player_match_map_stats_select_column!]" ], "distinct": [ @@ -67982,31 +68517,31 @@ export default { } ], "max": [ - 3423 + 3429 ], "min": [ - 3425 + 3431 ], "stddev": [ - 3433 + 3439 ], "stddev_pop": [ - 3435 + 3441 ], "stddev_samp": [ - 3437 + 3443 ], "sum": [ - 3441 + 3447 ], "var_pop": [ - 3445 + 3451 ], "var_samp": [ - 3447 + 3453 ], "variance": [ - 3449 + 3455 ], "__typename": [ 80 @@ -68014,37 +68549,37 @@ export default { }, "player_match_map_stats_aggregate_order_by": { "avg": [ - 3418 + 3424 ], "count": [ - 2946 + 2952 ], "max": [ - 3424 + 3430 ], "min": [ - 3426 + 3432 ], "stddev": [ - 3434 + 3440 ], "stddev_pop": [ - 3436 + 3442 ], "stddev_samp": [ - 3438 + 3444 ], "sum": [ - 3442 + 3448 ], "var_pop": [ - 3446 + 3452 ], "var_samp": [ - 3448 + 3454 ], "variance": [ - 3450 + 3456 ], "__typename": [ 80 @@ -68052,10 +68587,10 @@ export default { }, "player_match_map_stats_arr_rel_insert_input": { "data": [ - 3422 + 3428 ], "on_conflict": [ - 3428 + 3434 ], "__typename": [ 80 @@ -68281,217 +68816,217 @@ export default { }, "player_match_map_stats_avg_order_by": { "assists": [ - 2946 + 2952 ], "assists_ct": [ - 2946 + 2952 ], "assists_t": [ - 2946 + 2952 ], "counter_strafe_eligible_shots": [ - 2946 + 2952 ], "counter_strafed_shots": [ - 2946 + 2952 ], "crosshair_angle_count": [ - 2946 + 2952 ], "crosshair_angle_sum_deg": [ - 2946 + 2952 ], "damage": [ - 2946 + 2952 ], "damage_ct": [ - 2946 + 2952 ], "damage_t": [ - 2946 + 2952 ], "deaths": [ - 2946 + 2952 ], "deaths_ct": [ - 2946 + 2952 ], "deaths_t": [ - 2946 + 2952 ], "decoy_throws": [ - 2946 + 2952 ], "enemies_flashed": [ - 2946 + 2952 ], "first_bullet_hits": [ - 2946 + 2952 ], "first_bullet_shots": [ - 2946 + 2952 ], "five_kill_rounds": [ - 2946 + 2952 ], "flash_assists": [ - 2946 + 2952 ], "flash_duration_count": [ - 2946 + 2952 ], "flash_duration_sum": [ - 2946 + 2952 ], "flashes_thrown": [ - 2946 + 2952 ], "four_kill_rounds": [ - 2946 + 2952 ], "he_damage": [ - 2946 + 2952 ], "he_team_damage": [ - 2946 + 2952 ], "he_throws": [ - 2946 + 2952 ], "headshot_hits": [ - 2946 + 2952 ], "hits": [ - 2946 + 2952 ], "hits_at_spotted": [ - 2946 + 2952 ], "hs_kills": [ - 2946 + 2952 ], "hs_kills_ct": [ - 2946 + 2952 ], "hs_kills_t": [ - 2946 + 2952 ], "kast_rounds": [ - 2946 + 2952 ], "kast_total_rounds": [ - 2946 + 2952 ], "kills": [ - 2946 + 2952 ], "kills_ct": [ - 2946 + 2952 ], "kills_t": [ - 2946 + 2952 ], "knife_kills": [ - 2946 + 2952 ], "molotov_damage": [ - 2946 + 2952 ], "molotov_throws": [ - 2946 + 2952 ], "non_awp_hits": [ - 2946 + 2952 ], "on_target_frames": [ - 2946 + 2952 ], "rounds_ct": [ - 2946 + 2952 ], "rounds_played": [ - 2946 + 2952 ], "rounds_t": [ - 2946 + 2952 ], "shots_at_spotted": [ - 2946 + 2952 ], "shots_fired": [ - 2946 + 2952 ], "smoke_throws": [ - 2946 + 2952 ], "spotted_count": [ - 2946 + 2952 ], "spotted_with_damage_count": [ - 2946 + 2952 ], "spray_hits": [ - 2946 + 2952 ], "spray_shots": [ - 2946 + 2952 ], "steam_id": [ - 2946 + 2952 ], "team_damage": [ - 2946 + 2952 ], "team_flashed": [ - 2946 + 2952 ], "three_kill_rounds": [ - 2946 + 2952 ], "time_to_damage_count": [ - 2946 + 2952 ], "time_to_damage_sum_s": [ - 2946 + 2952 ], "total_engagement_frames": [ - 2946 + 2952 ], "trade_kill_attempts": [ - 2946 + 2952 ], "trade_kill_opportunities": [ - 2946 + 2952 ], "trade_kill_successes": [ - 2946 + 2952 ], "traded_death_attempts": [ - 2946 + 2952 ], "traded_death_opportunities": [ - 2946 + 2952 ], "traded_death_successes": [ - 2946 + 2952 ], "two_kill_rounds": [ - 2946 + 2952 ], "unused_utility_value": [ - 2946 + 2952 ], "util_on_death_count": [ - 2946 + 2952 ], "util_on_death_sum": [ - 2946 + 2952 ], "wasted_magazine_shots": [ - 2946 + 2952 ], "zeus_kills": [ - 2946 + 2952 ], "__typename": [ 80 @@ -68499,13 +69034,13 @@ export default { }, "player_match_map_stats_bool_exp": { "_and": [ - 3419 + 3425 ], "_not": [ - 3419 + 3425 ], "_or": [ - 3419 + 3425 ], "assists": [ 41 @@ -68526,7 +69061,7 @@ export default { 41 ], "crosshair_angle_sum_deg": [ - 2945 + 2951 ], "damage": [ 41 @@ -68568,7 +69103,7 @@ export default { 41 ], "flash_duration_sum": [ - 2945 + 2951 ], "flashes_thrown": [ 41 @@ -68622,16 +69157,16 @@ export default { 41 ], "match": [ - 2770 + 2776 ], "match_id": [ - 4995 + 5001 ], "match_map": [ - 2608 + 2614 ], "match_map_id": [ - 4995 + 5001 ], "molotov_damage": [ 41 @@ -68646,7 +69181,7 @@ export default { 41 ], "player": [ - 3908 + 3914 ], "rounds_ct": [ 41 @@ -68679,7 +69214,7 @@ export default { 41 ], "steam_id": [ - 254 + 260 ], "team_damage": [ 41 @@ -68694,7 +69229,7 @@ export default { 41 ], "time_to_damage_sum_s": [ - 2945 + 2951 ], "total_engagement_frames": [ 41 @@ -68724,7 +69259,7 @@ export default { 41 ], "updated_at": [ - 4494 + 4500 ], "util_on_death_count": [ 41 @@ -68763,7 +69298,7 @@ export default { 40 ], "crosshair_angle_sum_deg": [ - 2944 + 2950 ], "damage": [ 40 @@ -68805,7 +69340,7 @@ export default { 40 ], "flash_duration_sum": [ - 2944 + 2950 ], "flashes_thrown": [ 40 @@ -68901,7 +69436,7 @@ export default { 40 ], "steam_id": [ - 252 + 258 ], "team_damage": [ 40 @@ -68916,7 +69451,7 @@ export default { 40 ], "time_to_damage_sum_s": [ - 2944 + 2950 ], "total_engagement_frames": [ 40 @@ -68981,7 +69516,7 @@ export default { 40 ], "crosshair_angle_sum_deg": [ - 2944 + 2950 ], "damage": [ 40 @@ -69023,7 +69558,7 @@ export default { 40 ], "flash_duration_sum": [ - 2944 + 2950 ], "flashes_thrown": [ 40 @@ -69077,16 +69612,16 @@ export default { 40 ], "match": [ - 2779 + 2785 ], "match_id": [ - 4993 + 4999 ], "match_map": [ - 2617 + 2623 ], "match_map_id": [ - 4993 + 4999 ], "molotov_damage": [ 40 @@ -69101,7 +69636,7 @@ export default { 40 ], "player": [ - 3915 + 3921 ], "rounds_ct": [ 40 @@ -69134,7 +69669,7 @@ export default { 40 ], "steam_id": [ - 252 + 258 ], "team_damage": [ 40 @@ -69149,7 +69684,7 @@ export default { 40 ], "time_to_damage_sum_s": [ - 2944 + 2950 ], "total_engagement_frames": [ 40 @@ -69179,7 +69714,7 @@ export default { 40 ], "updated_at": [ - 4493 + 4499 ], "util_on_death_count": [ 40 @@ -69217,7 +69752,7 @@ export default { 40 ], "crosshair_angle_sum_deg": [ - 2944 + 2950 ], "damage": [ 40 @@ -69259,7 +69794,7 @@ export default { 40 ], "flash_duration_sum": [ - 2944 + 2950 ], "flashes_thrown": [ 40 @@ -69313,10 +69848,10 @@ export default { 40 ], "match_id": [ - 4993 + 4999 ], "match_map_id": [ - 4993 + 4999 ], "molotov_damage": [ 40 @@ -69361,7 +69896,7 @@ export default { 40 ], "steam_id": [ - 252 + 258 ], "team_damage": [ 40 @@ -69376,7 +69911,7 @@ export default { 40 ], "time_to_damage_sum_s": [ - 2944 + 2950 ], "total_engagement_frames": [ 40 @@ -69406,7 +69941,7 @@ export default { 40 ], "updated_at": [ - 4493 + 4499 ], "util_on_death_count": [ 40 @@ -69426,226 +69961,226 @@ export default { }, "player_match_map_stats_max_order_by": { "assists": [ - 2946 + 2952 ], "assists_ct": [ - 2946 + 2952 ], "assists_t": [ - 2946 + 2952 ], "counter_strafe_eligible_shots": [ - 2946 + 2952 ], "counter_strafed_shots": [ - 2946 + 2952 ], "crosshair_angle_count": [ - 2946 + 2952 ], "crosshair_angle_sum_deg": [ - 2946 + 2952 ], "damage": [ - 2946 + 2952 ], "damage_ct": [ - 2946 + 2952 ], "damage_t": [ - 2946 + 2952 ], "deaths": [ - 2946 + 2952 ], "deaths_ct": [ - 2946 + 2952 ], "deaths_t": [ - 2946 + 2952 ], "decoy_throws": [ - 2946 + 2952 ], "enemies_flashed": [ - 2946 + 2952 ], "first_bullet_hits": [ - 2946 + 2952 ], "first_bullet_shots": [ - 2946 + 2952 ], "five_kill_rounds": [ - 2946 + 2952 ], "flash_assists": [ - 2946 + 2952 ], "flash_duration_count": [ - 2946 + 2952 ], "flash_duration_sum": [ - 2946 + 2952 ], "flashes_thrown": [ - 2946 + 2952 ], "four_kill_rounds": [ - 2946 + 2952 ], "he_damage": [ - 2946 + 2952 ], "he_team_damage": [ - 2946 + 2952 ], "he_throws": [ - 2946 + 2952 ], "headshot_hits": [ - 2946 + 2952 ], "hits": [ - 2946 + 2952 ], "hits_at_spotted": [ - 2946 + 2952 ], "hs_kills": [ - 2946 + 2952 ], "hs_kills_ct": [ - 2946 + 2952 ], "hs_kills_t": [ - 2946 + 2952 ], "kast_rounds": [ - 2946 + 2952 ], "kast_total_rounds": [ - 2946 + 2952 ], "kills": [ - 2946 + 2952 ], "kills_ct": [ - 2946 + 2952 ], "kills_t": [ - 2946 + 2952 ], "knife_kills": [ - 2946 + 2952 ], "match_id": [ - 2946 + 2952 ], "match_map_id": [ - 2946 + 2952 ], "molotov_damage": [ - 2946 + 2952 ], "molotov_throws": [ - 2946 + 2952 ], "non_awp_hits": [ - 2946 + 2952 ], "on_target_frames": [ - 2946 + 2952 ], "rounds_ct": [ - 2946 + 2952 ], "rounds_played": [ - 2946 + 2952 ], "rounds_t": [ - 2946 + 2952 ], "shots_at_spotted": [ - 2946 + 2952 ], "shots_fired": [ - 2946 + 2952 ], "smoke_throws": [ - 2946 + 2952 ], "spotted_count": [ - 2946 + 2952 ], "spotted_with_damage_count": [ - 2946 + 2952 ], "spray_hits": [ - 2946 + 2952 ], "spray_shots": [ - 2946 + 2952 ], "steam_id": [ - 2946 + 2952 ], "team_damage": [ - 2946 + 2952 ], "team_flashed": [ - 2946 + 2952 ], "three_kill_rounds": [ - 2946 + 2952 ], "time_to_damage_count": [ - 2946 + 2952 ], "time_to_damage_sum_s": [ - 2946 + 2952 ], "total_engagement_frames": [ - 2946 + 2952 ], "trade_kill_attempts": [ - 2946 + 2952 ], "trade_kill_opportunities": [ - 2946 + 2952 ], "trade_kill_successes": [ - 2946 + 2952 ], "traded_death_attempts": [ - 2946 + 2952 ], "traded_death_opportunities": [ - 2946 + 2952 ], "traded_death_successes": [ - 2946 + 2952 ], "two_kill_rounds": [ - 2946 + 2952 ], "unused_utility_value": [ - 2946 + 2952 ], "updated_at": [ - 2946 + 2952 ], "util_on_death_count": [ - 2946 + 2952 ], "util_on_death_sum": [ - 2946 + 2952 ], "wasted_magazine_shots": [ - 2946 + 2952 ], "zeus_kills": [ - 2946 + 2952 ], "__typename": [ 80 @@ -69671,7 +70206,7 @@ export default { 40 ], "crosshair_angle_sum_deg": [ - 2944 + 2950 ], "damage": [ 40 @@ -69713,7 +70248,7 @@ export default { 40 ], "flash_duration_sum": [ - 2944 + 2950 ], "flashes_thrown": [ 40 @@ -69767,10 +70302,10 @@ export default { 40 ], "match_id": [ - 4993 + 4999 ], "match_map_id": [ - 4993 + 4999 ], "molotov_damage": [ 40 @@ -69815,7 +70350,7 @@ export default { 40 ], "steam_id": [ - 252 + 258 ], "team_damage": [ 40 @@ -69830,7 +70365,7 @@ export default { 40 ], "time_to_damage_sum_s": [ - 2944 + 2950 ], "total_engagement_frames": [ 40 @@ -69860,7 +70395,7 @@ export default { 40 ], "updated_at": [ - 4493 + 4499 ], "util_on_death_count": [ 40 @@ -69880,226 +70415,226 @@ export default { }, "player_match_map_stats_min_order_by": { "assists": [ - 2946 + 2952 ], "assists_ct": [ - 2946 + 2952 ], "assists_t": [ - 2946 + 2952 ], "counter_strafe_eligible_shots": [ - 2946 + 2952 ], "counter_strafed_shots": [ - 2946 + 2952 ], "crosshair_angle_count": [ - 2946 + 2952 ], "crosshair_angle_sum_deg": [ - 2946 + 2952 ], "damage": [ - 2946 + 2952 ], "damage_ct": [ - 2946 + 2952 ], "damage_t": [ - 2946 + 2952 ], "deaths": [ - 2946 + 2952 ], "deaths_ct": [ - 2946 + 2952 ], "deaths_t": [ - 2946 + 2952 ], "decoy_throws": [ - 2946 + 2952 ], "enemies_flashed": [ - 2946 + 2952 ], "first_bullet_hits": [ - 2946 + 2952 ], "first_bullet_shots": [ - 2946 + 2952 ], "five_kill_rounds": [ - 2946 + 2952 ], "flash_assists": [ - 2946 + 2952 ], "flash_duration_count": [ - 2946 + 2952 ], "flash_duration_sum": [ - 2946 + 2952 ], "flashes_thrown": [ - 2946 + 2952 ], "four_kill_rounds": [ - 2946 + 2952 ], "he_damage": [ - 2946 + 2952 ], "he_team_damage": [ - 2946 + 2952 ], "he_throws": [ - 2946 + 2952 ], "headshot_hits": [ - 2946 + 2952 ], "hits": [ - 2946 + 2952 ], "hits_at_spotted": [ - 2946 + 2952 ], "hs_kills": [ - 2946 + 2952 ], "hs_kills_ct": [ - 2946 + 2952 ], "hs_kills_t": [ - 2946 + 2952 ], "kast_rounds": [ - 2946 + 2952 ], "kast_total_rounds": [ - 2946 + 2952 ], "kills": [ - 2946 + 2952 ], "kills_ct": [ - 2946 + 2952 ], "kills_t": [ - 2946 + 2952 ], "knife_kills": [ - 2946 + 2952 ], "match_id": [ - 2946 + 2952 ], "match_map_id": [ - 2946 + 2952 ], "molotov_damage": [ - 2946 + 2952 ], "molotov_throws": [ - 2946 + 2952 ], "non_awp_hits": [ - 2946 + 2952 ], "on_target_frames": [ - 2946 + 2952 ], "rounds_ct": [ - 2946 + 2952 ], "rounds_played": [ - 2946 + 2952 ], "rounds_t": [ - 2946 + 2952 ], "shots_at_spotted": [ - 2946 + 2952 ], "shots_fired": [ - 2946 + 2952 ], "smoke_throws": [ - 2946 + 2952 ], "spotted_count": [ - 2946 + 2952 ], "spotted_with_damage_count": [ - 2946 + 2952 ], "spray_hits": [ - 2946 + 2952 ], "spray_shots": [ - 2946 + 2952 ], "steam_id": [ - 2946 + 2952 ], "team_damage": [ - 2946 + 2952 ], "team_flashed": [ - 2946 + 2952 ], "three_kill_rounds": [ - 2946 + 2952 ], "time_to_damage_count": [ - 2946 + 2952 ], "time_to_damage_sum_s": [ - 2946 + 2952 ], "total_engagement_frames": [ - 2946 + 2952 ], "trade_kill_attempts": [ - 2946 + 2952 ], "trade_kill_opportunities": [ - 2946 + 2952 ], "trade_kill_successes": [ - 2946 + 2952 ], "traded_death_attempts": [ - 2946 + 2952 ], "traded_death_opportunities": [ - 2946 + 2952 ], "traded_death_successes": [ - 2946 + 2952 ], "two_kill_rounds": [ - 2946 + 2952 ], "unused_utility_value": [ - 2946 + 2952 ], "updated_at": [ - 2946 + 2952 ], "util_on_death_count": [ - 2946 + 2952 ], "util_on_death_sum": [ - 2946 + 2952 ], "wasted_magazine_shots": [ - 2946 + 2952 ], "zeus_kills": [ - 2946 + 2952 ], "__typename": [ 80 @@ -70110,7 +70645,7 @@ export default { 40 ], "returning": [ - 3410 + 3416 ], "__typename": [ 80 @@ -70118,13 +70653,13 @@ export default { }, "player_match_map_stats_on_conflict": { "constraint": [ - 3420 + 3426 ], "update_columns": [ - 3443 + 3449 ], "where": [ - 3419 + 3425 ], "__typename": [ 80 @@ -70132,235 +70667,235 @@ export default { }, "player_match_map_stats_order_by": { "assists": [ - 2946 + 2952 ], "assists_ct": [ - 2946 + 2952 ], "assists_t": [ - 2946 + 2952 ], "counter_strafe_eligible_shots": [ - 2946 + 2952 ], "counter_strafed_shots": [ - 2946 + 2952 ], "crosshair_angle_count": [ - 2946 + 2952 ], "crosshair_angle_sum_deg": [ - 2946 + 2952 ], "damage": [ - 2946 + 2952 ], "damage_ct": [ - 2946 + 2952 ], "damage_t": [ - 2946 + 2952 ], "deaths": [ - 2946 + 2952 ], "deaths_ct": [ - 2946 + 2952 ], "deaths_t": [ - 2946 + 2952 ], "decoy_throws": [ - 2946 + 2952 ], "enemies_flashed": [ - 2946 + 2952 ], "first_bullet_hits": [ - 2946 + 2952 ], "first_bullet_shots": [ - 2946 + 2952 ], "five_kill_rounds": [ - 2946 + 2952 ], "flash_assists": [ - 2946 + 2952 ], "flash_duration_count": [ - 2946 + 2952 ], "flash_duration_sum": [ - 2946 + 2952 ], "flashes_thrown": [ - 2946 + 2952 ], "four_kill_rounds": [ - 2946 + 2952 ], "he_damage": [ - 2946 + 2952 ], "he_team_damage": [ - 2946 + 2952 ], "he_throws": [ - 2946 + 2952 ], "headshot_hits": [ - 2946 + 2952 ], "hits": [ - 2946 + 2952 ], "hits_at_spotted": [ - 2946 + 2952 ], "hs_kills": [ - 2946 + 2952 ], "hs_kills_ct": [ - 2946 + 2952 ], "hs_kills_t": [ - 2946 + 2952 ], "kast_rounds": [ - 2946 + 2952 ], "kast_total_rounds": [ - 2946 + 2952 ], "kills": [ - 2946 + 2952 ], "kills_ct": [ - 2946 + 2952 ], "kills_t": [ - 2946 + 2952 ], "knife_kills": [ - 2946 + 2952 ], "match": [ - 2781 + 2787 ], "match_id": [ - 2946 + 2952 ], "match_map": [ - 2619 + 2625 ], "match_map_id": [ - 2946 + 2952 ], "molotov_damage": [ - 2946 + 2952 ], "molotov_throws": [ - 2946 + 2952 ], "non_awp_hits": [ - 2946 + 2952 ], "on_target_frames": [ - 2946 + 2952 ], "player": [ - 3917 + 3923 ], "rounds_ct": [ - 2946 + 2952 ], "rounds_played": [ - 2946 + 2952 ], "rounds_t": [ - 2946 + 2952 ], "shots_at_spotted": [ - 2946 + 2952 ], "shots_fired": [ - 2946 + 2952 ], "smoke_throws": [ - 2946 + 2952 ], "spotted_count": [ - 2946 + 2952 ], "spotted_with_damage_count": [ - 2946 + 2952 ], "spray_hits": [ - 2946 + 2952 ], "spray_shots": [ - 2946 + 2952 ], "steam_id": [ - 2946 + 2952 ], "team_damage": [ - 2946 + 2952 ], "team_flashed": [ - 2946 + 2952 ], "three_kill_rounds": [ - 2946 + 2952 ], "time_to_damage_count": [ - 2946 + 2952 ], "time_to_damage_sum_s": [ - 2946 + 2952 ], "total_engagement_frames": [ - 2946 + 2952 ], "trade_kill_attempts": [ - 2946 + 2952 ], "trade_kill_opportunities": [ - 2946 + 2952 ], "trade_kill_successes": [ - 2946 + 2952 ], "traded_death_attempts": [ - 2946 + 2952 ], "traded_death_opportunities": [ - 2946 + 2952 ], "traded_death_successes": [ - 2946 + 2952 ], "two_kill_rounds": [ - 2946 + 2952 ], "unused_utility_value": [ - 2946 + 2952 ], "updated_at": [ - 2946 + 2952 ], "util_on_death_count": [ - 2946 + 2952 ], "util_on_death_sum": [ - 2946 + 2952 ], "wasted_magazine_shots": [ - 2946 + 2952 ], "zeus_kills": [ - 2946 + 2952 ], "__typename": [ 80 @@ -70368,10 +70903,10 @@ export default { }, "player_match_map_stats_pk_columns_input": { "match_map_id": [ - 4993 + 4999 ], "steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -70398,7 +70933,7 @@ export default { 40 ], "crosshair_angle_sum_deg": [ - 2944 + 2950 ], "damage": [ 40 @@ -70440,7 +70975,7 @@ export default { 40 ], "flash_duration_sum": [ - 2944 + 2950 ], "flashes_thrown": [ 40 @@ -70494,10 +71029,10 @@ export default { 40 ], "match_id": [ - 4993 + 4999 ], "match_map_id": [ - 4993 + 4999 ], "molotov_damage": [ 40 @@ -70542,7 +71077,7 @@ export default { 40 ], "steam_id": [ - 252 + 258 ], "team_damage": [ 40 @@ -70557,7 +71092,7 @@ export default { 40 ], "time_to_damage_sum_s": [ - 2944 + 2950 ], "total_engagement_frames": [ 40 @@ -70587,7 +71122,7 @@ export default { 40 ], "updated_at": [ - 4493 + 4499 ], "util_on_death_count": [ 40 @@ -70825,217 +71360,217 @@ export default { }, "player_match_map_stats_stddev_order_by": { "assists": [ - 2946 + 2952 ], "assists_ct": [ - 2946 + 2952 ], "assists_t": [ - 2946 + 2952 ], "counter_strafe_eligible_shots": [ - 2946 + 2952 ], "counter_strafed_shots": [ - 2946 + 2952 ], "crosshair_angle_count": [ - 2946 + 2952 ], "crosshair_angle_sum_deg": [ - 2946 + 2952 ], "damage": [ - 2946 + 2952 ], "damage_ct": [ - 2946 + 2952 ], "damage_t": [ - 2946 + 2952 ], "deaths": [ - 2946 + 2952 ], "deaths_ct": [ - 2946 + 2952 ], "deaths_t": [ - 2946 + 2952 ], "decoy_throws": [ - 2946 + 2952 ], "enemies_flashed": [ - 2946 + 2952 ], "first_bullet_hits": [ - 2946 + 2952 ], "first_bullet_shots": [ - 2946 + 2952 ], "five_kill_rounds": [ - 2946 + 2952 ], "flash_assists": [ - 2946 + 2952 ], "flash_duration_count": [ - 2946 + 2952 ], "flash_duration_sum": [ - 2946 + 2952 ], "flashes_thrown": [ - 2946 + 2952 ], "four_kill_rounds": [ - 2946 + 2952 ], "he_damage": [ - 2946 + 2952 ], "he_team_damage": [ - 2946 + 2952 ], "he_throws": [ - 2946 + 2952 ], "headshot_hits": [ - 2946 + 2952 ], "hits": [ - 2946 + 2952 ], "hits_at_spotted": [ - 2946 + 2952 ], "hs_kills": [ - 2946 + 2952 ], "hs_kills_ct": [ - 2946 + 2952 ], "hs_kills_t": [ - 2946 + 2952 ], "kast_rounds": [ - 2946 + 2952 ], "kast_total_rounds": [ - 2946 + 2952 ], "kills": [ - 2946 + 2952 ], "kills_ct": [ - 2946 + 2952 ], "kills_t": [ - 2946 + 2952 ], "knife_kills": [ - 2946 + 2952 ], "molotov_damage": [ - 2946 + 2952 ], "molotov_throws": [ - 2946 + 2952 ], "non_awp_hits": [ - 2946 + 2952 ], "on_target_frames": [ - 2946 + 2952 ], "rounds_ct": [ - 2946 + 2952 ], "rounds_played": [ - 2946 + 2952 ], "rounds_t": [ - 2946 + 2952 ], "shots_at_spotted": [ - 2946 + 2952 ], "shots_fired": [ - 2946 + 2952 ], "smoke_throws": [ - 2946 + 2952 ], "spotted_count": [ - 2946 + 2952 ], "spotted_with_damage_count": [ - 2946 + 2952 ], "spray_hits": [ - 2946 + 2952 ], "spray_shots": [ - 2946 + 2952 ], "steam_id": [ - 2946 + 2952 ], "team_damage": [ - 2946 + 2952 ], "team_flashed": [ - 2946 + 2952 ], "three_kill_rounds": [ - 2946 + 2952 ], "time_to_damage_count": [ - 2946 + 2952 ], "time_to_damage_sum_s": [ - 2946 + 2952 ], "total_engagement_frames": [ - 2946 + 2952 ], "trade_kill_attempts": [ - 2946 + 2952 ], "trade_kill_opportunities": [ - 2946 + 2952 ], "trade_kill_successes": [ - 2946 + 2952 ], "traded_death_attempts": [ - 2946 + 2952 ], "traded_death_opportunities": [ - 2946 + 2952 ], "traded_death_successes": [ - 2946 + 2952 ], "two_kill_rounds": [ - 2946 + 2952 ], "unused_utility_value": [ - 2946 + 2952 ], "util_on_death_count": [ - 2946 + 2952 ], "util_on_death_sum": [ - 2946 + 2952 ], "wasted_magazine_shots": [ - 2946 + 2952 ], "zeus_kills": [ - 2946 + 2952 ], "__typename": [ 80 @@ -71261,217 +71796,217 @@ export default { }, "player_match_map_stats_stddev_pop_order_by": { "assists": [ - 2946 + 2952 ], "assists_ct": [ - 2946 + 2952 ], "assists_t": [ - 2946 + 2952 ], "counter_strafe_eligible_shots": [ - 2946 + 2952 ], "counter_strafed_shots": [ - 2946 + 2952 ], "crosshair_angle_count": [ - 2946 + 2952 ], "crosshair_angle_sum_deg": [ - 2946 + 2952 ], "damage": [ - 2946 + 2952 ], "damage_ct": [ - 2946 + 2952 ], "damage_t": [ - 2946 + 2952 ], "deaths": [ - 2946 + 2952 ], "deaths_ct": [ - 2946 + 2952 ], "deaths_t": [ - 2946 + 2952 ], "decoy_throws": [ - 2946 + 2952 ], "enemies_flashed": [ - 2946 + 2952 ], "first_bullet_hits": [ - 2946 + 2952 ], "first_bullet_shots": [ - 2946 + 2952 ], "five_kill_rounds": [ - 2946 + 2952 ], "flash_assists": [ - 2946 + 2952 ], "flash_duration_count": [ - 2946 + 2952 ], "flash_duration_sum": [ - 2946 + 2952 ], "flashes_thrown": [ - 2946 + 2952 ], "four_kill_rounds": [ - 2946 + 2952 ], "he_damage": [ - 2946 + 2952 ], "he_team_damage": [ - 2946 + 2952 ], "he_throws": [ - 2946 + 2952 ], "headshot_hits": [ - 2946 + 2952 ], "hits": [ - 2946 + 2952 ], "hits_at_spotted": [ - 2946 + 2952 ], "hs_kills": [ - 2946 + 2952 ], "hs_kills_ct": [ - 2946 + 2952 ], "hs_kills_t": [ - 2946 + 2952 ], "kast_rounds": [ - 2946 + 2952 ], "kast_total_rounds": [ - 2946 + 2952 ], "kills": [ - 2946 + 2952 ], "kills_ct": [ - 2946 + 2952 ], "kills_t": [ - 2946 + 2952 ], "knife_kills": [ - 2946 + 2952 ], "molotov_damage": [ - 2946 + 2952 ], "molotov_throws": [ - 2946 + 2952 ], "non_awp_hits": [ - 2946 + 2952 ], "on_target_frames": [ - 2946 + 2952 ], "rounds_ct": [ - 2946 + 2952 ], "rounds_played": [ - 2946 + 2952 ], "rounds_t": [ - 2946 + 2952 ], "shots_at_spotted": [ - 2946 + 2952 ], "shots_fired": [ - 2946 + 2952 ], "smoke_throws": [ - 2946 + 2952 ], "spotted_count": [ - 2946 + 2952 ], "spotted_with_damage_count": [ - 2946 + 2952 ], "spray_hits": [ - 2946 + 2952 ], "spray_shots": [ - 2946 + 2952 ], "steam_id": [ - 2946 + 2952 ], "team_damage": [ - 2946 + 2952 ], "team_flashed": [ - 2946 + 2952 ], "three_kill_rounds": [ - 2946 + 2952 ], "time_to_damage_count": [ - 2946 + 2952 ], "time_to_damage_sum_s": [ - 2946 + 2952 ], "total_engagement_frames": [ - 2946 + 2952 ], "trade_kill_attempts": [ - 2946 + 2952 ], "trade_kill_opportunities": [ - 2946 + 2952 ], "trade_kill_successes": [ - 2946 + 2952 ], "traded_death_attempts": [ - 2946 + 2952 ], "traded_death_opportunities": [ - 2946 + 2952 ], "traded_death_successes": [ - 2946 + 2952 ], "two_kill_rounds": [ - 2946 + 2952 ], "unused_utility_value": [ - 2946 + 2952 ], "util_on_death_count": [ - 2946 + 2952 ], "util_on_death_sum": [ - 2946 + 2952 ], "wasted_magazine_shots": [ - 2946 + 2952 ], "zeus_kills": [ - 2946 + 2952 ], "__typename": [ 80 @@ -71697,217 +72232,217 @@ export default { }, "player_match_map_stats_stddev_samp_order_by": { "assists": [ - 2946 + 2952 ], "assists_ct": [ - 2946 + 2952 ], "assists_t": [ - 2946 + 2952 ], "counter_strafe_eligible_shots": [ - 2946 + 2952 ], "counter_strafed_shots": [ - 2946 + 2952 ], "crosshair_angle_count": [ - 2946 + 2952 ], "crosshair_angle_sum_deg": [ - 2946 + 2952 ], "damage": [ - 2946 + 2952 ], "damage_ct": [ - 2946 + 2952 ], "damage_t": [ - 2946 + 2952 ], "deaths": [ - 2946 + 2952 ], "deaths_ct": [ - 2946 + 2952 ], "deaths_t": [ - 2946 + 2952 ], "decoy_throws": [ - 2946 + 2952 ], "enemies_flashed": [ - 2946 + 2952 ], "first_bullet_hits": [ - 2946 + 2952 ], "first_bullet_shots": [ - 2946 + 2952 ], "five_kill_rounds": [ - 2946 + 2952 ], "flash_assists": [ - 2946 + 2952 ], "flash_duration_count": [ - 2946 + 2952 ], "flash_duration_sum": [ - 2946 + 2952 ], "flashes_thrown": [ - 2946 + 2952 ], "four_kill_rounds": [ - 2946 + 2952 ], "he_damage": [ - 2946 + 2952 ], "he_team_damage": [ - 2946 + 2952 ], "he_throws": [ - 2946 + 2952 ], "headshot_hits": [ - 2946 + 2952 ], "hits": [ - 2946 + 2952 ], "hits_at_spotted": [ - 2946 + 2952 ], "hs_kills": [ - 2946 + 2952 ], "hs_kills_ct": [ - 2946 + 2952 ], "hs_kills_t": [ - 2946 + 2952 ], "kast_rounds": [ - 2946 + 2952 ], "kast_total_rounds": [ - 2946 + 2952 ], "kills": [ - 2946 + 2952 ], "kills_ct": [ - 2946 + 2952 ], "kills_t": [ - 2946 + 2952 ], "knife_kills": [ - 2946 + 2952 ], "molotov_damage": [ - 2946 + 2952 ], "molotov_throws": [ - 2946 + 2952 ], "non_awp_hits": [ - 2946 + 2952 ], "on_target_frames": [ - 2946 + 2952 ], "rounds_ct": [ - 2946 + 2952 ], "rounds_played": [ - 2946 + 2952 ], "rounds_t": [ - 2946 + 2952 ], "shots_at_spotted": [ - 2946 + 2952 ], "shots_fired": [ - 2946 + 2952 ], "smoke_throws": [ - 2946 + 2952 ], "spotted_count": [ - 2946 + 2952 ], "spotted_with_damage_count": [ - 2946 + 2952 ], "spray_hits": [ - 2946 + 2952 ], "spray_shots": [ - 2946 + 2952 ], "steam_id": [ - 2946 + 2952 ], "team_damage": [ - 2946 + 2952 ], "team_flashed": [ - 2946 + 2952 ], "three_kill_rounds": [ - 2946 + 2952 ], "time_to_damage_count": [ - 2946 + 2952 ], "time_to_damage_sum_s": [ - 2946 + 2952 ], "total_engagement_frames": [ - 2946 + 2952 ], "trade_kill_attempts": [ - 2946 + 2952 ], "trade_kill_opportunities": [ - 2946 + 2952 ], "trade_kill_successes": [ - 2946 + 2952 ], "traded_death_attempts": [ - 2946 + 2952 ], "traded_death_opportunities": [ - 2946 + 2952 ], "traded_death_successes": [ - 2946 + 2952 ], "two_kill_rounds": [ - 2946 + 2952 ], "unused_utility_value": [ - 2946 + 2952 ], "util_on_death_count": [ - 2946 + 2952 ], "util_on_death_sum": [ - 2946 + 2952 ], "wasted_magazine_shots": [ - 2946 + 2952 ], "zeus_kills": [ - 2946 + 2952 ], "__typename": [ 80 @@ -71915,10 +72450,10 @@ export default { }, "player_match_map_stats_stream_cursor_input": { "initial_value": [ - 3440 + 3446 ], "ordering": [ - 308 + 314 ], "__typename": [ 80 @@ -71944,7 +72479,7 @@ export default { 40 ], "crosshair_angle_sum_deg": [ - 2944 + 2950 ], "damage": [ 40 @@ -71986,7 +72521,7 @@ export default { 40 ], "flash_duration_sum": [ - 2944 + 2950 ], "flashes_thrown": [ 40 @@ -72040,10 +72575,10 @@ export default { 40 ], "match_id": [ - 4993 + 4999 ], "match_map_id": [ - 4993 + 4999 ], "molotov_damage": [ 40 @@ -72088,7 +72623,7 @@ export default { 40 ], "steam_id": [ - 252 + 258 ], "team_damage": [ 40 @@ -72103,7 +72638,7 @@ export default { 40 ], "time_to_damage_sum_s": [ - 2944 + 2950 ], "total_engagement_frames": [ 40 @@ -72133,7 +72668,7 @@ export default { 40 ], "updated_at": [ - 4493 + 4499 ], "util_on_death_count": [ 40 @@ -72171,7 +72706,7 @@ export default { 40 ], "crosshair_angle_sum_deg": [ - 2944 + 2950 ], "damage": [ 40 @@ -72213,7 +72748,7 @@ export default { 40 ], "flash_duration_sum": [ - 2944 + 2950 ], "flashes_thrown": [ 40 @@ -72309,7 +72844,7 @@ export default { 40 ], "steam_id": [ - 252 + 258 ], "team_damage": [ 40 @@ -72324,7 +72859,7 @@ export default { 40 ], "time_to_damage_sum_s": [ - 2944 + 2950 ], "total_engagement_frames": [ 40 @@ -72371,217 +72906,217 @@ export default { }, "player_match_map_stats_sum_order_by": { "assists": [ - 2946 + 2952 ], "assists_ct": [ - 2946 + 2952 ], "assists_t": [ - 2946 + 2952 ], "counter_strafe_eligible_shots": [ - 2946 + 2952 ], "counter_strafed_shots": [ - 2946 + 2952 ], "crosshair_angle_count": [ - 2946 + 2952 ], "crosshair_angle_sum_deg": [ - 2946 + 2952 ], "damage": [ - 2946 + 2952 ], "damage_ct": [ - 2946 + 2952 ], "damage_t": [ - 2946 + 2952 ], "deaths": [ - 2946 + 2952 ], "deaths_ct": [ - 2946 + 2952 ], "deaths_t": [ - 2946 + 2952 ], "decoy_throws": [ - 2946 + 2952 ], "enemies_flashed": [ - 2946 + 2952 ], "first_bullet_hits": [ - 2946 + 2952 ], "first_bullet_shots": [ - 2946 + 2952 ], "five_kill_rounds": [ - 2946 + 2952 ], "flash_assists": [ - 2946 + 2952 ], "flash_duration_count": [ - 2946 + 2952 ], "flash_duration_sum": [ - 2946 + 2952 ], "flashes_thrown": [ - 2946 + 2952 ], "four_kill_rounds": [ - 2946 + 2952 ], "he_damage": [ - 2946 + 2952 ], "he_team_damage": [ - 2946 + 2952 ], "he_throws": [ - 2946 + 2952 ], "headshot_hits": [ - 2946 + 2952 ], "hits": [ - 2946 + 2952 ], "hits_at_spotted": [ - 2946 + 2952 ], "hs_kills": [ - 2946 + 2952 ], "hs_kills_ct": [ - 2946 + 2952 ], "hs_kills_t": [ - 2946 + 2952 ], "kast_rounds": [ - 2946 + 2952 ], "kast_total_rounds": [ - 2946 + 2952 ], "kills": [ - 2946 + 2952 ], "kills_ct": [ - 2946 + 2952 ], "kills_t": [ - 2946 + 2952 ], "knife_kills": [ - 2946 + 2952 ], "molotov_damage": [ - 2946 + 2952 ], "molotov_throws": [ - 2946 + 2952 ], "non_awp_hits": [ - 2946 + 2952 ], "on_target_frames": [ - 2946 + 2952 ], "rounds_ct": [ - 2946 + 2952 ], "rounds_played": [ - 2946 + 2952 ], "rounds_t": [ - 2946 + 2952 ], "shots_at_spotted": [ - 2946 + 2952 ], "shots_fired": [ - 2946 + 2952 ], "smoke_throws": [ - 2946 + 2952 ], "spotted_count": [ - 2946 + 2952 ], "spotted_with_damage_count": [ - 2946 + 2952 ], "spray_hits": [ - 2946 + 2952 ], "spray_shots": [ - 2946 + 2952 ], "steam_id": [ - 2946 + 2952 ], "team_damage": [ - 2946 + 2952 ], "team_flashed": [ - 2946 + 2952 ], "three_kill_rounds": [ - 2946 + 2952 ], "time_to_damage_count": [ - 2946 + 2952 ], "time_to_damage_sum_s": [ - 2946 + 2952 ], "total_engagement_frames": [ - 2946 + 2952 ], "trade_kill_attempts": [ - 2946 + 2952 ], "trade_kill_opportunities": [ - 2946 + 2952 ], "trade_kill_successes": [ - 2946 + 2952 ], "traded_death_attempts": [ - 2946 + 2952 ], "traded_death_opportunities": [ - 2946 + 2952 ], "traded_death_successes": [ - 2946 + 2952 ], "two_kill_rounds": [ - 2946 + 2952 ], "unused_utility_value": [ - 2946 + 2952 ], "util_on_death_count": [ - 2946 + 2952 ], "util_on_death_sum": [ - 2946 + 2952 ], "wasted_magazine_shots": [ - 2946 + 2952 ], "zeus_kills": [ - 2946 + 2952 ], "__typename": [ 80 @@ -72590,13 +73125,13 @@ export default { "player_match_map_stats_update_column": {}, "player_match_map_stats_updates": { "_inc": [ - 3421 + 3427 ], "_set": [ - 3432 + 3438 ], "where": [ - 3419 + 3425 ], "__typename": [ 80 @@ -72822,217 +73357,217 @@ export default { }, "player_match_map_stats_var_pop_order_by": { "assists": [ - 2946 + 2952 ], "assists_ct": [ - 2946 + 2952 ], "assists_t": [ - 2946 + 2952 ], "counter_strafe_eligible_shots": [ - 2946 + 2952 ], "counter_strafed_shots": [ - 2946 + 2952 ], "crosshair_angle_count": [ - 2946 + 2952 ], "crosshair_angle_sum_deg": [ - 2946 + 2952 ], "damage": [ - 2946 + 2952 ], "damage_ct": [ - 2946 + 2952 ], "damage_t": [ - 2946 + 2952 ], "deaths": [ - 2946 + 2952 ], "deaths_ct": [ - 2946 + 2952 ], "deaths_t": [ - 2946 + 2952 ], "decoy_throws": [ - 2946 + 2952 ], "enemies_flashed": [ - 2946 + 2952 ], "first_bullet_hits": [ - 2946 + 2952 ], "first_bullet_shots": [ - 2946 + 2952 ], "five_kill_rounds": [ - 2946 + 2952 ], "flash_assists": [ - 2946 + 2952 ], "flash_duration_count": [ - 2946 + 2952 ], "flash_duration_sum": [ - 2946 + 2952 ], "flashes_thrown": [ - 2946 + 2952 ], "four_kill_rounds": [ - 2946 + 2952 ], "he_damage": [ - 2946 + 2952 ], "he_team_damage": [ - 2946 + 2952 ], "he_throws": [ - 2946 + 2952 ], "headshot_hits": [ - 2946 + 2952 ], "hits": [ - 2946 + 2952 ], "hits_at_spotted": [ - 2946 + 2952 ], "hs_kills": [ - 2946 + 2952 ], "hs_kills_ct": [ - 2946 + 2952 ], "hs_kills_t": [ - 2946 + 2952 ], "kast_rounds": [ - 2946 + 2952 ], "kast_total_rounds": [ - 2946 + 2952 ], "kills": [ - 2946 + 2952 ], "kills_ct": [ - 2946 + 2952 ], "kills_t": [ - 2946 + 2952 ], "knife_kills": [ - 2946 + 2952 ], "molotov_damage": [ - 2946 + 2952 ], "molotov_throws": [ - 2946 + 2952 ], "non_awp_hits": [ - 2946 + 2952 ], "on_target_frames": [ - 2946 + 2952 ], "rounds_ct": [ - 2946 + 2952 ], "rounds_played": [ - 2946 + 2952 ], "rounds_t": [ - 2946 + 2952 ], "shots_at_spotted": [ - 2946 + 2952 ], "shots_fired": [ - 2946 + 2952 ], "smoke_throws": [ - 2946 + 2952 ], "spotted_count": [ - 2946 + 2952 ], "spotted_with_damage_count": [ - 2946 + 2952 ], "spray_hits": [ - 2946 + 2952 ], "spray_shots": [ - 2946 + 2952 ], "steam_id": [ - 2946 + 2952 ], "team_damage": [ - 2946 + 2952 ], "team_flashed": [ - 2946 + 2952 ], "three_kill_rounds": [ - 2946 + 2952 ], "time_to_damage_count": [ - 2946 + 2952 ], "time_to_damage_sum_s": [ - 2946 + 2952 ], "total_engagement_frames": [ - 2946 + 2952 ], "trade_kill_attempts": [ - 2946 + 2952 ], "trade_kill_opportunities": [ - 2946 + 2952 ], "trade_kill_successes": [ - 2946 + 2952 ], "traded_death_attempts": [ - 2946 + 2952 ], "traded_death_opportunities": [ - 2946 + 2952 ], "traded_death_successes": [ - 2946 + 2952 ], "two_kill_rounds": [ - 2946 + 2952 ], "unused_utility_value": [ - 2946 + 2952 ], "util_on_death_count": [ - 2946 + 2952 ], "util_on_death_sum": [ - 2946 + 2952 ], "wasted_magazine_shots": [ - 2946 + 2952 ], "zeus_kills": [ - 2946 + 2952 ], "__typename": [ 80 @@ -73258,217 +73793,217 @@ export default { }, "player_match_map_stats_var_samp_order_by": { "assists": [ - 2946 + 2952 ], "assists_ct": [ - 2946 + 2952 ], "assists_t": [ - 2946 + 2952 ], "counter_strafe_eligible_shots": [ - 2946 + 2952 ], "counter_strafed_shots": [ - 2946 + 2952 ], "crosshair_angle_count": [ - 2946 + 2952 ], "crosshair_angle_sum_deg": [ - 2946 + 2952 ], "damage": [ - 2946 + 2952 ], "damage_ct": [ - 2946 + 2952 ], "damage_t": [ - 2946 + 2952 ], "deaths": [ - 2946 + 2952 ], "deaths_ct": [ - 2946 + 2952 ], "deaths_t": [ - 2946 + 2952 ], "decoy_throws": [ - 2946 + 2952 ], "enemies_flashed": [ - 2946 + 2952 ], "first_bullet_hits": [ - 2946 + 2952 ], "first_bullet_shots": [ - 2946 + 2952 ], "five_kill_rounds": [ - 2946 + 2952 ], "flash_assists": [ - 2946 + 2952 ], "flash_duration_count": [ - 2946 + 2952 ], "flash_duration_sum": [ - 2946 + 2952 ], "flashes_thrown": [ - 2946 + 2952 ], "four_kill_rounds": [ - 2946 + 2952 ], "he_damage": [ - 2946 + 2952 ], "he_team_damage": [ - 2946 + 2952 ], "he_throws": [ - 2946 + 2952 ], "headshot_hits": [ - 2946 + 2952 ], "hits": [ - 2946 + 2952 ], "hits_at_spotted": [ - 2946 + 2952 ], "hs_kills": [ - 2946 + 2952 ], "hs_kills_ct": [ - 2946 + 2952 ], "hs_kills_t": [ - 2946 + 2952 ], "kast_rounds": [ - 2946 + 2952 ], "kast_total_rounds": [ - 2946 + 2952 ], "kills": [ - 2946 + 2952 ], "kills_ct": [ - 2946 + 2952 ], "kills_t": [ - 2946 + 2952 ], "knife_kills": [ - 2946 + 2952 ], "molotov_damage": [ - 2946 + 2952 ], "molotov_throws": [ - 2946 + 2952 ], "non_awp_hits": [ - 2946 + 2952 ], "on_target_frames": [ - 2946 + 2952 ], "rounds_ct": [ - 2946 + 2952 ], "rounds_played": [ - 2946 + 2952 ], "rounds_t": [ - 2946 + 2952 ], "shots_at_spotted": [ - 2946 + 2952 ], "shots_fired": [ - 2946 + 2952 ], "smoke_throws": [ - 2946 + 2952 ], "spotted_count": [ - 2946 + 2952 ], "spotted_with_damage_count": [ - 2946 + 2952 ], "spray_hits": [ - 2946 + 2952 ], "spray_shots": [ - 2946 + 2952 ], "steam_id": [ - 2946 + 2952 ], "team_damage": [ - 2946 + 2952 ], "team_flashed": [ - 2946 + 2952 ], "three_kill_rounds": [ - 2946 + 2952 ], "time_to_damage_count": [ - 2946 + 2952 ], "time_to_damage_sum_s": [ - 2946 + 2952 ], "total_engagement_frames": [ - 2946 + 2952 ], "trade_kill_attempts": [ - 2946 + 2952 ], "trade_kill_opportunities": [ - 2946 + 2952 ], "trade_kill_successes": [ - 2946 + 2952 ], "traded_death_attempts": [ - 2946 + 2952 ], "traded_death_opportunities": [ - 2946 + 2952 ], "traded_death_successes": [ - 2946 + 2952 ], "two_kill_rounds": [ - 2946 + 2952 ], "unused_utility_value": [ - 2946 + 2952 ], "util_on_death_count": [ - 2946 + 2952 ], "util_on_death_sum": [ - 2946 + 2952 ], "wasted_magazine_shots": [ - 2946 + 2952 ], "zeus_kills": [ - 2946 + 2952 ], "__typename": [ 80 @@ -73694,217 +74229,217 @@ export default { }, "player_match_map_stats_variance_order_by": { "assists": [ - 2946 + 2952 ], "assists_ct": [ - 2946 + 2952 ], "assists_t": [ - 2946 + 2952 ], "counter_strafe_eligible_shots": [ - 2946 + 2952 ], "counter_strafed_shots": [ - 2946 + 2952 ], "crosshair_angle_count": [ - 2946 + 2952 ], "crosshair_angle_sum_deg": [ - 2946 + 2952 ], "damage": [ - 2946 + 2952 ], "damage_ct": [ - 2946 + 2952 ], "damage_t": [ - 2946 + 2952 ], "deaths": [ - 2946 + 2952 ], "deaths_ct": [ - 2946 + 2952 ], "deaths_t": [ - 2946 + 2952 ], "decoy_throws": [ - 2946 + 2952 ], "enemies_flashed": [ - 2946 + 2952 ], "first_bullet_hits": [ - 2946 + 2952 ], "first_bullet_shots": [ - 2946 + 2952 ], "five_kill_rounds": [ - 2946 + 2952 ], "flash_assists": [ - 2946 + 2952 ], "flash_duration_count": [ - 2946 + 2952 ], "flash_duration_sum": [ - 2946 + 2952 ], "flashes_thrown": [ - 2946 + 2952 ], "four_kill_rounds": [ - 2946 + 2952 ], "he_damage": [ - 2946 + 2952 ], "he_team_damage": [ - 2946 + 2952 ], "he_throws": [ - 2946 + 2952 ], "headshot_hits": [ - 2946 + 2952 ], "hits": [ - 2946 + 2952 ], "hits_at_spotted": [ - 2946 + 2952 ], "hs_kills": [ - 2946 + 2952 ], "hs_kills_ct": [ - 2946 + 2952 ], "hs_kills_t": [ - 2946 + 2952 ], "kast_rounds": [ - 2946 + 2952 ], "kast_total_rounds": [ - 2946 + 2952 ], "kills": [ - 2946 + 2952 ], "kills_ct": [ - 2946 + 2952 ], "kills_t": [ - 2946 + 2952 ], "knife_kills": [ - 2946 + 2952 ], "molotov_damage": [ - 2946 + 2952 ], "molotov_throws": [ - 2946 + 2952 ], "non_awp_hits": [ - 2946 + 2952 ], "on_target_frames": [ - 2946 + 2952 ], "rounds_ct": [ - 2946 + 2952 ], "rounds_played": [ - 2946 + 2952 ], "rounds_t": [ - 2946 + 2952 ], "shots_at_spotted": [ - 2946 + 2952 ], "shots_fired": [ - 2946 + 2952 ], "smoke_throws": [ - 2946 + 2952 ], "spotted_count": [ - 2946 + 2952 ], "spotted_with_damage_count": [ - 2946 + 2952 ], "spray_hits": [ - 2946 + 2952 ], "spray_shots": [ - 2946 + 2952 ], "steam_id": [ - 2946 + 2952 ], "team_damage": [ - 2946 + 2952 ], "team_flashed": [ - 2946 + 2952 ], "three_kill_rounds": [ - 2946 + 2952 ], "time_to_damage_count": [ - 2946 + 2952 ], "time_to_damage_sum_s": [ - 2946 + 2952 ], "total_engagement_frames": [ - 2946 + 2952 ], "trade_kill_attempts": [ - 2946 + 2952 ], "trade_kill_opportunities": [ - 2946 + 2952 ], "trade_kill_successes": [ - 2946 + 2952 ], "traded_death_attempts": [ - 2946 + 2952 ], "traded_death_opportunities": [ - 2946 + 2952 ], "traded_death_successes": [ - 2946 + 2952 ], "two_kill_rounds": [ - 2946 + 2952 ], "unused_utility_value": [ - 2946 + 2952 ], "util_on_death_count": [ - 2946 + 2952 ], "util_on_death_sum": [ - 2946 + 2952 ], "wasted_magazine_shots": [ - 2946 + 2952 ], "zeus_kills": [ - 2946 + 2952 ], "__typename": [ 80 @@ -73912,40 +74447,40 @@ export default { }, "player_match_performance_v": { "accuracy": [ - 2944 + 2950 ], "accuracy_spotted": [ - 2944 + 2950 ], "aim_rating": [ - 1664 + 1670 ], "counter_strafe_pct": [ - 2944 + 2950 ], "enemy_blind_pr": [ - 2944 + 2950 ], "flash_assists_pr": [ - 2944 + 2950 ], "hs_pct": [ - 2944 + 2950 ], "kast_pct": [ - 2944 + 2950 ], "match_id": [ - 4993 + 4999 ], "overall_rating": [ - 1664 + 1670 ], "played_at": [ - 4493 + 4499 ], "positioning_rating": [ - 1664 + 1670 ], "rounds": [ 40 @@ -73954,19 +74489,19 @@ export default { 80 ], "steam_id": [ - 252 + 258 ], "survival_pct": [ - 2944 + 2950 ], "traded_death_pct": [ - 2944 + 2950 ], "util_efficiency": [ - 2944 + 2950 ], "utility_rating": [ - 1664 + 1670 ], "__typename": [ 80 @@ -73974,10 +74509,10 @@ export default { }, "player_match_performance_v_aggregate": { "aggregate": [ - 3453 + 3459 ], "nodes": [ - 3451 + 3457 ], "__typename": [ 80 @@ -73985,13 +74520,13 @@ export default { }, "player_match_performance_v_aggregate_fields": { "avg": [ - 3454 + 3460 ], "count": [ 40, { "columns": [ - 3459, + 3465, "[player_match_performance_v_select_column!]" ], "distinct": [ @@ -74000,31 +74535,31 @@ export default { } ], "max": [ - 3456 + 3462 ], "min": [ - 3457 + 3463 ], "stddev": [ - 3460 + 3466 ], "stddev_pop": [ - 3461 + 3467 ], "stddev_samp": [ - 3462 + 3468 ], "sum": [ - 3465 + 3471 ], "var_pop": [ - 3466 + 3472 ], "var_samp": [ - 3467 + 3473 ], "variance": [ - 3468 + 3474 ], "__typename": [ 80 @@ -74085,49 +74620,49 @@ export default { }, "player_match_performance_v_bool_exp": { "_and": [ - 3455 + 3461 ], "_not": [ - 3455 + 3461 ], "_or": [ - 3455 + 3461 ], "accuracy": [ - 2945 + 2951 ], "accuracy_spotted": [ - 2945 + 2951 ], "aim_rating": [ - 1665 + 1671 ], "counter_strafe_pct": [ - 2945 + 2951 ], "enemy_blind_pr": [ - 2945 + 2951 ], "flash_assists_pr": [ - 2945 + 2951 ], "hs_pct": [ - 2945 + 2951 ], "kast_pct": [ - 2945 + 2951 ], "match_id": [ - 4995 + 5001 ], "overall_rating": [ - 1665 + 1671 ], "played_at": [ - 4494 + 4500 ], "positioning_rating": [ - 1665 + 1671 ], "rounds": [ 41 @@ -74136,19 +74671,19 @@ export default { 82 ], "steam_id": [ - 254 + 260 ], "survival_pct": [ - 2945 + 2951 ], "traded_death_pct": [ - 2945 + 2951 ], "util_efficiency": [ - 2945 + 2951 ], "utility_rating": [ - 1665 + 1671 ], "__typename": [ 80 @@ -74156,40 +74691,40 @@ export default { }, "player_match_performance_v_max_fields": { "accuracy": [ - 2944 + 2950 ], "accuracy_spotted": [ - 2944 + 2950 ], "aim_rating": [ - 1664 + 1670 ], "counter_strafe_pct": [ - 2944 + 2950 ], "enemy_blind_pr": [ - 2944 + 2950 ], "flash_assists_pr": [ - 2944 + 2950 ], "hs_pct": [ - 2944 + 2950 ], "kast_pct": [ - 2944 + 2950 ], "match_id": [ - 4993 + 4999 ], "overall_rating": [ - 1664 + 1670 ], "played_at": [ - 4493 + 4499 ], "positioning_rating": [ - 1664 + 1670 ], "rounds": [ 40 @@ -74198,19 +74733,19 @@ export default { 80 ], "steam_id": [ - 252 + 258 ], "survival_pct": [ - 2944 + 2950 ], "traded_death_pct": [ - 2944 + 2950 ], "util_efficiency": [ - 2944 + 2950 ], "utility_rating": [ - 1664 + 1670 ], "__typename": [ 80 @@ -74218,40 +74753,40 @@ export default { }, "player_match_performance_v_min_fields": { "accuracy": [ - 2944 + 2950 ], "accuracy_spotted": [ - 2944 + 2950 ], "aim_rating": [ - 1664 + 1670 ], "counter_strafe_pct": [ - 2944 + 2950 ], "enemy_blind_pr": [ - 2944 + 2950 ], "flash_assists_pr": [ - 2944 + 2950 ], "hs_pct": [ - 2944 + 2950 ], "kast_pct": [ - 2944 + 2950 ], "match_id": [ - 4993 + 4999 ], "overall_rating": [ - 1664 + 1670 ], "played_at": [ - 4493 + 4499 ], "positioning_rating": [ - 1664 + 1670 ], "rounds": [ 40 @@ -74260,19 +74795,19 @@ export default { 80 ], "steam_id": [ - 252 + 258 ], "survival_pct": [ - 2944 + 2950 ], "traded_death_pct": [ - 2944 + 2950 ], "util_efficiency": [ - 2944 + 2950 ], "utility_rating": [ - 1664 + 1670 ], "__typename": [ 80 @@ -74280,61 +74815,61 @@ export default { }, "player_match_performance_v_order_by": { "accuracy": [ - 2946 + 2952 ], "accuracy_spotted": [ - 2946 + 2952 ], "aim_rating": [ - 2946 + 2952 ], "counter_strafe_pct": [ - 2946 + 2952 ], "enemy_blind_pr": [ - 2946 + 2952 ], "flash_assists_pr": [ - 2946 + 2952 ], "hs_pct": [ - 2946 + 2952 ], "kast_pct": [ - 2946 + 2952 ], "match_id": [ - 2946 + 2952 ], "overall_rating": [ - 2946 + 2952 ], "played_at": [ - 2946 + 2952 ], "positioning_rating": [ - 2946 + 2952 ], "rounds": [ - 2946 + 2952 ], "source": [ - 2946 + 2952 ], "steam_id": [ - 2946 + 2952 ], "survival_pct": [ - 2946 + 2952 ], "traded_death_pct": [ - 2946 + 2952 ], "util_efficiency": [ - 2946 + 2952 ], "utility_rating": [ - 2946 + 2952 ], "__typename": [ 80 @@ -74502,10 +75037,10 @@ export default { }, "player_match_performance_v_stream_cursor_input": { "initial_value": [ - 3464 + 3470 ], "ordering": [ - 308 + 314 ], "__typename": [ 80 @@ -74513,40 +75048,40 @@ export default { }, "player_match_performance_v_stream_cursor_value_input": { "accuracy": [ - 2944 + 2950 ], "accuracy_spotted": [ - 2944 + 2950 ], "aim_rating": [ - 1664 + 1670 ], "counter_strafe_pct": [ - 2944 + 2950 ], "enemy_blind_pr": [ - 2944 + 2950 ], "flash_assists_pr": [ - 2944 + 2950 ], "hs_pct": [ - 2944 + 2950 ], "kast_pct": [ - 2944 + 2950 ], "match_id": [ - 4993 + 4999 ], "overall_rating": [ - 1664 + 1670 ], "played_at": [ - 4493 + 4499 ], "positioning_rating": [ - 1664 + 1670 ], "rounds": [ 40 @@ -74555,19 +75090,19 @@ export default { 80 ], "steam_id": [ - 252 + 258 ], "survival_pct": [ - 2944 + 2950 ], "traded_death_pct": [ - 2944 + 2950 ], "util_efficiency": [ - 2944 + 2950 ], "utility_rating": [ - 1664 + 1670 ], "__typename": [ 80 @@ -74575,52 +75110,52 @@ export default { }, "player_match_performance_v_sum_fields": { "accuracy": [ - 2944 + 2950 ], "accuracy_spotted": [ - 2944 + 2950 ], "aim_rating": [ - 1664 + 1670 ], "counter_strafe_pct": [ - 2944 + 2950 ], "enemy_blind_pr": [ - 2944 + 2950 ], "flash_assists_pr": [ - 2944 + 2950 ], "hs_pct": [ - 2944 + 2950 ], "kast_pct": [ - 2944 + 2950 ], "overall_rating": [ - 1664 + 1670 ], "positioning_rating": [ - 1664 + 1670 ], "rounds": [ 40 ], "steam_id": [ - 252 + 258 ], "survival_pct": [ - 2944 + 2950 ], "traded_death_pct": [ - 2944 + 2950 ], "util_efficiency": [ - 2944 + 2950 ], "utility_rating": [ - 1664 + 1670 ], "__typename": [ 80 @@ -74796,13 +75331,13 @@ export default { 40 ], "avg_crosshair_angle_deg": [ - 2944 + 2950 ], "avg_flash_duration": [ - 2944 + 2950 ], "avg_time_to_damage_s": [ - 2944 + 2950 ], "counter_strafe_eligible_shots": [ 40 @@ -74892,7 +75427,7 @@ export default { 40 ], "match_id": [ - 4993 + 4999 ], "molotov_damage": [ 40 @@ -74937,7 +75472,7 @@ export default { 40 ], "steam_id": [ - 252 + 258 ], "team_damage": [ 40 @@ -74976,7 +75511,7 @@ export default { 40 ], "utility_on_death": [ - 2944 + 2950 ], "wasted_magazine_shots": [ 40 @@ -74990,10 +75525,10 @@ export default { }, "player_match_stats_v_aggregate": { "aggregate": [ - 3473 + 3479 ], "nodes": [ - 3469 + 3475 ], "__typename": [ 80 @@ -75001,7 +75536,7 @@ export default { }, "player_match_stats_v_aggregate_bool_exp": { "count": [ - 3472 + 3478 ], "__typename": [ 80 @@ -75009,13 +75544,13 @@ export default { }, "player_match_stats_v_aggregate_bool_exp_count": { "arguments": [ - 3485 + 3491 ], "distinct": [ 5 ], "filter": [ - 3478 + 3484 ], "predicate": [ 41 @@ -75026,13 +75561,13 @@ export default { }, "player_match_stats_v_aggregate_fields": { "avg": [ - 3476 + 3482 ], "count": [ 40, { "columns": [ - 3485, + 3491, "[player_match_stats_v_select_column!]" ], "distinct": [ @@ -75041,31 +75576,31 @@ export default { } ], "max": [ - 3480 + 3486 ], "min": [ - 3482 + 3488 ], "stddev": [ - 3486 + 3492 ], "stddev_pop": [ - 3488 + 3494 ], "stddev_samp": [ - 3490 + 3496 ], "sum": [ - 3494 + 3500 ], "var_pop": [ - 3496 + 3502 ], "var_samp": [ - 3498 + 3504 ], "variance": [ - 3500 + 3506 ], "__typename": [ 80 @@ -75073,37 +75608,37 @@ export default { }, "player_match_stats_v_aggregate_order_by": { "avg": [ - 3477 + 3483 ], "count": [ - 2946 + 2952 ], "max": [ - 3481 + 3487 ], "min": [ - 3483 + 3489 ], "stddev": [ - 3487 + 3493 ], "stddev_pop": [ - 3489 + 3495 ], "stddev_samp": [ - 3491 + 3497 ], "sum": [ - 3495 + 3501 ], "var_pop": [ - 3497 + 3503 ], "var_samp": [ - 3499 + 3505 ], "variance": [ - 3501 + 3507 ], "__typename": [ 80 @@ -75111,7 +75646,7 @@ export default { }, "player_match_stats_v_arr_rel_insert_input": { "data": [ - 3479 + 3485 ], "__typename": [ 80 @@ -75319,199 +75854,199 @@ export default { }, "player_match_stats_v_avg_order_by": { "assists": [ - 2946 + 2952 ], "assists_ct": [ - 2946 + 2952 ], "assists_t": [ - 2946 + 2952 ], "avg_crosshair_angle_deg": [ - 2946 + 2952 ], "avg_flash_duration": [ - 2946 + 2952 ], "avg_time_to_damage_s": [ - 2946 + 2952 ], "counter_strafe_eligible_shots": [ - 2946 + 2952 ], "counter_strafed_shots": [ - 2946 + 2952 ], "damage": [ - 2946 + 2952 ], "damage_ct": [ - 2946 + 2952 ], "damage_t": [ - 2946 + 2952 ], "deaths": [ - 2946 + 2952 ], "deaths_ct": [ - 2946 + 2952 ], "deaths_t": [ - 2946 + 2952 ], "decoy_throws": [ - 2946 + 2952 ], "enemies_flashed": [ - 2946 + 2952 ], "first_bullet_hits": [ - 2946 + 2952 ], "first_bullet_shots": [ - 2946 + 2952 ], "five_kill_rounds": [ - 2946 + 2952 ], "flash_assists": [ - 2946 + 2952 ], "flashes_thrown": [ - 2946 + 2952 ], "four_kill_rounds": [ - 2946 + 2952 ], "he_damage": [ - 2946 + 2952 ], "he_team_damage": [ - 2946 + 2952 ], "he_throws": [ - 2946 + 2952 ], "headshot_hits": [ - 2946 + 2952 ], "hits": [ - 2946 + 2952 ], "hits_at_spotted": [ - 2946 + 2952 ], "hs_kills": [ - 2946 + 2952 ], "hs_kills_ct": [ - 2946 + 2952 ], "hs_kills_t": [ - 2946 + 2952 ], "kills": [ - 2946 + 2952 ], "kills_ct": [ - 2946 + 2952 ], "kills_t": [ - 2946 + 2952 ], "knife_kills": [ - 2946 + 2952 ], "molotov_damage": [ - 2946 + 2952 ], "molotov_throws": [ - 2946 + 2952 ], "non_awp_hits": [ - 2946 + 2952 ], "on_target_frames": [ - 2946 + 2952 ], "rounds_ct": [ - 2946 + 2952 ], "rounds_played": [ - 2946 + 2952 ], "rounds_t": [ - 2946 + 2952 ], "shots_at_spotted": [ - 2946 + 2952 ], "shots_fired": [ - 2946 + 2952 ], "smoke_throws": [ - 2946 + 2952 ], "spotted_count": [ - 2946 + 2952 ], "spotted_with_damage_count": [ - 2946 + 2952 ], "spray_hits": [ - 2946 + 2952 ], "spray_shots": [ - 2946 + 2952 ], "steam_id": [ - 2946 + 2952 ], "team_damage": [ - 2946 + 2952 ], "team_flashed": [ - 2946 + 2952 ], "three_kill_rounds": [ - 2946 + 2952 ], "total_engagement_frames": [ - 2946 + 2952 ], "trade_kill_attempts": [ - 2946 + 2952 ], "trade_kill_opportunities": [ - 2946 + 2952 ], "trade_kill_successes": [ - 2946 + 2952 ], "traded_death_attempts": [ - 2946 + 2952 ], "traded_death_opportunities": [ - 2946 + 2952 ], "traded_death_successes": [ - 2946 + 2952 ], "two_kill_rounds": [ - 2946 + 2952 ], "unused_utility_value": [ - 2946 + 2952 ], "utility_on_death": [ - 2946 + 2952 ], "wasted_magazine_shots": [ - 2946 + 2952 ], "zeus_kills": [ - 2946 + 2952 ], "__typename": [ 80 @@ -75519,13 +76054,13 @@ export default { }, "player_match_stats_v_bool_exp": { "_and": [ - 3478 + 3484 ], "_not": [ - 3478 + 3484 ], "_or": [ - 3478 + 3484 ], "assists": [ 41 @@ -75537,13 +76072,13 @@ export default { 41 ], "avg_crosshair_angle_deg": [ - 2945 + 2951 ], "avg_flash_duration": [ - 2945 + 2951 ], "avg_time_to_damage_s": [ - 2945 + 2951 ], "counter_strafe_eligible_shots": [ 41 @@ -75633,7 +76168,7 @@ export default { 41 ], "match_id": [ - 4995 + 5001 ], "molotov_damage": [ 41 @@ -75678,7 +76213,7 @@ export default { 41 ], "steam_id": [ - 254 + 260 ], "team_damage": [ 41 @@ -75717,7 +76252,7 @@ export default { 41 ], "utility_on_death": [ - 2945 + 2951 ], "wasted_magazine_shots": [ 41 @@ -75740,13 +76275,13 @@ export default { 40 ], "avg_crosshair_angle_deg": [ - 2944 + 2950 ], "avg_flash_duration": [ - 2944 + 2950 ], "avg_time_to_damage_s": [ - 2944 + 2950 ], "counter_strafe_eligible_shots": [ 40 @@ -75836,7 +76371,7 @@ export default { 40 ], "match_id": [ - 4993 + 4999 ], "molotov_damage": [ 40 @@ -75881,7 +76416,7 @@ export default { 40 ], "steam_id": [ - 252 + 258 ], "team_damage": [ 40 @@ -75920,7 +76455,7 @@ export default { 40 ], "utility_on_death": [ - 2944 + 2950 ], "wasted_magazine_shots": [ 40 @@ -75943,13 +76478,13 @@ export default { 40 ], "avg_crosshair_angle_deg": [ - 2944 + 2950 ], "avg_flash_duration": [ - 2944 + 2950 ], "avg_time_to_damage_s": [ - 2944 + 2950 ], "counter_strafe_eligible_shots": [ 40 @@ -76039,7 +76574,7 @@ export default { 40 ], "match_id": [ - 4993 + 4999 ], "molotov_damage": [ 40 @@ -76084,7 +76619,7 @@ export default { 40 ], "steam_id": [ - 252 + 258 ], "team_damage": [ 40 @@ -76123,7 +76658,7 @@ export default { 40 ], "utility_on_death": [ - 2944 + 2950 ], "wasted_magazine_shots": [ 40 @@ -76137,202 +76672,202 @@ export default { }, "player_match_stats_v_max_order_by": { "assists": [ - 2946 + 2952 ], "assists_ct": [ - 2946 + 2952 ], "assists_t": [ - 2946 + 2952 ], "avg_crosshair_angle_deg": [ - 2946 + 2952 ], "avg_flash_duration": [ - 2946 + 2952 ], "avg_time_to_damage_s": [ - 2946 + 2952 ], "counter_strafe_eligible_shots": [ - 2946 + 2952 ], "counter_strafed_shots": [ - 2946 + 2952 ], "damage": [ - 2946 + 2952 ], "damage_ct": [ - 2946 + 2952 ], "damage_t": [ - 2946 + 2952 ], "deaths": [ - 2946 + 2952 ], "deaths_ct": [ - 2946 + 2952 ], "deaths_t": [ - 2946 + 2952 ], "decoy_throws": [ - 2946 + 2952 ], "enemies_flashed": [ - 2946 + 2952 ], "first_bullet_hits": [ - 2946 + 2952 ], "first_bullet_shots": [ - 2946 + 2952 ], "five_kill_rounds": [ - 2946 + 2952 ], "flash_assists": [ - 2946 + 2952 ], "flashes_thrown": [ - 2946 + 2952 ], "four_kill_rounds": [ - 2946 + 2952 ], "he_damage": [ - 2946 + 2952 ], "he_team_damage": [ - 2946 + 2952 ], "he_throws": [ - 2946 + 2952 ], "headshot_hits": [ - 2946 + 2952 ], "hits": [ - 2946 + 2952 ], "hits_at_spotted": [ - 2946 + 2952 ], "hs_kills": [ - 2946 + 2952 ], "hs_kills_ct": [ - 2946 + 2952 ], "hs_kills_t": [ - 2946 + 2952 ], "kills": [ - 2946 + 2952 ], "kills_ct": [ - 2946 + 2952 ], "kills_t": [ - 2946 + 2952 ], "knife_kills": [ - 2946 + 2952 ], "match_id": [ - 2946 + 2952 ], "molotov_damage": [ - 2946 + 2952 ], "molotov_throws": [ - 2946 + 2952 ], "non_awp_hits": [ - 2946 + 2952 ], "on_target_frames": [ - 2946 + 2952 ], "rounds_ct": [ - 2946 + 2952 ], "rounds_played": [ - 2946 + 2952 ], "rounds_t": [ - 2946 + 2952 ], "shots_at_spotted": [ - 2946 + 2952 ], "shots_fired": [ - 2946 + 2952 ], "smoke_throws": [ - 2946 + 2952 ], "spotted_count": [ - 2946 + 2952 ], "spotted_with_damage_count": [ - 2946 + 2952 ], "spray_hits": [ - 2946 + 2952 ], "spray_shots": [ - 2946 + 2952 ], "steam_id": [ - 2946 + 2952 ], "team_damage": [ - 2946 + 2952 ], "team_flashed": [ - 2946 + 2952 ], "three_kill_rounds": [ - 2946 + 2952 ], "total_engagement_frames": [ - 2946 + 2952 ], "trade_kill_attempts": [ - 2946 + 2952 ], "trade_kill_opportunities": [ - 2946 + 2952 ], "trade_kill_successes": [ - 2946 + 2952 ], "traded_death_attempts": [ - 2946 + 2952 ], "traded_death_opportunities": [ - 2946 + 2952 ], "traded_death_successes": [ - 2946 + 2952 ], "two_kill_rounds": [ - 2946 + 2952 ], "unused_utility_value": [ - 2946 + 2952 ], "utility_on_death": [ - 2946 + 2952 ], "wasted_magazine_shots": [ - 2946 + 2952 ], "zeus_kills": [ - 2946 + 2952 ], "__typename": [ 80 @@ -76349,13 +76884,13 @@ export default { 40 ], "avg_crosshair_angle_deg": [ - 2944 + 2950 ], "avg_flash_duration": [ - 2944 + 2950 ], "avg_time_to_damage_s": [ - 2944 + 2950 ], "counter_strafe_eligible_shots": [ 40 @@ -76445,7 +76980,7 @@ export default { 40 ], "match_id": [ - 4993 + 4999 ], "molotov_damage": [ 40 @@ -76490,7 +77025,7 @@ export default { 40 ], "steam_id": [ - 252 + 258 ], "team_damage": [ 40 @@ -76529,7 +77064,7 @@ export default { 40 ], "utility_on_death": [ - 2944 + 2950 ], "wasted_magazine_shots": [ 40 @@ -76543,202 +77078,202 @@ export default { }, "player_match_stats_v_min_order_by": { "assists": [ - 2946 + 2952 ], "assists_ct": [ - 2946 + 2952 ], "assists_t": [ - 2946 + 2952 ], "avg_crosshair_angle_deg": [ - 2946 + 2952 ], "avg_flash_duration": [ - 2946 + 2952 ], "avg_time_to_damage_s": [ - 2946 + 2952 ], "counter_strafe_eligible_shots": [ - 2946 + 2952 ], "counter_strafed_shots": [ - 2946 + 2952 ], "damage": [ - 2946 + 2952 ], "damage_ct": [ - 2946 + 2952 ], "damage_t": [ - 2946 + 2952 ], "deaths": [ - 2946 + 2952 ], "deaths_ct": [ - 2946 + 2952 ], "deaths_t": [ - 2946 + 2952 ], "decoy_throws": [ - 2946 + 2952 ], "enemies_flashed": [ - 2946 + 2952 ], "first_bullet_hits": [ - 2946 + 2952 ], "first_bullet_shots": [ - 2946 + 2952 ], "five_kill_rounds": [ - 2946 + 2952 ], "flash_assists": [ - 2946 + 2952 ], "flashes_thrown": [ - 2946 + 2952 ], "four_kill_rounds": [ - 2946 + 2952 ], "he_damage": [ - 2946 + 2952 ], "he_team_damage": [ - 2946 + 2952 ], "he_throws": [ - 2946 + 2952 ], "headshot_hits": [ - 2946 + 2952 ], "hits": [ - 2946 + 2952 ], "hits_at_spotted": [ - 2946 + 2952 ], "hs_kills": [ - 2946 + 2952 ], "hs_kills_ct": [ - 2946 + 2952 ], "hs_kills_t": [ - 2946 + 2952 ], "kills": [ - 2946 + 2952 ], "kills_ct": [ - 2946 + 2952 ], "kills_t": [ - 2946 + 2952 ], "knife_kills": [ - 2946 + 2952 ], "match_id": [ - 2946 + 2952 ], "molotov_damage": [ - 2946 + 2952 ], "molotov_throws": [ - 2946 + 2952 ], "non_awp_hits": [ - 2946 + 2952 ], "on_target_frames": [ - 2946 + 2952 ], "rounds_ct": [ - 2946 + 2952 ], "rounds_played": [ - 2946 + 2952 ], "rounds_t": [ - 2946 + 2952 ], "shots_at_spotted": [ - 2946 + 2952 ], "shots_fired": [ - 2946 + 2952 ], "smoke_throws": [ - 2946 + 2952 ], "spotted_count": [ - 2946 + 2952 ], "spotted_with_damage_count": [ - 2946 + 2952 ], "spray_hits": [ - 2946 + 2952 ], "spray_shots": [ - 2946 + 2952 ], "steam_id": [ - 2946 + 2952 ], "team_damage": [ - 2946 + 2952 ], "team_flashed": [ - 2946 + 2952 ], "three_kill_rounds": [ - 2946 + 2952 ], "total_engagement_frames": [ - 2946 + 2952 ], "trade_kill_attempts": [ - 2946 + 2952 ], "trade_kill_opportunities": [ - 2946 + 2952 ], "trade_kill_successes": [ - 2946 + 2952 ], "traded_death_attempts": [ - 2946 + 2952 ], "traded_death_opportunities": [ - 2946 + 2952 ], "traded_death_successes": [ - 2946 + 2952 ], "two_kill_rounds": [ - 2946 + 2952 ], "unused_utility_value": [ - 2946 + 2952 ], "utility_on_death": [ - 2946 + 2952 ], "wasted_magazine_shots": [ - 2946 + 2952 ], "zeus_kills": [ - 2946 + 2952 ], "__typename": [ 80 @@ -76746,202 +77281,202 @@ export default { }, "player_match_stats_v_order_by": { "assists": [ - 2946 + 2952 ], "assists_ct": [ - 2946 + 2952 ], "assists_t": [ - 2946 + 2952 ], "avg_crosshair_angle_deg": [ - 2946 + 2952 ], "avg_flash_duration": [ - 2946 + 2952 ], "avg_time_to_damage_s": [ - 2946 + 2952 ], "counter_strafe_eligible_shots": [ - 2946 + 2952 ], "counter_strafed_shots": [ - 2946 + 2952 ], "damage": [ - 2946 + 2952 ], "damage_ct": [ - 2946 + 2952 ], "damage_t": [ - 2946 + 2952 ], "deaths": [ - 2946 + 2952 ], "deaths_ct": [ - 2946 + 2952 ], "deaths_t": [ - 2946 + 2952 ], "decoy_throws": [ - 2946 + 2952 ], "enemies_flashed": [ - 2946 + 2952 ], "first_bullet_hits": [ - 2946 + 2952 ], "first_bullet_shots": [ - 2946 + 2952 ], "five_kill_rounds": [ - 2946 + 2952 ], "flash_assists": [ - 2946 + 2952 ], "flashes_thrown": [ - 2946 + 2952 ], "four_kill_rounds": [ - 2946 + 2952 ], "he_damage": [ - 2946 + 2952 ], "he_team_damage": [ - 2946 + 2952 ], "he_throws": [ - 2946 + 2952 ], "headshot_hits": [ - 2946 + 2952 ], "hits": [ - 2946 + 2952 ], "hits_at_spotted": [ - 2946 + 2952 ], "hs_kills": [ - 2946 + 2952 ], "hs_kills_ct": [ - 2946 + 2952 ], "hs_kills_t": [ - 2946 + 2952 ], "kills": [ - 2946 + 2952 ], "kills_ct": [ - 2946 + 2952 ], "kills_t": [ - 2946 + 2952 ], "knife_kills": [ - 2946 + 2952 ], "match_id": [ - 2946 + 2952 ], "molotov_damage": [ - 2946 + 2952 ], "molotov_throws": [ - 2946 + 2952 ], "non_awp_hits": [ - 2946 + 2952 ], "on_target_frames": [ - 2946 + 2952 ], "rounds_ct": [ - 2946 + 2952 ], "rounds_played": [ - 2946 + 2952 ], "rounds_t": [ - 2946 + 2952 ], "shots_at_spotted": [ - 2946 + 2952 ], "shots_fired": [ - 2946 + 2952 ], "smoke_throws": [ - 2946 + 2952 ], "spotted_count": [ - 2946 + 2952 ], "spotted_with_damage_count": [ - 2946 + 2952 ], "spray_hits": [ - 2946 + 2952 ], "spray_shots": [ - 2946 + 2952 ], "steam_id": [ - 2946 + 2952 ], "team_damage": [ - 2946 + 2952 ], "team_flashed": [ - 2946 + 2952 ], "three_kill_rounds": [ - 2946 + 2952 ], "total_engagement_frames": [ - 2946 + 2952 ], "trade_kill_attempts": [ - 2946 + 2952 ], "trade_kill_opportunities": [ - 2946 + 2952 ], "trade_kill_successes": [ - 2946 + 2952 ], "traded_death_attempts": [ - 2946 + 2952 ], "traded_death_opportunities": [ - 2946 + 2952 ], "traded_death_successes": [ - 2946 + 2952 ], "two_kill_rounds": [ - 2946 + 2952 ], "unused_utility_value": [ - 2946 + 2952 ], "utility_on_death": [ - 2946 + 2952 ], "wasted_magazine_shots": [ - 2946 + 2952 ], "zeus_kills": [ - 2946 + 2952 ], "__typename": [ 80 @@ -77150,199 +77685,199 @@ export default { }, "player_match_stats_v_stddev_order_by": { "assists": [ - 2946 + 2952 ], "assists_ct": [ - 2946 + 2952 ], "assists_t": [ - 2946 + 2952 ], "avg_crosshair_angle_deg": [ - 2946 + 2952 ], "avg_flash_duration": [ - 2946 + 2952 ], "avg_time_to_damage_s": [ - 2946 + 2952 ], "counter_strafe_eligible_shots": [ - 2946 + 2952 ], "counter_strafed_shots": [ - 2946 + 2952 ], "damage": [ - 2946 + 2952 ], "damage_ct": [ - 2946 + 2952 ], "damage_t": [ - 2946 + 2952 ], "deaths": [ - 2946 + 2952 ], "deaths_ct": [ - 2946 + 2952 ], "deaths_t": [ - 2946 + 2952 ], "decoy_throws": [ - 2946 + 2952 ], "enemies_flashed": [ - 2946 + 2952 ], "first_bullet_hits": [ - 2946 + 2952 ], "first_bullet_shots": [ - 2946 + 2952 ], "five_kill_rounds": [ - 2946 + 2952 ], "flash_assists": [ - 2946 + 2952 ], "flashes_thrown": [ - 2946 + 2952 ], "four_kill_rounds": [ - 2946 + 2952 ], "he_damage": [ - 2946 + 2952 ], "he_team_damage": [ - 2946 + 2952 ], "he_throws": [ - 2946 + 2952 ], "headshot_hits": [ - 2946 + 2952 ], "hits": [ - 2946 + 2952 ], "hits_at_spotted": [ - 2946 + 2952 ], "hs_kills": [ - 2946 + 2952 ], "hs_kills_ct": [ - 2946 + 2952 ], "hs_kills_t": [ - 2946 + 2952 ], "kills": [ - 2946 + 2952 ], "kills_ct": [ - 2946 + 2952 ], "kills_t": [ - 2946 + 2952 ], "knife_kills": [ - 2946 + 2952 ], "molotov_damage": [ - 2946 + 2952 ], "molotov_throws": [ - 2946 + 2952 ], "non_awp_hits": [ - 2946 + 2952 ], "on_target_frames": [ - 2946 + 2952 ], "rounds_ct": [ - 2946 + 2952 ], "rounds_played": [ - 2946 + 2952 ], "rounds_t": [ - 2946 + 2952 ], "shots_at_spotted": [ - 2946 + 2952 ], "shots_fired": [ - 2946 + 2952 ], "smoke_throws": [ - 2946 + 2952 ], "spotted_count": [ - 2946 + 2952 ], "spotted_with_damage_count": [ - 2946 + 2952 ], "spray_hits": [ - 2946 + 2952 ], "spray_shots": [ - 2946 + 2952 ], "steam_id": [ - 2946 + 2952 ], "team_damage": [ - 2946 + 2952 ], "team_flashed": [ - 2946 + 2952 ], "three_kill_rounds": [ - 2946 + 2952 ], "total_engagement_frames": [ - 2946 + 2952 ], "trade_kill_attempts": [ - 2946 + 2952 ], "trade_kill_opportunities": [ - 2946 + 2952 ], "trade_kill_successes": [ - 2946 + 2952 ], "traded_death_attempts": [ - 2946 + 2952 ], "traded_death_opportunities": [ - 2946 + 2952 ], "traded_death_successes": [ - 2946 + 2952 ], "two_kill_rounds": [ - 2946 + 2952 ], "unused_utility_value": [ - 2946 + 2952 ], "utility_on_death": [ - 2946 + 2952 ], "wasted_magazine_shots": [ - 2946 + 2952 ], "zeus_kills": [ - 2946 + 2952 ], "__typename": [ 80 @@ -77550,199 +78085,199 @@ export default { }, "player_match_stats_v_stddev_pop_order_by": { "assists": [ - 2946 + 2952 ], "assists_ct": [ - 2946 + 2952 ], "assists_t": [ - 2946 + 2952 ], "avg_crosshair_angle_deg": [ - 2946 + 2952 ], "avg_flash_duration": [ - 2946 + 2952 ], "avg_time_to_damage_s": [ - 2946 + 2952 ], "counter_strafe_eligible_shots": [ - 2946 + 2952 ], "counter_strafed_shots": [ - 2946 + 2952 ], "damage": [ - 2946 + 2952 ], "damage_ct": [ - 2946 + 2952 ], "damage_t": [ - 2946 + 2952 ], "deaths": [ - 2946 + 2952 ], "deaths_ct": [ - 2946 + 2952 ], "deaths_t": [ - 2946 + 2952 ], "decoy_throws": [ - 2946 + 2952 ], "enemies_flashed": [ - 2946 + 2952 ], "first_bullet_hits": [ - 2946 + 2952 ], "first_bullet_shots": [ - 2946 + 2952 ], "five_kill_rounds": [ - 2946 + 2952 ], "flash_assists": [ - 2946 + 2952 ], "flashes_thrown": [ - 2946 + 2952 ], "four_kill_rounds": [ - 2946 + 2952 ], "he_damage": [ - 2946 + 2952 ], "he_team_damage": [ - 2946 + 2952 ], "he_throws": [ - 2946 + 2952 ], "headshot_hits": [ - 2946 + 2952 ], "hits": [ - 2946 + 2952 ], "hits_at_spotted": [ - 2946 + 2952 ], "hs_kills": [ - 2946 + 2952 ], "hs_kills_ct": [ - 2946 + 2952 ], "hs_kills_t": [ - 2946 + 2952 ], "kills": [ - 2946 + 2952 ], "kills_ct": [ - 2946 + 2952 ], "kills_t": [ - 2946 + 2952 ], "knife_kills": [ - 2946 + 2952 ], "molotov_damage": [ - 2946 + 2952 ], "molotov_throws": [ - 2946 + 2952 ], "non_awp_hits": [ - 2946 + 2952 ], "on_target_frames": [ - 2946 + 2952 ], "rounds_ct": [ - 2946 + 2952 ], "rounds_played": [ - 2946 + 2952 ], "rounds_t": [ - 2946 + 2952 ], "shots_at_spotted": [ - 2946 + 2952 ], "shots_fired": [ - 2946 + 2952 ], "smoke_throws": [ - 2946 + 2952 ], "spotted_count": [ - 2946 + 2952 ], "spotted_with_damage_count": [ - 2946 + 2952 ], "spray_hits": [ - 2946 + 2952 ], "spray_shots": [ - 2946 + 2952 ], "steam_id": [ - 2946 + 2952 ], "team_damage": [ - 2946 + 2952 ], "team_flashed": [ - 2946 + 2952 ], "three_kill_rounds": [ - 2946 + 2952 ], "total_engagement_frames": [ - 2946 + 2952 ], "trade_kill_attempts": [ - 2946 + 2952 ], "trade_kill_opportunities": [ - 2946 + 2952 ], "trade_kill_successes": [ - 2946 + 2952 ], "traded_death_attempts": [ - 2946 + 2952 ], "traded_death_opportunities": [ - 2946 + 2952 ], "traded_death_successes": [ - 2946 + 2952 ], "two_kill_rounds": [ - 2946 + 2952 ], "unused_utility_value": [ - 2946 + 2952 ], "utility_on_death": [ - 2946 + 2952 ], "wasted_magazine_shots": [ - 2946 + 2952 ], "zeus_kills": [ - 2946 + 2952 ], "__typename": [ 80 @@ -77950,199 +78485,199 @@ export default { }, "player_match_stats_v_stddev_samp_order_by": { "assists": [ - 2946 + 2952 ], "assists_ct": [ - 2946 + 2952 ], "assists_t": [ - 2946 + 2952 ], "avg_crosshair_angle_deg": [ - 2946 + 2952 ], "avg_flash_duration": [ - 2946 + 2952 ], "avg_time_to_damage_s": [ - 2946 + 2952 ], "counter_strafe_eligible_shots": [ - 2946 + 2952 ], "counter_strafed_shots": [ - 2946 + 2952 ], "damage": [ - 2946 + 2952 ], "damage_ct": [ - 2946 + 2952 ], "damage_t": [ - 2946 + 2952 ], "deaths": [ - 2946 + 2952 ], "deaths_ct": [ - 2946 + 2952 ], "deaths_t": [ - 2946 + 2952 ], "decoy_throws": [ - 2946 + 2952 ], "enemies_flashed": [ - 2946 + 2952 ], "first_bullet_hits": [ - 2946 + 2952 ], "first_bullet_shots": [ - 2946 + 2952 ], "five_kill_rounds": [ - 2946 + 2952 ], "flash_assists": [ - 2946 + 2952 ], "flashes_thrown": [ - 2946 + 2952 ], "four_kill_rounds": [ - 2946 + 2952 ], "he_damage": [ - 2946 + 2952 ], "he_team_damage": [ - 2946 + 2952 ], "he_throws": [ - 2946 + 2952 ], "headshot_hits": [ - 2946 + 2952 ], "hits": [ - 2946 + 2952 ], "hits_at_spotted": [ - 2946 + 2952 ], "hs_kills": [ - 2946 + 2952 ], "hs_kills_ct": [ - 2946 + 2952 ], "hs_kills_t": [ - 2946 + 2952 ], "kills": [ - 2946 + 2952 ], "kills_ct": [ - 2946 + 2952 ], "kills_t": [ - 2946 + 2952 ], "knife_kills": [ - 2946 + 2952 ], "molotov_damage": [ - 2946 + 2952 ], "molotov_throws": [ - 2946 + 2952 ], "non_awp_hits": [ - 2946 + 2952 ], "on_target_frames": [ - 2946 + 2952 ], "rounds_ct": [ - 2946 + 2952 ], "rounds_played": [ - 2946 + 2952 ], "rounds_t": [ - 2946 + 2952 ], "shots_at_spotted": [ - 2946 + 2952 ], "shots_fired": [ - 2946 + 2952 ], "smoke_throws": [ - 2946 + 2952 ], "spotted_count": [ - 2946 + 2952 ], "spotted_with_damage_count": [ - 2946 + 2952 ], "spray_hits": [ - 2946 + 2952 ], "spray_shots": [ - 2946 + 2952 ], "steam_id": [ - 2946 + 2952 ], "team_damage": [ - 2946 + 2952 ], "team_flashed": [ - 2946 + 2952 ], "three_kill_rounds": [ - 2946 + 2952 ], "total_engagement_frames": [ - 2946 + 2952 ], "trade_kill_attempts": [ - 2946 + 2952 ], "trade_kill_opportunities": [ - 2946 + 2952 ], "trade_kill_successes": [ - 2946 + 2952 ], "traded_death_attempts": [ - 2946 + 2952 ], "traded_death_opportunities": [ - 2946 + 2952 ], "traded_death_successes": [ - 2946 + 2952 ], "two_kill_rounds": [ - 2946 + 2952 ], "unused_utility_value": [ - 2946 + 2952 ], "utility_on_death": [ - 2946 + 2952 ], "wasted_magazine_shots": [ - 2946 + 2952 ], "zeus_kills": [ - 2946 + 2952 ], "__typename": [ 80 @@ -78150,10 +78685,10 @@ export default { }, "player_match_stats_v_stream_cursor_input": { "initial_value": [ - 3493 + 3499 ], "ordering": [ - 308 + 314 ], "__typename": [ 80 @@ -78170,13 +78705,13 @@ export default { 40 ], "avg_crosshair_angle_deg": [ - 2944 + 2950 ], "avg_flash_duration": [ - 2944 + 2950 ], "avg_time_to_damage_s": [ - 2944 + 2950 ], "counter_strafe_eligible_shots": [ 40 @@ -78266,7 +78801,7 @@ export default { 40 ], "match_id": [ - 4993 + 4999 ], "molotov_damage": [ 40 @@ -78311,7 +78846,7 @@ export default { 40 ], "steam_id": [ - 252 + 258 ], "team_damage": [ 40 @@ -78350,7 +78885,7 @@ export default { 40 ], "utility_on_death": [ - 2944 + 2950 ], "wasted_magazine_shots": [ 40 @@ -78373,13 +78908,13 @@ export default { 40 ], "avg_crosshair_angle_deg": [ - 2944 + 2950 ], "avg_flash_duration": [ - 2944 + 2950 ], "avg_time_to_damage_s": [ - 2944 + 2950 ], "counter_strafe_eligible_shots": [ 40 @@ -78511,7 +79046,7 @@ export default { 40 ], "steam_id": [ - 252 + 258 ], "team_damage": [ 40 @@ -78550,7 +79085,7 @@ export default { 40 ], "utility_on_death": [ - 2944 + 2950 ], "wasted_magazine_shots": [ 40 @@ -78564,199 +79099,199 @@ export default { }, "player_match_stats_v_sum_order_by": { "assists": [ - 2946 + 2952 ], "assists_ct": [ - 2946 + 2952 ], "assists_t": [ - 2946 + 2952 ], "avg_crosshair_angle_deg": [ - 2946 + 2952 ], "avg_flash_duration": [ - 2946 + 2952 ], "avg_time_to_damage_s": [ - 2946 + 2952 ], "counter_strafe_eligible_shots": [ - 2946 + 2952 ], "counter_strafed_shots": [ - 2946 + 2952 ], "damage": [ - 2946 + 2952 ], "damage_ct": [ - 2946 + 2952 ], "damage_t": [ - 2946 + 2952 ], "deaths": [ - 2946 + 2952 ], "deaths_ct": [ - 2946 + 2952 ], "deaths_t": [ - 2946 + 2952 ], "decoy_throws": [ - 2946 + 2952 ], "enemies_flashed": [ - 2946 + 2952 ], "first_bullet_hits": [ - 2946 + 2952 ], "first_bullet_shots": [ - 2946 + 2952 ], "five_kill_rounds": [ - 2946 + 2952 ], "flash_assists": [ - 2946 + 2952 ], "flashes_thrown": [ - 2946 + 2952 ], "four_kill_rounds": [ - 2946 + 2952 ], "he_damage": [ - 2946 + 2952 ], "he_team_damage": [ - 2946 + 2952 ], "he_throws": [ - 2946 + 2952 ], "headshot_hits": [ - 2946 + 2952 ], "hits": [ - 2946 + 2952 ], "hits_at_spotted": [ - 2946 + 2952 ], "hs_kills": [ - 2946 + 2952 ], "hs_kills_ct": [ - 2946 + 2952 ], "hs_kills_t": [ - 2946 + 2952 ], "kills": [ - 2946 + 2952 ], "kills_ct": [ - 2946 + 2952 ], "kills_t": [ - 2946 + 2952 ], "knife_kills": [ - 2946 + 2952 ], "molotov_damage": [ - 2946 + 2952 ], "molotov_throws": [ - 2946 + 2952 ], "non_awp_hits": [ - 2946 + 2952 ], "on_target_frames": [ - 2946 + 2952 ], "rounds_ct": [ - 2946 + 2952 ], "rounds_played": [ - 2946 + 2952 ], "rounds_t": [ - 2946 + 2952 ], "shots_at_spotted": [ - 2946 + 2952 ], "shots_fired": [ - 2946 + 2952 ], "smoke_throws": [ - 2946 + 2952 ], "spotted_count": [ - 2946 + 2952 ], "spotted_with_damage_count": [ - 2946 + 2952 ], "spray_hits": [ - 2946 + 2952 ], "spray_shots": [ - 2946 + 2952 ], "steam_id": [ - 2946 + 2952 ], "team_damage": [ - 2946 + 2952 ], "team_flashed": [ - 2946 + 2952 ], "three_kill_rounds": [ - 2946 + 2952 ], "total_engagement_frames": [ - 2946 + 2952 ], "trade_kill_attempts": [ - 2946 + 2952 ], "trade_kill_opportunities": [ - 2946 + 2952 ], "trade_kill_successes": [ - 2946 + 2952 ], "traded_death_attempts": [ - 2946 + 2952 ], "traded_death_opportunities": [ - 2946 + 2952 ], "traded_death_successes": [ - 2946 + 2952 ], "two_kill_rounds": [ - 2946 + 2952 ], "unused_utility_value": [ - 2946 + 2952 ], "utility_on_death": [ - 2946 + 2952 ], "wasted_magazine_shots": [ - 2946 + 2952 ], "zeus_kills": [ - 2946 + 2952 ], "__typename": [ 80 @@ -78964,199 +79499,199 @@ export default { }, "player_match_stats_v_var_pop_order_by": { "assists": [ - 2946 + 2952 ], "assists_ct": [ - 2946 + 2952 ], "assists_t": [ - 2946 + 2952 ], "avg_crosshair_angle_deg": [ - 2946 + 2952 ], "avg_flash_duration": [ - 2946 + 2952 ], "avg_time_to_damage_s": [ - 2946 + 2952 ], "counter_strafe_eligible_shots": [ - 2946 + 2952 ], "counter_strafed_shots": [ - 2946 + 2952 ], "damage": [ - 2946 + 2952 ], "damage_ct": [ - 2946 + 2952 ], "damage_t": [ - 2946 + 2952 ], "deaths": [ - 2946 + 2952 ], "deaths_ct": [ - 2946 + 2952 ], "deaths_t": [ - 2946 + 2952 ], "decoy_throws": [ - 2946 + 2952 ], "enemies_flashed": [ - 2946 + 2952 ], "first_bullet_hits": [ - 2946 + 2952 ], "first_bullet_shots": [ - 2946 + 2952 ], "five_kill_rounds": [ - 2946 + 2952 ], "flash_assists": [ - 2946 + 2952 ], "flashes_thrown": [ - 2946 + 2952 ], "four_kill_rounds": [ - 2946 + 2952 ], "he_damage": [ - 2946 + 2952 ], "he_team_damage": [ - 2946 + 2952 ], "he_throws": [ - 2946 + 2952 ], "headshot_hits": [ - 2946 + 2952 ], "hits": [ - 2946 + 2952 ], "hits_at_spotted": [ - 2946 + 2952 ], "hs_kills": [ - 2946 + 2952 ], "hs_kills_ct": [ - 2946 + 2952 ], "hs_kills_t": [ - 2946 + 2952 ], "kills": [ - 2946 + 2952 ], "kills_ct": [ - 2946 + 2952 ], "kills_t": [ - 2946 + 2952 ], "knife_kills": [ - 2946 + 2952 ], "molotov_damage": [ - 2946 + 2952 ], "molotov_throws": [ - 2946 + 2952 ], "non_awp_hits": [ - 2946 + 2952 ], "on_target_frames": [ - 2946 + 2952 ], "rounds_ct": [ - 2946 + 2952 ], "rounds_played": [ - 2946 + 2952 ], "rounds_t": [ - 2946 + 2952 ], "shots_at_spotted": [ - 2946 + 2952 ], "shots_fired": [ - 2946 + 2952 ], "smoke_throws": [ - 2946 + 2952 ], "spotted_count": [ - 2946 + 2952 ], "spotted_with_damage_count": [ - 2946 + 2952 ], "spray_hits": [ - 2946 + 2952 ], "spray_shots": [ - 2946 + 2952 ], "steam_id": [ - 2946 + 2952 ], "team_damage": [ - 2946 + 2952 ], "team_flashed": [ - 2946 + 2952 ], "three_kill_rounds": [ - 2946 + 2952 ], "total_engagement_frames": [ - 2946 + 2952 ], "trade_kill_attempts": [ - 2946 + 2952 ], "trade_kill_opportunities": [ - 2946 + 2952 ], "trade_kill_successes": [ - 2946 + 2952 ], "traded_death_attempts": [ - 2946 + 2952 ], "traded_death_opportunities": [ - 2946 + 2952 ], "traded_death_successes": [ - 2946 + 2952 ], "two_kill_rounds": [ - 2946 + 2952 ], "unused_utility_value": [ - 2946 + 2952 ], "utility_on_death": [ - 2946 + 2952 ], "wasted_magazine_shots": [ - 2946 + 2952 ], "zeus_kills": [ - 2946 + 2952 ], "__typename": [ 80 @@ -79364,199 +79899,199 @@ export default { }, "player_match_stats_v_var_samp_order_by": { "assists": [ - 2946 + 2952 ], "assists_ct": [ - 2946 + 2952 ], "assists_t": [ - 2946 + 2952 ], "avg_crosshair_angle_deg": [ - 2946 + 2952 ], "avg_flash_duration": [ - 2946 + 2952 ], "avg_time_to_damage_s": [ - 2946 + 2952 ], "counter_strafe_eligible_shots": [ - 2946 + 2952 ], "counter_strafed_shots": [ - 2946 + 2952 ], "damage": [ - 2946 + 2952 ], "damage_ct": [ - 2946 + 2952 ], "damage_t": [ - 2946 + 2952 ], "deaths": [ - 2946 + 2952 ], "deaths_ct": [ - 2946 + 2952 ], "deaths_t": [ - 2946 + 2952 ], "decoy_throws": [ - 2946 + 2952 ], "enemies_flashed": [ - 2946 + 2952 ], "first_bullet_hits": [ - 2946 + 2952 ], "first_bullet_shots": [ - 2946 + 2952 ], "five_kill_rounds": [ - 2946 + 2952 ], "flash_assists": [ - 2946 + 2952 ], "flashes_thrown": [ - 2946 + 2952 ], "four_kill_rounds": [ - 2946 + 2952 ], "he_damage": [ - 2946 + 2952 ], "he_team_damage": [ - 2946 + 2952 ], "he_throws": [ - 2946 + 2952 ], "headshot_hits": [ - 2946 + 2952 ], "hits": [ - 2946 + 2952 ], "hits_at_spotted": [ - 2946 + 2952 ], "hs_kills": [ - 2946 + 2952 ], "hs_kills_ct": [ - 2946 + 2952 ], "hs_kills_t": [ - 2946 + 2952 ], "kills": [ - 2946 + 2952 ], "kills_ct": [ - 2946 + 2952 ], "kills_t": [ - 2946 + 2952 ], "knife_kills": [ - 2946 + 2952 ], "molotov_damage": [ - 2946 + 2952 ], "molotov_throws": [ - 2946 + 2952 ], "non_awp_hits": [ - 2946 + 2952 ], "on_target_frames": [ - 2946 + 2952 ], "rounds_ct": [ - 2946 + 2952 ], "rounds_played": [ - 2946 + 2952 ], "rounds_t": [ - 2946 + 2952 ], "shots_at_spotted": [ - 2946 + 2952 ], "shots_fired": [ - 2946 + 2952 ], "smoke_throws": [ - 2946 + 2952 ], "spotted_count": [ - 2946 + 2952 ], "spotted_with_damage_count": [ - 2946 + 2952 ], "spray_hits": [ - 2946 + 2952 ], "spray_shots": [ - 2946 + 2952 ], "steam_id": [ - 2946 + 2952 ], "team_damage": [ - 2946 + 2952 ], "team_flashed": [ - 2946 + 2952 ], "three_kill_rounds": [ - 2946 + 2952 ], "total_engagement_frames": [ - 2946 + 2952 ], "trade_kill_attempts": [ - 2946 + 2952 ], "trade_kill_opportunities": [ - 2946 + 2952 ], "trade_kill_successes": [ - 2946 + 2952 ], "traded_death_attempts": [ - 2946 + 2952 ], "traded_death_opportunities": [ - 2946 + 2952 ], "traded_death_successes": [ - 2946 + 2952 ], "two_kill_rounds": [ - 2946 + 2952 ], "unused_utility_value": [ - 2946 + 2952 ], "utility_on_death": [ - 2946 + 2952 ], "wasted_magazine_shots": [ - 2946 + 2952 ], "zeus_kills": [ - 2946 + 2952 ], "__typename": [ 80 @@ -79764,199 +80299,199 @@ export default { }, "player_match_stats_v_variance_order_by": { "assists": [ - 2946 + 2952 ], "assists_ct": [ - 2946 + 2952 ], "assists_t": [ - 2946 + 2952 ], "avg_crosshair_angle_deg": [ - 2946 + 2952 ], "avg_flash_duration": [ - 2946 + 2952 ], "avg_time_to_damage_s": [ - 2946 + 2952 ], "counter_strafe_eligible_shots": [ - 2946 + 2952 ], "counter_strafed_shots": [ - 2946 + 2952 ], "damage": [ - 2946 + 2952 ], "damage_ct": [ - 2946 + 2952 ], "damage_t": [ - 2946 + 2952 ], "deaths": [ - 2946 + 2952 ], "deaths_ct": [ - 2946 + 2952 ], "deaths_t": [ - 2946 + 2952 ], "decoy_throws": [ - 2946 + 2952 ], "enemies_flashed": [ - 2946 + 2952 ], "first_bullet_hits": [ - 2946 + 2952 ], "first_bullet_shots": [ - 2946 + 2952 ], "five_kill_rounds": [ - 2946 + 2952 ], "flash_assists": [ - 2946 + 2952 ], "flashes_thrown": [ - 2946 + 2952 ], "four_kill_rounds": [ - 2946 + 2952 ], "he_damage": [ - 2946 + 2952 ], "he_team_damage": [ - 2946 + 2952 ], "he_throws": [ - 2946 + 2952 ], "headshot_hits": [ - 2946 + 2952 ], "hits": [ - 2946 + 2952 ], "hits_at_spotted": [ - 2946 + 2952 ], "hs_kills": [ - 2946 + 2952 ], "hs_kills_ct": [ - 2946 + 2952 ], "hs_kills_t": [ - 2946 + 2952 ], "kills": [ - 2946 + 2952 ], "kills_ct": [ - 2946 + 2952 ], "kills_t": [ - 2946 + 2952 ], "knife_kills": [ - 2946 + 2952 ], "molotov_damage": [ - 2946 + 2952 ], "molotov_throws": [ - 2946 + 2952 ], "non_awp_hits": [ - 2946 + 2952 ], "on_target_frames": [ - 2946 + 2952 ], "rounds_ct": [ - 2946 + 2952 ], "rounds_played": [ - 2946 + 2952 ], "rounds_t": [ - 2946 + 2952 ], "shots_at_spotted": [ - 2946 + 2952 ], "shots_fired": [ - 2946 + 2952 ], "smoke_throws": [ - 2946 + 2952 ], "spotted_count": [ - 2946 + 2952 ], "spotted_with_damage_count": [ - 2946 + 2952 ], "spray_hits": [ - 2946 + 2952 ], "spray_shots": [ - 2946 + 2952 ], "steam_id": [ - 2946 + 2952 ], "team_damage": [ - 2946 + 2952 ], "team_flashed": [ - 2946 + 2952 ], "three_kill_rounds": [ - 2946 + 2952 ], "total_engagement_frames": [ - 2946 + 2952 ], "trade_kill_attempts": [ - 2946 + 2952 ], "trade_kill_opportunities": [ - 2946 + 2952 ], "trade_kill_successes": [ - 2946 + 2952 ], "traded_death_attempts": [ - 2946 + 2952 ], "traded_death_opportunities": [ - 2946 + 2952 ], "traded_death_successes": [ - 2946 + 2952 ], "two_kill_rounds": [ - 2946 + 2952 ], "unused_utility_value": [ - 2946 + 2952 ], "utility_on_death": [ - 2946 + 2952 ], "wasted_magazine_shots": [ - 2946 + 2952 ], "zeus_kills": [ - 2946 + 2952 ], "__typename": [ 80 @@ -79964,34 +80499,34 @@ export default { }, "player_objectives": { "deleted_at": [ - 4493 + 4499 ], "match": [ - 2761 + 2767 ], "match_id": [ - 4993 + 4999 ], "match_map": [ - 2599 + 2605 ], "match_map_id": [ - 4993 + 4999 ], "player": [ - 3904 + 3910 ], "player_steam_id": [ - 252 + 258 ], "round": [ 40 ], "time": [ - 4493 + 4499 ], "type": [ - 1045 + 1051 ], "__typename": [ 80 @@ -79999,10 +80534,10 @@ export default { }, "player_objectives_aggregate": { "aggregate": [ - 3506 + 3512 ], "nodes": [ - 3502 + 3508 ], "__typename": [ 80 @@ -80010,7 +80545,7 @@ export default { }, "player_objectives_aggregate_bool_exp": { "count": [ - 3505 + 3511 ], "__typename": [ 80 @@ -80018,13 +80553,13 @@ export default { }, "player_objectives_aggregate_bool_exp_count": { "arguments": [ - 3523 + 3529 ], "distinct": [ 5 ], "filter": [ - 3511 + 3517 ], "predicate": [ 41 @@ -80035,13 +80570,13 @@ export default { }, "player_objectives_aggregate_fields": { "avg": [ - 3509 + 3515 ], "count": [ 40, { "columns": [ - 3523, + 3529, "[player_objectives_select_column!]" ], "distinct": [ @@ -80050,31 +80585,31 @@ export default { } ], "max": [ - 3515 + 3521 ], "min": [ - 3517 + 3523 ], "stddev": [ - 3525 + 3531 ], "stddev_pop": [ - 3527 + 3533 ], "stddev_samp": [ - 3529 + 3535 ], "sum": [ - 3533 + 3539 ], "var_pop": [ - 3537 + 3543 ], "var_samp": [ - 3539 + 3545 ], "variance": [ - 3541 + 3547 ], "__typename": [ 80 @@ -80082,37 +80617,37 @@ export default { }, "player_objectives_aggregate_order_by": { "avg": [ - 3510 + 3516 ], "count": [ - 2946 + 2952 ], "max": [ - 3516 + 3522 ], "min": [ - 3518 + 3524 ], "stddev": [ - 3526 + 3532 ], "stddev_pop": [ - 3528 + 3534 ], "stddev_samp": [ - 3530 + 3536 ], "sum": [ - 3534 + 3540 ], "var_pop": [ - 3538 + 3544 ], "var_samp": [ - 3540 + 3546 ], "variance": [ - 3542 + 3548 ], "__typename": [ 80 @@ -80120,10 +80655,10 @@ export default { }, "player_objectives_arr_rel_insert_input": { "data": [ - 3514 + 3520 ], "on_conflict": [ - 3520 + 3526 ], "__typename": [ 80 @@ -80142,10 +80677,10 @@ export default { }, "player_objectives_avg_order_by": { "player_steam_id": [ - 2946 + 2952 ], "round": [ - 2946 + 2952 ], "__typename": [ 80 @@ -80153,43 +80688,43 @@ export default { }, "player_objectives_bool_exp": { "_and": [ - 3511 + 3517 ], "_not": [ - 3511 + 3517 ], "_or": [ - 3511 + 3517 ], "deleted_at": [ - 4494 + 4500 ], "match": [ - 2770 + 2776 ], "match_id": [ - 4995 + 5001 ], "match_map": [ - 2608 + 2614 ], "match_map_id": [ - 4995 + 5001 ], "player": [ - 3908 + 3914 ], "player_steam_id": [ - 254 + 260 ], "round": [ 41 ], "time": [ - 4494 + 4500 ], "type": [ - 1046 + 1052 ], "__typename": [ 80 @@ -80198,7 +80733,7 @@ export default { "player_objectives_constraint": {}, "player_objectives_inc_input": { "player_steam_id": [ - 252 + 258 ], "round": [ 40 @@ -80209,34 +80744,34 @@ export default { }, "player_objectives_insert_input": { "deleted_at": [ - 4493 + 4499 ], "match": [ - 2779 + 2785 ], "match_id": [ - 4993 + 4999 ], "match_map": [ - 2617 + 2623 ], "match_map_id": [ - 4993 + 4999 ], "player": [ - 3915 + 3921 ], "player_steam_id": [ - 252 + 258 ], "round": [ 40 ], "time": [ - 4493 + 4499 ], "type": [ - 1045 + 1051 ], "__typename": [ 80 @@ -80244,22 +80779,22 @@ export default { }, "player_objectives_max_fields": { "deleted_at": [ - 4493 + 4499 ], "match_id": [ - 4993 + 4999 ], "match_map_id": [ - 4993 + 4999 ], "player_steam_id": [ - 252 + 258 ], "round": [ 40 ], "time": [ - 4493 + 4499 ], "__typename": [ 80 @@ -80267,22 +80802,22 @@ export default { }, "player_objectives_max_order_by": { "deleted_at": [ - 2946 + 2952 ], "match_id": [ - 2946 + 2952 ], "match_map_id": [ - 2946 + 2952 ], "player_steam_id": [ - 2946 + 2952 ], "round": [ - 2946 + 2952 ], "time": [ - 2946 + 2952 ], "__typename": [ 80 @@ -80290,22 +80825,22 @@ export default { }, "player_objectives_min_fields": { "deleted_at": [ - 4493 + 4499 ], "match_id": [ - 4993 + 4999 ], "match_map_id": [ - 4993 + 4999 ], "player_steam_id": [ - 252 + 258 ], "round": [ 40 ], "time": [ - 4493 + 4499 ], "__typename": [ 80 @@ -80313,22 +80848,22 @@ export default { }, "player_objectives_min_order_by": { "deleted_at": [ - 2946 + 2952 ], "match_id": [ - 2946 + 2952 ], "match_map_id": [ - 2946 + 2952 ], "player_steam_id": [ - 2946 + 2952 ], "round": [ - 2946 + 2952 ], "time": [ - 2946 + 2952 ], "__typename": [ 80 @@ -80339,7 +80874,7 @@ export default { 40 ], "returning": [ - 3502 + 3508 ], "__typename": [ 80 @@ -80347,13 +80882,13 @@ export default { }, "player_objectives_on_conflict": { "constraint": [ - 3512 + 3518 ], "update_columns": [ - 3535 + 3541 ], "where": [ - 3511 + 3517 ], "__typename": [ 80 @@ -80361,34 +80896,34 @@ export default { }, "player_objectives_order_by": { "deleted_at": [ - 2946 + 2952 ], "match": [ - 2781 + 2787 ], "match_id": [ - 2946 + 2952 ], "match_map": [ - 2619 + 2625 ], "match_map_id": [ - 2946 + 2952 ], "player": [ - 3917 + 3923 ], "player_steam_id": [ - 2946 + 2952 ], "round": [ - 2946 + 2952 ], "time": [ - 2946 + 2952 ], "type": [ - 2946 + 2952 ], "__typename": [ 80 @@ -80396,13 +80931,13 @@ export default { }, "player_objectives_pk_columns_input": { "match_map_id": [ - 4993 + 4999 ], "player_steam_id": [ - 252 + 258 ], "time": [ - 4493 + 4499 ], "__typename": [ 80 @@ -80411,25 +80946,25 @@ export default { "player_objectives_select_column": {}, "player_objectives_set_input": { "deleted_at": [ - 4493 + 4499 ], "match_id": [ - 4993 + 4999 ], "match_map_id": [ - 4993 + 4999 ], "player_steam_id": [ - 252 + 258 ], "round": [ 40 ], "time": [ - 4493 + 4499 ], "type": [ - 1045 + 1051 ], "__typename": [ 80 @@ -80448,10 +80983,10 @@ export default { }, "player_objectives_stddev_order_by": { "player_steam_id": [ - 2946 + 2952 ], "round": [ - 2946 + 2952 ], "__typename": [ 80 @@ -80470,10 +81005,10 @@ export default { }, "player_objectives_stddev_pop_order_by": { "player_steam_id": [ - 2946 + 2952 ], "round": [ - 2946 + 2952 ], "__typename": [ 80 @@ -80492,10 +81027,10 @@ export default { }, "player_objectives_stddev_samp_order_by": { "player_steam_id": [ - 2946 + 2952 ], "round": [ - 2946 + 2952 ], "__typename": [ 80 @@ -80503,10 +81038,10 @@ export default { }, "player_objectives_stream_cursor_input": { "initial_value": [ - 3532 + 3538 ], "ordering": [ - 308 + 314 ], "__typename": [ 80 @@ -80514,25 +81049,25 @@ export default { }, "player_objectives_stream_cursor_value_input": { "deleted_at": [ - 4493 + 4499 ], "match_id": [ - 4993 + 4999 ], "match_map_id": [ - 4993 + 4999 ], "player_steam_id": [ - 252 + 258 ], "round": [ 40 ], "time": [ - 4493 + 4499 ], "type": [ - 1045 + 1051 ], "__typename": [ 80 @@ -80540,7 +81075,7 @@ export default { }, "player_objectives_sum_fields": { "player_steam_id": [ - 252 + 258 ], "round": [ 40 @@ -80551,10 +81086,10 @@ export default { }, "player_objectives_sum_order_by": { "player_steam_id": [ - 2946 + 2952 ], "round": [ - 2946 + 2952 ], "__typename": [ 80 @@ -80563,13 +81098,13 @@ export default { "player_objectives_update_column": {}, "player_objectives_updates": { "_inc": [ - 3513 + 3519 ], "_set": [ - 3524 + 3530 ], "where": [ - 3511 + 3517 ], "__typename": [ 80 @@ -80588,10 +81123,10 @@ export default { }, "player_objectives_var_pop_order_by": { "player_steam_id": [ - 2946 + 2952 ], "round": [ - 2946 + 2952 ], "__typename": [ 80 @@ -80610,10 +81145,10 @@ export default { }, "player_objectives_var_samp_order_by": { "player_steam_id": [ - 2946 + 2952 ], "round": [ - 2946 + 2952 ], "__typename": [ 80 @@ -80632,10 +81167,10 @@ export default { }, "player_objectives_variance_order_by": { "player_steam_id": [ - 2946 + 2952 ], "round": [ - 2946 + 2952 ], "__typename": [ 80 @@ -80643,46 +81178,46 @@ export default { }, "player_performance_v": { "accuracy_score": [ - 1664 + 1670 ], "aim_goal": [ - 1664 + 1670 ], "aim_rating": [ - 1664 + 1670 ], "band": [ 40 ], "band_sample": [ - 252 + 258 ], "blind_score": [ - 1664 + 1670 ], "counter_strafe_score": [ - 1664 + 1670 ], "crosshair_score": [ - 1664 + 1670 ], "flash_assists_score": [ - 1664 + 1670 ], "hs_score": [ - 1664 + 1670 ], "kast_score": [ - 1664 + 1670 ], "maps": [ 40 ], "positioning_goal": [ - 1664 + 1670 ], "positioning_rating": [ - 1664 + 1670 ], "premier_rank": [ 40 @@ -80691,28 +81226,28 @@ export default { 40 ], "spotted_score": [ - 1664 + 1670 ], "steam_id": [ - 252 + 258 ], "survival_score": [ - 1664 + 1670 ], "traded_score": [ - 1664 + 1670 ], "ttd_score": [ - 1664 + 1670 ], "util_eff_score": [ - 1664 + 1670 ], "utility_goal": [ - 1664 + 1670 ], "utility_rating": [ - 1664 + 1670 ], "__typename": [ 80 @@ -80720,10 +81255,10 @@ export default { }, "player_performance_v_aggregate": { "aggregate": [ - 3545 + 3551 ], "nodes": [ - 3543 + 3549 ], "__typename": [ 80 @@ -80731,13 +81266,13 @@ export default { }, "player_performance_v_aggregate_fields": { "avg": [ - 3546 + 3552 ], "count": [ 40, { "columns": [ - 3551, + 3557, "[player_performance_v_select_column!]" ], "distinct": [ @@ -80746,31 +81281,31 @@ export default { } ], "max": [ - 3548 + 3554 ], "min": [ - 3549 + 3555 ], "stddev": [ - 3552 + 3558 ], "stddev_pop": [ - 3553 + 3559 ], "stddev_samp": [ - 3554 + 3560 ], "sum": [ - 3557 + 3563 ], "var_pop": [ - 3558 + 3564 ], "var_samp": [ - 3559 + 3565 ], "variance": [ - 3560 + 3566 ], "__typename": [ 80 @@ -80855,55 +81390,55 @@ export default { }, "player_performance_v_bool_exp": { "_and": [ - 3547 + 3553 ], "_not": [ - 3547 + 3553 ], "_or": [ - 3547 + 3553 ], "accuracy_score": [ - 1665 + 1671 ], "aim_goal": [ - 1665 + 1671 ], "aim_rating": [ - 1665 + 1671 ], "band": [ 41 ], "band_sample": [ - 254 + 260 ], "blind_score": [ - 1665 + 1671 ], "counter_strafe_score": [ - 1665 + 1671 ], "crosshair_score": [ - 1665 + 1671 ], "flash_assists_score": [ - 1665 + 1671 ], "hs_score": [ - 1665 + 1671 ], "kast_score": [ - 1665 + 1671 ], "maps": [ 41 ], "positioning_goal": [ - 1665 + 1671 ], "positioning_rating": [ - 1665 + 1671 ], "premier_rank": [ 41 @@ -80912,28 +81447,28 @@ export default { 41 ], "spotted_score": [ - 1665 + 1671 ], "steam_id": [ - 254 + 260 ], "survival_score": [ - 1665 + 1671 ], "traded_score": [ - 1665 + 1671 ], "ttd_score": [ - 1665 + 1671 ], "util_eff_score": [ - 1665 + 1671 ], "utility_goal": [ - 1665 + 1671 ], "utility_rating": [ - 1665 + 1671 ], "__typename": [ 80 @@ -80941,46 +81476,46 @@ export default { }, "player_performance_v_max_fields": { "accuracy_score": [ - 1664 + 1670 ], "aim_goal": [ - 1664 + 1670 ], "aim_rating": [ - 1664 + 1670 ], "band": [ 40 ], "band_sample": [ - 252 + 258 ], "blind_score": [ - 1664 + 1670 ], "counter_strafe_score": [ - 1664 + 1670 ], "crosshair_score": [ - 1664 + 1670 ], "flash_assists_score": [ - 1664 + 1670 ], "hs_score": [ - 1664 + 1670 ], "kast_score": [ - 1664 + 1670 ], "maps": [ 40 ], "positioning_goal": [ - 1664 + 1670 ], "positioning_rating": [ - 1664 + 1670 ], "premier_rank": [ 40 @@ -80989,28 +81524,28 @@ export default { 40 ], "spotted_score": [ - 1664 + 1670 ], "steam_id": [ - 252 + 258 ], "survival_score": [ - 1664 + 1670 ], "traded_score": [ - 1664 + 1670 ], "ttd_score": [ - 1664 + 1670 ], "util_eff_score": [ - 1664 + 1670 ], "utility_goal": [ - 1664 + 1670 ], "utility_rating": [ - 1664 + 1670 ], "__typename": [ 80 @@ -81018,46 +81553,46 @@ export default { }, "player_performance_v_min_fields": { "accuracy_score": [ - 1664 + 1670 ], "aim_goal": [ - 1664 + 1670 ], "aim_rating": [ - 1664 + 1670 ], "band": [ 40 ], "band_sample": [ - 252 + 258 ], "blind_score": [ - 1664 + 1670 ], "counter_strafe_score": [ - 1664 + 1670 ], "crosshair_score": [ - 1664 + 1670 ], "flash_assists_score": [ - 1664 + 1670 ], "hs_score": [ - 1664 + 1670 ], "kast_score": [ - 1664 + 1670 ], "maps": [ 40 ], "positioning_goal": [ - 1664 + 1670 ], "positioning_rating": [ - 1664 + 1670 ], "premier_rank": [ 40 @@ -81066,28 +81601,28 @@ export default { 40 ], "spotted_score": [ - 1664 + 1670 ], "steam_id": [ - 252 + 258 ], "survival_score": [ - 1664 + 1670 ], "traded_score": [ - 1664 + 1670 ], "ttd_score": [ - 1664 + 1670 ], "util_eff_score": [ - 1664 + 1670 ], "utility_goal": [ - 1664 + 1670 ], "utility_rating": [ - 1664 + 1670 ], "__typename": [ 80 @@ -81095,76 +81630,76 @@ export default { }, "player_performance_v_order_by": { "accuracy_score": [ - 2946 + 2952 ], "aim_goal": [ - 2946 + 2952 ], "aim_rating": [ - 2946 + 2952 ], "band": [ - 2946 + 2952 ], "band_sample": [ - 2946 + 2952 ], "blind_score": [ - 2946 + 2952 ], "counter_strafe_score": [ - 2946 + 2952 ], "crosshair_score": [ - 2946 + 2952 ], "flash_assists_score": [ - 2946 + 2952 ], "hs_score": [ - 2946 + 2952 ], "kast_score": [ - 2946 + 2952 ], "maps": [ - 2946 + 2952 ], "positioning_goal": [ - 2946 + 2952 ], "positioning_rating": [ - 2946 + 2952 ], "premier_rank": [ - 2946 + 2952 ], "rounds": [ - 2946 + 2952 ], "spotted_score": [ - 2946 + 2952 ], "steam_id": [ - 2946 + 2952 ], "survival_score": [ - 2946 + 2952 ], "traded_score": [ - 2946 + 2952 ], "ttd_score": [ - 2946 + 2952 ], "util_eff_score": [ - 2946 + 2952 ], "utility_goal": [ - 2946 + 2952 ], "utility_rating": [ - 2946 + 2952 ], "__typename": [ 80 @@ -81404,10 +81939,10 @@ export default { }, "player_performance_v_stream_cursor_input": { "initial_value": [ - 3556 + 3562 ], "ordering": [ - 308 + 314 ], "__typename": [ 80 @@ -81415,46 +81950,46 @@ export default { }, "player_performance_v_stream_cursor_value_input": { "accuracy_score": [ - 1664 + 1670 ], "aim_goal": [ - 1664 + 1670 ], "aim_rating": [ - 1664 + 1670 ], "band": [ 40 ], "band_sample": [ - 252 + 258 ], "blind_score": [ - 1664 + 1670 ], "counter_strafe_score": [ - 1664 + 1670 ], "crosshair_score": [ - 1664 + 1670 ], "flash_assists_score": [ - 1664 + 1670 ], "hs_score": [ - 1664 + 1670 ], "kast_score": [ - 1664 + 1670 ], "maps": [ 40 ], "positioning_goal": [ - 1664 + 1670 ], "positioning_rating": [ - 1664 + 1670 ], "premier_rank": [ 40 @@ -81463,28 +81998,28 @@ export default { 40 ], "spotted_score": [ - 1664 + 1670 ], "steam_id": [ - 252 + 258 ], "survival_score": [ - 1664 + 1670 ], "traded_score": [ - 1664 + 1670 ], "ttd_score": [ - 1664 + 1670 ], "util_eff_score": [ - 1664 + 1670 ], "utility_goal": [ - 1664 + 1670 ], "utility_rating": [ - 1664 + 1670 ], "__typename": [ 80 @@ -81492,46 +82027,46 @@ export default { }, "player_performance_v_sum_fields": { "accuracy_score": [ - 1664 + 1670 ], "aim_goal": [ - 1664 + 1670 ], "aim_rating": [ - 1664 + 1670 ], "band": [ 40 ], "band_sample": [ - 252 + 258 ], "blind_score": [ - 1664 + 1670 ], "counter_strafe_score": [ - 1664 + 1670 ], "crosshair_score": [ - 1664 + 1670 ], "flash_assists_score": [ - 1664 + 1670 ], "hs_score": [ - 1664 + 1670 ], "kast_score": [ - 1664 + 1670 ], "maps": [ 40 ], "positioning_goal": [ - 1664 + 1670 ], "positioning_rating": [ - 1664 + 1670 ], "premier_rank": [ 40 @@ -81540,28 +82075,28 @@ export default { 40 ], "spotted_score": [ - 1664 + 1670 ], "steam_id": [ - 252 + 258 ], "survival_score": [ - 1664 + 1670 ], "traded_score": [ - 1664 + 1670 ], "ttd_score": [ - 1664 + 1670 ], "util_eff_score": [ - 1664 + 1670 ], "utility_goal": [ - 1664 + 1670 ], "utility_rating": [ - 1664 + 1670 ], "__typename": [ 80 @@ -81800,25 +82335,25 @@ export default { }, "player_premier_rank_history": { "id": [ - 4993 + 4999 ], "map": [ - 2279 + 2285 ], "map_id": [ - 4993 + 4999 ], "match": [ - 2761 + 2767 ], "match_id": [ - 4993 + 4999 ], "observed_at": [ - 4493 + 4499 ], "player": [ - 3904 + 3910 ], "previous_rank": [ 40 @@ -81830,7 +82365,7 @@ export default { 40 ], "steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -81838,10 +82373,10 @@ export default { }, "player_premier_rank_history_aggregate": { "aggregate": [ - 3565 + 3571 ], "nodes": [ - 3561 + 3567 ], "__typename": [ 80 @@ -81849,7 +82384,7 @@ export default { }, "player_premier_rank_history_aggregate_bool_exp": { "count": [ - 3564 + 3570 ], "__typename": [ 80 @@ -81857,13 +82392,13 @@ export default { }, "player_premier_rank_history_aggregate_bool_exp_count": { "arguments": [ - 3582 + 3588 ], "distinct": [ 5 ], "filter": [ - 3570 + 3576 ], "predicate": [ 41 @@ -81874,13 +82409,13 @@ export default { }, "player_premier_rank_history_aggregate_fields": { "avg": [ - 3568 + 3574 ], "count": [ 40, { "columns": [ - 3582, + 3588, "[player_premier_rank_history_select_column!]" ], "distinct": [ @@ -81889,31 +82424,31 @@ export default { } ], "max": [ - 3574 + 3580 ], "min": [ - 3576 + 3582 ], "stddev": [ - 3584 + 3590 ], "stddev_pop": [ - 3586 + 3592 ], "stddev_samp": [ - 3588 + 3594 ], "sum": [ - 3592 + 3598 ], "var_pop": [ - 3596 + 3602 ], "var_samp": [ - 3598 + 3604 ], "variance": [ - 3600 + 3606 ], "__typename": [ 80 @@ -81921,37 +82456,37 @@ export default { }, "player_premier_rank_history_aggregate_order_by": { "avg": [ - 3569 + 3575 ], "count": [ - 2946 + 2952 ], "max": [ - 3575 + 3581 ], "min": [ - 3577 + 3583 ], "stddev": [ - 3585 + 3591 ], "stddev_pop": [ - 3587 + 3593 ], "stddev_samp": [ - 3589 + 3595 ], "sum": [ - 3593 + 3599 ], "var_pop": [ - 3597 + 3603 ], "var_samp": [ - 3599 + 3605 ], "variance": [ - 3601 + 3607 ], "__typename": [ 80 @@ -81959,10 +82494,10 @@ export default { }, "player_premier_rank_history_arr_rel_insert_input": { "data": [ - 3573 + 3579 ], "on_conflict": [ - 3579 + 3585 ], "__typename": [ 80 @@ -81987,16 +82522,16 @@ export default { }, "player_premier_rank_history_avg_order_by": { "previous_rank": [ - 2946 + 2952 ], "rank": [ - 2946 + 2952 ], "rank_type": [ - 2946 + 2952 ], "steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -82004,34 +82539,34 @@ export default { }, "player_premier_rank_history_bool_exp": { "_and": [ - 3570 + 3576 ], "_not": [ - 3570 + 3576 ], "_or": [ - 3570 + 3576 ], "id": [ - 4995 + 5001 ], "map": [ - 2288 + 2294 ], "map_id": [ - 4995 + 5001 ], "match": [ - 2770 + 2776 ], "match_id": [ - 4995 + 5001 ], "observed_at": [ - 4494 + 4500 ], "player": [ - 3908 + 3914 ], "previous_rank": [ 41 @@ -82043,7 +82578,7 @@ export default { 41 ], "steam_id": [ - 254 + 260 ], "__typename": [ 80 @@ -82061,7 +82596,7 @@ export default { 40 ], "steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -82069,25 +82604,25 @@ export default { }, "player_premier_rank_history_insert_input": { "id": [ - 4993 + 4999 ], "map": [ - 2296 + 2302 ], "map_id": [ - 4993 + 4999 ], "match": [ - 2779 + 2785 ], "match_id": [ - 4993 + 4999 ], "observed_at": [ - 4493 + 4499 ], "player": [ - 3915 + 3921 ], "previous_rank": [ 40 @@ -82099,7 +82634,7 @@ export default { 40 ], "steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -82107,16 +82642,16 @@ export default { }, "player_premier_rank_history_max_fields": { "id": [ - 4993 + 4999 ], "map_id": [ - 4993 + 4999 ], "match_id": [ - 4993 + 4999 ], "observed_at": [ - 4493 + 4499 ], "previous_rank": [ 40 @@ -82128,7 +82663,7 @@ export default { 40 ], "steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -82136,28 +82671,28 @@ export default { }, "player_premier_rank_history_max_order_by": { "id": [ - 2946 + 2952 ], "map_id": [ - 2946 + 2952 ], "match_id": [ - 2946 + 2952 ], "observed_at": [ - 2946 + 2952 ], "previous_rank": [ - 2946 + 2952 ], "rank": [ - 2946 + 2952 ], "rank_type": [ - 2946 + 2952 ], "steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -82165,16 +82700,16 @@ export default { }, "player_premier_rank_history_min_fields": { "id": [ - 4993 + 4999 ], "map_id": [ - 4993 + 4999 ], "match_id": [ - 4993 + 4999 ], "observed_at": [ - 4493 + 4499 ], "previous_rank": [ 40 @@ -82186,7 +82721,7 @@ export default { 40 ], "steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -82194,28 +82729,28 @@ export default { }, "player_premier_rank_history_min_order_by": { "id": [ - 2946 + 2952 ], "map_id": [ - 2946 + 2952 ], "match_id": [ - 2946 + 2952 ], "observed_at": [ - 2946 + 2952 ], "previous_rank": [ - 2946 + 2952 ], "rank": [ - 2946 + 2952 ], "rank_type": [ - 2946 + 2952 ], "steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -82226,7 +82761,7 @@ export default { 40 ], "returning": [ - 3561 + 3567 ], "__typename": [ 80 @@ -82234,13 +82769,13 @@ export default { }, "player_premier_rank_history_on_conflict": { "constraint": [ - 3571 + 3577 ], "update_columns": [ - 3594 + 3600 ], "where": [ - 3570 + 3576 ], "__typename": [ 80 @@ -82248,37 +82783,37 @@ export default { }, "player_premier_rank_history_order_by": { "id": [ - 2946 + 2952 ], "map": [ - 2298 + 2304 ], "map_id": [ - 2946 + 2952 ], "match": [ - 2781 + 2787 ], "match_id": [ - 2946 + 2952 ], "observed_at": [ - 2946 + 2952 ], "player": [ - 3917 + 3923 ], "previous_rank": [ - 2946 + 2952 ], "rank": [ - 2946 + 2952 ], "rank_type": [ - 2946 + 2952 ], "steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -82286,7 +82821,7 @@ export default { }, "player_premier_rank_history_pk_columns_input": { "id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -82295,16 +82830,16 @@ export default { "player_premier_rank_history_select_column": {}, "player_premier_rank_history_set_input": { "id": [ - 4993 + 4999 ], "map_id": [ - 4993 + 4999 ], "match_id": [ - 4993 + 4999 ], "observed_at": [ - 4493 + 4499 ], "previous_rank": [ 40 @@ -82316,7 +82851,7 @@ export default { 40 ], "steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -82341,16 +82876,16 @@ export default { }, "player_premier_rank_history_stddev_order_by": { "previous_rank": [ - 2946 + 2952 ], "rank": [ - 2946 + 2952 ], "rank_type": [ - 2946 + 2952 ], "steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -82375,16 +82910,16 @@ export default { }, "player_premier_rank_history_stddev_pop_order_by": { "previous_rank": [ - 2946 + 2952 ], "rank": [ - 2946 + 2952 ], "rank_type": [ - 2946 + 2952 ], "steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -82409,16 +82944,16 @@ export default { }, "player_premier_rank_history_stddev_samp_order_by": { "previous_rank": [ - 2946 + 2952 ], "rank": [ - 2946 + 2952 ], "rank_type": [ - 2946 + 2952 ], "steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -82426,10 +82961,10 @@ export default { }, "player_premier_rank_history_stream_cursor_input": { "initial_value": [ - 3591 + 3597 ], "ordering": [ - 308 + 314 ], "__typename": [ 80 @@ -82437,16 +82972,16 @@ export default { }, "player_premier_rank_history_stream_cursor_value_input": { "id": [ - 4993 + 4999 ], "map_id": [ - 4993 + 4999 ], "match_id": [ - 4993 + 4999 ], "observed_at": [ - 4493 + 4499 ], "previous_rank": [ 40 @@ -82458,7 +82993,7 @@ export default { 40 ], "steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -82475,7 +83010,7 @@ export default { 40 ], "steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -82483,16 +83018,16 @@ export default { }, "player_premier_rank_history_sum_order_by": { "previous_rank": [ - 2946 + 2952 ], "rank": [ - 2946 + 2952 ], "rank_type": [ - 2946 + 2952 ], "steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -82501,13 +83036,13 @@ export default { "player_premier_rank_history_update_column": {}, "player_premier_rank_history_updates": { "_inc": [ - 3572 + 3578 ], "_set": [ - 3583 + 3589 ], "where": [ - 3570 + 3576 ], "__typename": [ 80 @@ -82532,16 +83067,16 @@ export default { }, "player_premier_rank_history_var_pop_order_by": { "previous_rank": [ - 2946 + 2952 ], "rank": [ - 2946 + 2952 ], "rank_type": [ - 2946 + 2952 ], "steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -82566,16 +83101,16 @@ export default { }, "player_premier_rank_history_var_samp_order_by": { "previous_rank": [ - 2946 + 2952 ], "rank": [ - 2946 + 2952 ], "rank_type": [ - 2946 + 2952 ], "steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -82600,16 +83135,16 @@ export default { }, "player_premier_rank_history_variance_order_by": { "previous_rank": [ - 2946 + 2952 ], "rank": [ - 2946 + 2952 ], "rank_type": [ - 2946 + 2952 ], "steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -82617,37 +83152,37 @@ export default { }, "player_sanctions": { "created_at": [ - 4493 + 4499 ], "deleted_at": [ - 4493 + 4499 ], "e_sanction_type": [ - 1120 + 1126 ], "id": [ - 4993 + 4999 ], "player": [ - 3904 + 3910 ], "player_steam_id": [ - 252 + 258 ], "reason": [ 80 ], "remove_sanction_date": [ - 4493 + 4499 ], "sanctioned_by": [ - 3904 + 3910 ], "sanctioned_by_steam_id": [ - 252 + 258 ], "type": [ - 1125 + 1131 ], "__typename": [ 80 @@ -82655,10 +83190,10 @@ export default { }, "player_sanctions_aggregate": { "aggregate": [ - 3606 + 3612 ], "nodes": [ - 3602 + 3608 ], "__typename": [ 80 @@ -82666,7 +83201,7 @@ export default { }, "player_sanctions_aggregate_bool_exp": { "count": [ - 3605 + 3611 ], "__typename": [ 80 @@ -82674,13 +83209,13 @@ export default { }, "player_sanctions_aggregate_bool_exp_count": { "arguments": [ - 3623 + 3629 ], "distinct": [ 5 ], "filter": [ - 3611 + 3617 ], "predicate": [ 41 @@ -82691,13 +83226,13 @@ export default { }, "player_sanctions_aggregate_fields": { "avg": [ - 3609 + 3615 ], "count": [ 40, { "columns": [ - 3623, + 3629, "[player_sanctions_select_column!]" ], "distinct": [ @@ -82706,31 +83241,31 @@ export default { } ], "max": [ - 3615 + 3621 ], "min": [ - 3617 + 3623 ], "stddev": [ - 3625 + 3631 ], "stddev_pop": [ - 3627 + 3633 ], "stddev_samp": [ - 3629 + 3635 ], "sum": [ - 3633 + 3639 ], "var_pop": [ - 3637 + 3643 ], "var_samp": [ - 3639 + 3645 ], "variance": [ - 3641 + 3647 ], "__typename": [ 80 @@ -82738,37 +83273,37 @@ export default { }, "player_sanctions_aggregate_order_by": { "avg": [ - 3610 + 3616 ], "count": [ - 2946 + 2952 ], "max": [ - 3616 + 3622 ], "min": [ - 3618 + 3624 ], "stddev": [ - 3626 + 3632 ], "stddev_pop": [ - 3628 + 3634 ], "stddev_samp": [ - 3630 + 3636 ], "sum": [ - 3634 + 3640 ], "var_pop": [ - 3638 + 3644 ], "var_samp": [ - 3640 + 3646 ], "variance": [ - 3642 + 3648 ], "__typename": [ 80 @@ -82776,10 +83311,10 @@ export default { }, "player_sanctions_arr_rel_insert_input": { "data": [ - 3614 + 3620 ], "on_conflict": [ - 3620 + 3626 ], "__typename": [ 80 @@ -82798,10 +83333,10 @@ export default { }, "player_sanctions_avg_order_by": { "player_steam_id": [ - 2946 + 2952 ], "sanctioned_by_steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -82809,46 +83344,46 @@ export default { }, "player_sanctions_bool_exp": { "_and": [ - 3611 + 3617 ], "_not": [ - 3611 + 3617 ], "_or": [ - 3611 + 3617 ], "created_at": [ - 4494 + 4500 ], "deleted_at": [ - 4494 + 4500 ], "e_sanction_type": [ - 1123 + 1129 ], "id": [ - 4995 + 5001 ], "player": [ - 3908 + 3914 ], "player_steam_id": [ - 254 + 260 ], "reason": [ 82 ], "remove_sanction_date": [ - 4494 + 4500 ], "sanctioned_by": [ - 3908 + 3914 ], "sanctioned_by_steam_id": [ - 254 + 260 ], "type": [ - 1126 + 1132 ], "__typename": [ 80 @@ -82857,10 +83392,10 @@ export default { "player_sanctions_constraint": {}, "player_sanctions_inc_input": { "player_steam_id": [ - 252 + 258 ], "sanctioned_by_steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -82868,37 +83403,37 @@ export default { }, "player_sanctions_insert_input": { "created_at": [ - 4493 + 4499 ], "deleted_at": [ - 4493 + 4499 ], "e_sanction_type": [ - 1131 + 1137 ], "id": [ - 4993 + 4999 ], "player": [ - 3915 + 3921 ], "player_steam_id": [ - 252 + 258 ], "reason": [ 80 ], "remove_sanction_date": [ - 4493 + 4499 ], "sanctioned_by": [ - 3915 + 3921 ], "sanctioned_by_steam_id": [ - 252 + 258 ], "type": [ - 1125 + 1131 ], "__typename": [ 80 @@ -82906,25 +83441,25 @@ export default { }, "player_sanctions_max_fields": { "created_at": [ - 4493 + 4499 ], "deleted_at": [ - 4493 + 4499 ], "id": [ - 4993 + 4999 ], "player_steam_id": [ - 252 + 258 ], "reason": [ 80 ], "remove_sanction_date": [ - 4493 + 4499 ], "sanctioned_by_steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -82932,25 +83467,25 @@ export default { }, "player_sanctions_max_order_by": { "created_at": [ - 2946 + 2952 ], "deleted_at": [ - 2946 + 2952 ], "id": [ - 2946 + 2952 ], "player_steam_id": [ - 2946 + 2952 ], "reason": [ - 2946 + 2952 ], "remove_sanction_date": [ - 2946 + 2952 ], "sanctioned_by_steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -82958,25 +83493,25 @@ export default { }, "player_sanctions_min_fields": { "created_at": [ - 4493 + 4499 ], "deleted_at": [ - 4493 + 4499 ], "id": [ - 4993 + 4999 ], "player_steam_id": [ - 252 + 258 ], "reason": [ 80 ], "remove_sanction_date": [ - 4493 + 4499 ], "sanctioned_by_steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -82984,25 +83519,25 @@ export default { }, "player_sanctions_min_order_by": { "created_at": [ - 2946 + 2952 ], "deleted_at": [ - 2946 + 2952 ], "id": [ - 2946 + 2952 ], "player_steam_id": [ - 2946 + 2952 ], "reason": [ - 2946 + 2952 ], "remove_sanction_date": [ - 2946 + 2952 ], "sanctioned_by_steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -83013,7 +83548,7 @@ export default { 40 ], "returning": [ - 3602 + 3608 ], "__typename": [ 80 @@ -83021,13 +83556,13 @@ export default { }, "player_sanctions_on_conflict": { "constraint": [ - 3612 + 3618 ], "update_columns": [ - 3635 + 3641 ], "where": [ - 3611 + 3617 ], "__typename": [ 80 @@ -83035,37 +83570,37 @@ export default { }, "player_sanctions_order_by": { "created_at": [ - 2946 + 2952 ], "deleted_at": [ - 2946 + 2952 ], "e_sanction_type": [ - 1133 + 1139 ], "id": [ - 2946 + 2952 ], "player": [ - 3917 + 3923 ], "player_steam_id": [ - 2946 + 2952 ], "reason": [ - 2946 + 2952 ], "remove_sanction_date": [ - 2946 + 2952 ], "sanctioned_by": [ - 3917 + 3923 ], "sanctioned_by_steam_id": [ - 2946 + 2952 ], "type": [ - 2946 + 2952 ], "__typename": [ 80 @@ -83073,10 +83608,10 @@ export default { }, "player_sanctions_pk_columns_input": { "created_at": [ - 4493 + 4499 ], "id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -83085,28 +83620,28 @@ export default { "player_sanctions_select_column": {}, "player_sanctions_set_input": { "created_at": [ - 4493 + 4499 ], "deleted_at": [ - 4493 + 4499 ], "id": [ - 4993 + 4999 ], "player_steam_id": [ - 252 + 258 ], "reason": [ 80 ], "remove_sanction_date": [ - 4493 + 4499 ], "sanctioned_by_steam_id": [ - 252 + 258 ], "type": [ - 1125 + 1131 ], "__typename": [ 80 @@ -83125,10 +83660,10 @@ export default { }, "player_sanctions_stddev_order_by": { "player_steam_id": [ - 2946 + 2952 ], "sanctioned_by_steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -83147,10 +83682,10 @@ export default { }, "player_sanctions_stddev_pop_order_by": { "player_steam_id": [ - 2946 + 2952 ], "sanctioned_by_steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -83169,10 +83704,10 @@ export default { }, "player_sanctions_stddev_samp_order_by": { "player_steam_id": [ - 2946 + 2952 ], "sanctioned_by_steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -83180,10 +83715,10 @@ export default { }, "player_sanctions_stream_cursor_input": { "initial_value": [ - 3632 + 3638 ], "ordering": [ - 308 + 314 ], "__typename": [ 80 @@ -83191,28 +83726,28 @@ export default { }, "player_sanctions_stream_cursor_value_input": { "created_at": [ - 4493 + 4499 ], "deleted_at": [ - 4493 + 4499 ], "id": [ - 4993 + 4999 ], "player_steam_id": [ - 252 + 258 ], "reason": [ 80 ], "remove_sanction_date": [ - 4493 + 4499 ], "sanctioned_by_steam_id": [ - 252 + 258 ], "type": [ - 1125 + 1131 ], "__typename": [ 80 @@ -83220,10 +83755,10 @@ export default { }, "player_sanctions_sum_fields": { "player_steam_id": [ - 252 + 258 ], "sanctioned_by_steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -83231,10 +83766,10 @@ export default { }, "player_sanctions_sum_order_by": { "player_steam_id": [ - 2946 + 2952 ], "sanctioned_by_steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -83243,13 +83778,13 @@ export default { "player_sanctions_update_column": {}, "player_sanctions_updates": { "_inc": [ - 3613 + 3619 ], "_set": [ - 3624 + 3630 ], "where": [ - 3611 + 3617 ], "__typename": [ 80 @@ -83268,10 +83803,10 @@ export default { }, "player_sanctions_var_pop_order_by": { "player_steam_id": [ - 2946 + 2952 ], "sanctioned_by_steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -83290,10 +83825,10 @@ export default { }, "player_sanctions_var_samp_order_by": { "player_steam_id": [ - 2946 + 2952 ], "sanctioned_by_steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -83312,10 +83847,10 @@ export default { }, "player_sanctions_variance_order_by": { "player_steam_id": [ - 2946 + 2952 ], "sanctioned_by_steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -83323,31 +83858,31 @@ export default { }, "player_season_stats": { "assists": [ - 252 + 258 ], "deaths": [ - 252 + 258 ], "headshot_percentage": [ - 1664 + 1670 ], "headshots": [ - 252 + 258 ], "kills": [ - 252 + 258 ], "player": [ - 3904 + 3910 ], "player_steam_id": [ - 252 + 258 ], "season": [ - 3963 + 3969 ], "season_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -83355,10 +83890,10 @@ export default { }, "player_season_stats_aggregate": { "aggregate": [ - 3657 + 3663 ], "nodes": [ - 3643 + 3649 ], "__typename": [ 80 @@ -83366,31 +83901,31 @@ export default { }, "player_season_stats_aggregate_bool_exp": { "avg": [ - 3646 + 3652 ], "corr": [ - 3647 + 3653 ], "count": [ - 3649 + 3655 ], "covar_samp": [ - 3650 + 3656 ], "max": [ - 3652 + 3658 ], "min": [ - 3653 + 3659 ], "stddev_samp": [ - 3654 + 3660 ], "sum": [ - 3655 + 3661 ], "var_samp": [ - 3656 + 3662 ], "__typename": [ 80 @@ -83398,16 +83933,16 @@ export default { }, "player_season_stats_aggregate_bool_exp_avg": { "arguments": [ - 3675 + 3681 ], "distinct": [ 5 ], "filter": [ - 3662 + 3668 ], "predicate": [ - 1665 + 1671 ], "__typename": [ 80 @@ -83415,16 +83950,16 @@ export default { }, "player_season_stats_aggregate_bool_exp_corr": { "arguments": [ - 3648 + 3654 ], "distinct": [ 5 ], "filter": [ - 3662 + 3668 ], "predicate": [ - 1665 + 1671 ], "__typename": [ 80 @@ -83432,10 +83967,10 @@ export default { }, "player_season_stats_aggregate_bool_exp_corr_arguments": { "X": [ - 3676 + 3682 ], "Y": [ - 3676 + 3682 ], "__typename": [ 80 @@ -83443,13 +83978,13 @@ export default { }, "player_season_stats_aggregate_bool_exp_count": { "arguments": [ - 3674 + 3680 ], "distinct": [ 5 ], "filter": [ - 3662 + 3668 ], "predicate": [ 41 @@ -83460,16 +83995,16 @@ export default { }, "player_season_stats_aggregate_bool_exp_covar_samp": { "arguments": [ - 3651 + 3657 ], "distinct": [ 5 ], "filter": [ - 3662 + 3668 ], "predicate": [ - 1665 + 1671 ], "__typename": [ 80 @@ -83477,10 +84012,10 @@ export default { }, "player_season_stats_aggregate_bool_exp_covar_samp_arguments": { "X": [ - 3677 + 3683 ], "Y": [ - 3677 + 3683 ], "__typename": [ 80 @@ -83488,16 +84023,16 @@ export default { }, "player_season_stats_aggregate_bool_exp_max": { "arguments": [ - 3678 + 3684 ], "distinct": [ 5 ], "filter": [ - 3662 + 3668 ], "predicate": [ - 1665 + 1671 ], "__typename": [ 80 @@ -83505,16 +84040,16 @@ export default { }, "player_season_stats_aggregate_bool_exp_min": { "arguments": [ - 3679 + 3685 ], "distinct": [ 5 ], "filter": [ - 3662 + 3668 ], "predicate": [ - 1665 + 1671 ], "__typename": [ 80 @@ -83522,16 +84057,16 @@ export default { }, "player_season_stats_aggregate_bool_exp_stddev_samp": { "arguments": [ - 3680 + 3686 ], "distinct": [ 5 ], "filter": [ - 3662 + 3668 ], "predicate": [ - 1665 + 1671 ], "__typename": [ 80 @@ -83539,16 +84074,16 @@ export default { }, "player_season_stats_aggregate_bool_exp_sum": { "arguments": [ - 3681 + 3687 ], "distinct": [ 5 ], "filter": [ - 3662 + 3668 ], "predicate": [ - 1665 + 1671 ], "__typename": [ 80 @@ -83556,16 +84091,16 @@ export default { }, "player_season_stats_aggregate_bool_exp_var_samp": { "arguments": [ - 3682 + 3688 ], "distinct": [ 5 ], "filter": [ - 3662 + 3668 ], "predicate": [ - 1665 + 1671 ], "__typename": [ 80 @@ -83573,13 +84108,13 @@ export default { }, "player_season_stats_aggregate_fields": { "avg": [ - 3660 + 3666 ], "count": [ 40, { "columns": [ - 3674, + 3680, "[player_season_stats_select_column!]" ], "distinct": [ @@ -83588,31 +84123,31 @@ export default { } ], "max": [ - 3666 + 3672 ], "min": [ - 3668 + 3674 ], "stddev": [ - 3684 + 3690 ], "stddev_pop": [ - 3686 + 3692 ], "stddev_samp": [ - 3688 + 3694 ], "sum": [ - 3692 + 3698 ], "var_pop": [ - 3696 + 3702 ], "var_samp": [ - 3698 + 3704 ], "variance": [ - 3700 + 3706 ], "__typename": [ 80 @@ -83620,37 +84155,37 @@ export default { }, "player_season_stats_aggregate_order_by": { "avg": [ - 3661 + 3667 ], "count": [ - 2946 + 2952 ], "max": [ - 3667 + 3673 ], "min": [ - 3669 + 3675 ], "stddev": [ - 3685 + 3691 ], "stddev_pop": [ - 3687 + 3693 ], "stddev_samp": [ - 3689 + 3695 ], "sum": [ - 3693 + 3699 ], "var_pop": [ - 3697 + 3703 ], "var_samp": [ - 3699 + 3705 ], "variance": [ - 3701 + 3707 ], "__typename": [ 80 @@ -83658,10 +84193,10 @@ export default { }, "player_season_stats_arr_rel_insert_input": { "data": [ - 3665 + 3671 ], "on_conflict": [ - 3671 + 3677 ], "__typename": [ 80 @@ -83692,22 +84227,22 @@ export default { }, "player_season_stats_avg_order_by": { "assists": [ - 2946 + 2952 ], "deaths": [ - 2946 + 2952 ], "headshot_percentage": [ - 2946 + 2952 ], "headshots": [ - 2946 + 2952 ], "kills": [ - 2946 + 2952 ], "player_steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -83715,40 +84250,40 @@ export default { }, "player_season_stats_bool_exp": { "_and": [ - 3662 + 3668 ], "_not": [ - 3662 + 3668 ], "_or": [ - 3662 + 3668 ], "assists": [ - 254 + 260 ], "deaths": [ - 254 + 260 ], "headshot_percentage": [ - 1665 + 1671 ], "headshots": [ - 254 + 260 ], "kills": [ - 254 + 260 ], "player": [ - 3908 + 3914 ], "player_steam_id": [ - 254 + 260 ], "season": [ - 3967 + 3973 ], "season_id": [ - 4995 + 5001 ], "__typename": [ 80 @@ -83757,22 +84292,22 @@ export default { "player_season_stats_constraint": {}, "player_season_stats_inc_input": { "assists": [ - 252 + 258 ], "deaths": [ - 252 + 258 ], "headshot_percentage": [ - 1664 + 1670 ], "headshots": [ - 252 + 258 ], "kills": [ - 252 + 258 ], "player_steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -83780,31 +84315,31 @@ export default { }, "player_season_stats_insert_input": { "assists": [ - 252 + 258 ], "deaths": [ - 252 + 258 ], "headshot_percentage": [ - 1664 + 1670 ], "headshots": [ - 252 + 258 ], "kills": [ - 252 + 258 ], "player": [ - 3915 + 3921 ], "player_steam_id": [ - 252 + 258 ], "season": [ - 3974 + 3980 ], "season_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -83812,25 +84347,25 @@ export default { }, "player_season_stats_max_fields": { "assists": [ - 252 + 258 ], "deaths": [ - 252 + 258 ], "headshot_percentage": [ - 1664 + 1670 ], "headshots": [ - 252 + 258 ], "kills": [ - 252 + 258 ], "player_steam_id": [ - 252 + 258 ], "season_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -83838,25 +84373,25 @@ export default { }, "player_season_stats_max_order_by": { "assists": [ - 2946 + 2952 ], "deaths": [ - 2946 + 2952 ], "headshot_percentage": [ - 2946 + 2952 ], "headshots": [ - 2946 + 2952 ], "kills": [ - 2946 + 2952 ], "player_steam_id": [ - 2946 + 2952 ], "season_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -83864,25 +84399,25 @@ export default { }, "player_season_stats_min_fields": { "assists": [ - 252 + 258 ], "deaths": [ - 252 + 258 ], "headshot_percentage": [ - 1664 + 1670 ], "headshots": [ - 252 + 258 ], "kills": [ - 252 + 258 ], "player_steam_id": [ - 252 + 258 ], "season_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -83890,25 +84425,25 @@ export default { }, "player_season_stats_min_order_by": { "assists": [ - 2946 + 2952 ], "deaths": [ - 2946 + 2952 ], "headshot_percentage": [ - 2946 + 2952 ], "headshots": [ - 2946 + 2952 ], "kills": [ - 2946 + 2952 ], "player_steam_id": [ - 2946 + 2952 ], "season_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -83919,7 +84454,7 @@ export default { 40 ], "returning": [ - 3643 + 3649 ], "__typename": [ 80 @@ -83927,13 +84462,13 @@ export default { }, "player_season_stats_on_conflict": { "constraint": [ - 3663 + 3669 ], "update_columns": [ - 3694 + 3700 ], "where": [ - 3662 + 3668 ], "__typename": [ 80 @@ -83941,31 +84476,31 @@ export default { }, "player_season_stats_order_by": { "assists": [ - 2946 + 2952 ], "deaths": [ - 2946 + 2952 ], "headshot_percentage": [ - 2946 + 2952 ], "headshots": [ - 2946 + 2952 ], "kills": [ - 2946 + 2952 ], "player": [ - 3917 + 3923 ], "player_steam_id": [ - 2946 + 2952 ], "season": [ - 3976 + 3982 ], "season_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -83973,10 +84508,10 @@ export default { }, "player_season_stats_pk_columns_input": { "player_steam_id": [ - 252 + 258 ], "season_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -83993,25 +84528,25 @@ export default { "player_season_stats_select_column_player_season_stats_aggregate_bool_exp_var_samp_arguments_columns": {}, "player_season_stats_set_input": { "assists": [ - 252 + 258 ], "deaths": [ - 252 + 258 ], "headshot_percentage": [ - 1664 + 1670 ], "headshots": [ - 252 + 258 ], "kills": [ - 252 + 258 ], "player_steam_id": [ - 252 + 258 ], "season_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -84042,22 +84577,22 @@ export default { }, "player_season_stats_stddev_order_by": { "assists": [ - 2946 + 2952 ], "deaths": [ - 2946 + 2952 ], "headshot_percentage": [ - 2946 + 2952 ], "headshots": [ - 2946 + 2952 ], "kills": [ - 2946 + 2952 ], "player_steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -84088,22 +84623,22 @@ export default { }, "player_season_stats_stddev_pop_order_by": { "assists": [ - 2946 + 2952 ], "deaths": [ - 2946 + 2952 ], "headshot_percentage": [ - 2946 + 2952 ], "headshots": [ - 2946 + 2952 ], "kills": [ - 2946 + 2952 ], "player_steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -84134,22 +84669,22 @@ export default { }, "player_season_stats_stddev_samp_order_by": { "assists": [ - 2946 + 2952 ], "deaths": [ - 2946 + 2952 ], "headshot_percentage": [ - 2946 + 2952 ], "headshots": [ - 2946 + 2952 ], "kills": [ - 2946 + 2952 ], "player_steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -84157,10 +84692,10 @@ export default { }, "player_season_stats_stream_cursor_input": { "initial_value": [ - 3691 + 3697 ], "ordering": [ - 308 + 314 ], "__typename": [ 80 @@ -84168,25 +84703,25 @@ export default { }, "player_season_stats_stream_cursor_value_input": { "assists": [ - 252 + 258 ], "deaths": [ - 252 + 258 ], "headshot_percentage": [ - 1664 + 1670 ], "headshots": [ - 252 + 258 ], "kills": [ - 252 + 258 ], "player_steam_id": [ - 252 + 258 ], "season_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -84194,22 +84729,22 @@ export default { }, "player_season_stats_sum_fields": { "assists": [ - 252 + 258 ], "deaths": [ - 252 + 258 ], "headshot_percentage": [ - 1664 + 1670 ], "headshots": [ - 252 + 258 ], "kills": [ - 252 + 258 ], "player_steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -84217,22 +84752,22 @@ export default { }, "player_season_stats_sum_order_by": { "assists": [ - 2946 + 2952 ], "deaths": [ - 2946 + 2952 ], "headshot_percentage": [ - 2946 + 2952 ], "headshots": [ - 2946 + 2952 ], "kills": [ - 2946 + 2952 ], "player_steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -84241,13 +84776,13 @@ export default { "player_season_stats_update_column": {}, "player_season_stats_updates": { "_inc": [ - 3664 + 3670 ], "_set": [ - 3683 + 3689 ], "where": [ - 3662 + 3668 ], "__typename": [ 80 @@ -84278,22 +84813,22 @@ export default { }, "player_season_stats_var_pop_order_by": { "assists": [ - 2946 + 2952 ], "deaths": [ - 2946 + 2952 ], "headshot_percentage": [ - 2946 + 2952 ], "headshots": [ - 2946 + 2952 ], "kills": [ - 2946 + 2952 ], "player_steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -84324,22 +84859,22 @@ export default { }, "player_season_stats_var_samp_order_by": { "assists": [ - 2946 + 2952 ], "deaths": [ - 2946 + 2952 ], "headshot_percentage": [ - 2946 + 2952 ], "headshots": [ - 2946 + 2952 ], "kills": [ - 2946 + 2952 ], "player_steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -84370,22 +84905,22 @@ export default { }, "player_season_stats_variance_order_by": { "assists": [ - 2946 + 2952 ], "deaths": [ - 2946 + 2952 ], "headshot_percentage": [ - 2946 + 2952 ], "headshots": [ - 2946 + 2952 ], "kills": [ - 2946 + 2952 ], "player_steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -84393,25 +84928,25 @@ export default { }, "player_stats": { "assists": [ - 252 + 258 ], "deaths": [ - 252 + 258 ], "headshot_percentage": [ - 1664 + 1670 ], "headshots": [ - 252 + 258 ], "kills": [ - 252 + 258 ], "player": [ - 3904 + 3910 ], "player_steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -84419,10 +84954,10 @@ export default { }, "player_stats_aggregate": { "aggregate": [ - 3704 + 3710 ], "nodes": [ - 3702 + 3708 ], "__typename": [ 80 @@ -84430,13 +84965,13 @@ export default { }, "player_stats_aggregate_fields": { "avg": [ - 3705 + 3711 ], "count": [ 40, { "columns": [ - 3717, + 3723, "[player_stats_select_column!]" ], "distinct": [ @@ -84445,31 +84980,31 @@ export default { } ], "max": [ - 3710 + 3716 ], "min": [ - 3711 + 3717 ], "stddev": [ - 3719 + 3725 ], "stddev_pop": [ - 3720 + 3726 ], "stddev_samp": [ - 3721 + 3727 ], "sum": [ - 3724 + 3730 ], "var_pop": [ - 3727 + 3733 ], "var_samp": [ - 3728 + 3734 ], "variance": [ - 3729 + 3735 ], "__typename": [ 80 @@ -84500,34 +85035,34 @@ export default { }, "player_stats_bool_exp": { "_and": [ - 3706 + 3712 ], "_not": [ - 3706 + 3712 ], "_or": [ - 3706 + 3712 ], "assists": [ - 254 + 260 ], "deaths": [ - 254 + 260 ], "headshot_percentage": [ - 1665 + 1671 ], "headshots": [ - 254 + 260 ], "kills": [ - 254 + 260 ], "player": [ - 3908 + 3914 ], "player_steam_id": [ - 254 + 260 ], "__typename": [ 80 @@ -84536,22 +85071,22 @@ export default { "player_stats_constraint": {}, "player_stats_inc_input": { "assists": [ - 252 + 258 ], "deaths": [ - 252 + 258 ], "headshot_percentage": [ - 1664 + 1670 ], "headshots": [ - 252 + 258 ], "kills": [ - 252 + 258 ], "player_steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -84559,25 +85094,25 @@ export default { }, "player_stats_insert_input": { "assists": [ - 252 + 258 ], "deaths": [ - 252 + 258 ], "headshot_percentage": [ - 1664 + 1670 ], "headshots": [ - 252 + 258 ], "kills": [ - 252 + 258 ], "player": [ - 3915 + 3921 ], "player_steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -84585,22 +85120,22 @@ export default { }, "player_stats_max_fields": { "assists": [ - 252 + 258 ], "deaths": [ - 252 + 258 ], "headshot_percentage": [ - 1664 + 1670 ], "headshots": [ - 252 + 258 ], "kills": [ - 252 + 258 ], "player_steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -84608,22 +85143,22 @@ export default { }, "player_stats_min_fields": { "assists": [ - 252 + 258 ], "deaths": [ - 252 + 258 ], "headshot_percentage": [ - 1664 + 1670 ], "headshots": [ - 252 + 258 ], "kills": [ - 252 + 258 ], "player_steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -84634,7 +85169,7 @@ export default { 40 ], "returning": [ - 3702 + 3708 ], "__typename": [ 80 @@ -84642,10 +85177,10 @@ export default { }, "player_stats_obj_rel_insert_input": { "data": [ - 3709 + 3715 ], "on_conflict": [ - 3714 + 3720 ], "__typename": [ 80 @@ -84653,13 +85188,13 @@ export default { }, "player_stats_on_conflict": { "constraint": [ - 3707 + 3713 ], "update_columns": [ - 3725 + 3731 ], "where": [ - 3706 + 3712 ], "__typename": [ 80 @@ -84667,25 +85202,25 @@ export default { }, "player_stats_order_by": { "assists": [ - 2946 + 2952 ], "deaths": [ - 2946 + 2952 ], "headshot_percentage": [ - 2946 + 2952 ], "headshots": [ - 2946 + 2952 ], "kills": [ - 2946 + 2952 ], "player": [ - 3917 + 3923 ], "player_steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -84693,7 +85228,7 @@ export default { }, "player_stats_pk_columns_input": { "player_steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -84702,22 +85237,22 @@ export default { "player_stats_select_column": {}, "player_stats_set_input": { "assists": [ - 252 + 258 ], "deaths": [ - 252 + 258 ], "headshot_percentage": [ - 1664 + 1670 ], "headshots": [ - 252 + 258 ], "kills": [ - 252 + 258 ], "player_steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -84794,10 +85329,10 @@ export default { }, "player_stats_stream_cursor_input": { "initial_value": [ - 3723 + 3729 ], "ordering": [ - 308 + 314 ], "__typename": [ 80 @@ -84805,22 +85340,22 @@ export default { }, "player_stats_stream_cursor_value_input": { "assists": [ - 252 + 258 ], "deaths": [ - 252 + 258 ], "headshot_percentage": [ - 1664 + 1670 ], "headshots": [ - 252 + 258 ], "kills": [ - 252 + 258 ], "player_steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -84828,22 +85363,22 @@ export default { }, "player_stats_sum_fields": { "assists": [ - 252 + 258 ], "deaths": [ - 252 + 258 ], "headshot_percentage": [ - 1664 + 1670 ], "headshots": [ - 252 + 258 ], "kills": [ - 252 + 258 ], "player_steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -84852,13 +85387,13 @@ export default { "player_stats_update_column": {}, "player_stats_updates": { "_inc": [ - 3708 + 3714 ], "_set": [ - 3718 + 3724 ], "where": [ - 3706 + 3712 ], "__typename": [ 80 @@ -84935,19 +85470,19 @@ export default { }, "player_steam_bot_friend": { "bot_steam_account_id": [ - 4993 + 4999 ], "bot_steamid64": [ - 252 + 258 ], "created_at": [ - 4493 + 4499 ], "friended_at": [ - 4493 + 4499 ], "last_presence_state": [ - 1817, + 1823, { "path": [ 80 @@ -84955,16 +85490,16 @@ export default { } ], "player": [ - 3904 + 3910 ], "status": [ 80 ], "steam_id": [ - 252 + 258 ], "updated_at": [ - 4493 + 4499 ], "__typename": [ 80 @@ -84972,10 +85507,10 @@ export default { }, "player_steam_bot_friend_aggregate": { "aggregate": [ - 3732 + 3738 ], "nodes": [ - 3730 + 3736 ], "__typename": [ 80 @@ -84983,13 +85518,13 @@ export default { }, "player_steam_bot_friend_aggregate_fields": { "avg": [ - 3734 + 3740 ], "count": [ 40, { "columns": [ - 3749, + 3755, "[player_steam_bot_friend_select_column!]" ], "distinct": [ @@ -84998,31 +85533,31 @@ export default { } ], "max": [ - 3742 + 3748 ], "min": [ - 3743 + 3749 ], "stddev": [ - 3751 + 3757 ], "stddev_pop": [ - 3752 + 3758 ], "stddev_samp": [ - 3753 + 3759 ], "sum": [ - 3756 + 3762 ], "var_pop": [ - 3759 + 3765 ], "var_samp": [ - 3760 + 3766 ], "variance": [ - 3761 + 3767 ], "__typename": [ 80 @@ -85030,7 +85565,7 @@ export default { }, "player_steam_bot_friend_append_input": { "last_presence_state": [ - 1817 + 1823 ], "__typename": [ 80 @@ -85049,40 +85584,40 @@ export default { }, "player_steam_bot_friend_bool_exp": { "_and": [ - 3735 + 3741 ], "_not": [ - 3735 + 3741 ], "_or": [ - 3735 + 3741 ], "bot_steam_account_id": [ - 4995 + 5001 ], "bot_steamid64": [ - 254 + 260 ], "created_at": [ - 4494 + 4500 ], "friended_at": [ - 4494 + 4500 ], "last_presence_state": [ - 1819 + 1825 ], "player": [ - 3908 + 3914 ], "status": [ 82 ], "steam_id": [ - 254 + 260 ], "updated_at": [ - 4494 + 4500 ], "__typename": [ 80 @@ -85115,10 +85650,10 @@ export default { }, "player_steam_bot_friend_inc_input": { "bot_steamid64": [ - 252 + 258 ], "steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -85126,31 +85661,31 @@ export default { }, "player_steam_bot_friend_insert_input": { "bot_steam_account_id": [ - 4993 + 4999 ], "bot_steamid64": [ - 252 + 258 ], "created_at": [ - 4493 + 4499 ], "friended_at": [ - 4493 + 4499 ], "last_presence_state": [ - 1817 + 1823 ], "player": [ - 3915 + 3921 ], "status": [ 80 ], "steam_id": [ - 252 + 258 ], "updated_at": [ - 4493 + 4499 ], "__typename": [ 80 @@ -85158,25 +85693,25 @@ export default { }, "player_steam_bot_friend_max_fields": { "bot_steam_account_id": [ - 4993 + 4999 ], "bot_steamid64": [ - 252 + 258 ], "created_at": [ - 4493 + 4499 ], "friended_at": [ - 4493 + 4499 ], "status": [ 80 ], "steam_id": [ - 252 + 258 ], "updated_at": [ - 4493 + 4499 ], "__typename": [ 80 @@ -85184,25 +85719,25 @@ export default { }, "player_steam_bot_friend_min_fields": { "bot_steam_account_id": [ - 4993 + 4999 ], "bot_steamid64": [ - 252 + 258 ], "created_at": [ - 4493 + 4499 ], "friended_at": [ - 4493 + 4499 ], "status": [ 80 ], "steam_id": [ - 252 + 258 ], "updated_at": [ - 4493 + 4499 ], "__typename": [ 80 @@ -85213,7 +85748,7 @@ export default { 40 ], "returning": [ - 3730 + 3736 ], "__typename": [ 80 @@ -85221,13 +85756,13 @@ export default { }, "player_steam_bot_friend_on_conflict": { "constraint": [ - 3736 + 3742 ], "update_columns": [ - 3757 + 3763 ], "where": [ - 3735 + 3741 ], "__typename": [ 80 @@ -85235,31 +85770,31 @@ export default { }, "player_steam_bot_friend_order_by": { "bot_steam_account_id": [ - 2946 + 2952 ], "bot_steamid64": [ - 2946 + 2952 ], "created_at": [ - 2946 + 2952 ], "friended_at": [ - 2946 + 2952 ], "last_presence_state": [ - 2946 + 2952 ], "player": [ - 3917 + 3923 ], "status": [ - 2946 + 2952 ], "steam_id": [ - 2946 + 2952 ], "updated_at": [ - 2946 + 2952 ], "__typename": [ 80 @@ -85267,7 +85802,7 @@ export default { }, "player_steam_bot_friend_pk_columns_input": { "steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -85275,7 +85810,7 @@ export default { }, "player_steam_bot_friend_prepend_input": { "last_presence_state": [ - 1817 + 1823 ], "__typename": [ 80 @@ -85284,28 +85819,28 @@ export default { "player_steam_bot_friend_select_column": {}, "player_steam_bot_friend_set_input": { "bot_steam_account_id": [ - 4993 + 4999 ], "bot_steamid64": [ - 252 + 258 ], "created_at": [ - 4493 + 4499 ], "friended_at": [ - 4493 + 4499 ], "last_presence_state": [ - 1817 + 1823 ], "status": [ 80 ], "steam_id": [ - 252 + 258 ], "updated_at": [ - 4493 + 4499 ], "__typename": [ 80 @@ -85346,10 +85881,10 @@ export default { }, "player_steam_bot_friend_stream_cursor_input": { "initial_value": [ - 3755 + 3761 ], "ordering": [ - 308 + 314 ], "__typename": [ 80 @@ -85357,28 +85892,28 @@ export default { }, "player_steam_bot_friend_stream_cursor_value_input": { "bot_steam_account_id": [ - 4993 + 4999 ], "bot_steamid64": [ - 252 + 258 ], "created_at": [ - 4493 + 4499 ], "friended_at": [ - 4493 + 4499 ], "last_presence_state": [ - 1817 + 1823 ], "status": [ 80 ], "steam_id": [ - 252 + 258 ], "updated_at": [ - 4493 + 4499 ], "__typename": [ 80 @@ -85386,10 +85921,10 @@ export default { }, "player_steam_bot_friend_sum_fields": { "bot_steamid64": [ - 252 + 258 ], "steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -85398,28 +85933,28 @@ export default { "player_steam_bot_friend_update_column": {}, "player_steam_bot_friend_updates": { "_append": [ - 3733 + 3739 ], "_delete_at_path": [ - 3737 + 3743 ], "_delete_elem": [ - 3738 + 3744 ], "_delete_key": [ - 3739 + 3745 ], "_inc": [ - 3740 + 3746 ], "_prepend": [ - 3748 + 3754 ], "_set": [ - 3750 + 3756 ], "where": [ - 3735 + 3741 ], "__typename": [ 80 @@ -85463,7 +85998,7 @@ export default { 80 ], "created_at": [ - 4493 + 4499 ], "last_error": [ 80 @@ -85472,16 +86007,16 @@ export default { 80 ], "last_polled_at": [ - 4493 + 4499 ], "player": [ - 3904 + 3910 ], "steam_id": [ - 252 + 258 ], "updated_at": [ - 4493 + 4499 ], "__typename": [ 80 @@ -85489,10 +86024,10 @@ export default { }, "player_steam_match_auth_aggregate": { "aggregate": [ - 3764 + 3770 ], "nodes": [ - 3762 + 3768 ], "__typename": [ 80 @@ -85500,13 +86035,13 @@ export default { }, "player_steam_match_auth_aggregate_fields": { "avg": [ - 3765 + 3771 ], "count": [ 40, { "columns": [ - 3776, + 3782, "[player_steam_match_auth_select_column!]" ], "distinct": [ @@ -85515,31 +86050,31 @@ export default { } ], "max": [ - 3770 + 3776 ], "min": [ - 3771 + 3777 ], "stddev": [ - 3778 + 3784 ], "stddev_pop": [ - 3779 + 3785 ], "stddev_samp": [ - 3780 + 3786 ], "sum": [ - 3783 + 3789 ], "var_pop": [ - 3786 + 3792 ], "var_samp": [ - 3787 + 3793 ], "variance": [ - 3788 + 3794 ], "__typename": [ 80 @@ -85555,19 +86090,19 @@ export default { }, "player_steam_match_auth_bool_exp": { "_and": [ - 3766 + 3772 ], "_not": [ - 3766 + 3772 ], "_or": [ - 3766 + 3772 ], "auth_code": [ 82 ], "created_at": [ - 4494 + 4500 ], "last_error": [ 82 @@ -85576,16 +86111,16 @@ export default { 82 ], "last_polled_at": [ - 4494 + 4500 ], "player": [ - 3908 + 3914 ], "steam_id": [ - 254 + 260 ], "updated_at": [ - 4494 + 4500 ], "__typename": [ 80 @@ -85594,7 +86129,7 @@ export default { "player_steam_match_auth_constraint": {}, "player_steam_match_auth_inc_input": { "steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -85605,7 +86140,7 @@ export default { 80 ], "created_at": [ - 4493 + 4499 ], "last_error": [ 80 @@ -85614,16 +86149,16 @@ export default { 80 ], "last_polled_at": [ - 4493 + 4499 ], "player": [ - 3915 + 3921 ], "steam_id": [ - 252 + 258 ], "updated_at": [ - 4493 + 4499 ], "__typename": [ 80 @@ -85634,7 +86169,7 @@ export default { 80 ], "created_at": [ - 4493 + 4499 ], "last_error": [ 80 @@ -85643,13 +86178,13 @@ export default { 80 ], "last_polled_at": [ - 4493 + 4499 ], "steam_id": [ - 252 + 258 ], "updated_at": [ - 4493 + 4499 ], "__typename": [ 80 @@ -85660,7 +86195,7 @@ export default { 80 ], "created_at": [ - 4493 + 4499 ], "last_error": [ 80 @@ -85669,13 +86204,13 @@ export default { 80 ], "last_polled_at": [ - 4493 + 4499 ], "steam_id": [ - 252 + 258 ], "updated_at": [ - 4493 + 4499 ], "__typename": [ 80 @@ -85686,7 +86221,7 @@ export default { 40 ], "returning": [ - 3762 + 3768 ], "__typename": [ 80 @@ -85694,13 +86229,13 @@ export default { }, "player_steam_match_auth_on_conflict": { "constraint": [ - 3767 + 3773 ], "update_columns": [ - 3784 + 3790 ], "where": [ - 3766 + 3772 ], "__typename": [ 80 @@ -85708,28 +86243,28 @@ export default { }, "player_steam_match_auth_order_by": { "auth_code": [ - 2946 + 2952 ], "created_at": [ - 2946 + 2952 ], "last_error": [ - 2946 + 2952 ], "last_known_share_code": [ - 2946 + 2952 ], "last_polled_at": [ - 2946 + 2952 ], "player": [ - 3917 + 3923 ], "steam_id": [ - 2946 + 2952 ], "updated_at": [ - 2946 + 2952 ], "__typename": [ 80 @@ -85737,7 +86272,7 @@ export default { }, "player_steam_match_auth_pk_columns_input": { "steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -85749,7 +86284,7 @@ export default { 80 ], "created_at": [ - 4493 + 4499 ], "last_error": [ 80 @@ -85758,13 +86293,13 @@ export default { 80 ], "last_polled_at": [ - 4493 + 4499 ], "steam_id": [ - 252 + 258 ], "updated_at": [ - 4493 + 4499 ], "__typename": [ 80 @@ -85796,10 +86331,10 @@ export default { }, "player_steam_match_auth_stream_cursor_input": { "initial_value": [ - 3782 + 3788 ], "ordering": [ - 308 + 314 ], "__typename": [ 80 @@ -85810,7 +86345,7 @@ export default { 80 ], "created_at": [ - 4493 + 4499 ], "last_error": [ 80 @@ -85819,13 +86354,13 @@ export default { 80 ], "last_polled_at": [ - 4493 + 4499 ], "steam_id": [ - 252 + 258 ], "updated_at": [ - 4493 + 4499 ], "__typename": [ 80 @@ -85833,7 +86368,7 @@ export default { }, "player_steam_match_auth_sum_fields": { "steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -85842,13 +86377,13 @@ export default { "player_steam_match_auth_update_column": {}, "player_steam_match_auth_updates": { "_inc": [ - 3768 + 3774 ], "_set": [ - 3777 + 3783 ], "where": [ - 3766 + 3772 ], "__typename": [ 80 @@ -85880,25 +86415,25 @@ export default { }, "player_unused_utility": { "deleted_at": [ - 4493 + 4499 ], "match": [ - 2761 + 2767 ], "match_id": [ - 4993 + 4999 ], "match_map": [ - 2599 + 2605 ], "match_map_id": [ - 4993 + 4999 ], "player": [ - 3904 + 3910 ], "player_steam_id": [ - 252 + 258 ], "round": [ 40 @@ -85912,10 +86447,10 @@ export default { }, "player_unused_utility_aggregate": { "aggregate": [ - 3793 + 3799 ], "nodes": [ - 3789 + 3795 ], "__typename": [ 80 @@ -85923,7 +86458,7 @@ export default { }, "player_unused_utility_aggregate_bool_exp": { "count": [ - 3792 + 3798 ], "__typename": [ 80 @@ -85931,13 +86466,13 @@ export default { }, "player_unused_utility_aggregate_bool_exp_count": { "arguments": [ - 3810 + 3816 ], "distinct": [ 5 ], "filter": [ - 3798 + 3804 ], "predicate": [ 41 @@ -85948,13 +86483,13 @@ export default { }, "player_unused_utility_aggregate_fields": { "avg": [ - 3796 + 3802 ], "count": [ 40, { "columns": [ - 3810, + 3816, "[player_unused_utility_select_column!]" ], "distinct": [ @@ -85963,31 +86498,31 @@ export default { } ], "max": [ - 3802 + 3808 ], "min": [ - 3804 + 3810 ], "stddev": [ - 3812 + 3818 ], "stddev_pop": [ - 3814 + 3820 ], "stddev_samp": [ - 3816 + 3822 ], "sum": [ - 3820 + 3826 ], "var_pop": [ - 3824 + 3830 ], "var_samp": [ - 3826 + 3832 ], "variance": [ - 3828 + 3834 ], "__typename": [ 80 @@ -85995,37 +86530,37 @@ export default { }, "player_unused_utility_aggregate_order_by": { "avg": [ - 3797 + 3803 ], "count": [ - 2946 + 2952 ], "max": [ - 3803 + 3809 ], "min": [ - 3805 + 3811 ], "stddev": [ - 3813 + 3819 ], "stddev_pop": [ - 3815 + 3821 ], "stddev_samp": [ - 3817 + 3823 ], "sum": [ - 3821 + 3827 ], "var_pop": [ - 3825 + 3831 ], "var_samp": [ - 3827 + 3833 ], "variance": [ - 3829 + 3835 ], "__typename": [ 80 @@ -86033,10 +86568,10 @@ export default { }, "player_unused_utility_arr_rel_insert_input": { "data": [ - 3801 + 3807 ], "on_conflict": [ - 3807 + 3813 ], "__typename": [ 80 @@ -86058,13 +86593,13 @@ export default { }, "player_unused_utility_avg_order_by": { "player_steam_id": [ - 2946 + 2952 ], "round": [ - 2946 + 2952 ], "unused": [ - 2946 + 2952 ], "__typename": [ 80 @@ -86072,34 +86607,34 @@ export default { }, "player_unused_utility_bool_exp": { "_and": [ - 3798 + 3804 ], "_not": [ - 3798 + 3804 ], "_or": [ - 3798 + 3804 ], "deleted_at": [ - 4494 + 4500 ], "match": [ - 2770 + 2776 ], "match_id": [ - 4995 + 5001 ], "match_map": [ - 2608 + 2614 ], "match_map_id": [ - 4995 + 5001 ], "player": [ - 3908 + 3914 ], "player_steam_id": [ - 254 + 260 ], "round": [ 41 @@ -86114,7 +86649,7 @@ export default { "player_unused_utility_constraint": {}, "player_unused_utility_inc_input": { "player_steam_id": [ - 252 + 258 ], "round": [ 40 @@ -86128,25 +86663,25 @@ export default { }, "player_unused_utility_insert_input": { "deleted_at": [ - 4493 + 4499 ], "match": [ - 2779 + 2785 ], "match_id": [ - 4993 + 4999 ], "match_map": [ - 2617 + 2623 ], "match_map_id": [ - 4993 + 4999 ], "player": [ - 3915 + 3921 ], "player_steam_id": [ - 252 + 258 ], "round": [ 40 @@ -86160,16 +86695,16 @@ export default { }, "player_unused_utility_max_fields": { "deleted_at": [ - 4493 + 4499 ], "match_id": [ - 4993 + 4999 ], "match_map_id": [ - 4993 + 4999 ], "player_steam_id": [ - 252 + 258 ], "round": [ 40 @@ -86183,22 +86718,22 @@ export default { }, "player_unused_utility_max_order_by": { "deleted_at": [ - 2946 + 2952 ], "match_id": [ - 2946 + 2952 ], "match_map_id": [ - 2946 + 2952 ], "player_steam_id": [ - 2946 + 2952 ], "round": [ - 2946 + 2952 ], "unused": [ - 2946 + 2952 ], "__typename": [ 80 @@ -86206,16 +86741,16 @@ export default { }, "player_unused_utility_min_fields": { "deleted_at": [ - 4493 + 4499 ], "match_id": [ - 4993 + 4999 ], "match_map_id": [ - 4993 + 4999 ], "player_steam_id": [ - 252 + 258 ], "round": [ 40 @@ -86229,22 +86764,22 @@ export default { }, "player_unused_utility_min_order_by": { "deleted_at": [ - 2946 + 2952 ], "match_id": [ - 2946 + 2952 ], "match_map_id": [ - 2946 + 2952 ], "player_steam_id": [ - 2946 + 2952 ], "round": [ - 2946 + 2952 ], "unused": [ - 2946 + 2952 ], "__typename": [ 80 @@ -86255,7 +86790,7 @@ export default { 40 ], "returning": [ - 3789 + 3795 ], "__typename": [ 80 @@ -86263,13 +86798,13 @@ export default { }, "player_unused_utility_on_conflict": { "constraint": [ - 3799 + 3805 ], "update_columns": [ - 3822 + 3828 ], "where": [ - 3798 + 3804 ], "__typename": [ 80 @@ -86277,31 +86812,31 @@ export default { }, "player_unused_utility_order_by": { "deleted_at": [ - 2946 + 2952 ], "match": [ - 2781 + 2787 ], "match_id": [ - 2946 + 2952 ], "match_map": [ - 2619 + 2625 ], "match_map_id": [ - 2946 + 2952 ], "player": [ - 3917 + 3923 ], "player_steam_id": [ - 2946 + 2952 ], "round": [ - 2946 + 2952 ], "unused": [ - 2946 + 2952 ], "__typename": [ 80 @@ -86309,10 +86844,10 @@ export default { }, "player_unused_utility_pk_columns_input": { "match_map_id": [ - 4993 + 4999 ], "player_steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -86321,16 +86856,16 @@ export default { "player_unused_utility_select_column": {}, "player_unused_utility_set_input": { "deleted_at": [ - 4493 + 4499 ], "match_id": [ - 4993 + 4999 ], "match_map_id": [ - 4993 + 4999 ], "player_steam_id": [ - 252 + 258 ], "round": [ 40 @@ -86358,13 +86893,13 @@ export default { }, "player_unused_utility_stddev_order_by": { "player_steam_id": [ - 2946 + 2952 ], "round": [ - 2946 + 2952 ], "unused": [ - 2946 + 2952 ], "__typename": [ 80 @@ -86386,13 +86921,13 @@ export default { }, "player_unused_utility_stddev_pop_order_by": { "player_steam_id": [ - 2946 + 2952 ], "round": [ - 2946 + 2952 ], "unused": [ - 2946 + 2952 ], "__typename": [ 80 @@ -86414,13 +86949,13 @@ export default { }, "player_unused_utility_stddev_samp_order_by": { "player_steam_id": [ - 2946 + 2952 ], "round": [ - 2946 + 2952 ], "unused": [ - 2946 + 2952 ], "__typename": [ 80 @@ -86428,10 +86963,10 @@ export default { }, "player_unused_utility_stream_cursor_input": { "initial_value": [ - 3819 + 3825 ], "ordering": [ - 308 + 314 ], "__typename": [ 80 @@ -86439,16 +86974,16 @@ export default { }, "player_unused_utility_stream_cursor_value_input": { "deleted_at": [ - 4493 + 4499 ], "match_id": [ - 4993 + 4999 ], "match_map_id": [ - 4993 + 4999 ], "player_steam_id": [ - 252 + 258 ], "round": [ 40 @@ -86462,7 +86997,7 @@ export default { }, "player_unused_utility_sum_fields": { "player_steam_id": [ - 252 + 258 ], "round": [ 40 @@ -86476,13 +87011,13 @@ export default { }, "player_unused_utility_sum_order_by": { "player_steam_id": [ - 2946 + 2952 ], "round": [ - 2946 + 2952 ], "unused": [ - 2946 + 2952 ], "__typename": [ 80 @@ -86491,13 +87026,13 @@ export default { "player_unused_utility_update_column": {}, "player_unused_utility_updates": { "_inc": [ - 3800 + 3806 ], "_set": [ - 3811 + 3817 ], "where": [ - 3798 + 3804 ], "__typename": [ 80 @@ -86519,13 +87054,13 @@ export default { }, "player_unused_utility_var_pop_order_by": { "player_steam_id": [ - 2946 + 2952 ], "round": [ - 2946 + 2952 ], "unused": [ - 2946 + 2952 ], "__typename": [ 80 @@ -86547,13 +87082,13 @@ export default { }, "player_unused_utility_var_samp_order_by": { "player_steam_id": [ - 2946 + 2952 ], "round": [ - 2946 + 2952 ], "unused": [ - 2946 + 2952 ], "__typename": [ 80 @@ -86575,13 +87110,13 @@ export default { }, "player_unused_utility_variance_order_by": { "player_steam_id": [ - 2946 + 2952 ], "round": [ - 2946 + 2952 ], "unused": [ - 2946 + 2952 ], "__typename": [ 80 @@ -86592,34 +87127,34 @@ export default { 80 ], "attacker_steam_id": [ - 252 + 258 ], "deleted_at": [ - 4493 + 4499 ], "match": [ - 2761 + 2767 ], "match_id": [ - 4993 + 4999 ], "match_map": [ - 2599 + 2605 ], "match_map_id": [ - 4993 + 4999 ], "player": [ - 3904 + 3910 ], "round": [ 40 ], "time": [ - 4493 + 4499 ], "type": [ - 1350 + 1356 ], "__typename": [ 80 @@ -86627,10 +87162,10 @@ export default { }, "player_utility_aggregate": { "aggregate": [ - 3834 + 3840 ], "nodes": [ - 3830 + 3836 ], "__typename": [ 80 @@ -86638,7 +87173,7 @@ export default { }, "player_utility_aggregate_bool_exp": { "count": [ - 3833 + 3839 ], "__typename": [ 80 @@ -86646,13 +87181,13 @@ export default { }, "player_utility_aggregate_bool_exp_count": { "arguments": [ - 3851 + 3857 ], "distinct": [ 5 ], "filter": [ - 3839 + 3845 ], "predicate": [ 41 @@ -86663,13 +87198,13 @@ export default { }, "player_utility_aggregate_fields": { "avg": [ - 3837 + 3843 ], "count": [ 40, { "columns": [ - 3851, + 3857, "[player_utility_select_column!]" ], "distinct": [ @@ -86678,31 +87213,31 @@ export default { } ], "max": [ - 3843 + 3849 ], "min": [ - 3845 + 3851 ], "stddev": [ - 3853 + 3859 ], "stddev_pop": [ - 3855 + 3861 ], "stddev_samp": [ - 3857 + 3863 ], "sum": [ - 3861 + 3867 ], "var_pop": [ - 3865 + 3871 ], "var_samp": [ - 3867 + 3873 ], "variance": [ - 3869 + 3875 ], "__typename": [ 80 @@ -86710,37 +87245,37 @@ export default { }, "player_utility_aggregate_order_by": { "avg": [ - 3838 + 3844 ], "count": [ - 2946 + 2952 ], "max": [ - 3844 + 3850 ], "min": [ - 3846 + 3852 ], "stddev": [ - 3854 + 3860 ], "stddev_pop": [ - 3856 + 3862 ], "stddev_samp": [ - 3858 + 3864 ], "sum": [ - 3862 + 3868 ], "var_pop": [ - 3866 + 3872 ], "var_samp": [ - 3868 + 3874 ], "variance": [ - 3870 + 3876 ], "__typename": [ 80 @@ -86748,10 +87283,10 @@ export default { }, "player_utility_arr_rel_insert_input": { "data": [ - 3842 + 3848 ], "on_conflict": [ - 3848 + 3854 ], "__typename": [ 80 @@ -86770,10 +87305,10 @@ export default { }, "player_utility_avg_order_by": { "attacker_steam_id": [ - 2946 + 2952 ], "round": [ - 2946 + 2952 ], "__typename": [ 80 @@ -86781,46 +87316,46 @@ export default { }, "player_utility_bool_exp": { "_and": [ - 3839 + 3845 ], "_not": [ - 3839 + 3845 ], "_or": [ - 3839 + 3845 ], "attacker_location_coordinates": [ 82 ], "attacker_steam_id": [ - 254 + 260 ], "deleted_at": [ - 4494 + 4500 ], "match": [ - 2770 + 2776 ], "match_id": [ - 4995 + 5001 ], "match_map": [ - 2608 + 2614 ], "match_map_id": [ - 4995 + 5001 ], "player": [ - 3908 + 3914 ], "round": [ 41 ], "time": [ - 4494 + 4500 ], "type": [ - 1351 + 1357 ], "__typename": [ 80 @@ -86829,7 +87364,7 @@ export default { "player_utility_constraint": {}, "player_utility_inc_input": { "attacker_steam_id": [ - 252 + 258 ], "round": [ 40 @@ -86843,34 +87378,34 @@ export default { 80 ], "attacker_steam_id": [ - 252 + 258 ], "deleted_at": [ - 4493 + 4499 ], "match": [ - 2779 + 2785 ], "match_id": [ - 4993 + 4999 ], "match_map": [ - 2617 + 2623 ], "match_map_id": [ - 4993 + 4999 ], "player": [ - 3915 + 3921 ], "round": [ 40 ], "time": [ - 4493 + 4499 ], "type": [ - 1350 + 1356 ], "__typename": [ 80 @@ -86881,22 +87416,22 @@ export default { 80 ], "attacker_steam_id": [ - 252 + 258 ], "deleted_at": [ - 4493 + 4499 ], "match_id": [ - 4993 + 4999 ], "match_map_id": [ - 4993 + 4999 ], "round": [ 40 ], "time": [ - 4493 + 4499 ], "__typename": [ 80 @@ -86904,25 +87439,25 @@ export default { }, "player_utility_max_order_by": { "attacker_location_coordinates": [ - 2946 + 2952 ], "attacker_steam_id": [ - 2946 + 2952 ], "deleted_at": [ - 2946 + 2952 ], "match_id": [ - 2946 + 2952 ], "match_map_id": [ - 2946 + 2952 ], "round": [ - 2946 + 2952 ], "time": [ - 2946 + 2952 ], "__typename": [ 80 @@ -86933,22 +87468,22 @@ export default { 80 ], "attacker_steam_id": [ - 252 + 258 ], "deleted_at": [ - 4493 + 4499 ], "match_id": [ - 4993 + 4999 ], "match_map_id": [ - 4993 + 4999 ], "round": [ 40 ], "time": [ - 4493 + 4499 ], "__typename": [ 80 @@ -86956,25 +87491,25 @@ export default { }, "player_utility_min_order_by": { "attacker_location_coordinates": [ - 2946 + 2952 ], "attacker_steam_id": [ - 2946 + 2952 ], "deleted_at": [ - 2946 + 2952 ], "match_id": [ - 2946 + 2952 ], "match_map_id": [ - 2946 + 2952 ], "round": [ - 2946 + 2952 ], "time": [ - 2946 + 2952 ], "__typename": [ 80 @@ -86985,7 +87520,7 @@ export default { 40 ], "returning": [ - 3830 + 3836 ], "__typename": [ 80 @@ -86993,13 +87528,13 @@ export default { }, "player_utility_on_conflict": { "constraint": [ - 3840 + 3846 ], "update_columns": [ - 3863 + 3869 ], "where": [ - 3839 + 3845 ], "__typename": [ 80 @@ -87007,37 +87542,37 @@ export default { }, "player_utility_order_by": { "attacker_location_coordinates": [ - 2946 + 2952 ], "attacker_steam_id": [ - 2946 + 2952 ], "deleted_at": [ - 2946 + 2952 ], "match": [ - 2781 + 2787 ], "match_id": [ - 2946 + 2952 ], "match_map": [ - 2619 + 2625 ], "match_map_id": [ - 2946 + 2952 ], "player": [ - 3917 + 3923 ], "round": [ - 2946 + 2952 ], "time": [ - 2946 + 2952 ], "type": [ - 2946 + 2952 ], "__typename": [ 80 @@ -87045,13 +87580,13 @@ export default { }, "player_utility_pk_columns_input": { "attacker_steam_id": [ - 252 + 258 ], "match_map_id": [ - 4993 + 4999 ], "time": [ - 4493 + 4499 ], "__typename": [ 80 @@ -87063,25 +87598,25 @@ export default { 80 ], "attacker_steam_id": [ - 252 + 258 ], "deleted_at": [ - 4493 + 4499 ], "match_id": [ - 4993 + 4999 ], "match_map_id": [ - 4993 + 4999 ], "round": [ 40 ], "time": [ - 4493 + 4499 ], "type": [ - 1350 + 1356 ], "__typename": [ 80 @@ -87100,10 +87635,10 @@ export default { }, "player_utility_stddev_order_by": { "attacker_steam_id": [ - 2946 + 2952 ], "round": [ - 2946 + 2952 ], "__typename": [ 80 @@ -87122,10 +87657,10 @@ export default { }, "player_utility_stddev_pop_order_by": { "attacker_steam_id": [ - 2946 + 2952 ], "round": [ - 2946 + 2952 ], "__typename": [ 80 @@ -87144,10 +87679,10 @@ export default { }, "player_utility_stddev_samp_order_by": { "attacker_steam_id": [ - 2946 + 2952 ], "round": [ - 2946 + 2952 ], "__typename": [ 80 @@ -87155,10 +87690,10 @@ export default { }, "player_utility_stream_cursor_input": { "initial_value": [ - 3860 + 3866 ], "ordering": [ - 308 + 314 ], "__typename": [ 80 @@ -87169,25 +87704,25 @@ export default { 80 ], "attacker_steam_id": [ - 252 + 258 ], "deleted_at": [ - 4493 + 4499 ], "match_id": [ - 4993 + 4999 ], "match_map_id": [ - 4993 + 4999 ], "round": [ 40 ], "time": [ - 4493 + 4499 ], "type": [ - 1350 + 1356 ], "__typename": [ 80 @@ -87195,7 +87730,7 @@ export default { }, "player_utility_sum_fields": { "attacker_steam_id": [ - 252 + 258 ], "round": [ 40 @@ -87206,10 +87741,10 @@ export default { }, "player_utility_sum_order_by": { "attacker_steam_id": [ - 2946 + 2952 ], "round": [ - 2946 + 2952 ], "__typename": [ 80 @@ -87218,13 +87753,13 @@ export default { "player_utility_update_column": {}, "player_utility_updates": { "_inc": [ - 3841 + 3847 ], "_set": [ - 3852 + 3858 ], "where": [ - 3839 + 3845 ], "__typename": [ 80 @@ -87243,10 +87778,10 @@ export default { }, "player_utility_var_pop_order_by": { "attacker_steam_id": [ - 2946 + 2952 ], "round": [ - 2946 + 2952 ], "__typename": [ 80 @@ -87265,10 +87800,10 @@ export default { }, "player_utility_var_samp_order_by": { "attacker_steam_id": [ - 2946 + 2952 ], "round": [ - 2946 + 2952 ], "__typename": [ 80 @@ -87287,10 +87822,10 @@ export default { }, "player_utility_variance_order_by": { "attacker_steam_id": [ - 2946 + 2952 ], "round": [ - 2946 + 2952 ], "__typename": [ 80 @@ -87310,7 +87845,7 @@ export default { 40 ], "match_id": [ - 4993 + 4999 ], "shots": [ 40 @@ -87319,7 +87854,7 @@ export default { 40 ], "steam_id": [ - 252 + 258 ], "weapon_class": [ 80 @@ -87330,10 +87865,10 @@ export default { }, "player_weapon_stats_v_aggregate": { "aggregate": [ - 3875 + 3881 ], "nodes": [ - 3871 + 3877 ], "__typename": [ 80 @@ -87341,7 +87876,7 @@ export default { }, "player_weapon_stats_v_aggregate_bool_exp": { "count": [ - 3874 + 3880 ], "__typename": [ 80 @@ -87349,13 +87884,13 @@ export default { }, "player_weapon_stats_v_aggregate_bool_exp_count": { "arguments": [ - 3887 + 3893 ], "distinct": [ 5 ], "filter": [ - 3880 + 3886 ], "predicate": [ 41 @@ -87366,13 +87901,13 @@ export default { }, "player_weapon_stats_v_aggregate_fields": { "avg": [ - 3878 + 3884 ], "count": [ 40, { "columns": [ - 3887, + 3893, "[player_weapon_stats_v_select_column!]" ], "distinct": [ @@ -87381,31 +87916,31 @@ export default { } ], "max": [ - 3882 + 3888 ], "min": [ - 3884 + 3890 ], "stddev": [ - 3888 + 3894 ], "stddev_pop": [ - 3890 + 3896 ], "stddev_samp": [ - 3892 + 3898 ], "sum": [ - 3896 + 3902 ], "var_pop": [ - 3898 + 3904 ], "var_samp": [ - 3900 + 3906 ], "variance": [ - 3902 + 3908 ], "__typename": [ 80 @@ -87413,37 +87948,37 @@ export default { }, "player_weapon_stats_v_aggregate_order_by": { "avg": [ - 3879 + 3885 ], "count": [ - 2946 + 2952 ], "max": [ - 3883 + 3889 ], "min": [ - 3885 + 3891 ], "stddev": [ - 3889 + 3895 ], "stddev_pop": [ - 3891 + 3897 ], "stddev_samp": [ - 3893 + 3899 ], "sum": [ - 3897 + 3903 ], "var_pop": [ - 3899 + 3905 ], "var_samp": [ - 3901 + 3907 ], "variance": [ - 3903 + 3909 ], "__typename": [ 80 @@ -87451,7 +87986,7 @@ export default { }, "player_weapon_stats_v_arr_rel_insert_input": { "data": [ - 3881 + 3887 ], "__typename": [ 80 @@ -87485,25 +88020,25 @@ export default { }, "player_weapon_stats_v_avg_order_by": { "first_bullet_hits": [ - 2946 + 2952 ], "first_bullet_shots": [ - 2946 + 2952 ], "hits": [ - 2946 + 2952 ], "hits_spotted": [ - 2946 + 2952 ], "shots": [ - 2946 + 2952 ], "shots_spotted": [ - 2946 + 2952 ], "steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -87511,13 +88046,13 @@ export default { }, "player_weapon_stats_v_bool_exp": { "_and": [ - 3880 + 3886 ], "_not": [ - 3880 + 3886 ], "_or": [ - 3880 + 3886 ], "first_bullet_hits": [ 41 @@ -87532,7 +88067,7 @@ export default { 41 ], "match_id": [ - 4995 + 5001 ], "shots": [ 41 @@ -87541,7 +88076,7 @@ export default { 41 ], "steam_id": [ - 254 + 260 ], "weapon_class": [ 82 @@ -87564,7 +88099,7 @@ export default { 40 ], "match_id": [ - 4993 + 4999 ], "shots": [ 40 @@ -87573,7 +88108,7 @@ export default { 40 ], "steam_id": [ - 252 + 258 ], "weapon_class": [ 80 @@ -87596,7 +88131,7 @@ export default { 40 ], "match_id": [ - 4993 + 4999 ], "shots": [ 40 @@ -87605,7 +88140,7 @@ export default { 40 ], "steam_id": [ - 252 + 258 ], "weapon_class": [ 80 @@ -87616,31 +88151,31 @@ export default { }, "player_weapon_stats_v_max_order_by": { "first_bullet_hits": [ - 2946 + 2952 ], "first_bullet_shots": [ - 2946 + 2952 ], "hits": [ - 2946 + 2952 ], "hits_spotted": [ - 2946 + 2952 ], "match_id": [ - 2946 + 2952 ], "shots": [ - 2946 + 2952 ], "shots_spotted": [ - 2946 + 2952 ], "steam_id": [ - 2946 + 2952 ], "weapon_class": [ - 2946 + 2952 ], "__typename": [ 80 @@ -87660,7 +88195,7 @@ export default { 40 ], "match_id": [ - 4993 + 4999 ], "shots": [ 40 @@ -87669,7 +88204,7 @@ export default { 40 ], "steam_id": [ - 252 + 258 ], "weapon_class": [ 80 @@ -87680,31 +88215,31 @@ export default { }, "player_weapon_stats_v_min_order_by": { "first_bullet_hits": [ - 2946 + 2952 ], "first_bullet_shots": [ - 2946 + 2952 ], "hits": [ - 2946 + 2952 ], "hits_spotted": [ - 2946 + 2952 ], "match_id": [ - 2946 + 2952 ], "shots": [ - 2946 + 2952 ], "shots_spotted": [ - 2946 + 2952 ], "steam_id": [ - 2946 + 2952 ], "weapon_class": [ - 2946 + 2952 ], "__typename": [ 80 @@ -87712,31 +88247,31 @@ export default { }, "player_weapon_stats_v_order_by": { "first_bullet_hits": [ - 2946 + 2952 ], "first_bullet_shots": [ - 2946 + 2952 ], "hits": [ - 2946 + 2952 ], "hits_spotted": [ - 2946 + 2952 ], "match_id": [ - 2946 + 2952 ], "shots": [ - 2946 + 2952 ], "shots_spotted": [ - 2946 + 2952 ], "steam_id": [ - 2946 + 2952 ], "weapon_class": [ - 2946 + 2952 ], "__typename": [ 80 @@ -87771,25 +88306,25 @@ export default { }, "player_weapon_stats_v_stddev_order_by": { "first_bullet_hits": [ - 2946 + 2952 ], "first_bullet_shots": [ - 2946 + 2952 ], "hits": [ - 2946 + 2952 ], "hits_spotted": [ - 2946 + 2952 ], "shots": [ - 2946 + 2952 ], "shots_spotted": [ - 2946 + 2952 ], "steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -87823,25 +88358,25 @@ export default { }, "player_weapon_stats_v_stddev_pop_order_by": { "first_bullet_hits": [ - 2946 + 2952 ], "first_bullet_shots": [ - 2946 + 2952 ], "hits": [ - 2946 + 2952 ], "hits_spotted": [ - 2946 + 2952 ], "shots": [ - 2946 + 2952 ], "shots_spotted": [ - 2946 + 2952 ], "steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -87875,25 +88410,25 @@ export default { }, "player_weapon_stats_v_stddev_samp_order_by": { "first_bullet_hits": [ - 2946 + 2952 ], "first_bullet_shots": [ - 2946 + 2952 ], "hits": [ - 2946 + 2952 ], "hits_spotted": [ - 2946 + 2952 ], "shots": [ - 2946 + 2952 ], "shots_spotted": [ - 2946 + 2952 ], "steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -87901,10 +88436,10 @@ export default { }, "player_weapon_stats_v_stream_cursor_input": { "initial_value": [ - 3895 + 3901 ], "ordering": [ - 308 + 314 ], "__typename": [ 80 @@ -87924,7 +88459,7 @@ export default { 40 ], "match_id": [ - 4993 + 4999 ], "shots": [ 40 @@ -87933,7 +88468,7 @@ export default { 40 ], "steam_id": [ - 252 + 258 ], "weapon_class": [ 80 @@ -87962,7 +88497,7 @@ export default { 40 ], "steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -87970,25 +88505,25 @@ export default { }, "player_weapon_stats_v_sum_order_by": { "first_bullet_hits": [ - 2946 + 2952 ], "first_bullet_shots": [ - 2946 + 2952 ], "hits": [ - 2946 + 2952 ], "hits_spotted": [ - 2946 + 2952 ], "shots": [ - 2946 + 2952 ], "shots_spotted": [ - 2946 + 2952 ], "steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -88022,25 +88557,25 @@ export default { }, "player_weapon_stats_v_var_pop_order_by": { "first_bullet_hits": [ - 2946 + 2952 ], "first_bullet_shots": [ - 2946 + 2952 ], "hits": [ - 2946 + 2952 ], "hits_spotted": [ - 2946 + 2952 ], "shots": [ - 2946 + 2952 ], "shots_spotted": [ - 2946 + 2952 ], "steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -88074,25 +88609,25 @@ export default { }, "player_weapon_stats_v_var_samp_order_by": { "first_bullet_hits": [ - 2946 + 2952 ], "first_bullet_shots": [ - 2946 + 2952 ], "hits": [ - 2946 + 2952 ], "hits_spotted": [ - 2946 + 2952 ], "shots": [ - 2946 + 2952 ], "shots_spotted": [ - 2946 + 2952 ], "steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -88126,25 +88661,25 @@ export default { }, "player_weapon_stats_v_variance_order_by": { "first_bullet_hits": [ - 2946 + 2952 ], "first_bullet_shots": [ - 2946 + 2952 ], "hits": [ - 2946 + 2952 ], "hits_spotted": [ - 2946 + 2952 ], "shots": [ - 2946 + 2952 ], "shots_spotted": [ - 2946 + 2952 ], "steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -88152,10 +88687,10 @@ export default { }, "players": { "abandoned_matches": [ - 114, + 120, { "distinct_on": [ - 135, + 141, "[abandoned_matches_select_column!]" ], "limit": [ @@ -88165,19 +88700,19 @@ export default { 40 ], "order_by": [ - 133, + 139, "[abandoned_matches_order_by!]" ], "where": [ - 123 + 129 ] } ], "abandoned_matches_aggregate": [ - 115, + 121, { "distinct_on": [ - 135, + 141, "[abandoned_matches_select_column!]" ], "limit": [ @@ -88187,19 +88722,19 @@ export default { 40 ], "order_by": [ - 133, + 139, "[abandoned_matches_order_by!]" ], "where": [ - 123 + 129 ] } ], "aim_weapon_stats": [ - 3043, + 3049, { "distinct_on": [ - 3064, + 3070, "[player_aim_weapon_stats_select_column!]" ], "limit": [ @@ -88209,19 +88744,19 @@ export default { 40 ], "order_by": [ - 3062, + 3068, "[player_aim_weapon_stats_order_by!]" ], "where": [ - 3052 + 3058 ] } ], "aim_weapon_stats_aggregate": [ - 3044, + 3050, { "distinct_on": [ - 3064, + 3070, "[player_aim_weapon_stats_select_column!]" ], "limit": [ @@ -88231,19 +88766,19 @@ export default { 40 ], "order_by": [ - 3062, + 3068, "[player_aim_weapon_stats_order_by!]" ], "where": [ - 3052 + 3058 ] } ], "assists": [ - 3084, + 3090, { "distinct_on": [ - 3107, + 3113, "[player_assists_select_column!]" ], "limit": [ @@ -88253,19 +88788,19 @@ export default { 40 ], "order_by": [ - 3105, + 3111, "[player_assists_order_by!]" ], "where": [ - 3095 + 3101 ] } ], "assists_aggregate": [ - 3085, + 3091, { "distinct_on": [ - 3107, + 3113, "[player_assists_select_column!]" ], "limit": [ @@ -88275,19 +88810,19 @@ export default { 40 ], "order_by": [ - 3105, + 3111, "[player_assists_order_by!]" ], "where": [ - 3095 + 3101 ] } ], "assited_by_players": [ - 3084, + 3090, { "distinct_on": [ - 3107, + 3113, "[player_assists_select_column!]" ], "limit": [ @@ -88297,19 +88832,19 @@ export default { 40 ], "order_by": [ - 3105, + 3111, "[player_assists_order_by!]" ], "where": [ - 3095 + 3101 ] } ], "assited_by_players_aggregate": [ - 3085, + 3091, { "distinct_on": [ - 3107, + 3113, "[player_assists_select_column!]" ], "limit": [ @@ -88319,11 +88854,11 @@ export default { 40 ], "order_by": [ - 3105, + 3111, "[player_assists_order_by!]" ], "where": [ - 3095 + 3101 ] } ], @@ -88331,10 +88866,10 @@ export default { 80 ], "awards": [ - 183, + 189, { "distinct_on": [ - 204, + 210, "[award_recipients_select_column!]" ], "limit": [ @@ -88344,19 +88879,19 @@ export default { 40 ], "order_by": [ - 202, + 208, "[award_recipients_order_by!]" ], "where": [ - 192 + 198 ] } ], "awards_aggregate": [ - 184, + 190, { "distinct_on": [ - 204, + 210, "[award_recipients_select_column!]" ], "limit": [ @@ -88366,19 +88901,19 @@ export default { 40 ], "order_by": [ - 202, + 208, "[award_recipients_order_by!]" ], "where": [ - 192 + 198 ] } ], "coach_lineups": [ - 2441, + 2447, { "distinct_on": [ - 2463, + 2469, "[match_lineups_select_column!]" ], "limit": [ @@ -88388,19 +88923,19 @@ export default { 40 ], "order_by": [ - 2461, + 2467, "[match_lineups_order_by!]" ], "where": [ - 2450 + 2456 ] } ], "coach_lineups_aggregate": [ - 2442, + 2448, { "distinct_on": [ - 2463, + 2469, "[match_lineups_select_column!]" ], "limit": [ @@ -88410,11 +88945,11 @@ export default { 40 ], "order_by": [ - 2461, + 2467, "[match_lineups_order_by!]" ], "where": [ - 2450 + 2456 ] } ], @@ -88422,19 +88957,19 @@ export default { 80 ], "created_at": [ - 4493 + 4499 ], "current_lobby_id": [ - 4993 + 4999 ], "custom_avatar_url": [ 80 ], "damage_dealt": [ - 3147, + 3153, { "distinct_on": [ - 3168, + 3174, "[player_damages_select_column!]" ], "limit": [ @@ -88444,19 +88979,19 @@ export default { 40 ], "order_by": [ - 3166, + 3172, "[player_damages_order_by!]" ], "where": [ - 3156 + 3162 ] } ], "damage_dealt_aggregate": [ - 3148, + 3154, { "distinct_on": [ - 3168, + 3174, "[player_damages_select_column!]" ], "limit": [ @@ -88466,19 +89001,19 @@ export default { 40 ], "order_by": [ - 3166, + 3172, "[player_damages_order_by!]" ], "where": [ - 3156 + 3162 ] } ], "damage_taken": [ - 3147, + 3153, { "distinct_on": [ - 3168, + 3174, "[player_damages_select_column!]" ], "limit": [ @@ -88488,19 +89023,19 @@ export default { 40 ], "order_by": [ - 3166, + 3172, "[player_damages_order_by!]" ], "where": [ - 3156 + 3162 ] } ], "damage_taken_aggregate": [ - 3148, + 3154, { "distinct_on": [ - 3168, + 3174, "[player_damages_select_column!]" ], "limit": [ @@ -88510,11 +89045,11 @@ export default { 40 ], "order_by": [ - 3166, + 3172, "[player_damages_order_by!]" ], "where": [ - 3156 + 3162 ] } ], @@ -88522,10 +89057,10 @@ export default { 40 ], "deaths": [ - 3301, + 3307, { "distinct_on": [ - 3365, + 3371, "[player_kills_select_column!]" ], "limit": [ @@ -88535,19 +89070,19 @@ export default { 40 ], "order_by": [ - 3363, + 3369, "[player_kills_order_by!]" ], "where": [ - 3312 + 3318 ] } ], "deaths_aggregate": [ - 3302, + 3308, { "distinct_on": [ - 3365, + 3371, "[player_kills_select_column!]" ], "limit": [ @@ -88557,11 +89092,11 @@ export default { 40 ], "order_by": [ - 3363, + 3369, "[player_kills_order_by!]" ], "where": [ - 3312 + 3318 ] } ], @@ -88569,10 +89104,10 @@ export default { 80 ], "draft_game_players": [ - 413, + 419, { "distinct_on": [ - 436, + 442, "[draft_game_players_select_column!]" ], "limit": [ @@ -88582,19 +89117,19 @@ export default { 40 ], "order_by": [ - 434, + 440, "[draft_game_players_order_by!]" ], "where": [ - 424 + 430 ] } ], "draft_game_players_aggregate": [ - 414, + 420, { "distinct_on": [ - 436, + 442, "[draft_game_players_select_column!]" ], "limit": [ @@ -88604,16 +89139,16 @@ export default { 40 ], "order_by": [ - 434, + 440, "[draft_game_players_order_by!]" ], "where": [ - 424 + 430 ] } ], "elo": [ - 1817, + 1823, { "path": [ 80 @@ -88621,10 +89156,10 @@ export default { } ], "elo_history": [ - 5370, + 5376, { "distinct_on": [ - 5396, + 5402, "[v_player_elo_select_column!]" ], "limit": [ @@ -88634,19 +89169,19 @@ export default { 40 ], "order_by": [ - 5395, + 5401, "[v_player_elo_order_by!]" ], "where": [ - 5389 + 5395 ] } ], "elo_history_aggregate": [ - 5371, + 5377, { "distinct_on": [ - 5396, + 5402, "[v_player_elo_select_column!]" ], "limit": [ @@ -88656,11 +89191,11 @@ export default { 40 ], "order_by": [ - 5395, + 5401, "[v_player_elo_order_by!]" ], "where": [ - 5389 + 5395 ] } ], @@ -88674,10 +89209,10 @@ export default { 80 ], "faceit_rank_history": [ - 3215, + 3221, { "distinct_on": [ - 3236, + 3242, "[player_faceit_rank_history_select_column!]" ], "limit": [ @@ -88687,19 +89222,19 @@ export default { 40 ], "order_by": [ - 3234, + 3240, "[player_faceit_rank_history_order_by!]" ], "where": [ - 3224 + 3230 ] } ], "faceit_rank_history_aggregate": [ - 3216, + 3222, { "distinct_on": [ - 3236, + 3242, "[player_faceit_rank_history_select_column!]" ], "limit": [ @@ -88709,11 +89244,11 @@ export default { 40 ], "order_by": [ - 3234, + 3240, "[player_faceit_rank_history_order_by!]" ], "where": [ - 3224 + 3230 ] } ], @@ -88721,16 +89256,16 @@ export default { 40 ], "faceit_updated_at": [ - 4493 + 4499 ], "faceit_url": [ 80 ], "flashed_by_players": [ - 3256, + 3262, { "distinct_on": [ - 3279, + 3285, "[player_flashes_select_column!]" ], "limit": [ @@ -88740,19 +89275,19 @@ export default { 40 ], "order_by": [ - 3277, + 3283, "[player_flashes_order_by!]" ], "where": [ - 3267 + 3273 ] } ], "flashed_by_players_aggregate": [ - 3257, + 3263, { "distinct_on": [ - 3279, + 3285, "[player_flashes_select_column!]" ], "limit": [ @@ -88762,19 +89297,19 @@ export default { 40 ], "order_by": [ - 3277, + 3283, "[player_flashes_order_by!]" ], "where": [ - 3267 + 3273 ] } ], "flashed_players": [ - 3256, + 3262, { "distinct_on": [ - 3279, + 3285, "[player_flashes_select_column!]" ], "limit": [ @@ -88784,19 +89319,19 @@ export default { 40 ], "order_by": [ - 3277, + 3283, "[player_flashes_order_by!]" ], "where": [ - 3267 + 3273 ] } ], "flashed_players_aggregate": [ - 3257, + 3263, { "distinct_on": [ - 3279, + 3285, "[player_flashes_select_column!]" ], "limit": [ @@ -88806,19 +89341,19 @@ export default { 40 ], "order_by": [ - 3277, + 3283, "[player_flashes_order_by!]" ], "where": [ - 3267 + 3273 ] } ], "friends": [ - 2821, + 2827, { "distinct_on": [ - 2846, + 2852, "[my_friends_select_column!]" ], "limit": [ @@ -88828,19 +89363,19 @@ export default { 40 ], "order_by": [ - 2844, + 2850, "[my_friends_order_by!]" ], "where": [ - 2833 + 2839 ] } ], "friends_aggregate": [ - 2822, + 2828, { "distinct_on": [ - 2846, + 2852, "[my_friends_select_column!]" ], "limit": [ @@ -88850,11 +89385,11 @@ export default { 40 ], "order_by": [ - 2844, + 2850, "[my_friends_order_by!]" ], "where": [ - 2833 + 2839 ] } ], @@ -88862,10 +89397,10 @@ export default { 40 ], "invited_players": [ - 4163, + 4169, { "distinct_on": [ - 4184, + 4190, "[team_invites_select_column!]" ], "limit": [ @@ -88875,19 +89410,19 @@ export default { 40 ], "order_by": [ - 4182, + 4188, "[team_invites_order_by!]" ], "where": [ - 4172 + 4178 ] } ], "invited_players_aggregate": [ - 4164, + 4170, { "distinct_on": [ - 4184, + 4190, "[team_invites_select_column!]" ], "limit": [ @@ -88897,11 +89432,11 @@ export default { 40 ], "order_by": [ - 4182, + 4188, "[team_invites_order_by!]" ], "where": [ - 4172 + 4178 ] } ], @@ -88924,10 +89459,10 @@ export default { 5 ], "kills": [ - 3301, + 3307, { "distinct_on": [ - 3365, + 3371, "[player_kills_select_column!]" ], "limit": [ @@ -88937,19 +89472,19 @@ export default { 40 ], "order_by": [ - 3363, + 3369, "[player_kills_order_by!]" ], "where": [ - 3312 + 3318 ] } ], "kills_aggregate": [ - 3302, + 3308, { "distinct_on": [ - 3365, + 3371, "[player_kills_select_column!]" ], "limit": [ @@ -88959,19 +89494,19 @@ export default { 40 ], "order_by": [ - 3363, + 3369, "[player_kills_order_by!]" ], "where": [ - 3312 + 3318 ] } ], "kills_by_weapons": [ - 3313, + 3319, { "distinct_on": [ - 3334, + 3340, "[player_kills_by_weapon_select_column!]" ], "limit": [ @@ -88981,19 +89516,19 @@ export default { 40 ], "order_by": [ - 3332, + 3338, "[player_kills_by_weapon_order_by!]" ], "where": [ - 3322 + 3328 ] } ], "kills_by_weapons_aggregate": [ - 3314, + 3320, { "distinct_on": [ - 3334, + 3340, "[player_kills_by_weapon_select_column!]" ], "limit": [ @@ -89003,11 +89538,11 @@ export default { 40 ], "order_by": [ - 3332, + 3338, "[player_kills_by_weapon_order_by!]" ], "where": [ - 3322 + 3328 ] } ], @@ -89015,16 +89550,16 @@ export default { 80 ], "last_read_news_at": [ - 4493 + 4499 ], "last_sign_in_at": [ - 4493 + 4499 ], "lobby_players": [ - 2215, + 2221, { "distinct_on": [ - 2238, + 2244, "[lobby_players_select_column!]" ], "limit": [ @@ -89034,19 +89569,19 @@ export default { 40 ], "order_by": [ - 2236, + 2242, "[lobby_players_order_by!]" ], "where": [ - 2226 + 2232 ] } ], "lobby_players_aggregate": [ - 2216, + 2222, { "distinct_on": [ - 2238, + 2244, "[lobby_players_select_column!]" ], "limit": [ @@ -89056,11 +89591,11 @@ export default { 40 ], "order_by": [ - 2236, + 2242, "[lobby_players_order_by!]" ], "where": [ - 2226 + 2232 ] } ], @@ -89077,10 +89612,10 @@ export default { 40 ], "match_map_hltv": [ - 5475, + 5481, { "distinct_on": [ - 5493, + 5499, "[v_player_match_map_hltv_select_column!]" ], "limit": [ @@ -89090,19 +89625,19 @@ export default { 40 ], "order_by": [ - 5492, + 5498, "[v_player_match_map_hltv_order_by!]" ], "where": [ - 5484 + 5490 ] } ], "match_map_hltv_aggregate": [ - 5476, + 5482, { "distinct_on": [ - 5493, + 5499, "[v_player_match_map_hltv_select_column!]" ], "limit": [ @@ -89112,19 +89647,19 @@ export default { 40 ], "order_by": [ - 5492, + 5498, "[v_player_match_map_hltv_order_by!]" ], "where": [ - 5484 + 5490 ] } ], "match_map_stats": [ - 3410, + 3416, { "distinct_on": [ - 3431, + 3437, "[player_match_map_stats_select_column!]" ], "limit": [ @@ -89134,19 +89669,19 @@ export default { 40 ], "order_by": [ - 3429, + 3435, "[player_match_map_stats_order_by!]" ], "where": [ - 3419 + 3425 ] } ], "match_map_stats_aggregate": [ - 3411, + 3417, { "distinct_on": [ - 3431, + 3437, "[player_match_map_stats_select_column!]" ], "limit": [ @@ -89156,19 +89691,19 @@ export default { 40 ], "order_by": [ - 3429, + 3435, "[player_match_map_stats_order_by!]" ], "where": [ - 3419 + 3425 ] } ], "match_stats": [ - 3469, + 3475, { "distinct_on": [ - 3485, + 3491, "[player_match_stats_v_select_column!]" ], "limit": [ @@ -89178,19 +89713,19 @@ export default { 40 ], "order_by": [ - 3484, + 3490, "[player_match_stats_v_order_by!]" ], "where": [ - 3478 + 3484 ] } ], "match_stats_aggregate": [ - 3470, + 3476, { "distinct_on": [ - 3485, + 3491, "[player_match_stats_v_select_column!]" ], "limit": [ @@ -89200,19 +89735,19 @@ export default { 40 ], "order_by": [ - 3484, + 3490, "[player_match_stats_v_order_by!]" ], "where": [ - 3478 + 3484 ] } ], "matches": [ - 2761, + 2767, { "distinct_on": [ - 2783, + 2789, "[matches_select_column!]" ], "limit": [ @@ -89222,22 +89757,22 @@ export default { 40 ], "order_by": [ - 2781, + 2787, "[matches_order_by!]" ], "where": [ - 2770 + 2776 ] } ], "matchmaking_cooldown": [ - 4493 + 4499 ], "multi_kills": [ - 5566, + 5572, { "distinct_on": [ - 5582, + 5588, "[v_player_multi_kills_select_column!]" ], "limit": [ @@ -89247,19 +89782,19 @@ export default { 40 ], "order_by": [ - 5581, + 5587, "[v_player_multi_kills_order_by!]" ], "where": [ - 5575 + 5581 ] } ], "multi_kills_aggregate": [ - 5567, + 5573, { "distinct_on": [ - 5582, + 5588, "[v_player_multi_kills_select_column!]" ], "limit": [ @@ -89269,11 +89804,11 @@ export default { 40 ], "order_by": [ - 5581, + 5587, "[v_player_multi_kills_order_by!]" ], "where": [ - 5575 + 5581 ] } ], @@ -89284,10 +89819,10 @@ export default { 5 ], "notifications": [ - 2894, + 2900, { "distinct_on": [ - 2922, + 2928, "[notifications_select_column!]" ], "limit": [ @@ -89297,19 +89832,19 @@ export default { 40 ], "order_by": [ - 2919, + 2925, "[notifications_order_by!]" ], "where": [ - 2906 + 2912 ] } ], "notifications_aggregate": [ - 2895, + 2901, { "distinct_on": [ - 2922, + 2928, "[notifications_select_column!]" ], "limit": [ @@ -89319,19 +89854,19 @@ export default { 40 ], "order_by": [ - 2919, + 2925, "[notifications_order_by!]" ], "where": [ - 2906 + 2912 ] } ], "objectives": [ - 3502, + 3508, { "distinct_on": [ - 3523, + 3529, "[player_objectives_select_column!]" ], "limit": [ @@ -89341,19 +89876,19 @@ export default { 40 ], "order_by": [ - 3521, + 3527, "[player_objectives_order_by!]" ], "where": [ - 3511 + 3517 ] } ], "objectives_aggregate": [ - 3503, + 3509, { "distinct_on": [ - 3523, + 3529, "[player_objectives_select_column!]" ], "limit": [ @@ -89363,19 +89898,19 @@ export default { 40 ], "order_by": [ - 3521, + 3527, "[player_objectives_order_by!]" ], "where": [ - 3511 + 3517 ] } ], "owned_teams": [ - 4446, + 4452, { "distinct_on": [ - 4470, + 4476, "[teams_select_column!]" ], "limit": [ @@ -89385,19 +89920,19 @@ export default { 40 ], "order_by": [ - 4468, + 4474, "[teams_order_by!]" ], "where": [ - 4457 + 4463 ] } ], "owned_teams_aggregate": [ - 4447, + 4453, { "distinct_on": [ - 4470, + 4476, "[teams_select_column!]" ], "limit": [ @@ -89407,16 +89942,16 @@ export default { 40 ], "order_by": [ - 4468, + 4474, "[teams_order_by!]" ], "where": [ - 4457 + 4463 ] } ], "peak_elo": [ - 1817, + 1823, { "path": [ 80 @@ -89424,10 +89959,10 @@ export default { } ], "pending_match_imports": [ - 2947, + 2953, { "distinct_on": [ - 2968, + 2974, "[pending_match_import_players_select_column!]" ], "limit": [ @@ -89437,19 +89972,19 @@ export default { 40 ], "order_by": [ - 2966, + 2972, "[pending_match_import_players_order_by!]" ], "where": [ - 2956 + 2962 ] } ], "pending_match_imports_aggregate": [ - 2948, + 2954, { "distinct_on": [ - 2968, + 2974, "[pending_match_import_players_select_column!]" ], "limit": [ @@ -89459,19 +89994,19 @@ export default { 40 ], "order_by": [ - 2966, + 2972, "[pending_match_import_players_order_by!]" ], "where": [ - 2956 + 2962 ] } ], "player_lineup": [ - 2396, + 2402, { "distinct_on": [ - 2419, + 2425, "[match_lineup_players_select_column!]" ], "limit": [ @@ -89481,19 +90016,19 @@ export default { 40 ], "order_by": [ - 2417, + 2423, "[match_lineup_players_order_by!]" ], "where": [ - 2407 + 2413 ] } ], "player_lineup_aggregate": [ - 2397, + 2403, { "distinct_on": [ - 2419, + 2425, "[match_lineup_players_select_column!]" ], "limit": [ @@ -89503,19 +90038,19 @@ export default { 40 ], "order_by": [ - 2417, + 2423, "[match_lineup_players_order_by!]" ], "where": [ - 2407 + 2413 ] } ], "player_unused_utilities": [ - 3789, + 3795, { "distinct_on": [ - 3810, + 3816, "[player_unused_utility_select_column!]" ], "limit": [ @@ -89525,19 +90060,19 @@ export default { 40 ], "order_by": [ - 3808, + 3814, "[player_unused_utility_order_by!]" ], "where": [ - 3798 + 3804 ] } ], "player_unused_utilities_aggregate": [ - 3790, + 3796, { "distinct_on": [ - 3810, + 3816, "[player_unused_utility_select_column!]" ], "limit": [ @@ -89547,11 +90082,11 @@ export default { 40 ], "order_by": [ - 3808, + 3814, "[player_unused_utility_order_by!]" ], "where": [ - 3798 + 3804 ] } ], @@ -89559,10 +90094,10 @@ export default { 40 ], "premier_rank_history": [ - 3561, + 3567, { "distinct_on": [ - 3582, + 3588, "[player_premier_rank_history_select_column!]" ], "limit": [ @@ -89572,19 +90107,19 @@ export default { 40 ], "order_by": [ - 3580, + 3586, "[player_premier_rank_history_order_by!]" ], "where": [ - 3570 + 3576 ] } ], "premier_rank_history_aggregate": [ - 3562, + 3568, { "distinct_on": [ - 3582, + 3588, "[player_premier_rank_history_select_column!]" ], "limit": [ @@ -89594,31 +90129,31 @@ export default { 40 ], "order_by": [ - 3580, + 3586, "[player_premier_rank_history_order_by!]" ], "where": [ - 3570 + 3576 ] } ], "premier_rank_updated_at": [ - 4493 + 4499 ], "profile_url": [ 80 ], "role": [ - 1065 + 1071 ], "roster_image_url": [ 80 ], "sanctions": [ - 3602, + 3608, { "distinct_on": [ - 3623, + 3629, "[player_sanctions_select_column!]" ], "limit": [ @@ -89628,19 +90163,19 @@ export default { 40 ], "order_by": [ - 3621, + 3627, "[player_sanctions_order_by!]" ], "where": [ - 3611 + 3617 ] } ], "sanctions_aggregate": [ - 3603, + 3609, { "distinct_on": [ - 3623, + 3629, "[player_sanctions_select_column!]" ], "limit": [ @@ -89650,19 +90185,19 @@ export default { 40 ], "order_by": [ - 3621, + 3627, "[player_sanctions_order_by!]" ], "where": [ - 3611 + 3617 ] } ], "season_stats": [ - 3643, + 3649, { "distinct_on": [ - 3674, + 3680, "[player_season_stats_select_column!]" ], "limit": [ @@ -89672,19 +90207,19 @@ export default { 40 ], "order_by": [ - 3672, + 3678, "[player_season_stats_order_by!]" ], "where": [ - 3662 + 3668 ] } ], "season_stats_aggregate": [ - 3644, + 3650, { "distinct_on": [ - 3674, + 3680, "[player_season_stats_select_column!]" ], "limit": [ @@ -89694,11 +90229,11 @@ export default { 40 ], "order_by": [ - 3672, + 3678, "[player_season_stats_order_by!]" ], "where": [ - 3662 + 3668 ] } ], @@ -89706,19 +90241,19 @@ export default { 5 ], "stats": [ - 3702 + 3708 ], "steam_bans_checked_at": [ - 4493 + 4499 ], "steam_id": [ - 252 + 258 ], "team_invites": [ - 4163, + 4169, { "distinct_on": [ - 4184, + 4190, "[team_invites_select_column!]" ], "limit": [ @@ -89728,19 +90263,19 @@ export default { 40 ], "order_by": [ - 4182, + 4188, "[team_invites_order_by!]" ], "where": [ - 4172 + 4178 ] } ], "team_invites_aggregate": [ - 4164, + 4170, { "distinct_on": [ - 4184, + 4190, "[team_invites_select_column!]" ], "limit": [ @@ -89750,19 +90285,19 @@ export default { 40 ], "order_by": [ - 4182, + 4188, "[team_invites_order_by!]" ], "where": [ - 4172 + 4178 ] } ], "team_members": [ - 4204, + 4210, { "distinct_on": [ - 4227, + 4233, "[team_roster_select_column!]" ], "limit": [ @@ -89772,19 +90307,19 @@ export default { 40 ], "order_by": [ - 4225, + 4231, "[team_roster_order_by!]" ], "where": [ - 4215 + 4221 ] } ], "team_members_aggregate": [ - 4205, + 4211, { "distinct_on": [ - 4227, + 4233, "[team_roster_select_column!]" ], "limit": [ @@ -89794,19 +90329,19 @@ export default { 40 ], "order_by": [ - 4225, + 4231, "[team_roster_order_by!]" ], "where": [ - 4215 + 4221 ] } ], "teams": [ - 4446, + 4452, { "distinct_on": [ - 4470, + 4476, "[teams_select_column!]" ], "limit": [ @@ -89816,11 +90351,11 @@ export default { 40 ], "order_by": [ - 4468, + 4474, "[teams_order_by!]" ], "where": [ - 4457 + 4463 ] } ], @@ -89828,10 +90363,10 @@ export default { 40 ], "tournament_organizers": [ - 4631, + 4637, { "distinct_on": [ - 4652, + 4658, "[tournament_organizers_select_column!]" ], "limit": [ @@ -89841,19 +90376,19 @@ export default { 40 ], "order_by": [ - 4650, + 4656, "[tournament_organizers_order_by!]" ], "where": [ - 4640 + 4646 ] } ], "tournament_organizers_aggregate": [ - 4632, + 4638, { "distinct_on": [ - 4652, + 4658, "[tournament_organizers_select_column!]" ], "limit": [ @@ -89863,19 +90398,19 @@ export default { 40 ], "order_by": [ - 4650, + 4656, "[tournament_organizers_order_by!]" ], "where": [ - 4640 + 4646 ] } ], "tournament_rosters": [ - 4846, + 4852, { "distinct_on": [ - 4867, + 4873, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -89885,19 +90420,19 @@ export default { 40 ], "order_by": [ - 4865, + 4871, "[tournament_team_roster_order_by!]" ], "where": [ - 4855 + 4861 ] } ], "tournament_rosters_aggregate": [ - 4847, + 4853, { "distinct_on": [ - 4867, + 4873, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -89907,19 +90442,19 @@ export default { 40 ], "order_by": [ - 4865, + 4871, "[tournament_team_roster_order_by!]" ], "where": [ - 4855 + 4861 ] } ], "tournaments": [ - 4929, + 4935, { "distinct_on": [ - 4963, + 4969, "[tournaments_select_column!]" ], "limit": [ @@ -89929,19 +90464,19 @@ export default { 40 ], "order_by": [ - 4961, + 4967, "[tournaments_order_by!]" ], "where": [ - 4950 + 4956 ] } ], "tournaments_aggregate": [ - 4930, + 4936, { "distinct_on": [ - 4963, + 4969, "[tournaments_select_column!]" ], "limit": [ @@ -89951,19 +90486,19 @@ export default { 40 ], "order_by": [ - 4961, + 4967, "[tournaments_order_by!]" ], "where": [ - 4950 + 4956 ] } ], "utility_thrown": [ - 3830, + 3836, { "distinct_on": [ - 3851, + 3857, "[player_utility_select_column!]" ], "limit": [ @@ -89973,19 +90508,19 @@ export default { 40 ], "order_by": [ - 3849, + 3855, "[player_utility_order_by!]" ], "where": [ - 3839 + 3845 ] } ], "utility_thrown_aggregate": [ - 3831, + 3837, { "distinct_on": [ - 3851, + 3857, "[player_utility_select_column!]" ], "limit": [ @@ -89995,11 +90530,11 @@ export default { 40 ], "order_by": [ - 3849, + 3855, "[player_utility_order_by!]" ], "where": [ - 3839 + 3845 ] } ], @@ -90010,10 +90545,10 @@ export default { 5 ], "weapon_stats": [ - 3871, + 3877, { "distinct_on": [ - 3887, + 3893, "[player_weapon_stats_v_select_column!]" ], "limit": [ @@ -90023,19 +90558,19 @@ export default { 40 ], "order_by": [ - 3886, + 3892, "[player_weapon_stats_v_order_by!]" ], "where": [ - 3880 + 3886 ] } ], "weapon_stats_aggregate": [ - 3872, + 3878, { "distinct_on": [ - 3887, + 3893, "[player_weapon_stats_v_select_column!]" ], "limit": [ @@ -90045,11 +90580,11 @@ export default { 40 ], "order_by": [ - 3886, + 3892, "[player_weapon_stats_v_order_by!]" ], "where": [ - 3880 + 3886 ] } ], @@ -90071,10 +90606,10 @@ export default { }, "players_aggregate": { "aggregate": [ - 3906 + 3912 ], "nodes": [ - 3904 + 3910 ], "__typename": [ 80 @@ -90082,13 +90617,13 @@ export default { }, "players_aggregate_fields": { "avg": [ - 3907 + 3913 ], "count": [ 40, { "columns": [ - 3919, + 3925, "[players_select_column!]" ], "distinct": [ @@ -90097,31 +90632,31 @@ export default { } ], "max": [ - 3912 + 3918 ], "min": [ - 3913 + 3919 ], "stddev": [ - 3921 + 3927 ], "stddev_pop": [ - 3922 + 3928 ], "stddev_samp": [ - 3923 + 3929 ], "sum": [ - 3926 + 3932 ], "var_pop": [ - 3929 + 3935 ], "var_samp": [ - 3930 + 3936 ], "variance": [ - 3931 + 3937 ], "__typename": [ 80 @@ -90182,103 +90717,103 @@ export default { }, "players_bool_exp": { "_and": [ - 3908 + 3914 ], "_not": [ - 3908 + 3914 ], "_or": [ - 3908 + 3914 ], "abandoned_matches": [ - 123 + 129 ], "abandoned_matches_aggregate": [ - 116 + 122 ], "aim_weapon_stats": [ - 3052 + 3058 ], "aim_weapon_stats_aggregate": [ - 3045 + 3051 ], "assists": [ - 3095 + 3101 ], "assists_aggregate": [ - 3086 + 3092 ], "assited_by_players": [ - 3095 + 3101 ], "assited_by_players_aggregate": [ - 3086 + 3092 ], "avatar_url": [ 82 ], "awards": [ - 192 + 198 ], "awards_aggregate": [ - 185 + 191 ], "coach_lineups": [ - 2450 + 2456 ], "coach_lineups_aggregate": [ - 2443 + 2449 ], "country": [ 82 ], "created_at": [ - 4494 + 4500 ], "current_lobby_id": [ - 4995 + 5001 ], "custom_avatar_url": [ 82 ], "damage_dealt": [ - 3156 + 3162 ], "damage_dealt_aggregate": [ - 3149 + 3155 ], "damage_taken": [ - 3156 + 3162 ], "damage_taken_aggregate": [ - 3149 + 3155 ], "days_since_last_ban": [ 41 ], "deaths": [ - 3312 + 3318 ], "deaths_aggregate": [ - 3303 + 3309 ], "discord_id": [ 82 ], "draft_game_players": [ - 424 + 430 ], "draft_game_players_aggregate": [ - 415 + 421 ], "elo": [ - 1819 + 1825 ], "elo_history": [ - 5389 + 5395 ], "elo_history_aggregate": [ - 5372 + 5378 ], "faceit_elo": [ 41 @@ -90290,46 +90825,46 @@ export default { 82 ], "faceit_rank_history": [ - 3224 + 3230 ], "faceit_rank_history_aggregate": [ - 3217 + 3223 ], "faceit_skill_level": [ 41 ], "faceit_updated_at": [ - 4494 + 4500 ], "faceit_url": [ 82 ], "flashed_by_players": [ - 3267 + 3273 ], "flashed_by_players_aggregate": [ - 3258 + 3264 ], "flashed_players": [ - 3267 + 3273 ], "flashed_players_aggregate": [ - 3258 + 3264 ], "friends": [ - 2833 + 2839 ], "friends_aggregate": [ - 2823 + 2829 ], "game_ban_count": [ 41 ], "invited_players": [ - 4172 + 4178 ], "invited_players_aggregate": [ - 4165 + 4171 ], "is_banned": [ 6 @@ -90350,31 +90885,31 @@ export default { 6 ], "kills": [ - 3312 + 3318 ], "kills_aggregate": [ - 3303 + 3309 ], "kills_by_weapons": [ - 3322 + 3328 ], "kills_by_weapons_aggregate": [ - 3315 + 3321 ], "language": [ 82 ], "last_read_news_at": [ - 4494 + 4500 ], "last_sign_in_at": [ - 4494 + 4500 ], "lobby_players": [ - 2226 + 2232 ], "lobby_players_aggregate": [ - 2217 + 2223 ], "losses": [ 41 @@ -90389,34 +90924,34 @@ export default { 41 ], "match_map_hltv": [ - 5484 + 5490 ], "match_map_hltv_aggregate": [ - 5477 + 5483 ], "match_map_stats": [ - 3419 + 3425 ], "match_map_stats_aggregate": [ - 3412 + 3418 ], "match_stats": [ - 3478 + 3484 ], "match_stats_aggregate": [ - 3471 + 3477 ], "matches": [ - 2770 + 2776 ], "matchmaking_cooldown": [ - 4494 + 4500 ], "multi_kills": [ - 5575 + 5581 ], "multi_kills_aggregate": [ - 5568 + 5574 ], "name": [ 82 @@ -90425,130 +90960,130 @@ export default { 6 ], "notifications": [ - 2906 + 2912 ], "notifications_aggregate": [ - 2896 + 2902 ], "objectives": [ - 3511 + 3517 ], "objectives_aggregate": [ - 3504 + 3510 ], "owned_teams": [ - 4457 + 4463 ], "owned_teams_aggregate": [ - 4448 + 4454 ], "peak_elo": [ - 1819 + 1825 ], "pending_match_imports": [ - 2956 + 2962 ], "pending_match_imports_aggregate": [ - 2949 + 2955 ], "player_lineup": [ - 2407 + 2413 ], "player_lineup_aggregate": [ - 2398 + 2404 ], "player_unused_utilities": [ - 3798 + 3804 ], "player_unused_utilities_aggregate": [ - 3791 + 3797 ], "premier_rank": [ 41 ], "premier_rank_history": [ - 3570 + 3576 ], "premier_rank_history_aggregate": [ - 3563 + 3569 ], "premier_rank_updated_at": [ - 4494 + 4500 ], "profile_url": [ 82 ], "role": [ - 1066 + 1072 ], "roster_image_url": [ 82 ], "sanctions": [ - 3611 + 3617 ], "sanctions_aggregate": [ - 3604 + 3610 ], "season_stats": [ - 3662 + 3668 ], "season_stats_aggregate": [ - 3645 + 3651 ], "show_match_ready_modal": [ 6 ], "stats": [ - 3706 + 3712 ], "steam_bans_checked_at": [ - 4494 + 4500 ], "steam_id": [ - 254 + 260 ], "team_invites": [ - 4172 + 4178 ], "team_invites_aggregate": [ - 4165 + 4171 ], "team_members": [ - 4215 + 4221 ], "team_members_aggregate": [ - 4206 + 4212 ], "teams": [ - 4457 + 4463 ], "total_matches": [ 41 ], "tournament_organizers": [ - 4640 + 4646 ], "tournament_organizers_aggregate": [ - 4633 + 4639 ], "tournament_rosters": [ - 4855 + 4861 ], "tournament_rosters_aggregate": [ - 4848 + 4854 ], "tournaments": [ - 4950 + 4956 ], "tournaments_aggregate": [ - 4931 + 4937 ], "utility_thrown": [ - 3839 + 3845 ], "utility_thrown_aggregate": [ - 3832 + 3838 ], "vac_ban_count": [ 41 @@ -90557,10 +91092,10 @@ export default { 6 ], "weapon_stats": [ - 3880 + 3886 ], "weapon_stats_aggregate": [ - 3873 + 3879 ], "wins": [ 41 @@ -90596,7 +91131,7 @@ export default { 40 ], "steam_id": [ - 252 + 258 ], "vac_ban_count": [ 40 @@ -90607,55 +91142,55 @@ export default { }, "players_insert_input": { "abandoned_matches": [ - 120 + 126 ], "aim_weapon_stats": [ - 3049 + 3055 ], "assists": [ - 3092 + 3098 ], "assited_by_players": [ - 3092 + 3098 ], "avatar_url": [ 80 ], "awards": [ - 189 + 195 ], "coach_lineups": [ - 2447 + 2453 ], "country": [ 80 ], "created_at": [ - 4493 + 4499 ], "custom_avatar_url": [ 80 ], "damage_dealt": [ - 3153 + 3159 ], "damage_taken": [ - 3153 + 3159 ], "days_since_last_ban": [ 40 ], "deaths": [ - 3309 + 3315 ], "discord_id": [ 80 ], "draft_game_players": [ - 421 + 427 ], "elo_history": [ - 5386 + 5392 ], "faceit_elo": [ 40 @@ -90667,61 +91202,61 @@ export default { 80 ], "faceit_rank_history": [ - 3221 + 3227 ], "faceit_skill_level": [ 40 ], "faceit_updated_at": [ - 4493 + 4499 ], "faceit_url": [ 80 ], "flashed_by_players": [ - 3264 + 3270 ], "flashed_players": [ - 3264 + 3270 ], "friends": [ - 2830 + 2836 ], "game_ban_count": [ 40 ], "invited_players": [ - 4169 + 4175 ], "kills": [ - 3309 + 3315 ], "kills_by_weapons": [ - 3319 + 3325 ], "language": [ 80 ], "last_read_news_at": [ - 4493 + 4499 ], "last_sign_in_at": [ - 4493 + 4499 ], "lobby_players": [ - 2223 + 2229 ], "match_map_hltv": [ - 5481 + 5487 ], "match_map_stats": [ - 3416 + 3422 ], "match_stats": [ - 3475 + 3481 ], "multi_kills": [ - 5572 + 5578 ], "name": [ 80 @@ -90730,76 +91265,76 @@ export default { 5 ], "notifications": [ - 2903 + 2909 ], "objectives": [ - 3508 + 3514 ], "owned_teams": [ - 4454 + 4460 ], "pending_match_imports": [ - 2953 + 2959 ], "player_lineup": [ - 2404 + 2410 ], "player_unused_utilities": [ - 3795 + 3801 ], "premier_rank": [ 40 ], "premier_rank_history": [ - 3567 + 3573 ], "premier_rank_updated_at": [ - 4493 + 4499 ], "profile_url": [ 80 ], "role": [ - 1065 + 1071 ], "roster_image_url": [ 80 ], "sanctions": [ - 3608 + 3614 ], "season_stats": [ - 3659 + 3665 ], "show_match_ready_modal": [ 5 ], "stats": [ - 3713 + 3719 ], "steam_bans_checked_at": [ - 4493 + 4499 ], "steam_id": [ - 252 + 258 ], "team_invites": [ - 4169 + 4175 ], "team_members": [ - 4212 + 4218 ], "tournament_organizers": [ - 4637 + 4643 ], "tournament_rosters": [ - 4852 + 4858 ], "tournaments": [ - 4947 + 4953 ], "utility_thrown": [ - 3836 + 3842 ], "vac_ban_count": [ 40 @@ -90808,7 +91343,7 @@ export default { 5 ], "weapon_stats": [ - 3877 + 3883 ], "__typename": [ 80 @@ -90822,10 +91357,10 @@ export default { 80 ], "created_at": [ - 4493 + 4499 ], "current_lobby_id": [ - 4993 + 4999 ], "custom_avatar_url": [ 80 @@ -90849,7 +91384,7 @@ export default { 40 ], "faceit_updated_at": [ - 4493 + 4499 ], "faceit_url": [ 80 @@ -90861,10 +91396,10 @@ export default { 80 ], "last_read_news_at": [ - 4493 + 4499 ], "last_sign_in_at": [ - 4493 + 4499 ], "losses": [ 40 @@ -90879,7 +91414,7 @@ export default { 40 ], "matchmaking_cooldown": [ - 4493 + 4499 ], "name": [ 80 @@ -90888,7 +91423,7 @@ export default { 40 ], "premier_rank_updated_at": [ - 4493 + 4499 ], "profile_url": [ 80 @@ -90897,10 +91432,10 @@ export default { 80 ], "steam_bans_checked_at": [ - 4493 + 4499 ], "steam_id": [ - 252 + 258 ], "total_matches": [ 40 @@ -90932,10 +91467,10 @@ export default { 80 ], "created_at": [ - 4493 + 4499 ], "current_lobby_id": [ - 4993 + 4999 ], "custom_avatar_url": [ 80 @@ -90959,7 +91494,7 @@ export default { 40 ], "faceit_updated_at": [ - 4493 + 4499 ], "faceit_url": [ 80 @@ -90971,10 +91506,10 @@ export default { 80 ], "last_read_news_at": [ - 4493 + 4499 ], "last_sign_in_at": [ - 4493 + 4499 ], "losses": [ 40 @@ -90989,7 +91524,7 @@ export default { 40 ], "matchmaking_cooldown": [ - 4493 + 4499 ], "name": [ 80 @@ -90998,7 +91533,7 @@ export default { 40 ], "premier_rank_updated_at": [ - 4493 + 4499 ], "profile_url": [ 80 @@ -91007,10 +91542,10 @@ export default { 80 ], "steam_bans_checked_at": [ - 4493 + 4499 ], "steam_id": [ - 252 + 258 ], "total_matches": [ 40 @@ -91039,7 +91574,7 @@ export default { 40 ], "returning": [ - 3904 + 3910 ], "__typename": [ 80 @@ -91047,10 +91582,10 @@ export default { }, "players_obj_rel_insert_input": { "data": [ - 3911 + 3917 ], "on_conflict": [ - 3916 + 3922 ], "__typename": [ 80 @@ -91058,13 +91593,13 @@ export default { }, "players_on_conflict": { "constraint": [ - 3909 + 3915 ], "update_columns": [ - 3927 + 3933 ], "where": [ - 3908 + 3914 ], "__typename": [ 80 @@ -91072,271 +91607,271 @@ export default { }, "players_order_by": { "abandoned_matches_aggregate": [ - 119 + 125 ], "aim_weapon_stats_aggregate": [ - 3048 + 3054 ], "assists_aggregate": [ - 3091 + 3097 ], "assited_by_players_aggregate": [ - 3091 + 3097 ], "avatar_url": [ - 2946 + 2952 ], "awards_aggregate": [ - 188 + 194 ], "coach_lineups_aggregate": [ - 2446 + 2452 ], "country": [ - 2946 + 2952 ], "created_at": [ - 2946 + 2952 ], "current_lobby_id": [ - 2946 + 2952 ], "custom_avatar_url": [ - 2946 + 2952 ], "damage_dealt_aggregate": [ - 3152 + 3158 ], "damage_taken_aggregate": [ - 3152 + 3158 ], "days_since_last_ban": [ - 2946 + 2952 ], "deaths_aggregate": [ - 3308 + 3314 ], "discord_id": [ - 2946 + 2952 ], "draft_game_players_aggregate": [ - 420 + 426 ], "elo": [ - 2946 + 2952 ], "elo_history_aggregate": [ - 5385 + 5391 ], "faceit_elo": [ - 2946 + 2952 ], "faceit_nickname": [ - 2946 + 2952 ], "faceit_player_id": [ - 2946 + 2952 ], "faceit_rank_history_aggregate": [ - 3220 + 3226 ], "faceit_skill_level": [ - 2946 + 2952 ], "faceit_updated_at": [ - 2946 + 2952 ], "faceit_url": [ - 2946 + 2952 ], "flashed_by_players_aggregate": [ - 3263 + 3269 ], "flashed_players_aggregate": [ - 3263 + 3269 ], "friends_aggregate": [ - 2828 + 2834 ], "game_ban_count": [ - 2946 + 2952 ], "invited_players_aggregate": [ - 4168 + 4174 ], "is_banned": [ - 2946 + 2952 ], "is_gagged": [ - 2946 + 2952 ], "is_in_another_match": [ - 2946 + 2952 ], "is_in_draft": [ - 2946 + 2952 ], "is_in_lobby": [ - 2946 + 2952 ], "is_muted": [ - 2946 + 2952 ], "kills_aggregate": [ - 3308 + 3314 ], "kills_by_weapons_aggregate": [ - 3318 + 3324 ], "language": [ - 2946 + 2952 ], "last_read_news_at": [ - 2946 + 2952 ], "last_sign_in_at": [ - 2946 + 2952 ], "lobby_players_aggregate": [ - 2222 + 2228 ], "losses": [ - 2946 + 2952 ], "losses_competitive": [ - 2946 + 2952 ], "losses_duel": [ - 2946 + 2952 ], "losses_wingman": [ - 2946 + 2952 ], "match_map_hltv_aggregate": [ - 5480 + 5486 ], "match_map_stats_aggregate": [ - 3415 + 3421 ], "match_stats_aggregate": [ - 3474 + 3480 ], "matches_aggregate": [ - 2766 + 2772 ], "matchmaking_cooldown": [ - 2946 + 2952 ], "multi_kills_aggregate": [ - 5571 + 5577 ], "name": [ - 2946 + 2952 ], "name_registered": [ - 2946 + 2952 ], "notifications_aggregate": [ - 2901 + 2907 ], "objectives_aggregate": [ - 3507 + 3513 ], "owned_teams_aggregate": [ - 4453 + 4459 ], "peak_elo": [ - 2946 + 2952 ], "pending_match_imports_aggregate": [ - 2952 + 2958 ], "player_lineup_aggregate": [ - 2403 + 2409 ], "player_unused_utilities_aggregate": [ - 3794 + 3800 ], "premier_rank": [ - 2946 + 2952 ], "premier_rank_history_aggregate": [ - 3566 + 3572 ], "premier_rank_updated_at": [ - 2946 + 2952 ], "profile_url": [ - 2946 + 2952 ], "role": [ - 2946 + 2952 ], "roster_image_url": [ - 2946 + 2952 ], "sanctions_aggregate": [ - 3607 + 3613 ], "season_stats_aggregate": [ - 3658 + 3664 ], "show_match_ready_modal": [ - 2946 + 2952 ], "stats": [ - 3715 + 3721 ], "steam_bans_checked_at": [ - 2946 + 2952 ], "steam_id": [ - 2946 + 2952 ], "team_invites_aggregate": [ - 4168 + 4174 ], "team_members_aggregate": [ - 4211 + 4217 ], "teams_aggregate": [ - 4453 + 4459 ], "total_matches": [ - 2946 + 2952 ], "tournament_organizers_aggregate": [ - 4636 + 4642 ], "tournament_rosters_aggregate": [ - 4851 + 4857 ], "tournaments_aggregate": [ - 4946 + 4952 ], "utility_thrown_aggregate": [ - 3835 + 3841 ], "vac_ban_count": [ - 2946 + 2952 ], "vac_banned": [ - 2946 + 2952 ], "weapon_stats_aggregate": [ - 3876 + 3882 ], "wins": [ - 2946 + 2952 ], "wins_competitive": [ - 2946 + 2952 ], "wins_duel": [ - 2946 + 2952 ], "wins_wingman": [ - 2946 + 2952 ], "__typename": [ 80 @@ -91344,7 +91879,7 @@ export default { }, "players_pk_columns_input": { "steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -91359,7 +91894,7 @@ export default { 80 ], "created_at": [ - 4493 + 4499 ], "custom_avatar_url": [ 80 @@ -91383,7 +91918,7 @@ export default { 40 ], "faceit_updated_at": [ - 4493 + 4499 ], "faceit_url": [ 80 @@ -91395,10 +91930,10 @@ export default { 80 ], "last_read_news_at": [ - 4493 + 4499 ], "last_sign_in_at": [ - 4493 + 4499 ], "name": [ 80 @@ -91410,13 +91945,13 @@ export default { 40 ], "premier_rank_updated_at": [ - 4493 + 4499 ], "profile_url": [ 80 ], "role": [ - 1065 + 1071 ], "roster_image_url": [ 80 @@ -91425,10 +91960,10 @@ export default { 5 ], "steam_bans_checked_at": [ - 4493 + 4499 ], "steam_id": [ - 252 + 258 ], "vac_ban_count": [ 40 @@ -91601,10 +92136,10 @@ export default { }, "players_stream_cursor_input": { "initial_value": [ - 3925 + 3931 ], "ordering": [ - 308 + 314 ], "__typename": [ 80 @@ -91618,7 +92153,7 @@ export default { 80 ], "created_at": [ - 4493 + 4499 ], "custom_avatar_url": [ 80 @@ -91642,7 +92177,7 @@ export default { 40 ], "faceit_updated_at": [ - 4493 + 4499 ], "faceit_url": [ 80 @@ -91654,10 +92189,10 @@ export default { 80 ], "last_read_news_at": [ - 4493 + 4499 ], "last_sign_in_at": [ - 4493 + 4499 ], "name": [ 80 @@ -91669,13 +92204,13 @@ export default { 40 ], "premier_rank_updated_at": [ - 4493 + 4499 ], "profile_url": [ 80 ], "role": [ - 1065 + 1071 ], "roster_image_url": [ 80 @@ -91684,10 +92219,10 @@ export default { 5 ], "steam_bans_checked_at": [ - 4493 + 4499 ], "steam_id": [ - 252 + 258 ], "vac_ban_count": [ 40 @@ -91728,7 +92263,7 @@ export default { 40 ], "steam_id": [ - 252 + 258 ], "total_matches": [ 40 @@ -91755,13 +92290,13 @@ export default { "players_update_column": {}, "players_updates": { "_inc": [ - 3910 + 3916 ], "_set": [ - 3920 + 3926 ], "where": [ - 3908 + 3914 ], "__typename": [ 80 @@ -91931,10 +92466,10 @@ export default { 40 ], "published_at": [ - 4493 + 4499 ], "runtime": [ - 1085 + 1091 ], "version": [ 80 @@ -91945,10 +92480,10 @@ export default { }, "plugin_versions_aggregate": { "aggregate": [ - 3934 + 3940 ], "nodes": [ - 3932 + 3938 ], "__typename": [ 80 @@ -91956,13 +92491,13 @@ export default { }, "plugin_versions_aggregate_fields": { "avg": [ - 3935 + 3941 ], "count": [ 40, { "columns": [ - 3946, + 3952, "[plugin_versions_select_column!]" ], "distinct": [ @@ -91971,31 +92506,31 @@ export default { } ], "max": [ - 3940 + 3946 ], "min": [ - 3941 + 3947 ], "stddev": [ - 3948 + 3954 ], "stddev_pop": [ - 3949 + 3955 ], "stddev_samp": [ - 3950 + 3956 ], "sum": [ - 3953 + 3959 ], "var_pop": [ - 3956 + 3962 ], "var_samp": [ - 3957 + 3963 ], "variance": [ - 3958 + 3964 ], "__typename": [ 80 @@ -92011,22 +92546,22 @@ export default { }, "plugin_versions_bool_exp": { "_and": [ - 3936 + 3942 ], "_not": [ - 3936 + 3942 ], "_or": [ - 3936 + 3942 ], "min_game_build_id": [ 41 ], "published_at": [ - 4494 + 4500 ], "runtime": [ - 1086 + 1092 ], "version": [ 82 @@ -92049,10 +92584,10 @@ export default { 40 ], "published_at": [ - 4493 + 4499 ], "runtime": [ - 1085 + 1091 ], "version": [ 80 @@ -92066,7 +92601,7 @@ export default { 40 ], "published_at": [ - 4493 + 4499 ], "version": [ 80 @@ -92080,7 +92615,7 @@ export default { 40 ], "published_at": [ - 4493 + 4499 ], "version": [ 80 @@ -92094,7 +92629,7 @@ export default { 40 ], "returning": [ - 3932 + 3938 ], "__typename": [ 80 @@ -92102,13 +92637,13 @@ export default { }, "plugin_versions_on_conflict": { "constraint": [ - 3937 + 3943 ], "update_columns": [ - 3954 + 3960 ], "where": [ - 3936 + 3942 ], "__typename": [ 80 @@ -92116,16 +92651,16 @@ export default { }, "plugin_versions_order_by": { "min_game_build_id": [ - 2946 + 2952 ], "published_at": [ - 2946 + 2952 ], "runtime": [ - 2946 + 2952 ], "version": [ - 2946 + 2952 ], "__typename": [ 80 @@ -92133,7 +92668,7 @@ export default { }, "plugin_versions_pk_columns_input": { "runtime": [ - 1085 + 1091 ], "version": [ 80 @@ -92148,10 +92683,10 @@ export default { 40 ], "published_at": [ - 4493 + 4499 ], "runtime": [ - 1085 + 1091 ], "version": [ 80 @@ -92186,10 +92721,10 @@ export default { }, "plugin_versions_stream_cursor_input": { "initial_value": [ - 3952 + 3958 ], "ordering": [ - 308 + 314 ], "__typename": [ 80 @@ -92200,10 +92735,10 @@ export default { 40 ], "published_at": [ - 4493 + 4499 ], "runtime": [ - 1085 + 1091 ], "version": [ 80 @@ -92223,13 +92758,13 @@ export default { "plugin_versions_update_column": {}, "plugin_versions_updates": { "_inc": [ - 3938 + 3944 ], "_set": [ - 3947 + 3953 ], "where": [ - 3936 + 3942 ], "__typename": [ 80 @@ -92261,7 +92796,7 @@ export default { }, "recalculate_tournament_awards_args": { "_tournament_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -92269,7 +92804,7 @@ export default { }, "remove_league_team_from_season_args": { "_league_team_season_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -92277,7 +92812,7 @@ export default { }, "reorder_league_divisions_args": { "_division_ids": [ - 113 + 119 ], "__typename": [ 80 @@ -92285,24 +92820,68 @@ export default { }, "restart_league_season_args": { "_league_season_id": [ - 4993 + 4999 ], "__typename": [ 80 ] }, "seasons": { + "awards": [ + 189, + { + "distinct_on": [ + 210, + "[award_recipients_select_column!]" + ], + "limit": [ + 40 + ], + "offset": [ + 40 + ], + "order_by": [ + 208, + "[award_recipients_order_by!]" + ], + "where": [ + 198 + ] + } + ], + "awards_aggregate": [ + 190, + { + "distinct_on": [ + 210, + "[award_recipients_select_column!]" + ], + "limit": [ + 40 + ], + "offset": [ + 40 + ], + "order_by": [ + 208, + "[award_recipients_order_by!]" + ], + "where": [ + 198 + ] + } + ], "created_at": [ - 4493 + 4499 ], "description": [ 80 ], "ends_at": [ - 4493 + 4499 ], "id": [ - 4993 + 4999 ], "needs_rebuild": [ 5 @@ -92311,10 +92890,10 @@ export default { 40 ], "player_season_stats": [ - 3643, + 3649, { "distinct_on": [ - 3674, + 3680, "[player_season_stats_select_column!]" ], "limit": [ @@ -92324,19 +92903,19 @@ export default { 40 ], "order_by": [ - 3672, + 3678, "[player_season_stats_order_by!]" ], "where": [ - 3662 + 3668 ] } ], "player_season_stats_aggregate": [ - 3644, + 3650, { "distinct_on": [ - 3674, + 3680, "[player_season_stats_select_column!]" ], "limit": [ @@ -92346,16 +92925,16 @@ export default { 40 ], "order_by": [ - 3672, + 3678, "[player_season_stats_order_by!]" ], "where": [ - 3662 + 3668 ] } ], "starts_at": [ - 4493 + 4499 ], "__typename": [ 80 @@ -92363,10 +92942,10 @@ export default { }, "seasons_aggregate": { "aggregate": [ - 3965 + 3971 ], "nodes": [ - 3963 + 3969 ], "__typename": [ 80 @@ -92374,13 +92953,13 @@ export default { }, "seasons_aggregate_fields": { "avg": [ - 3966 + 3972 ], "count": [ 40, { "columns": [ - 3978, + 3984, "[seasons_select_column!]" ], "distinct": [ @@ -92389,31 +92968,31 @@ export default { } ], "max": [ - 3971 + 3977 ], "min": [ - 3972 + 3978 ], "stddev": [ - 3980 + 3986 ], "stddev_pop": [ - 3981 + 3987 ], "stddev_samp": [ - 3982 + 3988 ], "sum": [ - 3985 + 3991 ], "var_pop": [ - 3988 + 3994 ], "var_samp": [ - 3989 + 3995 ], "variance": [ - 3990 + 3996 ], "__typename": [ 80 @@ -92429,25 +93008,31 @@ export default { }, "seasons_bool_exp": { "_and": [ - 3967 + 3973 ], "_not": [ - 3967 + 3973 ], "_or": [ - 3967 + 3973 + ], + "awards": [ + 198 + ], + "awards_aggregate": [ + 191 ], "created_at": [ - 4494 + 4500 ], "description": [ 82 ], "ends_at": [ - 4494 + 4500 ], "id": [ - 4995 + 5001 ], "needs_rebuild": [ 6 @@ -92456,13 +93041,13 @@ export default { 41 ], "player_season_stats": [ - 3662 + 3668 ], "player_season_stats_aggregate": [ - 3645 + 3651 ], "starts_at": [ - 4494 + 4500 ], "__typename": [ 80 @@ -92478,17 +93063,20 @@ export default { ] }, "seasons_insert_input": { + "awards": [ + 195 + ], "created_at": [ - 4493 + 4499 ], "description": [ 80 ], "ends_at": [ - 4493 + 4499 ], "id": [ - 4993 + 4999 ], "needs_rebuild": [ 5 @@ -92497,10 +93085,10 @@ export default { 40 ], "player_season_stats": [ - 3659 + 3665 ], "starts_at": [ - 4493 + 4499 ], "__typename": [ 80 @@ -92508,22 +93096,22 @@ export default { }, "seasons_max_fields": { "created_at": [ - 4493 + 4499 ], "description": [ 80 ], "ends_at": [ - 4493 + 4499 ], "id": [ - 4993 + 4999 ], "number": [ 40 ], "starts_at": [ - 4493 + 4499 ], "__typename": [ 80 @@ -92531,22 +93119,22 @@ export default { }, "seasons_min_fields": { "created_at": [ - 4493 + 4499 ], "description": [ 80 ], "ends_at": [ - 4493 + 4499 ], "id": [ - 4993 + 4999 ], "number": [ 40 ], "starts_at": [ - 4493 + 4499 ], "__typename": [ 80 @@ -92557,7 +93145,7 @@ export default { 40 ], "returning": [ - 3963 + 3969 ], "__typename": [ 80 @@ -92565,10 +93153,10 @@ export default { }, "seasons_obj_rel_insert_input": { "data": [ - 3970 + 3976 ], "on_conflict": [ - 3975 + 3981 ], "__typename": [ 80 @@ -92576,42 +93164,45 @@ export default { }, "seasons_on_conflict": { "constraint": [ - 3968 + 3974 ], "update_columns": [ - 3986 + 3992 ], "where": [ - 3967 + 3973 ], "__typename": [ 80 ] }, "seasons_order_by": { + "awards_aggregate": [ + 194 + ], "created_at": [ - 2946 + 2952 ], "description": [ - 2946 + 2952 ], "ends_at": [ - 2946 + 2952 ], "id": [ - 2946 + 2952 ], "needs_rebuild": [ - 2946 + 2952 ], "number": [ - 2946 + 2952 ], "player_season_stats_aggregate": [ - 3658 + 3664 ], "starts_at": [ - 2946 + 2952 ], "__typename": [ 80 @@ -92619,7 +93210,7 @@ export default { }, "seasons_pk_columns_input": { "id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -92628,16 +93219,16 @@ export default { "seasons_select_column": {}, "seasons_set_input": { "created_at": [ - 4493 + 4499 ], "description": [ 80 ], "ends_at": [ - 4493 + 4499 ], "id": [ - 4993 + 4999 ], "needs_rebuild": [ 5 @@ -92646,7 +93237,7 @@ export default { 40 ], "starts_at": [ - 4493 + 4499 ], "__typename": [ 80 @@ -92678,10 +93269,10 @@ export default { }, "seasons_stream_cursor_input": { "initial_value": [ - 3984 + 3990 ], "ordering": [ - 308 + 314 ], "__typename": [ 80 @@ -92689,16 +93280,16 @@ export default { }, "seasons_stream_cursor_value_input": { "created_at": [ - 4493 + 4499 ], "description": [ 80 ], "ends_at": [ - 4493 + 4499 ], "id": [ - 4993 + 4999 ], "needs_rebuild": [ 5 @@ -92707,7 +93298,7 @@ export default { 40 ], "starts_at": [ - 4493 + 4499 ], "__typename": [ 80 @@ -92724,13 +93315,13 @@ export default { "seasons_update_column": {}, "seasons_updates": { "_inc": [ - 3969 + 3975 ], "_set": [ - 3979 + 3985 ], "where": [ - 3967 + 3973 ], "__typename": [ 80 @@ -92768,10 +93359,10 @@ export default { 80 ], "game_server_nodes": [ - 1693, + 1699, { "distinct_on": [ - 1722, + 1728, "[game_server_nodes_select_column!]" ], "limit": [ @@ -92781,19 +93372,19 @@ export default { 40 ], "order_by": [ - 1719, + 1725, "[game_server_nodes_order_by!]" ], "where": [ - 1705 + 1711 ] } ], "game_server_nodes_aggregate": [ - 1694, + 1700, { "distinct_on": [ - 1722, + 1728, "[game_server_nodes_select_column!]" ], "limit": [ @@ -92803,11 +93394,11 @@ export default { 40 ], "order_by": [ - 1719, + 1725, "[game_server_nodes_order_by!]" ], "where": [ - 1705 + 1711 ] } ], @@ -92835,10 +93426,10 @@ export default { }, "server_regions_aggregate": { "aggregate": [ - 3993 + 3999 ], "nodes": [ - 3991 + 3997 ], "__typename": [ 80 @@ -92846,13 +93437,13 @@ export default { }, "server_regions_aggregate_fields": { "avg": [ - 3994 + 4000 ], "count": [ 40, { "columns": [ - 4005, + 4011, "[server_regions_select_column!]" ], "distinct": [ @@ -92861,31 +93452,31 @@ export default { } ], "max": [ - 3998 + 4004 ], "min": [ - 3999 + 4005 ], "stddev": [ - 4007 + 4013 ], "stddev_pop": [ - 4008 + 4014 ], "stddev_samp": [ - 4009 + 4015 ], "sum": [ - 4012 + 4018 ], "var_pop": [ - 4015 + 4021 ], "var_samp": [ - 4016 + 4022 ], "variance": [ - 4017 + 4023 ], "__typename": [ 80 @@ -92904,13 +93495,13 @@ export default { }, "server_regions_bool_exp": { "_and": [ - 3995 + 4001 ], "_not": [ - 3995 + 4001 ], "_or": [ - 3995 + 4001 ], "available_server_count": [ 41 @@ -92919,10 +93510,10 @@ export default { 82 ], "game_server_nodes": [ - 1705 + 1711 ], "game_server_nodes_aggregate": [ - 1695 + 1701 ], "has_node": [ 6 @@ -92952,7 +93543,7 @@ export default { 80 ], "game_server_nodes": [ - 1702 + 1708 ], "is_lan": [ 5 @@ -93012,7 +93603,7 @@ export default { 40 ], "returning": [ - 3991 + 3997 ], "__typename": [ 80 @@ -93020,10 +93611,10 @@ export default { }, "server_regions_obj_rel_insert_input": { "data": [ - 3997 + 4003 ], "on_conflict": [ - 4002 + 4008 ], "__typename": [ 80 @@ -93031,13 +93622,13 @@ export default { }, "server_regions_on_conflict": { "constraint": [ - 3996 + 4002 ], "update_columns": [ - 4013 + 4019 ], "where": [ - 3995 + 4001 ], "__typename": [ 80 @@ -93045,31 +93636,31 @@ export default { }, "server_regions_order_by": { "available_server_count": [ - 2946 + 2952 ], "description": [ - 2946 + 2952 ], "game_server_nodes_aggregate": [ - 1700 + 1706 ], "has_node": [ - 2946 + 2952 ], "is_lan": [ - 2946 + 2952 ], "status": [ - 2946 + 2952 ], "steam_relay": [ - 2946 + 2952 ], "total_server_count": [ - 2946 + 2952 ], "value": [ - 2946 + 2952 ], "__typename": [ 80 @@ -93136,10 +93727,10 @@ export default { }, "server_regions_stream_cursor_input": { "initial_value": [ - 4011 + 4017 ], "ordering": [ - 308 + 314 ], "__typename": [ 80 @@ -93176,10 +93767,10 @@ export default { "server_regions_update_column": {}, "server_regions_updates": { "_set": [ - 4006 + 4012 ], "where": [ - 3995 + 4001 ], "__typename": [ 80 @@ -93220,7 +93811,7 @@ export default { }, "servers": { "api_password": [ - 4993 + 4999 ], "boot_status": [ 80 @@ -93241,7 +93832,7 @@ export default { 80 ], "current_match": [ - 2761 + 2767 ], "enabled": [ 5 @@ -93250,7 +93841,7 @@ export default { 80 ], "game_server_node": [ - 1693 + 1699 ], "game_server_node_id": [ 80 @@ -93259,7 +93850,7 @@ export default { 80 ], "id": [ - 4993 + 4999 ], "is_dedicated": [ 5 @@ -93268,10 +93859,10 @@ export default { 80 ], "matches": [ - 2761, + 2767, { "distinct_on": [ - 2783, + 2789, "[matches_select_column!]" ], "limit": [ @@ -93281,19 +93872,19 @@ export default { 40 ], "order_by": [ - 2781, + 2787, "[matches_order_by!]" ], "where": [ - 2770 + 2776 ] } ], "matches_aggregate": [ - 2762, + 2768, { "distinct_on": [ - 2783, + 2789, "[matches_select_column!]" ], "limit": [ @@ -93303,11 +93894,11 @@ export default { 40 ], "order_by": [ - 2781, + 2787, "[matches_order_by!]" ], "where": [ - 2770 + 2776 ] } ], @@ -93315,10 +93906,10 @@ export default { 40 ], "offline_at": [ - 4493 + 4499 ], "plugin_runtime": [ - 1085 + 1091 ], "plugin_version": [ 80 @@ -93327,7 +93918,7 @@ export default { 40 ], "rcon_password": [ - 255 + 261 ], "rcon_status": [ 5 @@ -93336,10 +93927,10 @@ export default { 80 ], "reserved_by_match_id": [ - 4993 + 4999 ], "server_region": [ - 3991 + 3997 ], "steam_relay": [ 80 @@ -93348,10 +93939,10 @@ export default { 40 ], "type": [ - 1166 + 1172 ], "updated_at": [ - 4493 + 4499 ], "__typename": [ 80 @@ -93359,10 +93950,10 @@ export default { }, "servers_aggregate": { "aggregate": [ - 4024 + 4030 ], "nodes": [ - 4018 + 4024 ], "__typename": [ 80 @@ -93370,13 +93961,13 @@ export default { }, "servers_aggregate_bool_exp": { "bool_and": [ - 4021 + 4027 ], "bool_or": [ - 4022 + 4028 ], "count": [ - 4023 + 4029 ], "__typename": [ 80 @@ -93384,13 +93975,13 @@ export default { }, "servers_aggregate_bool_exp_bool_and": { "arguments": [ - 4043 + 4049 ], "distinct": [ 5 ], "filter": [ - 4029 + 4035 ], "predicate": [ 6 @@ -93401,13 +93992,13 @@ export default { }, "servers_aggregate_bool_exp_bool_or": { "arguments": [ - 4044 + 4050 ], "distinct": [ 5 ], "filter": [ - 4029 + 4035 ], "predicate": [ 6 @@ -93418,13 +94009,13 @@ export default { }, "servers_aggregate_bool_exp_count": { "arguments": [ - 4042 + 4048 ], "distinct": [ 5 ], "filter": [ - 4029 + 4035 ], "predicate": [ 41 @@ -93435,13 +94026,13 @@ export default { }, "servers_aggregate_fields": { "avg": [ - 4027 + 4033 ], "count": [ 40, { "columns": [ - 4042, + 4048, "[servers_select_column!]" ], "distinct": [ @@ -93450,31 +94041,31 @@ export default { } ], "max": [ - 4033 + 4039 ], "min": [ - 4035 + 4041 ], "stddev": [ - 4046 + 4052 ], "stddev_pop": [ - 4048 + 4054 ], "stddev_samp": [ - 4050 + 4056 ], "sum": [ - 4054 + 4060 ], "var_pop": [ - 4058 + 4064 ], "var_samp": [ - 4060 + 4066 ], "variance": [ - 4062 + 4068 ], "__typename": [ 80 @@ -93482,37 +94073,37 @@ export default { }, "servers_aggregate_order_by": { "avg": [ - 4028 + 4034 ], "count": [ - 2946 + 2952 ], "max": [ - 4034 + 4040 ], "min": [ - 4036 + 4042 ], "stddev": [ - 4047 + 4053 ], "stddev_pop": [ - 4049 + 4055 ], "stddev_samp": [ - 4051 + 4057 ], "sum": [ - 4055 + 4061 ], "var_pop": [ - 4059 + 4065 ], "var_samp": [ - 4061 + 4067 ], "variance": [ - 4063 + 4069 ], "__typename": [ 80 @@ -93520,10 +94111,10 @@ export default { }, "servers_arr_rel_insert_input": { "data": [ - 4032 + 4038 ], "on_conflict": [ - 4039 + 4045 ], "__typename": [ 80 @@ -93545,13 +94136,13 @@ export default { }, "servers_avg_order_by": { "max_players": [ - 2946 + 2952 ], "port": [ - 2946 + 2952 ], "tv_port": [ - 2946 + 2952 ], "__typename": [ 80 @@ -93559,16 +94150,16 @@ export default { }, "servers_bool_exp": { "_and": [ - 4029 + 4035 ], "_not": [ - 4029 + 4035 ], "_or": [ - 4029 + 4035 ], "api_password": [ - 4995 + 5001 ], "boot_status": [ 82 @@ -93589,7 +94180,7 @@ export default { 82 ], "current_match": [ - 2770 + 2776 ], "enabled": [ 6 @@ -93598,7 +94189,7 @@ export default { 82 ], "game_server_node": [ - 1705 + 1711 ], "game_server_node_id": [ 82 @@ -93607,7 +94198,7 @@ export default { 82 ], "id": [ - 4995 + 5001 ], "is_dedicated": [ 6 @@ -93616,19 +94207,19 @@ export default { 82 ], "matches": [ - 2770 + 2776 ], "matches_aggregate": [ - 2763 + 2769 ], "max_players": [ 41 ], "offline_at": [ - 4494 + 4500 ], "plugin_runtime": [ - 1086 + 1092 ], "plugin_version": [ 82 @@ -93637,7 +94228,7 @@ export default { 41 ], "rcon_password": [ - 256 + 262 ], "rcon_status": [ 6 @@ -93646,10 +94237,10 @@ export default { 82 ], "reserved_by_match_id": [ - 4995 + 5001 ], "server_region": [ - 3995 + 4001 ], "steam_relay": [ 82 @@ -93658,10 +94249,10 @@ export default { 41 ], "type": [ - 1167 + 1173 ], "updated_at": [ - 4494 + 4500 ], "__typename": [ 80 @@ -93684,7 +94275,7 @@ export default { }, "servers_insert_input": { "api_password": [ - 4993 + 4999 ], "boot_status": [ 80 @@ -93699,7 +94290,7 @@ export default { 5 ], "current_match": [ - 2779 + 2785 ], "enabled": [ 5 @@ -93708,7 +94299,7 @@ export default { 80 ], "game_server_node": [ - 1717 + 1723 ], "game_server_node_id": [ 80 @@ -93717,7 +94308,7 @@ export default { 80 ], "id": [ - 4993 + 4999 ], "is_dedicated": [ 5 @@ -93726,16 +94317,16 @@ export default { 80 ], "matches": [ - 2767 + 2773 ], "max_players": [ 40 ], "offline_at": [ - 4493 + 4499 ], "plugin_runtime": [ - 1085 + 1091 ], "plugin_version": [ 80 @@ -93744,7 +94335,7 @@ export default { 40 ], "rcon_password": [ - 255 + 261 ], "rcon_status": [ 5 @@ -93753,10 +94344,10 @@ export default { 80 ], "reserved_by_match_id": [ - 4993 + 4999 ], "server_region": [ - 4001 + 4007 ], "steam_relay": [ 80 @@ -93765,10 +94356,10 @@ export default { 40 ], "type": [ - 1166 + 1172 ], "updated_at": [ - 4493 + 4499 ], "__typename": [ 80 @@ -93776,7 +94367,7 @@ export default { }, "servers_max_fields": { "api_password": [ - 4993 + 4999 ], "boot_status": [ 80 @@ -93803,7 +94394,7 @@ export default { 80 ], "id": [ - 4993 + 4999 ], "label": [ 80 @@ -93812,7 +94403,7 @@ export default { 40 ], "offline_at": [ - 4493 + 4499 ], "plugin_version": [ 80 @@ -93824,7 +94415,7 @@ export default { 80 ], "reserved_by_match_id": [ - 4993 + 4999 ], "steam_relay": [ 80 @@ -93833,7 +94424,7 @@ export default { 40 ], "updated_at": [ - 4493 + 4499 ], "__typename": [ 80 @@ -93841,58 +94432,58 @@ export default { }, "servers_max_order_by": { "api_password": [ - 2946 + 2952 ], "boot_status": [ - 2946 + 2952 ], "boot_status_detail": [ - 2946 + 2952 ], "connect_password": [ - 2946 + 2952 ], "game": [ - 2946 + 2952 ], "game_server_node_id": [ - 2946 + 2952 ], "host": [ - 2946 + 2952 ], "id": [ - 2946 + 2952 ], "label": [ - 2946 + 2952 ], "max_players": [ - 2946 + 2952 ], "offline_at": [ - 2946 + 2952 ], "plugin_version": [ - 2946 + 2952 ], "port": [ - 2946 + 2952 ], "region": [ - 2946 + 2952 ], "reserved_by_match_id": [ - 2946 + 2952 ], "steam_relay": [ - 2946 + 2952 ], "tv_port": [ - 2946 + 2952 ], "updated_at": [ - 2946 + 2952 ], "__typename": [ 80 @@ -93900,7 +94491,7 @@ export default { }, "servers_min_fields": { "api_password": [ - 4993 + 4999 ], "boot_status": [ 80 @@ -93927,7 +94518,7 @@ export default { 80 ], "id": [ - 4993 + 4999 ], "label": [ 80 @@ -93936,7 +94527,7 @@ export default { 40 ], "offline_at": [ - 4493 + 4499 ], "plugin_version": [ 80 @@ -93948,7 +94539,7 @@ export default { 80 ], "reserved_by_match_id": [ - 4993 + 4999 ], "steam_relay": [ 80 @@ -93957,7 +94548,7 @@ export default { 40 ], "updated_at": [ - 4493 + 4499 ], "__typename": [ 80 @@ -93965,58 +94556,58 @@ export default { }, "servers_min_order_by": { "api_password": [ - 2946 + 2952 ], "boot_status": [ - 2946 + 2952 ], "boot_status_detail": [ - 2946 + 2952 ], "connect_password": [ - 2946 + 2952 ], "game": [ - 2946 + 2952 ], "game_server_node_id": [ - 2946 + 2952 ], "host": [ - 2946 + 2952 ], "id": [ - 2946 + 2952 ], "label": [ - 2946 + 2952 ], "max_players": [ - 2946 + 2952 ], "offline_at": [ - 2946 + 2952 ], "plugin_version": [ - 2946 + 2952 ], "port": [ - 2946 + 2952 ], "region": [ - 2946 + 2952 ], "reserved_by_match_id": [ - 2946 + 2952 ], "steam_relay": [ - 2946 + 2952 ], "tv_port": [ - 2946 + 2952 ], "updated_at": [ - 2946 + 2952 ], "__typename": [ 80 @@ -94027,7 +94618,7 @@ export default { 40 ], "returning": [ - 4018 + 4024 ], "__typename": [ 80 @@ -94035,10 +94626,10 @@ export default { }, "servers_obj_rel_insert_input": { "data": [ - 4032 + 4038 ], "on_conflict": [ - 4039 + 4045 ], "__typename": [ 80 @@ -94046,13 +94637,13 @@ export default { }, "servers_on_conflict": { "constraint": [ - 4030 + 4036 ], "update_columns": [ - 4056 + 4062 ], "where": [ - 4029 + 4035 ], "__typename": [ 80 @@ -94060,97 +94651,97 @@ export default { }, "servers_order_by": { "api_password": [ - 2946 + 2952 ], "boot_status": [ - 2946 + 2952 ], "boot_status_detail": [ - 2946 + 2952 ], "connect_password": [ - 2946 + 2952 ], "connected": [ - 2946 + 2952 ], "connection_link": [ - 2946 + 2952 ], "connection_string": [ - 2946 + 2952 ], "current_match": [ - 2781 + 2787 ], "enabled": [ - 2946 + 2952 ], "game": [ - 2946 + 2952 ], "game_server_node": [ - 1719 + 1725 ], "game_server_node_id": [ - 2946 + 2952 ], "host": [ - 2946 + 2952 ], "id": [ - 2946 + 2952 ], "is_dedicated": [ - 2946 + 2952 ], "label": [ - 2946 + 2952 ], "matches_aggregate": [ - 2766 + 2772 ], "max_players": [ - 2946 + 2952 ], "offline_at": [ - 2946 + 2952 ], "plugin_runtime": [ - 2946 + 2952 ], "plugin_version": [ - 2946 + 2952 ], "port": [ - 2946 + 2952 ], "rcon_password": [ - 2946 + 2952 ], "rcon_status": [ - 2946 + 2952 ], "region": [ - 2946 + 2952 ], "reserved_by_match_id": [ - 2946 + 2952 ], "server_region": [ - 4003 + 4009 ], "steam_relay": [ - 2946 + 2952 ], "tv_port": [ - 2946 + 2952 ], "type": [ - 2946 + 2952 ], "updated_at": [ - 2946 + 2952 ], "__typename": [ 80 @@ -94158,7 +94749,7 @@ export default { }, "servers_pk_columns_input": { "id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -94169,7 +94760,7 @@ export default { "servers_select_column_servers_aggregate_bool_exp_bool_or_arguments_columns": {}, "servers_set_input": { "api_password": [ - 4993 + 4999 ], "boot_status": [ 80 @@ -94196,7 +94787,7 @@ export default { 80 ], "id": [ - 4993 + 4999 ], "is_dedicated": [ 5 @@ -94208,10 +94799,10 @@ export default { 40 ], "offline_at": [ - 4493 + 4499 ], "plugin_runtime": [ - 1085 + 1091 ], "plugin_version": [ 80 @@ -94220,7 +94811,7 @@ export default { 40 ], "rcon_password": [ - 255 + 261 ], "rcon_status": [ 5 @@ -94229,7 +94820,7 @@ export default { 80 ], "reserved_by_match_id": [ - 4993 + 4999 ], "steam_relay": [ 80 @@ -94238,10 +94829,10 @@ export default { 40 ], "type": [ - 1166 + 1172 ], "updated_at": [ - 4493 + 4499 ], "__typename": [ 80 @@ -94263,13 +94854,13 @@ export default { }, "servers_stddev_order_by": { "max_players": [ - 2946 + 2952 ], "port": [ - 2946 + 2952 ], "tv_port": [ - 2946 + 2952 ], "__typename": [ 80 @@ -94291,13 +94882,13 @@ export default { }, "servers_stddev_pop_order_by": { "max_players": [ - 2946 + 2952 ], "port": [ - 2946 + 2952 ], "tv_port": [ - 2946 + 2952 ], "__typename": [ 80 @@ -94319,13 +94910,13 @@ export default { }, "servers_stddev_samp_order_by": { "max_players": [ - 2946 + 2952 ], "port": [ - 2946 + 2952 ], "tv_port": [ - 2946 + 2952 ], "__typename": [ 80 @@ -94333,10 +94924,10 @@ export default { }, "servers_stream_cursor_input": { "initial_value": [ - 4053 + 4059 ], "ordering": [ - 308 + 314 ], "__typename": [ 80 @@ -94344,7 +94935,7 @@ export default { }, "servers_stream_cursor_value_input": { "api_password": [ - 4993 + 4999 ], "boot_status": [ 80 @@ -94371,7 +94962,7 @@ export default { 80 ], "id": [ - 4993 + 4999 ], "is_dedicated": [ 5 @@ -94383,10 +94974,10 @@ export default { 40 ], "offline_at": [ - 4493 + 4499 ], "plugin_runtime": [ - 1085 + 1091 ], "plugin_version": [ 80 @@ -94395,7 +94986,7 @@ export default { 40 ], "rcon_password": [ - 255 + 261 ], "rcon_status": [ 5 @@ -94404,7 +94995,7 @@ export default { 80 ], "reserved_by_match_id": [ - 4993 + 4999 ], "steam_relay": [ 80 @@ -94413,10 +95004,10 @@ export default { 40 ], "type": [ - 1166 + 1172 ], "updated_at": [ - 4493 + 4499 ], "__typename": [ 80 @@ -94438,13 +95029,13 @@ export default { }, "servers_sum_order_by": { "max_players": [ - 2946 + 2952 ], "port": [ - 2946 + 2952 ], "tv_port": [ - 2946 + 2952 ], "__typename": [ 80 @@ -94453,13 +95044,13 @@ export default { "servers_update_column": {}, "servers_updates": { "_inc": [ - 4031 + 4037 ], "_set": [ - 4045 + 4051 ], "where": [ - 4029 + 4035 ], "__typename": [ 80 @@ -94481,13 +95072,13 @@ export default { }, "servers_var_pop_order_by": { "max_players": [ - 2946 + 2952 ], "port": [ - 2946 + 2952 ], "tv_port": [ - 2946 + 2952 ], "__typename": [ 80 @@ -94509,13 +95100,13 @@ export default { }, "servers_var_samp_order_by": { "max_players": [ - 2946 + 2952 ], "port": [ - 2946 + 2952 ], "tv_port": [ - 2946 + 2952 ], "__typename": [ 80 @@ -94537,13 +95128,13 @@ export default { }, "servers_variance_order_by": { "max_players": [ - 2946 + 2952 ], "port": [ - 2946 + 2952 ], "tv_port": [ - 2946 + 2952 ], "__typename": [ 80 @@ -94562,10 +95153,10 @@ export default { }, "settings_aggregate": { "aggregate": [ - 4066 + 4072 ], "nodes": [ - 4064 + 4070 ], "__typename": [ 80 @@ -94576,7 +95167,7 @@ export default { 40, { "columns": [ - 4076, + 4082, "[settings_select_column!]" ], "distinct": [ @@ -94585,10 +95176,10 @@ export default { } ], "max": [ - 4070 + 4076 ], "min": [ - 4071 + 4077 ], "__typename": [ 80 @@ -94596,13 +95187,13 @@ export default { }, "settings_bool_exp": { "_and": [ - 4067 + 4073 ], "_not": [ - 4067 + 4073 ], "_or": [ - 4067 + 4073 ], "name": [ 82 @@ -94653,7 +95244,7 @@ export default { 40 ], "returning": [ - 4064 + 4070 ], "__typename": [ 80 @@ -94661,13 +95252,13 @@ export default { }, "settings_on_conflict": { "constraint": [ - 4068 + 4074 ], "update_columns": [ - 4080 + 4086 ], "where": [ - 4067 + 4073 ], "__typename": [ 80 @@ -94675,10 +95266,10 @@ export default { }, "settings_order_by": { "name": [ - 2946 + 2952 ], "value": [ - 2946 + 2952 ], "__typename": [ 80 @@ -94706,10 +95297,10 @@ export default { }, "settings_stream_cursor_input": { "initial_value": [ - 4079 + 4085 ], "ordering": [ - 308 + 314 ], "__typename": [ 80 @@ -94729,10 +95320,10 @@ export default { "settings_update_column": {}, "settings_updates": { "_set": [ - 4077 + 4083 ], "where": [ - 4067 + 4073 ], "__typename": [ 80 @@ -94741,31 +95332,31 @@ export default { "smallint": {}, "smallint_comparison_exp": { "_eq": [ - 4082 + 4088 ], "_gt": [ - 4082 + 4088 ], "_gte": [ - 4082 + 4088 ], "_in": [ - 4082 + 4088 ], "_is_null": [ 5 ], "_lt": [ - 4082 + 4088 ], "_lte": [ - 4082 + 4088 ], "_neq": [ - 4082 + 4088 ], "_nin": [ - 4082 + 4088 ], "__typename": [ 80 @@ -94773,16 +95364,16 @@ export default { }, "steam_account_claims": { "created_at": [ - 4493 + 4499 ], "id": [ - 4993 + 4999 ], "k8s_job_name": [ 80 ], "node": [ - 1693 + 1699 ], "node_id": [ 80 @@ -94791,10 +95382,10 @@ export default { 80 ], "steam_account": [ - 4108 + 4114 ], "steam_account_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -94802,10 +95393,10 @@ export default { }, "steam_account_claims_aggregate": { "aggregate": [ - 4088 + 4094 ], "nodes": [ - 4084 + 4090 ], "__typename": [ 80 @@ -94813,7 +95404,7 @@ export default { }, "steam_account_claims_aggregate_bool_exp": { "count": [ - 4087 + 4093 ], "__typename": [ 80 @@ -94821,13 +95412,13 @@ export default { }, "steam_account_claims_aggregate_bool_exp_count": { "arguments": [ - 4102 + 4108 ], "distinct": [ 5 ], "filter": [ - 4091 + 4097 ], "predicate": [ 41 @@ -94841,7 +95432,7 @@ export default { 40, { "columns": [ - 4102, + 4108, "[steam_account_claims_select_column!]" ], "distinct": [ @@ -94850,10 +95441,10 @@ export default { } ], "max": [ - 4094 + 4100 ], "min": [ - 4096 + 4102 ], "__typename": [ 80 @@ -94861,13 +95452,13 @@ export default { }, "steam_account_claims_aggregate_order_by": { "count": [ - 2946 + 2952 ], "max": [ - 4095 + 4101 ], "min": [ - 4097 + 4103 ], "__typename": [ 80 @@ -94875,10 +95466,10 @@ export default { }, "steam_account_claims_arr_rel_insert_input": { "data": [ - 4093 + 4099 ], "on_conflict": [ - 4099 + 4105 ], "__typename": [ 80 @@ -94886,25 +95477,25 @@ export default { }, "steam_account_claims_bool_exp": { "_and": [ - 4091 + 4097 ], "_not": [ - 4091 + 4097 ], "_or": [ - 4091 + 4097 ], "created_at": [ - 4494 + 4500 ], "id": [ - 4995 + 5001 ], "k8s_job_name": [ 82 ], "node": [ - 1705 + 1711 ], "node_id": [ 82 @@ -94913,10 +95504,10 @@ export default { 82 ], "steam_account": [ - 4112 + 4118 ], "steam_account_id": [ - 4995 + 5001 ], "__typename": [ 80 @@ -94925,16 +95516,16 @@ export default { "steam_account_claims_constraint": {}, "steam_account_claims_insert_input": { "created_at": [ - 4493 + 4499 ], "id": [ - 4993 + 4999 ], "k8s_job_name": [ 80 ], "node": [ - 1717 + 1723 ], "node_id": [ 80 @@ -94943,10 +95534,10 @@ export default { 80 ], "steam_account": [ - 4119 + 4125 ], "steam_account_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -94954,10 +95545,10 @@ export default { }, "steam_account_claims_max_fields": { "created_at": [ - 4493 + 4499 ], "id": [ - 4993 + 4999 ], "k8s_job_name": [ 80 @@ -94969,7 +95560,7 @@ export default { 80 ], "steam_account_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -94977,22 +95568,22 @@ export default { }, "steam_account_claims_max_order_by": { "created_at": [ - 2946 + 2952 ], "id": [ - 2946 + 2952 ], "k8s_job_name": [ - 2946 + 2952 ], "node_id": [ - 2946 + 2952 ], "purpose": [ - 2946 + 2952 ], "steam_account_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -95000,10 +95591,10 @@ export default { }, "steam_account_claims_min_fields": { "created_at": [ - 4493 + 4499 ], "id": [ - 4993 + 4999 ], "k8s_job_name": [ 80 @@ -95015,7 +95606,7 @@ export default { 80 ], "steam_account_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -95023,22 +95614,22 @@ export default { }, "steam_account_claims_min_order_by": { "created_at": [ - 2946 + 2952 ], "id": [ - 2946 + 2952 ], "k8s_job_name": [ - 2946 + 2952 ], "node_id": [ - 2946 + 2952 ], "purpose": [ - 2946 + 2952 ], "steam_account_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -95049,7 +95640,7 @@ export default { 40 ], "returning": [ - 4084 + 4090 ], "__typename": [ 80 @@ -95057,13 +95648,13 @@ export default { }, "steam_account_claims_on_conflict": { "constraint": [ - 4092 + 4098 ], "update_columns": [ - 4106 + 4112 ], "where": [ - 4091 + 4097 ], "__typename": [ 80 @@ -95071,28 +95662,28 @@ export default { }, "steam_account_claims_order_by": { "created_at": [ - 2946 + 2952 ], "id": [ - 2946 + 2952 ], "k8s_job_name": [ - 2946 + 2952 ], "node": [ - 1719 + 1725 ], "node_id": [ - 2946 + 2952 ], "purpose": [ - 2946 + 2952 ], "steam_account": [ - 4121 + 4127 ], "steam_account_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -95100,7 +95691,7 @@ export default { }, "steam_account_claims_pk_columns_input": { "id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -95109,10 +95700,10 @@ export default { "steam_account_claims_select_column": {}, "steam_account_claims_set_input": { "created_at": [ - 4493 + 4499 ], "id": [ - 4993 + 4999 ], "k8s_job_name": [ 80 @@ -95124,7 +95715,7 @@ export default { 80 ], "steam_account_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -95132,10 +95723,10 @@ export default { }, "steam_account_claims_stream_cursor_input": { "initial_value": [ - 4105 + 4111 ], "ordering": [ - 308 + 314 ], "__typename": [ 80 @@ -95143,10 +95734,10 @@ export default { }, "steam_account_claims_stream_cursor_value_input": { "created_at": [ - 4493 + 4499 ], "id": [ - 4993 + 4999 ], "k8s_job_name": [ 80 @@ -95158,7 +95749,7 @@ export default { 80 ], "steam_account_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -95167,10 +95758,10 @@ export default { "steam_account_claims_update_column": {}, "steam_account_claims_updates": { "_set": [ - 4103 + 4109 ], "where": [ - 4091 + 4097 ], "__typename": [ 80 @@ -95178,10 +95769,10 @@ export default { }, "steam_accounts": { "claims": [ - 4084, + 4090, { "distinct_on": [ - 4102, + 4108, "[steam_account_claims_select_column!]" ], "limit": [ @@ -95191,19 +95782,19 @@ export default { 40 ], "order_by": [ - 4100, + 4106, "[steam_account_claims_order_by!]" ], "where": [ - 4091 + 4097 ] } ], "claims_aggregate": [ - 4085, + 4091, { "distinct_on": [ - 4102, + 4108, "[steam_account_claims_select_column!]" ], "limit": [ @@ -95213,25 +95804,25 @@ export default { 40 ], "order_by": [ - 4100, + 4106, "[steam_account_claims_order_by!]" ], "where": [ - 4091 + 4097 ] } ], "created_at": [ - 4493 + 4499 ], "friend_capacity": [ 40 ], "id": [ - 4993 + 4999 ], "last_node": [ - 1693 + 1699 ], "last_node_id": [ 80 @@ -95246,10 +95837,10 @@ export default { 40 ], "steamid64": [ - 252 + 258 ], "updated_at": [ - 4493 + 4499 ], "username": [ 80 @@ -95260,10 +95851,10 @@ export default { }, "steam_accounts_aggregate": { "aggregate": [ - 4110 + 4116 ], "nodes": [ - 4108 + 4114 ], "__typename": [ 80 @@ -95271,13 +95862,13 @@ export default { }, "steam_accounts_aggregate_fields": { "avg": [ - 4111 + 4117 ], "count": [ 40, { "columns": [ - 4123, + 4129, "[steam_accounts_select_column!]" ], "distinct": [ @@ -95286,31 +95877,31 @@ export default { } ], "max": [ - 4116 + 4122 ], "min": [ - 4117 + 4123 ], "stddev": [ - 4125 + 4131 ], "stddev_pop": [ - 4126 + 4132 ], "stddev_samp": [ - 4127 + 4133 ], "sum": [ - 4130 + 4136 ], "var_pop": [ - 4133 + 4139 ], "var_samp": [ - 4134 + 4140 ], "variance": [ - 4135 + 4141 ], "__typename": [ 80 @@ -95332,31 +95923,31 @@ export default { }, "steam_accounts_bool_exp": { "_and": [ - 4112 + 4118 ], "_not": [ - 4112 + 4118 ], "_or": [ - 4112 + 4118 ], "claims": [ - 4091 + 4097 ], "claims_aggregate": [ - 4086 + 4092 ], "created_at": [ - 4494 + 4500 ], "friend_capacity": [ 41 ], "id": [ - 4995 + 5001 ], "last_node": [ - 1705 + 1711 ], "last_node_id": [ 82 @@ -95371,10 +95962,10 @@ export default { 41 ], "steamid64": [ - 254 + 260 ], "updated_at": [ - 4494 + 4500 ], "username": [ 82 @@ -95392,7 +95983,7 @@ export default { 40 ], "steamid64": [ - 252 + 258 ], "__typename": [ 80 @@ -95400,19 +95991,19 @@ export default { }, "steam_accounts_insert_input": { "claims": [ - 4090 + 4096 ], "created_at": [ - 4493 + 4499 ], "friend_capacity": [ 40 ], "id": [ - 4993 + 4999 ], "last_node": [ - 1717 + 1723 ], "last_node_id": [ 80 @@ -95427,10 +96018,10 @@ export default { 40 ], "steamid64": [ - 252 + 258 ], "updated_at": [ - 4493 + 4499 ], "username": [ 80 @@ -95441,13 +96032,13 @@ export default { }, "steam_accounts_max_fields": { "created_at": [ - 4493 + 4499 ], "friend_capacity": [ 40 ], "id": [ - 4993 + 4999 ], "last_node_id": [ 80 @@ -95462,10 +96053,10 @@ export default { 40 ], "steamid64": [ - 252 + 258 ], "updated_at": [ - 4493 + 4499 ], "username": [ 80 @@ -95476,13 +96067,13 @@ export default { }, "steam_accounts_min_fields": { "created_at": [ - 4493 + 4499 ], "friend_capacity": [ 40 ], "id": [ - 4993 + 4999 ], "last_node_id": [ 80 @@ -95497,10 +96088,10 @@ export default { 40 ], "steamid64": [ - 252 + 258 ], "updated_at": [ - 4493 + 4499 ], "username": [ 80 @@ -95514,7 +96105,7 @@ export default { 40 ], "returning": [ - 4108 + 4114 ], "__typename": [ 80 @@ -95522,10 +96113,10 @@ export default { }, "steam_accounts_obj_rel_insert_input": { "data": [ - 4115 + 4121 ], "on_conflict": [ - 4120 + 4126 ], "__typename": [ 80 @@ -95533,13 +96124,13 @@ export default { }, "steam_accounts_on_conflict": { "constraint": [ - 4113 + 4119 ], "update_columns": [ - 4131 + 4137 ], "where": [ - 4112 + 4118 ], "__typename": [ 80 @@ -95547,40 +96138,40 @@ export default { }, "steam_accounts_order_by": { "claims_aggregate": [ - 4089 + 4095 ], "created_at": [ - 2946 + 2952 ], "friend_capacity": [ - 2946 + 2952 ], "id": [ - 2946 + 2952 ], "last_node": [ - 1719 + 1725 ], "last_node_id": [ - 2946 + 2952 ], "password": [ - 2946 + 2952 ], "role": [ - 2946 + 2952 ], "steam_level": [ - 2946 + 2952 ], "steamid64": [ - 2946 + 2952 ], "updated_at": [ - 2946 + 2952 ], "username": [ - 2946 + 2952 ], "__typename": [ 80 @@ -95588,7 +96179,7 @@ export default { }, "steam_accounts_pk_columns_input": { "id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -95597,13 +96188,13 @@ export default { "steam_accounts_select_column": {}, "steam_accounts_set_input": { "created_at": [ - 4493 + 4499 ], "friend_capacity": [ 40 ], "id": [ - 4993 + 4999 ], "last_node_id": [ 80 @@ -95618,10 +96209,10 @@ export default { 40 ], "steamid64": [ - 252 + 258 ], "updated_at": [ - 4493 + 4499 ], "username": [ 80 @@ -95674,10 +96265,10 @@ export default { }, "steam_accounts_stream_cursor_input": { "initial_value": [ - 4129 + 4135 ], "ordering": [ - 308 + 314 ], "__typename": [ 80 @@ -95685,13 +96276,13 @@ export default { }, "steam_accounts_stream_cursor_value_input": { "created_at": [ - 4493 + 4499 ], "friend_capacity": [ 40 ], "id": [ - 4993 + 4999 ], "last_node_id": [ 80 @@ -95706,10 +96297,10 @@ export default { 40 ], "steamid64": [ - 252 + 258 ], "updated_at": [ - 4493 + 4499 ], "username": [ 80 @@ -95726,7 +96317,7 @@ export default { 40 ], "steamid64": [ - 252 + 258 ], "__typename": [ 80 @@ -95735,13 +96326,13 @@ export default { "steam_accounts_update_column": {}, "steam_accounts_updates": { "_inc": [ - 4114 + 4120 ], "_set": [ - 4124 + 4130 ], "where": [ - 4112 + 4118 ], "__typename": [ 80 @@ -95791,19 +96382,19 @@ export default { }, "system_alerts": { "created_at": [ - 4493 + 4499 ], "created_by": [ - 252 + 258 ], "dismissible": [ 5 ], "expires_at": [ - 4493 + 4499 ], "id": [ - 4993 + 4999 ], "is_active": [ 5 @@ -95815,10 +96406,10 @@ export default { 80 ], "type": [ - 1206 + 1212 ], "updated_at": [ - 4493 + 4499 ], "__typename": [ 80 @@ -95826,10 +96417,10 @@ export default { }, "system_alerts_aggregate": { "aggregate": [ - 4138 + 4144 ], "nodes": [ - 4136 + 4142 ], "__typename": [ 80 @@ -95837,13 +96428,13 @@ export default { }, "system_alerts_aggregate_fields": { "avg": [ - 4139 + 4145 ], "count": [ 40, { "columns": [ - 4150, + 4156, "[system_alerts_select_column!]" ], "distinct": [ @@ -95852,31 +96443,31 @@ export default { } ], "max": [ - 4144 + 4150 ], "min": [ - 4145 + 4151 ], "stddev": [ - 4152 + 4158 ], "stddev_pop": [ - 4153 + 4159 ], "stddev_samp": [ - 4154 + 4160 ], "sum": [ - 4157 + 4163 ], "var_pop": [ - 4160 + 4166 ], "var_samp": [ - 4161 + 4167 ], "variance": [ - 4162 + 4168 ], "__typename": [ 80 @@ -95892,28 +96483,28 @@ export default { }, "system_alerts_bool_exp": { "_and": [ - 4140 + 4146 ], "_not": [ - 4140 + 4146 ], "_or": [ - 4140 + 4146 ], "created_at": [ - 4494 + 4500 ], "created_by": [ - 254 + 260 ], "dismissible": [ 6 ], "expires_at": [ - 4494 + 4500 ], "id": [ - 4995 + 5001 ], "is_active": [ 6 @@ -95925,10 +96516,10 @@ export default { 82 ], "type": [ - 1207 + 1213 ], "updated_at": [ - 4494 + 4500 ], "__typename": [ 80 @@ -95937,7 +96528,7 @@ export default { "system_alerts_constraint": {}, "system_alerts_inc_input": { "created_by": [ - 252 + 258 ], "__typename": [ 80 @@ -95945,19 +96536,19 @@ export default { }, "system_alerts_insert_input": { "created_at": [ - 4493 + 4499 ], "created_by": [ - 252 + 258 ], "dismissible": [ 5 ], "expires_at": [ - 4493 + 4499 ], "id": [ - 4993 + 4999 ], "is_active": [ 5 @@ -95969,10 +96560,10 @@ export default { 80 ], "type": [ - 1206 + 1212 ], "updated_at": [ - 4493 + 4499 ], "__typename": [ 80 @@ -95980,16 +96571,16 @@ export default { }, "system_alerts_max_fields": { "created_at": [ - 4493 + 4499 ], "created_by": [ - 252 + 258 ], "expires_at": [ - 4493 + 4499 ], "id": [ - 4993 + 4999 ], "message": [ 80 @@ -95998,7 +96589,7 @@ export default { 80 ], "updated_at": [ - 4493 + 4499 ], "__typename": [ 80 @@ -96006,16 +96597,16 @@ export default { }, "system_alerts_min_fields": { "created_at": [ - 4493 + 4499 ], "created_by": [ - 252 + 258 ], "expires_at": [ - 4493 + 4499 ], "id": [ - 4993 + 4999 ], "message": [ 80 @@ -96024,7 +96615,7 @@ export default { 80 ], "updated_at": [ - 4493 + 4499 ], "__typename": [ 80 @@ -96035,7 +96626,7 @@ export default { 40 ], "returning": [ - 4136 + 4142 ], "__typename": [ 80 @@ -96043,13 +96634,13 @@ export default { }, "system_alerts_on_conflict": { "constraint": [ - 4141 + 4147 ], "update_columns": [ - 4158 + 4164 ], "where": [ - 4140 + 4146 ], "__typename": [ 80 @@ -96057,34 +96648,34 @@ export default { }, "system_alerts_order_by": { "created_at": [ - 2946 + 2952 ], "created_by": [ - 2946 + 2952 ], "dismissible": [ - 2946 + 2952 ], "expires_at": [ - 2946 + 2952 ], "id": [ - 2946 + 2952 ], "is_active": [ - 2946 + 2952 ], "message": [ - 2946 + 2952 ], "title": [ - 2946 + 2952 ], "type": [ - 2946 + 2952 ], "updated_at": [ - 2946 + 2952 ], "__typename": [ 80 @@ -96092,7 +96683,7 @@ export default { }, "system_alerts_pk_columns_input": { "id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -96101,19 +96692,19 @@ export default { "system_alerts_select_column": {}, "system_alerts_set_input": { "created_at": [ - 4493 + 4499 ], "created_by": [ - 252 + 258 ], "dismissible": [ 5 ], "expires_at": [ - 4493 + 4499 ], "id": [ - 4993 + 4999 ], "is_active": [ 5 @@ -96125,10 +96716,10 @@ export default { 80 ], "type": [ - 1206 + 1212 ], "updated_at": [ - 4493 + 4499 ], "__typename": [ 80 @@ -96160,10 +96751,10 @@ export default { }, "system_alerts_stream_cursor_input": { "initial_value": [ - 4156 + 4162 ], "ordering": [ - 308 + 314 ], "__typename": [ 80 @@ -96171,19 +96762,19 @@ export default { }, "system_alerts_stream_cursor_value_input": { "created_at": [ - 4493 + 4499 ], "created_by": [ - 252 + 258 ], "dismissible": [ 5 ], "expires_at": [ - 4493 + 4499 ], "id": [ - 4993 + 4999 ], "is_active": [ 5 @@ -96195,10 +96786,10 @@ export default { 80 ], "type": [ - 1206 + 1212 ], "updated_at": [ - 4493 + 4499 ], "__typename": [ 80 @@ -96206,7 +96797,7 @@ export default { }, "system_alerts_sum_fields": { "created_by": [ - 252 + 258 ], "__typename": [ 80 @@ -96215,13 +96806,13 @@ export default { "system_alerts_update_column": {}, "system_alerts_updates": { "_inc": [ - 4142 + 4148 ], "_set": [ - 4151 + 4157 ], "where": [ - 4140 + 4146 ], "__typename": [ 80 @@ -96253,28 +96844,28 @@ export default { }, "team_invites": { "created_at": [ - 4493 + 4499 ], "id": [ - 4993 + 4999 ], "invited_by": [ - 3904 + 3910 ], "invited_by_player_steam_id": [ - 252 + 258 ], "player": [ - 3904 + 3910 ], "steam_id": [ - 252 + 258 ], "team": [ - 4446 + 4452 ], "team_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -96282,10 +96873,10 @@ export default { }, "team_invites_aggregate": { "aggregate": [ - 4167 + 4173 ], "nodes": [ - 4163 + 4169 ], "__typename": [ 80 @@ -96293,7 +96884,7 @@ export default { }, "team_invites_aggregate_bool_exp": { "count": [ - 4166 + 4172 ], "__typename": [ 80 @@ -96301,13 +96892,13 @@ export default { }, "team_invites_aggregate_bool_exp_count": { "arguments": [ - 4184 + 4190 ], "distinct": [ 5 ], "filter": [ - 4172 + 4178 ], "predicate": [ 41 @@ -96318,13 +96909,13 @@ export default { }, "team_invites_aggregate_fields": { "avg": [ - 4170 + 4176 ], "count": [ 40, { "columns": [ - 4184, + 4190, "[team_invites_select_column!]" ], "distinct": [ @@ -96333,31 +96924,31 @@ export default { } ], "max": [ - 4176 + 4182 ], "min": [ - 4178 + 4184 ], "stddev": [ - 4186 + 4192 ], "stddev_pop": [ - 4188 + 4194 ], "stddev_samp": [ - 4190 + 4196 ], "sum": [ - 4194 + 4200 ], "var_pop": [ - 4198 + 4204 ], "var_samp": [ - 4200 + 4206 ], "variance": [ - 4202 + 4208 ], "__typename": [ 80 @@ -96365,37 +96956,37 @@ export default { }, "team_invites_aggregate_order_by": { "avg": [ - 4171 + 4177 ], "count": [ - 2946 + 2952 ], "max": [ - 4177 + 4183 ], "min": [ - 4179 + 4185 ], "stddev": [ - 4187 + 4193 ], "stddev_pop": [ - 4189 + 4195 ], "stddev_samp": [ - 4191 + 4197 ], "sum": [ - 4195 + 4201 ], "var_pop": [ - 4199 + 4205 ], "var_samp": [ - 4201 + 4207 ], "variance": [ - 4203 + 4209 ], "__typename": [ 80 @@ -96403,10 +96994,10 @@ export default { }, "team_invites_arr_rel_insert_input": { "data": [ - 4175 + 4181 ], "on_conflict": [ - 4181 + 4187 ], "__typename": [ 80 @@ -96425,10 +97016,10 @@ export default { }, "team_invites_avg_order_by": { "invited_by_player_steam_id": [ - 2946 + 2952 ], "steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -96436,37 +97027,37 @@ export default { }, "team_invites_bool_exp": { "_and": [ - 4172 + 4178 ], "_not": [ - 4172 + 4178 ], "_or": [ - 4172 + 4178 ], "created_at": [ - 4494 + 4500 ], "id": [ - 4995 + 5001 ], "invited_by": [ - 3908 + 3914 ], "invited_by_player_steam_id": [ - 254 + 260 ], "player": [ - 3908 + 3914 ], "steam_id": [ - 254 + 260 ], "team": [ - 4457 + 4463 ], "team_id": [ - 4995 + 5001 ], "__typename": [ 80 @@ -96475,10 +97066,10 @@ export default { "team_invites_constraint": {}, "team_invites_inc_input": { "invited_by_player_steam_id": [ - 252 + 258 ], "steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -96486,28 +97077,28 @@ export default { }, "team_invites_insert_input": { "created_at": [ - 4493 + 4499 ], "id": [ - 4993 + 4999 ], "invited_by": [ - 3915 + 3921 ], "invited_by_player_steam_id": [ - 252 + 258 ], "player": [ - 3915 + 3921 ], "steam_id": [ - 252 + 258 ], "team": [ - 4466 + 4472 ], "team_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -96515,19 +97106,19 @@ export default { }, "team_invites_max_fields": { "created_at": [ - 4493 + 4499 ], "id": [ - 4993 + 4999 ], "invited_by_player_steam_id": [ - 252 + 258 ], "steam_id": [ - 252 + 258 ], "team_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -96535,19 +97126,19 @@ export default { }, "team_invites_max_order_by": { "created_at": [ - 2946 + 2952 ], "id": [ - 2946 + 2952 ], "invited_by_player_steam_id": [ - 2946 + 2952 ], "steam_id": [ - 2946 + 2952 ], "team_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -96555,19 +97146,19 @@ export default { }, "team_invites_min_fields": { "created_at": [ - 4493 + 4499 ], "id": [ - 4993 + 4999 ], "invited_by_player_steam_id": [ - 252 + 258 ], "steam_id": [ - 252 + 258 ], "team_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -96575,19 +97166,19 @@ export default { }, "team_invites_min_order_by": { "created_at": [ - 2946 + 2952 ], "id": [ - 2946 + 2952 ], "invited_by_player_steam_id": [ - 2946 + 2952 ], "steam_id": [ - 2946 + 2952 ], "team_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -96598,7 +97189,7 @@ export default { 40 ], "returning": [ - 4163 + 4169 ], "__typename": [ 80 @@ -96606,13 +97197,13 @@ export default { }, "team_invites_on_conflict": { "constraint": [ - 4173 + 4179 ], "update_columns": [ - 4196 + 4202 ], "where": [ - 4172 + 4178 ], "__typename": [ 80 @@ -96620,28 +97211,28 @@ export default { }, "team_invites_order_by": { "created_at": [ - 2946 + 2952 ], "id": [ - 2946 + 2952 ], "invited_by": [ - 3917 + 3923 ], "invited_by_player_steam_id": [ - 2946 + 2952 ], "player": [ - 3917 + 3923 ], "steam_id": [ - 2946 + 2952 ], "team": [ - 4468 + 4474 ], "team_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -96649,7 +97240,7 @@ export default { }, "team_invites_pk_columns_input": { "id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -96658,19 +97249,19 @@ export default { "team_invites_select_column": {}, "team_invites_set_input": { "created_at": [ - 4493 + 4499 ], "id": [ - 4993 + 4999 ], "invited_by_player_steam_id": [ - 252 + 258 ], "steam_id": [ - 252 + 258 ], "team_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -96689,10 +97280,10 @@ export default { }, "team_invites_stddev_order_by": { "invited_by_player_steam_id": [ - 2946 + 2952 ], "steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -96711,10 +97302,10 @@ export default { }, "team_invites_stddev_pop_order_by": { "invited_by_player_steam_id": [ - 2946 + 2952 ], "steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -96733,10 +97324,10 @@ export default { }, "team_invites_stddev_samp_order_by": { "invited_by_player_steam_id": [ - 2946 + 2952 ], "steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -96744,10 +97335,10 @@ export default { }, "team_invites_stream_cursor_input": { "initial_value": [ - 4193 + 4199 ], "ordering": [ - 308 + 314 ], "__typename": [ 80 @@ -96755,19 +97346,19 @@ export default { }, "team_invites_stream_cursor_value_input": { "created_at": [ - 4493 + 4499 ], "id": [ - 4993 + 4999 ], "invited_by_player_steam_id": [ - 252 + 258 ], "steam_id": [ - 252 + 258 ], "team_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -96775,10 +97366,10 @@ export default { }, "team_invites_sum_fields": { "invited_by_player_steam_id": [ - 252 + 258 ], "steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -96786,10 +97377,10 @@ export default { }, "team_invites_sum_order_by": { "invited_by_player_steam_id": [ - 2946 + 2952 ], "steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -96798,13 +97389,13 @@ export default { "team_invites_update_column": {}, "team_invites_updates": { "_inc": [ - 4174 + 4180 ], "_set": [ - 4185 + 4191 ], "where": [ - 4172 + 4178 ], "__typename": [ 80 @@ -96823,10 +97414,10 @@ export default { }, "team_invites_var_pop_order_by": { "invited_by_player_steam_id": [ - 2946 + 2952 ], "steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -96845,10 +97436,10 @@ export default { }, "team_invites_var_samp_order_by": { "invited_by_player_steam_id": [ - 2946 + 2952 ], "steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -96867,10 +97458,10 @@ export default { }, "team_invites_variance_order_by": { "invited_by_player_steam_id": [ - 2946 + 2952 ], "steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -96881,25 +97472,25 @@ export default { 5 ], "player": [ - 3904 + 3910 ], "player_steam_id": [ - 252 + 258 ], "role": [ - 1226 + 1232 ], "roster_image_url": [ 80 ], "status": [ - 1247 + 1253 ], "team": [ - 4446 + 4452 ], "team_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -96907,10 +97498,10 @@ export default { }, "team_roster_aggregate": { "aggregate": [ - 4210 + 4216 ], "nodes": [ - 4204 + 4210 ], "__typename": [ 80 @@ -96918,13 +97509,13 @@ export default { }, "team_roster_aggregate_bool_exp": { "bool_and": [ - 4207 + 4213 ], "bool_or": [ - 4208 + 4214 ], "count": [ - 4209 + 4215 ], "__typename": [ 80 @@ -96932,13 +97523,13 @@ export default { }, "team_roster_aggregate_bool_exp_bool_and": { "arguments": [ - 4228 + 4234 ], "distinct": [ 5 ], "filter": [ - 4215 + 4221 ], "predicate": [ 6 @@ -96949,13 +97540,13 @@ export default { }, "team_roster_aggregate_bool_exp_bool_or": { "arguments": [ - 4229 + 4235 ], "distinct": [ 5 ], "filter": [ - 4215 + 4221 ], "predicate": [ 6 @@ -96966,13 +97557,13 @@ export default { }, "team_roster_aggregate_bool_exp_count": { "arguments": [ - 4227 + 4233 ], "distinct": [ 5 ], "filter": [ - 4215 + 4221 ], "predicate": [ 41 @@ -96983,13 +97574,13 @@ export default { }, "team_roster_aggregate_fields": { "avg": [ - 4213 + 4219 ], "count": [ 40, { "columns": [ - 4227, + 4233, "[team_roster_select_column!]" ], "distinct": [ @@ -96998,31 +97589,31 @@ export default { } ], "max": [ - 4219 + 4225 ], "min": [ - 4221 + 4227 ], "stddev": [ - 4231 + 4237 ], "stddev_pop": [ - 4233 + 4239 ], "stddev_samp": [ - 4235 + 4241 ], "sum": [ - 4239 + 4245 ], "var_pop": [ - 4243 + 4249 ], "var_samp": [ - 4245 + 4251 ], "variance": [ - 4247 + 4253 ], "__typename": [ 80 @@ -97030,37 +97621,37 @@ export default { }, "team_roster_aggregate_order_by": { "avg": [ - 4214 + 4220 ], "count": [ - 2946 + 2952 ], "max": [ - 4220 + 4226 ], "min": [ - 4222 + 4228 ], "stddev": [ - 4232 + 4238 ], "stddev_pop": [ - 4234 + 4240 ], "stddev_samp": [ - 4236 + 4242 ], "sum": [ - 4240 + 4246 ], "var_pop": [ - 4244 + 4250 ], "var_samp": [ - 4246 + 4252 ], "variance": [ - 4248 + 4254 ], "__typename": [ 80 @@ -97068,10 +97659,10 @@ export default { }, "team_roster_arr_rel_insert_input": { "data": [ - 4218 + 4224 ], "on_conflict": [ - 4224 + 4230 ], "__typename": [ 80 @@ -97087,7 +97678,7 @@ export default { }, "team_roster_avg_order_by": { "player_steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -97095,37 +97686,37 @@ export default { }, "team_roster_bool_exp": { "_and": [ - 4215 + 4221 ], "_not": [ - 4215 + 4221 ], "_or": [ - 4215 + 4221 ], "coach": [ 6 ], "player": [ - 3908 + 3914 ], "player_steam_id": [ - 254 + 260 ], "role": [ - 1227 + 1233 ], "roster_image_url": [ 82 ], "status": [ - 1248 + 1254 ], "team": [ - 4457 + 4463 ], "team_id": [ - 4995 + 5001 ], "__typename": [ 80 @@ -97134,7 +97725,7 @@ export default { "team_roster_constraint": {}, "team_roster_inc_input": { "player_steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -97145,25 +97736,25 @@ export default { 5 ], "player": [ - 3915 + 3921 ], "player_steam_id": [ - 252 + 258 ], "role": [ - 1226 + 1232 ], "roster_image_url": [ 80 ], "status": [ - 1247 + 1253 ], "team": [ - 4466 + 4472 ], "team_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -97171,13 +97762,13 @@ export default { }, "team_roster_max_fields": { "player_steam_id": [ - 252 + 258 ], "roster_image_url": [ 80 ], "team_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -97185,13 +97776,13 @@ export default { }, "team_roster_max_order_by": { "player_steam_id": [ - 2946 + 2952 ], "roster_image_url": [ - 2946 + 2952 ], "team_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -97199,13 +97790,13 @@ export default { }, "team_roster_min_fields": { "player_steam_id": [ - 252 + 258 ], "roster_image_url": [ 80 ], "team_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -97213,13 +97804,13 @@ export default { }, "team_roster_min_order_by": { "player_steam_id": [ - 2946 + 2952 ], "roster_image_url": [ - 2946 + 2952 ], "team_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -97230,7 +97821,7 @@ export default { 40 ], "returning": [ - 4204 + 4210 ], "__typename": [ 80 @@ -97238,13 +97829,13 @@ export default { }, "team_roster_on_conflict": { "constraint": [ - 4216 + 4222 ], "update_columns": [ - 4241 + 4247 ], "where": [ - 4215 + 4221 ], "__typename": [ 80 @@ -97252,28 +97843,28 @@ export default { }, "team_roster_order_by": { "coach": [ - 2946 + 2952 ], "player": [ - 3917 + 3923 ], "player_steam_id": [ - 2946 + 2952 ], "role": [ - 2946 + 2952 ], "roster_image_url": [ - 2946 + 2952 ], "status": [ - 2946 + 2952 ], "team": [ - 4468 + 4474 ], "team_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -97281,10 +97872,10 @@ export default { }, "team_roster_pk_columns_input": { "player_steam_id": [ - 252 + 258 ], "team_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -97298,19 +97889,19 @@ export default { 5 ], "player_steam_id": [ - 252 + 258 ], "role": [ - 1226 + 1232 ], "roster_image_url": [ 80 ], "status": [ - 1247 + 1253 ], "team_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -97326,7 +97917,7 @@ export default { }, "team_roster_stddev_order_by": { "player_steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -97342,7 +97933,7 @@ export default { }, "team_roster_stddev_pop_order_by": { "player_steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -97358,7 +97949,7 @@ export default { }, "team_roster_stddev_samp_order_by": { "player_steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -97366,10 +97957,10 @@ export default { }, "team_roster_stream_cursor_input": { "initial_value": [ - 4238 + 4244 ], "ordering": [ - 308 + 314 ], "__typename": [ 80 @@ -97380,19 +97971,19 @@ export default { 5 ], "player_steam_id": [ - 252 + 258 ], "role": [ - 1226 + 1232 ], "roster_image_url": [ 80 ], "status": [ - 1247 + 1253 ], "team_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -97400,7 +97991,7 @@ export default { }, "team_roster_sum_fields": { "player_steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -97408,7 +97999,7 @@ export default { }, "team_roster_sum_order_by": { "player_steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -97417,13 +98008,13 @@ export default { "team_roster_update_column": {}, "team_roster_updates": { "_inc": [ - 4217 + 4223 ], "_set": [ - 4230 + 4236 ], "where": [ - 4215 + 4221 ], "__typename": [ 80 @@ -97439,7 +98030,7 @@ export default { }, "team_roster_var_pop_order_by": { "player_steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -97455,7 +98046,7 @@ export default { }, "team_roster_var_samp_order_by": { "player_steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -97471,7 +98062,7 @@ export default { }, "team_roster_variance_order_by": { "player_steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -97479,7 +98070,7 @@ export default { }, "team_scrim_alerts": { "created_at": [ - 4493 + 4499 ], "elo_max": [ 40 @@ -97491,19 +98082,19 @@ export default { 5 ], "id": [ - 4993 + 4999 ], "last_notified_at": [ - 4493 + 4499 ], "regions": [ 80 ], "team": [ - 4446 + 4452 ], "team_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -97511,10 +98102,10 @@ export default { }, "team_scrim_alerts_aggregate": { "aggregate": [ - 4251 + 4257 ], "nodes": [ - 4249 + 4255 ], "__typename": [ 80 @@ -97522,13 +98113,13 @@ export default { }, "team_scrim_alerts_aggregate_fields": { "avg": [ - 4252 + 4258 ], "count": [ 40, { "columns": [ - 4263, + 4269, "[team_scrim_alerts_select_column!]" ], "distinct": [ @@ -97537,31 +98128,31 @@ export default { } ], "max": [ - 4257 + 4263 ], "min": [ - 4258 + 4264 ], "stddev": [ - 4265 + 4271 ], "stddev_pop": [ - 4266 + 4272 ], "stddev_samp": [ - 4267 + 4273 ], "sum": [ - 4270 + 4276 ], "var_pop": [ - 4273 + 4279 ], "var_samp": [ - 4274 + 4280 ], "variance": [ - 4275 + 4281 ], "__typename": [ 80 @@ -97580,16 +98171,16 @@ export default { }, "team_scrim_alerts_bool_exp": { "_and": [ - 4253 + 4259 ], "_not": [ - 4253 + 4259 ], "_or": [ - 4253 + 4259 ], "created_at": [ - 4494 + 4500 ], "elo_max": [ 41 @@ -97601,19 +98192,19 @@ export default { 6 ], "id": [ - 4995 + 5001 ], "last_notified_at": [ - 4494 + 4500 ], "regions": [ 81 ], "team": [ - 4457 + 4463 ], "team_id": [ - 4995 + 5001 ], "__typename": [ 80 @@ -97633,7 +98224,7 @@ export default { }, "team_scrim_alerts_insert_input": { "created_at": [ - 4493 + 4499 ], "elo_max": [ 40 @@ -97645,19 +98236,19 @@ export default { 5 ], "id": [ - 4993 + 4999 ], "last_notified_at": [ - 4493 + 4499 ], "regions": [ 80 ], "team": [ - 4466 + 4472 ], "team_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -97665,7 +98256,7 @@ export default { }, "team_scrim_alerts_max_fields": { "created_at": [ - 4493 + 4499 ], "elo_max": [ 40 @@ -97674,16 +98265,16 @@ export default { 40 ], "id": [ - 4993 + 4999 ], "last_notified_at": [ - 4493 + 4499 ], "regions": [ 80 ], "team_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -97691,7 +98282,7 @@ export default { }, "team_scrim_alerts_min_fields": { "created_at": [ - 4493 + 4499 ], "elo_max": [ 40 @@ -97700,16 +98291,16 @@ export default { 40 ], "id": [ - 4993 + 4999 ], "last_notified_at": [ - 4493 + 4499 ], "regions": [ 80 ], "team_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -97720,7 +98311,7 @@ export default { 40 ], "returning": [ - 4249 + 4255 ], "__typename": [ 80 @@ -97728,13 +98319,13 @@ export default { }, "team_scrim_alerts_on_conflict": { "constraint": [ - 4254 + 4260 ], "update_columns": [ - 4271 + 4277 ], "where": [ - 4253 + 4259 ], "__typename": [ 80 @@ -97742,31 +98333,31 @@ export default { }, "team_scrim_alerts_order_by": { "created_at": [ - 2946 + 2952 ], "elo_max": [ - 2946 + 2952 ], "elo_min": [ - 2946 + 2952 ], "enabled": [ - 2946 + 2952 ], "id": [ - 2946 + 2952 ], "last_notified_at": [ - 2946 + 2952 ], "regions": [ - 2946 + 2952 ], "team": [ - 4468 + 4474 ], "team_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -97774,7 +98365,7 @@ export default { }, "team_scrim_alerts_pk_columns_input": { "id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -97783,7 +98374,7 @@ export default { "team_scrim_alerts_select_column": {}, "team_scrim_alerts_set_input": { "created_at": [ - 4493 + 4499 ], "elo_max": [ 40 @@ -97795,16 +98386,16 @@ export default { 5 ], "id": [ - 4993 + 4999 ], "last_notified_at": [ - 4493 + 4499 ], "regions": [ 80 ], "team_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -97845,10 +98436,10 @@ export default { }, "team_scrim_alerts_stream_cursor_input": { "initial_value": [ - 4269 + 4275 ], "ordering": [ - 308 + 314 ], "__typename": [ 80 @@ -97856,7 +98447,7 @@ export default { }, "team_scrim_alerts_stream_cursor_value_input": { "created_at": [ - 4493 + 4499 ], "elo_max": [ 40 @@ -97868,16 +98459,16 @@ export default { 5 ], "id": [ - 4993 + 4999 ], "last_notified_at": [ - 4493 + 4499 ], "regions": [ 80 ], "team_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -97897,13 +98488,13 @@ export default { "team_scrim_alerts_update_column": {}, "team_scrim_alerts_updates": { "_inc": [ - 4255 + 4261 ], "_set": [ - 4264 + 4270 ], "where": [ - 4253 + 4259 ], "__typename": [ 80 @@ -97944,25 +98535,25 @@ export default { }, "team_scrim_availability": { "created_at": [ - 4493 + 4499 ], "ends_at": [ - 4493 + 4499 ], "id": [ - 4993 + 4999 ], "recurring_weekly": [ 5 ], "starts_at": [ - 4493 + 4499 ], "team": [ - 4446 + 4452 ], "team_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -97970,10 +98561,10 @@ export default { }, "team_scrim_availability_aggregate": { "aggregate": [ - 4282 + 4288 ], "nodes": [ - 4276 + 4282 ], "__typename": [ 80 @@ -97981,13 +98572,13 @@ export default { }, "team_scrim_availability_aggregate_bool_exp": { "bool_and": [ - 4279 + 4285 ], "bool_or": [ - 4280 + 4286 ], "count": [ - 4281 + 4287 ], "__typename": [ 80 @@ -97995,13 +98586,13 @@ export default { }, "team_scrim_availability_aggregate_bool_exp_bool_and": { "arguments": [ - 4297 + 4303 ], "distinct": [ 5 ], "filter": [ - 4285 + 4291 ], "predicate": [ 6 @@ -98012,13 +98603,13 @@ export default { }, "team_scrim_availability_aggregate_bool_exp_bool_or": { "arguments": [ - 4298 + 4304 ], "distinct": [ 5 ], "filter": [ - 4285 + 4291 ], "predicate": [ 6 @@ -98029,13 +98620,13 @@ export default { }, "team_scrim_availability_aggregate_bool_exp_count": { "arguments": [ - 4296 + 4302 ], "distinct": [ 5 ], "filter": [ - 4285 + 4291 ], "predicate": [ 41 @@ -98049,7 +98640,7 @@ export default { 40, { "columns": [ - 4296, + 4302, "[team_scrim_availability_select_column!]" ], "distinct": [ @@ -98058,10 +98649,10 @@ export default { } ], "max": [ - 4288 + 4294 ], "min": [ - 4290 + 4296 ], "__typename": [ 80 @@ -98069,13 +98660,13 @@ export default { }, "team_scrim_availability_aggregate_order_by": { "count": [ - 2946 + 2952 ], "max": [ - 4289 + 4295 ], "min": [ - 4291 + 4297 ], "__typename": [ 80 @@ -98083,10 +98674,10 @@ export default { }, "team_scrim_availability_arr_rel_insert_input": { "data": [ - 4287 + 4293 ], "on_conflict": [ - 4293 + 4299 ], "__typename": [ 80 @@ -98094,34 +98685,34 @@ export default { }, "team_scrim_availability_bool_exp": { "_and": [ - 4285 + 4291 ], "_not": [ - 4285 + 4291 ], "_or": [ - 4285 + 4291 ], "created_at": [ - 4494 + 4500 ], "ends_at": [ - 4494 + 4500 ], "id": [ - 4995 + 5001 ], "recurring_weekly": [ 6 ], "starts_at": [ - 4494 + 4500 ], "team": [ - 4457 + 4463 ], "team_id": [ - 4995 + 5001 ], "__typename": [ 80 @@ -98130,25 +98721,25 @@ export default { "team_scrim_availability_constraint": {}, "team_scrim_availability_insert_input": { "created_at": [ - 4493 + 4499 ], "ends_at": [ - 4493 + 4499 ], "id": [ - 4993 + 4999 ], "recurring_weekly": [ 5 ], "starts_at": [ - 4493 + 4499 ], "team": [ - 4466 + 4472 ], "team_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -98156,19 +98747,19 @@ export default { }, "team_scrim_availability_max_fields": { "created_at": [ - 4493 + 4499 ], "ends_at": [ - 4493 + 4499 ], "id": [ - 4993 + 4999 ], "starts_at": [ - 4493 + 4499 ], "team_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -98176,19 +98767,19 @@ export default { }, "team_scrim_availability_max_order_by": { "created_at": [ - 2946 + 2952 ], "ends_at": [ - 2946 + 2952 ], "id": [ - 2946 + 2952 ], "starts_at": [ - 2946 + 2952 ], "team_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -98196,19 +98787,19 @@ export default { }, "team_scrim_availability_min_fields": { "created_at": [ - 4493 + 4499 ], "ends_at": [ - 4493 + 4499 ], "id": [ - 4993 + 4999 ], "starts_at": [ - 4493 + 4499 ], "team_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -98216,19 +98807,19 @@ export default { }, "team_scrim_availability_min_order_by": { "created_at": [ - 2946 + 2952 ], "ends_at": [ - 2946 + 2952 ], "id": [ - 2946 + 2952 ], "starts_at": [ - 2946 + 2952 ], "team_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -98239,7 +98830,7 @@ export default { 40 ], "returning": [ - 4276 + 4282 ], "__typename": [ 80 @@ -98247,13 +98838,13 @@ export default { }, "team_scrim_availability_on_conflict": { "constraint": [ - 4286 + 4292 ], "update_columns": [ - 4302 + 4308 ], "where": [ - 4285 + 4291 ], "__typename": [ 80 @@ -98261,25 +98852,25 @@ export default { }, "team_scrim_availability_order_by": { "created_at": [ - 2946 + 2952 ], "ends_at": [ - 2946 + 2952 ], "id": [ - 2946 + 2952 ], "recurring_weekly": [ - 2946 + 2952 ], "starts_at": [ - 2946 + 2952 ], "team": [ - 4468 + 4474 ], "team_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -98287,7 +98878,7 @@ export default { }, "team_scrim_availability_pk_columns_input": { "id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -98298,22 +98889,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": [ - 4493 + 4499 ], "ends_at": [ - 4493 + 4499 ], "id": [ - 4993 + 4999 ], "recurring_weekly": [ 5 ], "starts_at": [ - 4493 + 4499 ], "team_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -98321,10 +98912,10 @@ export default { }, "team_scrim_availability_stream_cursor_input": { "initial_value": [ - 4301 + 4307 ], "ordering": [ - 308 + 314 ], "__typename": [ 80 @@ -98332,22 +98923,22 @@ export default { }, "team_scrim_availability_stream_cursor_value_input": { "created_at": [ - 4493 + 4499 ], "ends_at": [ - 4493 + 4499 ], "id": [ - 4993 + 4999 ], "recurring_weekly": [ 5 ], "starts_at": [ - 4493 + 4499 ], "team_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -98356,10 +98947,10 @@ export default { "team_scrim_availability_update_column": {}, "team_scrim_availability_updates": { "_set": [ - 4299 + 4305 ], "where": [ - 4285 + 4291 ], "__typename": [ 80 @@ -98367,31 +98958,31 @@ export default { }, "team_scrim_request_proposals": { "created_at": [ - 4493 + 4499 ], "id": [ - 4993 + 4999 ], "proposed_by": [ - 3904 + 3910 ], "proposed_by_steam_id": [ - 252 + 258 ], "proposed_by_team": [ - 4446 + 4452 ], "proposed_by_team_id": [ - 4993 + 4999 ], "proposed_scheduled_at": [ - 4493 + 4499 ], "request": [ - 4345 + 4351 ], "request_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -98399,10 +98990,10 @@ export default { }, "team_scrim_request_proposals_aggregate": { "aggregate": [ - 4308 + 4314 ], "nodes": [ - 4304 + 4310 ], "__typename": [ 80 @@ -98410,7 +99001,7 @@ export default { }, "team_scrim_request_proposals_aggregate_bool_exp": { "count": [ - 4307 + 4313 ], "__typename": [ 80 @@ -98418,13 +99009,13 @@ export default { }, "team_scrim_request_proposals_aggregate_bool_exp_count": { "arguments": [ - 4325 + 4331 ], "distinct": [ 5 ], "filter": [ - 4313 + 4319 ], "predicate": [ 41 @@ -98435,13 +99026,13 @@ export default { }, "team_scrim_request_proposals_aggregate_fields": { "avg": [ - 4311 + 4317 ], "count": [ 40, { "columns": [ - 4325, + 4331, "[team_scrim_request_proposals_select_column!]" ], "distinct": [ @@ -98450,31 +99041,31 @@ export default { } ], "max": [ - 4317 + 4323 ], "min": [ - 4319 + 4325 ], "stddev": [ - 4327 + 4333 ], "stddev_pop": [ - 4329 + 4335 ], "stddev_samp": [ - 4331 + 4337 ], "sum": [ - 4335 + 4341 ], "var_pop": [ - 4339 + 4345 ], "var_samp": [ - 4341 + 4347 ], "variance": [ - 4343 + 4349 ], "__typename": [ 80 @@ -98482,37 +99073,37 @@ export default { }, "team_scrim_request_proposals_aggregate_order_by": { "avg": [ - 4312 + 4318 ], "count": [ - 2946 + 2952 ], "max": [ - 4318 + 4324 ], "min": [ - 4320 + 4326 ], "stddev": [ - 4328 + 4334 ], "stddev_pop": [ - 4330 + 4336 ], "stddev_samp": [ - 4332 + 4338 ], "sum": [ - 4336 + 4342 ], "var_pop": [ - 4340 + 4346 ], "var_samp": [ - 4342 + 4348 ], "variance": [ - 4344 + 4350 ], "__typename": [ 80 @@ -98520,10 +99111,10 @@ export default { }, "team_scrim_request_proposals_arr_rel_insert_input": { "data": [ - 4316 + 4322 ], "on_conflict": [ - 4322 + 4328 ], "__typename": [ 80 @@ -98539,7 +99130,7 @@ export default { }, "team_scrim_request_proposals_avg_order_by": { "proposed_by_steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -98547,40 +99138,40 @@ export default { }, "team_scrim_request_proposals_bool_exp": { "_and": [ - 4313 + 4319 ], "_not": [ - 4313 + 4319 ], "_or": [ - 4313 + 4319 ], "created_at": [ - 4494 + 4500 ], "id": [ - 4995 + 5001 ], "proposed_by": [ - 3908 + 3914 ], "proposed_by_steam_id": [ - 254 + 260 ], "proposed_by_team": [ - 4457 + 4463 ], "proposed_by_team_id": [ - 4995 + 5001 ], "proposed_scheduled_at": [ - 4494 + 4500 ], "request": [ - 4356 + 4362 ], "request_id": [ - 4995 + 5001 ], "__typename": [ 80 @@ -98589,7 +99180,7 @@ export default { "team_scrim_request_proposals_constraint": {}, "team_scrim_request_proposals_inc_input": { "proposed_by_steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -98597,31 +99188,31 @@ export default { }, "team_scrim_request_proposals_insert_input": { "created_at": [ - 4493 + 4499 ], "id": [ - 4993 + 4999 ], "proposed_by": [ - 3915 + 3921 ], "proposed_by_steam_id": [ - 252 + 258 ], "proposed_by_team": [ - 4466 + 4472 ], "proposed_by_team_id": [ - 4993 + 4999 ], "proposed_scheduled_at": [ - 4493 + 4499 ], "request": [ - 4365 + 4371 ], "request_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -98629,22 +99220,22 @@ export default { }, "team_scrim_request_proposals_max_fields": { "created_at": [ - 4493 + 4499 ], "id": [ - 4993 + 4999 ], "proposed_by_steam_id": [ - 252 + 258 ], "proposed_by_team_id": [ - 4993 + 4999 ], "proposed_scheduled_at": [ - 4493 + 4499 ], "request_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -98652,22 +99243,22 @@ export default { }, "team_scrim_request_proposals_max_order_by": { "created_at": [ - 2946 + 2952 ], "id": [ - 2946 + 2952 ], "proposed_by_steam_id": [ - 2946 + 2952 ], "proposed_by_team_id": [ - 2946 + 2952 ], "proposed_scheduled_at": [ - 2946 + 2952 ], "request_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -98675,22 +99266,22 @@ export default { }, "team_scrim_request_proposals_min_fields": { "created_at": [ - 4493 + 4499 ], "id": [ - 4993 + 4999 ], "proposed_by_steam_id": [ - 252 + 258 ], "proposed_by_team_id": [ - 4993 + 4999 ], "proposed_scheduled_at": [ - 4493 + 4499 ], "request_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -98698,22 +99289,22 @@ export default { }, "team_scrim_request_proposals_min_order_by": { "created_at": [ - 2946 + 2952 ], "id": [ - 2946 + 2952 ], "proposed_by_steam_id": [ - 2946 + 2952 ], "proposed_by_team_id": [ - 2946 + 2952 ], "proposed_scheduled_at": [ - 2946 + 2952 ], "request_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -98724,7 +99315,7 @@ export default { 40 ], "returning": [ - 4304 + 4310 ], "__typename": [ 80 @@ -98732,13 +99323,13 @@ export default { }, "team_scrim_request_proposals_on_conflict": { "constraint": [ - 4314 + 4320 ], "update_columns": [ - 4337 + 4343 ], "where": [ - 4313 + 4319 ], "__typename": [ 80 @@ -98746,31 +99337,31 @@ export default { }, "team_scrim_request_proposals_order_by": { "created_at": [ - 2946 + 2952 ], "id": [ - 2946 + 2952 ], "proposed_by": [ - 3917 + 3923 ], "proposed_by_steam_id": [ - 2946 + 2952 ], "proposed_by_team": [ - 4468 + 4474 ], "proposed_by_team_id": [ - 2946 + 2952 ], "proposed_scheduled_at": [ - 2946 + 2952 ], "request": [ - 4367 + 4373 ], "request_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -98778,7 +99369,7 @@ export default { }, "team_scrim_request_proposals_pk_columns_input": { "id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -98787,22 +99378,22 @@ export default { "team_scrim_request_proposals_select_column": {}, "team_scrim_request_proposals_set_input": { "created_at": [ - 4493 + 4499 ], "id": [ - 4993 + 4999 ], "proposed_by_steam_id": [ - 252 + 258 ], "proposed_by_team_id": [ - 4993 + 4999 ], "proposed_scheduled_at": [ - 4493 + 4499 ], "request_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -98818,7 +99409,7 @@ export default { }, "team_scrim_request_proposals_stddev_order_by": { "proposed_by_steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -98834,7 +99425,7 @@ export default { }, "team_scrim_request_proposals_stddev_pop_order_by": { "proposed_by_steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -98850,7 +99441,7 @@ export default { }, "team_scrim_request_proposals_stddev_samp_order_by": { "proposed_by_steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -98858,10 +99449,10 @@ export default { }, "team_scrim_request_proposals_stream_cursor_input": { "initial_value": [ - 4334 + 4340 ], "ordering": [ - 308 + 314 ], "__typename": [ 80 @@ -98869,22 +99460,22 @@ export default { }, "team_scrim_request_proposals_stream_cursor_value_input": { "created_at": [ - 4493 + 4499 ], "id": [ - 4993 + 4999 ], "proposed_by_steam_id": [ - 252 + 258 ], "proposed_by_team_id": [ - 4993 + 4999 ], "proposed_scheduled_at": [ - 4493 + 4499 ], "request_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -98892,7 +99483,7 @@ export default { }, "team_scrim_request_proposals_sum_fields": { "proposed_by_steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -98900,7 +99491,7 @@ export default { }, "team_scrim_request_proposals_sum_order_by": { "proposed_by_steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -98909,13 +99500,13 @@ export default { "team_scrim_request_proposals_update_column": {}, "team_scrim_request_proposals_updates": { "_inc": [ - 4315 + 4321 ], "_set": [ - 4326 + 4332 ], "where": [ - 4313 + 4319 ], "__typename": [ 80 @@ -98931,7 +99522,7 @@ export default { }, "team_scrim_request_proposals_var_pop_order_by": { "proposed_by_steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -98947,7 +99538,7 @@ export default { }, "team_scrim_request_proposals_var_samp_order_by": { "proposed_by_steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -98963,7 +99554,7 @@ export default { }, "team_scrim_request_proposals_variance_order_by": { "proposed_by_steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -98974,55 +99565,55 @@ export default { 5 ], "awaiting_team": [ - 4446 + 4452 ], "awaiting_team_id": [ - 4993 + 4999 ], "canceled_by_team_id": [ - 4993 + 4999 ], "canceled_late": [ 5 ], "created_at": [ - 4493 + 4499 ], "expires_at": [ - 4493 + 4499 ], "from_team": [ - 4446 + 4452 ], "from_team_checked_in": [ 5 ], "from_team_id": [ - 4993 + 4999 ], "id": [ - 4993 + 4999 ], "match": [ - 2761 + 2767 ], "match_id": [ - 4993 + 4999 ], "match_options": [ - 2641 + 2647 ], "match_options_id": [ - 4993 + 4999 ], "match_outcome": [ 80 ], "proposals": [ - 4304, + 4310, { "distinct_on": [ - 4325, + 4331, "[team_scrim_request_proposals_select_column!]" ], "limit": [ @@ -99032,19 +99623,19 @@ export default { 40 ], "order_by": [ - 4323, + 4329, "[team_scrim_request_proposals_order_by!]" ], "where": [ - 4313 + 4319 ] } ], "proposals_aggregate": [ - 4305, + 4311, { "distinct_on": [ - 4325, + 4331, "[team_scrim_request_proposals_select_column!]" ], "limit": [ @@ -99054,40 +99645,40 @@ export default { 40 ], "order_by": [ - 4323, + 4329, "[team_scrim_request_proposals_order_by!]" ], "where": [ - 4313 + 4319 ] } ], "proposed_scheduled_at": [ - 4493 + 4499 ], "region": [ 80 ], "requested_by": [ - 3904 + 3910 ], "requested_by_steam_id": [ - 252 + 258 ], "responded_at": [ - 4493 + 4499 ], "status": [ - 1146 + 1152 ], "to_team": [ - 4446 + 4452 ], "to_team_checked_in": [ 5 ], "to_team_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -99095,10 +99686,10 @@ export default { }, "team_scrim_requests_aggregate": { "aggregate": [ - 4351 + 4357 ], "nodes": [ - 4345 + 4351 ], "__typename": [ 80 @@ -99106,13 +99697,13 @@ export default { }, "team_scrim_requests_aggregate_bool_exp": { "bool_and": [ - 4348 + 4354 ], "bool_or": [ - 4349 + 4355 ], "count": [ - 4350 + 4356 ], "__typename": [ 80 @@ -99120,13 +99711,13 @@ export default { }, "team_scrim_requests_aggregate_bool_exp_bool_and": { "arguments": [ - 4370 + 4376 ], "distinct": [ 5 ], "filter": [ - 4356 + 4362 ], "predicate": [ 6 @@ -99137,13 +99728,13 @@ export default { }, "team_scrim_requests_aggregate_bool_exp_bool_or": { "arguments": [ - 4371 + 4377 ], "distinct": [ 5 ], "filter": [ - 4356 + 4362 ], "predicate": [ 6 @@ -99154,13 +99745,13 @@ export default { }, "team_scrim_requests_aggregate_bool_exp_count": { "arguments": [ - 4369 + 4375 ], "distinct": [ 5 ], "filter": [ - 4356 + 4362 ], "predicate": [ 41 @@ -99171,13 +99762,13 @@ export default { }, "team_scrim_requests_aggregate_fields": { "avg": [ - 4354 + 4360 ], "count": [ 40, { "columns": [ - 4369, + 4375, "[team_scrim_requests_select_column!]" ], "distinct": [ @@ -99186,31 +99777,31 @@ export default { } ], "max": [ - 4360 + 4366 ], "min": [ - 4362 + 4368 ], "stddev": [ - 4373 + 4379 ], "stddev_pop": [ - 4375 + 4381 ], "stddev_samp": [ - 4377 + 4383 ], "sum": [ - 4381 + 4387 ], "var_pop": [ - 4385 + 4391 ], "var_samp": [ - 4387 + 4393 ], "variance": [ - 4389 + 4395 ], "__typename": [ 80 @@ -99218,37 +99809,37 @@ export default { }, "team_scrim_requests_aggregate_order_by": { "avg": [ - 4355 + 4361 ], "count": [ - 2946 + 2952 ], "max": [ - 4361 + 4367 ], "min": [ - 4363 + 4369 ], "stddev": [ - 4374 + 4380 ], "stddev_pop": [ - 4376 + 4382 ], "stddev_samp": [ - 4378 + 4384 ], "sum": [ - 4382 + 4388 ], "var_pop": [ - 4386 + 4392 ], "var_samp": [ - 4388 + 4394 ], "variance": [ - 4390 + 4396 ], "__typename": [ 80 @@ -99256,10 +99847,10 @@ export default { }, "team_scrim_requests_arr_rel_insert_input": { "data": [ - 4359 + 4365 ], "on_conflict": [ - 4366 + 4372 ], "__typename": [ 80 @@ -99275,7 +99866,7 @@ export default { }, "team_scrim_requests_avg_order_by": { "requested_by_steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -99283,94 +99874,94 @@ export default { }, "team_scrim_requests_bool_exp": { "_and": [ - 4356 + 4362 ], "_not": [ - 4356 + 4362 ], "_or": [ - 4356 + 4362 ], "auto_generated": [ 6 ], "awaiting_team": [ - 4457 + 4463 ], "awaiting_team_id": [ - 4995 + 5001 ], "canceled_by_team_id": [ - 4995 + 5001 ], "canceled_late": [ 6 ], "created_at": [ - 4494 + 4500 ], "expires_at": [ - 4494 + 4500 ], "from_team": [ - 4457 + 4463 ], "from_team_checked_in": [ 6 ], "from_team_id": [ - 4995 + 5001 ], "id": [ - 4995 + 5001 ], "match": [ - 2770 + 2776 ], "match_id": [ - 4995 + 5001 ], "match_options": [ - 2645 + 2651 ], "match_options_id": [ - 4995 + 5001 ], "match_outcome": [ 82 ], "proposals": [ - 4313 + 4319 ], "proposals_aggregate": [ - 4306 + 4312 ], "proposed_scheduled_at": [ - 4494 + 4500 ], "region": [ 82 ], "requested_by": [ - 3908 + 3914 ], "requested_by_steam_id": [ - 254 + 260 ], "responded_at": [ - 4494 + 4500 ], "status": [ - 1147 + 1153 ], "to_team": [ - 4457 + 4463 ], "to_team_checked_in": [ 6 ], "to_team_id": [ - 4995 + 5001 ], "__typename": [ 80 @@ -99379,7 +99970,7 @@ export default { "team_scrim_requests_constraint": {}, "team_scrim_requests_inc_input": { "requested_by_steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -99390,79 +99981,79 @@ export default { 5 ], "awaiting_team": [ - 4466 + 4472 ], "awaiting_team_id": [ - 4993 + 4999 ], "canceled_by_team_id": [ - 4993 + 4999 ], "canceled_late": [ 5 ], "created_at": [ - 4493 + 4499 ], "expires_at": [ - 4493 + 4499 ], "from_team": [ - 4466 + 4472 ], "from_team_checked_in": [ 5 ], "from_team_id": [ - 4993 + 4999 ], "id": [ - 4993 + 4999 ], "match": [ - 2779 + 2785 ], "match_id": [ - 4993 + 4999 ], "match_options": [ - 2652 + 2658 ], "match_options_id": [ - 4993 + 4999 ], "match_outcome": [ 80 ], "proposals": [ - 4310 + 4316 ], "proposed_scheduled_at": [ - 4493 + 4499 ], "region": [ 80 ], "requested_by": [ - 3915 + 3921 ], "requested_by_steam_id": [ - 252 + 258 ], "responded_at": [ - 4493 + 4499 ], "status": [ - 1146 + 1152 ], "to_team": [ - 4466 + 4472 ], "to_team_checked_in": [ 5 ], "to_team_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -99470,46 +100061,46 @@ export default { }, "team_scrim_requests_max_fields": { "awaiting_team_id": [ - 4993 + 4999 ], "canceled_by_team_id": [ - 4993 + 4999 ], "created_at": [ - 4493 + 4499 ], "expires_at": [ - 4493 + 4499 ], "from_team_id": [ - 4993 + 4999 ], "id": [ - 4993 + 4999 ], "match_id": [ - 4993 + 4999 ], "match_options_id": [ - 4993 + 4999 ], "match_outcome": [ 80 ], "proposed_scheduled_at": [ - 4493 + 4499 ], "region": [ 80 ], "requested_by_steam_id": [ - 252 + 258 ], "responded_at": [ - 4493 + 4499 ], "to_team_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -99517,46 +100108,46 @@ export default { }, "team_scrim_requests_max_order_by": { "awaiting_team_id": [ - 2946 + 2952 ], "canceled_by_team_id": [ - 2946 + 2952 ], "created_at": [ - 2946 + 2952 ], "expires_at": [ - 2946 + 2952 ], "from_team_id": [ - 2946 + 2952 ], "id": [ - 2946 + 2952 ], "match_id": [ - 2946 + 2952 ], "match_options_id": [ - 2946 + 2952 ], "match_outcome": [ - 2946 + 2952 ], "proposed_scheduled_at": [ - 2946 + 2952 ], "region": [ - 2946 + 2952 ], "requested_by_steam_id": [ - 2946 + 2952 ], "responded_at": [ - 2946 + 2952 ], "to_team_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -99564,46 +100155,46 @@ export default { }, "team_scrim_requests_min_fields": { "awaiting_team_id": [ - 4993 + 4999 ], "canceled_by_team_id": [ - 4993 + 4999 ], "created_at": [ - 4493 + 4499 ], "expires_at": [ - 4493 + 4499 ], "from_team_id": [ - 4993 + 4999 ], "id": [ - 4993 + 4999 ], "match_id": [ - 4993 + 4999 ], "match_options_id": [ - 4993 + 4999 ], "match_outcome": [ 80 ], "proposed_scheduled_at": [ - 4493 + 4499 ], "region": [ 80 ], "requested_by_steam_id": [ - 252 + 258 ], "responded_at": [ - 4493 + 4499 ], "to_team_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -99611,46 +100202,46 @@ export default { }, "team_scrim_requests_min_order_by": { "awaiting_team_id": [ - 2946 + 2952 ], "canceled_by_team_id": [ - 2946 + 2952 ], "created_at": [ - 2946 + 2952 ], "expires_at": [ - 2946 + 2952 ], "from_team_id": [ - 2946 + 2952 ], "id": [ - 2946 + 2952 ], "match_id": [ - 2946 + 2952 ], "match_options_id": [ - 2946 + 2952 ], "match_outcome": [ - 2946 + 2952 ], "proposed_scheduled_at": [ - 2946 + 2952 ], "region": [ - 2946 + 2952 ], "requested_by_steam_id": [ - 2946 + 2952 ], "responded_at": [ - 2946 + 2952 ], "to_team_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -99661,7 +100252,7 @@ export default { 40 ], "returning": [ - 4345 + 4351 ], "__typename": [ 80 @@ -99669,10 +100260,10 @@ export default { }, "team_scrim_requests_obj_rel_insert_input": { "data": [ - 4359 + 4365 ], "on_conflict": [ - 4366 + 4372 ], "__typename": [ 80 @@ -99680,13 +100271,13 @@ export default { }, "team_scrim_requests_on_conflict": { "constraint": [ - 4357 + 4363 ], "update_columns": [ - 4383 + 4389 ], "where": [ - 4356 + 4362 ], "__typename": [ 80 @@ -99694,82 +100285,82 @@ export default { }, "team_scrim_requests_order_by": { "auto_generated": [ - 2946 + 2952 ], "awaiting_team": [ - 4468 + 4474 ], "awaiting_team_id": [ - 2946 + 2952 ], "canceled_by_team_id": [ - 2946 + 2952 ], "canceled_late": [ - 2946 + 2952 ], "created_at": [ - 2946 + 2952 ], "expires_at": [ - 2946 + 2952 ], "from_team": [ - 4468 + 4474 ], "from_team_checked_in": [ - 2946 + 2952 ], "from_team_id": [ - 2946 + 2952 ], "id": [ - 2946 + 2952 ], "match": [ - 2781 + 2787 ], "match_id": [ - 2946 + 2952 ], "match_options": [ - 2654 + 2660 ], "match_options_id": [ - 2946 + 2952 ], "match_outcome": [ - 2946 + 2952 ], "proposals_aggregate": [ - 4309 + 4315 ], "proposed_scheduled_at": [ - 2946 + 2952 ], "region": [ - 2946 + 2952 ], "requested_by": [ - 3917 + 3923 ], "requested_by_steam_id": [ - 2946 + 2952 ], "responded_at": [ - 2946 + 2952 ], "status": [ - 2946 + 2952 ], "to_team": [ - 4468 + 4474 ], "to_team_checked_in": [ - 2946 + 2952 ], "to_team_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -99777,7 +100368,7 @@ export default { }, "team_scrim_requests_pk_columns_input": { "id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -99791,58 +100382,58 @@ export default { 5 ], "awaiting_team_id": [ - 4993 + 4999 ], "canceled_by_team_id": [ - 4993 + 4999 ], "canceled_late": [ 5 ], "created_at": [ - 4493 + 4499 ], "expires_at": [ - 4493 + 4499 ], "from_team_checked_in": [ 5 ], "from_team_id": [ - 4993 + 4999 ], "id": [ - 4993 + 4999 ], "match_id": [ - 4993 + 4999 ], "match_options_id": [ - 4993 + 4999 ], "match_outcome": [ 80 ], "proposed_scheduled_at": [ - 4493 + 4499 ], "region": [ 80 ], "requested_by_steam_id": [ - 252 + 258 ], "responded_at": [ - 4493 + 4499 ], "status": [ - 1146 + 1152 ], "to_team_checked_in": [ 5 ], "to_team_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -99858,7 +100449,7 @@ export default { }, "team_scrim_requests_stddev_order_by": { "requested_by_steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -99874,7 +100465,7 @@ export default { }, "team_scrim_requests_stddev_pop_order_by": { "requested_by_steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -99890,7 +100481,7 @@ export default { }, "team_scrim_requests_stddev_samp_order_by": { "requested_by_steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -99898,10 +100489,10 @@ export default { }, "team_scrim_requests_stream_cursor_input": { "initial_value": [ - 4380 + 4386 ], "ordering": [ - 308 + 314 ], "__typename": [ 80 @@ -99912,58 +100503,58 @@ export default { 5 ], "awaiting_team_id": [ - 4993 + 4999 ], "canceled_by_team_id": [ - 4993 + 4999 ], "canceled_late": [ 5 ], "created_at": [ - 4493 + 4499 ], "expires_at": [ - 4493 + 4499 ], "from_team_checked_in": [ 5 ], "from_team_id": [ - 4993 + 4999 ], "id": [ - 4993 + 4999 ], "match_id": [ - 4993 + 4999 ], "match_options_id": [ - 4993 + 4999 ], "match_outcome": [ 80 ], "proposed_scheduled_at": [ - 4493 + 4499 ], "region": [ 80 ], "requested_by_steam_id": [ - 252 + 258 ], "responded_at": [ - 4493 + 4499 ], "status": [ - 1146 + 1152 ], "to_team_checked_in": [ 5 ], "to_team_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -99971,7 +100562,7 @@ export default { }, "team_scrim_requests_sum_fields": { "requested_by_steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -99979,7 +100570,7 @@ export default { }, "team_scrim_requests_sum_order_by": { "requested_by_steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -99988,13 +100579,13 @@ export default { "team_scrim_requests_update_column": {}, "team_scrim_requests_updates": { "_inc": [ - 4358 + 4364 ], "_set": [ - 4372 + 4378 ], "where": [ - 4356 + 4362 ], "__typename": [ 80 @@ -100010,7 +100601,7 @@ export default { }, "team_scrim_requests_var_pop_order_by": { "requested_by_steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -100026,7 +100617,7 @@ export default { }, "team_scrim_requests_var_samp_order_by": { "requested_by_steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -100042,7 +100633,7 @@ export default { }, "team_scrim_requests_variance_order_by": { "requested_by_steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -100053,7 +100644,7 @@ export default { 5 ], "created_at": [ - 4493 + 4499 ], "elo_max": [ 40 @@ -100065,10 +100656,10 @@ export default { 5 ], "id": [ - 4993 + 4999 ], "map_ids": [ - 4993 + 4999 ], "notes": [ 80 @@ -100077,13 +100668,13 @@ export default { 80 ], "team": [ - 4446 + 4452 ], "team_id": [ - 4993 + 4999 ], "updated_at": [ - 4493 + 4499 ], "__typename": [ 80 @@ -100091,10 +100682,10 @@ export default { }, "team_scrim_settings_aggregate": { "aggregate": [ - 4393 + 4399 ], "nodes": [ - 4391 + 4397 ], "__typename": [ 80 @@ -100102,13 +100693,13 @@ export default { }, "team_scrim_settings_aggregate_fields": { "avg": [ - 4394 + 4400 ], "count": [ 40, { "columns": [ - 4406, + 4412, "[team_scrim_settings_select_column!]" ], "distinct": [ @@ -100117,31 +100708,31 @@ export default { } ], "max": [ - 4399 + 4405 ], "min": [ - 4400 + 4406 ], "stddev": [ - 4408 + 4414 ], "stddev_pop": [ - 4409 + 4415 ], "stddev_samp": [ - 4410 + 4416 ], "sum": [ - 4413 + 4419 ], "var_pop": [ - 4416 + 4422 ], "var_samp": [ - 4417 + 4423 ], "variance": [ - 4418 + 4424 ], "__typename": [ 80 @@ -100160,19 +100751,19 @@ export default { }, "team_scrim_settings_bool_exp": { "_and": [ - 4395 + 4401 ], "_not": [ - 4395 + 4401 ], "_or": [ - 4395 + 4401 ], "allow_outside_availability": [ 6 ], "created_at": [ - 4494 + 4500 ], "elo_max": [ 41 @@ -100184,10 +100775,10 @@ export default { 6 ], "id": [ - 4995 + 5001 ], "map_ids": [ - 4994 + 5000 ], "notes": [ 82 @@ -100196,13 +100787,13 @@ export default { 81 ], "team": [ - 4457 + 4463 ], "team_id": [ - 4995 + 5001 ], "updated_at": [ - 4494 + 4500 ], "__typename": [ 80 @@ -100225,7 +100816,7 @@ export default { 5 ], "created_at": [ - 4493 + 4499 ], "elo_max": [ 40 @@ -100237,10 +100828,10 @@ export default { 5 ], "id": [ - 4993 + 4999 ], "map_ids": [ - 4993 + 4999 ], "notes": [ 80 @@ -100249,13 +100840,13 @@ export default { 80 ], "team": [ - 4466 + 4472 ], "team_id": [ - 4993 + 4999 ], "updated_at": [ - 4493 + 4499 ], "__typename": [ 80 @@ -100263,7 +100854,7 @@ export default { }, "team_scrim_settings_max_fields": { "created_at": [ - 4493 + 4499 ], "elo_max": [ 40 @@ -100272,10 +100863,10 @@ export default { 40 ], "id": [ - 4993 + 4999 ], "map_ids": [ - 4993 + 4999 ], "notes": [ 80 @@ -100284,10 +100875,10 @@ export default { 80 ], "team_id": [ - 4993 + 4999 ], "updated_at": [ - 4493 + 4499 ], "__typename": [ 80 @@ -100295,7 +100886,7 @@ export default { }, "team_scrim_settings_min_fields": { "created_at": [ - 4493 + 4499 ], "elo_max": [ 40 @@ -100304,10 +100895,10 @@ export default { 40 ], "id": [ - 4993 + 4999 ], "map_ids": [ - 4993 + 4999 ], "notes": [ 80 @@ -100316,10 +100907,10 @@ export default { 80 ], "team_id": [ - 4993 + 4999 ], "updated_at": [ - 4493 + 4499 ], "__typename": [ 80 @@ -100330,7 +100921,7 @@ export default { 40 ], "returning": [ - 4391 + 4397 ], "__typename": [ 80 @@ -100338,10 +100929,10 @@ export default { }, "team_scrim_settings_obj_rel_insert_input": { "data": [ - 4398 + 4404 ], "on_conflict": [ - 4403 + 4409 ], "__typename": [ 80 @@ -100349,13 +100940,13 @@ export default { }, "team_scrim_settings_on_conflict": { "constraint": [ - 4396 + 4402 ], "update_columns": [ - 4414 + 4420 ], "where": [ - 4395 + 4401 ], "__typename": [ 80 @@ -100363,40 +100954,40 @@ export default { }, "team_scrim_settings_order_by": { "allow_outside_availability": [ - 2946 + 2952 ], "created_at": [ - 2946 + 2952 ], "elo_max": [ - 2946 + 2952 ], "elo_min": [ - 2946 + 2952 ], "enabled": [ - 2946 + 2952 ], "id": [ - 2946 + 2952 ], "map_ids": [ - 2946 + 2952 ], "notes": [ - 2946 + 2952 ], "regions": [ - 2946 + 2952 ], "team": [ - 4468 + 4474 ], "team_id": [ - 2946 + 2952 ], "updated_at": [ - 2946 + 2952 ], "__typename": [ 80 @@ -100404,7 +100995,7 @@ export default { }, "team_scrim_settings_pk_columns_input": { "id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -100416,7 +101007,7 @@ export default { 5 ], "created_at": [ - 4493 + 4499 ], "elo_max": [ 40 @@ -100428,10 +101019,10 @@ export default { 5 ], "id": [ - 4993 + 4999 ], "map_ids": [ - 4993 + 4999 ], "notes": [ 80 @@ -100440,10 +101031,10 @@ export default { 80 ], "team_id": [ - 4993 + 4999 ], "updated_at": [ - 4493 + 4499 ], "__typename": [ 80 @@ -100484,10 +101075,10 @@ export default { }, "team_scrim_settings_stream_cursor_input": { "initial_value": [ - 4412 + 4418 ], "ordering": [ - 308 + 314 ], "__typename": [ 80 @@ -100498,7 +101089,7 @@ export default { 5 ], "created_at": [ - 4493 + 4499 ], "elo_max": [ 40 @@ -100510,10 +101101,10 @@ export default { 5 ], "id": [ - 4993 + 4999 ], "map_ids": [ - 4993 + 4999 ], "notes": [ 80 @@ -100522,10 +101113,10 @@ export default { 80 ], "team_id": [ - 4993 + 4999 ], "updated_at": [ - 4493 + 4499 ], "__typename": [ 80 @@ -100545,13 +101136,13 @@ export default { "team_scrim_settings_update_column": {}, "team_scrim_settings_updates": { "_inc": [ - 4397 + 4403 ], "_set": [ - 4407 + 4413 ], "where": [ - 4395 + 4401 ], "__typename": [ 80 @@ -100592,19 +101183,19 @@ export default { }, "team_suggestions": { "created_at": [ - 4493 + 4499 ], "group_hash": [ 80 ], "id": [ - 4993 + 4999 ], "last_notified_at": [ - 4493 + 4499 ], "member_steam_ids": [ - 252 + 258 ], "status": [ 80 @@ -100618,10 +101209,10 @@ export default { }, "team_suggestions_aggregate": { "aggregate": [ - 4421 + 4427 ], "nodes": [ - 4419 + 4425 ], "__typename": [ 80 @@ -100629,13 +101220,13 @@ export default { }, "team_suggestions_aggregate_fields": { "avg": [ - 4422 + 4428 ], "count": [ 40, { "columns": [ - 4433, + 4439, "[team_suggestions_select_column!]" ], "distinct": [ @@ -100644,31 +101235,31 @@ export default { } ], "max": [ - 4427 + 4433 ], "min": [ - 4428 + 4434 ], "stddev": [ - 4435 + 4441 ], "stddev_pop": [ - 4436 + 4442 ], "stddev_samp": [ - 4437 + 4443 ], "sum": [ - 4440 + 4446 ], "var_pop": [ - 4443 + 4449 ], "var_samp": [ - 4444 + 4450 ], "variance": [ - 4445 + 4451 ], "__typename": [ 80 @@ -100684,28 +101275,28 @@ export default { }, "team_suggestions_bool_exp": { "_and": [ - 4423 + 4429 ], "_not": [ - 4423 + 4429 ], "_or": [ - 4423 + 4429 ], "created_at": [ - 4494 + 4500 ], "group_hash": [ 82 ], "id": [ - 4995 + 5001 ], "last_notified_at": [ - 4494 + 4500 ], "member_steam_ids": [ - 253 + 259 ], "status": [ 82 @@ -100728,19 +101319,19 @@ export default { }, "team_suggestions_insert_input": { "created_at": [ - 4493 + 4499 ], "group_hash": [ 80 ], "id": [ - 4993 + 4999 ], "last_notified_at": [ - 4493 + 4499 ], "member_steam_ids": [ - 252 + 258 ], "status": [ 80 @@ -100754,19 +101345,19 @@ export default { }, "team_suggestions_max_fields": { "created_at": [ - 4493 + 4499 ], "group_hash": [ 80 ], "id": [ - 4993 + 4999 ], "last_notified_at": [ - 4493 + 4499 ], "member_steam_ids": [ - 252 + 258 ], "status": [ 80 @@ -100780,19 +101371,19 @@ export default { }, "team_suggestions_min_fields": { "created_at": [ - 4493 + 4499 ], "group_hash": [ 80 ], "id": [ - 4993 + 4999 ], "last_notified_at": [ - 4493 + 4499 ], "member_steam_ids": [ - 252 + 258 ], "status": [ 80 @@ -100809,7 +101400,7 @@ export default { 40 ], "returning": [ - 4419 + 4425 ], "__typename": [ 80 @@ -100817,13 +101408,13 @@ export default { }, "team_suggestions_on_conflict": { "constraint": [ - 4424 + 4430 ], "update_columns": [ - 4441 + 4447 ], "where": [ - 4423 + 4429 ], "__typename": [ 80 @@ -100831,25 +101422,25 @@ export default { }, "team_suggestions_order_by": { "created_at": [ - 2946 + 2952 ], "group_hash": [ - 2946 + 2952 ], "id": [ - 2946 + 2952 ], "last_notified_at": [ - 2946 + 2952 ], "member_steam_ids": [ - 2946 + 2952 ], "status": [ - 2946 + 2952 ], "together_count": [ - 2946 + 2952 ], "__typename": [ 80 @@ -100857,7 +101448,7 @@ export default { }, "team_suggestions_pk_columns_input": { "id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -100866,19 +101457,19 @@ export default { "team_suggestions_select_column": {}, "team_suggestions_set_input": { "created_at": [ - 4493 + 4499 ], "group_hash": [ 80 ], "id": [ - 4993 + 4999 ], "last_notified_at": [ - 4493 + 4499 ], "member_steam_ids": [ - 252 + 258 ], "status": [ 80 @@ -100916,10 +101507,10 @@ export default { }, "team_suggestions_stream_cursor_input": { "initial_value": [ - 4439 + 4445 ], "ordering": [ - 308 + 314 ], "__typename": [ 80 @@ -100927,19 +101518,19 @@ export default { }, "team_suggestions_stream_cursor_value_input": { "created_at": [ - 4493 + 4499 ], "group_hash": [ 80 ], "id": [ - 4993 + 4999 ], "last_notified_at": [ - 4493 + 4499 ], "member_steam_ids": [ - 252 + 258 ], "status": [ 80 @@ -100962,13 +101553,13 @@ export default { "team_suggestions_update_column": {}, "team_suggestions_updates": { "_inc": [ - 4425 + 4431 ], "_set": [ - 4434 + 4440 ], "where": [ - 4423 + 4429 ], "__typename": [ 80 @@ -101003,10 +101594,10 @@ export default { 80 ], "awards": [ - 183, + 189, { "distinct_on": [ - 204, + 210, "[award_recipients_select_column!]" ], "limit": [ @@ -101016,19 +101607,19 @@ export default { 40 ], "order_by": [ - 202, + 208, "[award_recipients_order_by!]" ], "where": [ - 192 + 198 ] } ], "awards_aggregate": [ - 184, + 190, { "distinct_on": [ - 204, + 210, "[award_recipients_select_column!]" ], "limit": [ @@ -101038,11 +101629,11 @@ export default { 40 ], "order_by": [ - 202, + 208, "[award_recipients_order_by!]" ], "where": [ - 192 + 198 ] } ], @@ -101059,19 +101650,19 @@ export default { 5 ], "captain": [ - 3904 + 3910 ], "captain_steam_id": [ - 252 + 258 ], "id": [ - 4993 + 4999 ], "invites": [ - 4163, + 4169, { "distinct_on": [ - 4184, + 4190, "[team_invites_select_column!]" ], "limit": [ @@ -101081,19 +101672,19 @@ export default { 40 ], "order_by": [ - 4182, + 4188, "[team_invites_order_by!]" ], "where": [ - 4172 + 4178 ] } ], "invites_aggregate": [ - 4164, + 4170, { "distinct_on": [ - 4184, + 4190, "[team_invites_select_column!]" ], "limit": [ @@ -101103,11 +101694,11 @@ export default { 40 ], "order_by": [ - 4182, + 4188, "[team_invites_order_by!]" ], "where": [ - 4172 + 4178 ] } ], @@ -101115,10 +101706,10 @@ export default { 5 ], "match_lineups": [ - 2441, + 2447, { "distinct_on": [ - 2463, + 2469, "[match_lineups_select_column!]" ], "limit": [ @@ -101128,19 +101719,19 @@ export default { 40 ], "order_by": [ - 2461, + 2467, "[match_lineups_order_by!]" ], "where": [ - 2450 + 2456 ] } ], "match_lineups_aggregate": [ - 2442, + 2448, { "distinct_on": [ - 2463, + 2469, "[match_lineups_select_column!]" ], "limit": [ @@ -101150,19 +101741,19 @@ export default { 40 ], "order_by": [ - 2461, + 2467, "[match_lineups_order_by!]" ], "where": [ - 2450 + 2456 ] } ], "matches": [ - 2761, + 2767, { "distinct_on": [ - 2783, + 2789, "[matches_select_column!]" ], "limit": [ @@ -101172,11 +101763,11 @@ export default { 40 ], "order_by": [ - 2781, + 2787, "[matches_order_by!]" ], "where": [ - 2770 + 2776 ] } ], @@ -101184,25 +101775,25 @@ export default { 80 ], "owner": [ - 3904 + 3910 ], "owner_steam_id": [ - 252 + 258 ], "ranks": [ - 5677 + 5683 ], "reputation": [ - 5697 + 5703 ], "role": [ 80 ], "roster": [ - 4204, + 4210, { "distinct_on": [ - 4227, + 4233, "[team_roster_select_column!]" ], "limit": [ @@ -101212,19 +101803,19 @@ export default { 40 ], "order_by": [ - 4225, + 4231, "[team_roster_order_by!]" ], "where": [ - 4215 + 4221 ] } ], "roster_aggregate": [ - 4205, + 4211, { "distinct_on": [ - 4227, + 4233, "[team_roster_select_column!]" ], "limit": [ @@ -101234,19 +101825,19 @@ export default { 40 ], "order_by": [ - 4225, + 4231, "[team_roster_order_by!]" ], "where": [ - 4215 + 4221 ] } ], "scrim_availability": [ - 4276, + 4282, { "distinct_on": [ - 4296, + 4302, "[team_scrim_availability_select_column!]" ], "limit": [ @@ -101256,19 +101847,19 @@ export default { 40 ], "order_by": [ - 4294, + 4300, "[team_scrim_availability_order_by!]" ], "where": [ - 4285 + 4291 ] } ], "scrim_availability_aggregate": [ - 4277, + 4283, { "distinct_on": [ - 4296, + 4302, "[team_scrim_availability_select_column!]" ], "limit": [ @@ -101278,25 +101869,25 @@ export default { 40 ], "order_by": [ - 4294, + 4300, "[team_scrim_availability_order_by!]" ], "where": [ - 4285 + 4291 ] } ], "scrim_settings": [ - 4391 + 4397 ], "short_name": [ 80 ], "tournament_teams": [ - 4887, + 4893, { "distinct_on": [ - 4909, + 4915, "[tournament_teams_select_column!]" ], "limit": [ @@ -101306,19 +101897,19 @@ export default { 40 ], "order_by": [ - 4907, + 4913, "[tournament_teams_order_by!]" ], "where": [ - 4896 + 4902 ] } ], "tournament_teams_aggregate": [ - 4888, + 4894, { "distinct_on": [ - 4909, + 4915, "[tournament_teams_select_column!]" ], "limit": [ @@ -101328,11 +101919,11 @@ export default { 40 ], "order_by": [ - 4907, + 4913, "[tournament_teams_order_by!]" ], "where": [ - 4896 + 4902 ] } ], @@ -101342,10 +101933,10 @@ export default { }, "teams_aggregate": { "aggregate": [ - 4452 + 4458 ], "nodes": [ - 4446 + 4452 ], "__typename": [ 80 @@ -101353,13 +101944,13 @@ export default { }, "teams_aggregate_bool_exp": { "bool_and": [ - 4449 + 4455 ], "bool_or": [ - 4450 + 4456 ], "count": [ - 4451 + 4457 ], "__typename": [ 80 @@ -101367,13 +101958,13 @@ export default { }, "teams_aggregate_bool_exp_bool_and": { "arguments": [ - 4471 + 4477 ], "distinct": [ 5 ], "filter": [ - 4457 + 4463 ], "predicate": [ 6 @@ -101384,13 +101975,13 @@ export default { }, "teams_aggregate_bool_exp_bool_or": { "arguments": [ - 4472 + 4478 ], "distinct": [ 5 ], "filter": [ - 4457 + 4463 ], "predicate": [ 6 @@ -101401,13 +101992,13 @@ export default { }, "teams_aggregate_bool_exp_count": { "arguments": [ - 4470 + 4476 ], "distinct": [ 5 ], "filter": [ - 4457 + 4463 ], "predicate": [ 41 @@ -101418,13 +102009,13 @@ export default { }, "teams_aggregate_fields": { "avg": [ - 4455 + 4461 ], "count": [ 40, { "columns": [ - 4470, + 4476, "[teams_select_column!]" ], "distinct": [ @@ -101433,31 +102024,31 @@ export default { } ], "max": [ - 4461 + 4467 ], "min": [ - 4463 + 4469 ], "stddev": [ - 4474 + 4480 ], "stddev_pop": [ - 4476 + 4482 ], "stddev_samp": [ - 4478 + 4484 ], "sum": [ - 4482 + 4488 ], "var_pop": [ - 4486 + 4492 ], "var_samp": [ - 4488 + 4494 ], "variance": [ - 4490 + 4496 ], "__typename": [ 80 @@ -101465,37 +102056,37 @@ export default { }, "teams_aggregate_order_by": { "avg": [ - 4456 + 4462 ], "count": [ - 2946 + 2952 ], "max": [ - 4462 + 4468 ], "min": [ - 4464 + 4470 ], "stddev": [ - 4475 + 4481 ], "stddev_pop": [ - 4477 + 4483 ], "stddev_samp": [ - 4479 + 4485 ], "sum": [ - 4483 + 4489 ], "var_pop": [ - 4487 + 4493 ], "var_samp": [ - 4489 + 4495 ], "variance": [ - 4491 + 4497 ], "__typename": [ 80 @@ -101503,10 +102094,10 @@ export default { }, "teams_arr_rel_insert_input": { "data": [ - 4460 + 4466 ], "on_conflict": [ - 4467 + 4473 ], "__typename": [ 80 @@ -101525,10 +102116,10 @@ export default { }, "teams_avg_order_by": { "captain_steam_id": [ - 2946 + 2952 ], "owner_steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -101536,22 +102127,22 @@ export default { }, "teams_bool_exp": { "_and": [ - 4457 + 4463 ], "_not": [ - 4457 + 4463 ], "_or": [ - 4457 + 4463 ], "avatar_url": [ 82 ], "awards": [ - 192 + 198 ], "awards_aggregate": [ - 185 + 191 ], "can_change_role": [ 6 @@ -101566,73 +102157,73 @@ export default { 6 ], "captain": [ - 3908 + 3914 ], "captain_steam_id": [ - 254 + 260 ], "id": [ - 4995 + 5001 ], "invites": [ - 4172 + 4178 ], "invites_aggregate": [ - 4165 + 4171 ], "is_organization": [ 6 ], "match_lineups": [ - 2450 + 2456 ], "match_lineups_aggregate": [ - 2443 + 2449 ], "matches": [ - 2770 + 2776 ], "name": [ 82 ], "owner": [ - 3908 + 3914 ], "owner_steam_id": [ - 254 + 260 ], "ranks": [ - 5681 + 5687 ], "reputation": [ - 5701 + 5707 ], "role": [ 82 ], "roster": [ - 4215 + 4221 ], "roster_aggregate": [ - 4206 + 4212 ], "scrim_availability": [ - 4285 + 4291 ], "scrim_availability_aggregate": [ - 4278 + 4284 ], "scrim_settings": [ - 4395 + 4401 ], "short_name": [ 82 ], "tournament_teams": [ - 4896 + 4902 ], "tournament_teams_aggregate": [ - 4889 + 4895 ], "__typename": [ 80 @@ -101641,10 +102232,10 @@ export default { "teams_constraint": {}, "teams_inc_input": { "captain_steam_id": [ - 252 + 258 ], "owner_steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -101655,55 +102246,55 @@ export default { 80 ], "awards": [ - 189 + 195 ], "captain": [ - 3915 + 3921 ], "captain_steam_id": [ - 252 + 258 ], "id": [ - 4993 + 4999 ], "invites": [ - 4169 + 4175 ], "is_organization": [ 5 ], "match_lineups": [ - 2447 + 2453 ], "name": [ 80 ], "owner": [ - 3915 + 3921 ], "owner_steam_id": [ - 252 + 258 ], "ranks": [ - 5685 + 5691 ], "reputation": [ - 5705 + 5711 ], "roster": [ - 4212 + 4218 ], "scrim_availability": [ - 4284 + 4290 ], "scrim_settings": [ - 4402 + 4408 ], "short_name": [ 80 ], "tournament_teams": [ - 4893 + 4899 ], "__typename": [ 80 @@ -101714,16 +102305,16 @@ export default { 80 ], "captain_steam_id": [ - 252 + 258 ], "id": [ - 4993 + 4999 ], "name": [ 80 ], "owner_steam_id": [ - 252 + 258 ], "role": [ 80 @@ -101737,22 +102328,22 @@ export default { }, "teams_max_order_by": { "avatar_url": [ - 2946 + 2952 ], "captain_steam_id": [ - 2946 + 2952 ], "id": [ - 2946 + 2952 ], "name": [ - 2946 + 2952 ], "owner_steam_id": [ - 2946 + 2952 ], "short_name": [ - 2946 + 2952 ], "__typename": [ 80 @@ -101763,16 +102354,16 @@ export default { 80 ], "captain_steam_id": [ - 252 + 258 ], "id": [ - 4993 + 4999 ], "name": [ 80 ], "owner_steam_id": [ - 252 + 258 ], "role": [ 80 @@ -101786,22 +102377,22 @@ export default { }, "teams_min_order_by": { "avatar_url": [ - 2946 + 2952 ], "captain_steam_id": [ - 2946 + 2952 ], "id": [ - 2946 + 2952 ], "name": [ - 2946 + 2952 ], "owner_steam_id": [ - 2946 + 2952 ], "short_name": [ - 2946 + 2952 ], "__typename": [ 80 @@ -101812,7 +102403,7 @@ export default { 40 ], "returning": [ - 4446 + 4452 ], "__typename": [ 80 @@ -101820,10 +102411,10 @@ export default { }, "teams_obj_rel_insert_input": { "data": [ - 4460 + 4466 ], "on_conflict": [ - 4467 + 4473 ], "__typename": [ 80 @@ -101831,13 +102422,13 @@ export default { }, "teams_on_conflict": { "constraint": [ - 4458 + 4464 ], "update_columns": [ - 4484 + 4490 ], "where": [ - 4457 + 4463 ], "__typename": [ 80 @@ -101845,76 +102436,76 @@ export default { }, "teams_order_by": { "avatar_url": [ - 2946 + 2952 ], "awards_aggregate": [ - 188 + 194 ], "can_change_role": [ - 2946 + 2952 ], "can_invite": [ - 2946 + 2952 ], "can_manage_scrims": [ - 2946 + 2952 ], "can_remove": [ - 2946 + 2952 ], "captain": [ - 3917 + 3923 ], "captain_steam_id": [ - 2946 + 2952 ], "id": [ - 2946 + 2952 ], "invites_aggregate": [ - 4168 + 4174 ], "is_organization": [ - 2946 + 2952 ], "match_lineups_aggregate": [ - 2446 + 2452 ], "matches_aggregate": [ - 2766 + 2772 ], "name": [ - 2946 + 2952 ], "owner": [ - 3917 + 3923 ], "owner_steam_id": [ - 2946 + 2952 ], "ranks": [ - 5686 + 5692 ], "reputation": [ - 5706 + 5712 ], "role": [ - 2946 + 2952 ], "roster_aggregate": [ - 4211 + 4217 ], "scrim_availability_aggregate": [ - 4283 + 4289 ], "scrim_settings": [ - 4404 + 4410 ], "short_name": [ - 2946 + 2952 ], "tournament_teams_aggregate": [ - 4892 + 4898 ], "__typename": [ 80 @@ -101922,7 +102513,7 @@ export default { }, "teams_pk_columns_input": { "id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -101936,10 +102527,10 @@ export default { 80 ], "captain_steam_id": [ - 252 + 258 ], "id": [ - 4993 + 4999 ], "is_organization": [ 5 @@ -101948,7 +102539,7 @@ export default { 80 ], "owner_steam_id": [ - 252 + 258 ], "short_name": [ 80 @@ -101970,10 +102561,10 @@ export default { }, "teams_stddev_order_by": { "captain_steam_id": [ - 2946 + 2952 ], "owner_steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -101992,10 +102583,10 @@ export default { }, "teams_stddev_pop_order_by": { "captain_steam_id": [ - 2946 + 2952 ], "owner_steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -102014,10 +102605,10 @@ export default { }, "teams_stddev_samp_order_by": { "captain_steam_id": [ - 2946 + 2952 ], "owner_steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -102025,10 +102616,10 @@ export default { }, "teams_stream_cursor_input": { "initial_value": [ - 4481 + 4487 ], "ordering": [ - 308 + 314 ], "__typename": [ 80 @@ -102039,10 +102630,10 @@ export default { 80 ], "captain_steam_id": [ - 252 + 258 ], "id": [ - 4993 + 4999 ], "is_organization": [ 5 @@ -102051,7 +102642,7 @@ export default { 80 ], "owner_steam_id": [ - 252 + 258 ], "short_name": [ 80 @@ -102062,10 +102653,10 @@ export default { }, "teams_sum_fields": { "captain_steam_id": [ - 252 + 258 ], "owner_steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -102073,10 +102664,10 @@ export default { }, "teams_sum_order_by": { "captain_steam_id": [ - 2946 + 2952 ], "owner_steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -102085,13 +102676,13 @@ export default { "teams_update_column": {}, "teams_updates": { "_inc": [ - 4459 + 4465 ], "_set": [ - 4473 + 4479 ], "where": [ - 4457 + 4463 ], "__typename": [ 80 @@ -102110,10 +102701,10 @@ export default { }, "teams_var_pop_order_by": { "captain_steam_id": [ - 2946 + 2952 ], "owner_steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -102132,10 +102723,10 @@ export default { }, "teams_var_samp_order_by": { "captain_steam_id": [ - 2946 + 2952 ], "owner_steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -102154,10 +102745,10 @@ export default { }, "teams_variance_order_by": { "captain_steam_id": [ - 2946 + 2952 ], "owner_steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -102167,31 +102758,31 @@ export default { "timestamptz": {}, "timestamptz_comparison_exp": { "_eq": [ - 4493 + 4499 ], "_gt": [ - 4493 + 4499 ], "_gte": [ - 4493 + 4499 ], "_in": [ - 4493 + 4499 ], "_is_null": [ 5 ], "_lt": [ - 4493 + 4499 ], "_lte": [ - 4493 + 4499 ], "_neq": [ - 4493 + 4499 ], "_nin": [ - 4493 + 4499 ], "__typename": [ 80 @@ -102199,19 +102790,19 @@ export default { }, "tournament_awards": { "award": [ - 224 + 230 ], "award_id": [ - 4993 + 4999 ], "created_at": [ - 4493 + 4499 ], "custom_name": [ 80 ], "id": [ - 4993 + 4999 ], "image_url": [ 80 @@ -102223,13 +102814,13 @@ export default { 40 ], "tournament": [ - 4929 + 4935 ], "tournament_id": [ - 4993 + 4999 ], "updated_at": [ - 4493 + 4499 ], "__typename": [ 80 @@ -102237,10 +102828,10 @@ export default { }, "tournament_awards_aggregate": { "aggregate": [ - 4499 + 4505 ], "nodes": [ - 4495 + 4501 ], "__typename": [ 80 @@ -102248,7 +102839,7 @@ export default { }, "tournament_awards_aggregate_bool_exp": { "count": [ - 4498 + 4504 ], "__typename": [ 80 @@ -102256,13 +102847,13 @@ export default { }, "tournament_awards_aggregate_bool_exp_count": { "arguments": [ - 4517 + 4523 ], "distinct": [ 5 ], "filter": [ - 4504 + 4510 ], "predicate": [ 41 @@ -102273,13 +102864,13 @@ export default { }, "tournament_awards_aggregate_fields": { "avg": [ - 4502 + 4508 ], "count": [ 40, { "columns": [ - 4517, + 4523, "[tournament_awards_select_column!]" ], "distinct": [ @@ -102288,31 +102879,31 @@ export default { } ], "max": [ - 4508 + 4514 ], "min": [ - 4510 + 4516 ], "stddev": [ - 4519 + 4525 ], "stddev_pop": [ - 4521 + 4527 ], "stddev_samp": [ - 4523 + 4529 ], "sum": [ - 4527 + 4533 ], "var_pop": [ - 4531 + 4537 ], "var_samp": [ - 4533 + 4539 ], "variance": [ - 4535 + 4541 ], "__typename": [ 80 @@ -102320,37 +102911,37 @@ export default { }, "tournament_awards_aggregate_order_by": { "avg": [ - 4503 + 4509 ], "count": [ - 2946 + 2952 ], "max": [ - 4509 + 4515 ], "min": [ - 4511 + 4517 ], "stddev": [ - 4520 + 4526 ], "stddev_pop": [ - 4522 + 4528 ], "stddev_samp": [ - 4524 + 4530 ], "sum": [ - 4528 + 4534 ], "var_pop": [ - 4532 + 4538 ], "var_samp": [ - 4534 + 4540 ], "variance": [ - 4536 + 4542 ], "__typename": [ 80 @@ -102358,10 +102949,10 @@ export default { }, "tournament_awards_arr_rel_insert_input": { "data": [ - 4507 + 4513 ], "on_conflict": [ - 4514 + 4520 ], "__typename": [ 80 @@ -102380,10 +102971,10 @@ export default { }, "tournament_awards_avg_order_by": { "placement": [ - 2946 + 2952 ], "silhouette": [ - 2946 + 2952 ], "__typename": [ 80 @@ -102391,28 +102982,28 @@ export default { }, "tournament_awards_bool_exp": { "_and": [ - 4504 + 4510 ], "_not": [ - 4504 + 4510 ], "_or": [ - 4504 + 4510 ], "award": [ - 228 + 234 ], "award_id": [ - 4995 + 5001 ], "created_at": [ - 4494 + 4500 ], "custom_name": [ 82 ], "id": [ - 4995 + 5001 ], "image_url": [ 82 @@ -102424,13 +103015,13 @@ export default { 41 ], "tournament": [ - 4950 + 4956 ], "tournament_id": [ - 4995 + 5001 ], "updated_at": [ - 4494 + 4500 ], "__typename": [ 80 @@ -102450,19 +103041,19 @@ export default { }, "tournament_awards_insert_input": { "award": [ - 235 + 241 ], "award_id": [ - 4993 + 4999 ], "created_at": [ - 4493 + 4499 ], "custom_name": [ 80 ], "id": [ - 4993 + 4999 ], "image_url": [ 80 @@ -102474,13 +103065,13 @@ export default { 40 ], "tournament": [ - 4959 + 4965 ], "tournament_id": [ - 4993 + 4999 ], "updated_at": [ - 4493 + 4499 ], "__typename": [ 80 @@ -102488,16 +103079,16 @@ export default { }, "tournament_awards_max_fields": { "award_id": [ - 4993 + 4999 ], "created_at": [ - 4493 + 4499 ], "custom_name": [ 80 ], "id": [ - 4993 + 4999 ], "image_url": [ 80 @@ -102509,10 +103100,10 @@ export default { 40 ], "tournament_id": [ - 4993 + 4999 ], "updated_at": [ - 4493 + 4499 ], "__typename": [ 80 @@ -102520,31 +103111,31 @@ export default { }, "tournament_awards_max_order_by": { "award_id": [ - 2946 + 2952 ], "created_at": [ - 2946 + 2952 ], "custom_name": [ - 2946 + 2952 ], "id": [ - 2946 + 2952 ], "image_url": [ - 2946 + 2952 ], "placement": [ - 2946 + 2952 ], "silhouette": [ - 2946 + 2952 ], "tournament_id": [ - 2946 + 2952 ], "updated_at": [ - 2946 + 2952 ], "__typename": [ 80 @@ -102552,16 +103143,16 @@ export default { }, "tournament_awards_min_fields": { "award_id": [ - 4993 + 4999 ], "created_at": [ - 4493 + 4499 ], "custom_name": [ 80 ], "id": [ - 4993 + 4999 ], "image_url": [ 80 @@ -102573,10 +103164,10 @@ export default { 40 ], "tournament_id": [ - 4993 + 4999 ], "updated_at": [ - 4493 + 4499 ], "__typename": [ 80 @@ -102584,31 +103175,31 @@ export default { }, "tournament_awards_min_order_by": { "award_id": [ - 2946 + 2952 ], "created_at": [ - 2946 + 2952 ], "custom_name": [ - 2946 + 2952 ], "id": [ - 2946 + 2952 ], "image_url": [ - 2946 + 2952 ], "placement": [ - 2946 + 2952 ], "silhouette": [ - 2946 + 2952 ], "tournament_id": [ - 2946 + 2952 ], "updated_at": [ - 2946 + 2952 ], "__typename": [ 80 @@ -102619,7 +103210,7 @@ export default { 40 ], "returning": [ - 4495 + 4501 ], "__typename": [ 80 @@ -102627,10 +103218,10 @@ export default { }, "tournament_awards_obj_rel_insert_input": { "data": [ - 4507 + 4513 ], "on_conflict": [ - 4514 + 4520 ], "__typename": [ 80 @@ -102638,13 +103229,13 @@ export default { }, "tournament_awards_on_conflict": { "constraint": [ - 4505 + 4511 ], "update_columns": [ - 4529 + 4535 ], "where": [ - 4504 + 4510 ], "__typename": [ 80 @@ -102652,37 +103243,37 @@ export default { }, "tournament_awards_order_by": { "award": [ - 237 + 243 ], "award_id": [ - 2946 + 2952 ], "created_at": [ - 2946 + 2952 ], "custom_name": [ - 2946 + 2952 ], "id": [ - 2946 + 2952 ], "image_url": [ - 2946 + 2952 ], "placement": [ - 2946 + 2952 ], "silhouette": [ - 2946 + 2952 ], "tournament": [ - 4961 + 4967 ], "tournament_id": [ - 2946 + 2952 ], "updated_at": [ - 2946 + 2952 ], "__typename": [ 80 @@ -102690,7 +103281,7 @@ export default { }, "tournament_awards_pk_columns_input": { "id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -102699,16 +103290,16 @@ export default { "tournament_awards_select_column": {}, "tournament_awards_set_input": { "award_id": [ - 4993 + 4999 ], "created_at": [ - 4493 + 4499 ], "custom_name": [ 80 ], "id": [ - 4993 + 4999 ], "image_url": [ 80 @@ -102720,10 +103311,10 @@ export default { 40 ], "tournament_id": [ - 4993 + 4999 ], "updated_at": [ - 4493 + 4499 ], "__typename": [ 80 @@ -102742,10 +103333,10 @@ export default { }, "tournament_awards_stddev_order_by": { "placement": [ - 2946 + 2952 ], "silhouette": [ - 2946 + 2952 ], "__typename": [ 80 @@ -102764,10 +103355,10 @@ export default { }, "tournament_awards_stddev_pop_order_by": { "placement": [ - 2946 + 2952 ], "silhouette": [ - 2946 + 2952 ], "__typename": [ 80 @@ -102786,10 +103377,10 @@ export default { }, "tournament_awards_stddev_samp_order_by": { "placement": [ - 2946 + 2952 ], "silhouette": [ - 2946 + 2952 ], "__typename": [ 80 @@ -102797,10 +103388,10 @@ export default { }, "tournament_awards_stream_cursor_input": { "initial_value": [ - 4526 + 4532 ], "ordering": [ - 308 + 314 ], "__typename": [ 80 @@ -102808,16 +103399,16 @@ export default { }, "tournament_awards_stream_cursor_value_input": { "award_id": [ - 4993 + 4999 ], "created_at": [ - 4493 + 4499 ], "custom_name": [ 80 ], "id": [ - 4993 + 4999 ], "image_url": [ 80 @@ -102829,10 +103420,10 @@ export default { 40 ], "tournament_id": [ - 4993 + 4999 ], "updated_at": [ - 4493 + 4499 ], "__typename": [ 80 @@ -102851,10 +103442,10 @@ export default { }, "tournament_awards_sum_order_by": { "placement": [ - 2946 + 2952 ], "silhouette": [ - 2946 + 2952 ], "__typename": [ 80 @@ -102863,13 +103454,13 @@ export default { "tournament_awards_update_column": {}, "tournament_awards_updates": { "_inc": [ - 4506 + 4512 ], "_set": [ - 4518 + 4524 ], "where": [ - 4504 + 4510 ], "__typename": [ 80 @@ -102888,10 +103479,10 @@ export default { }, "tournament_awards_var_pop_order_by": { "placement": [ - 2946 + 2952 ], "silhouette": [ - 2946 + 2952 ], "__typename": [ 80 @@ -102910,10 +103501,10 @@ export default { }, "tournament_awards_var_samp_order_by": { "placement": [ - 2946 + 2952 ], "silhouette": [ - 2946 + 2952 ], "__typename": [ 80 @@ -102932,10 +103523,10 @@ export default { }, "tournament_awards_variance_order_by": { "placement": [ - 2946 + 2952 ], "silhouette": [ - 2946 + 2952 ], "__typename": [ 80 @@ -102946,13 +103537,13 @@ export default { 5 ], "created_at": [ - 4493 + 4499 ], "feeding_brackets": [ - 4537, + 4543, { "distinct_on": [ - 4561, + 4567, "[tournament_brackets_select_column!]" ], "limit": [ @@ -102962,11 +103553,11 @@ export default { 40 ], "order_by": [ - 4559, + 4565, "[tournament_brackets_order_by!]" ], "where": [ - 4548 + 4554 ] } ], @@ -102974,37 +103565,37 @@ export default { 5 ], "group": [ - 2944 + 2950 ], "id": [ - 4993 + 4999 ], "loser_bracket": [ - 4537 + 4543 ], "loser_parent_bracket_id": [ - 4993 + 4999 ], "match": [ - 2761 + 2767 ], "match_id": [ - 4993 + 4999 ], "match_number": [ 40 ], "match_options_id": [ - 4993 + 4999 ], "options": [ - 2641 + 2647 ], "parent_bracket": [ - 4537 + 4543 ], "parent_bracket_id": [ - 4993 + 4999 ], "path": [ 80 @@ -103013,16 +103604,16 @@ export default { 40 ], "scheduled_at": [ - 4493 + 4499 ], "scheduled_eta": [ - 4493 + 4499 ], "scheduling_proposals": [ - 1954, + 1960, { "distinct_on": [ - 1975, + 1981, "[league_scheduling_proposals_select_column!]" ], "limit": [ @@ -103032,19 +103623,19 @@ export default { 40 ], "order_by": [ - 1973, + 1979, "[league_scheduling_proposals_order_by!]" ], "where": [ - 1963 + 1969 ] } ], "scheduling_proposals_aggregate": [ - 1955, + 1961, { "distinct_on": [ - 1975, + 1981, "[league_scheduling_proposals_select_column!]" ], "limit": [ @@ -103054,37 +103645,37 @@ export default { 40 ], "order_by": [ - 1973, + 1979, "[league_scheduling_proposals_order_by!]" ], "where": [ - 1963 + 1969 ] } ], "stage": [ - 4754 + 4760 ], "team_1": [ - 4887 + 4893 ], "team_1_seed": [ 40 ], "team_2": [ - 4887 + 4893 ], "team_2_seed": [ 40 ], "tournament_stage_id": [ - 4993 + 4999 ], "tournament_team_id_1": [ - 4993 + 4999 ], "tournament_team_id_2": [ - 4993 + 4999 ], "__typename": [ 80 @@ -103092,10 +103683,10 @@ export default { }, "tournament_brackets_aggregate": { "aggregate": [ - 4543 + 4549 ], "nodes": [ - 4537 + 4543 ], "__typename": [ 80 @@ -103103,13 +103694,13 @@ export default { }, "tournament_brackets_aggregate_bool_exp": { "bool_and": [ - 4540 + 4546 ], "bool_or": [ - 4541 + 4547 ], "count": [ - 4542 + 4548 ], "__typename": [ 80 @@ -103117,13 +103708,13 @@ export default { }, "tournament_brackets_aggregate_bool_exp_bool_and": { "arguments": [ - 4562 + 4568 ], "distinct": [ 5 ], "filter": [ - 4548 + 4554 ], "predicate": [ 6 @@ -103134,13 +103725,13 @@ export default { }, "tournament_brackets_aggregate_bool_exp_bool_or": { "arguments": [ - 4563 + 4569 ], "distinct": [ 5 ], "filter": [ - 4548 + 4554 ], "predicate": [ 6 @@ -103151,13 +103742,13 @@ export default { }, "tournament_brackets_aggregate_bool_exp_count": { "arguments": [ - 4561 + 4567 ], "distinct": [ 5 ], "filter": [ - 4548 + 4554 ], "predicate": [ 41 @@ -103168,13 +103759,13 @@ export default { }, "tournament_brackets_aggregate_fields": { "avg": [ - 4546 + 4552 ], "count": [ 40, { "columns": [ - 4561, + 4567, "[tournament_brackets_select_column!]" ], "distinct": [ @@ -103183,31 +103774,31 @@ export default { } ], "max": [ - 4552 + 4558 ], "min": [ - 4554 + 4560 ], "stddev": [ - 4565 + 4571 ], "stddev_pop": [ - 4567 + 4573 ], "stddev_samp": [ - 4569 + 4575 ], "sum": [ - 4573 + 4579 ], "var_pop": [ - 4577 + 4583 ], "var_samp": [ - 4579 + 4585 ], "variance": [ - 4581 + 4587 ], "__typename": [ 80 @@ -103215,37 +103806,37 @@ export default { }, "tournament_brackets_aggregate_order_by": { "avg": [ - 4547 + 4553 ], "count": [ - 2946 + 2952 ], "max": [ - 4553 + 4559 ], "min": [ - 4555 + 4561 ], "stddev": [ - 4566 + 4572 ], "stddev_pop": [ - 4568 + 4574 ], "stddev_samp": [ - 4570 + 4576 ], "sum": [ - 4574 + 4580 ], "var_pop": [ - 4578 + 4584 ], "var_samp": [ - 4580 + 4586 ], "variance": [ - 4582 + 4588 ], "__typename": [ 80 @@ -103253,10 +103844,10 @@ export default { }, "tournament_brackets_arr_rel_insert_input": { "data": [ - 4551 + 4557 ], "on_conflict": [ - 4558 + 4564 ], "__typename": [ 80 @@ -103284,19 +103875,19 @@ export default { }, "tournament_brackets_avg_order_by": { "group": [ - 2946 + 2952 ], "match_number": [ - 2946 + 2952 ], "round": [ - 2946 + 2952 ], "team_1_seed": [ - 2946 + 2952 ], "team_2_seed": [ - 2946 + 2952 ], "__typename": [ 80 @@ -103304,58 +103895,58 @@ export default { }, "tournament_brackets_bool_exp": { "_and": [ - 4548 + 4554 ], "_not": [ - 4548 + 4554 ], "_or": [ - 4548 + 4554 ], "bye": [ 6 ], "created_at": [ - 4494 + 4500 ], "feeding_brackets": [ - 4548 + 4554 ], "finished": [ 6 ], "group": [ - 2945 + 2951 ], "id": [ - 4995 + 5001 ], "loser_bracket": [ - 4548 + 4554 ], "loser_parent_bracket_id": [ - 4995 + 5001 ], "match": [ - 2770 + 2776 ], "match_id": [ - 4995 + 5001 ], "match_number": [ 41 ], "match_options_id": [ - 4995 + 5001 ], "options": [ - 2645 + 2651 ], "parent_bracket": [ - 4548 + 4554 ], "parent_bracket_id": [ - 4995 + 5001 ], "path": [ 82 @@ -103364,40 +103955,40 @@ export default { 41 ], "scheduled_at": [ - 4494 + 4500 ], "scheduled_eta": [ - 4494 + 4500 ], "scheduling_proposals": [ - 1963 + 1969 ], "scheduling_proposals_aggregate": [ - 1956 + 1962 ], "stage": [ - 4766 + 4772 ], "team_1": [ - 4896 + 4902 ], "team_1_seed": [ 41 ], "team_2": [ - 4896 + 4902 ], "team_2_seed": [ 41 ], "tournament_stage_id": [ - 4995 + 5001 ], "tournament_team_id_1": [ - 4995 + 5001 ], "tournament_team_id_2": [ - 4995 + 5001 ], "__typename": [ 80 @@ -103406,7 +103997,7 @@ export default { "tournament_brackets_constraint": {}, "tournament_brackets_inc_input": { "group": [ - 2944 + 2950 ], "match_number": [ 40 @@ -103429,43 +104020,43 @@ export default { 5 ], "created_at": [ - 4493 + 4499 ], "finished": [ 5 ], "group": [ - 2944 + 2950 ], "id": [ - 4993 + 4999 ], "loser_bracket": [ - 4557 + 4563 ], "loser_parent_bracket_id": [ - 4993 + 4999 ], "match": [ - 2779 + 2785 ], "match_id": [ - 4993 + 4999 ], "match_number": [ 40 ], "match_options_id": [ - 4993 + 4999 ], "options": [ - 2652 + 2658 ], "parent_bracket": [ - 4557 + 4563 ], "parent_bracket_id": [ - 4993 + 4999 ], "path": [ 80 @@ -103474,37 +104065,37 @@ export default { 40 ], "scheduled_at": [ - 4493 + 4499 ], "scheduled_eta": [ - 4493 + 4499 ], "scheduling_proposals": [ - 1960 + 1966 ], "stage": [ - 4778 + 4784 ], "team_1": [ - 4905 + 4911 ], "team_1_seed": [ 40 ], "team_2": [ - 4905 + 4911 ], "team_2_seed": [ 40 ], "tournament_stage_id": [ - 4993 + 4999 ], "tournament_team_id_1": [ - 4993 + 4999 ], "tournament_team_id_2": [ - 4993 + 4999 ], "__typename": [ 80 @@ -103512,28 +104103,28 @@ export default { }, "tournament_brackets_max_fields": { "created_at": [ - 4493 + 4499 ], "group": [ - 2944 + 2950 ], "id": [ - 4993 + 4999 ], "loser_parent_bracket_id": [ - 4993 + 4999 ], "match_id": [ - 4993 + 4999 ], "match_number": [ 40 ], "match_options_id": [ - 4993 + 4999 ], "parent_bracket_id": [ - 4993 + 4999 ], "path": [ 80 @@ -103542,10 +104133,10 @@ export default { 40 ], "scheduled_at": [ - 4493 + 4499 ], "scheduled_eta": [ - 4493 + 4499 ], "team_1_seed": [ 40 @@ -103554,13 +104145,13 @@ export default { 40 ], "tournament_stage_id": [ - 4993 + 4999 ], "tournament_team_id_1": [ - 4993 + 4999 ], "tournament_team_id_2": [ - 4993 + 4999 ], "__typename": [ 80 @@ -103568,55 +104159,55 @@ export default { }, "tournament_brackets_max_order_by": { "created_at": [ - 2946 + 2952 ], "group": [ - 2946 + 2952 ], "id": [ - 2946 + 2952 ], "loser_parent_bracket_id": [ - 2946 + 2952 ], "match_id": [ - 2946 + 2952 ], "match_number": [ - 2946 + 2952 ], "match_options_id": [ - 2946 + 2952 ], "parent_bracket_id": [ - 2946 + 2952 ], "path": [ - 2946 + 2952 ], "round": [ - 2946 + 2952 ], "scheduled_at": [ - 2946 + 2952 ], "scheduled_eta": [ - 2946 + 2952 ], "team_1_seed": [ - 2946 + 2952 ], "team_2_seed": [ - 2946 + 2952 ], "tournament_stage_id": [ - 2946 + 2952 ], "tournament_team_id_1": [ - 2946 + 2952 ], "tournament_team_id_2": [ - 2946 + 2952 ], "__typename": [ 80 @@ -103624,28 +104215,28 @@ export default { }, "tournament_brackets_min_fields": { "created_at": [ - 4493 + 4499 ], "group": [ - 2944 + 2950 ], "id": [ - 4993 + 4999 ], "loser_parent_bracket_id": [ - 4993 + 4999 ], "match_id": [ - 4993 + 4999 ], "match_number": [ 40 ], "match_options_id": [ - 4993 + 4999 ], "parent_bracket_id": [ - 4993 + 4999 ], "path": [ 80 @@ -103654,10 +104245,10 @@ export default { 40 ], "scheduled_at": [ - 4493 + 4499 ], "scheduled_eta": [ - 4493 + 4499 ], "team_1_seed": [ 40 @@ -103666,13 +104257,13 @@ export default { 40 ], "tournament_stage_id": [ - 4993 + 4999 ], "tournament_team_id_1": [ - 4993 + 4999 ], "tournament_team_id_2": [ - 4993 + 4999 ], "__typename": [ 80 @@ -103680,55 +104271,55 @@ export default { }, "tournament_brackets_min_order_by": { "created_at": [ - 2946 + 2952 ], "group": [ - 2946 + 2952 ], "id": [ - 2946 + 2952 ], "loser_parent_bracket_id": [ - 2946 + 2952 ], "match_id": [ - 2946 + 2952 ], "match_number": [ - 2946 + 2952 ], "match_options_id": [ - 2946 + 2952 ], "parent_bracket_id": [ - 2946 + 2952 ], "path": [ - 2946 + 2952 ], "round": [ - 2946 + 2952 ], "scheduled_at": [ - 2946 + 2952 ], "scheduled_eta": [ - 2946 + 2952 ], "team_1_seed": [ - 2946 + 2952 ], "team_2_seed": [ - 2946 + 2952 ], "tournament_stage_id": [ - 2946 + 2952 ], "tournament_team_id_1": [ - 2946 + 2952 ], "tournament_team_id_2": [ - 2946 + 2952 ], "__typename": [ 80 @@ -103739,7 +104330,7 @@ export default { 40 ], "returning": [ - 4537 + 4543 ], "__typename": [ 80 @@ -103747,10 +104338,10 @@ export default { }, "tournament_brackets_obj_rel_insert_input": { "data": [ - 4551 + 4557 ], "on_conflict": [ - 4558 + 4564 ], "__typename": [ 80 @@ -103758,13 +104349,13 @@ export default { }, "tournament_brackets_on_conflict": { "constraint": [ - 4549 + 4555 ], "update_columns": [ - 4575 + 4581 ], "where": [ - 4548 + 4554 ], "__typename": [ 80 @@ -103772,88 +104363,88 @@ export default { }, "tournament_brackets_order_by": { "bye": [ - 2946 + 2952 ], "created_at": [ - 2946 + 2952 ], "feeding_brackets_aggregate": [ - 4544 + 4550 ], "finished": [ - 2946 + 2952 ], "group": [ - 2946 + 2952 ], "id": [ - 2946 + 2952 ], "loser_bracket": [ - 4559 + 4565 ], "loser_parent_bracket_id": [ - 2946 + 2952 ], "match": [ - 2781 + 2787 ], "match_id": [ - 2946 + 2952 ], "match_number": [ - 2946 + 2952 ], "match_options_id": [ - 2946 + 2952 ], "options": [ - 2654 + 2660 ], "parent_bracket": [ - 4559 + 4565 ], "parent_bracket_id": [ - 2946 + 2952 ], "path": [ - 2946 + 2952 ], "round": [ - 2946 + 2952 ], "scheduled_at": [ - 2946 + 2952 ], "scheduled_eta": [ - 2946 + 2952 ], "scheduling_proposals_aggregate": [ - 1959 + 1965 ], "stage": [ - 4780 + 4786 ], "team_1": [ - 4907 + 4913 ], "team_1_seed": [ - 2946 + 2952 ], "team_2": [ - 4907 + 4913 ], "team_2_seed": [ - 2946 + 2952 ], "tournament_stage_id": [ - 2946 + 2952 ], "tournament_team_id_1": [ - 2946 + 2952 ], "tournament_team_id_2": [ - 2946 + 2952 ], "__typename": [ 80 @@ -103861,7 +104452,7 @@ export default { }, "tournament_brackets_pk_columns_input": { "id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -103875,31 +104466,31 @@ export default { 5 ], "created_at": [ - 4493 + 4499 ], "finished": [ 5 ], "group": [ - 2944 + 2950 ], "id": [ - 4993 + 4999 ], "loser_parent_bracket_id": [ - 4993 + 4999 ], "match_id": [ - 4993 + 4999 ], "match_number": [ 40 ], "match_options_id": [ - 4993 + 4999 ], "parent_bracket_id": [ - 4993 + 4999 ], "path": [ 80 @@ -103908,10 +104499,10 @@ export default { 40 ], "scheduled_at": [ - 4493 + 4499 ], "scheduled_eta": [ - 4493 + 4499 ], "team_1_seed": [ 40 @@ -103920,13 +104511,13 @@ export default { 40 ], "tournament_stage_id": [ - 4993 + 4999 ], "tournament_team_id_1": [ - 4993 + 4999 ], "tournament_team_id_2": [ - 4993 + 4999 ], "__typename": [ 80 @@ -103954,19 +104545,19 @@ export default { }, "tournament_brackets_stddev_order_by": { "group": [ - 2946 + 2952 ], "match_number": [ - 2946 + 2952 ], "round": [ - 2946 + 2952 ], "team_1_seed": [ - 2946 + 2952 ], "team_2_seed": [ - 2946 + 2952 ], "__typename": [ 80 @@ -103994,19 +104585,19 @@ export default { }, "tournament_brackets_stddev_pop_order_by": { "group": [ - 2946 + 2952 ], "match_number": [ - 2946 + 2952 ], "round": [ - 2946 + 2952 ], "team_1_seed": [ - 2946 + 2952 ], "team_2_seed": [ - 2946 + 2952 ], "__typename": [ 80 @@ -104034,19 +104625,19 @@ export default { }, "tournament_brackets_stddev_samp_order_by": { "group": [ - 2946 + 2952 ], "match_number": [ - 2946 + 2952 ], "round": [ - 2946 + 2952 ], "team_1_seed": [ - 2946 + 2952 ], "team_2_seed": [ - 2946 + 2952 ], "__typename": [ 80 @@ -104054,10 +104645,10 @@ export default { }, "tournament_brackets_stream_cursor_input": { "initial_value": [ - 4572 + 4578 ], "ordering": [ - 308 + 314 ], "__typename": [ 80 @@ -104068,31 +104659,31 @@ export default { 5 ], "created_at": [ - 4493 + 4499 ], "finished": [ 5 ], "group": [ - 2944 + 2950 ], "id": [ - 4993 + 4999 ], "loser_parent_bracket_id": [ - 4993 + 4999 ], "match_id": [ - 4993 + 4999 ], "match_number": [ 40 ], "match_options_id": [ - 4993 + 4999 ], "parent_bracket_id": [ - 4993 + 4999 ], "path": [ 80 @@ -104101,10 +104692,10 @@ export default { 40 ], "scheduled_at": [ - 4493 + 4499 ], "scheduled_eta": [ - 4493 + 4499 ], "team_1_seed": [ 40 @@ -104113,13 +104704,13 @@ export default { 40 ], "tournament_stage_id": [ - 4993 + 4999 ], "tournament_team_id_1": [ - 4993 + 4999 ], "tournament_team_id_2": [ - 4993 + 4999 ], "__typename": [ 80 @@ -104127,7 +104718,7 @@ export default { }, "tournament_brackets_sum_fields": { "group": [ - 2944 + 2950 ], "match_number": [ 40 @@ -104147,19 +104738,19 @@ export default { }, "tournament_brackets_sum_order_by": { "group": [ - 2946 + 2952 ], "match_number": [ - 2946 + 2952 ], "round": [ - 2946 + 2952 ], "team_1_seed": [ - 2946 + 2952 ], "team_2_seed": [ - 2946 + 2952 ], "__typename": [ 80 @@ -104168,13 +104759,13 @@ export default { "tournament_brackets_update_column": {}, "tournament_brackets_updates": { "_inc": [ - 4550 + 4556 ], "_set": [ - 4564 + 4570 ], "where": [ - 4548 + 4554 ], "__typename": [ 80 @@ -104202,19 +104793,19 @@ export default { }, "tournament_brackets_var_pop_order_by": { "group": [ - 2946 + 2952 ], "match_number": [ - 2946 + 2952 ], "round": [ - 2946 + 2952 ], "team_1_seed": [ - 2946 + 2952 ], "team_2_seed": [ - 2946 + 2952 ], "__typename": [ 80 @@ -104242,19 +104833,19 @@ export default { }, "tournament_brackets_var_samp_order_by": { "group": [ - 2946 + 2952 ], "match_number": [ - 2946 + 2952 ], "round": [ - 2946 + 2952 ], "team_1_seed": [ - 2946 + 2952 ], "team_2_seed": [ - 2946 + 2952 ], "__typename": [ 80 @@ -104282,19 +104873,19 @@ export default { }, "tournament_brackets_variance_order_by": { "group": [ - 2946 + 2952 ], "match_number": [ - 2946 + 2952 ], "round": [ - 2946 + 2952 ], "team_1_seed": [ - 2946 + 2952 ], "team_2_seed": [ - 2946 + 2952 ], "__typename": [ 80 @@ -104302,16 +104893,16 @@ export default { }, "tournament_categories": { "category": [ - 1287 + 1293 ], "e_tournament_category": [ - 1282 + 1288 ], "tournament": [ - 4929 + 4935 ], "tournament_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -104319,10 +104910,10 @@ export default { }, "tournament_categories_aggregate": { "aggregate": [ - 4587 + 4593 ], "nodes": [ - 4583 + 4589 ], "__typename": [ 80 @@ -104330,7 +104921,7 @@ export default { }, "tournament_categories_aggregate_bool_exp": { "count": [ - 4586 + 4592 ], "__typename": [ 80 @@ -104338,13 +104929,13 @@ export default { }, "tournament_categories_aggregate_bool_exp_count": { "arguments": [ - 4601 + 4607 ], "distinct": [ 5 ], "filter": [ - 4590 + 4596 ], "predicate": [ 41 @@ -104358,7 +104949,7 @@ export default { 40, { "columns": [ - 4601, + 4607, "[tournament_categories_select_column!]" ], "distinct": [ @@ -104367,10 +104958,10 @@ export default { } ], "max": [ - 4593 + 4599 ], "min": [ - 4595 + 4601 ], "__typename": [ 80 @@ -104378,13 +104969,13 @@ export default { }, "tournament_categories_aggregate_order_by": { "count": [ - 2946 + 2952 ], "max": [ - 4594 + 4600 ], "min": [ - 4596 + 4602 ], "__typename": [ 80 @@ -104392,10 +104983,10 @@ export default { }, "tournament_categories_arr_rel_insert_input": { "data": [ - 4592 + 4598 ], "on_conflict": [ - 4598 + 4604 ], "__typename": [ 80 @@ -104403,25 +104994,25 @@ export default { }, "tournament_categories_bool_exp": { "_and": [ - 4590 + 4596 ], "_not": [ - 4590 + 4596 ], "_or": [ - 4590 + 4596 ], "category": [ - 1288 + 1294 ], "e_tournament_category": [ - 1285 + 1291 ], "tournament": [ - 4950 + 4956 ], "tournament_id": [ - 4995 + 5001 ], "__typename": [ 80 @@ -104430,16 +105021,16 @@ export default { "tournament_categories_constraint": {}, "tournament_categories_insert_input": { "category": [ - 1287 + 1293 ], "e_tournament_category": [ - 1293 + 1299 ], "tournament": [ - 4959 + 4965 ], "tournament_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -104447,7 +105038,7 @@ export default { }, "tournament_categories_max_fields": { "tournament_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -104455,7 +105046,7 @@ export default { }, "tournament_categories_max_order_by": { "tournament_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -104463,7 +105054,7 @@ export default { }, "tournament_categories_min_fields": { "tournament_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -104471,7 +105062,7 @@ export default { }, "tournament_categories_min_order_by": { "tournament_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -104482,7 +105073,7 @@ export default { 40 ], "returning": [ - 4583 + 4589 ], "__typename": [ 80 @@ -104490,13 +105081,13 @@ export default { }, "tournament_categories_on_conflict": { "constraint": [ - 4591 + 4597 ], "update_columns": [ - 4605 + 4611 ], "where": [ - 4590 + 4596 ], "__typename": [ 80 @@ -104504,16 +105095,16 @@ export default { }, "tournament_categories_order_by": { "category": [ - 2946 + 2952 ], "e_tournament_category": [ - 1295 + 1301 ], "tournament": [ - 4961 + 4967 ], "tournament_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -104521,10 +105112,10 @@ export default { }, "tournament_categories_pk_columns_input": { "category": [ - 1287 + 1293 ], "tournament_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -104533,10 +105124,10 @@ export default { "tournament_categories_select_column": {}, "tournament_categories_set_input": { "category": [ - 1287 + 1293 ], "tournament_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -104544,10 +105135,10 @@ export default { }, "tournament_categories_stream_cursor_input": { "initial_value": [ - 4604 + 4610 ], "ordering": [ - 308 + 314 ], "__typename": [ 80 @@ -104555,10 +105146,10 @@ export default { }, "tournament_categories_stream_cursor_value_input": { "category": [ - 1287 + 1293 ], "tournament_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -104567,10 +105158,10 @@ export default { "tournament_categories_update_column": {}, "tournament_categories_updates": { "_set": [ - 4602 + 4608 ], "where": [ - 4590 + 4596 ], "__typename": [ 80 @@ -104578,19 +105169,19 @@ export default { }, "tournament_organizer_teams": { "created_at": [ - 4493 + 4499 ], "team": [ - 4446 + 4452 ], "team_id": [ - 4993 + 4999 ], "tournament": [ - 4929 + 4935 ], "tournament_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -104598,10 +105189,10 @@ export default { }, "tournament_organizer_teams_aggregate": { "aggregate": [ - 4611 + 4617 ], "nodes": [ - 4607 + 4613 ], "__typename": [ 80 @@ -104609,7 +105200,7 @@ export default { }, "tournament_organizer_teams_aggregate_bool_exp": { "count": [ - 4610 + 4616 ], "__typename": [ 80 @@ -104617,13 +105208,13 @@ export default { }, "tournament_organizer_teams_aggregate_bool_exp_count": { "arguments": [ - 4625 + 4631 ], "distinct": [ 5 ], "filter": [ - 4614 + 4620 ], "predicate": [ 41 @@ -104637,7 +105228,7 @@ export default { 40, { "columns": [ - 4625, + 4631, "[tournament_organizer_teams_select_column!]" ], "distinct": [ @@ -104646,10 +105237,10 @@ export default { } ], "max": [ - 4617 + 4623 ], "min": [ - 4619 + 4625 ], "__typename": [ 80 @@ -104657,13 +105248,13 @@ export default { }, "tournament_organizer_teams_aggregate_order_by": { "count": [ - 2946 + 2952 ], "max": [ - 4618 + 4624 ], "min": [ - 4620 + 4626 ], "__typename": [ 80 @@ -104671,10 +105262,10 @@ export default { }, "tournament_organizer_teams_arr_rel_insert_input": { "data": [ - 4616 + 4622 ], "on_conflict": [ - 4622 + 4628 ], "__typename": [ 80 @@ -104682,28 +105273,28 @@ export default { }, "tournament_organizer_teams_bool_exp": { "_and": [ - 4614 + 4620 ], "_not": [ - 4614 + 4620 ], "_or": [ - 4614 + 4620 ], "created_at": [ - 4494 + 4500 ], "team": [ - 4457 + 4463 ], "team_id": [ - 4995 + 5001 ], "tournament": [ - 4950 + 4956 ], "tournament_id": [ - 4995 + 5001 ], "__typename": [ 80 @@ -104712,19 +105303,19 @@ export default { "tournament_organizer_teams_constraint": {}, "tournament_organizer_teams_insert_input": { "created_at": [ - 4493 + 4499 ], "team": [ - 4466 + 4472 ], "team_id": [ - 4993 + 4999 ], "tournament": [ - 4959 + 4965 ], "tournament_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -104732,13 +105323,13 @@ export default { }, "tournament_organizer_teams_max_fields": { "created_at": [ - 4493 + 4499 ], "team_id": [ - 4993 + 4999 ], "tournament_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -104746,13 +105337,13 @@ export default { }, "tournament_organizer_teams_max_order_by": { "created_at": [ - 2946 + 2952 ], "team_id": [ - 2946 + 2952 ], "tournament_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -104760,13 +105351,13 @@ export default { }, "tournament_organizer_teams_min_fields": { "created_at": [ - 4493 + 4499 ], "team_id": [ - 4993 + 4999 ], "tournament_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -104774,13 +105365,13 @@ export default { }, "tournament_organizer_teams_min_order_by": { "created_at": [ - 2946 + 2952 ], "team_id": [ - 2946 + 2952 ], "tournament_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -104791,7 +105382,7 @@ export default { 40 ], "returning": [ - 4607 + 4613 ], "__typename": [ 80 @@ -104799,13 +105390,13 @@ export default { }, "tournament_organizer_teams_on_conflict": { "constraint": [ - 4615 + 4621 ], "update_columns": [ - 4629 + 4635 ], "where": [ - 4614 + 4620 ], "__typename": [ 80 @@ -104813,19 +105404,19 @@ export default { }, "tournament_organizer_teams_order_by": { "created_at": [ - 2946 + 2952 ], "team": [ - 4468 + 4474 ], "team_id": [ - 2946 + 2952 ], "tournament": [ - 4961 + 4967 ], "tournament_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -104833,10 +105424,10 @@ export default { }, "tournament_organizer_teams_pk_columns_input": { "team_id": [ - 4993 + 4999 ], "tournament_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -104845,13 +105436,13 @@ export default { "tournament_organizer_teams_select_column": {}, "tournament_organizer_teams_set_input": { "created_at": [ - 4493 + 4499 ], "team_id": [ - 4993 + 4999 ], "tournament_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -104859,10 +105450,10 @@ export default { }, "tournament_organizer_teams_stream_cursor_input": { "initial_value": [ - 4628 + 4634 ], "ordering": [ - 308 + 314 ], "__typename": [ 80 @@ -104870,13 +105461,13 @@ export default { }, "tournament_organizer_teams_stream_cursor_value_input": { "created_at": [ - 4493 + 4499 ], "team_id": [ - 4993 + 4999 ], "tournament_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -104885,10 +105476,10 @@ export default { "tournament_organizer_teams_update_column": {}, "tournament_organizer_teams_updates": { "_set": [ - 4626 + 4632 ], "where": [ - 4614 + 4620 ], "__typename": [ 80 @@ -104896,22 +105487,22 @@ export default { }, "tournament_organizers": { "organization_team": [ - 4446 + 4452 ], "organization_team_id": [ - 4993 + 4999 ], "organizer": [ - 3904 + 3910 ], "steam_id": [ - 252 + 258 ], "tournament": [ - 4929 + 4935 ], "tournament_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -104919,10 +105510,10 @@ export default { }, "tournament_organizers_aggregate": { "aggregate": [ - 4635 + 4641 ], "nodes": [ - 4631 + 4637 ], "__typename": [ 80 @@ -104930,7 +105521,7 @@ export default { }, "tournament_organizers_aggregate_bool_exp": { "count": [ - 4634 + 4640 ], "__typename": [ 80 @@ -104938,13 +105529,13 @@ export default { }, "tournament_organizers_aggregate_bool_exp_count": { "arguments": [ - 4652 + 4658 ], "distinct": [ 5 ], "filter": [ - 4640 + 4646 ], "predicate": [ 41 @@ -104955,13 +105546,13 @@ export default { }, "tournament_organizers_aggregate_fields": { "avg": [ - 4638 + 4644 ], "count": [ 40, { "columns": [ - 4652, + 4658, "[tournament_organizers_select_column!]" ], "distinct": [ @@ -104970,31 +105561,31 @@ export default { } ], "max": [ - 4644 + 4650 ], "min": [ - 4646 + 4652 ], "stddev": [ - 4654 + 4660 ], "stddev_pop": [ - 4656 + 4662 ], "stddev_samp": [ - 4658 + 4664 ], "sum": [ - 4662 + 4668 ], "var_pop": [ - 4666 + 4672 ], "var_samp": [ - 4668 + 4674 ], "variance": [ - 4670 + 4676 ], "__typename": [ 80 @@ -105002,37 +105593,37 @@ export default { }, "tournament_organizers_aggregate_order_by": { "avg": [ - 4639 + 4645 ], "count": [ - 2946 + 2952 ], "max": [ - 4645 + 4651 ], "min": [ - 4647 + 4653 ], "stddev": [ - 4655 + 4661 ], "stddev_pop": [ - 4657 + 4663 ], "stddev_samp": [ - 4659 + 4665 ], "sum": [ - 4663 + 4669 ], "var_pop": [ - 4667 + 4673 ], "var_samp": [ - 4669 + 4675 ], "variance": [ - 4671 + 4677 ], "__typename": [ 80 @@ -105040,10 +105631,10 @@ export default { }, "tournament_organizers_arr_rel_insert_input": { "data": [ - 4643 + 4649 ], "on_conflict": [ - 4649 + 4655 ], "__typename": [ 80 @@ -105059,7 +105650,7 @@ export default { }, "tournament_organizers_avg_order_by": { "steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -105067,31 +105658,31 @@ export default { }, "tournament_organizers_bool_exp": { "_and": [ - 4640 + 4646 ], "_not": [ - 4640 + 4646 ], "_or": [ - 4640 + 4646 ], "organization_team": [ - 4457 + 4463 ], "organization_team_id": [ - 4995 + 5001 ], "organizer": [ - 3908 + 3914 ], "steam_id": [ - 254 + 260 ], "tournament": [ - 4950 + 4956 ], "tournament_id": [ - 4995 + 5001 ], "__typename": [ 80 @@ -105100,7 +105691,7 @@ export default { "tournament_organizers_constraint": {}, "tournament_organizers_inc_input": { "steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -105108,22 +105699,22 @@ export default { }, "tournament_organizers_insert_input": { "organization_team": [ - 4466 + 4472 ], "organization_team_id": [ - 4993 + 4999 ], "organizer": [ - 3915 + 3921 ], "steam_id": [ - 252 + 258 ], "tournament": [ - 4959 + 4965 ], "tournament_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -105131,13 +105722,13 @@ export default { }, "tournament_organizers_max_fields": { "organization_team_id": [ - 4993 + 4999 ], "steam_id": [ - 252 + 258 ], "tournament_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -105145,13 +105736,13 @@ export default { }, "tournament_organizers_max_order_by": { "organization_team_id": [ - 2946 + 2952 ], "steam_id": [ - 2946 + 2952 ], "tournament_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -105159,13 +105750,13 @@ export default { }, "tournament_organizers_min_fields": { "organization_team_id": [ - 4993 + 4999 ], "steam_id": [ - 252 + 258 ], "tournament_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -105173,13 +105764,13 @@ export default { }, "tournament_organizers_min_order_by": { "organization_team_id": [ - 2946 + 2952 ], "steam_id": [ - 2946 + 2952 ], "tournament_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -105190,7 +105781,7 @@ export default { 40 ], "returning": [ - 4631 + 4637 ], "__typename": [ 80 @@ -105198,13 +105789,13 @@ export default { }, "tournament_organizers_on_conflict": { "constraint": [ - 4641 + 4647 ], "update_columns": [ - 4664 + 4670 ], "where": [ - 4640 + 4646 ], "__typename": [ 80 @@ -105212,22 +105803,22 @@ export default { }, "tournament_organizers_order_by": { "organization_team": [ - 4468 + 4474 ], "organization_team_id": [ - 2946 + 2952 ], "organizer": [ - 3917 + 3923 ], "steam_id": [ - 2946 + 2952 ], "tournament": [ - 4961 + 4967 ], "tournament_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -105235,10 +105826,10 @@ export default { }, "tournament_organizers_pk_columns_input": { "steam_id": [ - 252 + 258 ], "tournament_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -105247,13 +105838,13 @@ export default { "tournament_organizers_select_column": {}, "tournament_organizers_set_input": { "organization_team_id": [ - 4993 + 4999 ], "steam_id": [ - 252 + 258 ], "tournament_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -105269,7 +105860,7 @@ export default { }, "tournament_organizers_stddev_order_by": { "steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -105285,7 +105876,7 @@ export default { }, "tournament_organizers_stddev_pop_order_by": { "steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -105301,7 +105892,7 @@ export default { }, "tournament_organizers_stddev_samp_order_by": { "steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -105309,10 +105900,10 @@ export default { }, "tournament_organizers_stream_cursor_input": { "initial_value": [ - 4661 + 4667 ], "ordering": [ - 308 + 314 ], "__typename": [ 80 @@ -105320,13 +105911,13 @@ export default { }, "tournament_organizers_stream_cursor_value_input": { "organization_team_id": [ - 4993 + 4999 ], "steam_id": [ - 252 + 258 ], "tournament_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -105334,7 +105925,7 @@ export default { }, "tournament_organizers_sum_fields": { "steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -105342,7 +105933,7 @@ export default { }, "tournament_organizers_sum_order_by": { "steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -105351,13 +105942,13 @@ export default { "tournament_organizers_update_column": {}, "tournament_organizers_updates": { "_inc": [ - 4642 + 4648 ], "_set": [ - 4653 + 4659 ], "where": [ - 4640 + 4646 ], "__typename": [ 80 @@ -105373,7 +105964,7 @@ export default { }, "tournament_organizers_var_pop_order_by": { "steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -105389,7 +105980,7 @@ export default { }, "tournament_organizers_var_samp_order_by": { "steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -105405,7 +105996,7 @@ export default { }, "tournament_organizers_variance_order_by": { "steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -105413,10 +106004,10 @@ export default { }, "tournament_prizes": { "created_at": [ - 4493 + 4499 ], "id": [ - 4993 + 4999 ], "order": [ 40 @@ -105428,10 +106019,10 @@ export default { 80 ], "tournament": [ - 4929 + 4935 ], "tournament_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -105439,10 +106030,10 @@ export default { }, "tournament_prizes_aggregate": { "aggregate": [ - 4676 + 4682 ], "nodes": [ - 4672 + 4678 ], "__typename": [ 80 @@ -105450,7 +106041,7 @@ export default { }, "tournament_prizes_aggregate_bool_exp": { "count": [ - 4675 + 4681 ], "__typename": [ 80 @@ -105458,13 +106049,13 @@ export default { }, "tournament_prizes_aggregate_bool_exp_count": { "arguments": [ - 4693 + 4699 ], "distinct": [ 5 ], "filter": [ - 4681 + 4687 ], "predicate": [ 41 @@ -105475,13 +106066,13 @@ export default { }, "tournament_prizes_aggregate_fields": { "avg": [ - 4679 + 4685 ], "count": [ 40, { "columns": [ - 4693, + 4699, "[tournament_prizes_select_column!]" ], "distinct": [ @@ -105490,31 +106081,31 @@ export default { } ], "max": [ - 4685 + 4691 ], "min": [ - 4687 + 4693 ], "stddev": [ - 4695 + 4701 ], "stddev_pop": [ - 4697 + 4703 ], "stddev_samp": [ - 4699 + 4705 ], "sum": [ - 4703 + 4709 ], "var_pop": [ - 4707 + 4713 ], "var_samp": [ - 4709 + 4715 ], "variance": [ - 4711 + 4717 ], "__typename": [ 80 @@ -105522,37 +106113,37 @@ export default { }, "tournament_prizes_aggregate_order_by": { "avg": [ - 4680 + 4686 ], "count": [ - 2946 + 2952 ], "max": [ - 4686 + 4692 ], "min": [ - 4688 + 4694 ], "stddev": [ - 4696 + 4702 ], "stddev_pop": [ - 4698 + 4704 ], "stddev_samp": [ - 4700 + 4706 ], "sum": [ - 4704 + 4710 ], "var_pop": [ - 4708 + 4714 ], "var_samp": [ - 4710 + 4716 ], "variance": [ - 4712 + 4718 ], "__typename": [ 80 @@ -105560,10 +106151,10 @@ export default { }, "tournament_prizes_arr_rel_insert_input": { "data": [ - 4684 + 4690 ], "on_conflict": [ - 4690 + 4696 ], "__typename": [ 80 @@ -105579,7 +106170,7 @@ export default { }, "tournament_prizes_avg_order_by": { "order": [ - 2946 + 2952 ], "__typename": [ 80 @@ -105587,19 +106178,19 @@ export default { }, "tournament_prizes_bool_exp": { "_and": [ - 4681 + 4687 ], "_not": [ - 4681 + 4687 ], "_or": [ - 4681 + 4687 ], "created_at": [ - 4494 + 4500 ], "id": [ - 4995 + 5001 ], "order": [ 41 @@ -105611,10 +106202,10 @@ export default { 82 ], "tournament": [ - 4950 + 4956 ], "tournament_id": [ - 4995 + 5001 ], "__typename": [ 80 @@ -105631,10 +106222,10 @@ export default { }, "tournament_prizes_insert_input": { "created_at": [ - 4493 + 4499 ], "id": [ - 4993 + 4999 ], "order": [ 40 @@ -105646,10 +106237,10 @@ export default { 80 ], "tournament": [ - 4959 + 4965 ], "tournament_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -105657,10 +106248,10 @@ export default { }, "tournament_prizes_max_fields": { "created_at": [ - 4493 + 4499 ], "id": [ - 4993 + 4999 ], "order": [ 40 @@ -105672,7 +106263,7 @@ export default { 80 ], "tournament_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -105680,22 +106271,22 @@ export default { }, "tournament_prizes_max_order_by": { "created_at": [ - 2946 + 2952 ], "id": [ - 2946 + 2952 ], "order": [ - 2946 + 2952 ], "place": [ - 2946 + 2952 ], "prize": [ - 2946 + 2952 ], "tournament_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -105703,10 +106294,10 @@ export default { }, "tournament_prizes_min_fields": { "created_at": [ - 4493 + 4499 ], "id": [ - 4993 + 4999 ], "order": [ 40 @@ -105718,7 +106309,7 @@ export default { 80 ], "tournament_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -105726,22 +106317,22 @@ export default { }, "tournament_prizes_min_order_by": { "created_at": [ - 2946 + 2952 ], "id": [ - 2946 + 2952 ], "order": [ - 2946 + 2952 ], "place": [ - 2946 + 2952 ], "prize": [ - 2946 + 2952 ], "tournament_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -105752,7 +106343,7 @@ export default { 40 ], "returning": [ - 4672 + 4678 ], "__typename": [ 80 @@ -105760,13 +106351,13 @@ export default { }, "tournament_prizes_on_conflict": { "constraint": [ - 4682 + 4688 ], "update_columns": [ - 4705 + 4711 ], "where": [ - 4681 + 4687 ], "__typename": [ 80 @@ -105774,25 +106365,25 @@ export default { }, "tournament_prizes_order_by": { "created_at": [ - 2946 + 2952 ], "id": [ - 2946 + 2952 ], "order": [ - 2946 + 2952 ], "place": [ - 2946 + 2952 ], "prize": [ - 2946 + 2952 ], "tournament": [ - 4961 + 4967 ], "tournament_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -105800,7 +106391,7 @@ export default { }, "tournament_prizes_pk_columns_input": { "id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -105809,10 +106400,10 @@ export default { "tournament_prizes_select_column": {}, "tournament_prizes_set_input": { "created_at": [ - 4493 + 4499 ], "id": [ - 4993 + 4999 ], "order": [ 40 @@ -105824,7 +106415,7 @@ export default { 80 ], "tournament_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -105840,7 +106431,7 @@ export default { }, "tournament_prizes_stddev_order_by": { "order": [ - 2946 + 2952 ], "__typename": [ 80 @@ -105856,7 +106447,7 @@ export default { }, "tournament_prizes_stddev_pop_order_by": { "order": [ - 2946 + 2952 ], "__typename": [ 80 @@ -105872,7 +106463,7 @@ export default { }, "tournament_prizes_stddev_samp_order_by": { "order": [ - 2946 + 2952 ], "__typename": [ 80 @@ -105880,10 +106471,10 @@ export default { }, "tournament_prizes_stream_cursor_input": { "initial_value": [ - 4702 + 4708 ], "ordering": [ - 308 + 314 ], "__typename": [ 80 @@ -105891,10 +106482,10 @@ export default { }, "tournament_prizes_stream_cursor_value_input": { "created_at": [ - 4493 + 4499 ], "id": [ - 4993 + 4999 ], "order": [ 40 @@ -105906,7 +106497,7 @@ export default { 80 ], "tournament_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -105922,7 +106513,7 @@ export default { }, "tournament_prizes_sum_order_by": { "order": [ - 2946 + 2952 ], "__typename": [ 80 @@ -105931,13 +106522,13 @@ export default { "tournament_prizes_update_column": {}, "tournament_prizes_updates": { "_inc": [ - 4683 + 4689 ], "_set": [ - 4694 + 4700 ], "where": [ - 4681 + 4687 ], "__typename": [ 80 @@ -105953,7 +106544,7 @@ export default { }, "tournament_prizes_var_pop_order_by": { "order": [ - 2946 + 2952 ], "__typename": [ 80 @@ -105969,7 +106560,7 @@ export default { }, "tournament_prizes_var_samp_order_by": { "order": [ - 2946 + 2952 ], "__typename": [ 80 @@ -105985,7 +106576,7 @@ export default { }, "tournament_prizes_variance_order_by": { "order": [ - 2946 + 2952 ], "__typename": [ 80 @@ -105993,28 +106584,28 @@ export default { }, "tournament_stage_windows": { "closes_at": [ - 4493 + 4499 ], "created_at": [ - 4493 + 4499 ], "default_match_at": [ - 4493 + 4499 ], "id": [ - 4993 + 4999 ], "opens_at": [ - 4493 + 4499 ], "round": [ 40 ], "stage": [ - 4754 + 4760 ], "tournament_stage_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -106022,10 +106613,10 @@ export default { }, "tournament_stage_windows_aggregate": { "aggregate": [ - 4717 + 4723 ], "nodes": [ - 4713 + 4719 ], "__typename": [ 80 @@ -106033,7 +106624,7 @@ export default { }, "tournament_stage_windows_aggregate_bool_exp": { "count": [ - 4716 + 4722 ], "__typename": [ 80 @@ -106041,13 +106632,13 @@ export default { }, "tournament_stage_windows_aggregate_bool_exp_count": { "arguments": [ - 4734 + 4740 ], "distinct": [ 5 ], "filter": [ - 4722 + 4728 ], "predicate": [ 41 @@ -106058,13 +106649,13 @@ export default { }, "tournament_stage_windows_aggregate_fields": { "avg": [ - 4720 + 4726 ], "count": [ 40, { "columns": [ - 4734, + 4740, "[tournament_stage_windows_select_column!]" ], "distinct": [ @@ -106073,31 +106664,31 @@ export default { } ], "max": [ - 4726 + 4732 ], "min": [ - 4728 + 4734 ], "stddev": [ - 4736 + 4742 ], "stddev_pop": [ - 4738 + 4744 ], "stddev_samp": [ - 4740 + 4746 ], "sum": [ - 4744 + 4750 ], "var_pop": [ - 4748 + 4754 ], "var_samp": [ - 4750 + 4756 ], "variance": [ - 4752 + 4758 ], "__typename": [ 80 @@ -106105,37 +106696,37 @@ export default { }, "tournament_stage_windows_aggregate_order_by": { "avg": [ - 4721 + 4727 ], "count": [ - 2946 + 2952 ], "max": [ - 4727 + 4733 ], "min": [ - 4729 + 4735 ], "stddev": [ - 4737 + 4743 ], "stddev_pop": [ - 4739 + 4745 ], "stddev_samp": [ - 4741 + 4747 ], "sum": [ - 4745 + 4751 ], "var_pop": [ - 4749 + 4755 ], "var_samp": [ - 4751 + 4757 ], "variance": [ - 4753 + 4759 ], "__typename": [ 80 @@ -106143,10 +106734,10 @@ export default { }, "tournament_stage_windows_arr_rel_insert_input": { "data": [ - 4725 + 4731 ], "on_conflict": [ - 4731 + 4737 ], "__typename": [ 80 @@ -106162,7 +106753,7 @@ export default { }, "tournament_stage_windows_avg_order_by": { "round": [ - 2946 + 2952 ], "__typename": [ 80 @@ -106170,37 +106761,37 @@ export default { }, "tournament_stage_windows_bool_exp": { "_and": [ - 4722 + 4728 ], "_not": [ - 4722 + 4728 ], "_or": [ - 4722 + 4728 ], "closes_at": [ - 4494 + 4500 ], "created_at": [ - 4494 + 4500 ], "default_match_at": [ - 4494 + 4500 ], "id": [ - 4995 + 5001 ], "opens_at": [ - 4494 + 4500 ], "round": [ 41 ], "stage": [ - 4766 + 4772 ], "tournament_stage_id": [ - 4995 + 5001 ], "__typename": [ 80 @@ -106217,28 +106808,28 @@ export default { }, "tournament_stage_windows_insert_input": { "closes_at": [ - 4493 + 4499 ], "created_at": [ - 4493 + 4499 ], "default_match_at": [ - 4493 + 4499 ], "id": [ - 4993 + 4999 ], "opens_at": [ - 4493 + 4499 ], "round": [ 40 ], "stage": [ - 4778 + 4784 ], "tournament_stage_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -106246,25 +106837,25 @@ export default { }, "tournament_stage_windows_max_fields": { "closes_at": [ - 4493 + 4499 ], "created_at": [ - 4493 + 4499 ], "default_match_at": [ - 4493 + 4499 ], "id": [ - 4993 + 4999 ], "opens_at": [ - 4493 + 4499 ], "round": [ 40 ], "tournament_stage_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -106272,25 +106863,25 @@ export default { }, "tournament_stage_windows_max_order_by": { "closes_at": [ - 2946 + 2952 ], "created_at": [ - 2946 + 2952 ], "default_match_at": [ - 2946 + 2952 ], "id": [ - 2946 + 2952 ], "opens_at": [ - 2946 + 2952 ], "round": [ - 2946 + 2952 ], "tournament_stage_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -106298,25 +106889,25 @@ export default { }, "tournament_stage_windows_min_fields": { "closes_at": [ - 4493 + 4499 ], "created_at": [ - 4493 + 4499 ], "default_match_at": [ - 4493 + 4499 ], "id": [ - 4993 + 4999 ], "opens_at": [ - 4493 + 4499 ], "round": [ 40 ], "tournament_stage_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -106324,25 +106915,25 @@ export default { }, "tournament_stage_windows_min_order_by": { "closes_at": [ - 2946 + 2952 ], "created_at": [ - 2946 + 2952 ], "default_match_at": [ - 2946 + 2952 ], "id": [ - 2946 + 2952 ], "opens_at": [ - 2946 + 2952 ], "round": [ - 2946 + 2952 ], "tournament_stage_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -106353,7 +106944,7 @@ export default { 40 ], "returning": [ - 4713 + 4719 ], "__typename": [ 80 @@ -106361,13 +106952,13 @@ export default { }, "tournament_stage_windows_on_conflict": { "constraint": [ - 4723 + 4729 ], "update_columns": [ - 4746 + 4752 ], "where": [ - 4722 + 4728 ], "__typename": [ 80 @@ -106375,28 +106966,28 @@ export default { }, "tournament_stage_windows_order_by": { "closes_at": [ - 2946 + 2952 ], "created_at": [ - 2946 + 2952 ], "default_match_at": [ - 2946 + 2952 ], "id": [ - 2946 + 2952 ], "opens_at": [ - 2946 + 2952 ], "round": [ - 2946 + 2952 ], "stage": [ - 4780 + 4786 ], "tournament_stage_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -106404,7 +106995,7 @@ export default { }, "tournament_stage_windows_pk_columns_input": { "id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -106413,25 +107004,25 @@ export default { "tournament_stage_windows_select_column": {}, "tournament_stage_windows_set_input": { "closes_at": [ - 4493 + 4499 ], "created_at": [ - 4493 + 4499 ], "default_match_at": [ - 4493 + 4499 ], "id": [ - 4993 + 4999 ], "opens_at": [ - 4493 + 4499 ], "round": [ 40 ], "tournament_stage_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -106447,7 +107038,7 @@ export default { }, "tournament_stage_windows_stddev_order_by": { "round": [ - 2946 + 2952 ], "__typename": [ 80 @@ -106463,7 +107054,7 @@ export default { }, "tournament_stage_windows_stddev_pop_order_by": { "round": [ - 2946 + 2952 ], "__typename": [ 80 @@ -106479,7 +107070,7 @@ export default { }, "tournament_stage_windows_stddev_samp_order_by": { "round": [ - 2946 + 2952 ], "__typename": [ 80 @@ -106487,10 +107078,10 @@ export default { }, "tournament_stage_windows_stream_cursor_input": { "initial_value": [ - 4743 + 4749 ], "ordering": [ - 308 + 314 ], "__typename": [ 80 @@ -106498,25 +107089,25 @@ export default { }, "tournament_stage_windows_stream_cursor_value_input": { "closes_at": [ - 4493 + 4499 ], "created_at": [ - 4493 + 4499 ], "default_match_at": [ - 4493 + 4499 ], "id": [ - 4993 + 4999 ], "opens_at": [ - 4493 + 4499 ], "round": [ 40 ], "tournament_stage_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -106532,7 +107123,7 @@ export default { }, "tournament_stage_windows_sum_order_by": { "round": [ - 2946 + 2952 ], "__typename": [ 80 @@ -106541,13 +107132,13 @@ export default { "tournament_stage_windows_update_column": {}, "tournament_stage_windows_updates": { "_inc": [ - 4724 + 4730 ], "_set": [ - 4735 + 4741 ], "where": [ - 4722 + 4728 ], "__typename": [ 80 @@ -106563,7 +107154,7 @@ export default { }, "tournament_stage_windows_var_pop_order_by": { "round": [ - 2946 + 2952 ], "__typename": [ 80 @@ -106579,7 +107170,7 @@ export default { }, "tournament_stage_windows_var_samp_order_by": { "round": [ - 2946 + 2952 ], "__typename": [ 80 @@ -106595,7 +107186,7 @@ export default { }, "tournament_stage_windows_variance_order_by": { "round": [ - 2946 + 2952 ], "__typename": [ 80 @@ -106603,10 +107194,10 @@ export default { }, "tournament_stages": { "brackets": [ - 4537, + 4543, { "distinct_on": [ - 4561, + 4567, "[tournament_brackets_select_column!]" ], "limit": [ @@ -106616,19 +107207,19 @@ export default { 40 ], "order_by": [ - 4559, + 4565, "[tournament_brackets_order_by!]" ], "where": [ - 4548 + 4554 ] } ], "brackets_aggregate": [ - 4538, + 4544, { "distinct_on": [ - 4561, + 4567, "[tournament_brackets_select_column!]" ], "limit": [ @@ -106638,11 +107229,11 @@ export default { 40 ], "order_by": [ - 4559, + 4565, "[tournament_brackets_order_by!]" ], "where": [ - 4548 + 4554 ] } ], @@ -106653,7 +107244,7 @@ export default { 40 ], "e_tournament_stage_type": [ - 1303 + 1309 ], "final_map_advantage": [ 40 @@ -106662,10 +107253,10 @@ export default { 40 ], "id": [ - 4993 + 4999 ], "match_options_id": [ - 4993 + 4999 ], "max_rounds": [ 40 @@ -106677,16 +107268,16 @@ export default { 40 ], "options": [ - 2641 + 2647 ], "order": [ 40 ], "results": [ - 5717, + 5723, { "distinct_on": [ - 5749, + 5755, "[v_team_stage_results_select_column!]" ], "limit": [ @@ -106696,19 +107287,19 @@ export default { 40 ], "order_by": [ - 5747, + 5753, "[v_team_stage_results_order_by!]" ], "where": [ - 5736 + 5742 ] } ], "results_aggregate": [ - 5718, + 5724, { "distinct_on": [ - 5749, + 5755, "[v_team_stage_results_select_column!]" ], "limit": [ @@ -106718,16 +107309,16 @@ export default { 40 ], "order_by": [ - 5747, + 5753, "[v_team_stage_results_order_by!]" ], "where": [ - 5736 + 5742 ] } ], "settings": [ - 1817, + 1823, { "path": [ 80 @@ -106741,19 +107332,19 @@ export default { 5 ], "tournament": [ - 4929 + 4935 ], "tournament_id": [ - 4993 + 4999 ], "type": [ - 1308 + 1314 ], "windows": [ - 4713, + 4719, { "distinct_on": [ - 4734, + 4740, "[tournament_stage_windows_select_column!]" ], "limit": [ @@ -106763,19 +107354,19 @@ export default { 40 ], "order_by": [ - 4732, + 4738, "[tournament_stage_windows_order_by!]" ], "where": [ - 4722 + 4728 ] } ], "windows_aggregate": [ - 4714, + 4720, { "distinct_on": [ - 4734, + 4740, "[tournament_stage_windows_select_column!]" ], "limit": [ @@ -106785,11 +107376,11 @@ export default { 40 ], "order_by": [ - 4732, + 4738, "[tournament_stage_windows_order_by!]" ], "where": [ - 4722 + 4728 ] } ], @@ -106799,10 +107390,10 @@ export default { }, "tournament_stages_aggregate": { "aggregate": [ - 4760 + 4766 ], "nodes": [ - 4754 + 4760 ], "__typename": [ 80 @@ -106810,13 +107401,13 @@ export default { }, "tournament_stages_aggregate_bool_exp": { "bool_and": [ - 4757 + 4763 ], "bool_or": [ - 4758 + 4764 ], "count": [ - 4759 + 4765 ], "__typename": [ 80 @@ -106824,13 +107415,13 @@ export default { }, "tournament_stages_aggregate_bool_exp_bool_and": { "arguments": [ - 4784 + 4790 ], "distinct": [ 5 ], "filter": [ - 4766 + 4772 ], "predicate": [ 6 @@ -106841,13 +107432,13 @@ export default { }, "tournament_stages_aggregate_bool_exp_bool_or": { "arguments": [ - 4785 + 4791 ], "distinct": [ 5 ], "filter": [ - 4766 + 4772 ], "predicate": [ 6 @@ -106858,13 +107449,13 @@ export default { }, "tournament_stages_aggregate_bool_exp_count": { "arguments": [ - 4783 + 4789 ], "distinct": [ 5 ], "filter": [ - 4766 + 4772 ], "predicate": [ 41 @@ -106875,13 +107466,13 @@ export default { }, "tournament_stages_aggregate_fields": { "avg": [ - 4764 + 4770 ], "count": [ 40, { "columns": [ - 4783, + 4789, "[tournament_stages_select_column!]" ], "distinct": [ @@ -106890,31 +107481,31 @@ export default { } ], "max": [ - 4773 + 4779 ], "min": [ - 4775 + 4781 ], "stddev": [ - 4787 + 4793 ], "stddev_pop": [ - 4789 + 4795 ], "stddev_samp": [ - 4791 + 4797 ], "sum": [ - 4795 + 4801 ], "var_pop": [ - 4799 + 4805 ], "var_samp": [ - 4801 + 4807 ], "variance": [ - 4803 + 4809 ], "__typename": [ 80 @@ -106922,37 +107513,37 @@ export default { }, "tournament_stages_aggregate_order_by": { "avg": [ - 4765 + 4771 ], "count": [ - 2946 + 2952 ], "max": [ - 4774 + 4780 ], "min": [ - 4776 + 4782 ], "stddev": [ - 4788 + 4794 ], "stddev_pop": [ - 4790 + 4796 ], "stddev_samp": [ - 4792 + 4798 ], "sum": [ - 4796 + 4802 ], "var_pop": [ - 4800 + 4806 ], "var_samp": [ - 4802 + 4808 ], "variance": [ - 4804 + 4810 ], "__typename": [ 80 @@ -106960,7 +107551,7 @@ export default { }, "tournament_stages_append_input": { "settings": [ - 1817 + 1823 ], "__typename": [ 80 @@ -106968,10 +107559,10 @@ export default { }, "tournament_stages_arr_rel_insert_input": { "data": [ - 4772 + 4778 ], "on_conflict": [ - 4779 + 4785 ], "__typename": [ 80 @@ -107008,28 +107599,28 @@ export default { }, "tournament_stages_avg_order_by": { "decider_best_of": [ - 2946 + 2952 ], "default_best_of": [ - 2946 + 2952 ], "final_map_advantage": [ - 2946 + 2952 ], "groups": [ - 2946 + 2952 ], "max_rounds": [ - 2946 + 2952 ], "max_teams": [ - 2946 + 2952 ], "min_teams": [ - 2946 + 2952 ], "order": [ - 2946 + 2952 ], "__typename": [ 80 @@ -107037,19 +107628,19 @@ export default { }, "tournament_stages_bool_exp": { "_and": [ - 4766 + 4772 ], "_not": [ - 4766 + 4772 ], "_or": [ - 4766 + 4772 ], "brackets": [ - 4548 + 4554 ], "brackets_aggregate": [ - 4539 + 4545 ], "decider_best_of": [ 41 @@ -107058,7 +107649,7 @@ export default { 41 ], "e_tournament_stage_type": [ - 1306 + 1312 ], "final_map_advantage": [ 41 @@ -107067,10 +107658,10 @@ export default { 41 ], "id": [ - 4995 + 5001 ], "match_options_id": [ - 4995 + 5001 ], "max_rounds": [ 41 @@ -107082,19 +107673,19 @@ export default { 41 ], "options": [ - 2645 + 2651 ], "order": [ 41 ], "results": [ - 5736 + 5742 ], "results_aggregate": [ - 5719 + 5725 ], "settings": [ - 1819 + 1825 ], "swiss_no_elimination": [ 6 @@ -107103,19 +107694,19 @@ export default { 6 ], "tournament": [ - 4950 + 4956 ], "tournament_id": [ - 4995 + 5001 ], "type": [ - 1309 + 1315 ], "windows": [ - 4722 + 4728 ], "windows_aggregate": [ - 4715 + 4721 ], "__typename": [ 80 @@ -107177,7 +107768,7 @@ export default { }, "tournament_stages_insert_input": { "brackets": [ - 4545 + 4551 ], "decider_best_of": [ 40 @@ -107186,7 +107777,7 @@ export default { 40 ], "e_tournament_stage_type": [ - 1314 + 1320 ], "final_map_advantage": [ 40 @@ -107195,10 +107786,10 @@ export default { 40 ], "id": [ - 4993 + 4999 ], "match_options_id": [ - 4993 + 4999 ], "max_rounds": [ 40 @@ -107210,16 +107801,16 @@ export default { 40 ], "options": [ - 2652 + 2658 ], "order": [ 40 ], "results": [ - 5733 + 5739 ], "settings": [ - 1817 + 1823 ], "swiss_no_elimination": [ 5 @@ -107228,16 +107819,16 @@ export default { 5 ], "tournament": [ - 4959 + 4965 ], "tournament_id": [ - 4993 + 4999 ], "type": [ - 1308 + 1314 ], "windows": [ - 4719 + 4725 ], "__typename": [ 80 @@ -107257,10 +107848,10 @@ export default { 40 ], "id": [ - 4993 + 4999 ], "match_options_id": [ - 4993 + 4999 ], "max_rounds": [ 40 @@ -107275,7 +107866,7 @@ export default { 40 ], "tournament_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -107283,37 +107874,37 @@ export default { }, "tournament_stages_max_order_by": { "decider_best_of": [ - 2946 + 2952 ], "default_best_of": [ - 2946 + 2952 ], "final_map_advantage": [ - 2946 + 2952 ], "groups": [ - 2946 + 2952 ], "id": [ - 2946 + 2952 ], "match_options_id": [ - 2946 + 2952 ], "max_rounds": [ - 2946 + 2952 ], "max_teams": [ - 2946 + 2952 ], "min_teams": [ - 2946 + 2952 ], "order": [ - 2946 + 2952 ], "tournament_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -107333,10 +107924,10 @@ export default { 40 ], "id": [ - 4993 + 4999 ], "match_options_id": [ - 4993 + 4999 ], "max_rounds": [ 40 @@ -107351,7 +107942,7 @@ export default { 40 ], "tournament_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -107359,37 +107950,37 @@ export default { }, "tournament_stages_min_order_by": { "decider_best_of": [ - 2946 + 2952 ], "default_best_of": [ - 2946 + 2952 ], "final_map_advantage": [ - 2946 + 2952 ], "groups": [ - 2946 + 2952 ], "id": [ - 2946 + 2952 ], "match_options_id": [ - 2946 + 2952 ], "max_rounds": [ - 2946 + 2952 ], "max_teams": [ - 2946 + 2952 ], "min_teams": [ - 2946 + 2952 ], "order": [ - 2946 + 2952 ], "tournament_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -107400,7 +107991,7 @@ export default { 40 ], "returning": [ - 4754 + 4760 ], "__typename": [ 80 @@ -107408,10 +107999,10 @@ export default { }, "tournament_stages_obj_rel_insert_input": { "data": [ - 4772 + 4778 ], "on_conflict": [ - 4779 + 4785 ], "__typename": [ 80 @@ -107419,13 +108010,13 @@ export default { }, "tournament_stages_on_conflict": { "constraint": [ - 4767 + 4773 ], "update_columns": [ - 4797 + 4803 ], "where": [ - 4766 + 4772 ], "__typename": [ 80 @@ -107433,67 +108024,67 @@ export default { }, "tournament_stages_order_by": { "brackets_aggregate": [ - 4544 + 4550 ], "decider_best_of": [ - 2946 + 2952 ], "default_best_of": [ - 2946 + 2952 ], "e_tournament_stage_type": [ - 1316 + 1322 ], "final_map_advantage": [ - 2946 + 2952 ], "groups": [ - 2946 + 2952 ], "id": [ - 2946 + 2952 ], "match_options_id": [ - 2946 + 2952 ], "max_rounds": [ - 2946 + 2952 ], "max_teams": [ - 2946 + 2952 ], "min_teams": [ - 2946 + 2952 ], "options": [ - 2654 + 2660 ], "order": [ - 2946 + 2952 ], "results_aggregate": [ - 5732 + 5738 ], "settings": [ - 2946 + 2952 ], "swiss_no_elimination": [ - 2946 + 2952 ], "third_place_match": [ - 2946 + 2952 ], "tournament": [ - 4961 + 4967 ], "tournament_id": [ - 2946 + 2952 ], "type": [ - 2946 + 2952 ], "windows_aggregate": [ - 4718 + 4724 ], "__typename": [ 80 @@ -107501,7 +108092,7 @@ export default { }, "tournament_stages_pk_columns_input": { "id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -107509,7 +108100,7 @@ export default { }, "tournament_stages_prepend_input": { "settings": [ - 1817 + 1823 ], "__typename": [ 80 @@ -107532,10 +108123,10 @@ export default { 40 ], "id": [ - 4993 + 4999 ], "match_options_id": [ - 4993 + 4999 ], "max_rounds": [ 40 @@ -107550,7 +108141,7 @@ export default { 40 ], "settings": [ - 1817 + 1823 ], "swiss_no_elimination": [ 5 @@ -107559,10 +108150,10 @@ export default { 5 ], "tournament_id": [ - 4993 + 4999 ], "type": [ - 1308 + 1314 ], "__typename": [ 80 @@ -107599,28 +108190,28 @@ export default { }, "tournament_stages_stddev_order_by": { "decider_best_of": [ - 2946 + 2952 ], "default_best_of": [ - 2946 + 2952 ], "final_map_advantage": [ - 2946 + 2952 ], "groups": [ - 2946 + 2952 ], "max_rounds": [ - 2946 + 2952 ], "max_teams": [ - 2946 + 2952 ], "min_teams": [ - 2946 + 2952 ], "order": [ - 2946 + 2952 ], "__typename": [ 80 @@ -107657,28 +108248,28 @@ export default { }, "tournament_stages_stddev_pop_order_by": { "decider_best_of": [ - 2946 + 2952 ], "default_best_of": [ - 2946 + 2952 ], "final_map_advantage": [ - 2946 + 2952 ], "groups": [ - 2946 + 2952 ], "max_rounds": [ - 2946 + 2952 ], "max_teams": [ - 2946 + 2952 ], "min_teams": [ - 2946 + 2952 ], "order": [ - 2946 + 2952 ], "__typename": [ 80 @@ -107715,28 +108306,28 @@ export default { }, "tournament_stages_stddev_samp_order_by": { "decider_best_of": [ - 2946 + 2952 ], "default_best_of": [ - 2946 + 2952 ], "final_map_advantage": [ - 2946 + 2952 ], "groups": [ - 2946 + 2952 ], "max_rounds": [ - 2946 + 2952 ], "max_teams": [ - 2946 + 2952 ], "min_teams": [ - 2946 + 2952 ], "order": [ - 2946 + 2952 ], "__typename": [ 80 @@ -107744,10 +108335,10 @@ export default { }, "tournament_stages_stream_cursor_input": { "initial_value": [ - 4794 + 4800 ], "ordering": [ - 308 + 314 ], "__typename": [ 80 @@ -107767,10 +108358,10 @@ export default { 40 ], "id": [ - 4993 + 4999 ], "match_options_id": [ - 4993 + 4999 ], "max_rounds": [ 40 @@ -107785,7 +108376,7 @@ export default { 40 ], "settings": [ - 1817 + 1823 ], "swiss_no_elimination": [ 5 @@ -107794,10 +108385,10 @@ export default { 5 ], "tournament_id": [ - 4993 + 4999 ], "type": [ - 1308 + 1314 ], "__typename": [ 80 @@ -107834,28 +108425,28 @@ export default { }, "tournament_stages_sum_order_by": { "decider_best_of": [ - 2946 + 2952 ], "default_best_of": [ - 2946 + 2952 ], "final_map_advantage": [ - 2946 + 2952 ], "groups": [ - 2946 + 2952 ], "max_rounds": [ - 2946 + 2952 ], "max_teams": [ - 2946 + 2952 ], "min_teams": [ - 2946 + 2952 ], "order": [ - 2946 + 2952 ], "__typename": [ 80 @@ -107864,28 +108455,28 @@ export default { "tournament_stages_update_column": {}, "tournament_stages_updates": { "_append": [ - 4762 + 4768 ], "_delete_at_path": [ - 4768 + 4774 ], "_delete_elem": [ - 4769 + 4775 ], "_delete_key": [ - 4770 + 4776 ], "_inc": [ - 4771 + 4777 ], "_prepend": [ - 4782 + 4788 ], "_set": [ - 4786 + 4792 ], "where": [ - 4766 + 4772 ], "__typename": [ 80 @@ -107922,28 +108513,28 @@ export default { }, "tournament_stages_var_pop_order_by": { "decider_best_of": [ - 2946 + 2952 ], "default_best_of": [ - 2946 + 2952 ], "final_map_advantage": [ - 2946 + 2952 ], "groups": [ - 2946 + 2952 ], "max_rounds": [ - 2946 + 2952 ], "max_teams": [ - 2946 + 2952 ], "min_teams": [ - 2946 + 2952 ], "order": [ - 2946 + 2952 ], "__typename": [ 80 @@ -107980,28 +108571,28 @@ export default { }, "tournament_stages_var_samp_order_by": { "decider_best_of": [ - 2946 + 2952 ], "default_best_of": [ - 2946 + 2952 ], "final_map_advantage": [ - 2946 + 2952 ], "groups": [ - 2946 + 2952 ], "max_rounds": [ - 2946 + 2952 ], "max_teams": [ - 2946 + 2952 ], "min_teams": [ - 2946 + 2952 ], "order": [ - 2946 + 2952 ], "__typename": [ 80 @@ -108038,28 +108629,28 @@ export default { }, "tournament_stages_variance_order_by": { "decider_best_of": [ - 2946 + 2952 ], "default_best_of": [ - 2946 + 2952 ], "final_map_advantage": [ - 2946 + 2952 ], "groups": [ - 2946 + 2952 ], "max_rounds": [ - 2946 + 2952 ], "max_teams": [ - 2946 + 2952 ], "min_teams": [ - 2946 + 2952 ], "order": [ - 2946 + 2952 ], "__typename": [ 80 @@ -108067,28 +108658,28 @@ export default { }, "tournament_team_invites": { "created_at": [ - 4493 + 4499 ], "id": [ - 4993 + 4999 ], "invited_by": [ - 3904 + 3910 ], "invited_by_player_steam_id": [ - 252 + 258 ], "player": [ - 3904 + 3910 ], "steam_id": [ - 252 + 258 ], "team": [ - 4887 + 4893 ], "tournament_team_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -108096,10 +108687,10 @@ export default { }, "tournament_team_invites_aggregate": { "aggregate": [ - 4809 + 4815 ], "nodes": [ - 4805 + 4811 ], "__typename": [ 80 @@ -108107,7 +108698,7 @@ export default { }, "tournament_team_invites_aggregate_bool_exp": { "count": [ - 4808 + 4814 ], "__typename": [ 80 @@ -108115,13 +108706,13 @@ export default { }, "tournament_team_invites_aggregate_bool_exp_count": { "arguments": [ - 4826 + 4832 ], "distinct": [ 5 ], "filter": [ - 4814 + 4820 ], "predicate": [ 41 @@ -108132,13 +108723,13 @@ export default { }, "tournament_team_invites_aggregate_fields": { "avg": [ - 4812 + 4818 ], "count": [ 40, { "columns": [ - 4826, + 4832, "[tournament_team_invites_select_column!]" ], "distinct": [ @@ -108147,31 +108738,31 @@ export default { } ], "max": [ - 4818 + 4824 ], "min": [ - 4820 + 4826 ], "stddev": [ - 4828 + 4834 ], "stddev_pop": [ - 4830 + 4836 ], "stddev_samp": [ - 4832 + 4838 ], "sum": [ - 4836 + 4842 ], "var_pop": [ - 4840 + 4846 ], "var_samp": [ - 4842 + 4848 ], "variance": [ - 4844 + 4850 ], "__typename": [ 80 @@ -108179,37 +108770,37 @@ export default { }, "tournament_team_invites_aggregate_order_by": { "avg": [ - 4813 + 4819 ], "count": [ - 2946 + 2952 ], "max": [ - 4819 + 4825 ], "min": [ - 4821 + 4827 ], "stddev": [ - 4829 + 4835 ], "stddev_pop": [ - 4831 + 4837 ], "stddev_samp": [ - 4833 + 4839 ], "sum": [ - 4837 + 4843 ], "var_pop": [ - 4841 + 4847 ], "var_samp": [ - 4843 + 4849 ], "variance": [ - 4845 + 4851 ], "__typename": [ 80 @@ -108217,10 +108808,10 @@ export default { }, "tournament_team_invites_arr_rel_insert_input": { "data": [ - 4817 + 4823 ], "on_conflict": [ - 4823 + 4829 ], "__typename": [ 80 @@ -108239,10 +108830,10 @@ export default { }, "tournament_team_invites_avg_order_by": { "invited_by_player_steam_id": [ - 2946 + 2952 ], "steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -108250,37 +108841,37 @@ export default { }, "tournament_team_invites_bool_exp": { "_and": [ - 4814 + 4820 ], "_not": [ - 4814 + 4820 ], "_or": [ - 4814 + 4820 ], "created_at": [ - 4494 + 4500 ], "id": [ - 4995 + 5001 ], "invited_by": [ - 3908 + 3914 ], "invited_by_player_steam_id": [ - 254 + 260 ], "player": [ - 3908 + 3914 ], "steam_id": [ - 254 + 260 ], "team": [ - 4896 + 4902 ], "tournament_team_id": [ - 4995 + 5001 ], "__typename": [ 80 @@ -108289,10 +108880,10 @@ export default { "tournament_team_invites_constraint": {}, "tournament_team_invites_inc_input": { "invited_by_player_steam_id": [ - 252 + 258 ], "steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -108300,28 +108891,28 @@ export default { }, "tournament_team_invites_insert_input": { "created_at": [ - 4493 + 4499 ], "id": [ - 4993 + 4999 ], "invited_by": [ - 3915 + 3921 ], "invited_by_player_steam_id": [ - 252 + 258 ], "player": [ - 3915 + 3921 ], "steam_id": [ - 252 + 258 ], "team": [ - 4905 + 4911 ], "tournament_team_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -108329,19 +108920,19 @@ export default { }, "tournament_team_invites_max_fields": { "created_at": [ - 4493 + 4499 ], "id": [ - 4993 + 4999 ], "invited_by_player_steam_id": [ - 252 + 258 ], "steam_id": [ - 252 + 258 ], "tournament_team_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -108349,19 +108940,19 @@ export default { }, "tournament_team_invites_max_order_by": { "created_at": [ - 2946 + 2952 ], "id": [ - 2946 + 2952 ], "invited_by_player_steam_id": [ - 2946 + 2952 ], "steam_id": [ - 2946 + 2952 ], "tournament_team_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -108369,19 +108960,19 @@ export default { }, "tournament_team_invites_min_fields": { "created_at": [ - 4493 + 4499 ], "id": [ - 4993 + 4999 ], "invited_by_player_steam_id": [ - 252 + 258 ], "steam_id": [ - 252 + 258 ], "tournament_team_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -108389,19 +108980,19 @@ export default { }, "tournament_team_invites_min_order_by": { "created_at": [ - 2946 + 2952 ], "id": [ - 2946 + 2952 ], "invited_by_player_steam_id": [ - 2946 + 2952 ], "steam_id": [ - 2946 + 2952 ], "tournament_team_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -108412,7 +109003,7 @@ export default { 40 ], "returning": [ - 4805 + 4811 ], "__typename": [ 80 @@ -108420,13 +109011,13 @@ export default { }, "tournament_team_invites_on_conflict": { "constraint": [ - 4815 + 4821 ], "update_columns": [ - 4838 + 4844 ], "where": [ - 4814 + 4820 ], "__typename": [ 80 @@ -108434,28 +109025,28 @@ export default { }, "tournament_team_invites_order_by": { "created_at": [ - 2946 + 2952 ], "id": [ - 2946 + 2952 ], "invited_by": [ - 3917 + 3923 ], "invited_by_player_steam_id": [ - 2946 + 2952 ], "player": [ - 3917 + 3923 ], "steam_id": [ - 2946 + 2952 ], "team": [ - 4907 + 4913 ], "tournament_team_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -108463,7 +109054,7 @@ export default { }, "tournament_team_invites_pk_columns_input": { "id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -108472,19 +109063,19 @@ export default { "tournament_team_invites_select_column": {}, "tournament_team_invites_set_input": { "created_at": [ - 4493 + 4499 ], "id": [ - 4993 + 4999 ], "invited_by_player_steam_id": [ - 252 + 258 ], "steam_id": [ - 252 + 258 ], "tournament_team_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -108503,10 +109094,10 @@ export default { }, "tournament_team_invites_stddev_order_by": { "invited_by_player_steam_id": [ - 2946 + 2952 ], "steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -108525,10 +109116,10 @@ export default { }, "tournament_team_invites_stddev_pop_order_by": { "invited_by_player_steam_id": [ - 2946 + 2952 ], "steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -108547,10 +109138,10 @@ export default { }, "tournament_team_invites_stddev_samp_order_by": { "invited_by_player_steam_id": [ - 2946 + 2952 ], "steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -108558,10 +109149,10 @@ export default { }, "tournament_team_invites_stream_cursor_input": { "initial_value": [ - 4835 + 4841 ], "ordering": [ - 308 + 314 ], "__typename": [ 80 @@ -108569,19 +109160,19 @@ export default { }, "tournament_team_invites_stream_cursor_value_input": { "created_at": [ - 4493 + 4499 ], "id": [ - 4993 + 4999 ], "invited_by_player_steam_id": [ - 252 + 258 ], "steam_id": [ - 252 + 258 ], "tournament_team_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -108589,10 +109180,10 @@ export default { }, "tournament_team_invites_sum_fields": { "invited_by_player_steam_id": [ - 252 + 258 ], "steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -108600,10 +109191,10 @@ export default { }, "tournament_team_invites_sum_order_by": { "invited_by_player_steam_id": [ - 2946 + 2952 ], "steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -108612,13 +109203,13 @@ export default { "tournament_team_invites_update_column": {}, "tournament_team_invites_updates": { "_inc": [ - 4816 + 4822 ], "_set": [ - 4827 + 4833 ], "where": [ - 4814 + 4820 ], "__typename": [ 80 @@ -108637,10 +109228,10 @@ export default { }, "tournament_team_invites_var_pop_order_by": { "invited_by_player_steam_id": [ - 2946 + 2952 ], "steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -108659,10 +109250,10 @@ export default { }, "tournament_team_invites_var_samp_order_by": { "invited_by_player_steam_id": [ - 2946 + 2952 ], "steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -108681,10 +109272,10 @@ export default { }, "tournament_team_invites_variance_order_by": { "invited_by_player_steam_id": [ - 2946 + 2952 ], "steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -108692,28 +109283,28 @@ export default { }, "tournament_team_roster": { "e_team_role": [ - 1221 + 1227 ], "player": [ - 3904 + 3910 ], "player_steam_id": [ - 252 + 258 ], "role": [ - 1226 + 1232 ], "tournament": [ - 4929 + 4935 ], "tournament_id": [ - 4993 + 4999 ], "tournament_team": [ - 4887 + 4893 ], "tournament_team_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -108721,10 +109312,10 @@ export default { }, "tournament_team_roster_aggregate": { "aggregate": [ - 4850 + 4856 ], "nodes": [ - 4846 + 4852 ], "__typename": [ 80 @@ -108732,7 +109323,7 @@ export default { }, "tournament_team_roster_aggregate_bool_exp": { "count": [ - 4849 + 4855 ], "__typename": [ 80 @@ -108740,13 +109331,13 @@ export default { }, "tournament_team_roster_aggregate_bool_exp_count": { "arguments": [ - 4867 + 4873 ], "distinct": [ 5 ], "filter": [ - 4855 + 4861 ], "predicate": [ 41 @@ -108757,13 +109348,13 @@ export default { }, "tournament_team_roster_aggregate_fields": { "avg": [ - 4853 + 4859 ], "count": [ 40, { "columns": [ - 4867, + 4873, "[tournament_team_roster_select_column!]" ], "distinct": [ @@ -108772,31 +109363,31 @@ export default { } ], "max": [ - 4859 + 4865 ], "min": [ - 4861 + 4867 ], "stddev": [ - 4869 + 4875 ], "stddev_pop": [ - 4871 + 4877 ], "stddev_samp": [ - 4873 + 4879 ], "sum": [ - 4877 + 4883 ], "var_pop": [ - 4881 + 4887 ], "var_samp": [ - 4883 + 4889 ], "variance": [ - 4885 + 4891 ], "__typename": [ 80 @@ -108804,37 +109395,37 @@ export default { }, "tournament_team_roster_aggregate_order_by": { "avg": [ - 4854 + 4860 ], "count": [ - 2946 + 2952 ], "max": [ - 4860 + 4866 ], "min": [ - 4862 + 4868 ], "stddev": [ - 4870 + 4876 ], "stddev_pop": [ - 4872 + 4878 ], "stddev_samp": [ - 4874 + 4880 ], "sum": [ - 4878 + 4884 ], "var_pop": [ - 4882 + 4888 ], "var_samp": [ - 4884 + 4890 ], "variance": [ - 4886 + 4892 ], "__typename": [ 80 @@ -108842,10 +109433,10 @@ export default { }, "tournament_team_roster_arr_rel_insert_input": { "data": [ - 4858 + 4864 ], "on_conflict": [ - 4864 + 4870 ], "__typename": [ 80 @@ -108861,7 +109452,7 @@ export default { }, "tournament_team_roster_avg_order_by": { "player_steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -108869,37 +109460,37 @@ export default { }, "tournament_team_roster_bool_exp": { "_and": [ - 4855 + 4861 ], "_not": [ - 4855 + 4861 ], "_or": [ - 4855 + 4861 ], "e_team_role": [ - 1224 + 1230 ], "player": [ - 3908 + 3914 ], "player_steam_id": [ - 254 + 260 ], "role": [ - 1227 + 1233 ], "tournament": [ - 4950 + 4956 ], "tournament_id": [ - 4995 + 5001 ], "tournament_team": [ - 4896 + 4902 ], "tournament_team_id": [ - 4995 + 5001 ], "__typename": [ 80 @@ -108908,7 +109499,7 @@ export default { "tournament_team_roster_constraint": {}, "tournament_team_roster_inc_input": { "player_steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -108916,28 +109507,28 @@ export default { }, "tournament_team_roster_insert_input": { "e_team_role": [ - 1232 + 1238 ], "player": [ - 3915 + 3921 ], "player_steam_id": [ - 252 + 258 ], "role": [ - 1226 + 1232 ], "tournament": [ - 4959 + 4965 ], "tournament_id": [ - 4993 + 4999 ], "tournament_team": [ - 4905 + 4911 ], "tournament_team_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -108945,13 +109536,13 @@ export default { }, "tournament_team_roster_max_fields": { "player_steam_id": [ - 252 + 258 ], "tournament_id": [ - 4993 + 4999 ], "tournament_team_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -108959,13 +109550,13 @@ export default { }, "tournament_team_roster_max_order_by": { "player_steam_id": [ - 2946 + 2952 ], "tournament_id": [ - 2946 + 2952 ], "tournament_team_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -108973,13 +109564,13 @@ export default { }, "tournament_team_roster_min_fields": { "player_steam_id": [ - 252 + 258 ], "tournament_id": [ - 4993 + 4999 ], "tournament_team_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -108987,13 +109578,13 @@ export default { }, "tournament_team_roster_min_order_by": { "player_steam_id": [ - 2946 + 2952 ], "tournament_id": [ - 2946 + 2952 ], "tournament_team_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -109004,7 +109595,7 @@ export default { 40 ], "returning": [ - 4846 + 4852 ], "__typename": [ 80 @@ -109012,13 +109603,13 @@ export default { }, "tournament_team_roster_on_conflict": { "constraint": [ - 4856 + 4862 ], "update_columns": [ - 4879 + 4885 ], "where": [ - 4855 + 4861 ], "__typename": [ 80 @@ -109026,28 +109617,28 @@ export default { }, "tournament_team_roster_order_by": { "e_team_role": [ - 1234 + 1240 ], "player": [ - 3917 + 3923 ], "player_steam_id": [ - 2946 + 2952 ], "role": [ - 2946 + 2952 ], "tournament": [ - 4961 + 4967 ], "tournament_id": [ - 2946 + 2952 ], "tournament_team": [ - 4907 + 4913 ], "tournament_team_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -109055,10 +109646,10 @@ export default { }, "tournament_team_roster_pk_columns_input": { "player_steam_id": [ - 252 + 258 ], "tournament_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -109067,16 +109658,16 @@ export default { "tournament_team_roster_select_column": {}, "tournament_team_roster_set_input": { "player_steam_id": [ - 252 + 258 ], "role": [ - 1226 + 1232 ], "tournament_id": [ - 4993 + 4999 ], "tournament_team_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -109092,7 +109683,7 @@ export default { }, "tournament_team_roster_stddev_order_by": { "player_steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -109108,7 +109699,7 @@ export default { }, "tournament_team_roster_stddev_pop_order_by": { "player_steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -109124,7 +109715,7 @@ export default { }, "tournament_team_roster_stddev_samp_order_by": { "player_steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -109132,10 +109723,10 @@ export default { }, "tournament_team_roster_stream_cursor_input": { "initial_value": [ - 4876 + 4882 ], "ordering": [ - 308 + 314 ], "__typename": [ 80 @@ -109143,16 +109734,16 @@ export default { }, "tournament_team_roster_stream_cursor_value_input": { "player_steam_id": [ - 252 + 258 ], "role": [ - 1226 + 1232 ], "tournament_id": [ - 4993 + 4999 ], "tournament_team_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -109160,7 +109751,7 @@ export default { }, "tournament_team_roster_sum_fields": { "player_steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -109168,7 +109759,7 @@ export default { }, "tournament_team_roster_sum_order_by": { "player_steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -109177,13 +109768,13 @@ export default { "tournament_team_roster_update_column": {}, "tournament_team_roster_updates": { "_inc": [ - 4857 + 4863 ], "_set": [ - 4868 + 4874 ], "where": [ - 4855 + 4861 ], "__typename": [ 80 @@ -109199,7 +109790,7 @@ export default { }, "tournament_team_roster_var_pop_order_by": { "player_steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -109215,7 +109806,7 @@ export default { }, "tournament_team_roster_var_samp_order_by": { "player_steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -109231,7 +109822,7 @@ export default { }, "tournament_team_roster_variance_order_by": { "player_steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -109242,28 +109833,28 @@ export default { 5 ], "captain": [ - 3904 + 3910 ], "captain_steam_id": [ - 252 + 258 ], "created_at": [ - 4493 + 4499 ], "creator": [ - 3904 + 3910 ], "eligible_at": [ - 4493 + 4499 ], "id": [ - 4993 + 4999 ], "invites": [ - 4805, + 4811, { "distinct_on": [ - 4826, + 4832, "[tournament_team_invites_select_column!]" ], "limit": [ @@ -109273,19 +109864,19 @@ export default { 40 ], "order_by": [ - 4824, + 4830, "[tournament_team_invites_order_by!]" ], "where": [ - 4814 + 4820 ] } ], "invites_aggregate": [ - 4806, + 4812, { "distinct_on": [ - 4826, + 4832, "[tournament_team_invites_select_column!]" ], "limit": [ @@ -109295,11 +109886,11 @@ export default { 40 ], "order_by": [ - 4824, + 4830, "[tournament_team_invites_order_by!]" ], "where": [ - 4814 + 4820 ] } ], @@ -109307,16 +109898,16 @@ export default { 80 ], "owner_steam_id": [ - 252 + 258 ], "results": [ - 5717 + 5723 ], "roster": [ - 4846, + 4852, { "distinct_on": [ - 4867, + 4873, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -109326,19 +109917,19 @@ export default { 40 ], "order_by": [ - 4865, + 4871, "[tournament_team_roster_order_by!]" ], "where": [ - 4855 + 4861 ] } ], "roster_aggregate": [ - 4847, + 4853, { "distinct_on": [ - 4867, + 4873, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -109348,11 +109939,11 @@ export default { 40 ], "order_by": [ - 4865, + 4871, "[tournament_team_roster_order_by!]" ], "where": [ - 4855 + 4861 ] } ], @@ -109363,16 +109954,16 @@ export default { 80 ], "team": [ - 4446 + 4452 ], "team_id": [ - 4993 + 4999 ], "tournament": [ - 4929 + 4935 ], "tournament_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -109380,10 +109971,10 @@ export default { }, "tournament_teams_aggregate": { "aggregate": [ - 4891 + 4897 ], "nodes": [ - 4887 + 4893 ], "__typename": [ 80 @@ -109391,7 +109982,7 @@ export default { }, "tournament_teams_aggregate_bool_exp": { "count": [ - 4890 + 4896 ], "__typename": [ 80 @@ -109399,13 +109990,13 @@ export default { }, "tournament_teams_aggregate_bool_exp_count": { "arguments": [ - 4909 + 4915 ], "distinct": [ 5 ], "filter": [ - 4896 + 4902 ], "predicate": [ 41 @@ -109416,13 +110007,13 @@ export default { }, "tournament_teams_aggregate_fields": { "avg": [ - 4894 + 4900 ], "count": [ 40, { "columns": [ - 4909, + 4915, "[tournament_teams_select_column!]" ], "distinct": [ @@ -109431,31 +110022,31 @@ export default { } ], "max": [ - 4900 + 4906 ], "min": [ - 4902 + 4908 ], "stddev": [ - 4911 + 4917 ], "stddev_pop": [ - 4913 + 4919 ], "stddev_samp": [ - 4915 + 4921 ], "sum": [ - 4919 + 4925 ], "var_pop": [ - 4923 + 4929 ], "var_samp": [ - 4925 + 4931 ], "variance": [ - 4927 + 4933 ], "__typename": [ 80 @@ -109463,37 +110054,37 @@ export default { }, "tournament_teams_aggregate_order_by": { "avg": [ - 4895 + 4901 ], "count": [ - 2946 + 2952 ], "max": [ - 4901 + 4907 ], "min": [ - 4903 + 4909 ], "stddev": [ - 4912 + 4918 ], "stddev_pop": [ - 4914 + 4920 ], "stddev_samp": [ - 4916 + 4922 ], "sum": [ - 4920 + 4926 ], "var_pop": [ - 4924 + 4930 ], "var_samp": [ - 4926 + 4932 ], "variance": [ - 4928 + 4934 ], "__typename": [ 80 @@ -109501,10 +110092,10 @@ export default { }, "tournament_teams_arr_rel_insert_input": { "data": [ - 4899 + 4905 ], "on_conflict": [ - 4906 + 4912 ], "__typename": [ 80 @@ -109526,13 +110117,13 @@ export default { }, "tournament_teams_avg_order_by": { "captain_steam_id": [ - 2946 + 2952 ], "owner_steam_id": [ - 2946 + 2952 ], "seed": [ - 2946 + 2952 ], "__typename": [ 80 @@ -109540,55 +110131,55 @@ export default { }, "tournament_teams_bool_exp": { "_and": [ - 4896 + 4902 ], "_not": [ - 4896 + 4902 ], "_or": [ - 4896 + 4902 ], "can_manage": [ 6 ], "captain": [ - 3908 + 3914 ], "captain_steam_id": [ - 254 + 260 ], "created_at": [ - 4494 + 4500 ], "creator": [ - 3908 + 3914 ], "eligible_at": [ - 4494 + 4500 ], "id": [ - 4995 + 5001 ], "invites": [ - 4814 + 4820 ], "invites_aggregate": [ - 4807 + 4813 ], "name": [ 82 ], "owner_steam_id": [ - 254 + 260 ], "results": [ - 5736 + 5742 ], "roster": [ - 4855 + 4861 ], "roster_aggregate": [ - 4848 + 4854 ], "seed": [ 41 @@ -109597,16 +110188,16 @@ export default { 82 ], "team": [ - 4457 + 4463 ], "team_id": [ - 4995 + 5001 ], "tournament": [ - 4950 + 4956 ], "tournament_id": [ - 4995 + 5001 ], "__typename": [ 80 @@ -109615,10 +110206,10 @@ export default { "tournament_teams_constraint": {}, "tournament_teams_inc_input": { "captain_steam_id": [ - 252 + 258 ], "owner_steam_id": [ - 252 + 258 ], "seed": [ 40 @@ -109629,37 +110220,37 @@ export default { }, "tournament_teams_insert_input": { "captain": [ - 3915 + 3921 ], "captain_steam_id": [ - 252 + 258 ], "created_at": [ - 4493 + 4499 ], "creator": [ - 3915 + 3921 ], "eligible_at": [ - 4493 + 4499 ], "id": [ - 4993 + 4999 ], "invites": [ - 4811 + 4817 ], "name": [ 80 ], "owner_steam_id": [ - 252 + 258 ], "results": [ - 5745 + 5751 ], "roster": [ - 4852 + 4858 ], "seed": [ 40 @@ -109668,16 +110259,16 @@ export default { 80 ], "team": [ - 4466 + 4472 ], "team_id": [ - 4993 + 4999 ], "tournament": [ - 4959 + 4965 ], "tournament_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -109685,22 +110276,22 @@ export default { }, "tournament_teams_max_fields": { "captain_steam_id": [ - 252 + 258 ], "created_at": [ - 4493 + 4499 ], "eligible_at": [ - 4493 + 4499 ], "id": [ - 4993 + 4999 ], "name": [ 80 ], "owner_steam_id": [ - 252 + 258 ], "seed": [ 40 @@ -109709,10 +110300,10 @@ export default { 80 ], "team_id": [ - 4993 + 4999 ], "tournament_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -109720,34 +110311,34 @@ export default { }, "tournament_teams_max_order_by": { "captain_steam_id": [ - 2946 + 2952 ], "created_at": [ - 2946 + 2952 ], "eligible_at": [ - 2946 + 2952 ], "id": [ - 2946 + 2952 ], "name": [ - 2946 + 2952 ], "owner_steam_id": [ - 2946 + 2952 ], "seed": [ - 2946 + 2952 ], "short_name": [ - 2946 + 2952 ], "team_id": [ - 2946 + 2952 ], "tournament_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -109755,22 +110346,22 @@ export default { }, "tournament_teams_min_fields": { "captain_steam_id": [ - 252 + 258 ], "created_at": [ - 4493 + 4499 ], "eligible_at": [ - 4493 + 4499 ], "id": [ - 4993 + 4999 ], "name": [ 80 ], "owner_steam_id": [ - 252 + 258 ], "seed": [ 40 @@ -109779,10 +110370,10 @@ export default { 80 ], "team_id": [ - 4993 + 4999 ], "tournament_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -109790,34 +110381,34 @@ export default { }, "tournament_teams_min_order_by": { "captain_steam_id": [ - 2946 + 2952 ], "created_at": [ - 2946 + 2952 ], "eligible_at": [ - 2946 + 2952 ], "id": [ - 2946 + 2952 ], "name": [ - 2946 + 2952 ], "owner_steam_id": [ - 2946 + 2952 ], "seed": [ - 2946 + 2952 ], "short_name": [ - 2946 + 2952 ], "team_id": [ - 2946 + 2952 ], "tournament_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -109828,7 +110419,7 @@ export default { 40 ], "returning": [ - 4887 + 4893 ], "__typename": [ 80 @@ -109836,10 +110427,10 @@ export default { }, "tournament_teams_obj_rel_insert_input": { "data": [ - 4899 + 4905 ], "on_conflict": [ - 4906 + 4912 ], "__typename": [ 80 @@ -109847,13 +110438,13 @@ export default { }, "tournament_teams_on_conflict": { "constraint": [ - 4897 + 4903 ], "update_columns": [ - 4921 + 4927 ], "where": [ - 4896 + 4902 ], "__typename": [ 80 @@ -109861,58 +110452,58 @@ export default { }, "tournament_teams_order_by": { "can_manage": [ - 2946 + 2952 ], "captain": [ - 3917 + 3923 ], "captain_steam_id": [ - 2946 + 2952 ], "created_at": [ - 2946 + 2952 ], "creator": [ - 3917 + 3923 ], "eligible_at": [ - 2946 + 2952 ], "id": [ - 2946 + 2952 ], "invites_aggregate": [ - 4810 + 4816 ], "name": [ - 2946 + 2952 ], "owner_steam_id": [ - 2946 + 2952 ], "results": [ - 5747 + 5753 ], "roster_aggregate": [ - 4851 + 4857 ], "seed": [ - 2946 + 2952 ], "short_name": [ - 2946 + 2952 ], "team": [ - 4468 + 4474 ], "team_id": [ - 2946 + 2952 ], "tournament": [ - 4961 + 4967 ], "tournament_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -109920,7 +110511,7 @@ export default { }, "tournament_teams_pk_columns_input": { "id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -109929,22 +110520,22 @@ export default { "tournament_teams_select_column": {}, "tournament_teams_set_input": { "captain_steam_id": [ - 252 + 258 ], "created_at": [ - 4493 + 4499 ], "eligible_at": [ - 4493 + 4499 ], "id": [ - 4993 + 4999 ], "name": [ 80 ], "owner_steam_id": [ - 252 + 258 ], "seed": [ 40 @@ -109953,10 +110544,10 @@ export default { 80 ], "team_id": [ - 4993 + 4999 ], "tournament_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -109978,13 +110569,13 @@ export default { }, "tournament_teams_stddev_order_by": { "captain_steam_id": [ - 2946 + 2952 ], "owner_steam_id": [ - 2946 + 2952 ], "seed": [ - 2946 + 2952 ], "__typename": [ 80 @@ -110006,13 +110597,13 @@ export default { }, "tournament_teams_stddev_pop_order_by": { "captain_steam_id": [ - 2946 + 2952 ], "owner_steam_id": [ - 2946 + 2952 ], "seed": [ - 2946 + 2952 ], "__typename": [ 80 @@ -110034,13 +110625,13 @@ export default { }, "tournament_teams_stddev_samp_order_by": { "captain_steam_id": [ - 2946 + 2952 ], "owner_steam_id": [ - 2946 + 2952 ], "seed": [ - 2946 + 2952 ], "__typename": [ 80 @@ -110048,10 +110639,10 @@ export default { }, "tournament_teams_stream_cursor_input": { "initial_value": [ - 4918 + 4924 ], "ordering": [ - 308 + 314 ], "__typename": [ 80 @@ -110059,22 +110650,22 @@ export default { }, "tournament_teams_stream_cursor_value_input": { "captain_steam_id": [ - 252 + 258 ], "created_at": [ - 4493 + 4499 ], "eligible_at": [ - 4493 + 4499 ], "id": [ - 4993 + 4999 ], "name": [ 80 ], "owner_steam_id": [ - 252 + 258 ], "seed": [ 40 @@ -110083,10 +110674,10 @@ export default { 80 ], "team_id": [ - 4993 + 4999 ], "tournament_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -110094,10 +110685,10 @@ export default { }, "tournament_teams_sum_fields": { "captain_steam_id": [ - 252 + 258 ], "owner_steam_id": [ - 252 + 258 ], "seed": [ 40 @@ -110108,13 +110699,13 @@ export default { }, "tournament_teams_sum_order_by": { "captain_steam_id": [ - 2946 + 2952 ], "owner_steam_id": [ - 2946 + 2952 ], "seed": [ - 2946 + 2952 ], "__typename": [ 80 @@ -110123,13 +110714,13 @@ export default { "tournament_teams_update_column": {}, "tournament_teams_updates": { "_inc": [ - 4898 + 4904 ], "_set": [ - 4910 + 4916 ], "where": [ - 4896 + 4902 ], "__typename": [ 80 @@ -110151,13 +110742,13 @@ export default { }, "tournament_teams_var_pop_order_by": { "captain_steam_id": [ - 2946 + 2952 ], "owner_steam_id": [ - 2946 + 2952 ], "seed": [ - 2946 + 2952 ], "__typename": [ 80 @@ -110179,13 +110770,13 @@ export default { }, "tournament_teams_var_samp_order_by": { "captain_steam_id": [ - 2946 + 2952 ], "owner_steam_id": [ - 2946 + 2952 ], "seed": [ - 2946 + 2952 ], "__typename": [ 80 @@ -110207,13 +110798,13 @@ export default { }, "tournament_teams_variance_order_by": { "captain_steam_id": [ - 2946 + 2952 ], "owner_steam_id": [ - 2946 + 2952 ], "seed": [ - 2946 + 2952 ], "__typename": [ 80 @@ -110221,16 +110812,16 @@ export default { }, "tournaments": { "admin": [ - 3904 + 3910 ], "auto_start": [ 5 ], "award_configs": [ - 4495, + 4501, { "distinct_on": [ - 4517, + 4523, "[tournament_awards_select_column!]" ], "limit": [ @@ -110240,19 +110831,19 @@ export default { 40 ], "order_by": [ - 4515, + 4521, "[tournament_awards_order_by!]" ], "where": [ - 4504 + 4510 ] } ], "award_configs_aggregate": [ - 4496, + 4502, { "distinct_on": [ - 4517, + 4523, "[tournament_awards_select_column!]" ], "limit": [ @@ -110262,19 +110853,19 @@ export default { 40 ], "order_by": [ - 4515, + 4521, "[tournament_awards_order_by!]" ], "where": [ - 4504 + 4510 ] } ], "awards": [ - 183, + 189, { "distinct_on": [ - 204, + 210, "[award_recipients_select_column!]" ], "limit": [ @@ -110284,19 +110875,19 @@ export default { 40 ], "order_by": [ - 202, + 208, "[award_recipients_order_by!]" ], "where": [ - 192 + 198 ] } ], "awards_aggregate": [ - 184, + 190, { "distinct_on": [ - 204, + 210, "[award_recipients_select_column!]" ], "limit": [ @@ -110306,11 +110897,11 @@ export default { 40 ], "order_by": [ - 202, + 208, "[award_recipients_order_by!]" ], "where": [ - 192 + 198 ] } ], @@ -110345,10 +110936,10 @@ export default { 5 ], "categories": [ - 4583, + 4589, { "distinct_on": [ - 4601, + 4607, "[tournament_categories_select_column!]" ], "limit": [ @@ -110358,19 +110949,19 @@ export default { 40 ], "order_by": [ - 4599, + 4605, "[tournament_categories_order_by!]" ], "where": [ - 4590 + 4596 ] } ], "categories_aggregate": [ - 4584, + 4590, { "distinct_on": [ - 4601, + 4607, "[tournament_categories_select_column!]" ], "limit": [ @@ -110380,16 +110971,16 @@ export default { 40 ], "order_by": [ - 4599, + 4605, "[tournament_categories_order_by!]" ], "where": [ - 4590 + 4596 ] } ], "created_at": [ - 4493 + 4499 ], "description": [ 80 @@ -110446,7 +111037,7 @@ export default { 80 ], "e_tournament_status": [ - 1324 + 1330 ], "has_min_teams": [ 5 @@ -110455,7 +111046,7 @@ export default { 80 ], "id": [ - 4993 + 4999 ], "is_league": [ 5 @@ -110467,10 +111058,10 @@ export default { 5 ], "latitude": [ - 1664 + 1670 ], "league_season_division": [ - 1995 + 2001 ], "location": [ 80 @@ -110479,10 +111070,10 @@ export default { 80 ], "longitude": [ - 1664 + 1670 ], "match_options_id": [ - 4993 + 4999 ], "max_players_per_lineup": [ 40 @@ -110494,16 +111085,16 @@ export default { 80 ], "options": [ - 2641 + 2647 ], "organizer_steam_id": [ - 252 + 258 ], "organizer_teams": [ - 4607, + 4613, { "distinct_on": [ - 4625, + 4631, "[tournament_organizer_teams_select_column!]" ], "limit": [ @@ -110513,19 +111104,19 @@ export default { 40 ], "order_by": [ - 4623, + 4629, "[tournament_organizer_teams_order_by!]" ], "where": [ - 4614 + 4620 ] } ], "organizer_teams_aggregate": [ - 4608, + 4614, { "distinct_on": [ - 4625, + 4631, "[tournament_organizer_teams_select_column!]" ], "limit": [ @@ -110535,19 +111126,19 @@ export default { 40 ], "order_by": [ - 4623, + 4629, "[tournament_organizer_teams_order_by!]" ], "where": [ - 4614 + 4620 ] } ], "organizers": [ - 4631, + 4637, { "distinct_on": [ - 4652, + 4658, "[tournament_organizers_select_column!]" ], "limit": [ @@ -110557,19 +111148,19 @@ export default { 40 ], "order_by": [ - 4650, + 4656, "[tournament_organizers_order_by!]" ], "where": [ - 4640 + 4646 ] } ], "organizers_aggregate": [ - 4632, + 4638, { "distinct_on": [ - 4652, + 4658, "[tournament_organizers_select_column!]" ], "limit": [ @@ -110579,19 +111170,19 @@ export default { 40 ], "order_by": [ - 4650, + 4656, "[tournament_organizers_order_by!]" ], "where": [ - 4640 + 4646 ] } ], "player_stats": [ - 5828, + 5834, { "distinct_on": [ - 5854, + 5860, "[v_tournament_player_stats_select_column!]" ], "limit": [ @@ -110601,19 +111192,19 @@ export default { 40 ], "order_by": [ - 5853, + 5859, "[v_tournament_player_stats_order_by!]" ], "where": [ - 5847 + 5853 ] } ], "player_stats_aggregate": [ - 5829, + 5835, { "distinct_on": [ - 5854, + 5860, "[v_tournament_player_stats_select_column!]" ], "limit": [ @@ -110623,19 +111214,19 @@ export default { 40 ], "order_by": [ - 5853, + 5859, "[v_tournament_player_stats_order_by!]" ], "where": [ - 5847 + 5853 ] } ], "prizes": [ - 4672, + 4678, { "distinct_on": [ - 4693, + 4699, "[tournament_prizes_select_column!]" ], "limit": [ @@ -110645,19 +111236,19 @@ export default { 40 ], "order_by": [ - 4691, + 4697, "[tournament_prizes_order_by!]" ], "where": [ - 4681 + 4687 ] } ], "prizes_aggregate": [ - 4673, + 4679, { "distinct_on": [ - 4693, + 4699, "[tournament_prizes_select_column!]" ], "limit": [ @@ -110667,19 +111258,19 @@ export default { 40 ], "order_by": [ - 4691, + 4697, "[tournament_prizes_order_by!]" ], "where": [ - 4681 + 4687 ] } ], "results": [ - 5777, + 5783, { "distinct_on": [ - 5803, + 5809, "[v_team_tournament_results_select_column!]" ], "limit": [ @@ -110689,19 +111280,19 @@ export default { 40 ], "order_by": [ - 5802, + 5808, "[v_team_tournament_results_order_by!]" ], "where": [ - 5796 + 5802 ] } ], "results_aggregate": [ - 5778, + 5784, { "distinct_on": [ - 5803, + 5809, "[v_team_tournament_results_select_column!]" ], "limit": [ @@ -110711,19 +111302,19 @@ export default { 40 ], "order_by": [ - 5802, + 5808, "[v_team_tournament_results_order_by!]" ], "where": [ - 5796 + 5802 ] } ], "rosters": [ - 4846, + 4852, { "distinct_on": [ - 4867, + 4873, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -110733,19 +111324,19 @@ export default { 40 ], "order_by": [ - 4865, + 4871, "[tournament_team_roster_order_by!]" ], "where": [ - 4855 + 4861 ] } ], "rosters_aggregate": [ - 4847, + 4853, { "distinct_on": [ - 4867, + 4873, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -110755,11 +111346,11 @@ export default { 40 ], "order_by": [ - 4865, + 4871, "[tournament_team_roster_order_by!]" ], "where": [ - 4855 + 4861 ] } ], @@ -110767,10 +111358,10 @@ export default { 80 ], "stages": [ - 4754, + 4760, { "distinct_on": [ - 4783, + 4789, "[tournament_stages_select_column!]" ], "limit": [ @@ -110780,19 +111371,19 @@ export default { 40 ], "order_by": [ - 4780, + 4786, "[tournament_stages_order_by!]" ], "where": [ - 4766 + 4772 ] } ], "stages_aggregate": [ - 4755, + 4761, { "distinct_on": [ - 4783, + 4789, "[tournament_stages_select_column!]" ], "limit": [ @@ -110802,25 +111393,25 @@ export default { 40 ], "order_by": [ - 4780, + 4786, "[tournament_stages_order_by!]" ], "where": [ - 4766 + 4772 ] } ], "start": [ - 4493 + 4499 ], "status": [ - 1329 + 1335 ], "teams": [ - 4887, + 4893, { "distinct_on": [ - 4909, + 4915, "[tournament_teams_select_column!]" ], "limit": [ @@ -110830,19 +111421,19 @@ export default { 40 ], "order_by": [ - 4907, + 4913, "[tournament_teams_order_by!]" ], "where": [ - 4896 + 4902 ] } ], "teams_aggregate": [ - 4888, + 4894, { "distinct_on": [ - 4909, + 4915, "[tournament_teams_select_column!]" ], "limit": [ @@ -110852,11 +111443,11 @@ export default { 40 ], "order_by": [ - 4907, + 4913, "[tournament_teams_order_by!]" ], "where": [ - 4896 + 4902 ] } ], @@ -110866,10 +111457,10 @@ export default { }, "tournaments_aggregate": { "aggregate": [ - 4945 + 4951 ], "nodes": [ - 4929 + 4935 ], "__typename": [ 80 @@ -110877,37 +111468,37 @@ export default { }, "tournaments_aggregate_bool_exp": { "avg": [ - 4932 + 4938 ], "bool_and": [ - 4933 + 4939 ], "bool_or": [ - 4934 + 4940 ], "corr": [ - 4935 + 4941 ], "count": [ - 4937 + 4943 ], "covar_samp": [ - 4938 + 4944 ], "max": [ - 4940 + 4946 ], "min": [ - 4941 + 4947 ], "stddev_samp": [ - 4942 + 4948 ], "sum": [ - 4943 + 4949 ], "var_samp": [ - 4944 + 4950 ], "__typename": [ 80 @@ -110915,16 +111506,16 @@ export default { }, "tournaments_aggregate_bool_exp_avg": { "arguments": [ - 4964 + 4970 ], "distinct": [ 5 ], "filter": [ - 4950 + 4956 ], "predicate": [ - 1665 + 1671 ], "__typename": [ 80 @@ -110932,13 +111523,13 @@ export default { }, "tournaments_aggregate_bool_exp_bool_and": { "arguments": [ - 4965 + 4971 ], "distinct": [ 5 ], "filter": [ - 4950 + 4956 ], "predicate": [ 6 @@ -110949,13 +111540,13 @@ export default { }, "tournaments_aggregate_bool_exp_bool_or": { "arguments": [ - 4966 + 4972 ], "distinct": [ 5 ], "filter": [ - 4950 + 4956 ], "predicate": [ 6 @@ -110966,16 +111557,16 @@ export default { }, "tournaments_aggregate_bool_exp_corr": { "arguments": [ - 4936 + 4942 ], "distinct": [ 5 ], "filter": [ - 4950 + 4956 ], "predicate": [ - 1665 + 1671 ], "__typename": [ 80 @@ -110983,10 +111574,10 @@ export default { }, "tournaments_aggregate_bool_exp_corr_arguments": { "X": [ - 4967 + 4973 ], "Y": [ - 4967 + 4973 ], "__typename": [ 80 @@ -110994,13 +111585,13 @@ export default { }, "tournaments_aggregate_bool_exp_count": { "arguments": [ - 4963 + 4969 ], "distinct": [ 5 ], "filter": [ - 4950 + 4956 ], "predicate": [ 41 @@ -111011,16 +111602,16 @@ export default { }, "tournaments_aggregate_bool_exp_covar_samp": { "arguments": [ - 4939 + 4945 ], "distinct": [ 5 ], "filter": [ - 4950 + 4956 ], "predicate": [ - 1665 + 1671 ], "__typename": [ 80 @@ -111028,10 +111619,10 @@ export default { }, "tournaments_aggregate_bool_exp_covar_samp_arguments": { "X": [ - 4968 + 4974 ], "Y": [ - 4968 + 4974 ], "__typename": [ 80 @@ -111039,16 +111630,16 @@ export default { }, "tournaments_aggregate_bool_exp_max": { "arguments": [ - 4969 + 4975 ], "distinct": [ 5 ], "filter": [ - 4950 + 4956 ], "predicate": [ - 1665 + 1671 ], "__typename": [ 80 @@ -111056,16 +111647,16 @@ export default { }, "tournaments_aggregate_bool_exp_min": { "arguments": [ - 4970 + 4976 ], "distinct": [ 5 ], "filter": [ - 4950 + 4956 ], "predicate": [ - 1665 + 1671 ], "__typename": [ 80 @@ -111073,16 +111664,16 @@ export default { }, "tournaments_aggregate_bool_exp_stddev_samp": { "arguments": [ - 4971 + 4977 ], "distinct": [ 5 ], "filter": [ - 4950 + 4956 ], "predicate": [ - 1665 + 1671 ], "__typename": [ 80 @@ -111090,16 +111681,16 @@ export default { }, "tournaments_aggregate_bool_exp_sum": { "arguments": [ - 4972 + 4978 ], "distinct": [ 5 ], "filter": [ - 4950 + 4956 ], "predicate": [ - 1665 + 1671 ], "__typename": [ 80 @@ -111107,16 +111698,16 @@ export default { }, "tournaments_aggregate_bool_exp_var_samp": { "arguments": [ - 4973 + 4979 ], "distinct": [ 5 ], "filter": [ - 4950 + 4956 ], "predicate": [ - 1665 + 1671 ], "__typename": [ 80 @@ -111124,13 +111715,13 @@ export default { }, "tournaments_aggregate_fields": { "avg": [ - 4948 + 4954 ], "count": [ 40, { "columns": [ - 4963, + 4969, "[tournaments_select_column!]" ], "distinct": [ @@ -111139,31 +111730,31 @@ export default { } ], "max": [ - 4954 + 4960 ], "min": [ - 4956 + 4962 ], "stddev": [ - 4975 + 4981 ], "stddev_pop": [ - 4977 + 4983 ], "stddev_samp": [ - 4979 + 4985 ], "sum": [ - 4983 + 4989 ], "var_pop": [ - 4987 + 4993 ], "var_samp": [ - 4989 + 4995 ], "variance": [ - 4991 + 4997 ], "__typename": [ 80 @@ -111171,37 +111762,37 @@ export default { }, "tournaments_aggregate_order_by": { "avg": [ - 4949 + 4955 ], "count": [ - 2946 + 2952 ], "max": [ - 4955 + 4961 ], "min": [ - 4957 + 4963 ], "stddev": [ - 4976 + 4982 ], "stddev_pop": [ - 4978 + 4984 ], "stddev_samp": [ - 4980 + 4986 ], "sum": [ - 4984 + 4990 ], "var_pop": [ - 4988 + 4994 ], "var_samp": [ - 4990 + 4996 ], "variance": [ - 4992 + 4998 ], "__typename": [ 80 @@ -111209,10 +111800,10 @@ export default { }, "tournaments_arr_rel_insert_input": { "data": [ - 4953 + 4959 ], "on_conflict": [ - 4960 + 4966 ], "__typename": [ 80 @@ -111240,13 +111831,13 @@ export default { }, "tournaments_avg_order_by": { "latitude": [ - 2946 + 2952 ], "longitude": [ - 2946 + 2952 ], "organizer_steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -111254,31 +111845,31 @@ export default { }, "tournaments_bool_exp": { "_and": [ - 4950 + 4956 ], "_not": [ - 4950 + 4956 ], "_or": [ - 4950 + 4956 ], "admin": [ - 3908 + 3914 ], "auto_start": [ 6 ], "award_configs": [ - 4504 + 4510 ], "award_configs_aggregate": [ - 4497 + 4503 ], "awards": [ - 192 + 198 ], "awards_aggregate": [ - 185 + 191 ], "awards_enabled": [ 6 @@ -111311,13 +111902,13 @@ export default { 6 ], "categories": [ - 4590 + 4596 ], "categories_aggregate": [ - 4585 + 4591 ], "created_at": [ - 4494 + 4500 ], "description": [ 82 @@ -111374,7 +111965,7 @@ export default { 82 ], "e_tournament_status": [ - 1327 + 1333 ], "has_min_teams": [ 6 @@ -111383,7 +111974,7 @@ export default { 82 ], "id": [ - 4995 + 5001 ], "is_league": [ 6 @@ -111395,10 +111986,10 @@ export default { 6 ], "latitude": [ - 1665 + 1671 ], "league_season_division": [ - 2002 + 2008 ], "location": [ 82 @@ -111407,10 +111998,10 @@ export default { 82 ], "longitude": [ - 1665 + 1671 ], "match_options_id": [ - 4995 + 5001 ], "max_players_per_lineup": [ 41 @@ -111422,67 +112013,67 @@ export default { 82 ], "options": [ - 2645 + 2651 ], "organizer_steam_id": [ - 254 + 260 ], "organizer_teams": [ - 4614 + 4620 ], "organizer_teams_aggregate": [ - 4609 + 4615 ], "organizers": [ - 4640 + 4646 ], "organizers_aggregate": [ - 4633 + 4639 ], "player_stats": [ - 5847 + 5853 ], "player_stats_aggregate": [ - 5830 + 5836 ], "prizes": [ - 4681 + 4687 ], "prizes_aggregate": [ - 4674 + 4680 ], "results": [ - 5796 + 5802 ], "results_aggregate": [ - 5779 + 5785 ], "rosters": [ - 4855 + 4861 ], "rosters_aggregate": [ - 4848 + 4854 ], "scheduling_mode": [ 82 ], "stages": [ - 4766 + 4772 ], "stages_aggregate": [ - 4756 + 4762 ], "start": [ - 4494 + 4500 ], "status": [ - 1330 + 1336 ], "teams": [ - 4896 + 4902 ], "teams_aggregate": [ - 4889 + 4895 ], "__typename": [ 80 @@ -111491,13 +112082,13 @@ export default { "tournaments_constraint": {}, "tournaments_inc_input": { "latitude": [ - 1664 + 1670 ], "longitude": [ - 1664 + 1670 ], "organizer_steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -111505,16 +112096,16 @@ export default { }, "tournaments_insert_input": { "admin": [ - 3915 + 3921 ], "auto_start": [ 5 ], "award_configs": [ - 4501 + 4507 ], "awards": [ - 189 + 195 ], "awards_enabled": [ 5 @@ -111523,10 +112114,10 @@ export default { 80 ], "categories": [ - 4589 + 4595 ], "created_at": [ - 4493 + 4499 ], "description": [ 80 @@ -111583,22 +112174,22 @@ export default { 80 ], "e_tournament_status": [ - 1335 + 1341 ], "homepage": [ 80 ], "id": [ - 4993 + 4999 ], "is_league": [ 5 ], "latitude": [ - 1664 + 1670 ], "league_season_division": [ - 2010 + 2016 ], "location": [ 80 @@ -111607,52 +112198,52 @@ export default { 80 ], "longitude": [ - 1664 + 1670 ], "match_options_id": [ - 4993 + 4999 ], "name": [ 80 ], "options": [ - 2652 + 2658 ], "organizer_steam_id": [ - 252 + 258 ], "organizer_teams": [ - 4613 + 4619 ], "organizers": [ - 4637 + 4643 ], "player_stats": [ - 5844 + 5850 ], "prizes": [ - 4678 + 4684 ], "results": [ - 5793 + 5799 ], "rosters": [ - 4852 + 4858 ], "scheduling_mode": [ 80 ], "stages": [ - 4763 + 4769 ], "start": [ - 4493 + 4499 ], "status": [ - 1329 + 1335 ], "teams": [ - 4893 + 4899 ], "__typename": [ 80 @@ -111663,7 +112254,7 @@ export default { 80 ], "created_at": [ - 4493 + 4499 ], "description": [ 80 @@ -111681,10 +112272,10 @@ export default { 80 ], "id": [ - 4993 + 4999 ], "latitude": [ - 1664 + 1670 ], "location": [ 80 @@ -111693,10 +112284,10 @@ export default { 80 ], "longitude": [ - 1664 + 1670 ], "match_options_id": [ - 4993 + 4999 ], "max_players_per_lineup": [ 40 @@ -111708,13 +112299,13 @@ export default { 80 ], "organizer_steam_id": [ - 252 + 258 ], "scheduling_mode": [ 80 ], "start": [ - 4493 + 4499 ], "__typename": [ 80 @@ -111722,55 +112313,55 @@ export default { }, "tournaments_max_order_by": { "banner": [ - 2946 + 2952 ], "created_at": [ - 2946 + 2952 ], "description": [ - 2946 + 2952 ], "discord_guild_id": [ - 2946 + 2952 ], "discord_role_id": [ - 2946 + 2952 ], "discord_webhook": [ - 2946 + 2952 ], "homepage": [ - 2946 + 2952 ], "id": [ - 2946 + 2952 ], "latitude": [ - 2946 + 2952 ], "location": [ - 2946 + 2952 ], "logo": [ - 2946 + 2952 ], "longitude": [ - 2946 + 2952 ], "match_options_id": [ - 2946 + 2952 ], "name": [ - 2946 + 2952 ], "organizer_steam_id": [ - 2946 + 2952 ], "scheduling_mode": [ - 2946 + 2952 ], "start": [ - 2946 + 2952 ], "__typename": [ 80 @@ -111781,7 +112372,7 @@ export default { 80 ], "created_at": [ - 4493 + 4499 ], "description": [ 80 @@ -111799,10 +112390,10 @@ export default { 80 ], "id": [ - 4993 + 4999 ], "latitude": [ - 1664 + 1670 ], "location": [ 80 @@ -111811,10 +112402,10 @@ export default { 80 ], "longitude": [ - 1664 + 1670 ], "match_options_id": [ - 4993 + 4999 ], "max_players_per_lineup": [ 40 @@ -111826,13 +112417,13 @@ export default { 80 ], "organizer_steam_id": [ - 252 + 258 ], "scheduling_mode": [ 80 ], "start": [ - 4493 + 4499 ], "__typename": [ 80 @@ -111840,55 +112431,55 @@ export default { }, "tournaments_min_order_by": { "banner": [ - 2946 + 2952 ], "created_at": [ - 2946 + 2952 ], "description": [ - 2946 + 2952 ], "discord_guild_id": [ - 2946 + 2952 ], "discord_role_id": [ - 2946 + 2952 ], "discord_webhook": [ - 2946 + 2952 ], "homepage": [ - 2946 + 2952 ], "id": [ - 2946 + 2952 ], "latitude": [ - 2946 + 2952 ], "location": [ - 2946 + 2952 ], "logo": [ - 2946 + 2952 ], "longitude": [ - 2946 + 2952 ], "match_options_id": [ - 2946 + 2952 ], "name": [ - 2946 + 2952 ], "organizer_steam_id": [ - 2946 + 2952 ], "scheduling_mode": [ - 2946 + 2952 ], "start": [ - 2946 + 2952 ], "__typename": [ 80 @@ -111899,7 +112490,7 @@ export default { 40 ], "returning": [ - 4929 + 4935 ], "__typename": [ 80 @@ -111907,10 +112498,10 @@ export default { }, "tournaments_obj_rel_insert_input": { "data": [ - 4953 + 4959 ], "on_conflict": [ - 4960 + 4966 ], "__typename": [ 80 @@ -111918,13 +112509,13 @@ export default { }, "tournaments_on_conflict": { "constraint": [ - 4951 + 4957 ], "update_columns": [ - 4985 + 4991 ], "where": [ - 4950 + 4956 ], "__typename": [ 80 @@ -111932,193 +112523,193 @@ export default { }, "tournaments_order_by": { "admin": [ - 3917 + 3923 ], "auto_start": [ - 2946 + 2952 ], "award_configs_aggregate": [ - 4500 + 4506 ], "awards_aggregate": [ - 188 + 194 ], "awards_enabled": [ - 2946 + 2952 ], "banner": [ - 2946 + 2952 ], "can_cancel": [ - 2946 + 2952 ], "can_close_registration": [ - 2946 + 2952 ], "can_join": [ - 2946 + 2952 ], "can_open_registration": [ - 2946 + 2952 ], "can_pause": [ - 2946 + 2952 ], "can_resume": [ - 2946 + 2952 ], "can_setup": [ - 2946 + 2952 ], "can_start": [ - 2946 + 2952 ], "categories_aggregate": [ - 4588 + 4594 ], "created_at": [ - 2946 + 2952 ], "description": [ - 2946 + 2952 ], "discord_guild_id": [ - 2946 + 2952 ], "discord_notifications_enabled": [ - 2946 + 2952 ], "discord_notify_Canceled": [ - 2946 + 2952 ], "discord_notify_Finished": [ - 2946 + 2952 ], "discord_notify_Forfeit": [ - 2946 + 2952 ], "discord_notify_Live": [ - 2946 + 2952 ], "discord_notify_MapPaused": [ - 2946 + 2952 ], "discord_notify_PickingPlayers": [ - 2946 + 2952 ], "discord_notify_Scheduled": [ - 2946 + 2952 ], "discord_notify_Surrendered": [ - 2946 + 2952 ], "discord_notify_Tie": [ - 2946 + 2952 ], "discord_notify_Veto": [ - 2946 + 2952 ], "discord_notify_WaitingForCheckIn": [ - 2946 + 2952 ], "discord_notify_WaitingForServer": [ - 2946 + 2952 ], "discord_role_id": [ - 2946 + 2952 ], "discord_voice_enabled": [ - 2946 + 2952 ], "discord_webhook": [ - 2946 + 2952 ], "e_tournament_status": [ - 1337 + 1343 ], "has_min_teams": [ - 2946 + 2952 ], "homepage": [ - 2946 + 2952 ], "id": [ - 2946 + 2952 ], "is_league": [ - 2946 + 2952 ], "is_organizer": [ - 2946 + 2952 ], "joined_tournament": [ - 2946 + 2952 ], "latitude": [ - 2946 + 2952 ], "league_season_division": [ - 2012 + 2018 ], "location": [ - 2946 + 2952 ], "logo": [ - 2946 + 2952 ], "longitude": [ - 2946 + 2952 ], "match_options_id": [ - 2946 + 2952 ], "max_players_per_lineup": [ - 2946 + 2952 ], "min_players_per_lineup": [ - 2946 + 2952 ], "name": [ - 2946 + 2952 ], "options": [ - 2654 + 2660 ], "organizer_steam_id": [ - 2946 + 2952 ], "organizer_teams_aggregate": [ - 4612 + 4618 ], "organizers_aggregate": [ - 4636 + 4642 ], "player_stats_aggregate": [ - 5843 + 5849 ], "prizes_aggregate": [ - 4677 + 4683 ], "results_aggregate": [ - 5792 + 5798 ], "rosters_aggregate": [ - 4851 + 4857 ], "scheduling_mode": [ - 2946 + 2952 ], "stages_aggregate": [ - 4761 + 4767 ], "start": [ - 2946 + 2952 ], "status": [ - 2946 + 2952 ], "teams_aggregate": [ - 4892 + 4898 ], "__typename": [ 80 @@ -112126,7 +112717,7 @@ export default { }, "tournaments_pk_columns_input": { "id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -112154,7 +112745,7 @@ export default { 80 ], "created_at": [ - 4493 + 4499 ], "description": [ 80 @@ -112214,13 +112805,13 @@ export default { 80 ], "id": [ - 4993 + 4999 ], "is_league": [ 5 ], "latitude": [ - 1664 + 1670 ], "location": [ 80 @@ -112229,25 +112820,25 @@ export default { 80 ], "longitude": [ - 1664 + 1670 ], "match_options_id": [ - 4993 + 4999 ], "name": [ 80 ], "organizer_steam_id": [ - 252 + 258 ], "scheduling_mode": [ 80 ], "start": [ - 4493 + 4499 ], "status": [ - 1329 + 1335 ], "__typename": [ 80 @@ -112275,13 +112866,13 @@ export default { }, "tournaments_stddev_order_by": { "latitude": [ - 2946 + 2952 ], "longitude": [ - 2946 + 2952 ], "organizer_steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -112309,13 +112900,13 @@ export default { }, "tournaments_stddev_pop_order_by": { "latitude": [ - 2946 + 2952 ], "longitude": [ - 2946 + 2952 ], "organizer_steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -112343,13 +112934,13 @@ export default { }, "tournaments_stddev_samp_order_by": { "latitude": [ - 2946 + 2952 ], "longitude": [ - 2946 + 2952 ], "organizer_steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -112357,10 +112948,10 @@ export default { }, "tournaments_stream_cursor_input": { "initial_value": [ - 4982 + 4988 ], "ordering": [ - 308 + 314 ], "__typename": [ 80 @@ -112377,7 +112968,7 @@ export default { 80 ], "created_at": [ - 4493 + 4499 ], "description": [ 80 @@ -112437,13 +113028,13 @@ export default { 80 ], "id": [ - 4993 + 4999 ], "is_league": [ 5 ], "latitude": [ - 1664 + 1670 ], "location": [ 80 @@ -112452,25 +113043,25 @@ export default { 80 ], "longitude": [ - 1664 + 1670 ], "match_options_id": [ - 4993 + 4999 ], "name": [ 80 ], "organizer_steam_id": [ - 252 + 258 ], "scheduling_mode": [ 80 ], "start": [ - 4493 + 4499 ], "status": [ - 1329 + 1335 ], "__typename": [ 80 @@ -112478,10 +113069,10 @@ export default { }, "tournaments_sum_fields": { "latitude": [ - 1664 + 1670 ], "longitude": [ - 1664 + 1670 ], "max_players_per_lineup": [ 40 @@ -112490,7 +113081,7 @@ export default { 40 ], "organizer_steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -112498,13 +113089,13 @@ export default { }, "tournaments_sum_order_by": { "latitude": [ - 2946 + 2952 ], "longitude": [ - 2946 + 2952 ], "organizer_steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -112513,13 +113104,13 @@ export default { "tournaments_update_column": {}, "tournaments_updates": { "_inc": [ - 4952 + 4958 ], "_set": [ - 4974 + 4980 ], "where": [ - 4950 + 4956 ], "__typename": [ 80 @@ -112547,13 +113138,13 @@ export default { }, "tournaments_var_pop_order_by": { "latitude": [ - 2946 + 2952 ], "longitude": [ - 2946 + 2952 ], "organizer_steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -112581,13 +113172,13 @@ export default { }, "tournaments_var_samp_order_by": { "latitude": [ - 2946 + 2952 ], "longitude": [ - 2946 + 2952 ], "organizer_steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -112615,13 +113206,13 @@ export default { }, "tournaments_variance_order_by": { "latitude": [ - 2946 + 2952 ], "longitude": [ - 2946 + 2952 ], "organizer_steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -112630,37 +113221,37 @@ export default { "uuid": {}, "uuid_array_comparison_exp": { "_contained_in": [ - 4993 + 4999 ], "_contains": [ - 4993 + 4999 ], "_eq": [ - 4993 + 4999 ], "_gt": [ - 4993 + 4999 ], "_gte": [ - 4993 + 4999 ], "_in": [ - 4993 + 4999 ], "_is_null": [ 5 ], "_lt": [ - 4993 + 4999 ], "_lte": [ - 4993 + 4999 ], "_neq": [ - 4993 + 4999 ], "_nin": [ - 4993 + 4999 ], "__typename": [ 80 @@ -112668,31 +113259,31 @@ export default { }, "uuid_comparison_exp": { "_eq": [ - 4993 + 4999 ], "_gt": [ - 4993 + 4999 ], "_gte": [ - 4993 + 4999 ], "_in": [ - 4993 + 4999 ], "_is_null": [ 5 ], "_lt": [ - 4993 + 4999 ], "_lte": [ - 4993 + 4999 ], "_neq": [ - 4993 + 4999 ], "_nin": [ - 4993 + 4999 ], "__typename": [ 80 @@ -112706,19 +113297,19 @@ export default { 40 ], "event": [ - 1636 + 1642 ], "event_id": [ - 4993 + 4999 ], "headshot_percentage": [ - 1664 + 1670 ], "headshots": [ 40 ], "kdr": [ - 1664 + 1670 ], "kills": [ 40 @@ -112727,10 +113318,10 @@ export default { 40 ], "player": [ - 3904 + 3910 ], "player_steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -112738,10 +113329,10 @@ export default { }, "v_event_player_stats_aggregate": { "aggregate": [ - 5010 + 5016 ], "nodes": [ - 4996 + 5002 ], "__typename": [ 80 @@ -112749,31 +113340,31 @@ export default { }, "v_event_player_stats_aggregate_bool_exp": { "avg": [ - 4999 + 5005 ], "corr": [ - 5000 + 5006 ], "count": [ - 5002 + 5008 ], "covar_samp": [ - 5003 + 5009 ], "max": [ - 5005 + 5011 ], "min": [ - 5006 + 5012 ], "stddev_samp": [ - 5007 + 5013 ], "sum": [ - 5008 + 5014 ], "var_samp": [ - 5009 + 5015 ], "__typename": [ 80 @@ -112781,16 +113372,16 @@ export default { }, "v_event_player_stats_aggregate_bool_exp_avg": { "arguments": [ - 5023 + 5029 ], "distinct": [ 5 ], "filter": [ - 5015 + 5021 ], "predicate": [ - 1665 + 1671 ], "__typename": [ 80 @@ -112798,16 +113389,16 @@ export default { }, "v_event_player_stats_aggregate_bool_exp_corr": { "arguments": [ - 5001 + 5007 ], "distinct": [ 5 ], "filter": [ - 5015 + 5021 ], "predicate": [ - 1665 + 1671 ], "__typename": [ 80 @@ -112815,10 +113406,10 @@ export default { }, "v_event_player_stats_aggregate_bool_exp_corr_arguments": { "X": [ - 5024 + 5030 ], "Y": [ - 5024 + 5030 ], "__typename": [ 80 @@ -112826,13 +113417,13 @@ export default { }, "v_event_player_stats_aggregate_bool_exp_count": { "arguments": [ - 5022 + 5028 ], "distinct": [ 5 ], "filter": [ - 5015 + 5021 ], "predicate": [ 41 @@ -112843,16 +113434,16 @@ export default { }, "v_event_player_stats_aggregate_bool_exp_covar_samp": { "arguments": [ - 5004 + 5010 ], "distinct": [ 5 ], "filter": [ - 5015 + 5021 ], "predicate": [ - 1665 + 1671 ], "__typename": [ 80 @@ -112860,10 +113451,10 @@ export default { }, "v_event_player_stats_aggregate_bool_exp_covar_samp_arguments": { "X": [ - 5025 + 5031 ], "Y": [ - 5025 + 5031 ], "__typename": [ 80 @@ -112871,16 +113462,16 @@ export default { }, "v_event_player_stats_aggregate_bool_exp_max": { "arguments": [ - 5026 + 5032 ], "distinct": [ 5 ], "filter": [ - 5015 + 5021 ], "predicate": [ - 1665 + 1671 ], "__typename": [ 80 @@ -112888,16 +113479,16 @@ export default { }, "v_event_player_stats_aggregate_bool_exp_min": { "arguments": [ - 5027 + 5033 ], "distinct": [ 5 ], "filter": [ - 5015 + 5021 ], "predicate": [ - 1665 + 1671 ], "__typename": [ 80 @@ -112905,16 +113496,16 @@ export default { }, "v_event_player_stats_aggregate_bool_exp_stddev_samp": { "arguments": [ - 5028 + 5034 ], "distinct": [ 5 ], "filter": [ - 5015 + 5021 ], "predicate": [ - 1665 + 1671 ], "__typename": [ 80 @@ -112922,16 +113513,16 @@ export default { }, "v_event_player_stats_aggregate_bool_exp_sum": { "arguments": [ - 5029 + 5035 ], "distinct": [ 5 ], "filter": [ - 5015 + 5021 ], "predicate": [ - 1665 + 1671 ], "__typename": [ 80 @@ -112939,16 +113530,16 @@ export default { }, "v_event_player_stats_aggregate_bool_exp_var_samp": { "arguments": [ - 5030 + 5036 ], "distinct": [ 5 ], "filter": [ - 5015 + 5021 ], "predicate": [ - 1665 + 1671 ], "__typename": [ 80 @@ -112956,13 +113547,13 @@ export default { }, "v_event_player_stats_aggregate_fields": { "avg": [ - 5013 + 5019 ], "count": [ 40, { "columns": [ - 5022, + 5028, "[v_event_player_stats_select_column!]" ], "distinct": [ @@ -112971,31 +113562,31 @@ export default { } ], "max": [ - 5017 + 5023 ], "min": [ - 5019 + 5025 ], "stddev": [ - 5031 + 5037 ], "stddev_pop": [ - 5033 + 5039 ], "stddev_samp": [ - 5035 + 5041 ], "sum": [ - 5039 + 5045 ], "var_pop": [ - 5041 + 5047 ], "var_samp": [ - 5043 + 5049 ], "variance": [ - 5045 + 5051 ], "__typename": [ 80 @@ -113003,37 +113594,37 @@ export default { }, "v_event_player_stats_aggregate_order_by": { "avg": [ - 5014 + 5020 ], "count": [ - 2946 + 2952 ], "max": [ - 5018 + 5024 ], "min": [ - 5020 + 5026 ], "stddev": [ - 5032 + 5038 ], "stddev_pop": [ - 5034 + 5040 ], "stddev_samp": [ - 5036 + 5042 ], "sum": [ - 5040 + 5046 ], "var_pop": [ - 5042 + 5048 ], "var_samp": [ - 5044 + 5050 ], "variance": [ - 5046 + 5052 ], "__typename": [ 80 @@ -113041,7 +113632,7 @@ export default { }, "v_event_player_stats_arr_rel_insert_input": { "data": [ - 5016 + 5022 ], "__typename": [ 80 @@ -113078,28 +113669,28 @@ export default { }, "v_event_player_stats_avg_order_by": { "assists": [ - 2946 + 2952 ], "deaths": [ - 2946 + 2952 ], "headshot_percentage": [ - 2946 + 2952 ], "headshots": [ - 2946 + 2952 ], "kdr": [ - 2946 + 2952 ], "kills": [ - 2946 + 2952 ], "matches_played": [ - 2946 + 2952 ], "player_steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -113107,13 +113698,13 @@ export default { }, "v_event_player_stats_bool_exp": { "_and": [ - 5015 + 5021 ], "_not": [ - 5015 + 5021 ], "_or": [ - 5015 + 5021 ], "assists": [ 41 @@ -113122,19 +113713,19 @@ export default { 41 ], "event": [ - 1640 + 1646 ], "event_id": [ - 4995 + 5001 ], "headshot_percentage": [ - 1665 + 1671 ], "headshots": [ 41 ], "kdr": [ - 1665 + 1671 ], "kills": [ 41 @@ -113143,10 +113734,10 @@ export default { 41 ], "player": [ - 3908 + 3914 ], "player_steam_id": [ - 254 + 260 ], "__typename": [ 80 @@ -113160,19 +113751,19 @@ export default { 40 ], "event": [ - 1647 + 1653 ], "event_id": [ - 4993 + 4999 ], "headshot_percentage": [ - 1664 + 1670 ], "headshots": [ 40 ], "kdr": [ - 1664 + 1670 ], "kills": [ 40 @@ -113181,10 +113772,10 @@ export default { 40 ], "player": [ - 3915 + 3921 ], "player_steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -113198,16 +113789,16 @@ export default { 40 ], "event_id": [ - 4993 + 4999 ], "headshot_percentage": [ - 1664 + 1670 ], "headshots": [ 40 ], "kdr": [ - 1664 + 1670 ], "kills": [ 40 @@ -113216,7 +113807,7 @@ export default { 40 ], "player_steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -113224,31 +113815,31 @@ export default { }, "v_event_player_stats_max_order_by": { "assists": [ - 2946 + 2952 ], "deaths": [ - 2946 + 2952 ], "event_id": [ - 2946 + 2952 ], "headshot_percentage": [ - 2946 + 2952 ], "headshots": [ - 2946 + 2952 ], "kdr": [ - 2946 + 2952 ], "kills": [ - 2946 + 2952 ], "matches_played": [ - 2946 + 2952 ], "player_steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -113262,16 +113853,16 @@ export default { 40 ], "event_id": [ - 4993 + 4999 ], "headshot_percentage": [ - 1664 + 1670 ], "headshots": [ 40 ], "kdr": [ - 1664 + 1670 ], "kills": [ 40 @@ -113280,7 +113871,7 @@ export default { 40 ], "player_steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -113288,31 +113879,31 @@ export default { }, "v_event_player_stats_min_order_by": { "assists": [ - 2946 + 2952 ], "deaths": [ - 2946 + 2952 ], "event_id": [ - 2946 + 2952 ], "headshot_percentage": [ - 2946 + 2952 ], "headshots": [ - 2946 + 2952 ], "kdr": [ - 2946 + 2952 ], "kills": [ - 2946 + 2952 ], "matches_played": [ - 2946 + 2952 ], "player_steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -113320,37 +113911,37 @@ export default { }, "v_event_player_stats_order_by": { "assists": [ - 2946 + 2952 ], "deaths": [ - 2946 + 2952 ], "event": [ - 1649 + 1655 ], "event_id": [ - 2946 + 2952 ], "headshot_percentage": [ - 2946 + 2952 ], "headshots": [ - 2946 + 2952 ], "kdr": [ - 2946 + 2952 ], "kills": [ - 2946 + 2952 ], "matches_played": [ - 2946 + 2952 ], "player": [ - 3917 + 3923 ], "player_steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -113396,28 +113987,28 @@ export default { }, "v_event_player_stats_stddev_order_by": { "assists": [ - 2946 + 2952 ], "deaths": [ - 2946 + 2952 ], "headshot_percentage": [ - 2946 + 2952 ], "headshots": [ - 2946 + 2952 ], "kdr": [ - 2946 + 2952 ], "kills": [ - 2946 + 2952 ], "matches_played": [ - 2946 + 2952 ], "player_steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -113454,28 +114045,28 @@ export default { }, "v_event_player_stats_stddev_pop_order_by": { "assists": [ - 2946 + 2952 ], "deaths": [ - 2946 + 2952 ], "headshot_percentage": [ - 2946 + 2952 ], "headshots": [ - 2946 + 2952 ], "kdr": [ - 2946 + 2952 ], "kills": [ - 2946 + 2952 ], "matches_played": [ - 2946 + 2952 ], "player_steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -113512,28 +114103,28 @@ export default { }, "v_event_player_stats_stddev_samp_order_by": { "assists": [ - 2946 + 2952 ], "deaths": [ - 2946 + 2952 ], "headshot_percentage": [ - 2946 + 2952 ], "headshots": [ - 2946 + 2952 ], "kdr": [ - 2946 + 2952 ], "kills": [ - 2946 + 2952 ], "matches_played": [ - 2946 + 2952 ], "player_steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -113541,10 +114132,10 @@ export default { }, "v_event_player_stats_stream_cursor_input": { "initial_value": [ - 5038 + 5044 ], "ordering": [ - 308 + 314 ], "__typename": [ 80 @@ -113558,16 +114149,16 @@ export default { 40 ], "event_id": [ - 4993 + 4999 ], "headshot_percentage": [ - 1664 + 1670 ], "headshots": [ 40 ], "kdr": [ - 1664 + 1670 ], "kills": [ 40 @@ -113576,7 +114167,7 @@ export default { 40 ], "player_steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -113590,13 +114181,13 @@ export default { 40 ], "headshot_percentage": [ - 1664 + 1670 ], "headshots": [ 40 ], "kdr": [ - 1664 + 1670 ], "kills": [ 40 @@ -113605,7 +114196,7 @@ export default { 40 ], "player_steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -113613,28 +114204,28 @@ export default { }, "v_event_player_stats_sum_order_by": { "assists": [ - 2946 + 2952 ], "deaths": [ - 2946 + 2952 ], "headshot_percentage": [ - 2946 + 2952 ], "headshots": [ - 2946 + 2952 ], "kdr": [ - 2946 + 2952 ], "kills": [ - 2946 + 2952 ], "matches_played": [ - 2946 + 2952 ], "player_steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -113671,28 +114262,28 @@ export default { }, "v_event_player_stats_var_pop_order_by": { "assists": [ - 2946 + 2952 ], "deaths": [ - 2946 + 2952 ], "headshot_percentage": [ - 2946 + 2952 ], "headshots": [ - 2946 + 2952 ], "kdr": [ - 2946 + 2952 ], "kills": [ - 2946 + 2952 ], "matches_played": [ - 2946 + 2952 ], "player_steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -113729,28 +114320,28 @@ export default { }, "v_event_player_stats_var_samp_order_by": { "assists": [ - 2946 + 2952 ], "deaths": [ - 2946 + 2952 ], "headshot_percentage": [ - 2946 + 2952 ], "headshots": [ - 2946 + 2952 ], "kdr": [ - 2946 + 2952 ], "kills": [ - 2946 + 2952 ], "matches_played": [ - 2946 + 2952 ], "player_steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -113787,28 +114378,28 @@ export default { }, "v_event_player_stats_variance_order_by": { "assists": [ - 2946 + 2952 ], "deaths": [ - 2946 + 2952 ], "headshot_percentage": [ - 2946 + 2952 ], "headshots": [ - 2946 + 2952 ], "kdr": [ - 2946 + 2952 ], "kills": [ - 2946 + 2952 ], "matches_played": [ - 2946 + 2952 ], "player_steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -113863,10 +114454,10 @@ export default { }, "v_gpu_pool_status_aggregate": { "aggregate": [ - 5049 + 5055 ], "nodes": [ - 5047 + 5053 ], "__typename": [ 80 @@ -113874,13 +114465,13 @@ export default { }, "v_gpu_pool_status_aggregate_fields": { "avg": [ - 5050 + 5056 ], "count": [ 40, { "columns": [ - 5055, + 5061, "[v_gpu_pool_status_select_column!]" ], "distinct": [ @@ -113889,31 +114480,31 @@ export default { } ], "max": [ - 5052 + 5058 ], "min": [ - 5053 + 5059 ], "stddev": [ - 5056 + 5062 ], "stddev_pop": [ - 5057 + 5063 ], "stddev_samp": [ - 5058 + 5064 ], "sum": [ - 5061 + 5067 ], "var_pop": [ - 5062 + 5068 ], "var_samp": [ - 5063 + 5069 ], "variance": [ - 5064 + 5070 ], "__typename": [ 80 @@ -113956,13 +114547,13 @@ export default { }, "v_gpu_pool_status_bool_exp": { "_and": [ - 5051 + 5057 ], "_not": [ - 5051 + 5057 ], "_or": [ - 5051 + 5057 ], "demo_free_gpu_nodes": [ 41 @@ -114082,46 +114673,46 @@ export default { }, "v_gpu_pool_status_order_by": { "demo_free_gpu_nodes": [ - 2946 + 2952 ], "demo_in_progress": [ - 2946 + 2952 ], "demo_total_gpu_nodes": [ - 2946 + 2952 ], "free_gpu_nodes": [ - 2946 + 2952 ], "free_gpu_nodes_for_batch": [ - 2946 + 2952 ], "highlights_in_progress": [ - 2946 + 2952 ], "id": [ - 2946 + 2952 ], "live_in_progress": [ - 2946 + 2952 ], "registered_gpu_nodes": [ - 2946 + 2952 ], "rendering_total_gpu_nodes": [ - 2946 + 2952 ], "renders_paused_for_active_match": [ - 2946 + 2952 ], "streaming_free_gpu_nodes": [ - 2946 + 2952 ], "streaming_total_gpu_nodes": [ - 2946 + 2952 ], "total_gpu_nodes": [ - 2946 + 2952 ], "__typename": [ 80 @@ -114235,10 +114826,10 @@ export default { }, "v_gpu_pool_status_stream_cursor_input": { "initial_value": [ - 5060 + 5066 ], "ordering": [ - 308 + 314 ], "__typename": [ 80 @@ -114439,22 +115030,22 @@ export default { 40 ], "league_division_id": [ - 4993 + 4999 ], "league_season_division_id": [ - 4993 + 4999 ], "league_season_id": [ - 4993 + 4999 ], "league_team": [ - 2177 + 2183 ], "league_team_id": [ - 4993 + 4999 ], "league_team_season_id": [ - 4993 + 4999 ], "losses": [ 40 @@ -114484,13 +115075,13 @@ export default { 40 ], "season_division": [ - 1995 + 2001 ], "team_season": [ - 2135 + 2141 ], "tournament_team_id": [ - 4993 + 4999 ], "wins": [ 40 @@ -114501,10 +115092,10 @@ export default { }, "v_league_division_standings_aggregate": { "aggregate": [ - 5069 + 5075 ], "nodes": [ - 5065 + 5071 ], "__typename": [ 80 @@ -114512,7 +115103,7 @@ export default { }, "v_league_division_standings_aggregate_bool_exp": { "count": [ - 5068 + 5074 ], "__typename": [ 80 @@ -114520,13 +115111,13 @@ export default { }, "v_league_division_standings_aggregate_bool_exp_count": { "arguments": [ - 5081 + 5087 ], "distinct": [ 5 ], "filter": [ - 5074 + 5080 ], "predicate": [ 41 @@ -114537,13 +115128,13 @@ export default { }, "v_league_division_standings_aggregate_fields": { "avg": [ - 5072 + 5078 ], "count": [ 40, { "columns": [ - 5081, + 5087, "[v_league_division_standings_select_column!]" ], "distinct": [ @@ -114552,31 +115143,31 @@ export default { } ], "max": [ - 5076 + 5082 ], "min": [ - 5078 + 5084 ], "stddev": [ - 5082 + 5088 ], "stddev_pop": [ - 5084 + 5090 ], "stddev_samp": [ - 5086 + 5092 ], "sum": [ - 5090 + 5096 ], "var_pop": [ - 5092 + 5098 ], "var_samp": [ - 5094 + 5100 ], "variance": [ - 5096 + 5102 ], "__typename": [ 80 @@ -114584,37 +115175,37 @@ export default { }, "v_league_division_standings_aggregate_order_by": { "avg": [ - 5073 + 5079 ], "count": [ - 2946 + 2952 ], "max": [ - 5077 + 5083 ], "min": [ - 5079 + 5085 ], "stddev": [ - 5083 + 5089 ], "stddev_pop": [ - 5085 + 5091 ], "stddev_samp": [ - 5087 + 5093 ], "sum": [ - 5091 + 5097 ], "var_pop": [ - 5093 + 5099 ], "var_samp": [ - 5095 + 5101 ], "variance": [ - 5097 + 5103 ], "__typename": [ 80 @@ -114622,7 +115213,7 @@ export default { }, "v_league_division_standings_arr_rel_insert_input": { "data": [ - 5075 + 5081 ], "__typename": [ 80 @@ -114671,40 +115262,40 @@ export default { }, "v_league_division_standings_avg_order_by": { "head_to_head_match_wins": [ - 2946 + 2952 ], "head_to_head_rounds_won": [ - 2946 + 2952 ], "losses": [ - 2946 + 2952 ], "maps_lost": [ - 2946 + 2952 ], "maps_won": [ - 2946 + 2952 ], "matches_played": [ - 2946 + 2952 ], "matches_remaining": [ - 2946 + 2952 ], "rank": [ - 2946 + 2952 ], "round_diff": [ - 2946 + 2952 ], "rounds_lost": [ - 2946 + 2952 ], "rounds_won": [ - 2946 + 2952 ], "wins": [ - 2946 + 2952 ], "__typename": [ 80 @@ -114712,13 +115303,13 @@ export default { }, "v_league_division_standings_bool_exp": { "_and": [ - 5074 + 5080 ], "_not": [ - 5074 + 5080 ], "_or": [ - 5074 + 5080 ], "head_to_head_match_wins": [ 41 @@ -114727,22 +115318,22 @@ export default { 41 ], "league_division_id": [ - 4995 + 5001 ], "league_season_division_id": [ - 4995 + 5001 ], "league_season_id": [ - 4995 + 5001 ], "league_team": [ - 2180 + 2186 ], "league_team_id": [ - 4995 + 5001 ], "league_team_season_id": [ - 4995 + 5001 ], "losses": [ 41 @@ -114772,13 +115363,13 @@ export default { 41 ], "season_division": [ - 2002 + 2008 ], "team_season": [ - 2144 + 2150 ], "tournament_team_id": [ - 4995 + 5001 ], "wins": [ 41 @@ -114795,22 +115386,22 @@ export default { 40 ], "league_division_id": [ - 4993 + 4999 ], "league_season_division_id": [ - 4993 + 4999 ], "league_season_id": [ - 4993 + 4999 ], "league_team": [ - 2186 + 2192 ], "league_team_id": [ - 4993 + 4999 ], "league_team_season_id": [ - 4993 + 4999 ], "losses": [ 40 @@ -114840,13 +115431,13 @@ export default { 40 ], "season_division": [ - 2010 + 2016 ], "team_season": [ - 2153 + 2159 ], "tournament_team_id": [ - 4993 + 4999 ], "wins": [ 40 @@ -114863,19 +115454,19 @@ export default { 40 ], "league_division_id": [ - 4993 + 4999 ], "league_season_division_id": [ - 4993 + 4999 ], "league_season_id": [ - 4993 + 4999 ], "league_team_id": [ - 4993 + 4999 ], "league_team_season_id": [ - 4993 + 4999 ], "losses": [ 40 @@ -114905,7 +115496,7 @@ export default { 40 ], "tournament_team_id": [ - 4993 + 4999 ], "wins": [ 40 @@ -114916,58 +115507,58 @@ export default { }, "v_league_division_standings_max_order_by": { "head_to_head_match_wins": [ - 2946 + 2952 ], "head_to_head_rounds_won": [ - 2946 + 2952 ], "league_division_id": [ - 2946 + 2952 ], "league_season_division_id": [ - 2946 + 2952 ], "league_season_id": [ - 2946 + 2952 ], "league_team_id": [ - 2946 + 2952 ], "league_team_season_id": [ - 2946 + 2952 ], "losses": [ - 2946 + 2952 ], "maps_lost": [ - 2946 + 2952 ], "maps_won": [ - 2946 + 2952 ], "matches_played": [ - 2946 + 2952 ], "matches_remaining": [ - 2946 + 2952 ], "rank": [ - 2946 + 2952 ], "round_diff": [ - 2946 + 2952 ], "rounds_lost": [ - 2946 + 2952 ], "rounds_won": [ - 2946 + 2952 ], "tournament_team_id": [ - 2946 + 2952 ], "wins": [ - 2946 + 2952 ], "__typename": [ 80 @@ -114981,19 +115572,19 @@ export default { 40 ], "league_division_id": [ - 4993 + 4999 ], "league_season_division_id": [ - 4993 + 4999 ], "league_season_id": [ - 4993 + 4999 ], "league_team_id": [ - 4993 + 4999 ], "league_team_season_id": [ - 4993 + 4999 ], "losses": [ 40 @@ -115023,7 +115614,7 @@ export default { 40 ], "tournament_team_id": [ - 4993 + 4999 ], "wins": [ 40 @@ -115034,58 +115625,58 @@ export default { }, "v_league_division_standings_min_order_by": { "head_to_head_match_wins": [ - 2946 + 2952 ], "head_to_head_rounds_won": [ - 2946 + 2952 ], "league_division_id": [ - 2946 + 2952 ], "league_season_division_id": [ - 2946 + 2952 ], "league_season_id": [ - 2946 + 2952 ], "league_team_id": [ - 2946 + 2952 ], "league_team_season_id": [ - 2946 + 2952 ], "losses": [ - 2946 + 2952 ], "maps_lost": [ - 2946 + 2952 ], "maps_won": [ - 2946 + 2952 ], "matches_played": [ - 2946 + 2952 ], "matches_remaining": [ - 2946 + 2952 ], "rank": [ - 2946 + 2952 ], "round_diff": [ - 2946 + 2952 ], "rounds_lost": [ - 2946 + 2952 ], "rounds_won": [ - 2946 + 2952 ], "tournament_team_id": [ - 2946 + 2952 ], "wins": [ - 2946 + 2952 ], "__typename": [ 80 @@ -115093,67 +115684,67 @@ export default { }, "v_league_division_standings_order_by": { "head_to_head_match_wins": [ - 2946 + 2952 ], "head_to_head_rounds_won": [ - 2946 + 2952 ], "league_division_id": [ - 2946 + 2952 ], "league_season_division_id": [ - 2946 + 2952 ], "league_season_id": [ - 2946 + 2952 ], "league_team": [ - 2188 + 2194 ], "league_team_id": [ - 2946 + 2952 ], "league_team_season_id": [ - 2946 + 2952 ], "losses": [ - 2946 + 2952 ], "maps_lost": [ - 2946 + 2952 ], "maps_won": [ - 2946 + 2952 ], "matches_played": [ - 2946 + 2952 ], "matches_remaining": [ - 2946 + 2952 ], "rank": [ - 2946 + 2952 ], "round_diff": [ - 2946 + 2952 ], "rounds_lost": [ - 2946 + 2952 ], "rounds_won": [ - 2946 + 2952 ], "season_division": [ - 2012 + 2018 ], "team_season": [ - 2155 + 2161 ], "tournament_team_id": [ - 2946 + 2952 ], "wins": [ - 2946 + 2952 ], "__typename": [ 80 @@ -115203,40 +115794,40 @@ export default { }, "v_league_division_standings_stddev_order_by": { "head_to_head_match_wins": [ - 2946 + 2952 ], "head_to_head_rounds_won": [ - 2946 + 2952 ], "losses": [ - 2946 + 2952 ], "maps_lost": [ - 2946 + 2952 ], "maps_won": [ - 2946 + 2952 ], "matches_played": [ - 2946 + 2952 ], "matches_remaining": [ - 2946 + 2952 ], "rank": [ - 2946 + 2952 ], "round_diff": [ - 2946 + 2952 ], "rounds_lost": [ - 2946 + 2952 ], "rounds_won": [ - 2946 + 2952 ], "wins": [ - 2946 + 2952 ], "__typename": [ 80 @@ -115285,40 +115876,40 @@ export default { }, "v_league_division_standings_stddev_pop_order_by": { "head_to_head_match_wins": [ - 2946 + 2952 ], "head_to_head_rounds_won": [ - 2946 + 2952 ], "losses": [ - 2946 + 2952 ], "maps_lost": [ - 2946 + 2952 ], "maps_won": [ - 2946 + 2952 ], "matches_played": [ - 2946 + 2952 ], "matches_remaining": [ - 2946 + 2952 ], "rank": [ - 2946 + 2952 ], "round_diff": [ - 2946 + 2952 ], "rounds_lost": [ - 2946 + 2952 ], "rounds_won": [ - 2946 + 2952 ], "wins": [ - 2946 + 2952 ], "__typename": [ 80 @@ -115367,40 +115958,40 @@ export default { }, "v_league_division_standings_stddev_samp_order_by": { "head_to_head_match_wins": [ - 2946 + 2952 ], "head_to_head_rounds_won": [ - 2946 + 2952 ], "losses": [ - 2946 + 2952 ], "maps_lost": [ - 2946 + 2952 ], "maps_won": [ - 2946 + 2952 ], "matches_played": [ - 2946 + 2952 ], "matches_remaining": [ - 2946 + 2952 ], "rank": [ - 2946 + 2952 ], "round_diff": [ - 2946 + 2952 ], "rounds_lost": [ - 2946 + 2952 ], "rounds_won": [ - 2946 + 2952 ], "wins": [ - 2946 + 2952 ], "__typename": [ 80 @@ -115408,10 +115999,10 @@ export default { }, "v_league_division_standings_stream_cursor_input": { "initial_value": [ - 5089 + 5095 ], "ordering": [ - 308 + 314 ], "__typename": [ 80 @@ -115425,19 +116016,19 @@ export default { 40 ], "league_division_id": [ - 4993 + 4999 ], "league_season_division_id": [ - 4993 + 4999 ], "league_season_id": [ - 4993 + 4999 ], "league_team_id": [ - 4993 + 4999 ], "league_team_season_id": [ - 4993 + 4999 ], "losses": [ 40 @@ -115467,7 +116058,7 @@ export default { 40 ], "tournament_team_id": [ - 4993 + 4999 ], "wins": [ 40 @@ -115519,40 +116110,40 @@ export default { }, "v_league_division_standings_sum_order_by": { "head_to_head_match_wins": [ - 2946 + 2952 ], "head_to_head_rounds_won": [ - 2946 + 2952 ], "losses": [ - 2946 + 2952 ], "maps_lost": [ - 2946 + 2952 ], "maps_won": [ - 2946 + 2952 ], "matches_played": [ - 2946 + 2952 ], "matches_remaining": [ - 2946 + 2952 ], "rank": [ - 2946 + 2952 ], "round_diff": [ - 2946 + 2952 ], "rounds_lost": [ - 2946 + 2952 ], "rounds_won": [ - 2946 + 2952 ], "wins": [ - 2946 + 2952 ], "__typename": [ 80 @@ -115601,40 +116192,40 @@ export default { }, "v_league_division_standings_var_pop_order_by": { "head_to_head_match_wins": [ - 2946 + 2952 ], "head_to_head_rounds_won": [ - 2946 + 2952 ], "losses": [ - 2946 + 2952 ], "maps_lost": [ - 2946 + 2952 ], "maps_won": [ - 2946 + 2952 ], "matches_played": [ - 2946 + 2952 ], "matches_remaining": [ - 2946 + 2952 ], "rank": [ - 2946 + 2952 ], "round_diff": [ - 2946 + 2952 ], "rounds_lost": [ - 2946 + 2952 ], "rounds_won": [ - 2946 + 2952 ], "wins": [ - 2946 + 2952 ], "__typename": [ 80 @@ -115683,40 +116274,40 @@ export default { }, "v_league_division_standings_var_samp_order_by": { "head_to_head_match_wins": [ - 2946 + 2952 ], "head_to_head_rounds_won": [ - 2946 + 2952 ], "losses": [ - 2946 + 2952 ], "maps_lost": [ - 2946 + 2952 ], "maps_won": [ - 2946 + 2952 ], "matches_played": [ - 2946 + 2952 ], "matches_remaining": [ - 2946 + 2952 ], "rank": [ - 2946 + 2952 ], "round_diff": [ - 2946 + 2952 ], "rounds_lost": [ - 2946 + 2952 ], "rounds_won": [ - 2946 + 2952 ], "wins": [ - 2946 + 2952 ], "__typename": [ 80 @@ -115765,40 +116356,40 @@ export default { }, "v_league_division_standings_variance_order_by": { "head_to_head_match_wins": [ - 2946 + 2952 ], "head_to_head_rounds_won": [ - 2946 + 2952 ], "losses": [ - 2946 + 2952 ], "maps_lost": [ - 2946 + 2952 ], "maps_won": [ - 2946 + 2952 ], "matches_played": [ - 2946 + 2952 ], "matches_remaining": [ - 2946 + 2952 ], "rank": [ - 2946 + 2952 ], "round_diff": [ - 2946 + 2952 ], "rounds_lost": [ - 2946 + 2952 ], "rounds_won": [ - 2946 + 2952 ], "wins": [ - 2946 + 2952 ], "__typename": [ 80 @@ -115812,43 +116403,43 @@ export default { 40 ], "headshot_percentage": [ - 1664 + 1670 ], "headshots": [ 40 ], "kdr": [ - 1664 + 1670 ], "kills": [ 40 ], "league_division_id": [ - 4993 + 4999 ], "league_season_division_id": [ - 4993 + 4999 ], "league_season_id": [ - 4993 + 4999 ], "league_team": [ - 2177 + 2183 ], "league_team_id": [ - 4993 + 4999 ], "league_team_season_id": [ - 4993 + 4999 ], "matches_played": [ 40 ], "player": [ - 3904 + 3910 ], "player_steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -115856,10 +116447,10 @@ export default { }, "v_league_season_player_stats_aggregate": { "aggregate": [ - 5112 + 5118 ], "nodes": [ - 5098 + 5104 ], "__typename": [ 80 @@ -115867,31 +116458,31 @@ export default { }, "v_league_season_player_stats_aggregate_bool_exp": { "avg": [ - 5101 + 5107 ], "corr": [ - 5102 + 5108 ], "count": [ - 5104 + 5110 ], "covar_samp": [ - 5105 + 5111 ], "max": [ - 5107 + 5113 ], "min": [ - 5108 + 5114 ], "stddev_samp": [ - 5109 + 5115 ], "sum": [ - 5110 + 5116 ], "var_samp": [ - 5111 + 5117 ], "__typename": [ 80 @@ -115899,16 +116490,16 @@ export default { }, "v_league_season_player_stats_aggregate_bool_exp_avg": { "arguments": [ - 5125 + 5131 ], "distinct": [ 5 ], "filter": [ - 5117 + 5123 ], "predicate": [ - 1665 + 1671 ], "__typename": [ 80 @@ -115916,16 +116507,16 @@ export default { }, "v_league_season_player_stats_aggregate_bool_exp_corr": { "arguments": [ - 5103 + 5109 ], "distinct": [ 5 ], "filter": [ - 5117 + 5123 ], "predicate": [ - 1665 + 1671 ], "__typename": [ 80 @@ -115933,10 +116524,10 @@ export default { }, "v_league_season_player_stats_aggregate_bool_exp_corr_arguments": { "X": [ - 5126 + 5132 ], "Y": [ - 5126 + 5132 ], "__typename": [ 80 @@ -115944,13 +116535,13 @@ export default { }, "v_league_season_player_stats_aggregate_bool_exp_count": { "arguments": [ - 5124 + 5130 ], "distinct": [ 5 ], "filter": [ - 5117 + 5123 ], "predicate": [ 41 @@ -115961,16 +116552,16 @@ export default { }, "v_league_season_player_stats_aggregate_bool_exp_covar_samp": { "arguments": [ - 5106 + 5112 ], "distinct": [ 5 ], "filter": [ - 5117 + 5123 ], "predicate": [ - 1665 + 1671 ], "__typename": [ 80 @@ -115978,10 +116569,10 @@ export default { }, "v_league_season_player_stats_aggregate_bool_exp_covar_samp_arguments": { "X": [ - 5127 + 5133 ], "Y": [ - 5127 + 5133 ], "__typename": [ 80 @@ -115989,16 +116580,16 @@ export default { }, "v_league_season_player_stats_aggregate_bool_exp_max": { "arguments": [ - 5128 + 5134 ], "distinct": [ 5 ], "filter": [ - 5117 + 5123 ], "predicate": [ - 1665 + 1671 ], "__typename": [ 80 @@ -116006,16 +116597,16 @@ export default { }, "v_league_season_player_stats_aggregate_bool_exp_min": { "arguments": [ - 5129 + 5135 ], "distinct": [ 5 ], "filter": [ - 5117 + 5123 ], "predicate": [ - 1665 + 1671 ], "__typename": [ 80 @@ -116023,16 +116614,16 @@ export default { }, "v_league_season_player_stats_aggregate_bool_exp_stddev_samp": { "arguments": [ - 5130 + 5136 ], "distinct": [ 5 ], "filter": [ - 5117 + 5123 ], "predicate": [ - 1665 + 1671 ], "__typename": [ 80 @@ -116040,16 +116631,16 @@ export default { }, "v_league_season_player_stats_aggregate_bool_exp_sum": { "arguments": [ - 5131 + 5137 ], "distinct": [ 5 ], "filter": [ - 5117 + 5123 ], "predicate": [ - 1665 + 1671 ], "__typename": [ 80 @@ -116057,16 +116648,16 @@ export default { }, "v_league_season_player_stats_aggregate_bool_exp_var_samp": { "arguments": [ - 5132 + 5138 ], "distinct": [ 5 ], "filter": [ - 5117 + 5123 ], "predicate": [ - 1665 + 1671 ], "__typename": [ 80 @@ -116074,13 +116665,13 @@ export default { }, "v_league_season_player_stats_aggregate_fields": { "avg": [ - 5115 + 5121 ], "count": [ 40, { "columns": [ - 5124, + 5130, "[v_league_season_player_stats_select_column!]" ], "distinct": [ @@ -116089,31 +116680,31 @@ export default { } ], "max": [ - 5119 + 5125 ], "min": [ - 5121 + 5127 ], "stddev": [ - 5133 + 5139 ], "stddev_pop": [ - 5135 + 5141 ], "stddev_samp": [ - 5137 + 5143 ], "sum": [ - 5141 + 5147 ], "var_pop": [ - 5143 + 5149 ], "var_samp": [ - 5145 + 5151 ], "variance": [ - 5147 + 5153 ], "__typename": [ 80 @@ -116121,37 +116712,37 @@ export default { }, "v_league_season_player_stats_aggregate_order_by": { "avg": [ - 5116 + 5122 ], "count": [ - 2946 + 2952 ], "max": [ - 5120 + 5126 ], "min": [ - 5122 + 5128 ], "stddev": [ - 5134 + 5140 ], "stddev_pop": [ - 5136 + 5142 ], "stddev_samp": [ - 5138 + 5144 ], "sum": [ - 5142 + 5148 ], "var_pop": [ - 5144 + 5150 ], "var_samp": [ - 5146 + 5152 ], "variance": [ - 5148 + 5154 ], "__typename": [ 80 @@ -116159,7 +116750,7 @@ export default { }, "v_league_season_player_stats_arr_rel_insert_input": { "data": [ - 5118 + 5124 ], "__typename": [ 80 @@ -116196,28 +116787,28 @@ export default { }, "v_league_season_player_stats_avg_order_by": { "assists": [ - 2946 + 2952 ], "deaths": [ - 2946 + 2952 ], "headshot_percentage": [ - 2946 + 2952 ], "headshots": [ - 2946 + 2952 ], "kdr": [ - 2946 + 2952 ], "kills": [ - 2946 + 2952 ], "matches_played": [ - 2946 + 2952 ], "player_steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -116225,13 +116816,13 @@ export default { }, "v_league_season_player_stats_bool_exp": { "_and": [ - 5117 + 5123 ], "_not": [ - 5117 + 5123 ], "_or": [ - 5117 + 5123 ], "assists": [ 41 @@ -116240,43 +116831,43 @@ export default { 41 ], "headshot_percentage": [ - 1665 + 1671 ], "headshots": [ 41 ], "kdr": [ - 1665 + 1671 ], "kills": [ 41 ], "league_division_id": [ - 4995 + 5001 ], "league_season_division_id": [ - 4995 + 5001 ], "league_season_id": [ - 4995 + 5001 ], "league_team": [ - 2180 + 2186 ], "league_team_id": [ - 4995 + 5001 ], "league_team_season_id": [ - 4995 + 5001 ], "matches_played": [ 41 ], "player": [ - 3908 + 3914 ], "player_steam_id": [ - 254 + 260 ], "__typename": [ 80 @@ -116290,43 +116881,43 @@ export default { 40 ], "headshot_percentage": [ - 1664 + 1670 ], "headshots": [ 40 ], "kdr": [ - 1664 + 1670 ], "kills": [ 40 ], "league_division_id": [ - 4993 + 4999 ], "league_season_division_id": [ - 4993 + 4999 ], "league_season_id": [ - 4993 + 4999 ], "league_team": [ - 2186 + 2192 ], "league_team_id": [ - 4993 + 4999 ], "league_team_season_id": [ - 4993 + 4999 ], "matches_played": [ 40 ], "player": [ - 3915 + 3921 ], "player_steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -116340,37 +116931,37 @@ export default { 40 ], "headshot_percentage": [ - 1664 + 1670 ], "headshots": [ 40 ], "kdr": [ - 1664 + 1670 ], "kills": [ 40 ], "league_division_id": [ - 4993 + 4999 ], "league_season_division_id": [ - 4993 + 4999 ], "league_season_id": [ - 4993 + 4999 ], "league_team_id": [ - 4993 + 4999 ], "league_team_season_id": [ - 4993 + 4999 ], "matches_played": [ 40 ], "player_steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -116378,43 +116969,43 @@ export default { }, "v_league_season_player_stats_max_order_by": { "assists": [ - 2946 + 2952 ], "deaths": [ - 2946 + 2952 ], "headshot_percentage": [ - 2946 + 2952 ], "headshots": [ - 2946 + 2952 ], "kdr": [ - 2946 + 2952 ], "kills": [ - 2946 + 2952 ], "league_division_id": [ - 2946 + 2952 ], "league_season_division_id": [ - 2946 + 2952 ], "league_season_id": [ - 2946 + 2952 ], "league_team_id": [ - 2946 + 2952 ], "league_team_season_id": [ - 2946 + 2952 ], "matches_played": [ - 2946 + 2952 ], "player_steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -116428,37 +117019,37 @@ export default { 40 ], "headshot_percentage": [ - 1664 + 1670 ], "headshots": [ 40 ], "kdr": [ - 1664 + 1670 ], "kills": [ 40 ], "league_division_id": [ - 4993 + 4999 ], "league_season_division_id": [ - 4993 + 4999 ], "league_season_id": [ - 4993 + 4999 ], "league_team_id": [ - 4993 + 4999 ], "league_team_season_id": [ - 4993 + 4999 ], "matches_played": [ 40 ], "player_steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -116466,43 +117057,43 @@ export default { }, "v_league_season_player_stats_min_order_by": { "assists": [ - 2946 + 2952 ], "deaths": [ - 2946 + 2952 ], "headshot_percentage": [ - 2946 + 2952 ], "headshots": [ - 2946 + 2952 ], "kdr": [ - 2946 + 2952 ], "kills": [ - 2946 + 2952 ], "league_division_id": [ - 2946 + 2952 ], "league_season_division_id": [ - 2946 + 2952 ], "league_season_id": [ - 2946 + 2952 ], "league_team_id": [ - 2946 + 2952 ], "league_team_season_id": [ - 2946 + 2952 ], "matches_played": [ - 2946 + 2952 ], "player_steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -116510,49 +117101,49 @@ export default { }, "v_league_season_player_stats_order_by": { "assists": [ - 2946 + 2952 ], "deaths": [ - 2946 + 2952 ], "headshot_percentage": [ - 2946 + 2952 ], "headshots": [ - 2946 + 2952 ], "kdr": [ - 2946 + 2952 ], "kills": [ - 2946 + 2952 ], "league_division_id": [ - 2946 + 2952 ], "league_season_division_id": [ - 2946 + 2952 ], "league_season_id": [ - 2946 + 2952 ], "league_team": [ - 2188 + 2194 ], "league_team_id": [ - 2946 + 2952 ], "league_team_season_id": [ - 2946 + 2952 ], "matches_played": [ - 2946 + 2952 ], "player": [ - 3917 + 3923 ], "player_steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -116598,28 +117189,28 @@ export default { }, "v_league_season_player_stats_stddev_order_by": { "assists": [ - 2946 + 2952 ], "deaths": [ - 2946 + 2952 ], "headshot_percentage": [ - 2946 + 2952 ], "headshots": [ - 2946 + 2952 ], "kdr": [ - 2946 + 2952 ], "kills": [ - 2946 + 2952 ], "matches_played": [ - 2946 + 2952 ], "player_steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -116656,28 +117247,28 @@ export default { }, "v_league_season_player_stats_stddev_pop_order_by": { "assists": [ - 2946 + 2952 ], "deaths": [ - 2946 + 2952 ], "headshot_percentage": [ - 2946 + 2952 ], "headshots": [ - 2946 + 2952 ], "kdr": [ - 2946 + 2952 ], "kills": [ - 2946 + 2952 ], "matches_played": [ - 2946 + 2952 ], "player_steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -116714,28 +117305,28 @@ export default { }, "v_league_season_player_stats_stddev_samp_order_by": { "assists": [ - 2946 + 2952 ], "deaths": [ - 2946 + 2952 ], "headshot_percentage": [ - 2946 + 2952 ], "headshots": [ - 2946 + 2952 ], "kdr": [ - 2946 + 2952 ], "kills": [ - 2946 + 2952 ], "matches_played": [ - 2946 + 2952 ], "player_steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -116743,10 +117334,10 @@ export default { }, "v_league_season_player_stats_stream_cursor_input": { "initial_value": [ - 5140 + 5146 ], "ordering": [ - 308 + 314 ], "__typename": [ 80 @@ -116760,37 +117351,37 @@ export default { 40 ], "headshot_percentage": [ - 1664 + 1670 ], "headshots": [ 40 ], "kdr": [ - 1664 + 1670 ], "kills": [ 40 ], "league_division_id": [ - 4993 + 4999 ], "league_season_division_id": [ - 4993 + 4999 ], "league_season_id": [ - 4993 + 4999 ], "league_team_id": [ - 4993 + 4999 ], "league_team_season_id": [ - 4993 + 4999 ], "matches_played": [ 40 ], "player_steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -116804,13 +117395,13 @@ export default { 40 ], "headshot_percentage": [ - 1664 + 1670 ], "headshots": [ 40 ], "kdr": [ - 1664 + 1670 ], "kills": [ 40 @@ -116819,7 +117410,7 @@ export default { 40 ], "player_steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -116827,28 +117418,28 @@ export default { }, "v_league_season_player_stats_sum_order_by": { "assists": [ - 2946 + 2952 ], "deaths": [ - 2946 + 2952 ], "headshot_percentage": [ - 2946 + 2952 ], "headshots": [ - 2946 + 2952 ], "kdr": [ - 2946 + 2952 ], "kills": [ - 2946 + 2952 ], "matches_played": [ - 2946 + 2952 ], "player_steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -116885,28 +117476,28 @@ export default { }, "v_league_season_player_stats_var_pop_order_by": { "assists": [ - 2946 + 2952 ], "deaths": [ - 2946 + 2952 ], "headshot_percentage": [ - 2946 + 2952 ], "headshots": [ - 2946 + 2952 ], "kdr": [ - 2946 + 2952 ], "kills": [ - 2946 + 2952 ], "matches_played": [ - 2946 + 2952 ], "player_steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -116943,28 +117534,28 @@ export default { }, "v_league_season_player_stats_var_samp_order_by": { "assists": [ - 2946 + 2952 ], "deaths": [ - 2946 + 2952 ], "headshot_percentage": [ - 2946 + 2952 ], "headshots": [ - 2946 + 2952 ], "kdr": [ - 2946 + 2952 ], "kills": [ - 2946 + 2952 ], "matches_played": [ - 2946 + 2952 ], "player_steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -117001,28 +117592,28 @@ export default { }, "v_league_season_player_stats_variance_order_by": { "assists": [ - 2946 + 2952 ], "deaths": [ - 2946 + 2952 ], "headshot_percentage": [ - 2946 + 2952 ], "headshots": [ - 2946 + 2952 ], "kdr": [ - 2946 + 2952 ], "kills": [ - 2946 + 2952 ], "matches_played": [ - 2946 + 2952 ], "player_steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -117036,22 +117627,22 @@ export default { 80 ], "id": [ - 4993 + 4999 ], "lineup": [ - 2441 + 2447 ], "match_lineup_id": [ - 4993 + 4999 ], "placeholder_name": [ 80 ], "player": [ - 3904 + 3910 ], "steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -117059,10 +117650,10 @@ export default { }, "v_match_captains_aggregate": { "aggregate": [ - 5151 + 5157 ], "nodes": [ - 5149 + 5155 ], "__typename": [ 80 @@ -117070,13 +117661,13 @@ export default { }, "v_match_captains_aggregate_fields": { "avg": [ - 5152 + 5158 ], "count": [ 40, { "columns": [ - 5161, + 5167, "[v_match_captains_select_column!]" ], "distinct": [ @@ -117085,31 +117676,31 @@ export default { } ], "max": [ - 5156 + 5162 ], "min": [ - 5157 + 5163 ], "stddev": [ - 5163 + 5169 ], "stddev_pop": [ - 5164 + 5170 ], "stddev_samp": [ - 5165 + 5171 ], "sum": [ - 5168 + 5174 ], "var_pop": [ - 5170 + 5176 ], "var_samp": [ - 5171 + 5177 ], "variance": [ - 5172 + 5178 ], "__typename": [ 80 @@ -117125,13 +117716,13 @@ export default { }, "v_match_captains_bool_exp": { "_and": [ - 5153 + 5159 ], "_not": [ - 5153 + 5159 ], "_or": [ - 5153 + 5159 ], "captain": [ 6 @@ -117140,22 +117731,22 @@ export default { 82 ], "id": [ - 4995 + 5001 ], "lineup": [ - 2450 + 2456 ], "match_lineup_id": [ - 4995 + 5001 ], "placeholder_name": [ 82 ], "player": [ - 3908 + 3914 ], "steam_id": [ - 254 + 260 ], "__typename": [ 80 @@ -117163,7 +117754,7 @@ export default { }, "v_match_captains_inc_input": { "steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -117177,22 +117768,22 @@ export default { 80 ], "id": [ - 4993 + 4999 ], "lineup": [ - 2459 + 2465 ], "match_lineup_id": [ - 4993 + 4999 ], "placeholder_name": [ 80 ], "player": [ - 3915 + 3921 ], "steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -117203,16 +117794,16 @@ export default { 80 ], "id": [ - 4993 + 4999 ], "match_lineup_id": [ - 4993 + 4999 ], "placeholder_name": [ 80 ], "steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -117223,16 +117814,16 @@ export default { 80 ], "id": [ - 4993 + 4999 ], "match_lineup_id": [ - 4993 + 4999 ], "placeholder_name": [ 80 ], "steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -117243,7 +117834,7 @@ export default { 40 ], "returning": [ - 5149 + 5155 ], "__typename": [ 80 @@ -117251,7 +117842,7 @@ export default { }, "v_match_captains_obj_rel_insert_input": { "data": [ - 5155 + 5161 ], "__typename": [ 80 @@ -117259,28 +117850,28 @@ export default { }, "v_match_captains_order_by": { "captain": [ - 2946 + 2952 ], "discord_id": [ - 2946 + 2952 ], "id": [ - 2946 + 2952 ], "lineup": [ - 2461 + 2467 ], "match_lineup_id": [ - 2946 + 2952 ], "placeholder_name": [ - 2946 + 2952 ], "player": [ - 3917 + 3923 ], "steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -117295,16 +117886,16 @@ export default { 80 ], "id": [ - 4993 + 4999 ], "match_lineup_id": [ - 4993 + 4999 ], "placeholder_name": [ 80 ], "steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -117336,10 +117927,10 @@ export default { }, "v_match_captains_stream_cursor_input": { "initial_value": [ - 5167 + 5173 ], "ordering": [ - 308 + 314 ], "__typename": [ 80 @@ -117353,16 +117944,16 @@ export default { 80 ], "id": [ - 4993 + 4999 ], "match_lineup_id": [ - 4993 + 4999 ], "placeholder_name": [ 80 ], "steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -117370,7 +117961,7 @@ export default { }, "v_match_captains_sum_fields": { "steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -117378,13 +117969,13 @@ export default { }, "v_match_captains_updates": { "_inc": [ - 5154 + 5160 ], "_set": [ - 5162 + 5168 ], "where": [ - 5153 + 5159 ], "__typename": [ 80 @@ -117419,31 +118010,31 @@ export default { 40 ], "clutcher": [ - 3904 + 3910 ], "clutcher_steam_id": [ - 252 + 258 ], "kills_in_clutch": [ 40 ], "match": [ - 2761 + 2767 ], "match_id": [ - 4993 + 4999 ], "match_lineup": [ - 2441 + 2447 ], "match_lineup_id": [ - 4993 + 4999 ], "match_map": [ - 2599 + 2605 ], "match_map_id": [ - 4993 + 4999 ], "outcome": [ 80 @@ -117460,10 +118051,10 @@ export default { }, "v_match_clutches_aggregate": { "aggregate": [ - 5177 + 5183 ], "nodes": [ - 5173 + 5179 ], "__typename": [ 80 @@ -117471,7 +118062,7 @@ export default { }, "v_match_clutches_aggregate_bool_exp": { "count": [ - 5176 + 5182 ], "__typename": [ 80 @@ -117479,13 +118070,13 @@ export default { }, "v_match_clutches_aggregate_bool_exp_count": { "arguments": [ - 5189 + 5195 ], "distinct": [ 5 ], "filter": [ - 5182 + 5188 ], "predicate": [ 41 @@ -117496,13 +118087,13 @@ export default { }, "v_match_clutches_aggregate_fields": { "avg": [ - 5180 + 5186 ], "count": [ 40, { "columns": [ - 5189, + 5195, "[v_match_clutches_select_column!]" ], "distinct": [ @@ -117511,31 +118102,31 @@ export default { } ], "max": [ - 5184 + 5190 ], "min": [ - 5186 + 5192 ], "stddev": [ - 5190 + 5196 ], "stddev_pop": [ - 5192 + 5198 ], "stddev_samp": [ - 5194 + 5200 ], "sum": [ - 5198 + 5204 ], "var_pop": [ - 5200 + 5206 ], "var_samp": [ - 5202 + 5208 ], "variance": [ - 5204 + 5210 ], "__typename": [ 80 @@ -117543,37 +118134,37 @@ export default { }, "v_match_clutches_aggregate_order_by": { "avg": [ - 5181 + 5187 ], "count": [ - 2946 + 2952 ], "max": [ - 5185 + 5191 ], "min": [ - 5187 + 5193 ], "stddev": [ - 5191 + 5197 ], "stddev_pop": [ - 5193 + 5199 ], "stddev_samp": [ - 5195 + 5201 ], "sum": [ - 5199 + 5205 ], "var_pop": [ - 5201 + 5207 ], "var_samp": [ - 5203 + 5209 ], "variance": [ - 5205 + 5211 ], "__typename": [ 80 @@ -117581,7 +118172,7 @@ export default { }, "v_match_clutches_arr_rel_insert_input": { "data": [ - 5183 + 5189 ], "__typename": [ 80 @@ -117606,16 +118197,16 @@ export default { }, "v_match_clutches_avg_order_by": { "against_count": [ - 2946 + 2952 ], "clutcher_steam_id": [ - 2946 + 2952 ], "kills_in_clutch": [ - 2946 + 2952 ], "round": [ - 2946 + 2952 ], "__typename": [ 80 @@ -117623,43 +118214,43 @@ export default { }, "v_match_clutches_bool_exp": { "_and": [ - 5182 + 5188 ], "_not": [ - 5182 + 5188 ], "_or": [ - 5182 + 5188 ], "against_count": [ 41 ], "clutcher": [ - 3908 + 3914 ], "clutcher_steam_id": [ - 254 + 260 ], "kills_in_clutch": [ 41 ], "match": [ - 2770 + 2776 ], "match_id": [ - 4995 + 5001 ], "match_lineup": [ - 2450 + 2456 ], "match_lineup_id": [ - 4995 + 5001 ], "match_map": [ - 2608 + 2614 ], "match_map_id": [ - 4995 + 5001 ], "outcome": [ 82 @@ -117679,31 +118270,31 @@ export default { 40 ], "clutcher": [ - 3915 + 3921 ], "clutcher_steam_id": [ - 252 + 258 ], "kills_in_clutch": [ 40 ], "match": [ - 2779 + 2785 ], "match_id": [ - 4993 + 4999 ], "match_lineup": [ - 2459 + 2465 ], "match_lineup_id": [ - 4993 + 4999 ], "match_map": [ - 2617 + 2623 ], "match_map_id": [ - 4993 + 4999 ], "outcome": [ 80 @@ -117723,19 +118314,19 @@ export default { 40 ], "clutcher_steam_id": [ - 252 + 258 ], "kills_in_clutch": [ 40 ], "match_id": [ - 4993 + 4999 ], "match_lineup_id": [ - 4993 + 4999 ], "match_map_id": [ - 4993 + 4999 ], "outcome": [ 80 @@ -117752,31 +118343,31 @@ export default { }, "v_match_clutches_max_order_by": { "against_count": [ - 2946 + 2952 ], "clutcher_steam_id": [ - 2946 + 2952 ], "kills_in_clutch": [ - 2946 + 2952 ], "match_id": [ - 2946 + 2952 ], "match_lineup_id": [ - 2946 + 2952 ], "match_map_id": [ - 2946 + 2952 ], "outcome": [ - 2946 + 2952 ], "round": [ - 2946 + 2952 ], "side": [ - 2946 + 2952 ], "__typename": [ 80 @@ -117787,19 +118378,19 @@ export default { 40 ], "clutcher_steam_id": [ - 252 + 258 ], "kills_in_clutch": [ 40 ], "match_id": [ - 4993 + 4999 ], "match_lineup_id": [ - 4993 + 4999 ], "match_map_id": [ - 4993 + 4999 ], "outcome": [ 80 @@ -117816,31 +118407,31 @@ export default { }, "v_match_clutches_min_order_by": { "against_count": [ - 2946 + 2952 ], "clutcher_steam_id": [ - 2946 + 2952 ], "kills_in_clutch": [ - 2946 + 2952 ], "match_id": [ - 2946 + 2952 ], "match_lineup_id": [ - 2946 + 2952 ], "match_map_id": [ - 2946 + 2952 ], "outcome": [ - 2946 + 2952 ], "round": [ - 2946 + 2952 ], "side": [ - 2946 + 2952 ], "__typename": [ 80 @@ -117848,43 +118439,43 @@ export default { }, "v_match_clutches_order_by": { "against_count": [ - 2946 + 2952 ], "clutcher": [ - 3917 + 3923 ], "clutcher_steam_id": [ - 2946 + 2952 ], "kills_in_clutch": [ - 2946 + 2952 ], "match": [ - 2781 + 2787 ], "match_id": [ - 2946 + 2952 ], "match_lineup": [ - 2461 + 2467 ], "match_lineup_id": [ - 2946 + 2952 ], "match_map": [ - 2619 + 2625 ], "match_map_id": [ - 2946 + 2952 ], "outcome": [ - 2946 + 2952 ], "round": [ - 2946 + 2952 ], "side": [ - 2946 + 2952 ], "__typename": [ 80 @@ -117910,16 +118501,16 @@ export default { }, "v_match_clutches_stddev_order_by": { "against_count": [ - 2946 + 2952 ], "clutcher_steam_id": [ - 2946 + 2952 ], "kills_in_clutch": [ - 2946 + 2952 ], "round": [ - 2946 + 2952 ], "__typename": [ 80 @@ -117944,16 +118535,16 @@ export default { }, "v_match_clutches_stddev_pop_order_by": { "against_count": [ - 2946 + 2952 ], "clutcher_steam_id": [ - 2946 + 2952 ], "kills_in_clutch": [ - 2946 + 2952 ], "round": [ - 2946 + 2952 ], "__typename": [ 80 @@ -117978,16 +118569,16 @@ export default { }, "v_match_clutches_stddev_samp_order_by": { "against_count": [ - 2946 + 2952 ], "clutcher_steam_id": [ - 2946 + 2952 ], "kills_in_clutch": [ - 2946 + 2952 ], "round": [ - 2946 + 2952 ], "__typename": [ 80 @@ -117995,10 +118586,10 @@ export default { }, "v_match_clutches_stream_cursor_input": { "initial_value": [ - 5197 + 5203 ], "ordering": [ - 308 + 314 ], "__typename": [ 80 @@ -118009,19 +118600,19 @@ export default { 40 ], "clutcher_steam_id": [ - 252 + 258 ], "kills_in_clutch": [ 40 ], "match_id": [ - 4993 + 4999 ], "match_lineup_id": [ - 4993 + 4999 ], "match_map_id": [ - 4993 + 4999 ], "outcome": [ 80 @@ -118041,7 +118632,7 @@ export default { 40 ], "clutcher_steam_id": [ - 252 + 258 ], "kills_in_clutch": [ 40 @@ -118055,16 +118646,16 @@ export default { }, "v_match_clutches_sum_order_by": { "against_count": [ - 2946 + 2952 ], "clutcher_steam_id": [ - 2946 + 2952 ], "kills_in_clutch": [ - 2946 + 2952 ], "round": [ - 2946 + 2952 ], "__typename": [ 80 @@ -118089,16 +118680,16 @@ export default { }, "v_match_clutches_var_pop_order_by": { "against_count": [ - 2946 + 2952 ], "clutcher_steam_id": [ - 2946 + 2952 ], "kills_in_clutch": [ - 2946 + 2952 ], "round": [ - 2946 + 2952 ], "__typename": [ 80 @@ -118123,16 +118714,16 @@ export default { }, "v_match_clutches_var_samp_order_by": { "against_count": [ - 2946 + 2952 ], "clutcher_steam_id": [ - 2946 + 2952 ], "kills_in_clutch": [ - 2946 + 2952 ], "round": [ - 2946 + 2952 ], "__typename": [ 80 @@ -118157,16 +118748,16 @@ export default { }, "v_match_clutches_variance_order_by": { "against_count": [ - 2946 + 2952 ], "clutcher_steam_id": [ - 2946 + 2952 ], "kills_in_clutch": [ - 2946 + 2952 ], "round": [ - 2946 + 2952 ], "__typename": [ 80 @@ -118177,28 +118768,28 @@ export default { 80 ], "killer_steam_id": [ - 252 + 258 ], "kills": [ 40 ], "match": [ - 2761 + 2767 ], "match_id": [ - 4993 + 4999 ], "match_map": [ - 2599 + 2605 ], "match_map_id": [ - 4993 + 4999 ], "victim_side": [ 80 ], "victim_steam_id": [ - 252 + 258 ], "weapon": [ 80 @@ -118209,10 +118800,10 @@ export default { }, "v_match_kill_pairs_aggregate": { "aggregate": [ - 5208 + 5214 ], "nodes": [ - 5206 + 5212 ], "__typename": [ 80 @@ -118220,13 +118811,13 @@ export default { }, "v_match_kill_pairs_aggregate_fields": { "avg": [ - 5209 + 5215 ], "count": [ 40, { "columns": [ - 5214, + 5220, "[v_match_kill_pairs_select_column!]" ], "distinct": [ @@ -118235,31 +118826,31 @@ export default { } ], "max": [ - 5211 + 5217 ], "min": [ - 5212 + 5218 ], "stddev": [ - 5215 + 5221 ], "stddev_pop": [ - 5216 + 5222 ], "stddev_samp": [ - 5217 + 5223 ], "sum": [ - 5220 + 5226 ], "var_pop": [ - 5221 + 5227 ], "var_samp": [ - 5222 + 5228 ], "variance": [ - 5223 + 5229 ], "__typename": [ 80 @@ -118281,40 +118872,40 @@ export default { }, "v_match_kill_pairs_bool_exp": { "_and": [ - 5210 + 5216 ], "_not": [ - 5210 + 5216 ], "_or": [ - 5210 + 5216 ], "killer_side": [ 82 ], "killer_steam_id": [ - 254 + 260 ], "kills": [ 41 ], "match": [ - 2770 + 2776 ], "match_id": [ - 4995 + 5001 ], "match_map": [ - 2608 + 2614 ], "match_map_id": [ - 4995 + 5001 ], "victim_side": [ 82 ], "victim_steam_id": [ - 254 + 260 ], "weapon": [ 82 @@ -118328,22 +118919,22 @@ export default { 80 ], "killer_steam_id": [ - 252 + 258 ], "kills": [ 40 ], "match_id": [ - 4993 + 4999 ], "match_map_id": [ - 4993 + 4999 ], "victim_side": [ 80 ], "victim_steam_id": [ - 252 + 258 ], "weapon": [ 80 @@ -118357,22 +118948,22 @@ export default { 80 ], "killer_steam_id": [ - 252 + 258 ], "kills": [ 40 ], "match_id": [ - 4993 + 4999 ], "match_map_id": [ - 4993 + 4999 ], "victim_side": [ 80 ], "victim_steam_id": [ - 252 + 258 ], "weapon": [ 80 @@ -118383,34 +118974,34 @@ export default { }, "v_match_kill_pairs_order_by": { "killer_side": [ - 2946 + 2952 ], "killer_steam_id": [ - 2946 + 2952 ], "kills": [ - 2946 + 2952 ], "match": [ - 2781 + 2787 ], "match_id": [ - 2946 + 2952 ], "match_map": [ - 2619 + 2625 ], "match_map_id": [ - 2946 + 2952 ], "victim_side": [ - 2946 + 2952 ], "victim_steam_id": [ - 2946 + 2952 ], "weapon": [ - 2946 + 2952 ], "__typename": [ 80 @@ -118461,10 +119052,10 @@ export default { }, "v_match_kill_pairs_stream_cursor_input": { "initial_value": [ - 5219 + 5225 ], "ordering": [ - 308 + 314 ], "__typename": [ 80 @@ -118475,22 +119066,22 @@ export default { 80 ], "killer_steam_id": [ - 252 + 258 ], "kills": [ 40 ], "match_id": [ - 4993 + 4999 ], "match_map_id": [ - 4993 + 4999 ], "victim_side": [ 80 ], "victim_steam_id": [ - 252 + 258 ], "weapon": [ 80 @@ -118501,13 +119092,13 @@ export default { }, "v_match_kill_pairs_sum_fields": { "killer_steam_id": [ - 252 + 258 ], "kills": [ 40 ], "victim_steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -118557,22 +119148,22 @@ export default { }, "v_match_lineup_buy_types": { "match": [ - 2761 + 2767 ], "match_id": [ - 4993 + 4999 ], "match_lineup": [ - 2441 + 2447 ], "match_lineup_id": [ - 4993 + 4999 ], "match_map": [ - 2599 + 2605 ], "match_map_id": [ - 4993 + 4999 ], "matchup": [ 80 @@ -118592,10 +119183,10 @@ export default { }, "v_match_lineup_buy_types_aggregate": { "aggregate": [ - 5226 + 5232 ], "nodes": [ - 5224 + 5230 ], "__typename": [ 80 @@ -118603,13 +119194,13 @@ export default { }, "v_match_lineup_buy_types_aggregate_fields": { "avg": [ - 5227 + 5233 ], "count": [ 40, { "columns": [ - 5232, + 5238, "[v_match_lineup_buy_types_select_column!]" ], "distinct": [ @@ -118618,31 +119209,31 @@ export default { } ], "max": [ - 5229 + 5235 ], "min": [ - 5230 + 5236 ], "stddev": [ - 5233 + 5239 ], "stddev_pop": [ - 5234 + 5240 ], "stddev_samp": [ - 5235 + 5241 ], "sum": [ - 5238 + 5244 ], "var_pop": [ - 5239 + 5245 ], "var_samp": [ - 5240 + 5246 ], "variance": [ - 5241 + 5247 ], "__typename": [ 80 @@ -118661,31 +119252,31 @@ export default { }, "v_match_lineup_buy_types_bool_exp": { "_and": [ - 5228 + 5234 ], "_not": [ - 5228 + 5234 ], "_or": [ - 5228 + 5234 ], "match": [ - 2770 + 2776 ], "match_id": [ - 4995 + 5001 ], "match_lineup": [ - 2450 + 2456 ], "match_lineup_id": [ - 4995 + 5001 ], "match_map": [ - 2608 + 2614 ], "match_map_id": [ - 4995 + 5001 ], "matchup": [ 82 @@ -118705,13 +119296,13 @@ export default { }, "v_match_lineup_buy_types_max_fields": { "match_id": [ - 4993 + 4999 ], "match_lineup_id": [ - 4993 + 4999 ], "match_map_id": [ - 4993 + 4999 ], "matchup": [ 80 @@ -118731,13 +119322,13 @@ export default { }, "v_match_lineup_buy_types_min_fields": { "match_id": [ - 4993 + 4999 ], "match_lineup_id": [ - 4993 + 4999 ], "match_map_id": [ - 4993 + 4999 ], "matchup": [ 80 @@ -118757,34 +119348,34 @@ export default { }, "v_match_lineup_buy_types_order_by": { "match": [ - 2781 + 2787 ], "match_id": [ - 2946 + 2952 ], "match_lineup": [ - 2461 + 2467 ], "match_lineup_id": [ - 2946 + 2952 ], "match_map": [ - 2619 + 2625 ], "match_map_id": [ - 2946 + 2952 ], "matchup": [ - 2946 + 2952 ], "rounds": [ - 2946 + 2952 ], "side": [ - 2946 + 2952 ], "wins": [ - 2946 + 2952 ], "__typename": [ 80 @@ -118826,10 +119417,10 @@ export default { }, "v_match_lineup_buy_types_stream_cursor_input": { "initial_value": [ - 5237 + 5243 ], "ordering": [ - 308 + 314 ], "__typename": [ 80 @@ -118837,13 +119428,13 @@ export default { }, "v_match_lineup_buy_types_stream_cursor_value_input": { "match_id": [ - 4993 + 4999 ], "match_lineup_id": [ - 4993 + 4999 ], "match_map_id": [ - 4993 + 4999 ], "matchup": [ 80 @@ -118919,22 +119510,22 @@ export default { 40 ], "match": [ - 2761 + 2767 ], "match_id": [ - 4993 + 4999 ], "match_lineup": [ - 2441 + 2447 ], "match_lineup_id": [ - 4993 + 4999 ], "match_map": [ - 2599 + 2605 ], "match_map_id": [ - 4993 + 4999 ], "opening_attempts": [ 40 @@ -118975,10 +119566,10 @@ export default { }, "v_match_lineup_map_stats_aggregate": { "aggregate": [ - 5244 + 5250 ], "nodes": [ - 5242 + 5248 ], "__typename": [ 80 @@ -118986,13 +119577,13 @@ export default { }, "v_match_lineup_map_stats_aggregate_fields": { "avg": [ - 5245 + 5251 ], "count": [ 40, { "columns": [ - 5250, + 5256, "[v_match_lineup_map_stats_select_column!]" ], "distinct": [ @@ -119001,31 +119592,31 @@ export default { } ], "max": [ - 5247 + 5253 ], "min": [ - 5248 + 5254 ], "stddev": [ - 5251 + 5257 ], "stddev_pop": [ - 5252 + 5258 ], "stddev_samp": [ - 5253 + 5259 ], "sum": [ - 5256 + 5262 ], "var_pop": [ - 5257 + 5263 ], "var_samp": [ - 5258 + 5264 ], "variance": [ - 5259 + 5265 ], "__typename": [ 80 @@ -119080,13 +119671,13 @@ export default { }, "v_match_lineup_map_stats_bool_exp": { "_and": [ - 5246 + 5252 ], "_not": [ - 5246 + 5252 ], "_or": [ - 5246 + 5252 ], "man_adv_rounds": [ 41 @@ -119101,22 +119692,22 @@ export default { 41 ], "match": [ - 2770 + 2776 ], "match_id": [ - 4995 + 5001 ], "match_lineup": [ - 2450 + 2456 ], "match_lineup_id": [ - 4995 + 5001 ], "match_map": [ - 2608 + 2614 ], "match_map_id": [ - 4995 + 5001 ], "opening_attempts": [ 41 @@ -119169,13 +119760,13 @@ export default { 40 ], "match_id": [ - 4993 + 4999 ], "match_lineup_id": [ - 4993 + 4999 ], "match_map_id": [ - 4993 + 4999 ], "opening_attempts": [ 40 @@ -119228,13 +119819,13 @@ export default { 40 ], "match_id": [ - 4993 + 4999 ], "match_lineup_id": [ - 4993 + 4999 ], "match_map_id": [ - 4993 + 4999 ], "opening_attempts": [ 40 @@ -119275,67 +119866,67 @@ export default { }, "v_match_lineup_map_stats_order_by": { "man_adv_rounds": [ - 2946 + 2952 ], "man_adv_wins": [ - 2946 + 2952 ], "man_dis_rounds": [ - 2946 + 2952 ], "man_dis_wins": [ - 2946 + 2952 ], "match": [ - 2781 + 2787 ], "match_id": [ - 2946 + 2952 ], "match_lineup": [ - 2461 + 2467 ], "match_lineup_id": [ - 2946 + 2952 ], "match_map": [ - 2619 + 2625 ], "match_map_id": [ - 2946 + 2952 ], "opening_attempts": [ - 2946 + 2952 ], "opening_wins": [ - 2946 + 2952 ], "pistol_rounds": [ - 2946 + 2952 ], "pistol_wins": [ - 2946 + 2952 ], "round_wins": [ - 2946 + 2952 ], "rounds": [ - 2946 + 2952 ], "side": [ - 2946 + 2952 ], "won_buy_eco": [ - 2946 + 2952 ], "won_buy_force": [ - 2946 + 2952 ], "won_buy_full": [ - 2946 + 2952 ], "won_buy_pistol": [ - 2946 + 2952 ], "__typename": [ 80 @@ -119485,10 +120076,10 @@ export default { }, "v_match_lineup_map_stats_stream_cursor_input": { "initial_value": [ - 5255 + 5261 ], "ordering": [ - 308 + 314 ], "__typename": [ 80 @@ -119508,13 +120099,13 @@ export default { 40 ], "match_id": [ - 4993 + 4999 ], "match_lineup_id": [ - 4993 + 4999 ], "match_map_id": [ - 4993 + 4999 ], "opening_attempts": [ 40 @@ -119746,7 +120337,7 @@ export default { 5 ], "match_map_id": [ - 4993 + 4999 ], "round": [ 40 @@ -119757,10 +120348,10 @@ export default { }, "v_match_map_backup_rounds_aggregate": { "aggregate": [ - 5262 + 5268 ], "nodes": [ - 5260 + 5266 ], "__typename": [ 80 @@ -119768,13 +120359,13 @@ export default { }, "v_match_map_backup_rounds_aggregate_fields": { "avg": [ - 5263 + 5269 ], "count": [ 40, { "columns": [ - 5271, + 5277, "[v_match_map_backup_rounds_select_column!]" ], "distinct": [ @@ -119783,31 +120374,31 @@ export default { } ], "max": [ - 5267 + 5273 ], "min": [ - 5268 + 5274 ], "stddev": [ - 5273 + 5279 ], "stddev_pop": [ - 5274 + 5280 ], "stddev_samp": [ - 5275 + 5281 ], "sum": [ - 5278 + 5284 ], "var_pop": [ - 5280 + 5286 ], "var_samp": [ - 5281 + 5287 ], "variance": [ - 5282 + 5288 ], "__typename": [ 80 @@ -119823,19 +120414,19 @@ export default { }, "v_match_map_backup_rounds_bool_exp": { "_and": [ - 5264 + 5270 ], "_not": [ - 5264 + 5270 ], "_or": [ - 5264 + 5270 ], "has_backup_file": [ 6 ], "match_map_id": [ - 4995 + 5001 ], "round": [ 41 @@ -119857,7 +120448,7 @@ export default { 5 ], "match_map_id": [ - 4993 + 4999 ], "round": [ 40 @@ -119868,7 +120459,7 @@ export default { }, "v_match_map_backup_rounds_max_fields": { "match_map_id": [ - 4993 + 4999 ], "round": [ 40 @@ -119879,7 +120470,7 @@ export default { }, "v_match_map_backup_rounds_min_fields": { "match_map_id": [ - 4993 + 4999 ], "round": [ 40 @@ -119893,7 +120484,7 @@ export default { 40 ], "returning": [ - 5260 + 5266 ], "__typename": [ 80 @@ -119901,13 +120492,13 @@ export default { }, "v_match_map_backup_rounds_order_by": { "has_backup_file": [ - 2946 + 2952 ], "match_map_id": [ - 2946 + 2952 ], "round": [ - 2946 + 2952 ], "__typename": [ 80 @@ -119919,7 +120510,7 @@ export default { 5 ], "match_map_id": [ - 4993 + 4999 ], "round": [ 40 @@ -119954,10 +120545,10 @@ export default { }, "v_match_map_backup_rounds_stream_cursor_input": { "initial_value": [ - 5277 + 5283 ], "ordering": [ - 308 + 314 ], "__typename": [ 80 @@ -119968,7 +120559,7 @@ export default { 5 ], "match_map_id": [ - 4993 + 4999 ], "round": [ 40 @@ -119987,13 +120578,13 @@ export default { }, "v_match_map_backup_rounds_updates": { "_inc": [ - 5265 + 5271 ], "_set": [ - 5272 + 5278 ], "where": [ - 5264 + 5270 ], "__typename": [ 80 @@ -120031,28 +120622,28 @@ export default { 40 ], "match": [ - 2761 + 2767 ], "match_id": [ - 4993 + 4999 ], "match_lineup": [ - 2441 + 2447 ], "match_lineup_id": [ - 4993 + 4999 ], "match_map": [ - 2599 + 2605 ], "match_map_id": [ - 4993 + 4999 ], "matchup": [ 80 ], "player": [ - 3904 + 3910 ], "rounds": [ 40 @@ -120061,7 +120652,7 @@ export default { 80 ], "steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -120069,10 +120660,10 @@ export default { }, "v_match_player_buy_types_aggregate": { "aggregate": [ - 5285 + 5291 ], "nodes": [ - 5283 + 5289 ], "__typename": [ 80 @@ -120080,13 +120671,13 @@ export default { }, "v_match_player_buy_types_aggregate_fields": { "avg": [ - 5286 + 5292 ], "count": [ 40, { "columns": [ - 5291, + 5297, "[v_match_player_buy_types_select_column!]" ], "distinct": [ @@ -120095,31 +120686,31 @@ export default { } ], "max": [ - 5288 + 5294 ], "min": [ - 5289 + 5295 ], "stddev": [ - 5292 + 5298 ], "stddev_pop": [ - 5293 + 5299 ], "stddev_samp": [ - 5294 + 5300 ], "sum": [ - 5297 + 5303 ], "var_pop": [ - 5298 + 5304 ], "var_samp": [ - 5299 + 5305 ], "variance": [ - 5300 + 5306 ], "__typename": [ 80 @@ -120144,13 +120735,13 @@ export default { }, "v_match_player_buy_types_bool_exp": { "_and": [ - 5287 + 5293 ], "_not": [ - 5287 + 5293 ], "_or": [ - 5287 + 5293 ], "deaths": [ 41 @@ -120159,28 +120750,28 @@ export default { 41 ], "match": [ - 2770 + 2776 ], "match_id": [ - 4995 + 5001 ], "match_lineup": [ - 2450 + 2456 ], "match_lineup_id": [ - 4995 + 5001 ], "match_map": [ - 2608 + 2614 ], "match_map_id": [ - 4995 + 5001 ], "matchup": [ 82 ], "player": [ - 3908 + 3914 ], "rounds": [ 41 @@ -120189,7 +120780,7 @@ export default { 82 ], "steam_id": [ - 254 + 260 ], "__typename": [ 80 @@ -120203,13 +120794,13 @@ export default { 40 ], "match_id": [ - 4993 + 4999 ], "match_lineup_id": [ - 4993 + 4999 ], "match_map_id": [ - 4993 + 4999 ], "matchup": [ 80 @@ -120221,7 +120812,7 @@ export default { 80 ], "steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -120235,13 +120826,13 @@ export default { 40 ], "match_id": [ - 4993 + 4999 ], "match_lineup_id": [ - 4993 + 4999 ], "match_map_id": [ - 4993 + 4999 ], "matchup": [ 80 @@ -120253,7 +120844,7 @@ export default { 80 ], "steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -120261,43 +120852,43 @@ export default { }, "v_match_player_buy_types_order_by": { "deaths": [ - 2946 + 2952 ], "kills": [ - 2946 + 2952 ], "match": [ - 2781 + 2787 ], "match_id": [ - 2946 + 2952 ], "match_lineup": [ - 2461 + 2467 ], "match_lineup_id": [ - 2946 + 2952 ], "match_map": [ - 2619 + 2625 ], "match_map_id": [ - 2946 + 2952 ], "matchup": [ - 2946 + 2952 ], "player": [ - 3917 + 3923 ], "rounds": [ - 2946 + 2952 ], "side": [ - 2946 + 2952 ], "steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -120357,10 +120948,10 @@ export default { }, "v_match_player_buy_types_stream_cursor_input": { "initial_value": [ - 5296 + 5302 ], "ordering": [ - 308 + 314 ], "__typename": [ 80 @@ -120374,13 +120965,13 @@ export default { 40 ], "match_id": [ - 4993 + 4999 ], "match_lineup_id": [ - 4993 + 4999 ], "match_map_id": [ - 4993 + 4999 ], "matchup": [ 80 @@ -120392,7 +120983,7 @@ export default { 80 ], "steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -120409,7 +121000,7 @@ export default { 40 ], "steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -120474,31 +121065,31 @@ export default { 40 ], "match": [ - 2761 + 2767 ], "match_id": [ - 4993 + 4999 ], "match_lineup": [ - 2441 + 2447 ], "match_lineup_id": [ - 4993 + 4999 ], "match_map": [ - 2599 + 2605 ], "match_map_id": [ - 4993 + 4999 ], "player": [ - 3904 + 3910 ], "side": [ 80 ], "steam_id": [ - 252 + 258 ], "traded_deaths": [ 40 @@ -120512,10 +121103,10 @@ export default { }, "v_match_player_opening_duels_aggregate": { "aggregate": [ - 5305 + 5311 ], "nodes": [ - 5301 + 5307 ], "__typename": [ 80 @@ -120523,7 +121114,7 @@ export default { }, "v_match_player_opening_duels_aggregate_bool_exp": { "count": [ - 5304 + 5310 ], "__typename": [ 80 @@ -120531,13 +121122,13 @@ export default { }, "v_match_player_opening_duels_aggregate_bool_exp_count": { "arguments": [ - 5317 + 5323 ], "distinct": [ 5 ], "filter": [ - 5310 + 5316 ], "predicate": [ 41 @@ -120548,13 +121139,13 @@ export default { }, "v_match_player_opening_duels_aggregate_fields": { "avg": [ - 5308 + 5314 ], "count": [ 40, { "columns": [ - 5317, + 5323, "[v_match_player_opening_duels_select_column!]" ], "distinct": [ @@ -120563,31 +121154,31 @@ export default { } ], "max": [ - 5312 + 5318 ], "min": [ - 5314 + 5320 ], "stddev": [ - 5318 + 5324 ], "stddev_pop": [ - 5320 + 5326 ], "stddev_samp": [ - 5322 + 5328 ], "sum": [ - 5326 + 5332 ], "var_pop": [ - 5328 + 5334 ], "var_samp": [ - 5330 + 5336 ], "variance": [ - 5332 + 5338 ], "__typename": [ 80 @@ -120595,37 +121186,37 @@ export default { }, "v_match_player_opening_duels_aggregate_order_by": { "avg": [ - 5309 + 5315 ], "count": [ - 2946 + 2952 ], "max": [ - 5313 + 5319 ], "min": [ - 5315 + 5321 ], "stddev": [ - 5319 + 5325 ], "stddev_pop": [ - 5321 + 5327 ], "stddev_samp": [ - 5323 + 5329 ], "sum": [ - 5327 + 5333 ], "var_pop": [ - 5329 + 5335 ], "var_samp": [ - 5331 + 5337 ], "variance": [ - 5333 + 5339 ], "__typename": [ 80 @@ -120633,7 +121224,7 @@ export default { }, "v_match_player_opening_duels_arr_rel_insert_input": { "data": [ - 5311 + 5317 ], "__typename": [ 80 @@ -120661,19 +121252,19 @@ export default { }, "v_match_player_opening_duels_avg_order_by": { "attempts": [ - 2946 + 2952 ], "deaths": [ - 2946 + 2952 ], "steam_id": [ - 2946 + 2952 ], "traded_deaths": [ - 2946 + 2952 ], "wins": [ - 2946 + 2952 ], "__typename": [ 80 @@ -120681,13 +121272,13 @@ export default { }, "v_match_player_opening_duels_bool_exp": { "_and": [ - 5310 + 5316 ], "_not": [ - 5310 + 5316 ], "_or": [ - 5310 + 5316 ], "attempts": [ 41 @@ -120696,31 +121287,31 @@ export default { 41 ], "match": [ - 2770 + 2776 ], "match_id": [ - 4995 + 5001 ], "match_lineup": [ - 2450 + 2456 ], "match_lineup_id": [ - 4995 + 5001 ], "match_map": [ - 2608 + 2614 ], "match_map_id": [ - 4995 + 5001 ], "player": [ - 3908 + 3914 ], "side": [ 82 ], "steam_id": [ - 254 + 260 ], "traded_deaths": [ 41 @@ -120740,31 +121331,31 @@ export default { 40 ], "match": [ - 2779 + 2785 ], "match_id": [ - 4993 + 4999 ], "match_lineup": [ - 2459 + 2465 ], "match_lineup_id": [ - 4993 + 4999 ], "match_map": [ - 2617 + 2623 ], "match_map_id": [ - 4993 + 4999 ], "player": [ - 3915 + 3921 ], "side": [ 80 ], "steam_id": [ - 252 + 258 ], "traded_deaths": [ 40 @@ -120784,19 +121375,19 @@ export default { 40 ], "match_id": [ - 4993 + 4999 ], "match_lineup_id": [ - 4993 + 4999 ], "match_map_id": [ - 4993 + 4999 ], "side": [ 80 ], "steam_id": [ - 252 + 258 ], "traded_deaths": [ 40 @@ -120810,31 +121401,31 @@ export default { }, "v_match_player_opening_duels_max_order_by": { "attempts": [ - 2946 + 2952 ], "deaths": [ - 2946 + 2952 ], "match_id": [ - 2946 + 2952 ], "match_lineup_id": [ - 2946 + 2952 ], "match_map_id": [ - 2946 + 2952 ], "side": [ - 2946 + 2952 ], "steam_id": [ - 2946 + 2952 ], "traded_deaths": [ - 2946 + 2952 ], "wins": [ - 2946 + 2952 ], "__typename": [ 80 @@ -120848,19 +121439,19 @@ export default { 40 ], "match_id": [ - 4993 + 4999 ], "match_lineup_id": [ - 4993 + 4999 ], "match_map_id": [ - 4993 + 4999 ], "side": [ 80 ], "steam_id": [ - 252 + 258 ], "traded_deaths": [ 40 @@ -120874,31 +121465,31 @@ export default { }, "v_match_player_opening_duels_min_order_by": { "attempts": [ - 2946 + 2952 ], "deaths": [ - 2946 + 2952 ], "match_id": [ - 2946 + 2952 ], "match_lineup_id": [ - 2946 + 2952 ], "match_map_id": [ - 2946 + 2952 ], "side": [ - 2946 + 2952 ], "steam_id": [ - 2946 + 2952 ], "traded_deaths": [ - 2946 + 2952 ], "wins": [ - 2946 + 2952 ], "__typename": [ 80 @@ -120906,43 +121497,43 @@ export default { }, "v_match_player_opening_duels_order_by": { "attempts": [ - 2946 + 2952 ], "deaths": [ - 2946 + 2952 ], "match": [ - 2781 + 2787 ], "match_id": [ - 2946 + 2952 ], "match_lineup": [ - 2461 + 2467 ], "match_lineup_id": [ - 2946 + 2952 ], "match_map": [ - 2619 + 2625 ], "match_map_id": [ - 2946 + 2952 ], "player": [ - 3917 + 3923 ], "side": [ - 2946 + 2952 ], "steam_id": [ - 2946 + 2952 ], "traded_deaths": [ - 2946 + 2952 ], "wins": [ - 2946 + 2952 ], "__typename": [ 80 @@ -120971,19 +121562,19 @@ export default { }, "v_match_player_opening_duels_stddev_order_by": { "attempts": [ - 2946 + 2952 ], "deaths": [ - 2946 + 2952 ], "steam_id": [ - 2946 + 2952 ], "traded_deaths": [ - 2946 + 2952 ], "wins": [ - 2946 + 2952 ], "__typename": [ 80 @@ -121011,19 +121602,19 @@ export default { }, "v_match_player_opening_duels_stddev_pop_order_by": { "attempts": [ - 2946 + 2952 ], "deaths": [ - 2946 + 2952 ], "steam_id": [ - 2946 + 2952 ], "traded_deaths": [ - 2946 + 2952 ], "wins": [ - 2946 + 2952 ], "__typename": [ 80 @@ -121051,19 +121642,19 @@ export default { }, "v_match_player_opening_duels_stddev_samp_order_by": { "attempts": [ - 2946 + 2952 ], "deaths": [ - 2946 + 2952 ], "steam_id": [ - 2946 + 2952 ], "traded_deaths": [ - 2946 + 2952 ], "wins": [ - 2946 + 2952 ], "__typename": [ 80 @@ -121071,10 +121662,10 @@ export default { }, "v_match_player_opening_duels_stream_cursor_input": { "initial_value": [ - 5325 + 5331 ], "ordering": [ - 308 + 314 ], "__typename": [ 80 @@ -121088,19 +121679,19 @@ export default { 40 ], "match_id": [ - 4993 + 4999 ], "match_lineup_id": [ - 4993 + 4999 ], "match_map_id": [ - 4993 + 4999 ], "side": [ 80 ], "steam_id": [ - 252 + 258 ], "traded_deaths": [ 40 @@ -121120,7 +121711,7 @@ export default { 40 ], "steam_id": [ - 252 + 258 ], "traded_deaths": [ 40 @@ -121134,19 +121725,19 @@ export default { }, "v_match_player_opening_duels_sum_order_by": { "attempts": [ - 2946 + 2952 ], "deaths": [ - 2946 + 2952 ], "steam_id": [ - 2946 + 2952 ], "traded_deaths": [ - 2946 + 2952 ], "wins": [ - 2946 + 2952 ], "__typename": [ 80 @@ -121174,19 +121765,19 @@ export default { }, "v_match_player_opening_duels_var_pop_order_by": { "attempts": [ - 2946 + 2952 ], "deaths": [ - 2946 + 2952 ], "steam_id": [ - 2946 + 2952 ], "traded_deaths": [ - 2946 + 2952 ], "wins": [ - 2946 + 2952 ], "__typename": [ 80 @@ -121214,19 +121805,19 @@ export default { }, "v_match_player_opening_duels_var_samp_order_by": { "attempts": [ - 2946 + 2952 ], "deaths": [ - 2946 + 2952 ], "steam_id": [ - 2946 + 2952 ], "traded_deaths": [ - 2946 + 2952 ], "wins": [ - 2946 + 2952 ], "__typename": [ 80 @@ -121254,19 +121845,19 @@ export default { }, "v_match_player_opening_duels_variance_order_by": { "attempts": [ - 2946 + 2952 ], "deaths": [ - 2946 + 2952 ], "steam_id": [ - 2946 + 2952 ], "traded_deaths": [ - 2946 + 2952 ], "wins": [ - 2946 + 2952 ], "__typename": [ 80 @@ -121274,19 +121865,19 @@ export default { }, "v_player_arch_nemesis": { "attacker_id": [ - 252 + 258 ], "kill_count": [ - 252 + 258 ], "nemsis": [ - 3904 + 3910 ], "player": [ - 3904 + 3910 ], "victim_id": [ - 252 + 258 ], "__typename": [ 80 @@ -121294,10 +121885,10 @@ export default { }, "v_player_arch_nemesis_aggregate": { "aggregate": [ - 5336 + 5342 ], "nodes": [ - 5334 + 5340 ], "__typename": [ 80 @@ -121305,13 +121896,13 @@ export default { }, "v_player_arch_nemesis_aggregate_fields": { "avg": [ - 5337 + 5343 ], "count": [ 40, { "columns": [ - 5342, + 5348, "[v_player_arch_nemesis_select_column!]" ], "distinct": [ @@ -121320,31 +121911,31 @@ export default { } ], "max": [ - 5339 + 5345 ], "min": [ - 5340 + 5346 ], "stddev": [ - 5343 + 5349 ], "stddev_pop": [ - 5344 + 5350 ], "stddev_samp": [ - 5345 + 5351 ], "sum": [ - 5348 + 5354 ], "var_pop": [ - 5349 + 5355 ], "var_samp": [ - 5350 + 5356 ], "variance": [ - 5351 + 5357 ], "__typename": [ 80 @@ -121366,28 +121957,28 @@ export default { }, "v_player_arch_nemesis_bool_exp": { "_and": [ - 5338 + 5344 ], "_not": [ - 5338 + 5344 ], "_or": [ - 5338 + 5344 ], "attacker_id": [ - 254 + 260 ], "kill_count": [ - 254 + 260 ], "nemsis": [ - 3908 + 3914 ], "player": [ - 3908 + 3914 ], "victim_id": [ - 254 + 260 ], "__typename": [ 80 @@ -121395,13 +121986,13 @@ export default { }, "v_player_arch_nemesis_max_fields": { "attacker_id": [ - 252 + 258 ], "kill_count": [ - 252 + 258 ], "victim_id": [ - 252 + 258 ], "__typename": [ 80 @@ -121409,13 +122000,13 @@ export default { }, "v_player_arch_nemesis_min_fields": { "attacker_id": [ - 252 + 258 ], "kill_count": [ - 252 + 258 ], "victim_id": [ - 252 + 258 ], "__typename": [ 80 @@ -121423,19 +122014,19 @@ export default { }, "v_player_arch_nemesis_order_by": { "attacker_id": [ - 2946 + 2952 ], "kill_count": [ - 2946 + 2952 ], "nemsis": [ - 3917 + 3923 ], "player": [ - 3917 + 3923 ], "victim_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -121486,10 +122077,10 @@ export default { }, "v_player_arch_nemesis_stream_cursor_input": { "initial_value": [ - 5347 + 5353 ], "ordering": [ - 308 + 314 ], "__typename": [ 80 @@ -121497,13 +122088,13 @@ export default { }, "v_player_arch_nemesis_stream_cursor_value_input": { "attacker_id": [ - 252 + 258 ], "kill_count": [ - 252 + 258 ], "victim_id": [ - 252 + 258 ], "__typename": [ 80 @@ -121511,13 +122102,13 @@ export default { }, "v_player_arch_nemesis_sum_fields": { "attacker_id": [ - 252 + 258 ], "kill_count": [ - 252 + 258 ], "victim_id": [ - 252 + 258 ], "__typename": [ 80 @@ -121567,19 +122158,19 @@ export default { }, "v_player_damage": { "avg_damage_per_round": [ - 252 + 258 ], "player": [ - 3904 + 3910 ], "player_steam_id": [ - 252 + 258 ], "total_damage": [ - 252 + 258 ], "total_rounds": [ - 252 + 258 ], "__typename": [ 80 @@ -121587,10 +122178,10 @@ export default { }, "v_player_damage_aggregate": { "aggregate": [ - 5354 + 5360 ], "nodes": [ - 5352 + 5358 ], "__typename": [ 80 @@ -121598,13 +122189,13 @@ export default { }, "v_player_damage_aggregate_fields": { "avg": [ - 5355 + 5361 ], "count": [ 40, { "columns": [ - 5360, + 5366, "[v_player_damage_select_column!]" ], "distinct": [ @@ -121613,31 +122204,31 @@ export default { } ], "max": [ - 5357 + 5363 ], "min": [ - 5358 + 5364 ], "stddev": [ - 5361 + 5367 ], "stddev_pop": [ - 5362 + 5368 ], "stddev_samp": [ - 5363 + 5369 ], "sum": [ - 5366 + 5372 ], "var_pop": [ - 5367 + 5373 ], "var_samp": [ - 5368 + 5374 ], "variance": [ - 5369 + 5375 ], "__typename": [ 80 @@ -121662,28 +122253,28 @@ export default { }, "v_player_damage_bool_exp": { "_and": [ - 5356 + 5362 ], "_not": [ - 5356 + 5362 ], "_or": [ - 5356 + 5362 ], "avg_damage_per_round": [ - 254 + 260 ], "player": [ - 3908 + 3914 ], "player_steam_id": [ - 254 + 260 ], "total_damage": [ - 254 + 260 ], "total_rounds": [ - 254 + 260 ], "__typename": [ 80 @@ -121691,16 +122282,16 @@ export default { }, "v_player_damage_max_fields": { "avg_damage_per_round": [ - 252 + 258 ], "player_steam_id": [ - 252 + 258 ], "total_damage": [ - 252 + 258 ], "total_rounds": [ - 252 + 258 ], "__typename": [ 80 @@ -121708,16 +122299,16 @@ export default { }, "v_player_damage_min_fields": { "avg_damage_per_round": [ - 252 + 258 ], "player_steam_id": [ - 252 + 258 ], "total_damage": [ - 252 + 258 ], "total_rounds": [ - 252 + 258 ], "__typename": [ 80 @@ -121725,19 +122316,19 @@ export default { }, "v_player_damage_order_by": { "avg_damage_per_round": [ - 2946 + 2952 ], "player": [ - 3917 + 3923 ], "player_steam_id": [ - 2946 + 2952 ], "total_damage": [ - 2946 + 2952 ], "total_rounds": [ - 2946 + 2952 ], "__typename": [ 80 @@ -121797,10 +122388,10 @@ export default { }, "v_player_damage_stream_cursor_input": { "initial_value": [ - 5365 + 5371 ], "ordering": [ - 308 + 314 ], "__typename": [ 80 @@ -121808,16 +122399,16 @@ export default { }, "v_player_damage_stream_cursor_value_input": { "avg_damage_per_round": [ - 252 + 258 ], "player_steam_id": [ - 252 + 258 ], "total_damage": [ - 252 + 258 ], "total_rounds": [ - 252 + 258 ], "__typename": [ 80 @@ -121825,16 +122416,16 @@ export default { }, "v_player_damage_sum_fields": { "avg_damage_per_round": [ - 252 + 258 ], "player_steam_id": [ - 252 + 258 ], "total_damage": [ - 252 + 258 ], "total_rounds": [ - 252 + 258 ], "__typename": [ 80 @@ -121893,7 +122484,7 @@ export default { }, "v_player_elo": { "actual_score": [ - 1664 + 1670 ], "assists": [ 40 @@ -121905,7 +122496,7 @@ export default { 40 ], "damage_percent": [ - 1664 + 1670 ], "deaths": [ 40 @@ -121914,16 +122505,16 @@ export default { 40 ], "expected_score": [ - 1664 + 1670 ], "impact": [ - 1664 + 1670 ], "k_factor": [ 40 ], "kda": [ - 1664 + 1670 ], "kills": [ 40 @@ -121935,40 +122526,40 @@ export default { 40 ], "match": [ - 2761 + 2767 ], "match_created_at": [ - 4493 + 4499 ], "match_id": [ - 4993 + 4999 ], "match_result": [ 80 ], "opponent_team_elo_avg": [ - 1664 + 1670 ], "performance_multiplier": [ - 1664 + 1670 ], "player_name": [ 80 ], "player_steam_id": [ - 252 + 258 ], "player_team_elo_avg": [ - 1664 + 1670 ], "season_id": [ - 4993 + 4999 ], "series_multiplier": [ 40 ], "team_avg_kda": [ - 1664 + 1670 ], "type": [ 80 @@ -121982,10 +122573,10 @@ export default { }, "v_player_elo_aggregate": { "aggregate": [ - 5384 + 5390 ], "nodes": [ - 5370 + 5376 ], "__typename": [ 80 @@ -121993,31 +122584,31 @@ export default { }, "v_player_elo_aggregate_bool_exp": { "avg": [ - 5373 + 5379 ], "corr": [ - 5374 + 5380 ], "count": [ - 5376 + 5382 ], "covar_samp": [ - 5377 + 5383 ], "max": [ - 5379 + 5385 ], "min": [ - 5380 + 5386 ], "stddev_samp": [ - 5381 + 5387 ], "sum": [ - 5382 + 5388 ], "var_samp": [ - 5383 + 5389 ], "__typename": [ 80 @@ -122025,16 +122616,16 @@ export default { }, "v_player_elo_aggregate_bool_exp_avg": { "arguments": [ - 5397 + 5403 ], "distinct": [ 5 ], "filter": [ - 5389 + 5395 ], "predicate": [ - 1665 + 1671 ], "__typename": [ 80 @@ -122042,16 +122633,16 @@ export default { }, "v_player_elo_aggregate_bool_exp_corr": { "arguments": [ - 5375 + 5381 ], "distinct": [ 5 ], "filter": [ - 5389 + 5395 ], "predicate": [ - 1665 + 1671 ], "__typename": [ 80 @@ -122059,10 +122650,10 @@ export default { }, "v_player_elo_aggregate_bool_exp_corr_arguments": { "X": [ - 5398 + 5404 ], "Y": [ - 5398 + 5404 ], "__typename": [ 80 @@ -122070,13 +122661,13 @@ export default { }, "v_player_elo_aggregate_bool_exp_count": { "arguments": [ - 5396 + 5402 ], "distinct": [ 5 ], "filter": [ - 5389 + 5395 ], "predicate": [ 41 @@ -122087,16 +122678,16 @@ export default { }, "v_player_elo_aggregate_bool_exp_covar_samp": { "arguments": [ - 5378 + 5384 ], "distinct": [ 5 ], "filter": [ - 5389 + 5395 ], "predicate": [ - 1665 + 1671 ], "__typename": [ 80 @@ -122104,10 +122695,10 @@ export default { }, "v_player_elo_aggregate_bool_exp_covar_samp_arguments": { "X": [ - 5399 + 5405 ], "Y": [ - 5399 + 5405 ], "__typename": [ 80 @@ -122115,16 +122706,16 @@ export default { }, "v_player_elo_aggregate_bool_exp_max": { "arguments": [ - 5400 + 5406 ], "distinct": [ 5 ], "filter": [ - 5389 + 5395 ], "predicate": [ - 1665 + 1671 ], "__typename": [ 80 @@ -122132,16 +122723,16 @@ export default { }, "v_player_elo_aggregate_bool_exp_min": { "arguments": [ - 5401 + 5407 ], "distinct": [ 5 ], "filter": [ - 5389 + 5395 ], "predicate": [ - 1665 + 1671 ], "__typename": [ 80 @@ -122149,16 +122740,16 @@ export default { }, "v_player_elo_aggregate_bool_exp_stddev_samp": { "arguments": [ - 5402 + 5408 ], "distinct": [ 5 ], "filter": [ - 5389 + 5395 ], "predicate": [ - 1665 + 1671 ], "__typename": [ 80 @@ -122166,16 +122757,16 @@ export default { }, "v_player_elo_aggregate_bool_exp_sum": { "arguments": [ - 5403 + 5409 ], "distinct": [ 5 ], "filter": [ - 5389 + 5395 ], "predicate": [ - 1665 + 1671 ], "__typename": [ 80 @@ -122183,16 +122774,16 @@ export default { }, "v_player_elo_aggregate_bool_exp_var_samp": { "arguments": [ - 5404 + 5410 ], "distinct": [ 5 ], "filter": [ - 5389 + 5395 ], "predicate": [ - 1665 + 1671 ], "__typename": [ 80 @@ -122200,13 +122791,13 @@ export default { }, "v_player_elo_aggregate_fields": { "avg": [ - 5387 + 5393 ], "count": [ 40, { "columns": [ - 5396, + 5402, "[v_player_elo_select_column!]" ], "distinct": [ @@ -122215,31 +122806,31 @@ export default { } ], "max": [ - 5391 + 5397 ], "min": [ - 5393 + 5399 ], "stddev": [ - 5405 + 5411 ], "stddev_pop": [ - 5407 + 5413 ], "stddev_samp": [ - 5409 + 5415 ], "sum": [ - 5413 + 5419 ], "var_pop": [ - 5415 + 5421 ], "var_samp": [ - 5417 + 5423 ], "variance": [ - 5419 + 5425 ], "__typename": [ 80 @@ -122247,37 +122838,37 @@ export default { }, "v_player_elo_aggregate_order_by": { "avg": [ - 5388 + 5394 ], "count": [ - 2946 + 2952 ], "max": [ - 5392 + 5398 ], "min": [ - 5394 + 5400 ], "stddev": [ - 5406 + 5412 ], "stddev_pop": [ - 5408 + 5414 ], "stddev_samp": [ - 5410 + 5416 ], "sum": [ - 5414 + 5420 ], "var_pop": [ - 5416 + 5422 ], "var_samp": [ - 5418 + 5424 ], "variance": [ - 5420 + 5426 ], "__typename": [ 80 @@ -122285,7 +122876,7 @@ export default { }, "v_player_elo_arr_rel_insert_input": { "data": [ - 5390 + 5396 ], "__typename": [ 80 @@ -122361,67 +122952,67 @@ export default { }, "v_player_elo_avg_order_by": { "actual_score": [ - 2946 + 2952 ], "assists": [ - 2946 + 2952 ], "current_elo": [ - 2946 + 2952 ], "damage": [ - 2946 + 2952 ], "damage_percent": [ - 2946 + 2952 ], "deaths": [ - 2946 + 2952 ], "elo_change": [ - 2946 + 2952 ], "expected_score": [ - 2946 + 2952 ], "impact": [ - 2946 + 2952 ], "k_factor": [ - 2946 + 2952 ], "kda": [ - 2946 + 2952 ], "kills": [ - 2946 + 2952 ], "map_losses": [ - 2946 + 2952 ], "map_wins": [ - 2946 + 2952 ], "opponent_team_elo_avg": [ - 2946 + 2952 ], "performance_multiplier": [ - 2946 + 2952 ], "player_steam_id": [ - 2946 + 2952 ], "player_team_elo_avg": [ - 2946 + 2952 ], "series_multiplier": [ - 2946 + 2952 ], "team_avg_kda": [ - 2946 + 2952 ], "updated_elo": [ - 2946 + 2952 ], "__typename": [ 80 @@ -122429,16 +123020,16 @@ export default { }, "v_player_elo_bool_exp": { "_and": [ - 5389 + 5395 ], "_not": [ - 5389 + 5395 ], "_or": [ - 5389 + 5395 ], "actual_score": [ - 1665 + 1671 ], "assists": [ 41 @@ -122450,7 +123041,7 @@ export default { 41 ], "damage_percent": [ - 1665 + 1671 ], "deaths": [ 41 @@ -122459,16 +123050,16 @@ export default { 41 ], "expected_score": [ - 1665 + 1671 ], "impact": [ - 1665 + 1671 ], "k_factor": [ 41 ], "kda": [ - 1665 + 1671 ], "kills": [ 41 @@ -122480,40 +123071,40 @@ export default { 41 ], "match": [ - 2770 + 2776 ], "match_created_at": [ - 4494 + 4500 ], "match_id": [ - 4995 + 5001 ], "match_result": [ 82 ], "opponent_team_elo_avg": [ - 1665 + 1671 ], "performance_multiplier": [ - 1665 + 1671 ], "player_name": [ 82 ], "player_steam_id": [ - 254 + 260 ], "player_team_elo_avg": [ - 1665 + 1671 ], "season_id": [ - 4995 + 5001 ], "series_multiplier": [ 41 ], "team_avg_kda": [ - 1665 + 1671 ], "type": [ 82 @@ -122527,7 +123118,7 @@ export default { }, "v_player_elo_insert_input": { "actual_score": [ - 1664 + 1670 ], "assists": [ 40 @@ -122539,7 +123130,7 @@ export default { 40 ], "damage_percent": [ - 1664 + 1670 ], "deaths": [ 40 @@ -122548,16 +123139,16 @@ export default { 40 ], "expected_score": [ - 1664 + 1670 ], "impact": [ - 1664 + 1670 ], "k_factor": [ 40 ], "kda": [ - 1664 + 1670 ], "kills": [ 40 @@ -122569,40 +123160,40 @@ export default { 40 ], "match": [ - 2779 + 2785 ], "match_created_at": [ - 4493 + 4499 ], "match_id": [ - 4993 + 4999 ], "match_result": [ 80 ], "opponent_team_elo_avg": [ - 1664 + 1670 ], "performance_multiplier": [ - 1664 + 1670 ], "player_name": [ 80 ], "player_steam_id": [ - 252 + 258 ], "player_team_elo_avg": [ - 1664 + 1670 ], "season_id": [ - 4993 + 4999 ], "series_multiplier": [ 40 ], "team_avg_kda": [ - 1664 + 1670 ], "type": [ 80 @@ -122616,7 +123207,7 @@ export default { }, "v_player_elo_max_fields": { "actual_score": [ - 1664 + 1670 ], "assists": [ 40 @@ -122628,7 +123219,7 @@ export default { 40 ], "damage_percent": [ - 1664 + 1670 ], "deaths": [ 40 @@ -122637,16 +123228,16 @@ export default { 40 ], "expected_score": [ - 1664 + 1670 ], "impact": [ - 1664 + 1670 ], "k_factor": [ 40 ], "kda": [ - 1664 + 1670 ], "kills": [ 40 @@ -122658,37 +123249,37 @@ export default { 40 ], "match_created_at": [ - 4493 + 4499 ], "match_id": [ - 4993 + 4999 ], "match_result": [ 80 ], "opponent_team_elo_avg": [ - 1664 + 1670 ], "performance_multiplier": [ - 1664 + 1670 ], "player_name": [ 80 ], "player_steam_id": [ - 252 + 258 ], "player_team_elo_avg": [ - 1664 + 1670 ], "season_id": [ - 4993 + 4999 ], "series_multiplier": [ 40 ], "team_avg_kda": [ - 1664 + 1670 ], "type": [ 80 @@ -122702,85 +123293,85 @@ export default { }, "v_player_elo_max_order_by": { "actual_score": [ - 2946 + 2952 ], "assists": [ - 2946 + 2952 ], "current_elo": [ - 2946 + 2952 ], "damage": [ - 2946 + 2952 ], "damage_percent": [ - 2946 + 2952 ], "deaths": [ - 2946 + 2952 ], "elo_change": [ - 2946 + 2952 ], "expected_score": [ - 2946 + 2952 ], "impact": [ - 2946 + 2952 ], "k_factor": [ - 2946 + 2952 ], "kda": [ - 2946 + 2952 ], "kills": [ - 2946 + 2952 ], "map_losses": [ - 2946 + 2952 ], "map_wins": [ - 2946 + 2952 ], "match_created_at": [ - 2946 + 2952 ], "match_id": [ - 2946 + 2952 ], "match_result": [ - 2946 + 2952 ], "opponent_team_elo_avg": [ - 2946 + 2952 ], "performance_multiplier": [ - 2946 + 2952 ], "player_name": [ - 2946 + 2952 ], "player_steam_id": [ - 2946 + 2952 ], "player_team_elo_avg": [ - 2946 + 2952 ], "season_id": [ - 2946 + 2952 ], "series_multiplier": [ - 2946 + 2952 ], "team_avg_kda": [ - 2946 + 2952 ], "type": [ - 2946 + 2952 ], "updated_elo": [ - 2946 + 2952 ], "__typename": [ 80 @@ -122788,7 +123379,7 @@ export default { }, "v_player_elo_min_fields": { "actual_score": [ - 1664 + 1670 ], "assists": [ 40 @@ -122800,7 +123391,7 @@ export default { 40 ], "damage_percent": [ - 1664 + 1670 ], "deaths": [ 40 @@ -122809,16 +123400,16 @@ export default { 40 ], "expected_score": [ - 1664 + 1670 ], "impact": [ - 1664 + 1670 ], "k_factor": [ 40 ], "kda": [ - 1664 + 1670 ], "kills": [ 40 @@ -122830,37 +123421,37 @@ export default { 40 ], "match_created_at": [ - 4493 + 4499 ], "match_id": [ - 4993 + 4999 ], "match_result": [ 80 ], "opponent_team_elo_avg": [ - 1664 + 1670 ], "performance_multiplier": [ - 1664 + 1670 ], "player_name": [ 80 ], "player_steam_id": [ - 252 + 258 ], "player_team_elo_avg": [ - 1664 + 1670 ], "season_id": [ - 4993 + 4999 ], "series_multiplier": [ 40 ], "team_avg_kda": [ - 1664 + 1670 ], "type": [ 80 @@ -122874,85 +123465,85 @@ export default { }, "v_player_elo_min_order_by": { "actual_score": [ - 2946 + 2952 ], "assists": [ - 2946 + 2952 ], "current_elo": [ - 2946 + 2952 ], "damage": [ - 2946 + 2952 ], "damage_percent": [ - 2946 + 2952 ], "deaths": [ - 2946 + 2952 ], "elo_change": [ - 2946 + 2952 ], "expected_score": [ - 2946 + 2952 ], "impact": [ - 2946 + 2952 ], "k_factor": [ - 2946 + 2952 ], "kda": [ - 2946 + 2952 ], "kills": [ - 2946 + 2952 ], "map_losses": [ - 2946 + 2952 ], "map_wins": [ - 2946 + 2952 ], "match_created_at": [ - 2946 + 2952 ], "match_id": [ - 2946 + 2952 ], "match_result": [ - 2946 + 2952 ], "opponent_team_elo_avg": [ - 2946 + 2952 ], "performance_multiplier": [ - 2946 + 2952 ], "player_name": [ - 2946 + 2952 ], "player_steam_id": [ - 2946 + 2952 ], "player_team_elo_avg": [ - 2946 + 2952 ], "season_id": [ - 2946 + 2952 ], "series_multiplier": [ - 2946 + 2952 ], "team_avg_kda": [ - 2946 + 2952 ], "type": [ - 2946 + 2952 ], "updated_elo": [ - 2946 + 2952 ], "__typename": [ 80 @@ -122960,88 +123551,88 @@ export default { }, "v_player_elo_order_by": { "actual_score": [ - 2946 + 2952 ], "assists": [ - 2946 + 2952 ], "current_elo": [ - 2946 + 2952 ], "damage": [ - 2946 + 2952 ], "damage_percent": [ - 2946 + 2952 ], "deaths": [ - 2946 + 2952 ], "elo_change": [ - 2946 + 2952 ], "expected_score": [ - 2946 + 2952 ], "impact": [ - 2946 + 2952 ], "k_factor": [ - 2946 + 2952 ], "kda": [ - 2946 + 2952 ], "kills": [ - 2946 + 2952 ], "map_losses": [ - 2946 + 2952 ], "map_wins": [ - 2946 + 2952 ], "match": [ - 2781 + 2787 ], "match_created_at": [ - 2946 + 2952 ], "match_id": [ - 2946 + 2952 ], "match_result": [ - 2946 + 2952 ], "opponent_team_elo_avg": [ - 2946 + 2952 ], "performance_multiplier": [ - 2946 + 2952 ], "player_name": [ - 2946 + 2952 ], "player_steam_id": [ - 2946 + 2952 ], "player_team_elo_avg": [ - 2946 + 2952 ], "season_id": [ - 2946 + 2952 ], "series_multiplier": [ - 2946 + 2952 ], "team_avg_kda": [ - 2946 + 2952 ], "type": [ - 2946 + 2952 ], "updated_elo": [ - 2946 + 2952 ], "__typename": [ 80 @@ -123126,67 +123717,67 @@ export default { }, "v_player_elo_stddev_order_by": { "actual_score": [ - 2946 + 2952 ], "assists": [ - 2946 + 2952 ], "current_elo": [ - 2946 + 2952 ], "damage": [ - 2946 + 2952 ], "damage_percent": [ - 2946 + 2952 ], "deaths": [ - 2946 + 2952 ], "elo_change": [ - 2946 + 2952 ], "expected_score": [ - 2946 + 2952 ], "impact": [ - 2946 + 2952 ], "k_factor": [ - 2946 + 2952 ], "kda": [ - 2946 + 2952 ], "kills": [ - 2946 + 2952 ], "map_losses": [ - 2946 + 2952 ], "map_wins": [ - 2946 + 2952 ], "opponent_team_elo_avg": [ - 2946 + 2952 ], "performance_multiplier": [ - 2946 + 2952 ], "player_steam_id": [ - 2946 + 2952 ], "player_team_elo_avg": [ - 2946 + 2952 ], "series_multiplier": [ - 2946 + 2952 ], "team_avg_kda": [ - 2946 + 2952 ], "updated_elo": [ - 2946 + 2952 ], "__typename": [ 80 @@ -123262,67 +123853,67 @@ export default { }, "v_player_elo_stddev_pop_order_by": { "actual_score": [ - 2946 + 2952 ], "assists": [ - 2946 + 2952 ], "current_elo": [ - 2946 + 2952 ], "damage": [ - 2946 + 2952 ], "damage_percent": [ - 2946 + 2952 ], "deaths": [ - 2946 + 2952 ], "elo_change": [ - 2946 + 2952 ], "expected_score": [ - 2946 + 2952 ], "impact": [ - 2946 + 2952 ], "k_factor": [ - 2946 + 2952 ], "kda": [ - 2946 + 2952 ], "kills": [ - 2946 + 2952 ], "map_losses": [ - 2946 + 2952 ], "map_wins": [ - 2946 + 2952 ], "opponent_team_elo_avg": [ - 2946 + 2952 ], "performance_multiplier": [ - 2946 + 2952 ], "player_steam_id": [ - 2946 + 2952 ], "player_team_elo_avg": [ - 2946 + 2952 ], "series_multiplier": [ - 2946 + 2952 ], "team_avg_kda": [ - 2946 + 2952 ], "updated_elo": [ - 2946 + 2952 ], "__typename": [ 80 @@ -123398,67 +123989,67 @@ export default { }, "v_player_elo_stddev_samp_order_by": { "actual_score": [ - 2946 + 2952 ], "assists": [ - 2946 + 2952 ], "current_elo": [ - 2946 + 2952 ], "damage": [ - 2946 + 2952 ], "damage_percent": [ - 2946 + 2952 ], "deaths": [ - 2946 + 2952 ], "elo_change": [ - 2946 + 2952 ], "expected_score": [ - 2946 + 2952 ], "impact": [ - 2946 + 2952 ], "k_factor": [ - 2946 + 2952 ], "kda": [ - 2946 + 2952 ], "kills": [ - 2946 + 2952 ], "map_losses": [ - 2946 + 2952 ], "map_wins": [ - 2946 + 2952 ], "opponent_team_elo_avg": [ - 2946 + 2952 ], "performance_multiplier": [ - 2946 + 2952 ], "player_steam_id": [ - 2946 + 2952 ], "player_team_elo_avg": [ - 2946 + 2952 ], "series_multiplier": [ - 2946 + 2952 ], "team_avg_kda": [ - 2946 + 2952 ], "updated_elo": [ - 2946 + 2952 ], "__typename": [ 80 @@ -123466,10 +124057,10 @@ export default { }, "v_player_elo_stream_cursor_input": { "initial_value": [ - 5412 + 5418 ], "ordering": [ - 308 + 314 ], "__typename": [ 80 @@ -123477,7 +124068,7 @@ export default { }, "v_player_elo_stream_cursor_value_input": { "actual_score": [ - 1664 + 1670 ], "assists": [ 40 @@ -123489,7 +124080,7 @@ export default { 40 ], "damage_percent": [ - 1664 + 1670 ], "deaths": [ 40 @@ -123498,16 +124089,16 @@ export default { 40 ], "expected_score": [ - 1664 + 1670 ], "impact": [ - 1664 + 1670 ], "k_factor": [ 40 ], "kda": [ - 1664 + 1670 ], "kills": [ 40 @@ -123519,37 +124110,37 @@ export default { 40 ], "match_created_at": [ - 4493 + 4499 ], "match_id": [ - 4993 + 4999 ], "match_result": [ 80 ], "opponent_team_elo_avg": [ - 1664 + 1670 ], "performance_multiplier": [ - 1664 + 1670 ], "player_name": [ 80 ], "player_steam_id": [ - 252 + 258 ], "player_team_elo_avg": [ - 1664 + 1670 ], "season_id": [ - 4993 + 4999 ], "series_multiplier": [ 40 ], "team_avg_kda": [ - 1664 + 1670 ], "type": [ 80 @@ -123563,7 +124154,7 @@ export default { }, "v_player_elo_sum_fields": { "actual_score": [ - 1664 + 1670 ], "assists": [ 40 @@ -123575,7 +124166,7 @@ export default { 40 ], "damage_percent": [ - 1664 + 1670 ], "deaths": [ 40 @@ -123584,16 +124175,16 @@ export default { 40 ], "expected_score": [ - 1664 + 1670 ], "impact": [ - 1664 + 1670 ], "k_factor": [ 40 ], "kda": [ - 1664 + 1670 ], "kills": [ 40 @@ -123605,22 +124196,22 @@ export default { 40 ], "opponent_team_elo_avg": [ - 1664 + 1670 ], "performance_multiplier": [ - 1664 + 1670 ], "player_steam_id": [ - 252 + 258 ], "player_team_elo_avg": [ - 1664 + 1670 ], "series_multiplier": [ 40 ], "team_avg_kda": [ - 1664 + 1670 ], "updated_elo": [ 40 @@ -123631,67 +124222,67 @@ export default { }, "v_player_elo_sum_order_by": { "actual_score": [ - 2946 + 2952 ], "assists": [ - 2946 + 2952 ], "current_elo": [ - 2946 + 2952 ], "damage": [ - 2946 + 2952 ], "damage_percent": [ - 2946 + 2952 ], "deaths": [ - 2946 + 2952 ], "elo_change": [ - 2946 + 2952 ], "expected_score": [ - 2946 + 2952 ], "impact": [ - 2946 + 2952 ], "k_factor": [ - 2946 + 2952 ], "kda": [ - 2946 + 2952 ], "kills": [ - 2946 + 2952 ], "map_losses": [ - 2946 + 2952 ], "map_wins": [ - 2946 + 2952 ], "opponent_team_elo_avg": [ - 2946 + 2952 ], "performance_multiplier": [ - 2946 + 2952 ], "player_steam_id": [ - 2946 + 2952 ], "player_team_elo_avg": [ - 2946 + 2952 ], "series_multiplier": [ - 2946 + 2952 ], "team_avg_kda": [ - 2946 + 2952 ], "updated_elo": [ - 2946 + 2952 ], "__typename": [ 80 @@ -123767,67 +124358,67 @@ export default { }, "v_player_elo_var_pop_order_by": { "actual_score": [ - 2946 + 2952 ], "assists": [ - 2946 + 2952 ], "current_elo": [ - 2946 + 2952 ], "damage": [ - 2946 + 2952 ], "damage_percent": [ - 2946 + 2952 ], "deaths": [ - 2946 + 2952 ], "elo_change": [ - 2946 + 2952 ], "expected_score": [ - 2946 + 2952 ], "impact": [ - 2946 + 2952 ], "k_factor": [ - 2946 + 2952 ], "kda": [ - 2946 + 2952 ], "kills": [ - 2946 + 2952 ], "map_losses": [ - 2946 + 2952 ], "map_wins": [ - 2946 + 2952 ], "opponent_team_elo_avg": [ - 2946 + 2952 ], "performance_multiplier": [ - 2946 + 2952 ], "player_steam_id": [ - 2946 + 2952 ], "player_team_elo_avg": [ - 2946 + 2952 ], "series_multiplier": [ - 2946 + 2952 ], "team_avg_kda": [ - 2946 + 2952 ], "updated_elo": [ - 2946 + 2952 ], "__typename": [ 80 @@ -123903,67 +124494,67 @@ export default { }, "v_player_elo_var_samp_order_by": { "actual_score": [ - 2946 + 2952 ], "assists": [ - 2946 + 2952 ], "current_elo": [ - 2946 + 2952 ], "damage": [ - 2946 + 2952 ], "damage_percent": [ - 2946 + 2952 ], "deaths": [ - 2946 + 2952 ], "elo_change": [ - 2946 + 2952 ], "expected_score": [ - 2946 + 2952 ], "impact": [ - 2946 + 2952 ], "k_factor": [ - 2946 + 2952 ], "kda": [ - 2946 + 2952 ], "kills": [ - 2946 + 2952 ], "map_losses": [ - 2946 + 2952 ], "map_wins": [ - 2946 + 2952 ], "opponent_team_elo_avg": [ - 2946 + 2952 ], "performance_multiplier": [ - 2946 + 2952 ], "player_steam_id": [ - 2946 + 2952 ], "player_team_elo_avg": [ - 2946 + 2952 ], "series_multiplier": [ - 2946 + 2952 ], "team_avg_kda": [ - 2946 + 2952 ], "updated_elo": [ - 2946 + 2952 ], "__typename": [ 80 @@ -124039,67 +124630,67 @@ export default { }, "v_player_elo_variance_order_by": { "actual_score": [ - 2946 + 2952 ], "assists": [ - 2946 + 2952 ], "current_elo": [ - 2946 + 2952 ], "damage": [ - 2946 + 2952 ], "damage_percent": [ - 2946 + 2952 ], "deaths": [ - 2946 + 2952 ], "elo_change": [ - 2946 + 2952 ], "expected_score": [ - 2946 + 2952 ], "impact": [ - 2946 + 2952 ], "k_factor": [ - 2946 + 2952 ], "kda": [ - 2946 + 2952 ], "kills": [ - 2946 + 2952 ], "map_losses": [ - 2946 + 2952 ], "map_wins": [ - 2946 + 2952 ], "opponent_team_elo_avg": [ - 2946 + 2952 ], "performance_multiplier": [ - 2946 + 2952 ], "player_steam_id": [ - 2946 + 2952 ], "player_team_elo_avg": [ - 2946 + 2952 ], "series_multiplier": [ - 2946 + 2952 ], "team_avg_kda": [ - 2946 + 2952 ], "updated_elo": [ - 2946 + 2952 ], "__typename": [ 80 @@ -124107,22 +124698,22 @@ export default { }, "v_player_map_losses": { "map": [ - 2279 + 2285 ], "map_id": [ - 4993 + 4999 ], "match": [ - 2761 + 2767 ], "match_id": [ - 4993 + 4999 ], "started_at": [ - 4493 + 4499 ], "steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -124130,10 +124721,10 @@ export default { }, "v_player_map_losses_aggregate": { "aggregate": [ - 5423 + 5429 ], "nodes": [ - 5421 + 5427 ], "__typename": [ 80 @@ -124141,13 +124732,13 @@ export default { }, "v_player_map_losses_aggregate_fields": { "avg": [ - 5424 + 5430 ], "count": [ 40, { "columns": [ - 5429, + 5435, "[v_player_map_losses_select_column!]" ], "distinct": [ @@ -124156,31 +124747,31 @@ export default { } ], "max": [ - 5426 + 5432 ], "min": [ - 5427 + 5433 ], "stddev": [ - 5430 + 5436 ], "stddev_pop": [ - 5431 + 5437 ], "stddev_samp": [ - 5432 + 5438 ], "sum": [ - 5435 + 5441 ], "var_pop": [ - 5436 + 5442 ], "var_samp": [ - 5437 + 5443 ], "variance": [ - 5438 + 5444 ], "__typename": [ 80 @@ -124196,31 +124787,31 @@ export default { }, "v_player_map_losses_bool_exp": { "_and": [ - 5425 + 5431 ], "_not": [ - 5425 + 5431 ], "_or": [ - 5425 + 5431 ], "map": [ - 2288 + 2294 ], "map_id": [ - 4995 + 5001 ], "match": [ - 2770 + 2776 ], "match_id": [ - 4995 + 5001 ], "started_at": [ - 4494 + 4500 ], "steam_id": [ - 254 + 260 ], "__typename": [ 80 @@ -124228,16 +124819,16 @@ export default { }, "v_player_map_losses_max_fields": { "map_id": [ - 4993 + 4999 ], "match_id": [ - 4993 + 4999 ], "started_at": [ - 4493 + 4499 ], "steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -124245,16 +124836,16 @@ export default { }, "v_player_map_losses_min_fields": { "map_id": [ - 4993 + 4999 ], "match_id": [ - 4993 + 4999 ], "started_at": [ - 4493 + 4499 ], "steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -124262,22 +124853,22 @@ export default { }, "v_player_map_losses_order_by": { "map": [ - 2298 + 2304 ], "map_id": [ - 2946 + 2952 ], "match": [ - 2781 + 2787 ], "match_id": [ - 2946 + 2952 ], "started_at": [ - 2946 + 2952 ], "steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -124310,10 +124901,10 @@ export default { }, "v_player_map_losses_stream_cursor_input": { "initial_value": [ - 5434 + 5440 ], "ordering": [ - 308 + 314 ], "__typename": [ 80 @@ -124321,16 +124912,16 @@ export default { }, "v_player_map_losses_stream_cursor_value_input": { "map_id": [ - 4993 + 4999 ], "match_id": [ - 4993 + 4999 ], "started_at": [ - 4493 + 4499 ], "steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -124338,7 +124929,7 @@ export default { }, "v_player_map_losses_sum_fields": { "steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -124370,22 +124961,22 @@ export default { }, "v_player_map_wins": { "map": [ - 2279 + 2285 ], "map_id": [ - 4993 + 4999 ], "match": [ - 2761 + 2767 ], "match_id": [ - 4993 + 4999 ], "started_at": [ - 4493 + 4499 ], "steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -124393,10 +124984,10 @@ export default { }, "v_player_map_wins_aggregate": { "aggregate": [ - 5441 + 5447 ], "nodes": [ - 5439 + 5445 ], "__typename": [ 80 @@ -124404,13 +124995,13 @@ export default { }, "v_player_map_wins_aggregate_fields": { "avg": [ - 5442 + 5448 ], "count": [ 40, { "columns": [ - 5447, + 5453, "[v_player_map_wins_select_column!]" ], "distinct": [ @@ -124419,31 +125010,31 @@ export default { } ], "max": [ - 5444 + 5450 ], "min": [ - 5445 + 5451 ], "stddev": [ - 5448 + 5454 ], "stddev_pop": [ - 5449 + 5455 ], "stddev_samp": [ - 5450 + 5456 ], "sum": [ - 5453 + 5459 ], "var_pop": [ - 5454 + 5460 ], "var_samp": [ - 5455 + 5461 ], "variance": [ - 5456 + 5462 ], "__typename": [ 80 @@ -124459,31 +125050,31 @@ export default { }, "v_player_map_wins_bool_exp": { "_and": [ - 5443 + 5449 ], "_not": [ - 5443 + 5449 ], "_or": [ - 5443 + 5449 ], "map": [ - 2288 + 2294 ], "map_id": [ - 4995 + 5001 ], "match": [ - 2770 + 2776 ], "match_id": [ - 4995 + 5001 ], "started_at": [ - 4494 + 4500 ], "steam_id": [ - 254 + 260 ], "__typename": [ 80 @@ -124491,16 +125082,16 @@ export default { }, "v_player_map_wins_max_fields": { "map_id": [ - 4993 + 4999 ], "match_id": [ - 4993 + 4999 ], "started_at": [ - 4493 + 4499 ], "steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -124508,16 +125099,16 @@ export default { }, "v_player_map_wins_min_fields": { "map_id": [ - 4993 + 4999 ], "match_id": [ - 4993 + 4999 ], "started_at": [ - 4493 + 4499 ], "steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -124525,22 +125116,22 @@ export default { }, "v_player_map_wins_order_by": { "map": [ - 2298 + 2304 ], "map_id": [ - 2946 + 2952 ], "match": [ - 2781 + 2787 ], "match_id": [ - 2946 + 2952 ], "started_at": [ - 2946 + 2952 ], "steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -124573,10 +125164,10 @@ export default { }, "v_player_map_wins_stream_cursor_input": { "initial_value": [ - 5452 + 5458 ], "ordering": [ - 308 + 314 ], "__typename": [ 80 @@ -124584,16 +125175,16 @@ export default { }, "v_player_map_wins_stream_cursor_value_input": { "map_id": [ - 4993 + 4999 ], "match_id": [ - 4993 + 4999 ], "started_at": [ - 4493 + 4499 ], "steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -124601,7 +125192,7 @@ export default { }, "v_player_map_wins_sum_fields": { "steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -124633,37 +125224,37 @@ export default { }, "v_player_match_head_to_head": { "attacked": [ - 3904 + 3910 ], "attacked_steam_id": [ - 252 + 258 ], "attacker": [ - 3904 + 3910 ], "attacker_steam_id": [ - 252 + 258 ], "damage_dealt": [ 40 ], "flash_count": [ - 252 + 258 ], "headshot_kills": [ - 252 + 258 ], "hits": [ - 252 + 258 ], "kills": [ - 252 + 258 ], "match": [ - 2761 + 2767 ], "match_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -124671,10 +125262,10 @@ export default { }, "v_player_match_head_to_head_aggregate": { "aggregate": [ - 5459 + 5465 ], "nodes": [ - 5457 + 5463 ], "__typename": [ 80 @@ -124682,13 +125273,13 @@ export default { }, "v_player_match_head_to_head_aggregate_fields": { "avg": [ - 5460 + 5466 ], "count": [ 40, { "columns": [ - 5465, + 5471, "[v_player_match_head_to_head_select_column!]" ], "distinct": [ @@ -124697,31 +125288,31 @@ export default { } ], "max": [ - 5462 + 5468 ], "min": [ - 5463 + 5469 ], "stddev": [ - 5466 + 5472 ], "stddev_pop": [ - 5467 + 5473 ], "stddev_samp": [ - 5468 + 5474 ], "sum": [ - 5471 + 5477 ], "var_pop": [ - 5472 + 5478 ], "var_samp": [ - 5473 + 5479 ], "variance": [ - 5474 + 5480 ], "__typename": [ 80 @@ -124755,46 +125346,46 @@ export default { }, "v_player_match_head_to_head_bool_exp": { "_and": [ - 5461 + 5467 ], "_not": [ - 5461 + 5467 ], "_or": [ - 5461 + 5467 ], "attacked": [ - 3908 + 3914 ], "attacked_steam_id": [ - 254 + 260 ], "attacker": [ - 3908 + 3914 ], "attacker_steam_id": [ - 254 + 260 ], "damage_dealt": [ 41 ], "flash_count": [ - 254 + 260 ], "headshot_kills": [ - 254 + 260 ], "hits": [ - 254 + 260 ], "kills": [ - 254 + 260 ], "match": [ - 2770 + 2776 ], "match_id": [ - 4995 + 5001 ], "__typename": [ 80 @@ -124802,28 +125393,28 @@ export default { }, "v_player_match_head_to_head_max_fields": { "attacked_steam_id": [ - 252 + 258 ], "attacker_steam_id": [ - 252 + 258 ], "damage_dealt": [ 40 ], "flash_count": [ - 252 + 258 ], "headshot_kills": [ - 252 + 258 ], "hits": [ - 252 + 258 ], "kills": [ - 252 + 258 ], "match_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -124831,28 +125422,28 @@ export default { }, "v_player_match_head_to_head_min_fields": { "attacked_steam_id": [ - 252 + 258 ], "attacker_steam_id": [ - 252 + 258 ], "damage_dealt": [ 40 ], "flash_count": [ - 252 + 258 ], "headshot_kills": [ - 252 + 258 ], "hits": [ - 252 + 258 ], "kills": [ - 252 + 258 ], "match_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -124860,37 +125451,37 @@ export default { }, "v_player_match_head_to_head_order_by": { "attacked": [ - 3917 + 3923 ], "attacked_steam_id": [ - 2946 + 2952 ], "attacker": [ - 3917 + 3923 ], "attacker_steam_id": [ - 2946 + 2952 ], "damage_dealt": [ - 2946 + 2952 ], "flash_count": [ - 2946 + 2952 ], "headshot_kills": [ - 2946 + 2952 ], "hits": [ - 2946 + 2952 ], "kills": [ - 2946 + 2952 ], "match": [ - 2781 + 2787 ], "match_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -124977,10 +125568,10 @@ export default { }, "v_player_match_head_to_head_stream_cursor_input": { "initial_value": [ - 5470 + 5476 ], "ordering": [ - 308 + 314 ], "__typename": [ 80 @@ -124988,28 +125579,28 @@ export default { }, "v_player_match_head_to_head_stream_cursor_value_input": { "attacked_steam_id": [ - 252 + 258 ], "attacker_steam_id": [ - 252 + 258 ], "damage_dealt": [ 40 ], "flash_count": [ - 252 + 258 ], "headshot_kills": [ - 252 + 258 ], "hits": [ - 252 + 258 ], "kills": [ - 252 + 258 ], "match_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -125017,25 +125608,25 @@ export default { }, "v_player_match_head_to_head_sum_fields": { "attacked_steam_id": [ - 252 + 258 ], "attacker_steam_id": [ - 252 + 258 ], "damage_dealt": [ 40 ], "flash_count": [ - 252 + 258 ], "headshot_kills": [ - 252 + 258 ], "hits": [ - 252 + 258 ], "kills": [ - 252 + 258 ], "__typename": [ 80 @@ -125121,43 +125712,43 @@ export default { }, "v_player_match_map_hltv": { "adr": [ - 2944 + 2950 ], "apr": [ - 2944 + 2950 ], "dpr": [ - 2944 + 2950 ], "hltv_rating": [ - 2944 + 2950 ], "kast_pct": [ - 2944 + 2950 ], "kpr": [ - 2944 + 2950 ], "match": [ - 2761 + 2767 ], "match_id": [ - 4993 + 4999 ], "match_map": [ - 2599 + 2605 ], "match_map_id": [ - 4993 + 4999 ], "player": [ - 3904 + 3910 ], "rounds_played": [ 40 ], "steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -125165,10 +125756,10 @@ export default { }, "v_player_match_map_hltv_aggregate": { "aggregate": [ - 5479 + 5485 ], "nodes": [ - 5475 + 5481 ], "__typename": [ 80 @@ -125176,7 +125767,7 @@ export default { }, "v_player_match_map_hltv_aggregate_bool_exp": { "count": [ - 5478 + 5484 ], "__typename": [ 80 @@ -125184,13 +125775,13 @@ export default { }, "v_player_match_map_hltv_aggregate_bool_exp_count": { "arguments": [ - 5493 + 5499 ], "distinct": [ 5 ], "filter": [ - 5484 + 5490 ], "predicate": [ 41 @@ -125201,13 +125792,13 @@ export default { }, "v_player_match_map_hltv_aggregate_fields": { "avg": [ - 5482 + 5488 ], "count": [ 40, { "columns": [ - 5493, + 5499, "[v_player_match_map_hltv_select_column!]" ], "distinct": [ @@ -125216,31 +125807,31 @@ export default { } ], "max": [ - 5487 + 5493 ], "min": [ - 5489 + 5495 ], "stddev": [ - 5495 + 5501 ], "stddev_pop": [ - 5497 + 5503 ], "stddev_samp": [ - 5499 + 5505 ], "sum": [ - 5503 + 5509 ], "var_pop": [ - 5506 + 5512 ], "var_samp": [ - 5508 + 5514 ], "variance": [ - 5510 + 5516 ], "__typename": [ 80 @@ -125248,37 +125839,37 @@ export default { }, "v_player_match_map_hltv_aggregate_order_by": { "avg": [ - 5483 + 5489 ], "count": [ - 2946 + 2952 ], "max": [ - 5488 + 5494 ], "min": [ - 5490 + 5496 ], "stddev": [ - 5496 + 5502 ], "stddev_pop": [ - 5498 + 5504 ], "stddev_samp": [ - 5500 + 5506 ], "sum": [ - 5504 + 5510 ], "var_pop": [ - 5507 + 5513 ], "var_samp": [ - 5509 + 5515 ], "variance": [ - 5511 + 5517 ], "__typename": [ 80 @@ -125286,7 +125877,7 @@ export default { }, "v_player_match_map_hltv_arr_rel_insert_input": { "data": [ - 5486 + 5492 ], "__typename": [ 80 @@ -125323,28 +125914,28 @@ export default { }, "v_player_match_map_hltv_avg_order_by": { "adr": [ - 2946 + 2952 ], "apr": [ - 2946 + 2952 ], "dpr": [ - 2946 + 2952 ], "hltv_rating": [ - 2946 + 2952 ], "kast_pct": [ - 2946 + 2952 ], "kpr": [ - 2946 + 2952 ], "rounds_played": [ - 2946 + 2952 ], "steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -125352,52 +125943,52 @@ export default { }, "v_player_match_map_hltv_bool_exp": { "_and": [ - 5484 + 5490 ], "_not": [ - 5484 + 5490 ], "_or": [ - 5484 + 5490 ], "adr": [ - 2945 + 2951 ], "apr": [ - 2945 + 2951 ], "dpr": [ - 2945 + 2951 ], "hltv_rating": [ - 2945 + 2951 ], "kast_pct": [ - 2945 + 2951 ], "kpr": [ - 2945 + 2951 ], "match": [ - 2770 + 2776 ], "match_id": [ - 4995 + 5001 ], "match_map": [ - 2608 + 2614 ], "match_map_id": [ - 4995 + 5001 ], "player": [ - 3908 + 3914 ], "rounds_played": [ 41 ], "steam_id": [ - 254 + 260 ], "__typename": [ 80 @@ -125405,28 +125996,28 @@ export default { }, "v_player_match_map_hltv_inc_input": { "adr": [ - 2944 + 2950 ], "apr": [ - 2944 + 2950 ], "dpr": [ - 2944 + 2950 ], "hltv_rating": [ - 2944 + 2950 ], "kast_pct": [ - 2944 + 2950 ], "kpr": [ - 2944 + 2950 ], "rounds_played": [ 40 ], "steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -125434,43 +126025,43 @@ export default { }, "v_player_match_map_hltv_insert_input": { "adr": [ - 2944 + 2950 ], "apr": [ - 2944 + 2950 ], "dpr": [ - 2944 + 2950 ], "hltv_rating": [ - 2944 + 2950 ], "kast_pct": [ - 2944 + 2950 ], "kpr": [ - 2944 + 2950 ], "match": [ - 2779 + 2785 ], "match_id": [ - 4993 + 4999 ], "match_map": [ - 2617 + 2623 ], "match_map_id": [ - 4993 + 4999 ], "player": [ - 3915 + 3921 ], "rounds_played": [ 40 ], "steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -125478,34 +126069,34 @@ export default { }, "v_player_match_map_hltv_max_fields": { "adr": [ - 2944 + 2950 ], "apr": [ - 2944 + 2950 ], "dpr": [ - 2944 + 2950 ], "hltv_rating": [ - 2944 + 2950 ], "kast_pct": [ - 2944 + 2950 ], "kpr": [ - 2944 + 2950 ], "match_id": [ - 4993 + 4999 ], "match_map_id": [ - 4993 + 4999 ], "rounds_played": [ 40 ], "steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -125513,34 +126104,34 @@ export default { }, "v_player_match_map_hltv_max_order_by": { "adr": [ - 2946 + 2952 ], "apr": [ - 2946 + 2952 ], "dpr": [ - 2946 + 2952 ], "hltv_rating": [ - 2946 + 2952 ], "kast_pct": [ - 2946 + 2952 ], "kpr": [ - 2946 + 2952 ], "match_id": [ - 2946 + 2952 ], "match_map_id": [ - 2946 + 2952 ], "rounds_played": [ - 2946 + 2952 ], "steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -125548,34 +126139,34 @@ export default { }, "v_player_match_map_hltv_min_fields": { "adr": [ - 2944 + 2950 ], "apr": [ - 2944 + 2950 ], "dpr": [ - 2944 + 2950 ], "hltv_rating": [ - 2944 + 2950 ], "kast_pct": [ - 2944 + 2950 ], "kpr": [ - 2944 + 2950 ], "match_id": [ - 4993 + 4999 ], "match_map_id": [ - 4993 + 4999 ], "rounds_played": [ 40 ], "steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -125583,34 +126174,34 @@ export default { }, "v_player_match_map_hltv_min_order_by": { "adr": [ - 2946 + 2952 ], "apr": [ - 2946 + 2952 ], "dpr": [ - 2946 + 2952 ], "hltv_rating": [ - 2946 + 2952 ], "kast_pct": [ - 2946 + 2952 ], "kpr": [ - 2946 + 2952 ], "match_id": [ - 2946 + 2952 ], "match_map_id": [ - 2946 + 2952 ], "rounds_played": [ - 2946 + 2952 ], "steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -125621,7 +126212,7 @@ export default { 40 ], "returning": [ - 5475 + 5481 ], "__typename": [ 80 @@ -125629,43 +126220,43 @@ export default { }, "v_player_match_map_hltv_order_by": { "adr": [ - 2946 + 2952 ], "apr": [ - 2946 + 2952 ], "dpr": [ - 2946 + 2952 ], "hltv_rating": [ - 2946 + 2952 ], "kast_pct": [ - 2946 + 2952 ], "kpr": [ - 2946 + 2952 ], "match": [ - 2781 + 2787 ], "match_id": [ - 2946 + 2952 ], "match_map": [ - 2619 + 2625 ], "match_map_id": [ - 2946 + 2952 ], "player": [ - 3917 + 3923 ], "rounds_played": [ - 2946 + 2952 ], "steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -125674,34 +126265,34 @@ export default { "v_player_match_map_hltv_select_column": {}, "v_player_match_map_hltv_set_input": { "adr": [ - 2944 + 2950 ], "apr": [ - 2944 + 2950 ], "dpr": [ - 2944 + 2950 ], "hltv_rating": [ - 2944 + 2950 ], "kast_pct": [ - 2944 + 2950 ], "kpr": [ - 2944 + 2950 ], "match_id": [ - 4993 + 4999 ], "match_map_id": [ - 4993 + 4999 ], "rounds_played": [ 40 ], "steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -125738,28 +126329,28 @@ export default { }, "v_player_match_map_hltv_stddev_order_by": { "adr": [ - 2946 + 2952 ], "apr": [ - 2946 + 2952 ], "dpr": [ - 2946 + 2952 ], "hltv_rating": [ - 2946 + 2952 ], "kast_pct": [ - 2946 + 2952 ], "kpr": [ - 2946 + 2952 ], "rounds_played": [ - 2946 + 2952 ], "steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -125796,28 +126387,28 @@ export default { }, "v_player_match_map_hltv_stddev_pop_order_by": { "adr": [ - 2946 + 2952 ], "apr": [ - 2946 + 2952 ], "dpr": [ - 2946 + 2952 ], "hltv_rating": [ - 2946 + 2952 ], "kast_pct": [ - 2946 + 2952 ], "kpr": [ - 2946 + 2952 ], "rounds_played": [ - 2946 + 2952 ], "steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -125854,28 +126445,28 @@ export default { }, "v_player_match_map_hltv_stddev_samp_order_by": { "adr": [ - 2946 + 2952 ], "apr": [ - 2946 + 2952 ], "dpr": [ - 2946 + 2952 ], "hltv_rating": [ - 2946 + 2952 ], "kast_pct": [ - 2946 + 2952 ], "kpr": [ - 2946 + 2952 ], "rounds_played": [ - 2946 + 2952 ], "steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -125883,10 +126474,10 @@ export default { }, "v_player_match_map_hltv_stream_cursor_input": { "initial_value": [ - 5502 + 5508 ], "ordering": [ - 308 + 314 ], "__typename": [ 80 @@ -125894,34 +126485,34 @@ export default { }, "v_player_match_map_hltv_stream_cursor_value_input": { "adr": [ - 2944 + 2950 ], "apr": [ - 2944 + 2950 ], "dpr": [ - 2944 + 2950 ], "hltv_rating": [ - 2944 + 2950 ], "kast_pct": [ - 2944 + 2950 ], "kpr": [ - 2944 + 2950 ], "match_id": [ - 4993 + 4999 ], "match_map_id": [ - 4993 + 4999 ], "rounds_played": [ 40 ], "steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -125929,28 +126520,28 @@ export default { }, "v_player_match_map_hltv_sum_fields": { "adr": [ - 2944 + 2950 ], "apr": [ - 2944 + 2950 ], "dpr": [ - 2944 + 2950 ], "hltv_rating": [ - 2944 + 2950 ], "kast_pct": [ - 2944 + 2950 ], "kpr": [ - 2944 + 2950 ], "rounds_played": [ 40 ], "steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -125958,28 +126549,28 @@ export default { }, "v_player_match_map_hltv_sum_order_by": { "adr": [ - 2946 + 2952 ], "apr": [ - 2946 + 2952 ], "dpr": [ - 2946 + 2952 ], "hltv_rating": [ - 2946 + 2952 ], "kast_pct": [ - 2946 + 2952 ], "kpr": [ - 2946 + 2952 ], "rounds_played": [ - 2946 + 2952 ], "steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -125987,13 +126578,13 @@ export default { }, "v_player_match_map_hltv_updates": { "_inc": [ - 5485 + 5491 ], "_set": [ - 5494 + 5500 ], "where": [ - 5484 + 5490 ], "__typename": [ 80 @@ -126030,28 +126621,28 @@ export default { }, "v_player_match_map_hltv_var_pop_order_by": { "adr": [ - 2946 + 2952 ], "apr": [ - 2946 + 2952 ], "dpr": [ - 2946 + 2952 ], "hltv_rating": [ - 2946 + 2952 ], "kast_pct": [ - 2946 + 2952 ], "kpr": [ - 2946 + 2952 ], "rounds_played": [ - 2946 + 2952 ], "steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -126088,28 +126679,28 @@ export default { }, "v_player_match_map_hltv_var_samp_order_by": { "adr": [ - 2946 + 2952 ], "apr": [ - 2946 + 2952 ], "dpr": [ - 2946 + 2952 ], "hltv_rating": [ - 2946 + 2952 ], "kast_pct": [ - 2946 + 2952 ], "kpr": [ - 2946 + 2952 ], "rounds_played": [ - 2946 + 2952 ], "steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -126146,28 +126737,28 @@ export default { }, "v_player_match_map_hltv_variance_order_by": { "adr": [ - 2946 + 2952 ], "apr": [ - 2946 + 2952 ], "dpr": [ - 2946 + 2952 ], "hltv_rating": [ - 2946 + 2952 ], "kast_pct": [ - 2946 + 2952 ], "kpr": [ - 2946 + 2952 ], "rounds_played": [ - 2946 + 2952 ], "steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -126175,52 +126766,52 @@ export default { }, "v_player_match_map_roles": { "adr": [ - 2944 + 2950 ], "awp_kills": [ 40 ], "awp_share": [ - 2944 + 2950 ], "deaths": [ 40 ], "dpr": [ - 2944 + 2950 ], "entry_rate": [ - 2944 + 2950 ], "flash_assists": [ 40 ], "hltv_rating": [ - 2944 + 2950 ], "kast_pct": [ - 2944 + 2950 ], "kills": [ 40 ], "kpr": [ - 2944 + 2950 ], "lineup_id": [ - 4993 + 4999 ], "match": [ - 2761 + 2767 ], "match_id": [ - 4993 + 4999 ], "match_map": [ - 2599 + 2605 ], "match_map_id": [ - 4993 + 4999 ], "open_deaths": [ 40 @@ -126232,7 +126823,7 @@ export default { 40 ], "player": [ - 3904 + 3910 ], "role": [ 80 @@ -126241,10 +126832,10 @@ export default { 40 ], "steam_id": [ - 252 + 258 ], "support_idx": [ - 2944 + 2950 ], "total_kills": [ 40 @@ -126264,10 +126855,10 @@ export default { }, "v_player_match_map_roles_aggregate": { "aggregate": [ - 5514 + 5520 ], "nodes": [ - 5512 + 5518 ], "__typename": [ 80 @@ -126275,13 +126866,13 @@ export default { }, "v_player_match_map_roles_aggregate_fields": { "avg": [ - 5515 + 5521 ], "count": [ 40, { "columns": [ - 5520, + 5526, "[v_player_match_map_roles_select_column!]" ], "distinct": [ @@ -126290,31 +126881,31 @@ export default { } ], "max": [ - 5517 + 5523 ], "min": [ - 5518 + 5524 ], "stddev": [ - 5521 + 5527 ], "stddev_pop": [ - 5522 + 5528 ], "stddev_samp": [ - 5523 + 5529 ], "sum": [ - 5526 + 5532 ], "var_pop": [ - 5527 + 5533 ], "var_samp": [ - 5528 + 5534 ], "variance": [ - 5529 + 5535 ], "__typename": [ 80 @@ -126390,61 +126981,61 @@ export default { }, "v_player_match_map_roles_bool_exp": { "_and": [ - 5516 + 5522 ], "_not": [ - 5516 + 5522 ], "_or": [ - 5516 + 5522 ], "adr": [ - 2945 + 2951 ], "awp_kills": [ 41 ], "awp_share": [ - 2945 + 2951 ], "deaths": [ 41 ], "dpr": [ - 2945 + 2951 ], "entry_rate": [ - 2945 + 2951 ], "flash_assists": [ 41 ], "hltv_rating": [ - 2945 + 2951 ], "kast_pct": [ - 2945 + 2951 ], "kills": [ 41 ], "kpr": [ - 2945 + 2951 ], "lineup_id": [ - 4995 + 5001 ], "match": [ - 2770 + 2776 ], "match_id": [ - 4995 + 5001 ], "match_map": [ - 2608 + 2614 ], "match_map_id": [ - 4995 + 5001 ], "open_deaths": [ 41 @@ -126456,7 +127047,7 @@ export default { 41 ], "player": [ - 3908 + 3914 ], "role": [ 82 @@ -126465,10 +127056,10 @@ export default { 41 ], "steam_id": [ - 254 + 260 ], "support_idx": [ - 2945 + 2951 ], "total_kills": [ 41 @@ -126488,46 +127079,46 @@ export default { }, "v_player_match_map_roles_max_fields": { "adr": [ - 2944 + 2950 ], "awp_kills": [ 40 ], "awp_share": [ - 2944 + 2950 ], "deaths": [ 40 ], "dpr": [ - 2944 + 2950 ], "entry_rate": [ - 2944 + 2950 ], "flash_assists": [ 40 ], "hltv_rating": [ - 2944 + 2950 ], "kast_pct": [ - 2944 + 2950 ], "kills": [ 40 ], "kpr": [ - 2944 + 2950 ], "lineup_id": [ - 4993 + 4999 ], "match_id": [ - 4993 + 4999 ], "match_map_id": [ - 4993 + 4999 ], "open_deaths": [ 40 @@ -126545,10 +127136,10 @@ export default { 40 ], "steam_id": [ - 252 + 258 ], "support_idx": [ - 2944 + 2950 ], "total_kills": [ 40 @@ -126568,46 +127159,46 @@ export default { }, "v_player_match_map_roles_min_fields": { "adr": [ - 2944 + 2950 ], "awp_kills": [ 40 ], "awp_share": [ - 2944 + 2950 ], "deaths": [ 40 ], "dpr": [ - 2944 + 2950 ], "entry_rate": [ - 2944 + 2950 ], "flash_assists": [ 40 ], "hltv_rating": [ - 2944 + 2950 ], "kast_pct": [ - 2944 + 2950 ], "kills": [ 40 ], "kpr": [ - 2944 + 2950 ], "lineup_id": [ - 4993 + 4999 ], "match_id": [ - 4993 + 4999 ], "match_map_id": [ - 4993 + 4999 ], "open_deaths": [ 40 @@ -126625,10 +127216,10 @@ export default { 40 ], "steam_id": [ - 252 + 258 ], "support_idx": [ - 2944 + 2950 ], "total_kills": [ 40 @@ -126648,88 +127239,88 @@ export default { }, "v_player_match_map_roles_order_by": { "adr": [ - 2946 + 2952 ], "awp_kills": [ - 2946 + 2952 ], "awp_share": [ - 2946 + 2952 ], "deaths": [ - 2946 + 2952 ], "dpr": [ - 2946 + 2952 ], "entry_rate": [ - 2946 + 2952 ], "flash_assists": [ - 2946 + 2952 ], "hltv_rating": [ - 2946 + 2952 ], "kast_pct": [ - 2946 + 2952 ], "kills": [ - 2946 + 2952 ], "kpr": [ - 2946 + 2952 ], "lineup_id": [ - 2946 + 2952 ], "match": [ - 2781 + 2787 ], "match_id": [ - 2946 + 2952 ], "match_map": [ - 2619 + 2625 ], "match_map_id": [ - 2946 + 2952 ], "open_deaths": [ - 2946 + 2952 ], "open_kills": [ - 2946 + 2952 ], "opening_attempts": [ - 2946 + 2952 ], "player": [ - 3917 + 3923 ], "role": [ - 2946 + 2952 ], "rounds": [ - 2946 + 2952 ], "steam_id": [ - 2946 + 2952 ], "support_idx": [ - 2946 + 2952 ], "total_kills": [ - 2946 + 2952 ], "trade_kill_successes": [ - 2946 + 2952 ], "traded_death_successes": [ - 2946 + 2952 ], "util_damage": [ - 2946 + 2952 ], "__typename": [ 80 @@ -126942,10 +127533,10 @@ export default { }, "v_player_match_map_roles_stream_cursor_input": { "initial_value": [ - 5525 + 5531 ], "ordering": [ - 308 + 314 ], "__typename": [ 80 @@ -126953,46 +127544,46 @@ export default { }, "v_player_match_map_roles_stream_cursor_value_input": { "adr": [ - 2944 + 2950 ], "awp_kills": [ 40 ], "awp_share": [ - 2944 + 2950 ], "deaths": [ 40 ], "dpr": [ - 2944 + 2950 ], "entry_rate": [ - 2944 + 2950 ], "flash_assists": [ 40 ], "hltv_rating": [ - 2944 + 2950 ], "kast_pct": [ - 2944 + 2950 ], "kills": [ 40 ], "kpr": [ - 2944 + 2950 ], "lineup_id": [ - 4993 + 4999 ], "match_id": [ - 4993 + 4999 ], "match_map_id": [ - 4993 + 4999 ], "open_deaths": [ 40 @@ -127010,10 +127601,10 @@ export default { 40 ], "steam_id": [ - 252 + 258 ], "support_idx": [ - 2944 + 2950 ], "total_kills": [ 40 @@ -127033,37 +127624,37 @@ export default { }, "v_player_match_map_roles_sum_fields": { "adr": [ - 2944 + 2950 ], "awp_kills": [ 40 ], "awp_share": [ - 2944 + 2950 ], "deaths": [ 40 ], "dpr": [ - 2944 + 2950 ], "entry_rate": [ - 2944 + 2950 ], "flash_assists": [ 40 ], "hltv_rating": [ - 2944 + 2950 ], "kast_pct": [ - 2944 + 2950 ], "kills": [ 40 ], "kpr": [ - 2944 + 2950 ], "open_deaths": [ 40 @@ -127078,10 +127669,10 @@ export default { 40 ], "steam_id": [ - 252 + 258 ], "support_idx": [ - 2944 + 2950 ], "total_kills": [ 40 @@ -127314,25 +127905,25 @@ export default { 40 ], "map": [ - 2279 + 2285 ], "map_id": [ - 4993 + 4999 ], "match": [ - 2761 + 2767 ], "match_created_at": [ - 4493 + 4499 ], "match_id": [ - 4993 + 4999 ], "match_result": [ 80 ], "player_steam_id": [ - 252 + 258 ], "source": [ 80 @@ -127346,10 +127937,10 @@ export default { }, "v_player_match_performance_aggregate": { "aggregate": [ - 5532 + 5538 ], "nodes": [ - 5530 + 5536 ], "__typename": [ 80 @@ -127357,13 +127948,13 @@ export default { }, "v_player_match_performance_aggregate_fields": { "avg": [ - 5533 + 5539 ], "count": [ 40, { "columns": [ - 5538, + 5544, "[v_player_match_performance_select_column!]" ], "distinct": [ @@ -127372,31 +127963,31 @@ export default { } ], "max": [ - 5535 + 5541 ], "min": [ - 5536 + 5542 ], "stddev": [ - 5539 + 5545 ], "stddev_pop": [ - 5540 + 5546 ], "stddev_samp": [ - 5541 + 5547 ], "sum": [ - 5544 + 5550 ], "var_pop": [ - 5545 + 5551 ], "var_samp": [ - 5546 + 5552 ], "variance": [ - 5547 + 5553 ], "__typename": [ 80 @@ -127421,13 +128012,13 @@ export default { }, "v_player_match_performance_bool_exp": { "_and": [ - 5534 + 5540 ], "_not": [ - 5534 + 5540 ], "_or": [ - 5534 + 5540 ], "assists": [ 41 @@ -127439,25 +128030,25 @@ export default { 41 ], "map": [ - 2288 + 2294 ], "map_id": [ - 4995 + 5001 ], "match": [ - 2770 + 2776 ], "match_created_at": [ - 4494 + 4500 ], "match_id": [ - 4995 + 5001 ], "match_result": [ 82 ], "player_steam_id": [ - 254 + 260 ], "source": [ 82 @@ -127480,19 +128071,19 @@ export default { 40 ], "map_id": [ - 4993 + 4999 ], "match_created_at": [ - 4493 + 4499 ], "match_id": [ - 4993 + 4999 ], "match_result": [ 80 ], "player_steam_id": [ - 252 + 258 ], "source": [ 80 @@ -127515,19 +128106,19 @@ export default { 40 ], "map_id": [ - 4993 + 4999 ], "match_created_at": [ - 4493 + 4499 ], "match_id": [ - 4993 + 4999 ], "match_result": [ 80 ], "player_steam_id": [ - 252 + 258 ], "source": [ 80 @@ -127541,40 +128132,40 @@ export default { }, "v_player_match_performance_order_by": { "assists": [ - 2946 + 2952 ], "deaths": [ - 2946 + 2952 ], "kills": [ - 2946 + 2952 ], "map": [ - 2298 + 2304 ], "map_id": [ - 2946 + 2952 ], "match": [ - 2781 + 2787 ], "match_created_at": [ - 2946 + 2952 ], "match_id": [ - 2946 + 2952 ], "match_result": [ - 2946 + 2952 ], "player_steam_id": [ - 2946 + 2952 ], "source": [ - 2946 + 2952 ], "type": [ - 2946 + 2952 ], "__typename": [ 80 @@ -127634,10 +128225,10 @@ export default { }, "v_player_match_performance_stream_cursor_input": { "initial_value": [ - 5543 + 5549 ], "ordering": [ - 308 + 314 ], "__typename": [ 80 @@ -127654,19 +128245,19 @@ export default { 40 ], "map_id": [ - 4993 + 4999 ], "match_created_at": [ - 4493 + 4499 ], "match_id": [ - 4993 + 4999 ], "match_result": [ 80 ], "player_steam_id": [ - 252 + 258 ], "source": [ 80 @@ -127689,7 +128280,7 @@ export default { 40 ], "player_steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -127748,34 +128339,34 @@ export default { }, "v_player_match_rating": { "adr": [ - 2944 + 2950 ], "dpr": [ - 2944 + 2950 ], "hltv_rating": [ - 2944 + 2950 ], "kast_pct": [ - 2944 + 2950 ], "kpr": [ - 2944 + 2950 ], "match": [ - 2761 + 2767 ], "match_id": [ - 4993 + 4999 ], "player": [ - 3904 + 3910 ], "rounds_played": [ 40 ], "steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -127783,10 +128374,10 @@ export default { }, "v_player_match_rating_aggregate": { "aggregate": [ - 5550 + 5556 ], "nodes": [ - 5548 + 5554 ], "__typename": [ 80 @@ -127794,13 +128385,13 @@ export default { }, "v_player_match_rating_aggregate_fields": { "avg": [ - 5551 + 5557 ], "count": [ 40, { "columns": [ - 5556, + 5562, "[v_player_match_rating_select_column!]" ], "distinct": [ @@ -127809,31 +128400,31 @@ export default { } ], "max": [ - 5553 + 5559 ], "min": [ - 5554 + 5560 ], "stddev": [ - 5557 + 5563 ], "stddev_pop": [ - 5558 + 5564 ], "stddev_samp": [ - 5559 + 5565 ], "sum": [ - 5562 + 5568 ], "var_pop": [ - 5563 + 5569 ], "var_samp": [ - 5564 + 5570 ], "variance": [ - 5565 + 5571 ], "__typename": [ 80 @@ -127867,43 +128458,43 @@ export default { }, "v_player_match_rating_bool_exp": { "_and": [ - 5552 + 5558 ], "_not": [ - 5552 + 5558 ], "_or": [ - 5552 + 5558 ], "adr": [ - 2945 + 2951 ], "dpr": [ - 2945 + 2951 ], "hltv_rating": [ - 2945 + 2951 ], "kast_pct": [ - 2945 + 2951 ], "kpr": [ - 2945 + 2951 ], "match": [ - 2770 + 2776 ], "match_id": [ - 4995 + 5001 ], "player": [ - 3908 + 3914 ], "rounds_played": [ 41 ], "steam_id": [ - 254 + 260 ], "__typename": [ 80 @@ -127911,28 +128502,28 @@ export default { }, "v_player_match_rating_max_fields": { "adr": [ - 2944 + 2950 ], "dpr": [ - 2944 + 2950 ], "hltv_rating": [ - 2944 + 2950 ], "kast_pct": [ - 2944 + 2950 ], "kpr": [ - 2944 + 2950 ], "match_id": [ - 4993 + 4999 ], "rounds_played": [ 40 ], "steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -127940,28 +128531,28 @@ export default { }, "v_player_match_rating_min_fields": { "adr": [ - 2944 + 2950 ], "dpr": [ - 2944 + 2950 ], "hltv_rating": [ - 2944 + 2950 ], "kast_pct": [ - 2944 + 2950 ], "kpr": [ - 2944 + 2950 ], "match_id": [ - 4993 + 4999 ], "rounds_played": [ 40 ], "steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -127969,34 +128560,34 @@ export default { }, "v_player_match_rating_order_by": { "adr": [ - 2946 + 2952 ], "dpr": [ - 2946 + 2952 ], "hltv_rating": [ - 2946 + 2952 ], "kast_pct": [ - 2946 + 2952 ], "kpr": [ - 2946 + 2952 ], "match": [ - 2781 + 2787 ], "match_id": [ - 2946 + 2952 ], "player": [ - 3917 + 3923 ], "rounds_played": [ - 2946 + 2952 ], "steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -128083,10 +128674,10 @@ export default { }, "v_player_match_rating_stream_cursor_input": { "initial_value": [ - 5561 + 5567 ], "ordering": [ - 308 + 314 ], "__typename": [ 80 @@ -128094,28 +128685,28 @@ export default { }, "v_player_match_rating_stream_cursor_value_input": { "adr": [ - 2944 + 2950 ], "dpr": [ - 2944 + 2950 ], "hltv_rating": [ - 2944 + 2950 ], "kast_pct": [ - 2944 + 2950 ], "kpr": [ - 2944 + 2950 ], "match_id": [ - 4993 + 4999 ], "rounds_played": [ 40 ], "steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -128123,25 +128714,25 @@ export default { }, "v_player_match_rating_sum_fields": { "adr": [ - 2944 + 2950 ], "dpr": [ - 2944 + 2950 ], "hltv_rating": [ - 2944 + 2950 ], "kast_pct": [ - 2944 + 2950 ], "kpr": [ - 2944 + 2950 ], "rounds_played": [ 40 ], "steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -128227,13 +128818,13 @@ export default { }, "v_player_multi_kills": { "attacker_steam_id": [ - 252 + 258 ], "kills": [ - 252 + 258 ], "match_id": [ - 4993 + 4999 ], "round": [ 40 @@ -128244,10 +128835,10 @@ export default { }, "v_player_multi_kills_aggregate": { "aggregate": [ - 5570 + 5576 ], "nodes": [ - 5566 + 5572 ], "__typename": [ 80 @@ -128255,7 +128846,7 @@ export default { }, "v_player_multi_kills_aggregate_bool_exp": { "count": [ - 5569 + 5575 ], "__typename": [ 80 @@ -128263,13 +128854,13 @@ export default { }, "v_player_multi_kills_aggregate_bool_exp_count": { "arguments": [ - 5582 + 5588 ], "distinct": [ 5 ], "filter": [ - 5575 + 5581 ], "predicate": [ 41 @@ -128280,13 +128871,13 @@ export default { }, "v_player_multi_kills_aggregate_fields": { "avg": [ - 5573 + 5579 ], "count": [ 40, { "columns": [ - 5582, + 5588, "[v_player_multi_kills_select_column!]" ], "distinct": [ @@ -128295,31 +128886,31 @@ export default { } ], "max": [ - 5577 + 5583 ], "min": [ - 5579 + 5585 ], "stddev": [ - 5583 + 5589 ], "stddev_pop": [ - 5585 + 5591 ], "stddev_samp": [ - 5587 + 5593 ], "sum": [ - 5591 + 5597 ], "var_pop": [ - 5593 + 5599 ], "var_samp": [ - 5595 + 5601 ], "variance": [ - 5597 + 5603 ], "__typename": [ 80 @@ -128327,37 +128918,37 @@ export default { }, "v_player_multi_kills_aggregate_order_by": { "avg": [ - 5574 + 5580 ], "count": [ - 2946 + 2952 ], "max": [ - 5578 + 5584 ], "min": [ - 5580 + 5586 ], "stddev": [ - 5584 + 5590 ], "stddev_pop": [ - 5586 + 5592 ], "stddev_samp": [ - 5588 + 5594 ], "sum": [ - 5592 + 5598 ], "var_pop": [ - 5594 + 5600 ], "var_samp": [ - 5596 + 5602 ], "variance": [ - 5598 + 5604 ], "__typename": [ 80 @@ -128365,7 +128956,7 @@ export default { }, "v_player_multi_kills_arr_rel_insert_input": { "data": [ - 5576 + 5582 ], "__typename": [ 80 @@ -128387,13 +128978,13 @@ export default { }, "v_player_multi_kills_avg_order_by": { "attacker_steam_id": [ - 2946 + 2952 ], "kills": [ - 2946 + 2952 ], "round": [ - 2946 + 2952 ], "__typename": [ 80 @@ -128401,22 +128992,22 @@ export default { }, "v_player_multi_kills_bool_exp": { "_and": [ - 5575 + 5581 ], "_not": [ - 5575 + 5581 ], "_or": [ - 5575 + 5581 ], "attacker_steam_id": [ - 254 + 260 ], "kills": [ - 254 + 260 ], "match_id": [ - 4995 + 5001 ], "round": [ 41 @@ -128427,13 +129018,13 @@ export default { }, "v_player_multi_kills_insert_input": { "attacker_steam_id": [ - 252 + 258 ], "kills": [ - 252 + 258 ], "match_id": [ - 4993 + 4999 ], "round": [ 40 @@ -128444,13 +129035,13 @@ export default { }, "v_player_multi_kills_max_fields": { "attacker_steam_id": [ - 252 + 258 ], "kills": [ - 252 + 258 ], "match_id": [ - 4993 + 4999 ], "round": [ 40 @@ -128461,16 +129052,16 @@ export default { }, "v_player_multi_kills_max_order_by": { "attacker_steam_id": [ - 2946 + 2952 ], "kills": [ - 2946 + 2952 ], "match_id": [ - 2946 + 2952 ], "round": [ - 2946 + 2952 ], "__typename": [ 80 @@ -128478,13 +129069,13 @@ export default { }, "v_player_multi_kills_min_fields": { "attacker_steam_id": [ - 252 + 258 ], "kills": [ - 252 + 258 ], "match_id": [ - 4993 + 4999 ], "round": [ 40 @@ -128495,16 +129086,16 @@ export default { }, "v_player_multi_kills_min_order_by": { "attacker_steam_id": [ - 2946 + 2952 ], "kills": [ - 2946 + 2952 ], "match_id": [ - 2946 + 2952 ], "round": [ - 2946 + 2952 ], "__typename": [ 80 @@ -128512,16 +129103,16 @@ export default { }, "v_player_multi_kills_order_by": { "attacker_steam_id": [ - 2946 + 2952 ], "kills": [ - 2946 + 2952 ], "match_id": [ - 2946 + 2952 ], "round": [ - 2946 + 2952 ], "__typename": [ 80 @@ -128544,13 +129135,13 @@ export default { }, "v_player_multi_kills_stddev_order_by": { "attacker_steam_id": [ - 2946 + 2952 ], "kills": [ - 2946 + 2952 ], "round": [ - 2946 + 2952 ], "__typename": [ 80 @@ -128572,13 +129163,13 @@ export default { }, "v_player_multi_kills_stddev_pop_order_by": { "attacker_steam_id": [ - 2946 + 2952 ], "kills": [ - 2946 + 2952 ], "round": [ - 2946 + 2952 ], "__typename": [ 80 @@ -128600,13 +129191,13 @@ export default { }, "v_player_multi_kills_stddev_samp_order_by": { "attacker_steam_id": [ - 2946 + 2952 ], "kills": [ - 2946 + 2952 ], "round": [ - 2946 + 2952 ], "__typename": [ 80 @@ -128614,10 +129205,10 @@ export default { }, "v_player_multi_kills_stream_cursor_input": { "initial_value": [ - 5590 + 5596 ], "ordering": [ - 308 + 314 ], "__typename": [ 80 @@ -128625,13 +129216,13 @@ export default { }, "v_player_multi_kills_stream_cursor_value_input": { "attacker_steam_id": [ - 252 + 258 ], "kills": [ - 252 + 258 ], "match_id": [ - 4993 + 4999 ], "round": [ 40 @@ -128642,10 +129233,10 @@ export default { }, "v_player_multi_kills_sum_fields": { "attacker_steam_id": [ - 252 + 258 ], "kills": [ - 252 + 258 ], "round": [ 40 @@ -128656,13 +129247,13 @@ export default { }, "v_player_multi_kills_sum_order_by": { "attacker_steam_id": [ - 2946 + 2952 ], "kills": [ - 2946 + 2952 ], "round": [ - 2946 + 2952 ], "__typename": [ 80 @@ -128684,13 +129275,13 @@ export default { }, "v_player_multi_kills_var_pop_order_by": { "attacker_steam_id": [ - 2946 + 2952 ], "kills": [ - 2946 + 2952 ], "round": [ - 2946 + 2952 ], "__typename": [ 80 @@ -128712,13 +129303,13 @@ export default { }, "v_player_multi_kills_var_samp_order_by": { "attacker_steam_id": [ - 2946 + 2952 ], "kills": [ - 2946 + 2952 ], "round": [ - 2946 + 2952 ], "__typename": [ 80 @@ -128740,13 +129331,13 @@ export default { }, "v_player_multi_kills_variance_order_by": { "attacker_steam_id": [ - 2946 + 2952 ], "kills": [ - 2946 + 2952 ], "round": [ - 2946 + 2952 ], "__typename": [ 80 @@ -128754,13 +129345,13 @@ export default { }, "v_player_weapon_damage": { "damage": [ - 252 + 258 ], "hits": [ - 252 + 258 ], "player_steam_id": [ - 252 + 258 ], "source": [ 80 @@ -128777,10 +129368,10 @@ export default { }, "v_player_weapon_damage_aggregate": { "aggregate": [ - 5601 + 5607 ], "nodes": [ - 5599 + 5605 ], "__typename": [ 80 @@ -128788,13 +129379,13 @@ export default { }, "v_player_weapon_damage_aggregate_fields": { "avg": [ - 5602 + 5608 ], "count": [ 40, { "columns": [ - 5607, + 5613, "[v_player_weapon_damage_select_column!]" ], "distinct": [ @@ -128803,31 +129394,31 @@ export default { } ], "max": [ - 5604 + 5610 ], "min": [ - 5605 + 5611 ], "stddev": [ - 5608 + 5614 ], "stddev_pop": [ - 5609 + 5615 ], "stddev_samp": [ - 5610 + 5616 ], "sum": [ - 5613 + 5619 ], "var_pop": [ - 5614 + 5620 ], "var_samp": [ - 5615 + 5621 ], "variance": [ - 5616 + 5622 ], "__typename": [ 80 @@ -128849,22 +129440,22 @@ export default { }, "v_player_weapon_damage_bool_exp": { "_and": [ - 5603 + 5609 ], "_not": [ - 5603 + 5609 ], "_or": [ - 5603 + 5609 ], "damage": [ - 254 + 260 ], "hits": [ - 254 + 260 ], "player_steam_id": [ - 254 + 260 ], "source": [ 82 @@ -128881,13 +129472,13 @@ export default { }, "v_player_weapon_damage_max_fields": { "damage": [ - 252 + 258 ], "hits": [ - 252 + 258 ], "player_steam_id": [ - 252 + 258 ], "source": [ 80 @@ -128904,13 +129495,13 @@ export default { }, "v_player_weapon_damage_min_fields": { "damage": [ - 252 + 258 ], "hits": [ - 252 + 258 ], "player_steam_id": [ - 252 + 258 ], "source": [ 80 @@ -128927,22 +129518,22 @@ export default { }, "v_player_weapon_damage_order_by": { "damage": [ - 2946 + 2952 ], "hits": [ - 2946 + 2952 ], "player_steam_id": [ - 2946 + 2952 ], "source": [ - 2946 + 2952 ], "type": [ - 2946 + 2952 ], "with": [ - 2946 + 2952 ], "__typename": [ 80 @@ -128993,10 +129584,10 @@ export default { }, "v_player_weapon_damage_stream_cursor_input": { "initial_value": [ - 5612 + 5618 ], "ordering": [ - 308 + 314 ], "__typename": [ 80 @@ -129004,13 +129595,13 @@ export default { }, "v_player_weapon_damage_stream_cursor_value_input": { "damage": [ - 252 + 258 ], "hits": [ - 252 + 258 ], "player_steam_id": [ - 252 + 258 ], "source": [ 80 @@ -129027,13 +129618,13 @@ export default { }, "v_player_weapon_damage_sum_fields": { "damage": [ - 252 + 258 ], "hits": [ - 252 + 258 ], "player_steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -129083,13 +129674,13 @@ export default { }, "v_player_weapon_kills": { "kill_count": [ - 252 + 258 ], "player_steam_id": [ - 252 + 258 ], "rounds": [ - 252 + 258 ], "source": [ 80 @@ -129106,10 +129697,10 @@ export default { }, "v_player_weapon_kills_aggregate": { "aggregate": [ - 5619 + 5625 ], "nodes": [ - 5617 + 5623 ], "__typename": [ 80 @@ -129117,13 +129708,13 @@ export default { }, "v_player_weapon_kills_aggregate_fields": { "avg": [ - 5620 + 5626 ], "count": [ 40, { "columns": [ - 5625, + 5631, "[v_player_weapon_kills_select_column!]" ], "distinct": [ @@ -129132,31 +129723,31 @@ export default { } ], "max": [ - 5622 + 5628 ], "min": [ - 5623 + 5629 ], "stddev": [ - 5626 + 5632 ], "stddev_pop": [ - 5627 + 5633 ], "stddev_samp": [ - 5628 + 5634 ], "sum": [ - 5631 + 5637 ], "var_pop": [ - 5632 + 5638 ], "var_samp": [ - 5633 + 5639 ], "variance": [ - 5634 + 5640 ], "__typename": [ 80 @@ -129178,22 +129769,22 @@ export default { }, "v_player_weapon_kills_bool_exp": { "_and": [ - 5621 + 5627 ], "_not": [ - 5621 + 5627 ], "_or": [ - 5621 + 5627 ], "kill_count": [ - 254 + 260 ], "player_steam_id": [ - 254 + 260 ], "rounds": [ - 254 + 260 ], "source": [ 82 @@ -129210,13 +129801,13 @@ export default { }, "v_player_weapon_kills_max_fields": { "kill_count": [ - 252 + 258 ], "player_steam_id": [ - 252 + 258 ], "rounds": [ - 252 + 258 ], "source": [ 80 @@ -129233,13 +129824,13 @@ export default { }, "v_player_weapon_kills_min_fields": { "kill_count": [ - 252 + 258 ], "player_steam_id": [ - 252 + 258 ], "rounds": [ - 252 + 258 ], "source": [ 80 @@ -129256,22 +129847,22 @@ export default { }, "v_player_weapon_kills_order_by": { "kill_count": [ - 2946 + 2952 ], "player_steam_id": [ - 2946 + 2952 ], "rounds": [ - 2946 + 2952 ], "source": [ - 2946 + 2952 ], "type": [ - 2946 + 2952 ], "with": [ - 2946 + 2952 ], "__typename": [ 80 @@ -129322,10 +129913,10 @@ export default { }, "v_player_weapon_kills_stream_cursor_input": { "initial_value": [ - 5630 + 5636 ], "ordering": [ - 308 + 314 ], "__typename": [ 80 @@ -129333,13 +129924,13 @@ export default { }, "v_player_weapon_kills_stream_cursor_value_input": { "kill_count": [ - 252 + 258 ], "player_steam_id": [ - 252 + 258 ], "rounds": [ - 252 + 258 ], "source": [ 80 @@ -129356,13 +129947,13 @@ export default { }, "v_player_weapon_kills_sum_fields": { "kill_count": [ - 252 + 258 ], "player_steam_id": [ - 252 + 258 ], "rounds": [ - 252 + 258 ], "__typename": [ 80 @@ -129415,16 +130006,16 @@ export default { 5 ], "id": [ - 4993 + 4999 ], "label": [ 80 ], "map_pool": [ - 2260 + 2266 ], "map_pool_id": [ - 4993 + 4999 ], "name": [ 80 @@ -129447,10 +130038,10 @@ export default { }, "v_pool_maps_aggregate": { "aggregate": [ - 5641 + 5647 ], "nodes": [ - 5635 + 5641 ], "__typename": [ 80 @@ -129458,13 +130049,13 @@ export default { }, "v_pool_maps_aggregate_bool_exp": { "bool_and": [ - 5638 + 5644 ], "bool_or": [ - 5639 + 5645 ], "count": [ - 5640 + 5646 ], "__typename": [ 80 @@ -129472,13 +130063,13 @@ export default { }, "v_pool_maps_aggregate_bool_exp_bool_and": { "arguments": [ - 5653 + 5659 ], "distinct": [ 5 ], "filter": [ - 5644 + 5650 ], "predicate": [ 6 @@ -129489,13 +130080,13 @@ export default { }, "v_pool_maps_aggregate_bool_exp_bool_or": { "arguments": [ - 5654 + 5660 ], "distinct": [ 5 ], "filter": [ - 5644 + 5650 ], "predicate": [ 6 @@ -129506,13 +130097,13 @@ export default { }, "v_pool_maps_aggregate_bool_exp_count": { "arguments": [ - 5652 + 5658 ], "distinct": [ 5 ], "filter": [ - 5644 + 5650 ], "predicate": [ 41 @@ -129526,7 +130117,7 @@ export default { 40, { "columns": [ - 5652, + 5658, "[v_pool_maps_select_column!]" ], "distinct": [ @@ -129535,10 +130126,10 @@ export default { } ], "max": [ - 5646 + 5652 ], "min": [ - 5648 + 5654 ], "__typename": [ 80 @@ -129546,13 +130137,13 @@ export default { }, "v_pool_maps_aggregate_order_by": { "count": [ - 2946 + 2952 ], "max": [ - 5647 + 5653 ], "min": [ - 5649 + 5655 ], "__typename": [ 80 @@ -129560,7 +130151,7 @@ export default { }, "v_pool_maps_arr_rel_insert_input": { "data": [ - 5645 + 5651 ], "__typename": [ 80 @@ -129568,28 +130159,28 @@ export default { }, "v_pool_maps_bool_exp": { "_and": [ - 5644 + 5650 ], "_not": [ - 5644 + 5650 ], "_or": [ - 5644 + 5650 ], "active_pool": [ 6 ], "id": [ - 4995 + 5001 ], "label": [ 82 ], "map_pool": [ - 2263 + 2269 ], "map_pool_id": [ - 4995 + 5001 ], "name": [ 82 @@ -129615,16 +130206,16 @@ export default { 5 ], "id": [ - 4993 + 4999 ], "label": [ 80 ], "map_pool": [ - 2269 + 2275 ], "map_pool_id": [ - 4993 + 4999 ], "name": [ 80 @@ -129647,13 +130238,13 @@ export default { }, "v_pool_maps_max_fields": { "id": [ - 4993 + 4999 ], "label": [ 80 ], "map_pool_id": [ - 4993 + 4999 ], "name": [ 80 @@ -129676,28 +130267,28 @@ export default { }, "v_pool_maps_max_order_by": { "id": [ - 2946 + 2952 ], "label": [ - 2946 + 2952 ], "map_pool_id": [ - 2946 + 2952 ], "name": [ - 2946 + 2952 ], "patch": [ - 2946 + 2952 ], "poster": [ - 2946 + 2952 ], "type": [ - 2946 + 2952 ], "workshop_map_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -129705,13 +130296,13 @@ export default { }, "v_pool_maps_min_fields": { "id": [ - 4993 + 4999 ], "label": [ 80 ], "map_pool_id": [ - 4993 + 4999 ], "name": [ 80 @@ -129734,28 +130325,28 @@ export default { }, "v_pool_maps_min_order_by": { "id": [ - 2946 + 2952 ], "label": [ - 2946 + 2952 ], "map_pool_id": [ - 2946 + 2952 ], "name": [ - 2946 + 2952 ], "patch": [ - 2946 + 2952 ], "poster": [ - 2946 + 2952 ], "type": [ - 2946 + 2952 ], "workshop_map_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -129766,7 +130357,7 @@ export default { 40 ], "returning": [ - 5635 + 5641 ], "__typename": [ 80 @@ -129774,34 +130365,34 @@ export default { }, "v_pool_maps_order_by": { "active_pool": [ - 2946 + 2952 ], "id": [ - 2946 + 2952 ], "label": [ - 2946 + 2952 ], "map_pool": [ - 2271 + 2277 ], "map_pool_id": [ - 2946 + 2952 ], "name": [ - 2946 + 2952 ], "patch": [ - 2946 + 2952 ], "poster": [ - 2946 + 2952 ], "type": [ - 2946 + 2952 ], "workshop_map_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -129815,13 +130406,13 @@ export default { 5 ], "id": [ - 4993 + 4999 ], "label": [ 80 ], "map_pool_id": [ - 4993 + 4999 ], "name": [ 80 @@ -129844,10 +130435,10 @@ export default { }, "v_pool_maps_stream_cursor_input": { "initial_value": [ - 5657 + 5663 ], "ordering": [ - 308 + 314 ], "__typename": [ 80 @@ -129858,13 +130449,13 @@ export default { 5 ], "id": [ - 4993 + 4999 ], "label": [ 80 ], "map_pool_id": [ - 4993 + 4999 ], "name": [ 80 @@ -129887,10 +130478,10 @@ export default { }, "v_pool_maps_updates": { "_set": [ - 5655 + 5661 ], "where": [ - 5644 + 5650 ], "__typename": [ 80 @@ -129915,10 +130506,10 @@ export default { }, "v_steam_account_pool_status_aggregate": { "aggregate": [ - 5661 + 5667 ], "nodes": [ - 5659 + 5665 ], "__typename": [ 80 @@ -129926,13 +130517,13 @@ export default { }, "v_steam_account_pool_status_aggregate_fields": { "avg": [ - 5662 + 5668 ], "count": [ 40, { "columns": [ - 5667, + 5673, "[v_steam_account_pool_status_select_column!]" ], "distinct": [ @@ -129941,31 +130532,31 @@ export default { } ], "max": [ - 5664 + 5670 ], "min": [ - 5665 + 5671 ], "stddev": [ - 5668 + 5674 ], "stddev_pop": [ - 5669 + 5675 ], "stddev_samp": [ - 5670 + 5676 ], "sum": [ - 5673 + 5679 ], "var_pop": [ - 5674 + 5680 ], "var_samp": [ - 5675 + 5681 ], "variance": [ - 5676 + 5682 ], "__typename": [ 80 @@ -129990,13 +130581,13 @@ export default { }, "v_steam_account_pool_status_bool_exp": { "_and": [ - 5663 + 5669 ], "_not": [ - 5663 + 5669 ], "_or": [ - 5663 + 5669 ], "busy_accounts": [ 41 @@ -130050,16 +130641,16 @@ export default { }, "v_steam_account_pool_status_order_by": { "busy_accounts": [ - 2946 + 2952 ], "free_accounts": [ - 2946 + 2952 ], "id": [ - 2946 + 2952 ], "total_accounts": [ - 2946 + 2952 ], "__typename": [ 80 @@ -130119,10 +130710,10 @@ export default { }, "v_steam_account_pool_status_stream_cursor_input": { "initial_value": [ - 5672 + 5678 ], "ordering": [ - 308 + 314 ], "__typename": [ 80 @@ -130221,7 +130812,7 @@ export default { 40 ], "avg_faceit_level": [ - 1664 + 1670 ], "avg_premier": [ 40 @@ -130233,13 +130824,13 @@ export default { 40 ], "roster_size": [ - 252 + 258 ], "team": [ - 4446 + 4452 ], "team_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -130247,10 +130838,10 @@ export default { }, "v_team_ranks_aggregate": { "aggregate": [ - 5679 + 5685 ], "nodes": [ - 5677 + 5683 ], "__typename": [ 80 @@ -130258,13 +130849,13 @@ export default { }, "v_team_ranks_aggregate_fields": { "avg": [ - 5680 + 5686 ], "count": [ 40, { "columns": [ - 5687, + 5693, "[v_team_ranks_select_column!]" ], "distinct": [ @@ -130273,31 +130864,31 @@ export default { } ], "max": [ - 5683 + 5689 ], "min": [ - 5684 + 5690 ], "stddev": [ - 5688 + 5694 ], "stddev_pop": [ - 5689 + 5695 ], "stddev_samp": [ - 5690 + 5696 ], "sum": [ - 5693 + 5699 ], "var_pop": [ - 5694 + 5700 ], "var_samp": [ - 5695 + 5701 ], "variance": [ - 5696 + 5702 ], "__typename": [ 80 @@ -130331,13 +130922,13 @@ export default { }, "v_team_ranks_bool_exp": { "_and": [ - 5681 + 5687 ], "_not": [ - 5681 + 5687 ], "_or": [ - 5681 + 5687 ], "avg_elo": [ 41 @@ -130346,7 +130937,7 @@ export default { 41 ], "avg_faceit_level": [ - 1665 + 1671 ], "avg_premier": [ 41 @@ -130358,13 +130949,13 @@ export default { 41 ], "roster_size": [ - 254 + 260 ], "team": [ - 4457 + 4463 ], "team_id": [ - 4995 + 5001 ], "__typename": [ 80 @@ -130378,7 +130969,7 @@ export default { 40 ], "avg_faceit_level": [ - 1664 + 1670 ], "avg_premier": [ 40 @@ -130390,13 +130981,13 @@ export default { 40 ], "roster_size": [ - 252 + 258 ], "team": [ - 4466 + 4472 ], "team_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -130410,7 +131001,7 @@ export default { 40 ], "avg_faceit_level": [ - 1664 + 1670 ], "avg_premier": [ 40 @@ -130422,10 +131013,10 @@ export default { 40 ], "roster_size": [ - 252 + 258 ], "team_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -130439,7 +131030,7 @@ export default { 40 ], "avg_faceit_level": [ - 1664 + 1670 ], "avg_premier": [ 40 @@ -130451,10 +131042,10 @@ export default { 40 ], "roster_size": [ - 252 + 258 ], "team_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -130462,7 +131053,7 @@ export default { }, "v_team_ranks_obj_rel_insert_input": { "data": [ - 5682 + 5688 ], "__typename": [ 80 @@ -130470,31 +131061,31 @@ export default { }, "v_team_ranks_order_by": { "avg_elo": [ - 2946 + 2952 ], "avg_faceit_elo": [ - 2946 + 2952 ], "avg_faceit_level": [ - 2946 + 2952 ], "avg_premier": [ - 2946 + 2952 ], "max_elo": [ - 2946 + 2952 ], "min_elo": [ - 2946 + 2952 ], "roster_size": [ - 2946 + 2952 ], "team": [ - 4468 + 4474 ], "team_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -130581,10 +131172,10 @@ export default { }, "v_team_ranks_stream_cursor_input": { "initial_value": [ - 5692 + 5698 ], "ordering": [ - 308 + 314 ], "__typename": [ 80 @@ -130598,7 +131189,7 @@ export default { 40 ], "avg_faceit_level": [ - 1664 + 1670 ], "avg_premier": [ 40 @@ -130610,10 +131201,10 @@ export default { 40 ], "roster_size": [ - 252 + 258 ], "team_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -130627,7 +131218,7 @@ export default { 40 ], "avg_faceit_level": [ - 1664 + 1670 ], "avg_premier": [ 40 @@ -130639,7 +131230,7 @@ export default { 40 ], "roster_size": [ - 252 + 258 ], "__typename": [ 80 @@ -130725,22 +131316,22 @@ export default { }, "v_team_reputation": { "late_cancels": [ - 252 + 258 ], "no_shows": [ - 252 + 258 ], "reliability_pct": [ - 2944 + 2950 ], "scrims_completed": [ - 252 + 258 ], "team": [ - 4446 + 4452 ], "team_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -130748,10 +131339,10 @@ export default { }, "v_team_reputation_aggregate": { "aggregate": [ - 5699 + 5705 ], "nodes": [ - 5697 + 5703 ], "__typename": [ 80 @@ -130759,13 +131350,13 @@ export default { }, "v_team_reputation_aggregate_fields": { "avg": [ - 5700 + 5706 ], "count": [ 40, { "columns": [ - 5707, + 5713, "[v_team_reputation_select_column!]" ], "distinct": [ @@ -130774,31 +131365,31 @@ export default { } ], "max": [ - 5703 + 5709 ], "min": [ - 5704 + 5710 ], "stddev": [ - 5708 + 5714 ], "stddev_pop": [ - 5709 + 5715 ], "stddev_samp": [ - 5710 + 5716 ], "sum": [ - 5713 + 5719 ], "var_pop": [ - 5714 + 5720 ], "var_samp": [ - 5715 + 5721 ], "variance": [ - 5716 + 5722 ], "__typename": [ 80 @@ -130823,31 +131414,31 @@ export default { }, "v_team_reputation_bool_exp": { "_and": [ - 5701 + 5707 ], "_not": [ - 5701 + 5707 ], "_or": [ - 5701 + 5707 ], "late_cancels": [ - 254 + 260 ], "no_shows": [ - 254 + 260 ], "reliability_pct": [ - 2945 + 2951 ], "scrims_completed": [ - 254 + 260 ], "team": [ - 4457 + 4463 ], "team_id": [ - 4995 + 5001 ], "__typename": [ 80 @@ -130855,22 +131446,22 @@ export default { }, "v_team_reputation_insert_input": { "late_cancels": [ - 252 + 258 ], "no_shows": [ - 252 + 258 ], "reliability_pct": [ - 2944 + 2950 ], "scrims_completed": [ - 252 + 258 ], "team": [ - 4466 + 4472 ], "team_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -130878,19 +131469,19 @@ export default { }, "v_team_reputation_max_fields": { "late_cancels": [ - 252 + 258 ], "no_shows": [ - 252 + 258 ], "reliability_pct": [ - 2944 + 2950 ], "scrims_completed": [ - 252 + 258 ], "team_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -130898,19 +131489,19 @@ export default { }, "v_team_reputation_min_fields": { "late_cancels": [ - 252 + 258 ], "no_shows": [ - 252 + 258 ], "reliability_pct": [ - 2944 + 2950 ], "scrims_completed": [ - 252 + 258 ], "team_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -130918,7 +131509,7 @@ export default { }, "v_team_reputation_obj_rel_insert_input": { "data": [ - 5702 + 5708 ], "__typename": [ 80 @@ -130926,22 +131517,22 @@ export default { }, "v_team_reputation_order_by": { "late_cancels": [ - 2946 + 2952 ], "no_shows": [ - 2946 + 2952 ], "reliability_pct": [ - 2946 + 2952 ], "scrims_completed": [ - 2946 + 2952 ], "team": [ - 4468 + 4474 ], "team_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -131001,10 +131592,10 @@ export default { }, "v_team_reputation_stream_cursor_input": { "initial_value": [ - 5712 + 5718 ], "ordering": [ - 308 + 314 ], "__typename": [ 80 @@ -131012,19 +131603,19 @@ export default { }, "v_team_reputation_stream_cursor_value_input": { "late_cancels": [ - 252 + 258 ], "no_shows": [ - 252 + 258 ], "reliability_pct": [ - 2944 + 2950 ], "scrims_completed": [ - 252 + 258 ], "team_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -131032,16 +131623,16 @@ export default { }, "v_team_reputation_sum_fields": { "late_cancels": [ - 252 + 258 ], "no_shows": [ - 252 + 258 ], "reliability_pct": [ - 2944 + 2950 ], "scrims_completed": [ - 252 + 258 ], "__typename": [ 80 @@ -131136,13 +131727,13 @@ export default { 40 ], "stage": [ - 4754 + 4760 ], "team": [ - 4887 + 4893 ], "team_kdr": [ - 1664 + 1670 ], "total_deaths": [ 40 @@ -131151,10 +131742,10 @@ export default { 40 ], "tournament_stage_id": [ - 4993 + 4999 ], "tournament_team_id": [ - 4993 + 4999 ], "wins": [ 40 @@ -131165,10 +131756,10 @@ export default { }, "v_team_stage_results_aggregate": { "aggregate": [ - 5731 + 5737 ], "nodes": [ - 5717 + 5723 ], "__typename": [ 80 @@ -131176,31 +131767,31 @@ export default { }, "v_team_stage_results_aggregate_bool_exp": { "avg": [ - 5720 + 5726 ], "corr": [ - 5721 + 5727 ], "count": [ - 5723 + 5729 ], "covar_samp": [ - 5724 + 5730 ], "max": [ - 5726 + 5732 ], "min": [ - 5727 + 5733 ], "stddev_samp": [ - 5728 + 5734 ], "sum": [ - 5729 + 5735 ], "var_samp": [ - 5730 + 5736 ], "__typename": [ 80 @@ -131208,16 +131799,16 @@ export default { }, "v_team_stage_results_aggregate_bool_exp_avg": { "arguments": [ - 5750 + 5756 ], "distinct": [ 5 ], "filter": [ - 5736 + 5742 ], "predicate": [ - 1665 + 1671 ], "__typename": [ 80 @@ -131225,16 +131816,16 @@ export default { }, "v_team_stage_results_aggregate_bool_exp_corr": { "arguments": [ - 5722 + 5728 ], "distinct": [ 5 ], "filter": [ - 5736 + 5742 ], "predicate": [ - 1665 + 1671 ], "__typename": [ 80 @@ -131242,10 +131833,10 @@ export default { }, "v_team_stage_results_aggregate_bool_exp_corr_arguments": { "X": [ - 5751 + 5757 ], "Y": [ - 5751 + 5757 ], "__typename": [ 80 @@ -131253,13 +131844,13 @@ export default { }, "v_team_stage_results_aggregate_bool_exp_count": { "arguments": [ - 5749 + 5755 ], "distinct": [ 5 ], "filter": [ - 5736 + 5742 ], "predicate": [ 41 @@ -131270,16 +131861,16 @@ export default { }, "v_team_stage_results_aggregate_bool_exp_covar_samp": { "arguments": [ - 5725 + 5731 ], "distinct": [ 5 ], "filter": [ - 5736 + 5742 ], "predicate": [ - 1665 + 1671 ], "__typename": [ 80 @@ -131287,10 +131878,10 @@ export default { }, "v_team_stage_results_aggregate_bool_exp_covar_samp_arguments": { "X": [ - 5752 + 5758 ], "Y": [ - 5752 + 5758 ], "__typename": [ 80 @@ -131298,16 +131889,16 @@ export default { }, "v_team_stage_results_aggregate_bool_exp_max": { "arguments": [ - 5753 + 5759 ], "distinct": [ 5 ], "filter": [ - 5736 + 5742 ], "predicate": [ - 1665 + 1671 ], "__typename": [ 80 @@ -131315,16 +131906,16 @@ export default { }, "v_team_stage_results_aggregate_bool_exp_min": { "arguments": [ - 5754 + 5760 ], "distinct": [ 5 ], "filter": [ - 5736 + 5742 ], "predicate": [ - 1665 + 1671 ], "__typename": [ 80 @@ -131332,16 +131923,16 @@ export default { }, "v_team_stage_results_aggregate_bool_exp_stddev_samp": { "arguments": [ - 5755 + 5761 ], "distinct": [ 5 ], "filter": [ - 5736 + 5742 ], "predicate": [ - 1665 + 1671 ], "__typename": [ 80 @@ -131349,16 +131940,16 @@ export default { }, "v_team_stage_results_aggregate_bool_exp_sum": { "arguments": [ - 5756 + 5762 ], "distinct": [ 5 ], "filter": [ - 5736 + 5742 ], "predicate": [ - 1665 + 1671 ], "__typename": [ 80 @@ -131366,16 +131957,16 @@ export default { }, "v_team_stage_results_aggregate_bool_exp_var_samp": { "arguments": [ - 5757 + 5763 ], "distinct": [ 5 ], "filter": [ - 5736 + 5742 ], "predicate": [ - 1665 + 1671 ], "__typename": [ 80 @@ -131383,13 +131974,13 @@ export default { }, "v_team_stage_results_aggregate_fields": { "avg": [ - 5734 + 5740 ], "count": [ 40, { "columns": [ - 5749, + 5755, "[v_team_stage_results_select_column!]" ], "distinct": [ @@ -131398,31 +131989,31 @@ export default { } ], "max": [ - 5740 + 5746 ], "min": [ - 5742 + 5748 ], "stddev": [ - 5759 + 5765 ], "stddev_pop": [ - 5761 + 5767 ], "stddev_samp": [ - 5763 + 5769 ], "sum": [ - 5767 + 5773 ], "var_pop": [ - 5771 + 5777 ], "var_samp": [ - 5773 + 5779 ], "variance": [ - 5775 + 5781 ], "__typename": [ 80 @@ -131430,37 +132021,37 @@ export default { }, "v_team_stage_results_aggregate_order_by": { "avg": [ - 5735 + 5741 ], "count": [ - 2946 + 2952 ], "max": [ - 5741 + 5747 ], "min": [ - 5743 + 5749 ], "stddev": [ - 5760 + 5766 ], "stddev_pop": [ - 5762 + 5768 ], "stddev_samp": [ - 5764 + 5770 ], "sum": [ - 5768 + 5774 ], "var_pop": [ - 5772 + 5778 ], "var_samp": [ - 5774 + 5780 ], "variance": [ - 5776 + 5782 ], "__typename": [ 80 @@ -131468,10 +132059,10 @@ export default { }, "v_team_stage_results_arr_rel_insert_input": { "data": [ - 5739 + 5745 ], "on_conflict": [ - 5746 + 5752 ], "__typename": [ 80 @@ -131532,52 +132123,52 @@ export default { }, "v_team_stage_results_avg_order_by": { "group_number": [ - 2946 + 2952 ], "head_to_head_match_wins": [ - 2946 + 2952 ], "head_to_head_rounds_won": [ - 2946 + 2952 ], "losses": [ - 2946 + 2952 ], "maps_lost": [ - 2946 + 2952 ], "maps_won": [ - 2946 + 2952 ], "matches_played": [ - 2946 + 2952 ], "matches_remaining": [ - 2946 + 2952 ], "placement": [ - 2946 + 2952 ], "rank": [ - 2946 + 2952 ], "rounds_lost": [ - 2946 + 2952 ], "rounds_won": [ - 2946 + 2952 ], "team_kdr": [ - 2946 + 2952 ], "total_deaths": [ - 2946 + 2952 ], "total_kills": [ - 2946 + 2952 ], "wins": [ - 2946 + 2952 ], "__typename": [ 80 @@ -131585,13 +132176,13 @@ export default { }, "v_team_stage_results_bool_exp": { "_and": [ - 5736 + 5742 ], "_not": [ - 5736 + 5742 ], "_or": [ - 5736 + 5742 ], "group_number": [ 41 @@ -131630,13 +132221,13 @@ export default { 41 ], "stage": [ - 4766 + 4772 ], "team": [ - 4896 + 4902 ], "team_kdr": [ - 1665 + 1671 ], "total_deaths": [ 41 @@ -131645,10 +132236,10 @@ export default { 41 ], "tournament_stage_id": [ - 4995 + 5001 ], "tournament_team_id": [ - 4995 + 5001 ], "wins": [ 41 @@ -131696,7 +132287,7 @@ export default { 40 ], "team_kdr": [ - 1664 + 1670 ], "total_deaths": [ 40 @@ -131749,13 +132340,13 @@ export default { 40 ], "stage": [ - 4778 + 4784 ], "team": [ - 4905 + 4911 ], "team_kdr": [ - 1664 + 1670 ], "total_deaths": [ 40 @@ -131764,10 +132355,10 @@ export default { 40 ], "tournament_stage_id": [ - 4993 + 4999 ], "tournament_team_id": [ - 4993 + 4999 ], "wins": [ 40 @@ -131814,7 +132405,7 @@ export default { 40 ], "team_kdr": [ - 1664 + 1670 ], "total_deaths": [ 40 @@ -131823,10 +132414,10 @@ export default { 40 ], "tournament_stage_id": [ - 4993 + 4999 ], "tournament_team_id": [ - 4993 + 4999 ], "wins": [ 40 @@ -131837,58 +132428,58 @@ export default { }, "v_team_stage_results_max_order_by": { "group_number": [ - 2946 + 2952 ], "head_to_head_match_wins": [ - 2946 + 2952 ], "head_to_head_rounds_won": [ - 2946 + 2952 ], "losses": [ - 2946 + 2952 ], "maps_lost": [ - 2946 + 2952 ], "maps_won": [ - 2946 + 2952 ], "matches_played": [ - 2946 + 2952 ], "matches_remaining": [ - 2946 + 2952 ], "placement": [ - 2946 + 2952 ], "rank": [ - 2946 + 2952 ], "rounds_lost": [ - 2946 + 2952 ], "rounds_won": [ - 2946 + 2952 ], "team_kdr": [ - 2946 + 2952 ], "total_deaths": [ - 2946 + 2952 ], "total_kills": [ - 2946 + 2952 ], "tournament_stage_id": [ - 2946 + 2952 ], "tournament_team_id": [ - 2946 + 2952 ], "wins": [ - 2946 + 2952 ], "__typename": [ 80 @@ -131932,7 +132523,7 @@ export default { 40 ], "team_kdr": [ - 1664 + 1670 ], "total_deaths": [ 40 @@ -131941,10 +132532,10 @@ export default { 40 ], "tournament_stage_id": [ - 4993 + 4999 ], "tournament_team_id": [ - 4993 + 4999 ], "wins": [ 40 @@ -131955,58 +132546,58 @@ export default { }, "v_team_stage_results_min_order_by": { "group_number": [ - 2946 + 2952 ], "head_to_head_match_wins": [ - 2946 + 2952 ], "head_to_head_rounds_won": [ - 2946 + 2952 ], "losses": [ - 2946 + 2952 ], "maps_lost": [ - 2946 + 2952 ], "maps_won": [ - 2946 + 2952 ], "matches_played": [ - 2946 + 2952 ], "matches_remaining": [ - 2946 + 2952 ], "placement": [ - 2946 + 2952 ], "rank": [ - 2946 + 2952 ], "rounds_lost": [ - 2946 + 2952 ], "rounds_won": [ - 2946 + 2952 ], "team_kdr": [ - 2946 + 2952 ], "total_deaths": [ - 2946 + 2952 ], "total_kills": [ - 2946 + 2952 ], "tournament_stage_id": [ - 2946 + 2952 ], "tournament_team_id": [ - 2946 + 2952 ], "wins": [ - 2946 + 2952 ], "__typename": [ 80 @@ -132017,7 +132608,7 @@ export default { 40 ], "returning": [ - 5717 + 5723 ], "__typename": [ 80 @@ -132025,10 +132616,10 @@ export default { }, "v_team_stage_results_obj_rel_insert_input": { "data": [ - 5739 + 5745 ], "on_conflict": [ - 5746 + 5752 ], "__typename": [ 80 @@ -132036,13 +132627,13 @@ export default { }, "v_team_stage_results_on_conflict": { "constraint": [ - 5737 + 5743 ], "update_columns": [ - 5769 + 5775 ], "where": [ - 5736 + 5742 ], "__typename": [ 80 @@ -132050,64 +132641,64 @@ export default { }, "v_team_stage_results_order_by": { "group_number": [ - 2946 + 2952 ], "head_to_head_match_wins": [ - 2946 + 2952 ], "head_to_head_rounds_won": [ - 2946 + 2952 ], "losses": [ - 2946 + 2952 ], "maps_lost": [ - 2946 + 2952 ], "maps_won": [ - 2946 + 2952 ], "matches_played": [ - 2946 + 2952 ], "matches_remaining": [ - 2946 + 2952 ], "placement": [ - 2946 + 2952 ], "rank": [ - 2946 + 2952 ], "rounds_lost": [ - 2946 + 2952 ], "rounds_won": [ - 2946 + 2952 ], "stage": [ - 4780 + 4786 ], "team": [ - 4907 + 4913 ], "team_kdr": [ - 2946 + 2952 ], "total_deaths": [ - 2946 + 2952 ], "total_kills": [ - 2946 + 2952 ], "tournament_stage_id": [ - 2946 + 2952 ], "tournament_team_id": [ - 2946 + 2952 ], "wins": [ - 2946 + 2952 ], "__typename": [ 80 @@ -132115,10 +132706,10 @@ export default { }, "v_team_stage_results_pk_columns_input": { "tournament_stage_id": [ - 4993 + 4999 ], "tournament_team_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -132171,7 +132762,7 @@ export default { 40 ], "team_kdr": [ - 1664 + 1670 ], "total_deaths": [ 40 @@ -132180,10 +132771,10 @@ export default { 40 ], "tournament_stage_id": [ - 4993 + 4999 ], "tournament_team_id": [ - 4993 + 4999 ], "wins": [ 40 @@ -132247,52 +132838,52 @@ export default { }, "v_team_stage_results_stddev_order_by": { "group_number": [ - 2946 + 2952 ], "head_to_head_match_wins": [ - 2946 + 2952 ], "head_to_head_rounds_won": [ - 2946 + 2952 ], "losses": [ - 2946 + 2952 ], "maps_lost": [ - 2946 + 2952 ], "maps_won": [ - 2946 + 2952 ], "matches_played": [ - 2946 + 2952 ], "matches_remaining": [ - 2946 + 2952 ], "placement": [ - 2946 + 2952 ], "rank": [ - 2946 + 2952 ], "rounds_lost": [ - 2946 + 2952 ], "rounds_won": [ - 2946 + 2952 ], "team_kdr": [ - 2946 + 2952 ], "total_deaths": [ - 2946 + 2952 ], "total_kills": [ - 2946 + 2952 ], "wins": [ - 2946 + 2952 ], "__typename": [ 80 @@ -132353,52 +132944,52 @@ export default { }, "v_team_stage_results_stddev_pop_order_by": { "group_number": [ - 2946 + 2952 ], "head_to_head_match_wins": [ - 2946 + 2952 ], "head_to_head_rounds_won": [ - 2946 + 2952 ], "losses": [ - 2946 + 2952 ], "maps_lost": [ - 2946 + 2952 ], "maps_won": [ - 2946 + 2952 ], "matches_played": [ - 2946 + 2952 ], "matches_remaining": [ - 2946 + 2952 ], "placement": [ - 2946 + 2952 ], "rank": [ - 2946 + 2952 ], "rounds_lost": [ - 2946 + 2952 ], "rounds_won": [ - 2946 + 2952 ], "team_kdr": [ - 2946 + 2952 ], "total_deaths": [ - 2946 + 2952 ], "total_kills": [ - 2946 + 2952 ], "wins": [ - 2946 + 2952 ], "__typename": [ 80 @@ -132459,52 +133050,52 @@ export default { }, "v_team_stage_results_stddev_samp_order_by": { "group_number": [ - 2946 + 2952 ], "head_to_head_match_wins": [ - 2946 + 2952 ], "head_to_head_rounds_won": [ - 2946 + 2952 ], "losses": [ - 2946 + 2952 ], "maps_lost": [ - 2946 + 2952 ], "maps_won": [ - 2946 + 2952 ], "matches_played": [ - 2946 + 2952 ], "matches_remaining": [ - 2946 + 2952 ], "placement": [ - 2946 + 2952 ], "rank": [ - 2946 + 2952 ], "rounds_lost": [ - 2946 + 2952 ], "rounds_won": [ - 2946 + 2952 ], "team_kdr": [ - 2946 + 2952 ], "total_deaths": [ - 2946 + 2952 ], "total_kills": [ - 2946 + 2952 ], "wins": [ - 2946 + 2952 ], "__typename": [ 80 @@ -132512,10 +133103,10 @@ export default { }, "v_team_stage_results_stream_cursor_input": { "initial_value": [ - 5766 + 5772 ], "ordering": [ - 308 + 314 ], "__typename": [ 80 @@ -132559,7 +133150,7 @@ export default { 40 ], "team_kdr": [ - 1664 + 1670 ], "total_deaths": [ 40 @@ -132568,10 +133159,10 @@ export default { 40 ], "tournament_stage_id": [ - 4993 + 4999 ], "tournament_team_id": [ - 4993 + 4999 ], "wins": [ 40 @@ -132618,7 +133209,7 @@ export default { 40 ], "team_kdr": [ - 1664 + 1670 ], "total_deaths": [ 40 @@ -132635,52 +133226,52 @@ export default { }, "v_team_stage_results_sum_order_by": { "group_number": [ - 2946 + 2952 ], "head_to_head_match_wins": [ - 2946 + 2952 ], "head_to_head_rounds_won": [ - 2946 + 2952 ], "losses": [ - 2946 + 2952 ], "maps_lost": [ - 2946 + 2952 ], "maps_won": [ - 2946 + 2952 ], "matches_played": [ - 2946 + 2952 ], "matches_remaining": [ - 2946 + 2952 ], "placement": [ - 2946 + 2952 ], "rank": [ - 2946 + 2952 ], "rounds_lost": [ - 2946 + 2952 ], "rounds_won": [ - 2946 + 2952 ], "team_kdr": [ - 2946 + 2952 ], "total_deaths": [ - 2946 + 2952 ], "total_kills": [ - 2946 + 2952 ], "wins": [ - 2946 + 2952 ], "__typename": [ 80 @@ -132689,13 +133280,13 @@ export default { "v_team_stage_results_update_column": {}, "v_team_stage_results_updates": { "_inc": [ - 5738 + 5744 ], "_set": [ - 5758 + 5764 ], "where": [ - 5736 + 5742 ], "__typename": [ 80 @@ -132756,52 +133347,52 @@ export default { }, "v_team_stage_results_var_pop_order_by": { "group_number": [ - 2946 + 2952 ], "head_to_head_match_wins": [ - 2946 + 2952 ], "head_to_head_rounds_won": [ - 2946 + 2952 ], "losses": [ - 2946 + 2952 ], "maps_lost": [ - 2946 + 2952 ], "maps_won": [ - 2946 + 2952 ], "matches_played": [ - 2946 + 2952 ], "matches_remaining": [ - 2946 + 2952 ], "placement": [ - 2946 + 2952 ], "rank": [ - 2946 + 2952 ], "rounds_lost": [ - 2946 + 2952 ], "rounds_won": [ - 2946 + 2952 ], "team_kdr": [ - 2946 + 2952 ], "total_deaths": [ - 2946 + 2952 ], "total_kills": [ - 2946 + 2952 ], "wins": [ - 2946 + 2952 ], "__typename": [ 80 @@ -132862,52 +133453,52 @@ export default { }, "v_team_stage_results_var_samp_order_by": { "group_number": [ - 2946 + 2952 ], "head_to_head_match_wins": [ - 2946 + 2952 ], "head_to_head_rounds_won": [ - 2946 + 2952 ], "losses": [ - 2946 + 2952 ], "maps_lost": [ - 2946 + 2952 ], "maps_won": [ - 2946 + 2952 ], "matches_played": [ - 2946 + 2952 ], "matches_remaining": [ - 2946 + 2952 ], "placement": [ - 2946 + 2952 ], "rank": [ - 2946 + 2952 ], "rounds_lost": [ - 2946 + 2952 ], "rounds_won": [ - 2946 + 2952 ], "team_kdr": [ - 2946 + 2952 ], "total_deaths": [ - 2946 + 2952 ], "total_kills": [ - 2946 + 2952 ], "wins": [ - 2946 + 2952 ], "__typename": [ 80 @@ -132968,52 +133559,52 @@ export default { }, "v_team_stage_results_variance_order_by": { "group_number": [ - 2946 + 2952 ], "head_to_head_match_wins": [ - 2946 + 2952 ], "head_to_head_rounds_won": [ - 2946 + 2952 ], "losses": [ - 2946 + 2952 ], "maps_lost": [ - 2946 + 2952 ], "maps_won": [ - 2946 + 2952 ], "matches_played": [ - 2946 + 2952 ], "matches_remaining": [ - 2946 + 2952 ], "placement": [ - 2946 + 2952 ], "rank": [ - 2946 + 2952 ], "rounds_lost": [ - 2946 + 2952 ], "rounds_won": [ - 2946 + 2952 ], "team_kdr": [ - 2946 + 2952 ], "total_deaths": [ - 2946 + 2952 ], "total_kills": [ - 2946 + 2952 ], "wins": [ - 2946 + 2952 ], "__typename": [ 80 @@ -133048,10 +133639,10 @@ export default { 40 ], "team": [ - 4887 + 4893 ], "team_kdr": [ - 1664 + 1670 ], "total_deaths": [ 40 @@ -133060,13 +133651,13 @@ export default { 40 ], "tournament": [ - 4929 + 4935 ], "tournament_id": [ - 4993 + 4999 ], "tournament_team_id": [ - 4993 + 4999 ], "wins": [ 40 @@ -133077,10 +133668,10 @@ export default { }, "v_team_tournament_results_aggregate": { "aggregate": [ - 5791 + 5797 ], "nodes": [ - 5777 + 5783 ], "__typename": [ 80 @@ -133088,31 +133679,31 @@ export default { }, "v_team_tournament_results_aggregate_bool_exp": { "avg": [ - 5780 + 5786 ], "corr": [ - 5781 + 5787 ], "count": [ - 5783 + 5789 ], "covar_samp": [ - 5784 + 5790 ], "max": [ - 5786 + 5792 ], "min": [ - 5787 + 5793 ], "stddev_samp": [ - 5788 + 5794 ], "sum": [ - 5789 + 5795 ], "var_samp": [ - 5790 + 5796 ], "__typename": [ 80 @@ -133120,16 +133711,16 @@ export default { }, "v_team_tournament_results_aggregate_bool_exp_avg": { "arguments": [ - 5804 + 5810 ], "distinct": [ 5 ], "filter": [ - 5796 + 5802 ], "predicate": [ - 1665 + 1671 ], "__typename": [ 80 @@ -133137,16 +133728,16 @@ export default { }, "v_team_tournament_results_aggregate_bool_exp_corr": { "arguments": [ - 5782 + 5788 ], "distinct": [ 5 ], "filter": [ - 5796 + 5802 ], "predicate": [ - 1665 + 1671 ], "__typename": [ 80 @@ -133154,10 +133745,10 @@ export default { }, "v_team_tournament_results_aggregate_bool_exp_corr_arguments": { "X": [ - 5805 + 5811 ], "Y": [ - 5805 + 5811 ], "__typename": [ 80 @@ -133165,13 +133756,13 @@ export default { }, "v_team_tournament_results_aggregate_bool_exp_count": { "arguments": [ - 5803 + 5809 ], "distinct": [ 5 ], "filter": [ - 5796 + 5802 ], "predicate": [ 41 @@ -133182,16 +133773,16 @@ export default { }, "v_team_tournament_results_aggregate_bool_exp_covar_samp": { "arguments": [ - 5785 + 5791 ], "distinct": [ 5 ], "filter": [ - 5796 + 5802 ], "predicate": [ - 1665 + 1671 ], "__typename": [ 80 @@ -133199,10 +133790,10 @@ export default { }, "v_team_tournament_results_aggregate_bool_exp_covar_samp_arguments": { "X": [ - 5806 + 5812 ], "Y": [ - 5806 + 5812 ], "__typename": [ 80 @@ -133210,16 +133801,16 @@ export default { }, "v_team_tournament_results_aggregate_bool_exp_max": { "arguments": [ - 5807 + 5813 ], "distinct": [ 5 ], "filter": [ - 5796 + 5802 ], "predicate": [ - 1665 + 1671 ], "__typename": [ 80 @@ -133227,16 +133818,16 @@ export default { }, "v_team_tournament_results_aggregate_bool_exp_min": { "arguments": [ - 5808 + 5814 ], "distinct": [ 5 ], "filter": [ - 5796 + 5802 ], "predicate": [ - 1665 + 1671 ], "__typename": [ 80 @@ -133244,16 +133835,16 @@ export default { }, "v_team_tournament_results_aggregate_bool_exp_stddev_samp": { "arguments": [ - 5809 + 5815 ], "distinct": [ 5 ], "filter": [ - 5796 + 5802 ], "predicate": [ - 1665 + 1671 ], "__typename": [ 80 @@ -133261,16 +133852,16 @@ export default { }, "v_team_tournament_results_aggregate_bool_exp_sum": { "arguments": [ - 5810 + 5816 ], "distinct": [ 5 ], "filter": [ - 5796 + 5802 ], "predicate": [ - 1665 + 1671 ], "__typename": [ 80 @@ -133278,16 +133869,16 @@ export default { }, "v_team_tournament_results_aggregate_bool_exp_var_samp": { "arguments": [ - 5811 + 5817 ], "distinct": [ 5 ], "filter": [ - 5796 + 5802 ], "predicate": [ - 1665 + 1671 ], "__typename": [ 80 @@ -133295,13 +133886,13 @@ export default { }, "v_team_tournament_results_aggregate_fields": { "avg": [ - 5794 + 5800 ], "count": [ 40, { "columns": [ - 5803, + 5809, "[v_team_tournament_results_select_column!]" ], "distinct": [ @@ -133310,31 +133901,31 @@ export default { } ], "max": [ - 5798 + 5804 ], "min": [ - 5800 + 5806 ], "stddev": [ - 5812 + 5818 ], "stddev_pop": [ - 5814 + 5820 ], "stddev_samp": [ - 5816 + 5822 ], "sum": [ - 5820 + 5826 ], "var_pop": [ - 5822 + 5828 ], "var_samp": [ - 5824 + 5830 ], "variance": [ - 5826 + 5832 ], "__typename": [ 80 @@ -133342,37 +133933,37 @@ export default { }, "v_team_tournament_results_aggregate_order_by": { "avg": [ - 5795 + 5801 ], "count": [ - 2946 + 2952 ], "max": [ - 5799 + 5805 ], "min": [ - 5801 + 5807 ], "stddev": [ - 5813 + 5819 ], "stddev_pop": [ - 5815 + 5821 ], "stddev_samp": [ - 5817 + 5823 ], "sum": [ - 5821 + 5827 ], "var_pop": [ - 5823 + 5829 ], "var_samp": [ - 5825 + 5831 ], "variance": [ - 5827 + 5833 ], "__typename": [ 80 @@ -133380,7 +133971,7 @@ export default { }, "v_team_tournament_results_arr_rel_insert_input": { "data": [ - 5797 + 5803 ], "__typename": [ 80 @@ -133432,43 +134023,43 @@ export default { }, "v_team_tournament_results_avg_order_by": { "head_to_head_match_wins": [ - 2946 + 2952 ], "head_to_head_rounds_won": [ - 2946 + 2952 ], "losses": [ - 2946 + 2952 ], "maps_lost": [ - 2946 + 2952 ], "maps_won": [ - 2946 + 2952 ], "matches_played": [ - 2946 + 2952 ], "matches_remaining": [ - 2946 + 2952 ], "rounds_lost": [ - 2946 + 2952 ], "rounds_won": [ - 2946 + 2952 ], "team_kdr": [ - 2946 + 2952 ], "total_deaths": [ - 2946 + 2952 ], "total_kills": [ - 2946 + 2952 ], "wins": [ - 2946 + 2952 ], "__typename": [ 80 @@ -133476,13 +134067,13 @@ export default { }, "v_team_tournament_results_bool_exp": { "_and": [ - 5796 + 5802 ], "_not": [ - 5796 + 5802 ], "_or": [ - 5796 + 5802 ], "head_to_head_match_wins": [ 41 @@ -133512,10 +134103,10 @@ export default { 41 ], "team": [ - 4896 + 4902 ], "team_kdr": [ - 1665 + 1671 ], "total_deaths": [ 41 @@ -133524,13 +134115,13 @@ export default { 41 ], "tournament": [ - 4950 + 4956 ], "tournament_id": [ - 4995 + 5001 ], "tournament_team_id": [ - 4995 + 5001 ], "wins": [ 41 @@ -133568,10 +134159,10 @@ export default { 40 ], "team": [ - 4905 + 4911 ], "team_kdr": [ - 1664 + 1670 ], "total_deaths": [ 40 @@ -133580,13 +134171,13 @@ export default { 40 ], "tournament": [ - 4959 + 4965 ], "tournament_id": [ - 4993 + 4999 ], "tournament_team_id": [ - 4993 + 4999 ], "wins": [ 40 @@ -133624,7 +134215,7 @@ export default { 40 ], "team_kdr": [ - 1664 + 1670 ], "total_deaths": [ 40 @@ -133633,10 +134224,10 @@ export default { 40 ], "tournament_id": [ - 4993 + 4999 ], "tournament_team_id": [ - 4993 + 4999 ], "wins": [ 40 @@ -133647,49 +134238,49 @@ export default { }, "v_team_tournament_results_max_order_by": { "head_to_head_match_wins": [ - 2946 + 2952 ], "head_to_head_rounds_won": [ - 2946 + 2952 ], "losses": [ - 2946 + 2952 ], "maps_lost": [ - 2946 + 2952 ], "maps_won": [ - 2946 + 2952 ], "matches_played": [ - 2946 + 2952 ], "matches_remaining": [ - 2946 + 2952 ], "rounds_lost": [ - 2946 + 2952 ], "rounds_won": [ - 2946 + 2952 ], "team_kdr": [ - 2946 + 2952 ], "total_deaths": [ - 2946 + 2952 ], "total_kills": [ - 2946 + 2952 ], "tournament_id": [ - 2946 + 2952 ], "tournament_team_id": [ - 2946 + 2952 ], "wins": [ - 2946 + 2952 ], "__typename": [ 80 @@ -133724,7 +134315,7 @@ export default { 40 ], "team_kdr": [ - 1664 + 1670 ], "total_deaths": [ 40 @@ -133733,10 +134324,10 @@ export default { 40 ], "tournament_id": [ - 4993 + 4999 ], "tournament_team_id": [ - 4993 + 4999 ], "wins": [ 40 @@ -133747,49 +134338,49 @@ export default { }, "v_team_tournament_results_min_order_by": { "head_to_head_match_wins": [ - 2946 + 2952 ], "head_to_head_rounds_won": [ - 2946 + 2952 ], "losses": [ - 2946 + 2952 ], "maps_lost": [ - 2946 + 2952 ], "maps_won": [ - 2946 + 2952 ], "matches_played": [ - 2946 + 2952 ], "matches_remaining": [ - 2946 + 2952 ], "rounds_lost": [ - 2946 + 2952 ], "rounds_won": [ - 2946 + 2952 ], "team_kdr": [ - 2946 + 2952 ], "total_deaths": [ - 2946 + 2952 ], "total_kills": [ - 2946 + 2952 ], "tournament_id": [ - 2946 + 2952 ], "tournament_team_id": [ - 2946 + 2952 ], "wins": [ - 2946 + 2952 ], "__typename": [ 80 @@ -133797,55 +134388,55 @@ export default { }, "v_team_tournament_results_order_by": { "head_to_head_match_wins": [ - 2946 + 2952 ], "head_to_head_rounds_won": [ - 2946 + 2952 ], "losses": [ - 2946 + 2952 ], "maps_lost": [ - 2946 + 2952 ], "maps_won": [ - 2946 + 2952 ], "matches_played": [ - 2946 + 2952 ], "matches_remaining": [ - 2946 + 2952 ], "rounds_lost": [ - 2946 + 2952 ], "rounds_won": [ - 2946 + 2952 ], "team": [ - 4907 + 4913 ], "team_kdr": [ - 2946 + 2952 ], "total_deaths": [ - 2946 + 2952 ], "total_kills": [ - 2946 + 2952 ], "tournament": [ - 4961 + 4967 ], "tournament_id": [ - 2946 + 2952 ], "tournament_team_id": [ - 2946 + 2952 ], "wins": [ - 2946 + 2952 ], "__typename": [ 80 @@ -133906,43 +134497,43 @@ export default { }, "v_team_tournament_results_stddev_order_by": { "head_to_head_match_wins": [ - 2946 + 2952 ], "head_to_head_rounds_won": [ - 2946 + 2952 ], "losses": [ - 2946 + 2952 ], "maps_lost": [ - 2946 + 2952 ], "maps_won": [ - 2946 + 2952 ], "matches_played": [ - 2946 + 2952 ], "matches_remaining": [ - 2946 + 2952 ], "rounds_lost": [ - 2946 + 2952 ], "rounds_won": [ - 2946 + 2952 ], "team_kdr": [ - 2946 + 2952 ], "total_deaths": [ - 2946 + 2952 ], "total_kills": [ - 2946 + 2952 ], "wins": [ - 2946 + 2952 ], "__typename": [ 80 @@ -133994,43 +134585,43 @@ export default { }, "v_team_tournament_results_stddev_pop_order_by": { "head_to_head_match_wins": [ - 2946 + 2952 ], "head_to_head_rounds_won": [ - 2946 + 2952 ], "losses": [ - 2946 + 2952 ], "maps_lost": [ - 2946 + 2952 ], "maps_won": [ - 2946 + 2952 ], "matches_played": [ - 2946 + 2952 ], "matches_remaining": [ - 2946 + 2952 ], "rounds_lost": [ - 2946 + 2952 ], "rounds_won": [ - 2946 + 2952 ], "team_kdr": [ - 2946 + 2952 ], "total_deaths": [ - 2946 + 2952 ], "total_kills": [ - 2946 + 2952 ], "wins": [ - 2946 + 2952 ], "__typename": [ 80 @@ -134082,43 +134673,43 @@ export default { }, "v_team_tournament_results_stddev_samp_order_by": { "head_to_head_match_wins": [ - 2946 + 2952 ], "head_to_head_rounds_won": [ - 2946 + 2952 ], "losses": [ - 2946 + 2952 ], "maps_lost": [ - 2946 + 2952 ], "maps_won": [ - 2946 + 2952 ], "matches_played": [ - 2946 + 2952 ], "matches_remaining": [ - 2946 + 2952 ], "rounds_lost": [ - 2946 + 2952 ], "rounds_won": [ - 2946 + 2952 ], "team_kdr": [ - 2946 + 2952 ], "total_deaths": [ - 2946 + 2952 ], "total_kills": [ - 2946 + 2952 ], "wins": [ - 2946 + 2952 ], "__typename": [ 80 @@ -134126,10 +134717,10 @@ export default { }, "v_team_tournament_results_stream_cursor_input": { "initial_value": [ - 5819 + 5825 ], "ordering": [ - 308 + 314 ], "__typename": [ 80 @@ -134164,7 +134755,7 @@ export default { 40 ], "team_kdr": [ - 1664 + 1670 ], "total_deaths": [ 40 @@ -134173,10 +134764,10 @@ export default { 40 ], "tournament_id": [ - 4993 + 4999 ], "tournament_team_id": [ - 4993 + 4999 ], "wins": [ 40 @@ -134214,7 +134805,7 @@ export default { 40 ], "team_kdr": [ - 1664 + 1670 ], "total_deaths": [ 40 @@ -134231,43 +134822,43 @@ export default { }, "v_team_tournament_results_sum_order_by": { "head_to_head_match_wins": [ - 2946 + 2952 ], "head_to_head_rounds_won": [ - 2946 + 2952 ], "losses": [ - 2946 + 2952 ], "maps_lost": [ - 2946 + 2952 ], "maps_won": [ - 2946 + 2952 ], "matches_played": [ - 2946 + 2952 ], "matches_remaining": [ - 2946 + 2952 ], "rounds_lost": [ - 2946 + 2952 ], "rounds_won": [ - 2946 + 2952 ], "team_kdr": [ - 2946 + 2952 ], "total_deaths": [ - 2946 + 2952 ], "total_kills": [ - 2946 + 2952 ], "wins": [ - 2946 + 2952 ], "__typename": [ 80 @@ -134319,43 +134910,43 @@ export default { }, "v_team_tournament_results_var_pop_order_by": { "head_to_head_match_wins": [ - 2946 + 2952 ], "head_to_head_rounds_won": [ - 2946 + 2952 ], "losses": [ - 2946 + 2952 ], "maps_lost": [ - 2946 + 2952 ], "maps_won": [ - 2946 + 2952 ], "matches_played": [ - 2946 + 2952 ], "matches_remaining": [ - 2946 + 2952 ], "rounds_lost": [ - 2946 + 2952 ], "rounds_won": [ - 2946 + 2952 ], "team_kdr": [ - 2946 + 2952 ], "total_deaths": [ - 2946 + 2952 ], "total_kills": [ - 2946 + 2952 ], "wins": [ - 2946 + 2952 ], "__typename": [ 80 @@ -134407,43 +134998,43 @@ export default { }, "v_team_tournament_results_var_samp_order_by": { "head_to_head_match_wins": [ - 2946 + 2952 ], "head_to_head_rounds_won": [ - 2946 + 2952 ], "losses": [ - 2946 + 2952 ], "maps_lost": [ - 2946 + 2952 ], "maps_won": [ - 2946 + 2952 ], "matches_played": [ - 2946 + 2952 ], "matches_remaining": [ - 2946 + 2952 ], "rounds_lost": [ - 2946 + 2952 ], "rounds_won": [ - 2946 + 2952 ], "team_kdr": [ - 2946 + 2952 ], "total_deaths": [ - 2946 + 2952 ], "total_kills": [ - 2946 + 2952 ], "wins": [ - 2946 + 2952 ], "__typename": [ 80 @@ -134495,43 +135086,43 @@ export default { }, "v_team_tournament_results_variance_order_by": { "head_to_head_match_wins": [ - 2946 + 2952 ], "head_to_head_rounds_won": [ - 2946 + 2952 ], "losses": [ - 2946 + 2952 ], "maps_lost": [ - 2946 + 2952 ], "maps_won": [ - 2946 + 2952 ], "matches_played": [ - 2946 + 2952 ], "matches_remaining": [ - 2946 + 2952 ], "rounds_lost": [ - 2946 + 2952 ], "rounds_won": [ - 2946 + 2952 ], "team_kdr": [ - 2946 + 2952 ], "total_deaths": [ - 2946 + 2952 ], "total_kills": [ - 2946 + 2952 ], "wins": [ - 2946 + 2952 ], "__typename": [ 80 @@ -134545,13 +135136,13 @@ export default { 40 ], "headshot_percentage": [ - 1664 + 1670 ], "headshots": [ 40 ], "kdr": [ - 1664 + 1670 ], "kills": [ 40 @@ -134560,16 +135151,16 @@ export default { 40 ], "player": [ - 3904 + 3910 ], "player_steam_id": [ - 252 + 258 ], "tournament": [ - 4929 + 4935 ], "tournament_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -134577,10 +135168,10 @@ export default { }, "v_tournament_player_stats_aggregate": { "aggregate": [ - 5842 + 5848 ], "nodes": [ - 5828 + 5834 ], "__typename": [ 80 @@ -134588,31 +135179,31 @@ export default { }, "v_tournament_player_stats_aggregate_bool_exp": { "avg": [ - 5831 + 5837 ], "corr": [ - 5832 + 5838 ], "count": [ - 5834 + 5840 ], "covar_samp": [ - 5835 + 5841 ], "max": [ - 5837 + 5843 ], "min": [ - 5838 + 5844 ], "stddev_samp": [ - 5839 + 5845 ], "sum": [ - 5840 + 5846 ], "var_samp": [ - 5841 + 5847 ], "__typename": [ 80 @@ -134620,16 +135211,16 @@ export default { }, "v_tournament_player_stats_aggregate_bool_exp_avg": { "arguments": [ - 5855 + 5861 ], "distinct": [ 5 ], "filter": [ - 5847 + 5853 ], "predicate": [ - 1665 + 1671 ], "__typename": [ 80 @@ -134637,16 +135228,16 @@ export default { }, "v_tournament_player_stats_aggregate_bool_exp_corr": { "arguments": [ - 5833 + 5839 ], "distinct": [ 5 ], "filter": [ - 5847 + 5853 ], "predicate": [ - 1665 + 1671 ], "__typename": [ 80 @@ -134654,10 +135245,10 @@ export default { }, "v_tournament_player_stats_aggregate_bool_exp_corr_arguments": { "X": [ - 5856 + 5862 ], "Y": [ - 5856 + 5862 ], "__typename": [ 80 @@ -134665,13 +135256,13 @@ export default { }, "v_tournament_player_stats_aggregate_bool_exp_count": { "arguments": [ - 5854 + 5860 ], "distinct": [ 5 ], "filter": [ - 5847 + 5853 ], "predicate": [ 41 @@ -134682,16 +135273,16 @@ export default { }, "v_tournament_player_stats_aggregate_bool_exp_covar_samp": { "arguments": [ - 5836 + 5842 ], "distinct": [ 5 ], "filter": [ - 5847 + 5853 ], "predicate": [ - 1665 + 1671 ], "__typename": [ 80 @@ -134699,10 +135290,10 @@ export default { }, "v_tournament_player_stats_aggregate_bool_exp_covar_samp_arguments": { "X": [ - 5857 + 5863 ], "Y": [ - 5857 + 5863 ], "__typename": [ 80 @@ -134710,16 +135301,16 @@ export default { }, "v_tournament_player_stats_aggregate_bool_exp_max": { "arguments": [ - 5858 + 5864 ], "distinct": [ 5 ], "filter": [ - 5847 + 5853 ], "predicate": [ - 1665 + 1671 ], "__typename": [ 80 @@ -134727,16 +135318,16 @@ export default { }, "v_tournament_player_stats_aggregate_bool_exp_min": { "arguments": [ - 5859 + 5865 ], "distinct": [ 5 ], "filter": [ - 5847 + 5853 ], "predicate": [ - 1665 + 1671 ], "__typename": [ 80 @@ -134744,16 +135335,16 @@ export default { }, "v_tournament_player_stats_aggregate_bool_exp_stddev_samp": { "arguments": [ - 5860 + 5866 ], "distinct": [ 5 ], "filter": [ - 5847 + 5853 ], "predicate": [ - 1665 + 1671 ], "__typename": [ 80 @@ -134761,16 +135352,16 @@ export default { }, "v_tournament_player_stats_aggregate_bool_exp_sum": { "arguments": [ - 5861 + 5867 ], "distinct": [ 5 ], "filter": [ - 5847 + 5853 ], "predicate": [ - 1665 + 1671 ], "__typename": [ 80 @@ -134778,16 +135369,16 @@ export default { }, "v_tournament_player_stats_aggregate_bool_exp_var_samp": { "arguments": [ - 5862 + 5868 ], "distinct": [ 5 ], "filter": [ - 5847 + 5853 ], "predicate": [ - 1665 + 1671 ], "__typename": [ 80 @@ -134795,13 +135386,13 @@ export default { }, "v_tournament_player_stats_aggregate_fields": { "avg": [ - 5845 + 5851 ], "count": [ 40, { "columns": [ - 5854, + 5860, "[v_tournament_player_stats_select_column!]" ], "distinct": [ @@ -134810,31 +135401,31 @@ export default { } ], "max": [ - 5849 + 5855 ], "min": [ - 5851 + 5857 ], "stddev": [ - 5863 + 5869 ], "stddev_pop": [ - 5865 + 5871 ], "stddev_samp": [ - 5867 + 5873 ], "sum": [ - 5871 + 5877 ], "var_pop": [ - 5873 + 5879 ], "var_samp": [ - 5875 + 5881 ], "variance": [ - 5877 + 5883 ], "__typename": [ 80 @@ -134842,37 +135433,37 @@ export default { }, "v_tournament_player_stats_aggregate_order_by": { "avg": [ - 5846 + 5852 ], "count": [ - 2946 + 2952 ], "max": [ - 5850 + 5856 ], "min": [ - 5852 + 5858 ], "stddev": [ - 5864 + 5870 ], "stddev_pop": [ - 5866 + 5872 ], "stddev_samp": [ - 5868 + 5874 ], "sum": [ - 5872 + 5878 ], "var_pop": [ - 5874 + 5880 ], "var_samp": [ - 5876 + 5882 ], "variance": [ - 5878 + 5884 ], "__typename": [ 80 @@ -134880,7 +135471,7 @@ export default { }, "v_tournament_player_stats_arr_rel_insert_input": { "data": [ - 5848 + 5854 ], "__typename": [ 80 @@ -134917,28 +135508,28 @@ export default { }, "v_tournament_player_stats_avg_order_by": { "assists": [ - 2946 + 2952 ], "deaths": [ - 2946 + 2952 ], "headshot_percentage": [ - 2946 + 2952 ], "headshots": [ - 2946 + 2952 ], "kdr": [ - 2946 + 2952 ], "kills": [ - 2946 + 2952 ], "matches_played": [ - 2946 + 2952 ], "player_steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -134946,13 +135537,13 @@ export default { }, "v_tournament_player_stats_bool_exp": { "_and": [ - 5847 + 5853 ], "_not": [ - 5847 + 5853 ], "_or": [ - 5847 + 5853 ], "assists": [ 41 @@ -134961,13 +135552,13 @@ export default { 41 ], "headshot_percentage": [ - 1665 + 1671 ], "headshots": [ 41 ], "kdr": [ - 1665 + 1671 ], "kills": [ 41 @@ -134976,16 +135567,16 @@ export default { 41 ], "player": [ - 3908 + 3914 ], "player_steam_id": [ - 254 + 260 ], "tournament": [ - 4950 + 4956 ], "tournament_id": [ - 4995 + 5001 ], "__typename": [ 80 @@ -134999,13 +135590,13 @@ export default { 40 ], "headshot_percentage": [ - 1664 + 1670 ], "headshots": [ 40 ], "kdr": [ - 1664 + 1670 ], "kills": [ 40 @@ -135014,16 +135605,16 @@ export default { 40 ], "player": [ - 3915 + 3921 ], "player_steam_id": [ - 252 + 258 ], "tournament": [ - 4959 + 4965 ], "tournament_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -135037,13 +135628,13 @@ export default { 40 ], "headshot_percentage": [ - 1664 + 1670 ], "headshots": [ 40 ], "kdr": [ - 1664 + 1670 ], "kills": [ 40 @@ -135052,10 +135643,10 @@ export default { 40 ], "player_steam_id": [ - 252 + 258 ], "tournament_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -135063,31 +135654,31 @@ export default { }, "v_tournament_player_stats_max_order_by": { "assists": [ - 2946 + 2952 ], "deaths": [ - 2946 + 2952 ], "headshot_percentage": [ - 2946 + 2952 ], "headshots": [ - 2946 + 2952 ], "kdr": [ - 2946 + 2952 ], "kills": [ - 2946 + 2952 ], "matches_played": [ - 2946 + 2952 ], "player_steam_id": [ - 2946 + 2952 ], "tournament_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -135101,13 +135692,13 @@ export default { 40 ], "headshot_percentage": [ - 1664 + 1670 ], "headshots": [ 40 ], "kdr": [ - 1664 + 1670 ], "kills": [ 40 @@ -135116,10 +135707,10 @@ export default { 40 ], "player_steam_id": [ - 252 + 258 ], "tournament_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -135127,31 +135718,31 @@ export default { }, "v_tournament_player_stats_min_order_by": { "assists": [ - 2946 + 2952 ], "deaths": [ - 2946 + 2952 ], "headshot_percentage": [ - 2946 + 2952 ], "headshots": [ - 2946 + 2952 ], "kdr": [ - 2946 + 2952 ], "kills": [ - 2946 + 2952 ], "matches_played": [ - 2946 + 2952 ], "player_steam_id": [ - 2946 + 2952 ], "tournament_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -135159,37 +135750,37 @@ export default { }, "v_tournament_player_stats_order_by": { "assists": [ - 2946 + 2952 ], "deaths": [ - 2946 + 2952 ], "headshot_percentage": [ - 2946 + 2952 ], "headshots": [ - 2946 + 2952 ], "kdr": [ - 2946 + 2952 ], "kills": [ - 2946 + 2952 ], "matches_played": [ - 2946 + 2952 ], "player": [ - 3917 + 3923 ], "player_steam_id": [ - 2946 + 2952 ], "tournament": [ - 4961 + 4967 ], "tournament_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -135235,28 +135826,28 @@ export default { }, "v_tournament_player_stats_stddev_order_by": { "assists": [ - 2946 + 2952 ], "deaths": [ - 2946 + 2952 ], "headshot_percentage": [ - 2946 + 2952 ], "headshots": [ - 2946 + 2952 ], "kdr": [ - 2946 + 2952 ], "kills": [ - 2946 + 2952 ], "matches_played": [ - 2946 + 2952 ], "player_steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -135293,28 +135884,28 @@ export default { }, "v_tournament_player_stats_stddev_pop_order_by": { "assists": [ - 2946 + 2952 ], "deaths": [ - 2946 + 2952 ], "headshot_percentage": [ - 2946 + 2952 ], "headshots": [ - 2946 + 2952 ], "kdr": [ - 2946 + 2952 ], "kills": [ - 2946 + 2952 ], "matches_played": [ - 2946 + 2952 ], "player_steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -135351,28 +135942,28 @@ export default { }, "v_tournament_player_stats_stddev_samp_order_by": { "assists": [ - 2946 + 2952 ], "deaths": [ - 2946 + 2952 ], "headshot_percentage": [ - 2946 + 2952 ], "headshots": [ - 2946 + 2952 ], "kdr": [ - 2946 + 2952 ], "kills": [ - 2946 + 2952 ], "matches_played": [ - 2946 + 2952 ], "player_steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -135380,10 +135971,10 @@ export default { }, "v_tournament_player_stats_stream_cursor_input": { "initial_value": [ - 5870 + 5876 ], "ordering": [ - 308 + 314 ], "__typename": [ 80 @@ -135397,13 +135988,13 @@ export default { 40 ], "headshot_percentage": [ - 1664 + 1670 ], "headshots": [ 40 ], "kdr": [ - 1664 + 1670 ], "kills": [ 40 @@ -135412,10 +136003,10 @@ export default { 40 ], "player_steam_id": [ - 252 + 258 ], "tournament_id": [ - 4993 + 4999 ], "__typename": [ 80 @@ -135429,13 +136020,13 @@ export default { 40 ], "headshot_percentage": [ - 1664 + 1670 ], "headshots": [ 40 ], "kdr": [ - 1664 + 1670 ], "kills": [ 40 @@ -135444,7 +136035,7 @@ export default { 40 ], "player_steam_id": [ - 252 + 258 ], "__typename": [ 80 @@ -135452,28 +136043,28 @@ export default { }, "v_tournament_player_stats_sum_order_by": { "assists": [ - 2946 + 2952 ], "deaths": [ - 2946 + 2952 ], "headshot_percentage": [ - 2946 + 2952 ], "headshots": [ - 2946 + 2952 ], "kdr": [ - 2946 + 2952 ], "kills": [ - 2946 + 2952 ], "matches_played": [ - 2946 + 2952 ], "player_steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -135510,28 +136101,28 @@ export default { }, "v_tournament_player_stats_var_pop_order_by": { "assists": [ - 2946 + 2952 ], "deaths": [ - 2946 + 2952 ], "headshot_percentage": [ - 2946 + 2952 ], "headshots": [ - 2946 + 2952 ], "kdr": [ - 2946 + 2952 ], "kills": [ - 2946 + 2952 ], "matches_played": [ - 2946 + 2952 ], "player_steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -135568,28 +136159,28 @@ export default { }, "v_tournament_player_stats_var_samp_order_by": { "assists": [ - 2946 + 2952 ], "deaths": [ - 2946 + 2952 ], "headshot_percentage": [ - 2946 + 2952 ], "headshots": [ - 2946 + 2952 ], "kdr": [ - 2946 + 2952 ], "kills": [ - 2946 + 2952 ], "matches_played": [ - 2946 + 2952 ], "player_steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -135626,28 +136217,28 @@ export default { }, "v_tournament_player_stats_variance_order_by": { "assists": [ - 2946 + 2952 ], "deaths": [ - 2946 + 2952 ], "headshot_percentage": [ - 2946 + 2952 ], "headshots": [ - 2946 + 2952 ], "kdr": [ - 2946 + 2952 ], "kills": [ - 2946 + 2952 ], "matches_played": [ - 2946 + 2952 ], "player_steam_id": [ - 2946 + 2952 ], "__typename": [ 80 @@ -135655,10 +136246,10 @@ export default { }, "Query": { "_map_pool": [ - 95, + 101, { "distinct_on": [ - 107, + 113, "[_map_pool_select_column!]" ], "limit": [ @@ -135668,19 +136259,19 @@ export default { 40 ], "order_by": [ - 105, + 111, "[_map_pool_order_by!]" ], "where": [ - 98 + 104 ] } ], "_map_pool_aggregate": [ - 96, + 102, { "distinct_on": [ - 107, + 113, "[_map_pool_select_column!]" ], "limit": [ @@ -135690,32 +136281,32 @@ export default { 40 ], "order_by": [ - 105, + 111, "[_map_pool_order_by!]" ], "where": [ - 98 + 104 ] } ], "_map_pool_by_pk": [ - 95, + 101, { "map_id": [ - 4993, + 4999, "uuid!" ], "map_pool_id": [ - 4993, + 4999, "uuid!" ] } ], "abandoned_matches": [ - 114, + 120, { "distinct_on": [ - 135, + 141, "[abandoned_matches_select_column!]" ], "limit": [ @@ -135725,19 +136316,19 @@ export default { 40 ], "order_by": [ - 133, + 139, "[abandoned_matches_order_by!]" ], "where": [ - 123 + 129 ] } ], "abandoned_matches_aggregate": [ - 115, + 121, { "distinct_on": [ - 135, + 141, "[abandoned_matches_select_column!]" ], "limit": [ @@ -135747,28 +136338,28 @@ export default { 40 ], "order_by": [ - 133, + 139, "[abandoned_matches_order_by!]" ], "where": [ - 123 + 129 ] } ], "abandoned_matches_by_pk": [ - 114, + 120, { "id": [ - 4993, + 4999, "uuid!" ] } ], "api_keys": [ - 155, + 161, { "distinct_on": [ - 169, + 175, "[api_keys_select_column!]" ], "limit": [ @@ -135778,19 +136369,19 @@ export default { 40 ], "order_by": [ - 167, + 173, "[api_keys_order_by!]" ], "where": [ - 159 + 165 ] } ], "api_keys_aggregate": [ - 156, + 162, { "distinct_on": [ - 169, + 175, "[api_keys_select_column!]" ], "limit": [ @@ -135800,28 +136391,28 @@ export default { 40 ], "order_by": [ - 167, + 173, "[api_keys_order_by!]" ], "where": [ - 159 + 165 ] } ], "api_keys_by_pk": [ - 155, + 161, { "id": [ - 4993, + 4999, "uuid!" ] } ], "award_recipients": [ - 183, + 189, { "distinct_on": [ - 204, + 210, "[award_recipients_select_column!]" ], "limit": [ @@ -135831,19 +136422,19 @@ export default { 40 ], "order_by": [ - 202, + 208, "[award_recipients_order_by!]" ], "where": [ - 192 + 198 ] } ], "award_recipients_aggregate": [ - 184, + 190, { "distinct_on": [ - 204, + 210, "[award_recipients_select_column!]" ], "limit": [ @@ -135853,28 +136444,28 @@ export default { 40 ], "order_by": [ - 202, + 208, "[award_recipients_order_by!]" ], "where": [ - 192 + 198 ] } ], "award_recipients_by_pk": [ - 183, + 189, { "id": [ - 4993, + 4999, "uuid!" ] } ], "awards": [ - 224, + 230, { "distinct_on": [ - 239, + 245, "[awards_select_column!]" ], "limit": [ @@ -135884,19 +136475,19 @@ export default { 40 ], "order_by": [ - 237, + 243, "[awards_order_by!]" ], "where": [ - 228 + 234 ] } ], "awards_aggregate": [ - 225, + 231, { "distinct_on": [ - 239, + 245, "[awards_select_column!]" ], "limit": [ @@ -135906,28 +136497,28 @@ export default { 40 ], "order_by": [ - 237, + 243, "[awards_order_by!]" ], "where": [ - 228 + 234 ] } ], "awards_by_pk": [ - 224, + 230, { "id": [ - 4993, + 4999, "uuid!" ] } ], "clip_render_jobs": [ - 257, + 263, { "distinct_on": [ - 285, + 291, "[clip_render_jobs_select_column!]" ], "limit": [ @@ -135937,19 +136528,19 @@ export default { 40 ], "order_by": [ - 282, + 288, "[clip_render_jobs_order_by!]" ], "where": [ - 269 + 275 ] } ], "clip_render_jobs_aggregate": [ - 258, + 264, { "distinct_on": [ - 285, + 291, "[clip_render_jobs_select_column!]" ], "limit": [ @@ -135959,28 +136550,28 @@ export default { 40 ], "order_by": [ - 282, + 288, "[clip_render_jobs_order_by!]" ], "where": [ - 269 + 275 ] } ], "clip_render_jobs_by_pk": [ - 257, + 263, { "id": [ - 4993, + 4999, "uuid!" ] } ], "custom_pages": [ - 309, + 315, { "distinct_on": [ - 328, + 334, "[custom_pages_select_column!]" ], "limit": [ @@ -135990,19 +136581,19 @@ export default { 40 ], "order_by": [ - 325, + 331, "[custom_pages_order_by!]" ], "where": [ - 314 + 320 ] } ], "custom_pages_aggregate": [ - 310, + 316, { "distinct_on": [ - 328, + 334, "[custom_pages_select_column!]" ], "limit": [ @@ -136012,19 +136603,19 @@ export default { 40 ], "order_by": [ - 325, + 331, "[custom_pages_order_by!]" ], "where": [ - 314 + 320 ] } ], "custom_pages_by_pk": [ - 309, + 315, { "id": [ - 4993, + 4999, "uuid!" ] } @@ -136033,10 +136624,10 @@ export default { 19 ], "db_backups": [ - 341, + 347, { "distinct_on": [ - 355, + 361, "[db_backups_select_column!]" ], "limit": [ @@ -136046,19 +136637,19 @@ export default { 40 ], "order_by": [ - 353, + 359, "[db_backups_order_by!]" ], "where": [ - 345 + 351 ] } ], "db_backups_aggregate": [ - 342, + 348, { "distinct_on": [ - 355, + 361, "[db_backups_select_column!]" ], "limit": [ @@ -136068,28 +136659,28 @@ export default { 40 ], "order_by": [ - 353, + 359, "[db_backups_order_by!]" ], "where": [ - 345 + 351 ] } ], "db_backups_by_pk": [ - 341, + 347, { "id": [ - 4993, + 4999, "uuid!" ] } ], "draft_game_picks": [ - 368, + 374, { "distinct_on": [ - 391, + 397, "[draft_game_picks_select_column!]" ], "limit": [ @@ -136099,19 +136690,19 @@ export default { 40 ], "order_by": [ - 389, + 395, "[draft_game_picks_order_by!]" ], "where": [ - 379 + 385 ] } ], "draft_game_picks_aggregate": [ - 369, + 375, { "distinct_on": [ - 391, + 397, "[draft_game_picks_select_column!]" ], "limit": [ @@ -136121,28 +136712,28 @@ export default { 40 ], "order_by": [ - 389, + 395, "[draft_game_picks_order_by!]" ], "where": [ - 379 + 385 ] } ], "draft_game_picks_by_pk": [ - 368, + 374, { "id": [ - 4993, + 4999, "uuid!" ] } ], "draft_game_players": [ - 413, + 419, { "distinct_on": [ - 436, + 442, "[draft_game_players_select_column!]" ], "limit": [ @@ -136152,19 +136743,19 @@ export default { 40 ], "order_by": [ - 434, + 440, "[draft_game_players_order_by!]" ], "where": [ - 424 + 430 ] } ], "draft_game_players_aggregate": [ - 414, + 420, { "distinct_on": [ - 436, + 442, "[draft_game_players_select_column!]" ], "limit": [ @@ -136174,32 +136765,32 @@ export default { 40 ], "order_by": [ - 434, + 440, "[draft_game_players_order_by!]" ], "where": [ - 424 + 430 ] } ], "draft_game_players_by_pk": [ - 413, + 419, { "draft_game_id": [ - 4993, + 4999, "uuid!" ], "steam_id": [ - 252, + 258, "bigint!" ] } ], "draft_games": [ - 458, + 464, { "distinct_on": [ - 482, + 488, "[draft_games_select_column!]" ], "limit": [ @@ -136209,19 +136800,19 @@ export default { 40 ], "order_by": [ - 480, + 486, "[draft_games_order_by!]" ], "where": [ - 469 + 475 ] } ], "draft_games_aggregate": [ - 459, + 465, { "distinct_on": [ - 482, + 488, "[draft_games_select_column!]" ], "limit": [ @@ -136231,28 +136822,28 @@ export default { 40 ], "order_by": [ - 480, + 486, "[draft_games_order_by!]" ], "where": [ - 469 + 475 ] } ], "draft_games_by_pk": [ - 458, + 464, { "id": [ - 4993, + 4999, "uuid!" ] } ], "e_award_sources": [ - 504, + 510, { "distinct_on": [ - 518, + 524, "[e_award_sources_select_column!]" ], "limit": [ @@ -136262,19 +136853,19 @@ export default { 40 ], "order_by": [ - 516, + 522, "[e_award_sources_order_by!]" ], "where": [ - 507 + 513 ] } ], "e_award_sources_aggregate": [ - 505, + 511, { "distinct_on": [ - 518, + 524, "[e_award_sources_select_column!]" ], "limit": [ @@ -136284,16 +136875,16 @@ export default { 40 ], "order_by": [ - 516, + 522, "[e_award_sources_order_by!]" ], "where": [ - 507 + 513 ] } ], "e_award_sources_by_pk": [ - 504, + 510, { "value": [ 80, @@ -136302,10 +136893,10 @@ export default { } ], "e_award_tiers": [ - 524, + 530, { "distinct_on": [ - 538, + 544, "[e_award_tiers_select_column!]" ], "limit": [ @@ -136315,19 +136906,19 @@ export default { 40 ], "order_by": [ - 536, + 542, "[e_award_tiers_order_by!]" ], "where": [ - 527 + 533 ] } ], "e_award_tiers_aggregate": [ - 525, + 531, { "distinct_on": [ - 538, + 544, "[e_award_tiers_select_column!]" ], "limit": [ @@ -136337,16 +136928,16 @@ export default { 40 ], "order_by": [ - 536, + 542, "[e_award_tiers_order_by!]" ], "where": [ - 527 + 533 ] } ], "e_award_tiers_by_pk": [ - 524, + 530, { "value": [ 80, @@ -136355,10 +136946,10 @@ export default { } ], "e_check_in_settings": [ - 544, + 550, { "distinct_on": [ - 558, + 564, "[e_check_in_settings_select_column!]" ], "limit": [ @@ -136368,19 +136959,19 @@ export default { 40 ], "order_by": [ - 556, + 562, "[e_check_in_settings_order_by!]" ], "where": [ - 547 + 553 ] } ], "e_check_in_settings_aggregate": [ - 545, + 551, { "distinct_on": [ - 558, + 564, "[e_check_in_settings_select_column!]" ], "limit": [ @@ -136390,16 +136981,16 @@ export default { 40 ], "order_by": [ - 556, + 562, "[e_check_in_settings_order_by!]" ], "where": [ - 547 + 553 ] } ], "e_check_in_settings_by_pk": [ - 544, + 550, { "value": [ 80, @@ -136408,10 +136999,10 @@ export default { } ], "e_draft_game_captain_selection": [ - 564, + 570, { "distinct_on": [ - 579, + 585, "[e_draft_game_captain_selection_select_column!]" ], "limit": [ @@ -136421,19 +137012,19 @@ export default { 40 ], "order_by": [ - 577, + 583, "[e_draft_game_captain_selection_order_by!]" ], "where": [ - 567 + 573 ] } ], "e_draft_game_captain_selection_aggregate": [ - 565, + 571, { "distinct_on": [ - 579, + 585, "[e_draft_game_captain_selection_select_column!]" ], "limit": [ @@ -136443,16 +137034,16 @@ export default { 40 ], "order_by": [ - 577, + 583, "[e_draft_game_captain_selection_order_by!]" ], "where": [ - 567 + 573 ] } ], "e_draft_game_captain_selection_by_pk": [ - 564, + 570, { "value": [ 80, @@ -136461,10 +137052,10 @@ export default { } ], "e_draft_game_draft_order": [ - 585, + 591, { "distinct_on": [ - 600, + 606, "[e_draft_game_draft_order_select_column!]" ], "limit": [ @@ -136474,19 +137065,19 @@ export default { 40 ], "order_by": [ - 598, + 604, "[e_draft_game_draft_order_order_by!]" ], "where": [ - 588 + 594 ] } ], "e_draft_game_draft_order_aggregate": [ - 586, + 592, { "distinct_on": [ - 600, + 606, "[e_draft_game_draft_order_select_column!]" ], "limit": [ @@ -136496,16 +137087,16 @@ export default { 40 ], "order_by": [ - 598, + 604, "[e_draft_game_draft_order_order_by!]" ], "where": [ - 588 + 594 ] } ], "e_draft_game_draft_order_by_pk": [ - 585, + 591, { "value": [ 80, @@ -136514,10 +137105,10 @@ export default { } ], "e_draft_game_mode": [ - 606, + 612, { "distinct_on": [ - 621, + 627, "[e_draft_game_mode_select_column!]" ], "limit": [ @@ -136527,19 +137118,19 @@ export default { 40 ], "order_by": [ - 619, + 625, "[e_draft_game_mode_order_by!]" ], "where": [ - 609 + 615 ] } ], "e_draft_game_mode_aggregate": [ - 607, + 613, { "distinct_on": [ - 621, + 627, "[e_draft_game_mode_select_column!]" ], "limit": [ @@ -136549,16 +137140,16 @@ export default { 40 ], "order_by": [ - 619, + 625, "[e_draft_game_mode_order_by!]" ], "where": [ - 609 + 615 ] } ], "e_draft_game_mode_by_pk": [ - 606, + 612, { "value": [ 80, @@ -136567,10 +137158,10 @@ export default { } ], "e_draft_game_player_status": [ - 627, + 633, { "distinct_on": [ - 642, + 648, "[e_draft_game_player_status_select_column!]" ], "limit": [ @@ -136580,19 +137171,19 @@ export default { 40 ], "order_by": [ - 640, + 646, "[e_draft_game_player_status_order_by!]" ], "where": [ - 630 + 636 ] } ], "e_draft_game_player_status_aggregate": [ - 628, + 634, { "distinct_on": [ - 642, + 648, "[e_draft_game_player_status_select_column!]" ], "limit": [ @@ -136602,16 +137193,16 @@ export default { 40 ], "order_by": [ - 640, + 646, "[e_draft_game_player_status_order_by!]" ], "where": [ - 630 + 636 ] } ], "e_draft_game_player_status_by_pk": [ - 627, + 633, { "value": [ 80, @@ -136620,10 +137211,10 @@ export default { } ], "e_draft_game_status": [ - 648, + 654, { "distinct_on": [ - 663, + 669, "[e_draft_game_status_select_column!]" ], "limit": [ @@ -136633,19 +137224,19 @@ export default { 40 ], "order_by": [ - 661, + 667, "[e_draft_game_status_order_by!]" ], "where": [ - 651 + 657 ] } ], "e_draft_game_status_aggregate": [ - 649, + 655, { "distinct_on": [ - 663, + 669, "[e_draft_game_status_select_column!]" ], "limit": [ @@ -136655,16 +137246,16 @@ export default { 40 ], "order_by": [ - 661, + 667, "[e_draft_game_status_order_by!]" ], "where": [ - 651 + 657 ] } ], "e_draft_game_status_by_pk": [ - 648, + 654, { "value": [ 80, @@ -136673,10 +137264,10 @@ export default { } ], "e_event_media_access": [ - 669, + 675, { "distinct_on": [ - 683, + 689, "[e_event_media_access_select_column!]" ], "limit": [ @@ -136686,19 +137277,19 @@ export default { 40 ], "order_by": [ - 681, + 687, "[e_event_media_access_order_by!]" ], "where": [ - 672 + 678 ] } ], "e_event_media_access_aggregate": [ - 670, + 676, { "distinct_on": [ - 683, + 689, "[e_event_media_access_select_column!]" ], "limit": [ @@ -136708,16 +137299,16 @@ export default { 40 ], "order_by": [ - 681, + 687, "[e_event_media_access_order_by!]" ], "where": [ - 672 + 678 ] } ], "e_event_media_access_by_pk": [ - 669, + 675, { "value": [ 80, @@ -136726,10 +137317,10 @@ export default { } ], "e_event_visibility": [ - 689, + 695, { "distinct_on": [ - 703, + 709, "[e_event_visibility_select_column!]" ], "limit": [ @@ -136739,19 +137330,19 @@ export default { 40 ], "order_by": [ - 701, + 707, "[e_event_visibility_order_by!]" ], "where": [ - 692 + 698 ] } ], "e_event_visibility_aggregate": [ - 690, + 696, { "distinct_on": [ - 703, + 709, "[e_event_visibility_select_column!]" ], "limit": [ @@ -136761,16 +137352,16 @@ export default { 40 ], "order_by": [ - 701, + 707, "[e_event_visibility_order_by!]" ], "where": [ - 692 + 698 ] } ], "e_event_visibility_by_pk": [ - 689, + 695, { "value": [ 80, @@ -136779,10 +137370,10 @@ export default { } ], "e_friend_status": [ - 709, + 715, { "distinct_on": [ - 724, + 730, "[e_friend_status_select_column!]" ], "limit": [ @@ -136792,19 +137383,19 @@ export default { 40 ], "order_by": [ - 722, + 728, "[e_friend_status_order_by!]" ], "where": [ - 712 + 718 ] } ], "e_friend_status_aggregate": [ - 710, + 716, { "distinct_on": [ - 724, + 730, "[e_friend_status_select_column!]" ], "limit": [ @@ -136814,16 +137405,16 @@ export default { 40 ], "order_by": [ - 722, + 728, "[e_friend_status_order_by!]" ], "where": [ - 712 + 718 ] } ], "e_friend_status_by_pk": [ - 709, + 715, { "value": [ 80, @@ -136832,10 +137423,10 @@ export default { } ], "e_game_cfg_types": [ - 730, + 736, { "distinct_on": [ - 744, + 750, "[e_game_cfg_types_select_column!]" ], "limit": [ @@ -136845,19 +137436,19 @@ export default { 40 ], "order_by": [ - 742, + 748, "[e_game_cfg_types_order_by!]" ], "where": [ - 733 + 739 ] } ], "e_game_cfg_types_aggregate": [ - 731, + 737, { "distinct_on": [ - 744, + 750, "[e_game_cfg_types_select_column!]" ], "limit": [ @@ -136867,16 +137458,16 @@ export default { 40 ], "order_by": [ - 742, + 748, "[e_game_cfg_types_order_by!]" ], "where": [ - 733 + 739 ] } ], "e_game_cfg_types_by_pk": [ - 730, + 736, { "value": [ 80, @@ -136885,10 +137476,10 @@ export default { } ], "e_game_server_node_statuses": [ - 750, + 756, { "distinct_on": [ - 765, + 771, "[e_game_server_node_statuses_select_column!]" ], "limit": [ @@ -136898,19 +137489,19 @@ export default { 40 ], "order_by": [ - 763, + 769, "[e_game_server_node_statuses_order_by!]" ], "where": [ - 753 + 759 ] } ], "e_game_server_node_statuses_aggregate": [ - 751, + 757, { "distinct_on": [ - 765, + 771, "[e_game_server_node_statuses_select_column!]" ], "limit": [ @@ -136920,16 +137511,16 @@ export default { 40 ], "order_by": [ - 763, + 769, "[e_game_server_node_statuses_order_by!]" ], "where": [ - 753 + 759 ] } ], "e_game_server_node_statuses_by_pk": [ - 750, + 756, { "value": [ 80, @@ -136938,10 +137529,10 @@ export default { } ], "e_league_movement_types": [ - 771, + 777, { "distinct_on": [ - 786, + 792, "[e_league_movement_types_select_column!]" ], "limit": [ @@ -136951,19 +137542,19 @@ export default { 40 ], "order_by": [ - 784, + 790, "[e_league_movement_types_order_by!]" ], "where": [ - 774 + 780 ] } ], "e_league_movement_types_aggregate": [ - 772, + 778, { "distinct_on": [ - 786, + 792, "[e_league_movement_types_select_column!]" ], "limit": [ @@ -136973,16 +137564,16 @@ export default { 40 ], "order_by": [ - 784, + 790, "[e_league_movement_types_order_by!]" ], "where": [ - 774 + 780 ] } ], "e_league_movement_types_by_pk": [ - 771, + 777, { "value": [ 80, @@ -136991,10 +137582,10 @@ export default { } ], "e_league_proposal_statuses": [ - 792, + 798, { "distinct_on": [ - 807, + 813, "[e_league_proposal_statuses_select_column!]" ], "limit": [ @@ -137004,19 +137595,19 @@ export default { 40 ], "order_by": [ - 805, + 811, "[e_league_proposal_statuses_order_by!]" ], "where": [ - 795 + 801 ] } ], "e_league_proposal_statuses_aggregate": [ - 793, + 799, { "distinct_on": [ - 807, + 813, "[e_league_proposal_statuses_select_column!]" ], "limit": [ @@ -137026,16 +137617,16 @@ export default { 40 ], "order_by": [ - 805, + 811, "[e_league_proposal_statuses_order_by!]" ], "where": [ - 795 + 801 ] } ], "e_league_proposal_statuses_by_pk": [ - 792, + 798, { "value": [ 80, @@ -137044,10 +137635,10 @@ export default { } ], "e_league_registration_statuses": [ - 813, + 819, { "distinct_on": [ - 828, + 834, "[e_league_registration_statuses_select_column!]" ], "limit": [ @@ -137057,19 +137648,19 @@ export default { 40 ], "order_by": [ - 826, + 832, "[e_league_registration_statuses_order_by!]" ], "where": [ - 816 + 822 ] } ], "e_league_registration_statuses_aggregate": [ - 814, + 820, { "distinct_on": [ - 828, + 834, "[e_league_registration_statuses_select_column!]" ], "limit": [ @@ -137079,16 +137670,16 @@ export default { 40 ], "order_by": [ - 826, + 832, "[e_league_registration_statuses_order_by!]" ], "where": [ - 816 + 822 ] } ], "e_league_registration_statuses_by_pk": [ - 813, + 819, { "value": [ 80, @@ -137097,10 +137688,10 @@ export default { } ], "e_league_season_statuses": [ - 834, + 840, { "distinct_on": [ - 849, + 855, "[e_league_season_statuses_select_column!]" ], "limit": [ @@ -137110,19 +137701,19 @@ export default { 40 ], "order_by": [ - 847, + 853, "[e_league_season_statuses_order_by!]" ], "where": [ - 837 + 843 ] } ], "e_league_season_statuses_aggregate": [ - 835, + 841, { "distinct_on": [ - 849, + 855, "[e_league_season_statuses_select_column!]" ], "limit": [ @@ -137132,16 +137723,16 @@ export default { 40 ], "order_by": [ - 847, + 853, "[e_league_season_statuses_order_by!]" ], "where": [ - 837 + 843 ] } ], "e_league_season_statuses_by_pk": [ - 834, + 840, { "value": [ 80, @@ -137150,10 +137741,10 @@ export default { } ], "e_lobby_access": [ - 855, + 861, { "distinct_on": [ - 870, + 876, "[e_lobby_access_select_column!]" ], "limit": [ @@ -137163,19 +137754,19 @@ export default { 40 ], "order_by": [ - 868, + 874, "[e_lobby_access_order_by!]" ], "where": [ - 858 + 864 ] } ], "e_lobby_access_aggregate": [ - 856, + 862, { "distinct_on": [ - 870, + 876, "[e_lobby_access_select_column!]" ], "limit": [ @@ -137185,16 +137776,16 @@ export default { 40 ], "order_by": [ - 868, + 874, "[e_lobby_access_order_by!]" ], "where": [ - 858 + 864 ] } ], "e_lobby_access_by_pk": [ - 855, + 861, { "value": [ 80, @@ -137203,10 +137794,10 @@ export default { } ], "e_lobby_player_status": [ - 876, + 882, { "distinct_on": [ - 890, + 896, "[e_lobby_player_status_select_column!]" ], "limit": [ @@ -137216,19 +137807,19 @@ export default { 40 ], "order_by": [ - 888, + 894, "[e_lobby_player_status_order_by!]" ], "where": [ - 879 + 885 ] } ], "e_lobby_player_status_aggregate": [ - 877, + 883, { "distinct_on": [ - 890, + 896, "[e_lobby_player_status_select_column!]" ], "limit": [ @@ -137238,16 +137829,16 @@ export default { 40 ], "order_by": [ - 888, + 894, "[e_lobby_player_status_order_by!]" ], "where": [ - 879 + 885 ] } ], "e_lobby_player_status_by_pk": [ - 876, + 882, { "value": [ 80, @@ -137256,10 +137847,10 @@ export default { } ], "e_map_pool_types": [ - 896, + 902, { "distinct_on": [ - 911, + 917, "[e_map_pool_types_select_column!]" ], "limit": [ @@ -137269,19 +137860,19 @@ export default { 40 ], "order_by": [ - 909, + 915, "[e_map_pool_types_order_by!]" ], "where": [ - 899 + 905 ] } ], "e_map_pool_types_aggregate": [ - 897, + 903, { "distinct_on": [ - 911, + 917, "[e_map_pool_types_select_column!]" ], "limit": [ @@ -137291,16 +137882,16 @@ export default { 40 ], "order_by": [ - 909, + 915, "[e_map_pool_types_order_by!]" ], "where": [ - 899 + 905 ] } ], "e_map_pool_types_by_pk": [ - 896, + 902, { "value": [ 80, @@ -137309,10 +137900,10 @@ export default { } ], "e_match_clip_visibility": [ - 917, + 923, { "distinct_on": [ - 931, + 937, "[e_match_clip_visibility_select_column!]" ], "limit": [ @@ -137322,19 +137913,19 @@ export default { 40 ], "order_by": [ - 929, + 935, "[e_match_clip_visibility_order_by!]" ], "where": [ - 920 + 926 ] } ], "e_match_clip_visibility_aggregate": [ - 918, + 924, { "distinct_on": [ - 931, + 937, "[e_match_clip_visibility_select_column!]" ], "limit": [ @@ -137344,16 +137935,16 @@ export default { 40 ], "order_by": [ - 929, + 935, "[e_match_clip_visibility_order_by!]" ], "where": [ - 920 + 926 ] } ], "e_match_clip_visibility_by_pk": [ - 917, + 923, { "value": [ 80, @@ -137362,10 +137953,10 @@ export default { } ], "e_match_map_status": [ - 937, + 943, { "distinct_on": [ - 952, + 958, "[e_match_map_status_select_column!]" ], "limit": [ @@ -137375,19 +137966,19 @@ export default { 40 ], "order_by": [ - 950, + 956, "[e_match_map_status_order_by!]" ], "where": [ - 940 + 946 ] } ], "e_match_map_status_aggregate": [ - 938, + 944, { "distinct_on": [ - 952, + 958, "[e_match_map_status_select_column!]" ], "limit": [ @@ -137397,16 +137988,16 @@ export default { 40 ], "order_by": [ - 950, + 956, "[e_match_map_status_order_by!]" ], "where": [ - 940 + 946 ] } ], "e_match_map_status_by_pk": [ - 937, + 943, { "value": [ 80, @@ -137415,10 +138006,10 @@ export default { } ], "e_match_mode": [ - 958, + 964, { "distinct_on": [ - 972, + 978, "[e_match_mode_select_column!]" ], "limit": [ @@ -137428,19 +138019,19 @@ export default { 40 ], "order_by": [ - 970, + 976, "[e_match_mode_order_by!]" ], "where": [ - 961 + 967 ] } ], "e_match_mode_aggregate": [ - 959, + 965, { "distinct_on": [ - 972, + 978, "[e_match_mode_select_column!]" ], "limit": [ @@ -137450,16 +138041,16 @@ export default { 40 ], "order_by": [ - 970, + 976, "[e_match_mode_order_by!]" ], "where": [ - 961 + 967 ] } ], "e_match_mode_by_pk": [ - 958, + 964, { "value": [ 80, @@ -137468,10 +138059,10 @@ export default { } ], "e_match_status": [ - 978, + 984, { "distinct_on": [ - 993, + 999, "[e_match_status_select_column!]" ], "limit": [ @@ -137481,19 +138072,19 @@ export default { 40 ], "order_by": [ - 991, + 997, "[e_match_status_order_by!]" ], "where": [ - 981 + 987 ] } ], "e_match_status_aggregate": [ - 979, + 985, { "distinct_on": [ - 993, + 999, "[e_match_status_select_column!]" ], "limit": [ @@ -137503,16 +138094,16 @@ export default { 40 ], "order_by": [ - 991, + 997, "[e_match_status_order_by!]" ], "where": [ - 981 + 987 ] } ], "e_match_status_by_pk": [ - 978, + 984, { "value": [ 80, @@ -137521,10 +138112,10 @@ export default { } ], "e_match_types": [ - 999, + 1005, { "distinct_on": [ - 1014, + 1020, "[e_match_types_select_column!]" ], "limit": [ @@ -137534,19 +138125,19 @@ export default { 40 ], "order_by": [ - 1012, + 1018, "[e_match_types_order_by!]" ], "where": [ - 1002 + 1008 ] } ], "e_match_types_aggregate": [ - 1000, + 1006, { "distinct_on": [ - 1014, + 1020, "[e_match_types_select_column!]" ], "limit": [ @@ -137556,16 +138147,16 @@ export default { 40 ], "order_by": [ - 1012, + 1018, "[e_match_types_order_by!]" ], "where": [ - 1002 + 1008 ] } ], "e_match_types_by_pk": [ - 999, + 1005, { "value": [ 80, @@ -137574,10 +138165,10 @@ export default { } ], "e_notification_types": [ - 1020, + 1026, { "distinct_on": [ - 1034, + 1040, "[e_notification_types_select_column!]" ], "limit": [ @@ -137587,19 +138178,19 @@ export default { 40 ], "order_by": [ - 1032, + 1038, "[e_notification_types_order_by!]" ], "where": [ - 1023 + 1029 ] } ], "e_notification_types_aggregate": [ - 1021, + 1027, { "distinct_on": [ - 1034, + 1040, "[e_notification_types_select_column!]" ], "limit": [ @@ -137609,16 +138200,16 @@ export default { 40 ], "order_by": [ - 1032, + 1038, "[e_notification_types_order_by!]" ], "where": [ - 1023 + 1029 ] } ], "e_notification_types_by_pk": [ - 1020, + 1026, { "value": [ 80, @@ -137627,10 +138218,10 @@ export default { } ], "e_objective_types": [ - 1040, + 1046, { "distinct_on": [ - 1054, + 1060, "[e_objective_types_select_column!]" ], "limit": [ @@ -137640,19 +138231,19 @@ export default { 40 ], "order_by": [ - 1052, + 1058, "[e_objective_types_order_by!]" ], "where": [ - 1043 + 1049 ] } ], "e_objective_types_aggregate": [ - 1041, + 1047, { "distinct_on": [ - 1054, + 1060, "[e_objective_types_select_column!]" ], "limit": [ @@ -137662,16 +138253,16 @@ export default { 40 ], "order_by": [ - 1052, + 1058, "[e_objective_types_order_by!]" ], "where": [ - 1043 + 1049 ] } ], "e_objective_types_by_pk": [ - 1040, + 1046, { "value": [ 80, @@ -137680,10 +138271,10 @@ export default { } ], "e_player_roles": [ - 1060, + 1066, { "distinct_on": [ - 1074, + 1080, "[e_player_roles_select_column!]" ], "limit": [ @@ -137693,19 +138284,19 @@ export default { 40 ], "order_by": [ - 1072, + 1078, "[e_player_roles_order_by!]" ], "where": [ - 1063 + 1069 ] } ], "e_player_roles_aggregate": [ - 1061, + 1067, { "distinct_on": [ - 1074, + 1080, "[e_player_roles_select_column!]" ], "limit": [ @@ -137715,16 +138306,16 @@ export default { 40 ], "order_by": [ - 1072, + 1078, "[e_player_roles_order_by!]" ], "where": [ - 1063 + 1069 ] } ], "e_player_roles_by_pk": [ - 1060, + 1066, { "value": [ 80, @@ -137733,10 +138324,10 @@ export default { } ], "e_plugin_runtimes": [ - 1080, + 1086, { "distinct_on": [ - 1094, + 1100, "[e_plugin_runtimes_select_column!]" ], "limit": [ @@ -137746,19 +138337,19 @@ export default { 40 ], "order_by": [ - 1092, + 1098, "[e_plugin_runtimes_order_by!]" ], "where": [ - 1083 + 1089 ] } ], "e_plugin_runtimes_aggregate": [ - 1081, + 1087, { "distinct_on": [ - 1094, + 1100, "[e_plugin_runtimes_select_column!]" ], "limit": [ @@ -137768,16 +138359,16 @@ export default { 40 ], "order_by": [ - 1092, + 1098, "[e_plugin_runtimes_order_by!]" ], "where": [ - 1083 + 1089 ] } ], "e_plugin_runtimes_by_pk": [ - 1080, + 1086, { "value": [ 80, @@ -137786,10 +138377,10 @@ export default { } ], "e_ready_settings": [ - 1100, + 1106, { "distinct_on": [ - 1114, + 1120, "[e_ready_settings_select_column!]" ], "limit": [ @@ -137799,19 +138390,19 @@ export default { 40 ], "order_by": [ - 1112, + 1118, "[e_ready_settings_order_by!]" ], "where": [ - 1103 + 1109 ] } ], "e_ready_settings_aggregate": [ - 1101, + 1107, { "distinct_on": [ - 1114, + 1120, "[e_ready_settings_select_column!]" ], "limit": [ @@ -137821,16 +138412,16 @@ export default { 40 ], "order_by": [ - 1112, + 1118, "[e_ready_settings_order_by!]" ], "where": [ - 1103 + 1109 ] } ], "e_ready_settings_by_pk": [ - 1100, + 1106, { "value": [ 80, @@ -137839,10 +138430,10 @@ export default { } ], "e_sanction_types": [ - 1120, + 1126, { "distinct_on": [ - 1135, + 1141, "[e_sanction_types_select_column!]" ], "limit": [ @@ -137852,19 +138443,19 @@ export default { 40 ], "order_by": [ - 1133, + 1139, "[e_sanction_types_order_by!]" ], "where": [ - 1123 + 1129 ] } ], "e_sanction_types_aggregate": [ - 1121, + 1127, { "distinct_on": [ - 1135, + 1141, "[e_sanction_types_select_column!]" ], "limit": [ @@ -137874,16 +138465,16 @@ export default { 40 ], "order_by": [ - 1133, + 1139, "[e_sanction_types_order_by!]" ], "where": [ - 1123 + 1129 ] } ], "e_sanction_types_by_pk": [ - 1120, + 1126, { "value": [ 80, @@ -137892,10 +138483,10 @@ export default { } ], "e_scrim_request_statuses": [ - 1141, + 1147, { "distinct_on": [ - 1155, + 1161, "[e_scrim_request_statuses_select_column!]" ], "limit": [ @@ -137905,19 +138496,19 @@ export default { 40 ], "order_by": [ - 1153, + 1159, "[e_scrim_request_statuses_order_by!]" ], "where": [ - 1144 + 1150 ] } ], "e_scrim_request_statuses_aggregate": [ - 1142, + 1148, { "distinct_on": [ - 1155, + 1161, "[e_scrim_request_statuses_select_column!]" ], "limit": [ @@ -137927,16 +138518,16 @@ export default { 40 ], "order_by": [ - 1153, + 1159, "[e_scrim_request_statuses_order_by!]" ], "where": [ - 1144 + 1150 ] } ], "e_scrim_request_statuses_by_pk": [ - 1141, + 1147, { "value": [ 80, @@ -137945,10 +138536,10 @@ export default { } ], "e_server_types": [ - 1161, + 1167, { "distinct_on": [ - 1175, + 1181, "[e_server_types_select_column!]" ], "limit": [ @@ -137958,19 +138549,19 @@ export default { 40 ], "order_by": [ - 1173, + 1179, "[e_server_types_order_by!]" ], "where": [ - 1164 + 1170 ] } ], "e_server_types_aggregate": [ - 1162, + 1168, { "distinct_on": [ - 1175, + 1181, "[e_server_types_select_column!]" ], "limit": [ @@ -137980,16 +138571,16 @@ export default { 40 ], "order_by": [ - 1173, + 1179, "[e_server_types_order_by!]" ], "where": [ - 1164 + 1170 ] } ], "e_server_types_by_pk": [ - 1161, + 1167, { "value": [ 80, @@ -137998,10 +138589,10 @@ export default { } ], "e_sides": [ - 1181, + 1187, { "distinct_on": [ - 1195, + 1201, "[e_sides_select_column!]" ], "limit": [ @@ -138011,19 +138602,19 @@ export default { 40 ], "order_by": [ - 1193, + 1199, "[e_sides_order_by!]" ], "where": [ - 1184 + 1190 ] } ], "e_sides_aggregate": [ - 1182, + 1188, { "distinct_on": [ - 1195, + 1201, "[e_sides_select_column!]" ], "limit": [ @@ -138033,16 +138624,16 @@ export default { 40 ], "order_by": [ - 1193, + 1199, "[e_sides_order_by!]" ], "where": [ - 1184 + 1190 ] } ], "e_sides_by_pk": [ - 1181, + 1187, { "value": [ 80, @@ -138051,10 +138642,10 @@ export default { } ], "e_system_alert_types": [ - 1201, + 1207, { "distinct_on": [ - 1215, + 1221, "[e_system_alert_types_select_column!]" ], "limit": [ @@ -138064,19 +138655,19 @@ export default { 40 ], "order_by": [ - 1213, + 1219, "[e_system_alert_types_order_by!]" ], "where": [ - 1204 + 1210 ] } ], "e_system_alert_types_aggregate": [ - 1202, + 1208, { "distinct_on": [ - 1215, + 1221, "[e_system_alert_types_select_column!]" ], "limit": [ @@ -138086,16 +138677,16 @@ export default { 40 ], "order_by": [ - 1213, + 1219, "[e_system_alert_types_order_by!]" ], "where": [ - 1204 + 1210 ] } ], "e_system_alert_types_by_pk": [ - 1201, + 1207, { "value": [ 80, @@ -138104,10 +138695,10 @@ export default { } ], "e_team_roles": [ - 1221, + 1227, { "distinct_on": [ - 1236, + 1242, "[e_team_roles_select_column!]" ], "limit": [ @@ -138117,19 +138708,19 @@ export default { 40 ], "order_by": [ - 1234, + 1240, "[e_team_roles_order_by!]" ], "where": [ - 1224 + 1230 ] } ], "e_team_roles_aggregate": [ - 1222, + 1228, { "distinct_on": [ - 1236, + 1242, "[e_team_roles_select_column!]" ], "limit": [ @@ -138139,16 +138730,16 @@ export default { 40 ], "order_by": [ - 1234, + 1240, "[e_team_roles_order_by!]" ], "where": [ - 1224 + 1230 ] } ], "e_team_roles_by_pk": [ - 1221, + 1227, { "value": [ 80, @@ -138157,10 +138748,10 @@ export default { } ], "e_team_roster_statuses": [ - 1242, + 1248, { "distinct_on": [ - 1256, + 1262, "[e_team_roster_statuses_select_column!]" ], "limit": [ @@ -138170,19 +138761,19 @@ export default { 40 ], "order_by": [ - 1254, + 1260, "[e_team_roster_statuses_order_by!]" ], "where": [ - 1245 + 1251 ] } ], "e_team_roster_statuses_aggregate": [ - 1243, + 1249, { "distinct_on": [ - 1256, + 1262, "[e_team_roster_statuses_select_column!]" ], "limit": [ @@ -138192,16 +138783,16 @@ export default { 40 ], "order_by": [ - 1254, + 1260, "[e_team_roster_statuses_order_by!]" ], "where": [ - 1245 + 1251 ] } ], "e_team_roster_statuses_by_pk": [ - 1242, + 1248, { "value": [ 80, @@ -138210,10 +138801,10 @@ export default { } ], "e_timeout_settings": [ - 1262, + 1268, { "distinct_on": [ - 1276, + 1282, "[e_timeout_settings_select_column!]" ], "limit": [ @@ -138223,19 +138814,19 @@ export default { 40 ], "order_by": [ - 1274, + 1280, "[e_timeout_settings_order_by!]" ], "where": [ - 1265 + 1271 ] } ], "e_timeout_settings_aggregate": [ - 1263, + 1269, { "distinct_on": [ - 1276, + 1282, "[e_timeout_settings_select_column!]" ], "limit": [ @@ -138245,16 +138836,16 @@ export default { 40 ], "order_by": [ - 1274, + 1280, "[e_timeout_settings_order_by!]" ], "where": [ - 1265 + 1271 ] } ], "e_timeout_settings_by_pk": [ - 1262, + 1268, { "value": [ 80, @@ -138263,10 +138854,10 @@ export default { } ], "e_tournament_categories": [ - 1282, + 1288, { "distinct_on": [ - 1297, + 1303, "[e_tournament_categories_select_column!]" ], "limit": [ @@ -138276,19 +138867,19 @@ export default { 40 ], "order_by": [ - 1295, + 1301, "[e_tournament_categories_order_by!]" ], "where": [ - 1285 + 1291 ] } ], "e_tournament_categories_aggregate": [ - 1283, + 1289, { "distinct_on": [ - 1297, + 1303, "[e_tournament_categories_select_column!]" ], "limit": [ @@ -138298,16 +138889,16 @@ export default { 40 ], "order_by": [ - 1295, + 1301, "[e_tournament_categories_order_by!]" ], "where": [ - 1285 + 1291 ] } ], "e_tournament_categories_by_pk": [ - 1282, + 1288, { "value": [ 80, @@ -138316,10 +138907,10 @@ export default { } ], "e_tournament_stage_types": [ - 1303, + 1309, { "distinct_on": [ - 1318, + 1324, "[e_tournament_stage_types_select_column!]" ], "limit": [ @@ -138329,19 +138920,19 @@ export default { 40 ], "order_by": [ - 1316, + 1322, "[e_tournament_stage_types_order_by!]" ], "where": [ - 1306 + 1312 ] } ], "e_tournament_stage_types_aggregate": [ - 1304, + 1310, { "distinct_on": [ - 1318, + 1324, "[e_tournament_stage_types_select_column!]" ], "limit": [ @@ -138351,16 +138942,16 @@ export default { 40 ], "order_by": [ - 1316, + 1322, "[e_tournament_stage_types_order_by!]" ], "where": [ - 1306 + 1312 ] } ], "e_tournament_stage_types_by_pk": [ - 1303, + 1309, { "value": [ 80, @@ -138369,10 +138960,10 @@ export default { } ], "e_tournament_status": [ - 1324, + 1330, { "distinct_on": [ - 1339, + 1345, "[e_tournament_status_select_column!]" ], "limit": [ @@ -138382,19 +138973,19 @@ export default { 40 ], "order_by": [ - 1337, + 1343, "[e_tournament_status_order_by!]" ], "where": [ - 1327 + 1333 ] } ], "e_tournament_status_aggregate": [ - 1325, + 1331, { "distinct_on": [ - 1339, + 1345, "[e_tournament_status_select_column!]" ], "limit": [ @@ -138404,16 +138995,16 @@ export default { 40 ], "order_by": [ - 1337, + 1343, "[e_tournament_status_order_by!]" ], "where": [ - 1327 + 1333 ] } ], "e_tournament_status_by_pk": [ - 1324, + 1330, { "value": [ 80, @@ -138422,10 +139013,10 @@ export default { } ], "e_utility_types": [ - 1345, + 1351, { "distinct_on": [ - 1359, + 1365, "[e_utility_types_select_column!]" ], "limit": [ @@ -138435,19 +139026,19 @@ export default { 40 ], "order_by": [ - 1357, + 1363, "[e_utility_types_order_by!]" ], "where": [ - 1348 + 1354 ] } ], "e_utility_types_aggregate": [ - 1346, + 1352, { "distinct_on": [ - 1359, + 1365, "[e_utility_types_select_column!]" ], "limit": [ @@ -138457,16 +139048,16 @@ export default { 40 ], "order_by": [ - 1357, + 1363, "[e_utility_types_order_by!]" ], "where": [ - 1348 + 1354 ] } ], "e_utility_types_by_pk": [ - 1345, + 1351, { "value": [ 80, @@ -138475,10 +139066,10 @@ export default { } ], "e_veto_pick_types": [ - 1365, + 1371, { "distinct_on": [ - 1379, + 1385, "[e_veto_pick_types_select_column!]" ], "limit": [ @@ -138488,19 +139079,19 @@ export default { 40 ], "order_by": [ - 1377, + 1383, "[e_veto_pick_types_order_by!]" ], "where": [ - 1368 + 1374 ] } ], "e_veto_pick_types_aggregate": [ - 1366, + 1372, { "distinct_on": [ - 1379, + 1385, "[e_veto_pick_types_select_column!]" ], "limit": [ @@ -138510,16 +139101,16 @@ export default { 40 ], "order_by": [ - 1377, + 1383, "[e_veto_pick_types_order_by!]" ], "where": [ - 1368 + 1374 ] } ], "e_veto_pick_types_by_pk": [ - 1365, + 1371, { "value": [ 80, @@ -138528,10 +139119,10 @@ export default { } ], "e_winning_reasons": [ - 1385, + 1391, { "distinct_on": [ - 1399, + 1405, "[e_winning_reasons_select_column!]" ], "limit": [ @@ -138541,19 +139132,19 @@ export default { 40 ], "order_by": [ - 1397, + 1403, "[e_winning_reasons_order_by!]" ], "where": [ - 1388 + 1394 ] } ], "e_winning_reasons_aggregate": [ - 1386, + 1392, { "distinct_on": [ - 1399, + 1405, "[e_winning_reasons_select_column!]" ], "limit": [ @@ -138563,16 +139154,16 @@ export default { 40 ], "order_by": [ - 1397, + 1403, "[e_winning_reasons_order_by!]" ], "where": [ - 1388 + 1394 ] } ], "e_winning_reasons_by_pk": [ - 1385, + 1391, { "value": [ 80, @@ -138581,10 +139172,10 @@ export default { } ], "event_match_links": [ - 1405, + 1411, { "distinct_on": [ - 1417, + 1423, "[event_match_links_select_column!]" ], "limit": [ @@ -138594,19 +139185,19 @@ export default { 40 ], "order_by": [ - 1415, + 1421, "[event_match_links_order_by!]" ], "where": [ - 1408 + 1414 ] } ], "event_match_links_aggregate": [ - 1406, + 1412, { "distinct_on": [ - 1417, + 1423, "[event_match_links_select_column!]" ], "limit": [ @@ -138616,32 +139207,32 @@ export default { 40 ], "order_by": [ - 1415, + 1421, "[event_match_links_order_by!]" ], "where": [ - 1408 + 1414 ] } ], "event_match_links_by_pk": [ - 1405, + 1411, { "event_id": [ - 4993, + 4999, "uuid!" ], "match_id": [ - 4993, + 4999, "uuid!" ] } ], "event_media": [ - 1423, + 1429, { "distinct_on": [ - 1486, + 1492, "[event_media_select_column!]" ], "limit": [ @@ -138651,19 +139242,19 @@ export default { 40 ], "order_by": [ - 1443, + 1449, "[event_media_order_by!]" ], "where": [ - 1432 + 1438 ] } ], "event_media_aggregate": [ - 1424, + 1430, { "distinct_on": [ - 1486, + 1492, "[event_media_select_column!]" ], "limit": [ @@ -138673,28 +139264,28 @@ export default { 40 ], "order_by": [ - 1443, + 1449, "[event_media_order_by!]" ], "where": [ - 1432 + 1438 ] } ], "event_media_by_pk": [ - 1423, + 1429, { "id": [ - 4993, + 4999, "uuid!" ] } ], "event_media_players": [ - 1445, + 1451, { "distinct_on": [ - 1466, + 1472, "[event_media_players_select_column!]" ], "limit": [ @@ -138704,19 +139295,19 @@ export default { 40 ], "order_by": [ - 1464, + 1470, "[event_media_players_order_by!]" ], "where": [ - 1454 + 1460 ] } ], "event_media_players_aggregate": [ - 1446, + 1452, { "distinct_on": [ - 1466, + 1472, "[event_media_players_select_column!]" ], "limit": [ @@ -138726,32 +139317,32 @@ export default { 40 ], "order_by": [ - 1464, + 1470, "[event_media_players_order_by!]" ], "where": [ - 1454 + 1460 ] } ], "event_media_players_by_pk": [ - 1445, + 1451, { "media_id": [ - 4993, + 4999, "uuid!" ], "steam_id": [ - 252, + 258, "bigint!" ] } ], "event_organizers": [ - 1506, + 1512, { "distinct_on": [ - 1527, + 1533, "[event_organizers_select_column!]" ], "limit": [ @@ -138761,19 +139352,19 @@ export default { 40 ], "order_by": [ - 1525, + 1531, "[event_organizers_order_by!]" ], "where": [ - 1515 + 1521 ] } ], "event_organizers_aggregate": [ - 1507, + 1513, { "distinct_on": [ - 1527, + 1533, "[event_organizers_select_column!]" ], "limit": [ @@ -138783,32 +139374,32 @@ export default { 40 ], "order_by": [ - 1525, + 1531, "[event_organizers_order_by!]" ], "where": [ - 1515 + 1521 ] } ], "event_organizers_by_pk": [ - 1506, + 1512, { "event_id": [ - 4993, + 4999, "uuid!" ], "steam_id": [ - 252, + 258, "bigint!" ] } ], "event_players": [ - 1547, + 1553, { "distinct_on": [ - 1568, + 1574, "[event_players_select_column!]" ], "limit": [ @@ -138818,19 +139409,19 @@ export default { 40 ], "order_by": [ - 1566, + 1572, "[event_players_order_by!]" ], "where": [ - 1556 + 1562 ] } ], "event_players_aggregate": [ - 1548, + 1554, { "distinct_on": [ - 1568, + 1574, "[event_players_select_column!]" ], "limit": [ @@ -138840,32 +139431,32 @@ export default { 40 ], "order_by": [ - 1566, + 1572, "[event_players_order_by!]" ], "where": [ - 1556 + 1562 ] } ], "event_players_by_pk": [ - 1547, + 1553, { "event_id": [ - 4993, + 4999, "uuid!" ], "steam_id": [ - 252, + 258, "bigint!" ] } ], "event_teams": [ - 1588, + 1594, { "distinct_on": [ - 1606, + 1612, "[event_teams_select_column!]" ], "limit": [ @@ -138875,19 +139466,19 @@ export default { 40 ], "order_by": [ - 1604, + 1610, "[event_teams_order_by!]" ], "where": [ - 1595 + 1601 ] } ], "event_teams_aggregate": [ - 1589, + 1595, { "distinct_on": [ - 1606, + 1612, "[event_teams_select_column!]" ], "limit": [ @@ -138897,32 +139488,32 @@ export default { 40 ], "order_by": [ - 1604, + 1610, "[event_teams_order_by!]" ], "where": [ - 1595 + 1601 ] } ], "event_teams_by_pk": [ - 1588, + 1594, { "event_id": [ - 4993, + 4999, "uuid!" ], "team_id": [ - 4993, + 4999, "uuid!" ] } ], "event_tournaments": [ - 1612, + 1618, { "distinct_on": [ - 1630, + 1636, "[event_tournaments_select_column!]" ], "limit": [ @@ -138932,19 +139523,19 @@ export default { 40 ], "order_by": [ - 1628, + 1634, "[event_tournaments_order_by!]" ], "where": [ - 1619 + 1625 ] } ], "event_tournaments_aggregate": [ - 1613, + 1619, { "distinct_on": [ - 1630, + 1636, "[event_tournaments_select_column!]" ], "limit": [ @@ -138954,32 +139545,32 @@ export default { 40 ], "order_by": [ - 1628, + 1634, "[event_tournaments_order_by!]" ], "where": [ - 1619 + 1625 ] } ], "event_tournaments_by_pk": [ - 1612, + 1618, { "event_id": [ - 4993, + 4999, "uuid!" ], "tournament_id": [ - 4993, + 4999, "uuid!" ] } ], "events": [ - 1636, + 1642, { "distinct_on": [ - 1651, + 1657, "[events_select_column!]" ], "limit": [ @@ -138989,19 +139580,19 @@ export default { 40 ], "order_by": [ - 1649, + 1655, "[events_order_by!]" ], "where": [ - 1640 + 1646 ] } ], "events_aggregate": [ - 1637, + 1643, { "distinct_on": [ - 1651, + 1657, "[events_select_column!]" ], "limit": [ @@ -139011,28 +139602,28 @@ export default { 40 ], "order_by": [ - 1649, + 1655, "[events_order_by!]" ], "where": [ - 1640 + 1646 ] } ], "events_by_pk": [ - 1636, + 1642, { "id": [ - 4993, + 4999, "uuid!" ] } ], "friends": [ - 1666, + 1672, { "distinct_on": [ - 1680, + 1686, "[friends_select_column!]" ], "limit": [ @@ -139042,19 +139633,19 @@ export default { 40 ], "order_by": [ - 1678, + 1684, "[friends_order_by!]" ], "where": [ - 1670 + 1676 ] } ], "friends_aggregate": [ - 1667, + 1673, { "distinct_on": [ - 1680, + 1686, "[friends_select_column!]" ], "limit": [ @@ -139064,32 +139655,32 @@ export default { 40 ], "order_by": [ - 1678, + 1684, "[friends_order_by!]" ], "where": [ - 1670 + 1676 ] } ], "friends_by_pk": [ - 1666, + 1672, { "other_player_steam_id": [ - 252, + 258, "bigint!" ], "player_steam_id": [ - 252, + 258, "bigint!" ] } ], "game_server_nodes": [ - 1693, + 1699, { "distinct_on": [ - 1722, + 1728, "[game_server_nodes_select_column!]" ], "limit": [ @@ -139099,19 +139690,19 @@ export default { 40 ], "order_by": [ - 1719, + 1725, "[game_server_nodes_order_by!]" ], "where": [ - 1705 + 1711 ] } ], "game_server_nodes_aggregate": [ - 1694, + 1700, { "distinct_on": [ - 1722, + 1728, "[game_server_nodes_select_column!]" ], "limit": [ @@ -139121,16 +139712,16 @@ export default { 40 ], "order_by": [ - 1719, + 1725, "[game_server_nodes_order_by!]" ], "where": [ - 1705 + 1711 ] } ], "game_server_nodes_by_pk": [ - 1693, + 1699, { "id": [ 80, @@ -139139,10 +139730,10 @@ export default { } ], "game_versions": [ - 1744, + 1750, { "distinct_on": [ - 1764, + 1770, "[game_versions_select_column!]" ], "limit": [ @@ -139152,19 +139743,19 @@ export default { 40 ], "order_by": [ - 1761, + 1767, "[game_versions_order_by!]" ], "where": [ - 1749 + 1755 ] } ], "game_versions_aggregate": [ - 1745, + 1751, { "distinct_on": [ - 1764, + 1770, "[game_versions_select_column!]" ], "limit": [ @@ -139174,16 +139765,16 @@ export default { 40 ], "order_by": [ - 1761, + 1767, "[game_versions_order_by!]" ], "where": [ - 1749 + 1755 ] } ], "game_versions_by_pk": [ - 1744, + 1750, { "build_id": [ 40, @@ -139192,10 +139783,10 @@ export default { } ], "gamedata_signature_validations": [ - 1777, + 1783, { "distinct_on": [ - 1796, + 1802, "[gamedata_signature_validations_select_column!]" ], "limit": [ @@ -139205,19 +139796,19 @@ export default { 40 ], "order_by": [ - 1793, + 1799, "[gamedata_signature_validations_order_by!]" ], "where": [ - 1782 + 1788 ] } ], "gamedata_signature_validations_aggregate": [ - 1778, + 1784, { "distinct_on": [ - 1796, + 1802, "[gamedata_signature_validations_select_column!]" ], "limit": [ @@ -139227,19 +139818,19 @@ export default { 40 ], "order_by": [ - 1793, + 1799, "[gamedata_signature_validations_order_by!]" ], "where": [ - 1782 + 1788 ] } ], "gamedata_signature_validations_by_pk": [ - 1777, + 1783, { "id": [ - 4993, + 4999, "uuid!" ] } @@ -139275,7 +139866,7 @@ export default { 36, { "match_map_id": [ - 4993, + 4999, "uuid!" ], "target_steam_id": [ @@ -139357,17 +139948,17 @@ export default { } ], "getTimescaleStats": [ - 91 + 97 ], "get_event_leaderboard": [ - 1820, + 1826, { "args": [ - 1809, + 1815, "get_event_leaderboard_args!" ], "distinct_on": [ - 1831, + 1837, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -139377,23 +139968,23 @@ export default { 40 ], "order_by": [ - 1830, + 1836, "[leaderboard_entries_order_by!]" ], "where": [ - 1824 + 1830 ] } ], "get_event_leaderboard_aggregate": [ - 1821, + 1827, { "args": [ - 1809, + 1815, "get_event_leaderboard_args!" ], "distinct_on": [ - 1831, + 1837, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -139403,23 +139994,23 @@ export default { 40 ], "order_by": [ - 1830, + 1836, "[leaderboard_entries_order_by!]" ], "where": [ - 1824 + 1830 ] } ], "get_leaderboard": [ - 1820, + 1826, { "args": [ - 1810, + 1816, "get_leaderboard_args!" ], "distinct_on": [ - 1831, + 1837, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -139429,23 +140020,23 @@ export default { 40 ], "order_by": [ - 1830, + 1836, "[leaderboard_entries_order_by!]" ], "where": [ - 1824 + 1830 ] } ], "get_leaderboard_aggregate": [ - 1821, + 1827, { "args": [ - 1810, + 1816, "get_leaderboard_args!" ], "distinct_on": [ - 1831, + 1837, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -139455,23 +140046,23 @@ export default { 40 ], "order_by": [ - 1830, + 1836, "[leaderboard_entries_order_by!]" ], "where": [ - 1824 + 1830 ] } ], "get_league_season_leaderboard": [ - 1820, + 1826, { "args": [ - 1811, + 1817, "get_league_season_leaderboard_args!" ], "distinct_on": [ - 1831, + 1837, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -139481,23 +140072,23 @@ export default { 40 ], "order_by": [ - 1830, + 1836, "[leaderboard_entries_order_by!]" ], "where": [ - 1824 + 1830 ] } ], "get_league_season_leaderboard_aggregate": [ - 1821, + 1827, { "args": [ - 1811, + 1817, "get_league_season_leaderboard_args!" ], "distinct_on": [ - 1831, + 1837, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -139507,23 +140098,23 @@ export default { 40 ], "order_by": [ - 1830, + 1836, "[leaderboard_entries_order_by!]" ], "where": [ - 1824 + 1830 ] } ], "get_player_leaderboard_rank": [ - 3387, + 3393, { "args": [ - 1812, + 1818, "get_player_leaderboard_rank_args!" ], "distinct_on": [ - 3398, + 3404, "[player_leaderboard_rank_select_column!]" ], "limit": [ @@ -139533,23 +140124,23 @@ export default { 40 ], "order_by": [ - 3397, + 3403, "[player_leaderboard_rank_order_by!]" ], "where": [ - 3391 + 3397 ] } ], "get_player_leaderboard_rank_aggregate": [ - 3388, + 3394, { "args": [ - 1812, + 1818, "get_player_leaderboard_rank_args!" ], "distinct_on": [ - 3398, + 3404, "[player_leaderboard_rank_select_column!]" ], "limit": [ @@ -139559,19 +140150,19 @@ export default { 40 ], "order_by": [ - 3397, + 3403, "[player_leaderboard_rank_order_by!]" ], "where": [ - 3391 + 3397 ] } ], "leaderboard_entries": [ - 1820, + 1826, { "distinct_on": [ - 1831, + 1837, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -139581,19 +140172,19 @@ export default { 40 ], "order_by": [ - 1830, + 1836, "[leaderboard_entries_order_by!]" ], "where": [ - 1824 + 1830 ] } ], "leaderboard_entries_aggregate": [ - 1821, + 1827, { "distinct_on": [ - 1831, + 1837, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -139603,19 +140194,19 @@ export default { 40 ], "order_by": [ - 1830, + 1836, "[leaderboard_entries_order_by!]" ], "where": [ - 1824 + 1830 ] } ], "league_divisions": [ - 1844, + 1850, { "distinct_on": [ - 1859, + 1865, "[league_divisions_select_column!]" ], "limit": [ @@ -139625,19 +140216,19 @@ export default { 40 ], "order_by": [ - 1857, + 1863, "[league_divisions_order_by!]" ], "where": [ - 1848 + 1854 ] } ], "league_divisions_aggregate": [ - 1845, + 1851, { "distinct_on": [ - 1859, + 1865, "[league_divisions_select_column!]" ], "limit": [ @@ -139647,28 +140238,28 @@ export default { 40 ], "order_by": [ - 1857, + 1863, "[league_divisions_order_by!]" ], "where": [ - 1848 + 1854 ] } ], "league_divisions_by_pk": [ - 1844, + 1850, { "id": [ - 4993, + 4999, "uuid!" ] } ], "league_match_weeks": [ - 1872, + 1878, { "distinct_on": [ - 1893, + 1899, "[league_match_weeks_select_column!]" ], "limit": [ @@ -139678,19 +140269,19 @@ export default { 40 ], "order_by": [ - 1891, + 1897, "[league_match_weeks_order_by!]" ], "where": [ - 1881 + 1887 ] } ], "league_match_weeks_aggregate": [ - 1873, + 1879, { "distinct_on": [ - 1893, + 1899, "[league_match_weeks_select_column!]" ], "limit": [ @@ -139700,28 +140291,28 @@ export default { 40 ], "order_by": [ - 1891, + 1897, "[league_match_weeks_order_by!]" ], "where": [ - 1881 + 1887 ] } ], "league_match_weeks_by_pk": [ - 1872, + 1878, { "id": [ - 4993, + 4999, "uuid!" ] } ], "league_relegation_playoffs": [ - 1913, + 1919, { "distinct_on": [ - 1934, + 1940, "[league_relegation_playoffs_select_column!]" ], "limit": [ @@ -139731,19 +140322,19 @@ export default { 40 ], "order_by": [ - 1932, + 1938, "[league_relegation_playoffs_order_by!]" ], "where": [ - 1922 + 1928 ] } ], "league_relegation_playoffs_aggregate": [ - 1914, + 1920, { "distinct_on": [ - 1934, + 1940, "[league_relegation_playoffs_select_column!]" ], "limit": [ @@ -139753,28 +140344,28 @@ export default { 40 ], "order_by": [ - 1932, + 1938, "[league_relegation_playoffs_order_by!]" ], "where": [ - 1922 + 1928 ] } ], "league_relegation_playoffs_by_pk": [ - 1913, + 1919, { "id": [ - 4993, + 4999, "uuid!" ] } ], "league_scheduling_proposals": [ - 1954, + 1960, { "distinct_on": [ - 1975, + 1981, "[league_scheduling_proposals_select_column!]" ], "limit": [ @@ -139784,19 +140375,19 @@ export default { 40 ], "order_by": [ - 1973, + 1979, "[league_scheduling_proposals_order_by!]" ], "where": [ - 1963 + 1969 ] } ], "league_scheduling_proposals_aggregate": [ - 1955, + 1961, { "distinct_on": [ - 1975, + 1981, "[league_scheduling_proposals_select_column!]" ], "limit": [ @@ -139806,28 +140397,28 @@ export default { 40 ], "order_by": [ - 1973, + 1979, "[league_scheduling_proposals_order_by!]" ], "where": [ - 1963 + 1969 ] } ], "league_scheduling_proposals_by_pk": [ - 1954, + 1960, { "id": [ - 4993, + 4999, "uuid!" ] } ], "league_season_divisions": [ - 1995, + 2001, { "distinct_on": [ - 2014, + 2020, "[league_season_divisions_select_column!]" ], "limit": [ @@ -139837,19 +140428,19 @@ export default { 40 ], "order_by": [ - 2012, + 2018, "[league_season_divisions_order_by!]" ], "where": [ - 2002 + 2008 ] } ], "league_season_divisions_aggregate": [ - 1996, + 2002, { "distinct_on": [ - 2014, + 2020, "[league_season_divisions_select_column!]" ], "limit": [ @@ -139859,28 +140450,28 @@ export default { 40 ], "order_by": [ - 2012, + 2018, "[league_season_divisions_order_by!]" ], "where": [ - 2002 + 2008 ] } ], "league_season_divisions_by_pk": [ - 1995, + 2001, { "id": [ - 4993, + 4999, "uuid!" ] } ], "league_seasons": [ - 2020, + 2026, { "distinct_on": [ - 2040, + 2046, "[league_seasons_select_column!]" ], "limit": [ @@ -139890,19 +140481,19 @@ export default { 40 ], "order_by": [ - 2037, + 2043, "[league_seasons_order_by!]" ], "where": [ - 2025 + 2031 ] } ], "league_seasons_aggregate": [ - 2021, + 2027, { "distinct_on": [ - 2040, + 2046, "[league_seasons_select_column!]" ], "limit": [ @@ -139912,28 +140503,28 @@ export default { 40 ], "order_by": [ - 2037, + 2043, "[league_seasons_order_by!]" ], "where": [ - 2025 + 2031 ] } ], "league_seasons_by_pk": [ - 2020, + 2026, { "id": [ - 4993, + 4999, "uuid!" ] } ], "league_team_movements": [ - 2053, + 2059, { "distinct_on": [ - 2074, + 2080, "[league_team_movements_select_column!]" ], "limit": [ @@ -139943,19 +140534,19 @@ export default { 40 ], "order_by": [ - 2072, + 2078, "[league_team_movements_order_by!]" ], "where": [ - 2062 + 2068 ] } ], "league_team_movements_aggregate": [ - 2054, + 2060, { "distinct_on": [ - 2074, + 2080, "[league_team_movements_select_column!]" ], "limit": [ @@ -139965,28 +140556,28 @@ export default { 40 ], "order_by": [ - 2072, + 2078, "[league_team_movements_order_by!]" ], "where": [ - 2062 + 2068 ] } ], "league_team_movements_by_pk": [ - 2053, + 2059, { "id": [ - 4993, + 4999, "uuid!" ] } ], "league_team_rosters": [ - 2094, + 2100, { "distinct_on": [ - 2115, + 2121, "[league_team_rosters_select_column!]" ], "limit": [ @@ -139996,19 +140587,19 @@ export default { 40 ], "order_by": [ - 2113, + 2119, "[league_team_rosters_order_by!]" ], "where": [ - 2103 + 2109 ] } ], "league_team_rosters_aggregate": [ - 2095, + 2101, { "distinct_on": [ - 2115, + 2121, "[league_team_rosters_select_column!]" ], "limit": [ @@ -140018,32 +140609,32 @@ export default { 40 ], "order_by": [ - 2113, + 2119, "[league_team_rosters_order_by!]" ], "where": [ - 2103 + 2109 ] } ], "league_team_rosters_by_pk": [ - 2094, + 2100, { "league_team_season_id": [ - 4993, + 4999, "uuid!" ], "player_steam_id": [ - 252, + 258, "bigint!" ] } ], "league_team_seasons": [ - 2135, + 2141, { "distinct_on": [ - 2157, + 2163, "[league_team_seasons_select_column!]" ], "limit": [ @@ -140053,19 +140644,19 @@ export default { 40 ], "order_by": [ - 2155, + 2161, "[league_team_seasons_order_by!]" ], "where": [ - 2144 + 2150 ] } ], "league_team_seasons_aggregate": [ - 2136, + 2142, { "distinct_on": [ - 2157, + 2163, "[league_team_seasons_select_column!]" ], "limit": [ @@ -140075,28 +140666,28 @@ export default { 40 ], "order_by": [ - 2155, + 2161, "[league_team_seasons_order_by!]" ], "where": [ - 2144 + 2150 ] } ], "league_team_seasons_by_pk": [ - 2135, + 2141, { "id": [ - 4993, + 4999, "uuid!" ] } ], "league_teams": [ - 2177, + 2183, { "distinct_on": [ - 2190, + 2196, "[league_teams_select_column!]" ], "limit": [ @@ -140106,19 +140697,19 @@ export default { 40 ], "order_by": [ - 2188, + 2194, "[league_teams_order_by!]" ], "where": [ - 2180 + 2186 ] } ], "league_teams_aggregate": [ - 2178, + 2184, { "distinct_on": [ - 2190, + 2196, "[league_teams_select_column!]" ], "limit": [ @@ -140128,19 +140719,19 @@ export default { 40 ], "order_by": [ - 2188, + 2194, "[league_teams_order_by!]" ], "where": [ - 2180 + 2186 ] } ], "league_teams_by_pk": [ - 2177, + 2183, { "id": [ - 4993, + 4999, "uuid!" ] } @@ -140161,10 +140752,10 @@ export default { } ], "lobbies": [ - 2196, + 2202, { "distinct_on": [ - 2209, + 2215, "[lobbies_select_column!]" ], "limit": [ @@ -140174,19 +140765,19 @@ export default { 40 ], "order_by": [ - 2207, + 2213, "[lobbies_order_by!]" ], "where": [ - 2199 + 2205 ] } ], "lobbies_aggregate": [ - 2197, + 2203, { "distinct_on": [ - 2209, + 2215, "[lobbies_select_column!]" ], "limit": [ @@ -140196,28 +140787,28 @@ export default { 40 ], "order_by": [ - 2207, + 2213, "[lobbies_order_by!]" ], "where": [ - 2199 + 2205 ] } ], "lobbies_by_pk": [ - 2196, + 2202, { "id": [ - 4993, + 4999, "uuid!" ] } ], "lobby_players": [ - 2215, + 2221, { "distinct_on": [ - 2238, + 2244, "[lobby_players_select_column!]" ], "limit": [ @@ -140227,19 +140818,19 @@ export default { 40 ], "order_by": [ - 2236, + 2242, "[lobby_players_order_by!]" ], "where": [ - 2226 + 2232 ] } ], "lobby_players_aggregate": [ - 2216, + 2222, { "distinct_on": [ - 2238, + 2244, "[lobby_players_select_column!]" ], "limit": [ @@ -140249,32 +140840,32 @@ export default { 40 ], "order_by": [ - 2236, + 2242, "[lobby_players_order_by!]" ], "where": [ - 2226 + 2232 ] } ], "lobby_players_by_pk": [ - 2215, + 2221, { "lobby_id": [ - 4993, + 4999, "uuid!" ], "steam_id": [ - 252, + 258, "bigint!" ] } ], "map_pools": [ - 2260, + 2266, { "distinct_on": [ - 2273, + 2279, "[map_pools_select_column!]" ], "limit": [ @@ -140284,19 +140875,19 @@ export default { 40 ], "order_by": [ - 2271, + 2277, "[map_pools_order_by!]" ], "where": [ - 2263 + 2269 ] } ], "map_pools_aggregate": [ - 2261, + 2267, { "distinct_on": [ - 2273, + 2279, "[map_pools_select_column!]" ], "limit": [ @@ -140306,28 +140897,28 @@ export default { 40 ], "order_by": [ - 2271, + 2277, "[map_pools_order_by!]" ], "where": [ - 2263 + 2269 ] } ], "map_pools_by_pk": [ - 2260, + 2266, { "id": [ - 4993, + 4999, "uuid!" ] } ], "maps": [ - 2279, + 2285, { "distinct_on": [ - 2300, + 2306, "[maps_select_column!]" ], "limit": [ @@ -140337,19 +140928,19 @@ export default { 40 ], "order_by": [ - 2298, + 2304, "[maps_order_by!]" ], "where": [ - 2288 + 2294 ] } ], "maps_aggregate": [ - 2280, + 2286, { "distinct_on": [ - 2300, + 2306, "[maps_select_column!]" ], "limit": [ @@ -140359,28 +140950,28 @@ export default { 40 ], "order_by": [ - 2298, + 2304, "[maps_order_by!]" ], "where": [ - 2288 + 2294 ] } ], "maps_by_pk": [ - 2279, + 2285, { "id": [ - 4993, + 4999, "uuid!" ] } ], "match_clips": [ - 2308, + 2314, { "distinct_on": [ - 2330, + 2336, "[match_clips_select_column!]" ], "limit": [ @@ -140390,19 +140981,19 @@ export default { 40 ], "order_by": [ - 2328, + 2334, "[match_clips_order_by!]" ], "where": [ - 2317 + 2323 ] } ], "match_clips_aggregate": [ - 2309, + 2315, { "distinct_on": [ - 2330, + 2336, "[match_clips_select_column!]" ], "limit": [ @@ -140412,28 +141003,28 @@ export default { 40 ], "order_by": [ - 2328, + 2334, "[match_clips_order_by!]" ], "where": [ - 2317 + 2323 ] } ], "match_clips_by_pk": [ - 2308, + 2314, { "id": [ - 4993, + 4999, "uuid!" ] } ], "match_demo_sessions": [ - 2350, + 2356, { "distinct_on": [ - 2376, + 2382, "[match_demo_sessions_select_column!]" ], "limit": [ @@ -140443,19 +141034,19 @@ export default { 40 ], "order_by": [ - 2373, + 2379, "[match_demo_sessions_order_by!]" ], "where": [ - 2360 + 2366 ] } ], "match_demo_sessions_aggregate": [ - 2351, + 2357, { "distinct_on": [ - 2376, + 2382, "[match_demo_sessions_select_column!]" ], "limit": [ @@ -140465,28 +141056,28 @@ export default { 40 ], "order_by": [ - 2373, + 2379, "[match_demo_sessions_order_by!]" ], "where": [ - 2360 + 2366 ] } ], "match_demo_sessions_by_pk": [ - 2350, + 2356, { "id": [ - 4993, + 4999, "uuid!" ] } ], "match_lineup_players": [ - 2396, + 2402, { "distinct_on": [ - 2419, + 2425, "[match_lineup_players_select_column!]" ], "limit": [ @@ -140496,19 +141087,19 @@ export default { 40 ], "order_by": [ - 2417, + 2423, "[match_lineup_players_order_by!]" ], "where": [ - 2407 + 2413 ] } ], "match_lineup_players_aggregate": [ - 2397, + 2403, { "distinct_on": [ - 2419, + 2425, "[match_lineup_players_select_column!]" ], "limit": [ @@ -140518,28 +141109,28 @@ export default { 40 ], "order_by": [ - 2417, + 2423, "[match_lineup_players_order_by!]" ], "where": [ - 2407 + 2413 ] } ], "match_lineup_players_by_pk": [ - 2396, + 2402, { "id": [ - 4993, + 4999, "uuid!" ] } ], "match_lineups": [ - 2441, + 2447, { "distinct_on": [ - 2463, + 2469, "[match_lineups_select_column!]" ], "limit": [ @@ -140549,19 +141140,19 @@ export default { 40 ], "order_by": [ - 2461, + 2467, "[match_lineups_order_by!]" ], "where": [ - 2450 + 2456 ] } ], "match_lineups_aggregate": [ - 2442, + 2448, { "distinct_on": [ - 2463, + 2469, "[match_lineups_select_column!]" ], "limit": [ @@ -140571,28 +141162,28 @@ export default { 40 ], "order_by": [ - 2461, + 2467, "[match_lineups_order_by!]" ], "where": [ - 2450 + 2456 ] } ], "match_lineups_by_pk": [ - 2441, + 2447, { "id": [ - 4993, + 4999, "uuid!" ] } ], "match_map_demos": [ - 2483, + 2489, { "distinct_on": [ - 2512, + 2518, "[match_map_demos_select_column!]" ], "limit": [ @@ -140602,19 +141193,19 @@ export default { 40 ], "order_by": [ - 2509, + 2515, "[match_map_demos_order_by!]" ], "where": [ - 2495 + 2501 ] } ], "match_map_demos_aggregate": [ - 2484, + 2490, { "distinct_on": [ - 2512, + 2518, "[match_map_demos_select_column!]" ], "limit": [ @@ -140624,28 +141215,28 @@ export default { 40 ], "order_by": [ - 2509, + 2515, "[match_map_demos_order_by!]" ], "where": [ - 2495 + 2501 ] } ], "match_map_demos_by_pk": [ - 2483, + 2489, { "id": [ - 4993, + 4999, "uuid!" ] } ], "match_map_rounds": [ - 2534, + 2540, { "distinct_on": [ - 2555, + 2561, "[match_map_rounds_select_column!]" ], "limit": [ @@ -140655,19 +141246,19 @@ export default { 40 ], "order_by": [ - 2553, + 2559, "[match_map_rounds_order_by!]" ], "where": [ - 2543 + 2549 ] } ], "match_map_rounds_aggregate": [ - 2535, + 2541, { "distinct_on": [ - 2555, + 2561, "[match_map_rounds_select_column!]" ], "limit": [ @@ -140677,28 +141268,28 @@ export default { 40 ], "order_by": [ - 2553, + 2559, "[match_map_rounds_order_by!]" ], "where": [ - 2543 + 2549 ] } ], "match_map_rounds_by_pk": [ - 2534, + 2540, { "id": [ - 4993, + 4999, "uuid!" ] } ], "match_map_veto_picks": [ - 2575, + 2581, { "distinct_on": [ - 2593, + 2599, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -140708,19 +141299,19 @@ export default { 40 ], "order_by": [ - 2591, + 2597, "[match_map_veto_picks_order_by!]" ], "where": [ - 2582 + 2588 ] } ], "match_map_veto_picks_aggregate": [ - 2576, + 2582, { "distinct_on": [ - 2593, + 2599, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -140730,28 +141321,28 @@ export default { 40 ], "order_by": [ - 2591, + 2597, "[match_map_veto_picks_order_by!]" ], "where": [ - 2582 + 2588 ] } ], "match_map_veto_picks_by_pk": [ - 2575, + 2581, { "id": [ - 4993, + 4999, "uuid!" ] } ], "match_maps": [ - 2599, + 2605, { "distinct_on": [ - 2621, + 2627, "[match_maps_select_column!]" ], "limit": [ @@ -140761,19 +141352,19 @@ export default { 40 ], "order_by": [ - 2619, + 2625, "[match_maps_order_by!]" ], "where": [ - 2608 + 2614 ] } ], "match_maps_aggregate": [ - 2600, + 2606, { "distinct_on": [ - 2621, + 2627, "[match_maps_select_column!]" ], "limit": [ @@ -140783,28 +141374,28 @@ export default { 40 ], "order_by": [ - 2619, + 2625, "[match_maps_order_by!]" ], "where": [ - 2608 + 2614 ] } ], "match_maps_by_pk": [ - 2599, + 2605, { "id": [ - 4993, + 4999, "uuid!" ] } ], "match_options": [ - 2641, + 2647, { "distinct_on": [ - 2656, + 2662, "[match_options_select_column!]" ], "limit": [ @@ -140814,19 +141405,19 @@ export default { 40 ], "order_by": [ - 2654, + 2660, "[match_options_order_by!]" ], "where": [ - 2645 + 2651 ] } ], "match_options_aggregate": [ - 2642, + 2648, { "distinct_on": [ - 2656, + 2662, "[match_options_select_column!]" ], "limit": [ @@ -140836,28 +141427,28 @@ export default { 40 ], "order_by": [ - 2654, + 2660, "[match_options_order_by!]" ], "where": [ - 2645 + 2651 ] } ], "match_options_by_pk": [ - 2641, + 2647, { "id": [ - 4993, + 4999, "uuid!" ] } ], "match_region_veto_picks": [ - 2669, + 2675, { "distinct_on": [ - 2687, + 2693, "[match_region_veto_picks_select_column!]" ], "limit": [ @@ -140867,19 +141458,19 @@ export default { 40 ], "order_by": [ - 2685, + 2691, "[match_region_veto_picks_order_by!]" ], "where": [ - 2676 + 2682 ] } ], "match_region_veto_picks_aggregate": [ - 2670, + 2676, { "distinct_on": [ - 2687, + 2693, "[match_region_veto_picks_select_column!]" ], "limit": [ @@ -140889,28 +141480,28 @@ export default { 40 ], "order_by": [ - 2685, + 2691, "[match_region_veto_picks_order_by!]" ], "where": [ - 2676 + 2682 ] } ], "match_region_veto_picks_by_pk": [ - 2669, + 2675, { "id": [ - 4993, + 4999, "uuid!" ] } ], "match_streams": [ - 2693, + 2699, { "distinct_on": [ - 2721, + 2727, "[match_streams_select_column!]" ], "limit": [ @@ -140920,19 +141511,19 @@ export default { 40 ], "order_by": [ - 2718, + 2724, "[match_streams_order_by!]" ], "where": [ - 2705 + 2711 ] } ], "match_streams_aggregate": [ - 2694, + 2700, { "distinct_on": [ - 2721, + 2727, "[match_streams_select_column!]" ], "limit": [ @@ -140942,28 +141533,28 @@ export default { 40 ], "order_by": [ - 2718, + 2724, "[match_streams_order_by!]" ], "where": [ - 2705 + 2711 ] } ], "match_streams_by_pk": [ - 2693, + 2699, { "id": [ - 4993, + 4999, "uuid!" ] } ], "match_type_cfgs": [ - 2743, + 2749, { "distinct_on": [ - 2755, + 2761, "[match_type_cfgs_select_column!]" ], "limit": [ @@ -140973,19 +141564,19 @@ export default { 40 ], "order_by": [ - 2753, + 2759, "[match_type_cfgs_order_by!]" ], "where": [ - 2746 + 2752 ] } ], "match_type_cfgs_aggregate": [ - 2744, + 2750, { "distinct_on": [ - 2755, + 2761, "[match_type_cfgs_select_column!]" ], "limit": [ @@ -140995,28 +141586,28 @@ export default { 40 ], "order_by": [ - 2753, + 2759, "[match_type_cfgs_order_by!]" ], "where": [ - 2746 + 2752 ] } ], "match_type_cfgs_by_pk": [ - 2743, + 2749, { "type": [ - 735, + 741, "e_game_cfg_types_enum!" ] } ], "matches": [ - 2761, + 2767, { "distinct_on": [ - 2783, + 2789, "[matches_select_column!]" ], "limit": [ @@ -141026,19 +141617,19 @@ export default { 40 ], "order_by": [ - 2781, + 2787, "[matches_order_by!]" ], "where": [ - 2770 + 2776 ] } ], "matches_aggregate": [ - 2762, + 2768, { "distinct_on": [ - 2783, + 2789, "[matches_select_column!]" ], "limit": [ @@ -141048,19 +141639,19 @@ export default { 40 ], "order_by": [ - 2781, + 2787, "[matches_order_by!]" ], "where": [ - 2770 + 2776 ] } ], "matches_by_pk": [ - 2761, + 2767, { "id": [ - 4993, + 4999, "uuid!" ] } @@ -141069,10 +141660,10 @@ export default { 47 ], "migration_hashes_hashes": [ - 2803, + 2809, { "distinct_on": [ - 2815, + 2821, "[migration_hashes_hashes_select_column!]" ], "limit": [ @@ -141082,19 +141673,19 @@ export default { 40 ], "order_by": [ - 2813, + 2819, "[migration_hashes_hashes_order_by!]" ], "where": [ - 2806 + 2812 ] } ], "migration_hashes_hashes_aggregate": [ - 2804, + 2810, { "distinct_on": [ - 2815, + 2821, "[migration_hashes_hashes_select_column!]" ], "limit": [ @@ -141104,16 +141695,16 @@ export default { 40 ], "order_by": [ - 2813, + 2819, "[migration_hashes_hashes_order_by!]" ], "where": [ - 2806 + 2812 ] } ], "migration_hashes_hashes_by_pk": [ - 2803, + 2809, { "name": [ 80, @@ -141122,10 +141713,10 @@ export default { } ], "my_friends": [ - 2821, + 2827, { "distinct_on": [ - 2846, + 2852, "[my_friends_select_column!]" ], "limit": [ @@ -141135,19 +141726,19 @@ export default { 40 ], "order_by": [ - 2844, + 2850, "[my_friends_order_by!]" ], "where": [ - 2833 + 2839 ] } ], "my_friends_aggregate": [ - 2822, + 2828, { "distinct_on": [ - 2846, + 2852, "[my_friends_select_column!]" ], "limit": [ @@ -141157,11 +141748,11 @@ export default { 40 ], "order_by": [ - 2844, + 2850, "[my_friends_order_by!]" ], "where": [ - 2833 + 2839 ] } ], @@ -141169,7 +141760,7 @@ export default { 50, { "id": [ - 4993, + 4999, "uuid!" ] } @@ -141178,10 +141769,10 @@ export default { 50 ], "news_articles": [ - 2867, + 2873, { "distinct_on": [ - 2881, + 2887, "[news_articles_select_column!]" ], "limit": [ @@ -141191,19 +141782,19 @@ export default { 40 ], "order_by": [ - 2879, + 2885, "[news_articles_order_by!]" ], "where": [ - 2871 + 2877 ] } ], "news_articles_aggregate": [ - 2868, + 2874, { "distinct_on": [ - 2881, + 2887, "[news_articles_select_column!]" ], "limit": [ @@ -141213,28 +141804,28 @@ export default { 40 ], "order_by": [ - 2879, + 2885, "[news_articles_order_by!]" ], "where": [ - 2871 + 2877 ] } ], "news_articles_by_pk": [ - 2867, + 2873, { "id": [ - 4993, + 4999, "uuid!" ] } ], "notifications": [ - 2894, + 2900, { "distinct_on": [ - 2922, + 2928, "[notifications_select_column!]" ], "limit": [ @@ -141244,19 +141835,19 @@ export default { 40 ], "order_by": [ - 2919, + 2925, "[notifications_order_by!]" ], "where": [ - 2906 + 2912 ] } ], "notifications_aggregate": [ - 2895, + 2901, { "distinct_on": [ - 2922, + 2928, "[notifications_select_column!]" ], "limit": [ @@ -141266,28 +141857,28 @@ export default { 40 ], "order_by": [ - 2919, + 2925, "[notifications_order_by!]" ], "where": [ - 2906 + 2912 ] } ], "notifications_by_pk": [ - 2894, + 2900, { "id": [ - 4993, + 4999, "uuid!" ] } ], "pending_match_import_players": [ - 2947, + 2953, { "distinct_on": [ - 2968, + 2974, "[pending_match_import_players_select_column!]" ], "limit": [ @@ -141297,19 +141888,19 @@ export default { 40 ], "order_by": [ - 2966, + 2972, "[pending_match_import_players_order_by!]" ], "where": [ - 2956 + 2962 ] } ], "pending_match_import_players_aggregate": [ - 2948, + 2954, { "distinct_on": [ - 2968, + 2974, "[pending_match_import_players_select_column!]" ], "limit": [ @@ -141319,32 +141910,32 @@ export default { 40 ], "order_by": [ - 2966, + 2972, "[pending_match_import_players_order_by!]" ], "where": [ - 2956 + 2962 ] } ], "pending_match_import_players_by_pk": [ - 2947, + 2953, { "steam_id": [ - 252, + 258, "bigint!" ], "valve_match_id": [ - 2944, + 2950, "numeric!" ] } ], "pending_match_imports": [ - 2988, + 2994, { "distinct_on": [ - 3003, + 3009, "[pending_match_imports_select_column!]" ], "limit": [ @@ -141354,19 +141945,19 @@ export default { 40 ], "order_by": [ - 3001, + 3007, "[pending_match_imports_order_by!]" ], "where": [ - 2992 + 2998 ] } ], "pending_match_imports_aggregate": [ - 2989, + 2995, { "distinct_on": [ - 3003, + 3009, "[pending_match_imports_select_column!]" ], "limit": [ @@ -141376,28 +141967,28 @@ export default { 40 ], "order_by": [ - 3001, + 3007, "[pending_match_imports_order_by!]" ], "where": [ - 2992 + 2998 ] } ], "pending_match_imports_by_pk": [ - 2988, + 2994, { "valve_match_id": [ - 2944, + 2950, "numeric!" ] } ], "player_aim_stats_demo": [ - 3016, + 3022, { "distinct_on": [ - 3030, + 3036, "[player_aim_stats_demo_select_column!]" ], "limit": [ @@ -141407,19 +141998,19 @@ export default { 40 ], "order_by": [ - 3028, + 3034, "[player_aim_stats_demo_order_by!]" ], "where": [ - 3020 + 3026 ] } ], "player_aim_stats_demo_aggregate": [ - 3017, + 3023, { "distinct_on": [ - 3030, + 3036, "[player_aim_stats_demo_select_column!]" ], "limit": [ @@ -141429,32 +142020,32 @@ export default { 40 ], "order_by": [ - 3028, + 3034, "[player_aim_stats_demo_order_by!]" ], "where": [ - 3020 + 3026 ] } ], "player_aim_stats_demo_by_pk": [ - 3016, + 3022, { "attacker_steam_id": [ - 252, + 258, "bigint!" ], "match_map_id": [ - 4993, + 4999, "uuid!" ] } ], "player_aim_weapon_stats": [ - 3043, + 3049, { "distinct_on": [ - 3064, + 3070, "[player_aim_weapon_stats_select_column!]" ], "limit": [ @@ -141464,19 +142055,19 @@ export default { 40 ], "order_by": [ - 3062, + 3068, "[player_aim_weapon_stats_order_by!]" ], "where": [ - 3052 + 3058 ] } ], "player_aim_weapon_stats_aggregate": [ - 3044, + 3050, { "distinct_on": [ - 3064, + 3070, "[player_aim_weapon_stats_select_column!]" ], "limit": [ @@ -141486,23 +142077,23 @@ export default { 40 ], "order_by": [ - 3062, + 3068, "[player_aim_weapon_stats_order_by!]" ], "where": [ - 3052 + 3058 ] } ], "player_aim_weapon_stats_by_pk": [ - 3043, + 3049, { "match_map_id": [ - 4993, + 4999, "uuid!" ], "steam_id": [ - 252, + 258, "bigint!" ], "weapon_class": [ @@ -141512,10 +142103,10 @@ export default { } ], "player_assists": [ - 3084, + 3090, { "distinct_on": [ - 3107, + 3113, "[player_assists_select_column!]" ], "limit": [ @@ -141525,19 +142116,19 @@ export default { 40 ], "order_by": [ - 3105, + 3111, "[player_assists_order_by!]" ], "where": [ - 3095 + 3101 ] } ], "player_assists_aggregate": [ - 3085, + 3091, { "distinct_on": [ - 3107, + 3113, "[player_assists_select_column!]" ], "limit": [ @@ -141547,40 +142138,40 @@ export default { 40 ], "order_by": [ - 3105, + 3111, "[player_assists_order_by!]" ], "where": [ - 3095 + 3101 ] } ], "player_assists_by_pk": [ - 3084, + 3090, { "attacked_steam_id": [ - 252, + 258, "bigint!" ], "attacker_steam_id": [ - 252, + 258, "bigint!" ], "match_map_id": [ - 4993, + 4999, "uuid!" ], "time": [ - 4493, + 4499, "timestamptz!" ] } ], "player_career_stats_v": [ - 3129, + 3135, { "distinct_on": [ - 3137, + 3143, "[player_career_stats_v_select_column!]" ], "limit": [ @@ -141590,19 +142181,19 @@ export default { 40 ], "order_by": [ - 3136, + 3142, "[player_career_stats_v_order_by!]" ], "where": [ - 3133 + 3139 ] } ], "player_career_stats_v_aggregate": [ - 3130, + 3136, { "distinct_on": [ - 3137, + 3143, "[player_career_stats_v_select_column!]" ], "limit": [ @@ -141612,19 +142203,19 @@ export default { 40 ], "order_by": [ - 3136, + 3142, "[player_career_stats_v_order_by!]" ], "where": [ - 3133 + 3139 ] } ], "player_damages": [ - 3147, + 3153, { "distinct_on": [ - 3168, + 3174, "[player_damages_select_column!]" ], "limit": [ @@ -141634,19 +142225,19 @@ export default { 40 ], "order_by": [ - 3166, + 3172, "[player_damages_order_by!]" ], "where": [ - 3156 + 3162 ] } ], "player_damages_aggregate": [ - 3148, + 3154, { "distinct_on": [ - 3168, + 3174, "[player_damages_select_column!]" ], "limit": [ @@ -141656,36 +142247,36 @@ export default { 40 ], "order_by": [ - 3166, + 3172, "[player_damages_order_by!]" ], "where": [ - 3156 + 3162 ] } ], "player_damages_by_pk": [ - 3147, + 3153, { "id": [ - 4993, + 4999, "uuid!" ], "match_map_id": [ - 4993, + 4999, "uuid!" ], "time": [ - 4493, + 4499, "timestamptz!" ] } ], "player_elo": [ - 3188, + 3194, { "distinct_on": [ - 3202, + 3208, "[player_elo_select_column!]" ], "limit": [ @@ -141695,19 +142286,19 @@ export default { 40 ], "order_by": [ - 3200, + 3206, "[player_elo_order_by!]" ], "where": [ - 3192 + 3198 ] } ], "player_elo_aggregate": [ - 3189, + 3195, { "distinct_on": [ - 3202, + 3208, "[player_elo_select_column!]" ], "limit": [ @@ -141717,36 +142308,36 @@ export default { 40 ], "order_by": [ - 3200, + 3206, "[player_elo_order_by!]" ], "where": [ - 3192 + 3198 ] } ], "player_elo_by_pk": [ - 3188, + 3194, { "match_id": [ - 4993, + 4999, "uuid!" ], "steam_id": [ - 252, + 258, "bigint!" ], "type": [ - 1004, + 1010, "e_match_types_enum!" ] } ], "player_faceit_rank_history": [ - 3215, + 3221, { "distinct_on": [ - 3236, + 3242, "[player_faceit_rank_history_select_column!]" ], "limit": [ @@ -141756,19 +142347,19 @@ export default { 40 ], "order_by": [ - 3234, + 3240, "[player_faceit_rank_history_order_by!]" ], "where": [ - 3224 + 3230 ] } ], "player_faceit_rank_history_aggregate": [ - 3216, + 3222, { "distinct_on": [ - 3236, + 3242, "[player_faceit_rank_history_select_column!]" ], "limit": [ @@ -141778,28 +142369,28 @@ export default { 40 ], "order_by": [ - 3234, + 3240, "[player_faceit_rank_history_order_by!]" ], "where": [ - 3224 + 3230 ] } ], "player_faceit_rank_history_by_pk": [ - 3215, + 3221, { "id": [ - 4993, + 4999, "uuid!" ] } ], "player_flashes": [ - 3256, + 3262, { "distinct_on": [ - 3279, + 3285, "[player_flashes_select_column!]" ], "limit": [ @@ -141809,19 +142400,19 @@ export default { 40 ], "order_by": [ - 3277, + 3283, "[player_flashes_order_by!]" ], "where": [ - 3267 + 3273 ] } ], "player_flashes_aggregate": [ - 3257, + 3263, { "distinct_on": [ - 3279, + 3285, "[player_flashes_select_column!]" ], "limit": [ @@ -141831,40 +142422,40 @@ export default { 40 ], "order_by": [ - 3277, + 3283, "[player_flashes_order_by!]" ], "where": [ - 3267 + 3273 ] } ], "player_flashes_by_pk": [ - 3256, + 3262, { "attacked_steam_id": [ - 252, + 258, "bigint!" ], "attacker_steam_id": [ - 252, + 258, "bigint!" ], "match_map_id": [ - 4993, + 4999, "uuid!" ], "time": [ - 4493, + 4499, "timestamptz!" ] } ], "player_kills": [ - 3301, + 3307, { "distinct_on": [ - 3365, + 3371, "[player_kills_select_column!]" ], "limit": [ @@ -141874,19 +142465,19 @@ export default { 40 ], "order_by": [ - 3363, + 3369, "[player_kills_order_by!]" ], "where": [ - 3312 + 3318 ] } ], "player_kills_aggregate": [ - 3302, + 3308, { "distinct_on": [ - 3365, + 3371, "[player_kills_select_column!]" ], "limit": [ @@ -141896,40 +142487,40 @@ export default { 40 ], "order_by": [ - 3363, + 3369, "[player_kills_order_by!]" ], "where": [ - 3312 + 3318 ] } ], "player_kills_by_pk": [ - 3301, + 3307, { "attacked_steam_id": [ - 252, + 258, "bigint!" ], "attacker_steam_id": [ - 252, + 258, "bigint!" ], "match_map_id": [ - 4993, + 4999, "uuid!" ], "time": [ - 4493, + 4499, "timestamptz!" ] } ], "player_kills_by_weapon": [ - 3313, + 3319, { "distinct_on": [ - 3334, + 3340, "[player_kills_by_weapon_select_column!]" ], "limit": [ @@ -141939,19 +142530,19 @@ export default { 40 ], "order_by": [ - 3332, + 3338, "[player_kills_by_weapon_order_by!]" ], "where": [ - 3322 + 3328 ] } ], "player_kills_by_weapon_aggregate": [ - 3314, + 3320, { "distinct_on": [ - 3334, + 3340, "[player_kills_by_weapon_select_column!]" ], "limit": [ @@ -141961,19 +142552,19 @@ export default { 40 ], "order_by": [ - 3332, + 3338, "[player_kills_by_weapon_order_by!]" ], "where": [ - 3322 + 3328 ] } ], "player_kills_by_weapon_by_pk": [ - 3313, + 3319, { "player_steam_id": [ - 252, + 258, "bigint!" ], "with": [ @@ -141983,10 +142574,10 @@ export default { } ], "player_leaderboard_rank": [ - 3387, + 3393, { "distinct_on": [ - 3398, + 3404, "[player_leaderboard_rank_select_column!]" ], "limit": [ @@ -141996,19 +142587,19 @@ export default { 40 ], "order_by": [ - 3397, + 3403, "[player_leaderboard_rank_order_by!]" ], "where": [ - 3391 + 3397 ] } ], "player_leaderboard_rank_aggregate": [ - 3388, + 3394, { "distinct_on": [ - 3398, + 3404, "[player_leaderboard_rank_select_column!]" ], "limit": [ @@ -142018,19 +142609,19 @@ export default { 40 ], "order_by": [ - 3397, + 3403, "[player_leaderboard_rank_order_by!]" ], "where": [ - 3391 + 3397 ] } ], "player_match_map_stats": [ - 3410, + 3416, { "distinct_on": [ - 3431, + 3437, "[player_match_map_stats_select_column!]" ], "limit": [ @@ -142040,19 +142631,19 @@ export default { 40 ], "order_by": [ - 3429, + 3435, "[player_match_map_stats_order_by!]" ], "where": [ - 3419 + 3425 ] } ], "player_match_map_stats_aggregate": [ - 3411, + 3417, { "distinct_on": [ - 3431, + 3437, "[player_match_map_stats_select_column!]" ], "limit": [ @@ -142062,32 +142653,32 @@ export default { 40 ], "order_by": [ - 3429, + 3435, "[player_match_map_stats_order_by!]" ], "where": [ - 3419 + 3425 ] } ], "player_match_map_stats_by_pk": [ - 3410, + 3416, { "match_map_id": [ - 4993, + 4999, "uuid!" ], "steam_id": [ - 252, + 258, "bigint!" ] } ], "player_match_performance_v": [ - 3451, + 3457, { "distinct_on": [ - 3459, + 3465, "[player_match_performance_v_select_column!]" ], "limit": [ @@ -142097,19 +142688,19 @@ export default { 40 ], "order_by": [ - 3458, + 3464, "[player_match_performance_v_order_by!]" ], "where": [ - 3455 + 3461 ] } ], "player_match_performance_v_aggregate": [ - 3452, + 3458, { "distinct_on": [ - 3459, + 3465, "[player_match_performance_v_select_column!]" ], "limit": [ @@ -142119,19 +142710,19 @@ export default { 40 ], "order_by": [ - 3458, + 3464, "[player_match_performance_v_order_by!]" ], "where": [ - 3455 + 3461 ] } ], "player_match_stats_v": [ - 3469, + 3475, { "distinct_on": [ - 3485, + 3491, "[player_match_stats_v_select_column!]" ], "limit": [ @@ -142141,19 +142732,19 @@ export default { 40 ], "order_by": [ - 3484, + 3490, "[player_match_stats_v_order_by!]" ], "where": [ - 3478 + 3484 ] } ], "player_match_stats_v_aggregate": [ - 3470, + 3476, { "distinct_on": [ - 3485, + 3491, "[player_match_stats_v_select_column!]" ], "limit": [ @@ -142163,19 +142754,19 @@ export default { 40 ], "order_by": [ - 3484, + 3490, "[player_match_stats_v_order_by!]" ], "where": [ - 3478 + 3484 ] } ], "player_objectives": [ - 3502, + 3508, { "distinct_on": [ - 3523, + 3529, "[player_objectives_select_column!]" ], "limit": [ @@ -142185,19 +142776,19 @@ export default { 40 ], "order_by": [ - 3521, + 3527, "[player_objectives_order_by!]" ], "where": [ - 3511 + 3517 ] } ], "player_objectives_aggregate": [ - 3503, + 3509, { "distinct_on": [ - 3523, + 3529, "[player_objectives_select_column!]" ], "limit": [ @@ -142207,36 +142798,36 @@ export default { 40 ], "order_by": [ - 3521, + 3527, "[player_objectives_order_by!]" ], "where": [ - 3511 + 3517 ] } ], "player_objectives_by_pk": [ - 3502, + 3508, { "match_map_id": [ - 4993, + 4999, "uuid!" ], "player_steam_id": [ - 252, + 258, "bigint!" ], "time": [ - 4493, + 4499, "timestamptz!" ] } ], "player_performance_v": [ - 3543, + 3549, { "distinct_on": [ - 3551, + 3557, "[player_performance_v_select_column!]" ], "limit": [ @@ -142246,19 +142837,19 @@ export default { 40 ], "order_by": [ - 3550, + 3556, "[player_performance_v_order_by!]" ], "where": [ - 3547 + 3553 ] } ], "player_performance_v_aggregate": [ - 3544, + 3550, { "distinct_on": [ - 3551, + 3557, "[player_performance_v_select_column!]" ], "limit": [ @@ -142268,19 +142859,19 @@ export default { 40 ], "order_by": [ - 3550, + 3556, "[player_performance_v_order_by!]" ], "where": [ - 3547 + 3553 ] } ], "player_premier_rank_history": [ - 3561, + 3567, { "distinct_on": [ - 3582, + 3588, "[player_premier_rank_history_select_column!]" ], "limit": [ @@ -142290,19 +142881,19 @@ export default { 40 ], "order_by": [ - 3580, + 3586, "[player_premier_rank_history_order_by!]" ], "where": [ - 3570 + 3576 ] } ], "player_premier_rank_history_aggregate": [ - 3562, + 3568, { "distinct_on": [ - 3582, + 3588, "[player_premier_rank_history_select_column!]" ], "limit": [ @@ -142312,28 +142903,28 @@ export default { 40 ], "order_by": [ - 3580, + 3586, "[player_premier_rank_history_order_by!]" ], "where": [ - 3570 + 3576 ] } ], "player_premier_rank_history_by_pk": [ - 3561, + 3567, { "id": [ - 4993, + 4999, "uuid!" ] } ], "player_sanctions": [ - 3602, + 3608, { "distinct_on": [ - 3623, + 3629, "[player_sanctions_select_column!]" ], "limit": [ @@ -142343,19 +142934,19 @@ export default { 40 ], "order_by": [ - 3621, + 3627, "[player_sanctions_order_by!]" ], "where": [ - 3611 + 3617 ] } ], "player_sanctions_aggregate": [ - 3603, + 3609, { "distinct_on": [ - 3623, + 3629, "[player_sanctions_select_column!]" ], "limit": [ @@ -142365,32 +142956,32 @@ export default { 40 ], "order_by": [ - 3621, + 3627, "[player_sanctions_order_by!]" ], "where": [ - 3611 + 3617 ] } ], "player_sanctions_by_pk": [ - 3602, + 3608, { "created_at": [ - 4493, + 4499, "timestamptz!" ], "id": [ - 4993, + 4999, "uuid!" ] } ], "player_season_stats": [ - 3643, + 3649, { "distinct_on": [ - 3674, + 3680, "[player_season_stats_select_column!]" ], "limit": [ @@ -142400,19 +142991,19 @@ export default { 40 ], "order_by": [ - 3672, + 3678, "[player_season_stats_order_by!]" ], "where": [ - 3662 + 3668 ] } ], "player_season_stats_aggregate": [ - 3644, + 3650, { "distinct_on": [ - 3674, + 3680, "[player_season_stats_select_column!]" ], "limit": [ @@ -142422,32 +143013,32 @@ export default { 40 ], "order_by": [ - 3672, + 3678, "[player_season_stats_order_by!]" ], "where": [ - 3662 + 3668 ] } ], "player_season_stats_by_pk": [ - 3643, + 3649, { "player_steam_id": [ - 252, + 258, "bigint!" ], "season_id": [ - 4993, + 4999, "uuid!" ] } ], "player_stats": [ - 3702, + 3708, { "distinct_on": [ - 3717, + 3723, "[player_stats_select_column!]" ], "limit": [ @@ -142457,19 +143048,19 @@ export default { 40 ], "order_by": [ - 3715, + 3721, "[player_stats_order_by!]" ], "where": [ - 3706 + 3712 ] } ], "player_stats_aggregate": [ - 3703, + 3709, { "distinct_on": [ - 3717, + 3723, "[player_stats_select_column!]" ], "limit": [ @@ -142479,28 +143070,28 @@ export default { 40 ], "order_by": [ - 3715, + 3721, "[player_stats_order_by!]" ], "where": [ - 3706 + 3712 ] } ], "player_stats_by_pk": [ - 3702, + 3708, { "player_steam_id": [ - 252, + 258, "bigint!" ] } ], "player_steam_bot_friend": [ - 3730, + 3736, { "distinct_on": [ - 3749, + 3755, "[player_steam_bot_friend_select_column!]" ], "limit": [ @@ -142510,19 +143101,19 @@ export default { 40 ], "order_by": [ - 3746, + 3752, "[player_steam_bot_friend_order_by!]" ], "where": [ - 3735 + 3741 ] } ], "player_steam_bot_friend_aggregate": [ - 3731, + 3737, { "distinct_on": [ - 3749, + 3755, "[player_steam_bot_friend_select_column!]" ], "limit": [ @@ -142532,28 +143123,28 @@ export default { 40 ], "order_by": [ - 3746, + 3752, "[player_steam_bot_friend_order_by!]" ], "where": [ - 3735 + 3741 ] } ], "player_steam_bot_friend_by_pk": [ - 3730, + 3736, { "steam_id": [ - 252, + 258, "bigint!" ] } ], "player_steam_match_auth": [ - 3762, + 3768, { "distinct_on": [ - 3776, + 3782, "[player_steam_match_auth_select_column!]" ], "limit": [ @@ -142563,19 +143154,19 @@ export default { 40 ], "order_by": [ - 3774, + 3780, "[player_steam_match_auth_order_by!]" ], "where": [ - 3766 + 3772 ] } ], "player_steam_match_auth_aggregate": [ - 3763, + 3769, { "distinct_on": [ - 3776, + 3782, "[player_steam_match_auth_select_column!]" ], "limit": [ @@ -142585,28 +143176,28 @@ export default { 40 ], "order_by": [ - 3774, + 3780, "[player_steam_match_auth_order_by!]" ], "where": [ - 3766 + 3772 ] } ], "player_steam_match_auth_by_pk": [ - 3762, + 3768, { "steam_id": [ - 252, + 258, "bigint!" ] } ], "player_unused_utility": [ - 3789, + 3795, { "distinct_on": [ - 3810, + 3816, "[player_unused_utility_select_column!]" ], "limit": [ @@ -142616,19 +143207,19 @@ export default { 40 ], "order_by": [ - 3808, + 3814, "[player_unused_utility_order_by!]" ], "where": [ - 3798 + 3804 ] } ], "player_unused_utility_aggregate": [ - 3790, + 3796, { "distinct_on": [ - 3810, + 3816, "[player_unused_utility_select_column!]" ], "limit": [ @@ -142638,32 +143229,32 @@ export default { 40 ], "order_by": [ - 3808, + 3814, "[player_unused_utility_order_by!]" ], "where": [ - 3798 + 3804 ] } ], "player_unused_utility_by_pk": [ - 3789, + 3795, { "match_map_id": [ - 4993, + 4999, "uuid!" ], "player_steam_id": [ - 252, + 258, "bigint!" ] } ], "player_utility": [ - 3830, + 3836, { "distinct_on": [ - 3851, + 3857, "[player_utility_select_column!]" ], "limit": [ @@ -142673,19 +143264,19 @@ export default { 40 ], "order_by": [ - 3849, + 3855, "[player_utility_order_by!]" ], "where": [ - 3839 + 3845 ] } ], "player_utility_aggregate": [ - 3831, + 3837, { "distinct_on": [ - 3851, + 3857, "[player_utility_select_column!]" ], "limit": [ @@ -142695,36 +143286,36 @@ export default { 40 ], "order_by": [ - 3849, + 3855, "[player_utility_order_by!]" ], "where": [ - 3839 + 3845 ] } ], "player_utility_by_pk": [ - 3830, + 3836, { "attacker_steam_id": [ - 252, + 258, "bigint!" ], "match_map_id": [ - 4993, + 4999, "uuid!" ], "time": [ - 4493, + 4499, "timestamptz!" ] } ], "player_weapon_stats_v": [ - 3871, + 3877, { "distinct_on": [ - 3887, + 3893, "[player_weapon_stats_v_select_column!]" ], "limit": [ @@ -142734,19 +143325,19 @@ export default { 40 ], "order_by": [ - 3886, + 3892, "[player_weapon_stats_v_order_by!]" ], "where": [ - 3880 + 3886 ] } ], "player_weapon_stats_v_aggregate": [ - 3872, + 3878, { "distinct_on": [ - 3887, + 3893, "[player_weapon_stats_v_select_column!]" ], "limit": [ @@ -142756,19 +143347,19 @@ export default { 40 ], "order_by": [ - 3886, + 3892, "[player_weapon_stats_v_order_by!]" ], "where": [ - 3880 + 3886 ] } ], "players": [ - 3904, + 3910, { "distinct_on": [ - 3919, + 3925, "[players_select_column!]" ], "limit": [ @@ -142778,19 +143369,19 @@ export default { 40 ], "order_by": [ - 3917, + 3923, "[players_order_by!]" ], "where": [ - 3908 + 3914 ] } ], "players_aggregate": [ - 3905, + 3911, { "distinct_on": [ - 3919, + 3925, "[players_select_column!]" ], "limit": [ @@ -142800,28 +143391,28 @@ export default { 40 ], "order_by": [ - 3917, + 3923, "[players_order_by!]" ], "where": [ - 3908 + 3914 ] } ], "players_by_pk": [ - 3904, + 3910, { "steam_id": [ - 252, + 258, "bigint!" ] } ], "plugin_versions": [ - 3932, + 3938, { "distinct_on": [ - 3946, + 3952, "[plugin_versions_select_column!]" ], "limit": [ @@ -142831,19 +143422,19 @@ export default { 40 ], "order_by": [ - 3944, + 3950, "[plugin_versions_order_by!]" ], "where": [ - 3936 + 3942 ] } ], "plugin_versions_aggregate": [ - 3933, + 3939, { "distinct_on": [ - 3946, + 3952, "[plugin_versions_select_column!]" ], "limit": [ @@ -142853,19 +143444,19 @@ export default { 40 ], "order_by": [ - 3944, + 3950, "[plugin_versions_order_by!]" ], "where": [ - 3936 + 3942 ] } ], "plugin_versions_by_pk": [ - 3932, + 3938, { "runtime": [ - 1085, + 1091, "e_plugin_runtimes_enum!" ], "version": [ @@ -142891,10 +143482,10 @@ export default { } ], "seasons": [ - 3963, + 3969, { "distinct_on": [ - 3978, + 3984, "[seasons_select_column!]" ], "limit": [ @@ -142904,19 +143495,19 @@ export default { 40 ], "order_by": [ - 3976, + 3982, "[seasons_order_by!]" ], "where": [ - 3967 + 3973 ] } ], "seasons_aggregate": [ - 3964, + 3970, { "distinct_on": [ - 3978, + 3984, "[seasons_select_column!]" ], "limit": [ @@ -142926,28 +143517,28 @@ export default { 40 ], "order_by": [ - 3976, + 3982, "[seasons_order_by!]" ], "where": [ - 3967 + 3973 ] } ], "seasons_by_pk": [ - 3963, + 3969, { "id": [ - 4993, + 4999, "uuid!" ] } ], "server_regions": [ - 3991, + 3997, { "distinct_on": [ - 4005, + 4011, "[server_regions_select_column!]" ], "limit": [ @@ -142957,19 +143548,19 @@ export default { 40 ], "order_by": [ - 4003, + 4009, "[server_regions_order_by!]" ], "where": [ - 3995 + 4001 ] } ], "server_regions_aggregate": [ - 3992, + 3998, { "distinct_on": [ - 4005, + 4011, "[server_regions_select_column!]" ], "limit": [ @@ -142979,16 +143570,16 @@ export default { 40 ], "order_by": [ - 4003, + 4009, "[server_regions_order_by!]" ], "where": [ - 3995 + 4001 ] } ], "server_regions_by_pk": [ - 3991, + 3997, { "value": [ 80, @@ -142997,10 +143588,10 @@ export default { } ], "servers": [ - 4018, + 4024, { "distinct_on": [ - 4042, + 4048, "[servers_select_column!]" ], "limit": [ @@ -143010,19 +143601,19 @@ export default { 40 ], "order_by": [ - 4040, + 4046, "[servers_order_by!]" ], "where": [ - 4029 + 4035 ] } ], "servers_aggregate": [ - 4019, + 4025, { "distinct_on": [ - 4042, + 4048, "[servers_select_column!]" ], "limit": [ @@ -143032,28 +143623,28 @@ export default { 40 ], "order_by": [ - 4040, + 4046, "[servers_order_by!]" ], "where": [ - 4029 + 4035 ] } ], "servers_by_pk": [ - 4018, + 4024, { "id": [ - 4993, + 4999, "uuid!" ] } ], "settings": [ - 4064, + 4070, { "distinct_on": [ - 4076, + 4082, "[settings_select_column!]" ], "limit": [ @@ -143063,19 +143654,19 @@ export default { 40 ], "order_by": [ - 4074, + 4080, "[settings_order_by!]" ], "where": [ - 4067 + 4073 ] } ], "settings_aggregate": [ - 4065, + 4071, { "distinct_on": [ - 4076, + 4082, "[settings_select_column!]" ], "limit": [ @@ -143085,16 +143676,16 @@ export default { 40 ], "order_by": [ - 4074, + 4080, "[settings_order_by!]" ], "where": [ - 4067 + 4073 ] } ], "settings_by_pk": [ - 4064, + 4070, { "name": [ 80, @@ -143106,10 +143697,10 @@ export default { 74 ], "steam_account_claims": [ - 4084, + 4090, { "distinct_on": [ - 4102, + 4108, "[steam_account_claims_select_column!]" ], "limit": [ @@ -143119,19 +143710,19 @@ export default { 40 ], "order_by": [ - 4100, + 4106, "[steam_account_claims_order_by!]" ], "where": [ - 4091 + 4097 ] } ], "steam_account_claims_aggregate": [ - 4085, + 4091, { "distinct_on": [ - 4102, + 4108, "[steam_account_claims_select_column!]" ], "limit": [ @@ -143141,28 +143732,28 @@ export default { 40 ], "order_by": [ - 4100, + 4106, "[steam_account_claims_order_by!]" ], "where": [ - 4091 + 4097 ] } ], "steam_account_claims_by_pk": [ - 4084, + 4090, { "id": [ - 4993, + 4999, "uuid!" ] } ], "steam_accounts": [ - 4108, + 4114, { "distinct_on": [ - 4123, + 4129, "[steam_accounts_select_column!]" ], "limit": [ @@ -143172,19 +143763,19 @@ export default { 40 ], "order_by": [ - 4121, + 4127, "[steam_accounts_order_by!]" ], "where": [ - 4112 + 4118 ] } ], "steam_accounts_aggregate": [ - 4109, + 4115, { "distinct_on": [ - 4123, + 4129, "[steam_accounts_select_column!]" ], "limit": [ @@ -143194,28 +143785,28 @@ export default { 40 ], "order_by": [ - 4121, + 4127, "[steam_accounts_order_by!]" ], "where": [ - 4112 + 4118 ] } ], "steam_accounts_by_pk": [ - 4108, + 4114, { "id": [ - 4993, + 4999, "uuid!" ] } ], "system_alerts": [ - 4136, + 4142, { "distinct_on": [ - 4150, + 4156, "[system_alerts_select_column!]" ], "limit": [ @@ -143225,19 +143816,19 @@ export default { 40 ], "order_by": [ - 4148, + 4154, "[system_alerts_order_by!]" ], "where": [ - 4140 + 4146 ] } ], "system_alerts_aggregate": [ - 4137, + 4143, { "distinct_on": [ - 4150, + 4156, "[system_alerts_select_column!]" ], "limit": [ @@ -143247,19 +143838,19 @@ export default { 40 ], "order_by": [ - 4148, + 4154, "[system_alerts_order_by!]" ], "where": [ - 4140 + 4146 ] } ], "system_alerts_by_pk": [ - 4136, + 4142, { "id": [ - 4993, + 4999, "uuid!" ] } @@ -143268,16 +143859,16 @@ export default { 87, { "team_id": [ - 4993, + 4999, "uuid!" ] } ], "team_invites": [ - 4163, + 4169, { "distinct_on": [ - 4184, + 4190, "[team_invites_select_column!]" ], "limit": [ @@ -143287,19 +143878,19 @@ export default { 40 ], "order_by": [ - 4182, + 4188, "[team_invites_order_by!]" ], "where": [ - 4172 + 4178 ] } ], "team_invites_aggregate": [ - 4164, + 4170, { "distinct_on": [ - 4184, + 4190, "[team_invites_select_column!]" ], "limit": [ @@ -143309,28 +143900,28 @@ export default { 40 ], "order_by": [ - 4182, + 4188, "[team_invites_order_by!]" ], "where": [ - 4172 + 4178 ] } ], "team_invites_by_pk": [ - 4163, + 4169, { "id": [ - 4993, + 4999, "uuid!" ] } ], "team_roster": [ - 4204, + 4210, { "distinct_on": [ - 4227, + 4233, "[team_roster_select_column!]" ], "limit": [ @@ -143340,19 +143931,19 @@ export default { 40 ], "order_by": [ - 4225, + 4231, "[team_roster_order_by!]" ], "where": [ - 4215 + 4221 ] } ], "team_roster_aggregate": [ - 4205, + 4211, { "distinct_on": [ - 4227, + 4233, "[team_roster_select_column!]" ], "limit": [ @@ -143362,32 +143953,32 @@ export default { 40 ], "order_by": [ - 4225, + 4231, "[team_roster_order_by!]" ], "where": [ - 4215 + 4221 ] } ], "team_roster_by_pk": [ - 4204, + 4210, { "player_steam_id": [ - 252, + 258, "bigint!" ], "team_id": [ - 4993, + 4999, "uuid!" ] } ], "team_scrim_alerts": [ - 4249, + 4255, { "distinct_on": [ - 4263, + 4269, "[team_scrim_alerts_select_column!]" ], "limit": [ @@ -143397,19 +143988,19 @@ export default { 40 ], "order_by": [ - 4261, + 4267, "[team_scrim_alerts_order_by!]" ], "where": [ - 4253 + 4259 ] } ], "team_scrim_alerts_aggregate": [ - 4250, + 4256, { "distinct_on": [ - 4263, + 4269, "[team_scrim_alerts_select_column!]" ], "limit": [ @@ -143419,28 +144010,28 @@ export default { 40 ], "order_by": [ - 4261, + 4267, "[team_scrim_alerts_order_by!]" ], "where": [ - 4253 + 4259 ] } ], "team_scrim_alerts_by_pk": [ - 4249, + 4255, { "id": [ - 4993, + 4999, "uuid!" ] } ], "team_scrim_availability": [ - 4276, + 4282, { "distinct_on": [ - 4296, + 4302, "[team_scrim_availability_select_column!]" ], "limit": [ @@ -143450,19 +144041,19 @@ export default { 40 ], "order_by": [ - 4294, + 4300, "[team_scrim_availability_order_by!]" ], "where": [ - 4285 + 4291 ] } ], "team_scrim_availability_aggregate": [ - 4277, + 4283, { "distinct_on": [ - 4296, + 4302, "[team_scrim_availability_select_column!]" ], "limit": [ @@ -143472,28 +144063,28 @@ export default { 40 ], "order_by": [ - 4294, + 4300, "[team_scrim_availability_order_by!]" ], "where": [ - 4285 + 4291 ] } ], "team_scrim_availability_by_pk": [ - 4276, + 4282, { "id": [ - 4993, + 4999, "uuid!" ] } ], "team_scrim_request_proposals": [ - 4304, + 4310, { "distinct_on": [ - 4325, + 4331, "[team_scrim_request_proposals_select_column!]" ], "limit": [ @@ -143503,19 +144094,19 @@ export default { 40 ], "order_by": [ - 4323, + 4329, "[team_scrim_request_proposals_order_by!]" ], "where": [ - 4313 + 4319 ] } ], "team_scrim_request_proposals_aggregate": [ - 4305, + 4311, { "distinct_on": [ - 4325, + 4331, "[team_scrim_request_proposals_select_column!]" ], "limit": [ @@ -143525,28 +144116,28 @@ export default { 40 ], "order_by": [ - 4323, + 4329, "[team_scrim_request_proposals_order_by!]" ], "where": [ - 4313 + 4319 ] } ], "team_scrim_request_proposals_by_pk": [ - 4304, + 4310, { "id": [ - 4993, + 4999, "uuid!" ] } ], "team_scrim_requests": [ - 4345, + 4351, { "distinct_on": [ - 4369, + 4375, "[team_scrim_requests_select_column!]" ], "limit": [ @@ -143556,19 +144147,19 @@ export default { 40 ], "order_by": [ - 4367, + 4373, "[team_scrim_requests_order_by!]" ], "where": [ - 4356 + 4362 ] } ], "team_scrim_requests_aggregate": [ - 4346, + 4352, { "distinct_on": [ - 4369, + 4375, "[team_scrim_requests_select_column!]" ], "limit": [ @@ -143578,28 +144169,28 @@ export default { 40 ], "order_by": [ - 4367, + 4373, "[team_scrim_requests_order_by!]" ], "where": [ - 4356 + 4362 ] } ], "team_scrim_requests_by_pk": [ - 4345, + 4351, { "id": [ - 4993, + 4999, "uuid!" ] } ], "team_scrim_settings": [ - 4391, + 4397, { "distinct_on": [ - 4406, + 4412, "[team_scrim_settings_select_column!]" ], "limit": [ @@ -143609,19 +144200,19 @@ export default { 40 ], "order_by": [ - 4404, + 4410, "[team_scrim_settings_order_by!]" ], "where": [ - 4395 + 4401 ] } ], "team_scrim_settings_aggregate": [ - 4392, + 4398, { "distinct_on": [ - 4406, + 4412, "[team_scrim_settings_select_column!]" ], "limit": [ @@ -143631,28 +144222,28 @@ export default { 40 ], "order_by": [ - 4404, + 4410, "[team_scrim_settings_order_by!]" ], "where": [ - 4395 + 4401 ] } ], "team_scrim_settings_by_pk": [ - 4391, + 4397, { "id": [ - 4993, + 4999, "uuid!" ] } ], "team_suggestions": [ - 4419, + 4425, { "distinct_on": [ - 4433, + 4439, "[team_suggestions_select_column!]" ], "limit": [ @@ -143662,19 +144253,19 @@ export default { 40 ], "order_by": [ - 4431, + 4437, "[team_suggestions_order_by!]" ], "where": [ - 4423 + 4429 ] } ], "team_suggestions_aggregate": [ - 4420, + 4426, { "distinct_on": [ - 4433, + 4439, "[team_suggestions_select_column!]" ], "limit": [ @@ -143684,28 +144275,28 @@ export default { 40 ], "order_by": [ - 4431, + 4437, "[team_suggestions_order_by!]" ], "where": [ - 4423 + 4429 ] } ], "team_suggestions_by_pk": [ - 4419, + 4425, { "id": [ - 4993, + 4999, "uuid!" ] } ], "teams": [ - 4446, + 4452, { "distinct_on": [ - 4470, + 4476, "[teams_select_column!]" ], "limit": [ @@ -143715,19 +144306,19 @@ export default { 40 ], "order_by": [ - 4468, + 4474, "[teams_order_by!]" ], "where": [ - 4457 + 4463 ] } ], "teams_aggregate": [ - 4447, + 4453, { "distinct_on": [ - 4470, + 4476, "[teams_select_column!]" ], "limit": [ @@ -143737,31 +144328,31 @@ export default { 40 ], "order_by": [ - 4468, + 4474, "[teams_order_by!]" ], "where": [ - 4457 + 4463 ] } ], "teams_by_pk": [ - 4446, + 4452, { "id": [ - 4993, + 4999, "uuid!" ] } ], "telemetryStats": [ - 88 + 93 ], "tournament_awards": [ - 4495, + 4501, { "distinct_on": [ - 4517, + 4523, "[tournament_awards_select_column!]" ], "limit": [ @@ -143771,19 +144362,19 @@ export default { 40 ], "order_by": [ - 4515, + 4521, "[tournament_awards_order_by!]" ], "where": [ - 4504 + 4510 ] } ], "tournament_awards_aggregate": [ - 4496, + 4502, { "distinct_on": [ - 4517, + 4523, "[tournament_awards_select_column!]" ], "limit": [ @@ -143793,28 +144384,28 @@ export default { 40 ], "order_by": [ - 4515, + 4521, "[tournament_awards_order_by!]" ], "where": [ - 4504 + 4510 ] } ], "tournament_awards_by_pk": [ - 4495, + 4501, { "id": [ - 4993, + 4999, "uuid!" ] } ], "tournament_brackets": [ - 4537, + 4543, { "distinct_on": [ - 4561, + 4567, "[tournament_brackets_select_column!]" ], "limit": [ @@ -143824,19 +144415,19 @@ export default { 40 ], "order_by": [ - 4559, + 4565, "[tournament_brackets_order_by!]" ], "where": [ - 4548 + 4554 ] } ], "tournament_brackets_aggregate": [ - 4538, + 4544, { "distinct_on": [ - 4561, + 4567, "[tournament_brackets_select_column!]" ], "limit": [ @@ -143846,28 +144437,28 @@ export default { 40 ], "order_by": [ - 4559, + 4565, "[tournament_brackets_order_by!]" ], "where": [ - 4548 + 4554 ] } ], "tournament_brackets_by_pk": [ - 4537, + 4543, { "id": [ - 4993, + 4999, "uuid!" ] } ], "tournament_categories": [ - 4583, + 4589, { "distinct_on": [ - 4601, + 4607, "[tournament_categories_select_column!]" ], "limit": [ @@ -143877,19 +144468,19 @@ export default { 40 ], "order_by": [ - 4599, + 4605, "[tournament_categories_order_by!]" ], "where": [ - 4590 + 4596 ] } ], "tournament_categories_aggregate": [ - 4584, + 4590, { "distinct_on": [ - 4601, + 4607, "[tournament_categories_select_column!]" ], "limit": [ @@ -143899,32 +144490,32 @@ export default { 40 ], "order_by": [ - 4599, + 4605, "[tournament_categories_order_by!]" ], "where": [ - 4590 + 4596 ] } ], "tournament_categories_by_pk": [ - 4583, + 4589, { "category": [ - 1287, + 1293, "e_tournament_categories_enum!" ], "tournament_id": [ - 4993, + 4999, "uuid!" ] } ], "tournament_organizer_teams": [ - 4607, + 4613, { "distinct_on": [ - 4625, + 4631, "[tournament_organizer_teams_select_column!]" ], "limit": [ @@ -143934,19 +144525,19 @@ export default { 40 ], "order_by": [ - 4623, + 4629, "[tournament_organizer_teams_order_by!]" ], "where": [ - 4614 + 4620 ] } ], "tournament_organizer_teams_aggregate": [ - 4608, + 4614, { "distinct_on": [ - 4625, + 4631, "[tournament_organizer_teams_select_column!]" ], "limit": [ @@ -143956,32 +144547,32 @@ export default { 40 ], "order_by": [ - 4623, + 4629, "[tournament_organizer_teams_order_by!]" ], "where": [ - 4614 + 4620 ] } ], "tournament_organizer_teams_by_pk": [ - 4607, + 4613, { "team_id": [ - 4993, + 4999, "uuid!" ], "tournament_id": [ - 4993, + 4999, "uuid!" ] } ], "tournament_organizers": [ - 4631, + 4637, { "distinct_on": [ - 4652, + 4658, "[tournament_organizers_select_column!]" ], "limit": [ @@ -143991,19 +144582,19 @@ export default { 40 ], "order_by": [ - 4650, + 4656, "[tournament_organizers_order_by!]" ], "where": [ - 4640 + 4646 ] } ], "tournament_organizers_aggregate": [ - 4632, + 4638, { "distinct_on": [ - 4652, + 4658, "[tournament_organizers_select_column!]" ], "limit": [ @@ -144013,32 +144604,32 @@ export default { 40 ], "order_by": [ - 4650, + 4656, "[tournament_organizers_order_by!]" ], "where": [ - 4640 + 4646 ] } ], "tournament_organizers_by_pk": [ - 4631, + 4637, { "steam_id": [ - 252, + 258, "bigint!" ], "tournament_id": [ - 4993, + 4999, "uuid!" ] } ], "tournament_prizes": [ - 4672, + 4678, { "distinct_on": [ - 4693, + 4699, "[tournament_prizes_select_column!]" ], "limit": [ @@ -144048,19 +144639,19 @@ export default { 40 ], "order_by": [ - 4691, + 4697, "[tournament_prizes_order_by!]" ], "where": [ - 4681 + 4687 ] } ], "tournament_prizes_aggregate": [ - 4673, + 4679, { "distinct_on": [ - 4693, + 4699, "[tournament_prizes_select_column!]" ], "limit": [ @@ -144070,28 +144661,28 @@ export default { 40 ], "order_by": [ - 4691, + 4697, "[tournament_prizes_order_by!]" ], "where": [ - 4681 + 4687 ] } ], "tournament_prizes_by_pk": [ - 4672, + 4678, { "id": [ - 4993, + 4999, "uuid!" ] } ], "tournament_stage_windows": [ - 4713, + 4719, { "distinct_on": [ - 4734, + 4740, "[tournament_stage_windows_select_column!]" ], "limit": [ @@ -144101,19 +144692,19 @@ export default { 40 ], "order_by": [ - 4732, + 4738, "[tournament_stage_windows_order_by!]" ], "where": [ - 4722 + 4728 ] } ], "tournament_stage_windows_aggregate": [ - 4714, + 4720, { "distinct_on": [ - 4734, + 4740, "[tournament_stage_windows_select_column!]" ], "limit": [ @@ -144123,28 +144714,28 @@ export default { 40 ], "order_by": [ - 4732, + 4738, "[tournament_stage_windows_order_by!]" ], "where": [ - 4722 + 4728 ] } ], "tournament_stage_windows_by_pk": [ - 4713, + 4719, { "id": [ - 4993, + 4999, "uuid!" ] } ], "tournament_stages": [ - 4754, + 4760, { "distinct_on": [ - 4783, + 4789, "[tournament_stages_select_column!]" ], "limit": [ @@ -144154,19 +144745,19 @@ export default { 40 ], "order_by": [ - 4780, + 4786, "[tournament_stages_order_by!]" ], "where": [ - 4766 + 4772 ] } ], "tournament_stages_aggregate": [ - 4755, + 4761, { "distinct_on": [ - 4783, + 4789, "[tournament_stages_select_column!]" ], "limit": [ @@ -144176,28 +144767,28 @@ export default { 40 ], "order_by": [ - 4780, + 4786, "[tournament_stages_order_by!]" ], "where": [ - 4766 + 4772 ] } ], "tournament_stages_by_pk": [ - 4754, + 4760, { "id": [ - 4993, + 4999, "uuid!" ] } ], "tournament_team_invites": [ - 4805, + 4811, { "distinct_on": [ - 4826, + 4832, "[tournament_team_invites_select_column!]" ], "limit": [ @@ -144207,19 +144798,19 @@ export default { 40 ], "order_by": [ - 4824, + 4830, "[tournament_team_invites_order_by!]" ], "where": [ - 4814 + 4820 ] } ], "tournament_team_invites_aggregate": [ - 4806, + 4812, { "distinct_on": [ - 4826, + 4832, "[tournament_team_invites_select_column!]" ], "limit": [ @@ -144229,28 +144820,28 @@ export default { 40 ], "order_by": [ - 4824, + 4830, "[tournament_team_invites_order_by!]" ], "where": [ - 4814 + 4820 ] } ], "tournament_team_invites_by_pk": [ - 4805, + 4811, { "id": [ - 4993, + 4999, "uuid!" ] } ], "tournament_team_roster": [ - 4846, + 4852, { "distinct_on": [ - 4867, + 4873, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -144260,19 +144851,19 @@ export default { 40 ], "order_by": [ - 4865, + 4871, "[tournament_team_roster_order_by!]" ], "where": [ - 4855 + 4861 ] } ], "tournament_team_roster_aggregate": [ - 4847, + 4853, { "distinct_on": [ - 4867, + 4873, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -144282,32 +144873,32 @@ export default { 40 ], "order_by": [ - 4865, + 4871, "[tournament_team_roster_order_by!]" ], "where": [ - 4855 + 4861 ] } ], "tournament_team_roster_by_pk": [ - 4846, + 4852, { "player_steam_id": [ - 252, + 258, "bigint!" ], "tournament_id": [ - 4993, + 4999, "uuid!" ] } ], "tournament_teams": [ - 4887, + 4893, { "distinct_on": [ - 4909, + 4915, "[tournament_teams_select_column!]" ], "limit": [ @@ -144317,19 +144908,19 @@ export default { 40 ], "order_by": [ - 4907, + 4913, "[tournament_teams_order_by!]" ], "where": [ - 4896 + 4902 ] } ], "tournament_teams_aggregate": [ - 4888, + 4894, { "distinct_on": [ - 4909, + 4915, "[tournament_teams_select_column!]" ], "limit": [ @@ -144339,28 +144930,28 @@ export default { 40 ], "order_by": [ - 4907, + 4913, "[tournament_teams_order_by!]" ], "where": [ - 4896 + 4902 ] } ], "tournament_teams_by_pk": [ - 4887, + 4893, { "id": [ - 4993, + 4999, "uuid!" ] } ], "tournaments": [ - 4929, + 4935, { "distinct_on": [ - 4963, + 4969, "[tournaments_select_column!]" ], "limit": [ @@ -144370,19 +144961,19 @@ export default { 40 ], "order_by": [ - 4961, + 4967, "[tournaments_order_by!]" ], "where": [ - 4950 + 4956 ] } ], "tournaments_aggregate": [ - 4930, + 4936, { "distinct_on": [ - 4963, + 4969, "[tournaments_select_column!]" ], "limit": [ @@ -144392,28 +144983,28 @@ export default { 40 ], "order_by": [ - 4961, + 4967, "[tournaments_order_by!]" ], "where": [ - 4950 + 4956 ] } ], "tournaments_by_pk": [ - 4929, + 4935, { "id": [ - 4993, + 4999, "uuid!" ] } ], "v_event_player_stats": [ - 4996, + 5002, { "distinct_on": [ - 5022, + 5028, "[v_event_player_stats_select_column!]" ], "limit": [ @@ -144423,19 +145014,19 @@ export default { 40 ], "order_by": [ - 5021, + 5027, "[v_event_player_stats_order_by!]" ], "where": [ - 5015 + 5021 ] } ], "v_event_player_stats_aggregate": [ - 4997, + 5003, { "distinct_on": [ - 5022, + 5028, "[v_event_player_stats_select_column!]" ], "limit": [ @@ -144445,19 +145036,19 @@ export default { 40 ], "order_by": [ - 5021, + 5027, "[v_event_player_stats_order_by!]" ], "where": [ - 5015 + 5021 ] } ], "v_gpu_pool_status": [ - 5047, + 5053, { "distinct_on": [ - 5055, + 5061, "[v_gpu_pool_status_select_column!]" ], "limit": [ @@ -144467,19 +145058,19 @@ export default { 40 ], "order_by": [ - 5054, + 5060, "[v_gpu_pool_status_order_by!]" ], "where": [ - 5051 + 5057 ] } ], "v_gpu_pool_status_aggregate": [ - 5048, + 5054, { "distinct_on": [ - 5055, + 5061, "[v_gpu_pool_status_select_column!]" ], "limit": [ @@ -144489,19 +145080,19 @@ export default { 40 ], "order_by": [ - 5054, + 5060, "[v_gpu_pool_status_order_by!]" ], "where": [ - 5051 + 5057 ] } ], "v_league_division_standings": [ - 5065, + 5071, { "distinct_on": [ - 5081, + 5087, "[v_league_division_standings_select_column!]" ], "limit": [ @@ -144511,19 +145102,19 @@ export default { 40 ], "order_by": [ - 5080, + 5086, "[v_league_division_standings_order_by!]" ], "where": [ - 5074 + 5080 ] } ], "v_league_division_standings_aggregate": [ - 5066, + 5072, { "distinct_on": [ - 5081, + 5087, "[v_league_division_standings_select_column!]" ], "limit": [ @@ -144533,19 +145124,19 @@ export default { 40 ], "order_by": [ - 5080, + 5086, "[v_league_division_standings_order_by!]" ], "where": [ - 5074 + 5080 ] } ], "v_league_season_player_stats": [ - 5098, + 5104, { "distinct_on": [ - 5124, + 5130, "[v_league_season_player_stats_select_column!]" ], "limit": [ @@ -144555,19 +145146,19 @@ export default { 40 ], "order_by": [ - 5123, + 5129, "[v_league_season_player_stats_order_by!]" ], "where": [ - 5117 + 5123 ] } ], "v_league_season_player_stats_aggregate": [ - 5099, + 5105, { "distinct_on": [ - 5124, + 5130, "[v_league_season_player_stats_select_column!]" ], "limit": [ @@ -144577,19 +145168,19 @@ export default { 40 ], "order_by": [ - 5123, + 5129, "[v_league_season_player_stats_order_by!]" ], "where": [ - 5117 + 5123 ] } ], "v_match_captains": [ - 5149, + 5155, { "distinct_on": [ - 5161, + 5167, "[v_match_captains_select_column!]" ], "limit": [ @@ -144599,19 +145190,19 @@ export default { 40 ], "order_by": [ - 5160, + 5166, "[v_match_captains_order_by!]" ], "where": [ - 5153 + 5159 ] } ], "v_match_captains_aggregate": [ - 5150, + 5156, { "distinct_on": [ - 5161, + 5167, "[v_match_captains_select_column!]" ], "limit": [ @@ -144621,19 +145212,19 @@ export default { 40 ], "order_by": [ - 5160, + 5166, "[v_match_captains_order_by!]" ], "where": [ - 5153 + 5159 ] } ], "v_match_clutches": [ - 5173, + 5179, { "distinct_on": [ - 5189, + 5195, "[v_match_clutches_select_column!]" ], "limit": [ @@ -144643,19 +145234,19 @@ export default { 40 ], "order_by": [ - 5188, + 5194, "[v_match_clutches_order_by!]" ], "where": [ - 5182 + 5188 ] } ], "v_match_clutches_aggregate": [ - 5174, + 5180, { "distinct_on": [ - 5189, + 5195, "[v_match_clutches_select_column!]" ], "limit": [ @@ -144665,19 +145256,19 @@ export default { 40 ], "order_by": [ - 5188, + 5194, "[v_match_clutches_order_by!]" ], "where": [ - 5182 + 5188 ] } ], "v_match_kill_pairs": [ - 5206, + 5212, { "distinct_on": [ - 5214, + 5220, "[v_match_kill_pairs_select_column!]" ], "limit": [ @@ -144687,19 +145278,19 @@ export default { 40 ], "order_by": [ - 5213, + 5219, "[v_match_kill_pairs_order_by!]" ], "where": [ - 5210 + 5216 ] } ], "v_match_kill_pairs_aggregate": [ - 5207, + 5213, { "distinct_on": [ - 5214, + 5220, "[v_match_kill_pairs_select_column!]" ], "limit": [ @@ -144709,19 +145300,19 @@ export default { 40 ], "order_by": [ - 5213, + 5219, "[v_match_kill_pairs_order_by!]" ], "where": [ - 5210 + 5216 ] } ], "v_match_lineup_buy_types": [ - 5224, + 5230, { "distinct_on": [ - 5232, + 5238, "[v_match_lineup_buy_types_select_column!]" ], "limit": [ @@ -144731,19 +145322,19 @@ export default { 40 ], "order_by": [ - 5231, + 5237, "[v_match_lineup_buy_types_order_by!]" ], "where": [ - 5228 + 5234 ] } ], "v_match_lineup_buy_types_aggregate": [ - 5225, + 5231, { "distinct_on": [ - 5232, + 5238, "[v_match_lineup_buy_types_select_column!]" ], "limit": [ @@ -144753,19 +145344,19 @@ export default { 40 ], "order_by": [ - 5231, + 5237, "[v_match_lineup_buy_types_order_by!]" ], "where": [ - 5228 + 5234 ] } ], "v_match_lineup_map_stats": [ - 5242, + 5248, { "distinct_on": [ - 5250, + 5256, "[v_match_lineup_map_stats_select_column!]" ], "limit": [ @@ -144775,19 +145366,19 @@ export default { 40 ], "order_by": [ - 5249, + 5255, "[v_match_lineup_map_stats_order_by!]" ], "where": [ - 5246 + 5252 ] } ], "v_match_lineup_map_stats_aggregate": [ - 5243, + 5249, { "distinct_on": [ - 5250, + 5256, "[v_match_lineup_map_stats_select_column!]" ], "limit": [ @@ -144797,19 +145388,19 @@ export default { 40 ], "order_by": [ - 5249, + 5255, "[v_match_lineup_map_stats_order_by!]" ], "where": [ - 5246 + 5252 ] } ], "v_match_map_backup_rounds": [ - 5260, + 5266, { "distinct_on": [ - 5271, + 5277, "[v_match_map_backup_rounds_select_column!]" ], "limit": [ @@ -144819,19 +145410,19 @@ export default { 40 ], "order_by": [ - 5270, + 5276, "[v_match_map_backup_rounds_order_by!]" ], "where": [ - 5264 + 5270 ] } ], "v_match_map_backup_rounds_aggregate": [ - 5261, + 5267, { "distinct_on": [ - 5271, + 5277, "[v_match_map_backup_rounds_select_column!]" ], "limit": [ @@ -144841,19 +145432,19 @@ export default { 40 ], "order_by": [ - 5270, + 5276, "[v_match_map_backup_rounds_order_by!]" ], "where": [ - 5264 + 5270 ] } ], "v_match_player_buy_types": [ - 5283, + 5289, { "distinct_on": [ - 5291, + 5297, "[v_match_player_buy_types_select_column!]" ], "limit": [ @@ -144863,19 +145454,19 @@ export default { 40 ], "order_by": [ - 5290, + 5296, "[v_match_player_buy_types_order_by!]" ], "where": [ - 5287 + 5293 ] } ], "v_match_player_buy_types_aggregate": [ - 5284, + 5290, { "distinct_on": [ - 5291, + 5297, "[v_match_player_buy_types_select_column!]" ], "limit": [ @@ -144885,19 +145476,19 @@ export default { 40 ], "order_by": [ - 5290, + 5296, "[v_match_player_buy_types_order_by!]" ], "where": [ - 5287 + 5293 ] } ], "v_match_player_opening_duels": [ - 5301, + 5307, { "distinct_on": [ - 5317, + 5323, "[v_match_player_opening_duels_select_column!]" ], "limit": [ @@ -144907,19 +145498,19 @@ export default { 40 ], "order_by": [ - 5316, + 5322, "[v_match_player_opening_duels_order_by!]" ], "where": [ - 5310 + 5316 ] } ], "v_match_player_opening_duels_aggregate": [ - 5302, + 5308, { "distinct_on": [ - 5317, + 5323, "[v_match_player_opening_duels_select_column!]" ], "limit": [ @@ -144929,19 +145520,19 @@ export default { 40 ], "order_by": [ - 5316, + 5322, "[v_match_player_opening_duels_order_by!]" ], "where": [ - 5310 + 5316 ] } ], "v_player_arch_nemesis": [ - 5334, + 5340, { "distinct_on": [ - 5342, + 5348, "[v_player_arch_nemesis_select_column!]" ], "limit": [ @@ -144951,19 +145542,19 @@ export default { 40 ], "order_by": [ - 5341, + 5347, "[v_player_arch_nemesis_order_by!]" ], "where": [ - 5338 + 5344 ] } ], "v_player_arch_nemesis_aggregate": [ - 5335, + 5341, { "distinct_on": [ - 5342, + 5348, "[v_player_arch_nemesis_select_column!]" ], "limit": [ @@ -144973,19 +145564,19 @@ export default { 40 ], "order_by": [ - 5341, + 5347, "[v_player_arch_nemesis_order_by!]" ], "where": [ - 5338 + 5344 ] } ], "v_player_damage": [ - 5352, + 5358, { "distinct_on": [ - 5360, + 5366, "[v_player_damage_select_column!]" ], "limit": [ @@ -144995,19 +145586,19 @@ export default { 40 ], "order_by": [ - 5359, + 5365, "[v_player_damage_order_by!]" ], "where": [ - 5356 + 5362 ] } ], "v_player_damage_aggregate": [ - 5353, + 5359, { "distinct_on": [ - 5360, + 5366, "[v_player_damage_select_column!]" ], "limit": [ @@ -145017,19 +145608,19 @@ export default { 40 ], "order_by": [ - 5359, + 5365, "[v_player_damage_order_by!]" ], "where": [ - 5356 + 5362 ] } ], "v_player_elo": [ - 5370, + 5376, { "distinct_on": [ - 5396, + 5402, "[v_player_elo_select_column!]" ], "limit": [ @@ -145039,19 +145630,19 @@ export default { 40 ], "order_by": [ - 5395, + 5401, "[v_player_elo_order_by!]" ], "where": [ - 5389 + 5395 ] } ], "v_player_elo_aggregate": [ - 5371, + 5377, { "distinct_on": [ - 5396, + 5402, "[v_player_elo_select_column!]" ], "limit": [ @@ -145061,19 +145652,19 @@ export default { 40 ], "order_by": [ - 5395, + 5401, "[v_player_elo_order_by!]" ], "where": [ - 5389 + 5395 ] } ], "v_player_map_losses": [ - 5421, + 5427, { "distinct_on": [ - 5429, + 5435, "[v_player_map_losses_select_column!]" ], "limit": [ @@ -145083,19 +145674,19 @@ export default { 40 ], "order_by": [ - 5428, + 5434, "[v_player_map_losses_order_by!]" ], "where": [ - 5425 + 5431 ] } ], "v_player_map_losses_aggregate": [ - 5422, + 5428, { "distinct_on": [ - 5429, + 5435, "[v_player_map_losses_select_column!]" ], "limit": [ @@ -145105,19 +145696,19 @@ export default { 40 ], "order_by": [ - 5428, + 5434, "[v_player_map_losses_order_by!]" ], "where": [ - 5425 + 5431 ] } ], "v_player_map_wins": [ - 5439, + 5445, { "distinct_on": [ - 5447, + 5453, "[v_player_map_wins_select_column!]" ], "limit": [ @@ -145127,19 +145718,19 @@ export default { 40 ], "order_by": [ - 5446, + 5452, "[v_player_map_wins_order_by!]" ], "where": [ - 5443 + 5449 ] } ], "v_player_map_wins_aggregate": [ - 5440, + 5446, { "distinct_on": [ - 5447, + 5453, "[v_player_map_wins_select_column!]" ], "limit": [ @@ -145149,19 +145740,19 @@ export default { 40 ], "order_by": [ - 5446, + 5452, "[v_player_map_wins_order_by!]" ], "where": [ - 5443 + 5449 ] } ], "v_player_match_head_to_head": [ - 5457, + 5463, { "distinct_on": [ - 5465, + 5471, "[v_player_match_head_to_head_select_column!]" ], "limit": [ @@ -145171,19 +145762,19 @@ export default { 40 ], "order_by": [ - 5464, + 5470, "[v_player_match_head_to_head_order_by!]" ], "where": [ - 5461 + 5467 ] } ], "v_player_match_head_to_head_aggregate": [ - 5458, + 5464, { "distinct_on": [ - 5465, + 5471, "[v_player_match_head_to_head_select_column!]" ], "limit": [ @@ -145193,19 +145784,19 @@ export default { 40 ], "order_by": [ - 5464, + 5470, "[v_player_match_head_to_head_order_by!]" ], "where": [ - 5461 + 5467 ] } ], "v_player_match_map_hltv": [ - 5475, + 5481, { "distinct_on": [ - 5493, + 5499, "[v_player_match_map_hltv_select_column!]" ], "limit": [ @@ -145215,19 +145806,19 @@ export default { 40 ], "order_by": [ - 5492, + 5498, "[v_player_match_map_hltv_order_by!]" ], "where": [ - 5484 + 5490 ] } ], "v_player_match_map_hltv_aggregate": [ - 5476, + 5482, { "distinct_on": [ - 5493, + 5499, "[v_player_match_map_hltv_select_column!]" ], "limit": [ @@ -145237,19 +145828,19 @@ export default { 40 ], "order_by": [ - 5492, + 5498, "[v_player_match_map_hltv_order_by!]" ], "where": [ - 5484 + 5490 ] } ], "v_player_match_map_roles": [ - 5512, + 5518, { "distinct_on": [ - 5520, + 5526, "[v_player_match_map_roles_select_column!]" ], "limit": [ @@ -145259,19 +145850,19 @@ export default { 40 ], "order_by": [ - 5519, + 5525, "[v_player_match_map_roles_order_by!]" ], "where": [ - 5516 + 5522 ] } ], "v_player_match_map_roles_aggregate": [ - 5513, + 5519, { "distinct_on": [ - 5520, + 5526, "[v_player_match_map_roles_select_column!]" ], "limit": [ @@ -145281,19 +145872,19 @@ export default { 40 ], "order_by": [ - 5519, + 5525, "[v_player_match_map_roles_order_by!]" ], "where": [ - 5516 + 5522 ] } ], "v_player_match_performance": [ - 5530, + 5536, { "distinct_on": [ - 5538, + 5544, "[v_player_match_performance_select_column!]" ], "limit": [ @@ -145303,19 +145894,19 @@ export default { 40 ], "order_by": [ - 5537, + 5543, "[v_player_match_performance_order_by!]" ], "where": [ - 5534 + 5540 ] } ], "v_player_match_performance_aggregate": [ - 5531, + 5537, { "distinct_on": [ - 5538, + 5544, "[v_player_match_performance_select_column!]" ], "limit": [ @@ -145325,19 +145916,19 @@ export default { 40 ], "order_by": [ - 5537, + 5543, "[v_player_match_performance_order_by!]" ], "where": [ - 5534 + 5540 ] } ], "v_player_match_rating": [ - 5548, + 5554, { "distinct_on": [ - 5556, + 5562, "[v_player_match_rating_select_column!]" ], "limit": [ @@ -145347,19 +145938,19 @@ export default { 40 ], "order_by": [ - 5555, + 5561, "[v_player_match_rating_order_by!]" ], "where": [ - 5552 + 5558 ] } ], "v_player_match_rating_aggregate": [ - 5549, + 5555, { "distinct_on": [ - 5556, + 5562, "[v_player_match_rating_select_column!]" ], "limit": [ @@ -145369,19 +145960,19 @@ export default { 40 ], "order_by": [ - 5555, + 5561, "[v_player_match_rating_order_by!]" ], "where": [ - 5552 + 5558 ] } ], "v_player_multi_kills": [ - 5566, + 5572, { "distinct_on": [ - 5582, + 5588, "[v_player_multi_kills_select_column!]" ], "limit": [ @@ -145391,19 +145982,19 @@ export default { 40 ], "order_by": [ - 5581, + 5587, "[v_player_multi_kills_order_by!]" ], "where": [ - 5575 + 5581 ] } ], "v_player_multi_kills_aggregate": [ - 5567, + 5573, { "distinct_on": [ - 5582, + 5588, "[v_player_multi_kills_select_column!]" ], "limit": [ @@ -145413,19 +146004,19 @@ export default { 40 ], "order_by": [ - 5581, + 5587, "[v_player_multi_kills_order_by!]" ], "where": [ - 5575 + 5581 ] } ], "v_player_weapon_damage": [ - 5599, + 5605, { "distinct_on": [ - 5607, + 5613, "[v_player_weapon_damage_select_column!]" ], "limit": [ @@ -145435,19 +146026,19 @@ export default { 40 ], "order_by": [ - 5606, + 5612, "[v_player_weapon_damage_order_by!]" ], "where": [ - 5603 + 5609 ] } ], "v_player_weapon_damage_aggregate": [ - 5600, + 5606, { "distinct_on": [ - 5607, + 5613, "[v_player_weapon_damage_select_column!]" ], "limit": [ @@ -145457,19 +146048,19 @@ export default { 40 ], "order_by": [ - 5606, + 5612, "[v_player_weapon_damage_order_by!]" ], "where": [ - 5603 + 5609 ] } ], "v_player_weapon_kills": [ - 5617, + 5623, { "distinct_on": [ - 5625, + 5631, "[v_player_weapon_kills_select_column!]" ], "limit": [ @@ -145479,19 +146070,19 @@ export default { 40 ], "order_by": [ - 5624, + 5630, "[v_player_weapon_kills_order_by!]" ], "where": [ - 5621 + 5627 ] } ], "v_player_weapon_kills_aggregate": [ - 5618, + 5624, { "distinct_on": [ - 5625, + 5631, "[v_player_weapon_kills_select_column!]" ], "limit": [ @@ -145501,19 +146092,19 @@ export default { 40 ], "order_by": [ - 5624, + 5630, "[v_player_weapon_kills_order_by!]" ], "where": [ - 5621 + 5627 ] } ], "v_pool_maps": [ - 5635, + 5641, { "distinct_on": [ - 5652, + 5658, "[v_pool_maps_select_column!]" ], "limit": [ @@ -145523,19 +146114,19 @@ export default { 40 ], "order_by": [ - 5651, + 5657, "[v_pool_maps_order_by!]" ], "where": [ - 5644 + 5650 ] } ], "v_pool_maps_aggregate": [ - 5636, + 5642, { "distinct_on": [ - 5652, + 5658, "[v_pool_maps_select_column!]" ], "limit": [ @@ -145545,19 +146136,19 @@ export default { 40 ], "order_by": [ - 5651, + 5657, "[v_pool_maps_order_by!]" ], "where": [ - 5644 + 5650 ] } ], "v_steam_account_pool_status": [ - 5659, + 5665, { "distinct_on": [ - 5667, + 5673, "[v_steam_account_pool_status_select_column!]" ], "limit": [ @@ -145567,19 +146158,19 @@ export default { 40 ], "order_by": [ - 5666, + 5672, "[v_steam_account_pool_status_order_by!]" ], "where": [ - 5663 + 5669 ] } ], "v_steam_account_pool_status_aggregate": [ - 5660, + 5666, { "distinct_on": [ - 5667, + 5673, "[v_steam_account_pool_status_select_column!]" ], "limit": [ @@ -145589,19 +146180,19 @@ export default { 40 ], "order_by": [ - 5666, + 5672, "[v_steam_account_pool_status_order_by!]" ], "where": [ - 5663 + 5669 ] } ], "v_team_ranks": [ - 5677, + 5683, { "distinct_on": [ - 5687, + 5693, "[v_team_ranks_select_column!]" ], "limit": [ @@ -145611,19 +146202,19 @@ export default { 40 ], "order_by": [ - 5686, + 5692, "[v_team_ranks_order_by!]" ], "where": [ - 5681 + 5687 ] } ], "v_team_ranks_aggregate": [ - 5678, + 5684, { "distinct_on": [ - 5687, + 5693, "[v_team_ranks_select_column!]" ], "limit": [ @@ -145633,19 +146224,19 @@ export default { 40 ], "order_by": [ - 5686, + 5692, "[v_team_ranks_order_by!]" ], "where": [ - 5681 + 5687 ] } ], "v_team_reputation": [ - 5697, + 5703, { "distinct_on": [ - 5707, + 5713, "[v_team_reputation_select_column!]" ], "limit": [ @@ -145655,19 +146246,19 @@ export default { 40 ], "order_by": [ - 5706, + 5712, "[v_team_reputation_order_by!]" ], "where": [ - 5701 + 5707 ] } ], "v_team_reputation_aggregate": [ - 5698, + 5704, { "distinct_on": [ - 5707, + 5713, "[v_team_reputation_select_column!]" ], "limit": [ @@ -145677,19 +146268,19 @@ export default { 40 ], "order_by": [ - 5706, + 5712, "[v_team_reputation_order_by!]" ], "where": [ - 5701 + 5707 ] } ], "v_team_stage_results": [ - 5717, + 5723, { "distinct_on": [ - 5749, + 5755, "[v_team_stage_results_select_column!]" ], "limit": [ @@ -145699,19 +146290,19 @@ export default { 40 ], "order_by": [ - 5747, + 5753, "[v_team_stage_results_order_by!]" ], "where": [ - 5736 + 5742 ] } ], "v_team_stage_results_aggregate": [ - 5718, + 5724, { "distinct_on": [ - 5749, + 5755, "[v_team_stage_results_select_column!]" ], "limit": [ @@ -145721,32 +146312,32 @@ export default { 40 ], "order_by": [ - 5747, + 5753, "[v_team_stage_results_order_by!]" ], "where": [ - 5736 + 5742 ] } ], "v_team_stage_results_by_pk": [ - 5717, + 5723, { "tournament_stage_id": [ - 4993, + 4999, "uuid!" ], "tournament_team_id": [ - 4993, + 4999, "uuid!" ] } ], "v_team_tournament_results": [ - 5777, + 5783, { "distinct_on": [ - 5803, + 5809, "[v_team_tournament_results_select_column!]" ], "limit": [ @@ -145756,19 +146347,19 @@ export default { 40 ], "order_by": [ - 5802, + 5808, "[v_team_tournament_results_order_by!]" ], "where": [ - 5796 + 5802 ] } ], "v_team_tournament_results_aggregate": [ - 5778, + 5784, { "distinct_on": [ - 5803, + 5809, "[v_team_tournament_results_select_column!]" ], "limit": [ @@ -145778,19 +146369,19 @@ export default { 40 ], "order_by": [ - 5802, + 5808, "[v_team_tournament_results_order_by!]" ], "where": [ - 5796 + 5802 ] } ], "v_tournament_player_stats": [ - 5828, + 5834, { "distinct_on": [ - 5854, + 5860, "[v_tournament_player_stats_select_column!]" ], "limit": [ @@ -145800,19 +146391,19 @@ export default { 40 ], "order_by": [ - 5853, + 5859, "[v_tournament_player_stats_order_by!]" ], "where": [ - 5847 + 5853 ] } ], "v_tournament_player_stats_aggregate": [ - 5829, + 5835, { "distinct_on": [ - 5854, + 5860, "[v_tournament_player_stats_select_column!]" ], "limit": [ @@ -145822,11 +146413,11 @@ export default { 40 ], "order_by": [ - 5853, + 5859, "[v_tournament_player_stats_order_by!]" ], "where": [ - 5847 + 5853 ] } ], @@ -145839,7 +146430,7 @@ export default { 57, { "match_id": [ - 4993, + 4999, "uuid!" ] } @@ -145848,17 +146439,17 @@ export default { 83, { "match_id": [ - 4993, + 4999, "uuid!" ], "reset_status": [ 80 ], "scheduled_at": [ - 4493 + 4499 ], "winning_lineup_id": [ - 4993 + 4999 ] } ], @@ -145866,7 +146457,7 @@ export default { 83, { "invite_id": [ - 4993, + 4999, "uuid!" ], "type": [ @@ -145879,7 +146470,7 @@ export default { 83, { "draftGameId": [ - 4993, + 4999, "uuid!" ], "steamId": [ @@ -145912,20 +146503,20 @@ export default { "String!" ], "steam_id": [ - 252, + 258, "bigint!" ] } ], "approve_league_season_movements": [ - 2053, + 2059, { "args": [ - 182, + 188, "approve_league_season_movements_args!" ], "distinct_on": [ - 2074, + 2080, "[league_team_movements_select_column!]" ], "limit": [ @@ -145935,11 +146526,11 @@ export default { 40 ], "order_by": [ - 2072, + 2078, "[league_team_movements_order_by!]" ], "where": [ - 2062 + 2068 ] } ], @@ -145947,7 +146538,7 @@ export default { 76 ], "attachDemo": [ - 94 + 100 ], "backfillSeasonElo": [ 60, @@ -145965,7 +146556,7 @@ export default { 83, { "game_server_node_id": [ - 4993, + 4999, "uuid!" ] } @@ -145986,7 +146577,7 @@ export default { 83, { "game_server_node_id": [ - 4993, + 4999, "uuid!" ] } @@ -145995,7 +146586,7 @@ export default { 83, { "job_id": [ - 4993, + 4999, "uuid!" ] } @@ -146004,7 +146595,7 @@ export default { 83, { "match_map_id": [ - 4993, + 4999, "uuid!" ] } @@ -146013,7 +146604,7 @@ export default { 83, { "match_id": [ - 4993, + 4999, "uuid!" ] } @@ -146031,7 +146622,7 @@ export default { 83, { "request_id": [ - 4993, + 4999, "uuid!" ] } @@ -146040,7 +146631,7 @@ export default { 83, { "match_id": [ - 4993, + 4999, "uuid!" ] } @@ -146049,7 +146640,7 @@ export default { 83, { "match_map_id": [ - 4993, + 4999, "uuid!" ] } @@ -146067,14 +146658,14 @@ export default { } ], "clone_league_season": [ - 2020, + 2026, { "args": [ - 307, + 313, "clone_league_season_args!" ], "distinct_on": [ - 2040, + 2046, "[league_seasons_select_column!]" ], "limit": [ @@ -146084,11 +146675,11 @@ export default { 40 ], "order_by": [ - 2037, + 2043, "[league_seasons_order_by!]" ], "where": [ - 2025 + 2031 ] } ], @@ -146096,11 +146687,11 @@ export default { 83, { "proposed_scheduled_at": [ - 4493, + 4499, "timestamptz!" ], "request_id": [ - 4993, + 4999, "uuid!" ] } @@ -146121,7 +146712,7 @@ export default { 40 ], "match_map_id": [ - 4993, + 4999, "uuid!" ], "preset": [ @@ -146156,7 +146747,7 @@ export default { 83, { "match_id": [ - 4993, + 4999, "uuid!" ] } @@ -146165,7 +146756,7 @@ export default { 16, { "settings": [ - 1817, + 1823, "jsonb!" ] } @@ -146182,7 +146773,7 @@ export default { "ScheduledLineupInput!" ], "options": [ - 1817, + 1823, "jsonb!" ], "scheduled_at": [ @@ -146211,7 +146802,7 @@ export default { 83, { "id": [ - 4993, + 4999, "uuid!" ] } @@ -146220,7 +146811,7 @@ export default { 83, { "clip_id": [ - 4993, + 4999, "uuid!" ] } @@ -146238,7 +146829,7 @@ export default { 83, { "id": [ - 4993, + 4999, "uuid!" ] } @@ -146272,228 +146863,228 @@ export default { 83, { "tournament_id": [ - 4993, + 4999, "uuid!" ] } ], "delete__map_pool": [ - 103, + 109, { "where": [ - 98, + 104, "_map_pool_bool_exp!" ] } ], "delete__map_pool_by_pk": [ - 95, + 101, { "map_id": [ - 4993, + 4999, "uuid!" ], "map_pool_id": [ - 4993, + 4999, "uuid!" ] } ], "delete_abandoned_matches": [ - 131, + 137, { "where": [ - 123, + 129, "abandoned_matches_bool_exp!" ] } ], "delete_abandoned_matches_by_pk": [ - 114, + 120, { "id": [ - 4993, + 4999, "uuid!" ] } ], "delete_api_keys": [ - 165, + 171, { "where": [ - 159, + 165, "api_keys_bool_exp!" ] } ], "delete_api_keys_by_pk": [ - 155, + 161, { "id": [ - 4993, + 4999, "uuid!" ] } ], "delete_award_recipients": [ - 200, + 206, { "where": [ - 192, + 198, "award_recipients_bool_exp!" ] } ], "delete_award_recipients_by_pk": [ - 183, + 189, { "id": [ - 4993, + 4999, "uuid!" ] } ], "delete_awards": [ - 234, + 240, { "where": [ - 228, + 234, "awards_bool_exp!" ] } ], "delete_awards_by_pk": [ - 224, + 230, { "id": [ - 4993, + 4999, "uuid!" ] } ], "delete_clip_render_jobs": [ - 280, + 286, { "where": [ - 269, + 275, "clip_render_jobs_bool_exp!" ] } ], "delete_clip_render_jobs_by_pk": [ - 257, + 263, { "id": [ - 4993, + 4999, "uuid!" ] } ], "delete_custom_pages": [ - 323, + 329, { "where": [ - 314, + 320, "custom_pages_bool_exp!" ] } ], "delete_custom_pages_by_pk": [ - 309, + 315, { "id": [ - 4993, + 4999, "uuid!" ] } ], "delete_db_backups": [ - 351, + 357, { "where": [ - 345, + 351, "db_backups_bool_exp!" ] } ], "delete_db_backups_by_pk": [ - 341, + 347, { "id": [ - 4993, + 4999, "uuid!" ] } ], "delete_draft_game_picks": [ - 387, + 393, { "where": [ - 379, + 385, "draft_game_picks_bool_exp!" ] } ], "delete_draft_game_picks_by_pk": [ - 368, + 374, { "id": [ - 4993, + 4999, "uuid!" ] } ], "delete_draft_game_players": [ - 432, + 438, { "where": [ - 424, + 430, "draft_game_players_bool_exp!" ] } ], "delete_draft_game_players_by_pk": [ - 413, + 419, { "draft_game_id": [ - 4993, + 4999, "uuid!" ], "steam_id": [ - 252, + 258, "bigint!" ] } ], "delete_draft_games": [ - 477, + 483, { "where": [ - 469, + 475, "draft_games_bool_exp!" ] } ], "delete_draft_games_by_pk": [ - 458, + 464, { "id": [ - 4993, + 4999, "uuid!" ] } ], "delete_e_award_sources": [ - 514, + 520, { "where": [ - 507, + 513, "e_award_sources_bool_exp!" ] } ], "delete_e_award_sources_by_pk": [ - 504, + 510, { "value": [ 80, @@ -146502,16 +147093,16 @@ export default { } ], "delete_e_award_tiers": [ - 534, + 540, { "where": [ - 527, + 533, "e_award_tiers_bool_exp!" ] } ], "delete_e_award_tiers_by_pk": [ - 524, + 530, { "value": [ 80, @@ -146520,16 +147111,16 @@ export default { } ], "delete_e_check_in_settings": [ - 554, + 560, { "where": [ - 547, + 553, "e_check_in_settings_bool_exp!" ] } ], "delete_e_check_in_settings_by_pk": [ - 544, + 550, { "value": [ 80, @@ -146538,16 +147129,16 @@ export default { } ], "delete_e_draft_game_captain_selection": [ - 574, + 580, { "where": [ - 567, + 573, "e_draft_game_captain_selection_bool_exp!" ] } ], "delete_e_draft_game_captain_selection_by_pk": [ - 564, + 570, { "value": [ 80, @@ -146556,16 +147147,16 @@ export default { } ], "delete_e_draft_game_draft_order": [ - 595, + 601, { "where": [ - 588, + 594, "e_draft_game_draft_order_bool_exp!" ] } ], "delete_e_draft_game_draft_order_by_pk": [ - 585, + 591, { "value": [ 80, @@ -146574,16 +147165,16 @@ export default { } ], "delete_e_draft_game_mode": [ - 616, + 622, { "where": [ - 609, + 615, "e_draft_game_mode_bool_exp!" ] } ], "delete_e_draft_game_mode_by_pk": [ - 606, + 612, { "value": [ 80, @@ -146592,16 +147183,16 @@ export default { } ], "delete_e_draft_game_player_status": [ - 637, + 643, { "where": [ - 630, + 636, "e_draft_game_player_status_bool_exp!" ] } ], "delete_e_draft_game_player_status_by_pk": [ - 627, + 633, { "value": [ 80, @@ -146610,16 +147201,16 @@ export default { } ], "delete_e_draft_game_status": [ - 658, + 664, { "where": [ - 651, + 657, "e_draft_game_status_bool_exp!" ] } ], "delete_e_draft_game_status_by_pk": [ - 648, + 654, { "value": [ 80, @@ -146628,16 +147219,16 @@ export default { } ], "delete_e_event_media_access": [ - 679, + 685, { "where": [ - 672, + 678, "e_event_media_access_bool_exp!" ] } ], "delete_e_event_media_access_by_pk": [ - 669, + 675, { "value": [ 80, @@ -146646,16 +147237,16 @@ export default { } ], "delete_e_event_visibility": [ - 699, + 705, { "where": [ - 692, + 698, "e_event_visibility_bool_exp!" ] } ], "delete_e_event_visibility_by_pk": [ - 689, + 695, { "value": [ 80, @@ -146664,16 +147255,16 @@ export default { } ], "delete_e_friend_status": [ - 719, + 725, { "where": [ - 712, + 718, "e_friend_status_bool_exp!" ] } ], "delete_e_friend_status_by_pk": [ - 709, + 715, { "value": [ 80, @@ -146682,16 +147273,16 @@ export default { } ], "delete_e_game_cfg_types": [ - 740, + 746, { "where": [ - 733, + 739, "e_game_cfg_types_bool_exp!" ] } ], "delete_e_game_cfg_types_by_pk": [ - 730, + 736, { "value": [ 80, @@ -146700,16 +147291,16 @@ export default { } ], "delete_e_game_server_node_statuses": [ - 760, + 766, { "where": [ - 753, + 759, "e_game_server_node_statuses_bool_exp!" ] } ], "delete_e_game_server_node_statuses_by_pk": [ - 750, + 756, { "value": [ 80, @@ -146718,16 +147309,16 @@ export default { } ], "delete_e_league_movement_types": [ - 781, + 787, { "where": [ - 774, + 780, "e_league_movement_types_bool_exp!" ] } ], "delete_e_league_movement_types_by_pk": [ - 771, + 777, { "value": [ 80, @@ -146736,16 +147327,16 @@ export default { } ], "delete_e_league_proposal_statuses": [ - 802, + 808, { "where": [ - 795, + 801, "e_league_proposal_statuses_bool_exp!" ] } ], "delete_e_league_proposal_statuses_by_pk": [ - 792, + 798, { "value": [ 80, @@ -146754,16 +147345,16 @@ export default { } ], "delete_e_league_registration_statuses": [ - 823, + 829, { "where": [ - 816, + 822, "e_league_registration_statuses_bool_exp!" ] } ], "delete_e_league_registration_statuses_by_pk": [ - 813, + 819, { "value": [ 80, @@ -146772,16 +147363,16 @@ export default { } ], "delete_e_league_season_statuses": [ - 844, + 850, { "where": [ - 837, + 843, "e_league_season_statuses_bool_exp!" ] } ], "delete_e_league_season_statuses_by_pk": [ - 834, + 840, { "value": [ 80, @@ -146790,16 +147381,16 @@ export default { } ], "delete_e_lobby_access": [ - 865, + 871, { "where": [ - 858, + 864, "e_lobby_access_bool_exp!" ] } ], "delete_e_lobby_access_by_pk": [ - 855, + 861, { "value": [ 80, @@ -146808,16 +147399,16 @@ export default { } ], "delete_e_lobby_player_status": [ - 886, + 892, { "where": [ - 879, + 885, "e_lobby_player_status_bool_exp!" ] } ], "delete_e_lobby_player_status_by_pk": [ - 876, + 882, { "value": [ 80, @@ -146826,16 +147417,16 @@ export default { } ], "delete_e_map_pool_types": [ - 906, + 912, { "where": [ - 899, + 905, "e_map_pool_types_bool_exp!" ] } ], "delete_e_map_pool_types_by_pk": [ - 896, + 902, { "value": [ 80, @@ -146844,16 +147435,16 @@ export default { } ], "delete_e_match_clip_visibility": [ - 927, + 933, { "where": [ - 920, + 926, "e_match_clip_visibility_bool_exp!" ] } ], "delete_e_match_clip_visibility_by_pk": [ - 917, + 923, { "value": [ 80, @@ -146862,16 +147453,16 @@ export default { } ], "delete_e_match_map_status": [ - 947, + 953, { "where": [ - 940, + 946, "e_match_map_status_bool_exp!" ] } ], "delete_e_match_map_status_by_pk": [ - 937, + 943, { "value": [ 80, @@ -146880,16 +147471,16 @@ export default { } ], "delete_e_match_mode": [ - 968, + 974, { "where": [ - 961, + 967, "e_match_mode_bool_exp!" ] } ], "delete_e_match_mode_by_pk": [ - 958, + 964, { "value": [ 80, @@ -146898,16 +147489,16 @@ export default { } ], "delete_e_match_status": [ - 988, + 994, { "where": [ - 981, + 987, "e_match_status_bool_exp!" ] } ], "delete_e_match_status_by_pk": [ - 978, + 984, { "value": [ 80, @@ -146916,16 +147507,16 @@ export default { } ], "delete_e_match_types": [ - 1009, + 1015, { "where": [ - 1002, + 1008, "e_match_types_bool_exp!" ] } ], "delete_e_match_types_by_pk": [ - 999, + 1005, { "value": [ 80, @@ -146934,16 +147525,16 @@ export default { } ], "delete_e_notification_types": [ - 1030, + 1036, { "where": [ - 1023, + 1029, "e_notification_types_bool_exp!" ] } ], "delete_e_notification_types_by_pk": [ - 1020, + 1026, { "value": [ 80, @@ -146952,16 +147543,16 @@ export default { } ], "delete_e_objective_types": [ - 1050, + 1056, { "where": [ - 1043, + 1049, "e_objective_types_bool_exp!" ] } ], "delete_e_objective_types_by_pk": [ - 1040, + 1046, { "value": [ 80, @@ -146970,16 +147561,16 @@ export default { } ], "delete_e_player_roles": [ - 1070, + 1076, { "where": [ - 1063, + 1069, "e_player_roles_bool_exp!" ] } ], "delete_e_player_roles_by_pk": [ - 1060, + 1066, { "value": [ 80, @@ -146988,16 +147579,16 @@ export default { } ], "delete_e_plugin_runtimes": [ - 1090, + 1096, { "where": [ - 1083, + 1089, "e_plugin_runtimes_bool_exp!" ] } ], "delete_e_plugin_runtimes_by_pk": [ - 1080, + 1086, { "value": [ 80, @@ -147006,16 +147597,16 @@ export default { } ], "delete_e_ready_settings": [ - 1110, + 1116, { "where": [ - 1103, + 1109, "e_ready_settings_bool_exp!" ] } ], "delete_e_ready_settings_by_pk": [ - 1100, + 1106, { "value": [ 80, @@ -147024,16 +147615,16 @@ export default { } ], "delete_e_sanction_types": [ - 1130, + 1136, { "where": [ - 1123, + 1129, "e_sanction_types_bool_exp!" ] } ], "delete_e_sanction_types_by_pk": [ - 1120, + 1126, { "value": [ 80, @@ -147042,16 +147633,16 @@ export default { } ], "delete_e_scrim_request_statuses": [ - 1151, + 1157, { "where": [ - 1144, + 1150, "e_scrim_request_statuses_bool_exp!" ] } ], "delete_e_scrim_request_statuses_by_pk": [ - 1141, + 1147, { "value": [ 80, @@ -147060,16 +147651,16 @@ export default { } ], "delete_e_server_types": [ - 1171, + 1177, { "where": [ - 1164, + 1170, "e_server_types_bool_exp!" ] } ], "delete_e_server_types_by_pk": [ - 1161, + 1167, { "value": [ 80, @@ -147078,16 +147669,16 @@ export default { } ], "delete_e_sides": [ - 1191, + 1197, { "where": [ - 1184, + 1190, "e_sides_bool_exp!" ] } ], "delete_e_sides_by_pk": [ - 1181, + 1187, { "value": [ 80, @@ -147096,16 +147687,16 @@ export default { } ], "delete_e_system_alert_types": [ - 1211, + 1217, { "where": [ - 1204, + 1210, "e_system_alert_types_bool_exp!" ] } ], "delete_e_system_alert_types_by_pk": [ - 1201, + 1207, { "value": [ 80, @@ -147114,16 +147705,16 @@ export default { } ], "delete_e_team_roles": [ - 1231, + 1237, { "where": [ - 1224, + 1230, "e_team_roles_bool_exp!" ] } ], "delete_e_team_roles_by_pk": [ - 1221, + 1227, { "value": [ 80, @@ -147132,16 +147723,16 @@ export default { } ], "delete_e_team_roster_statuses": [ - 1252, + 1258, { "where": [ - 1245, + 1251, "e_team_roster_statuses_bool_exp!" ] } ], "delete_e_team_roster_statuses_by_pk": [ - 1242, + 1248, { "value": [ 80, @@ -147150,16 +147741,16 @@ export default { } ], "delete_e_timeout_settings": [ - 1272, + 1278, { "where": [ - 1265, + 1271, "e_timeout_settings_bool_exp!" ] } ], "delete_e_timeout_settings_by_pk": [ - 1262, + 1268, { "value": [ 80, @@ -147168,16 +147759,16 @@ export default { } ], "delete_e_tournament_categories": [ - 1292, + 1298, { "where": [ - 1285, + 1291, "e_tournament_categories_bool_exp!" ] } ], "delete_e_tournament_categories_by_pk": [ - 1282, + 1288, { "value": [ 80, @@ -147186,16 +147777,16 @@ export default { } ], "delete_e_tournament_stage_types": [ - 1313, + 1319, { "where": [ - 1306, + 1312, "e_tournament_stage_types_bool_exp!" ] } ], "delete_e_tournament_stage_types_by_pk": [ - 1303, + 1309, { "value": [ 80, @@ -147204,16 +147795,16 @@ export default { } ], "delete_e_tournament_status": [ - 1334, + 1340, { "where": [ - 1327, + 1333, "e_tournament_status_bool_exp!" ] } ], "delete_e_tournament_status_by_pk": [ - 1324, + 1330, { "value": [ 80, @@ -147222,16 +147813,16 @@ export default { } ], "delete_e_utility_types": [ - 1355, + 1361, { "where": [ - 1348, + 1354, "e_utility_types_bool_exp!" ] } ], "delete_e_utility_types_by_pk": [ - 1345, + 1351, { "value": [ 80, @@ -147240,16 +147831,16 @@ export default { } ], "delete_e_veto_pick_types": [ - 1375, + 1381, { "where": [ - 1368, + 1374, "e_veto_pick_types_bool_exp!" ] } ], "delete_e_veto_pick_types_by_pk": [ - 1365, + 1371, { "value": [ 80, @@ -147258,16 +147849,16 @@ export default { } ], "delete_e_winning_reasons": [ - 1395, + 1401, { "where": [ - 1388, + 1394, "e_winning_reasons_bool_exp!" ] } ], "delete_e_winning_reasons_by_pk": [ - 1385, + 1391, { "value": [ 80, @@ -147276,206 +147867,206 @@ export default { } ], "delete_event_match_links": [ - 1413, + 1419, { "where": [ - 1408, + 1414, "event_match_links_bool_exp!" ] } ], "delete_event_match_links_by_pk": [ - 1405, + 1411, { "event_id": [ - 4993, + 4999, "uuid!" ], "match_id": [ - 4993, + 4999, "uuid!" ] } ], "delete_event_media": [ - 1440, + 1446, { "where": [ - 1432, + 1438, "event_media_bool_exp!" ] } ], "delete_event_media_by_pk": [ - 1423, + 1429, { "id": [ - 4993, + 4999, "uuid!" ] } ], "delete_event_media_players": [ - 1462, + 1468, { "where": [ - 1454, + 1460, "event_media_players_bool_exp!" ] } ], "delete_event_media_players_by_pk": [ - 1445, + 1451, { "media_id": [ - 4993, + 4999, "uuid!" ], "steam_id": [ - 252, + 258, "bigint!" ] } ], "delete_event_organizers": [ - 1523, + 1529, { "where": [ - 1515, + 1521, "event_organizers_bool_exp!" ] } ], "delete_event_organizers_by_pk": [ - 1506, + 1512, { "event_id": [ - 4993, + 4999, "uuid!" ], "steam_id": [ - 252, + 258, "bigint!" ] } ], "delete_event_players": [ - 1564, + 1570, { "where": [ - 1556, + 1562, "event_players_bool_exp!" ] } ], "delete_event_players_by_pk": [ - 1547, + 1553, { "event_id": [ - 4993, + 4999, "uuid!" ], "steam_id": [ - 252, + 258, "bigint!" ] } ], "delete_event_teams": [ - 1602, + 1608, { "where": [ - 1595, + 1601, "event_teams_bool_exp!" ] } ], "delete_event_teams_by_pk": [ - 1588, + 1594, { "event_id": [ - 4993, + 4999, "uuid!" ], "team_id": [ - 4993, + 4999, "uuid!" ] } ], "delete_event_tournaments": [ - 1626, + 1632, { "where": [ - 1619, + 1625, "event_tournaments_bool_exp!" ] } ], "delete_event_tournaments_by_pk": [ - 1612, + 1618, { "event_id": [ - 4993, + 4999, "uuid!" ], "tournament_id": [ - 4993, + 4999, "uuid!" ] } ], "delete_events": [ - 1646, + 1652, { "where": [ - 1640, + 1646, "events_bool_exp!" ] } ], "delete_events_by_pk": [ - 1636, + 1642, { "id": [ - 4993, + 4999, "uuid!" ] } ], "delete_friends": [ - 1676, + 1682, { "where": [ - 1670, + 1676, "friends_bool_exp!" ] } ], "delete_friends_by_pk": [ - 1666, + 1672, { "other_player_steam_id": [ - 252, + 258, "bigint!" ], "player_steam_id": [ - 252, + 258, "bigint!" ] } ], "delete_game_server_nodes": [ - 1716, + 1722, { "where": [ - 1705, + 1711, "game_server_nodes_bool_exp!" ] } ], "delete_game_server_nodes_by_pk": [ - 1693, + 1699, { "id": [ 80, @@ -147484,16 +148075,16 @@ export default { } ], "delete_game_versions": [ - 1758, + 1764, { "where": [ - 1749, + 1755, "game_versions_bool_exp!" ] } ], "delete_game_versions_by_pk": [ - 1744, + 1750, { "build_id": [ 40, @@ -147502,537 +148093,537 @@ export default { } ], "delete_gamedata_signature_validations": [ - 1791, + 1797, { "where": [ - 1782, + 1788, "gamedata_signature_validations_bool_exp!" ] } ], "delete_gamedata_signature_validations_by_pk": [ - 1777, + 1783, { "id": [ - 4993, + 4999, "uuid!" ] } ], "delete_leaderboard_entries": [ - 1829, + 1835, { "where": [ - 1824, + 1830, "leaderboard_entries_bool_exp!" ] } ], "delete_league_divisions": [ - 1854, + 1860, { "where": [ - 1848, + 1854, "league_divisions_bool_exp!" ] } ], "delete_league_divisions_by_pk": [ - 1844, + 1850, { "id": [ - 4993, + 4999, "uuid!" ] } ], "delete_league_match_weeks": [ - 1889, + 1895, { "where": [ - 1881, + 1887, "league_match_weeks_bool_exp!" ] } ], "delete_league_match_weeks_by_pk": [ - 1872, + 1878, { "id": [ - 4993, + 4999, "uuid!" ] } ], "delete_league_relegation_playoffs": [ - 1930, + 1936, { "where": [ - 1922, + 1928, "league_relegation_playoffs_bool_exp!" ] } ], "delete_league_relegation_playoffs_by_pk": [ - 1913, + 1919, { "id": [ - 4993, + 4999, "uuid!" ] } ], "delete_league_scheduling_proposals": [ - 1971, + 1977, { "where": [ - 1963, + 1969, "league_scheduling_proposals_bool_exp!" ] } ], "delete_league_scheduling_proposals_by_pk": [ - 1954, + 1960, { "id": [ - 4993, + 4999, "uuid!" ] } ], "delete_league_season_divisions": [ - 2009, + 2015, { "where": [ - 2002, + 2008, "league_season_divisions_bool_exp!" ] } ], "delete_league_season_divisions_by_pk": [ - 1995, + 2001, { "id": [ - 4993, + 4999, "uuid!" ] } ], "delete_league_seasons": [ - 2034, + 2040, { "where": [ - 2025, + 2031, "league_seasons_bool_exp!" ] } ], "delete_league_seasons_by_pk": [ - 2020, + 2026, { "id": [ - 4993, + 4999, "uuid!" ] } ], "delete_league_team_movements": [ - 2070, + 2076, { "where": [ - 2062, + 2068, "league_team_movements_bool_exp!" ] } ], "delete_league_team_movements_by_pk": [ - 2053, + 2059, { "id": [ - 4993, + 4999, "uuid!" ] } ], "delete_league_team_rosters": [ - 2111, + 2117, { "where": [ - 2103, + 2109, "league_team_rosters_bool_exp!" ] } ], "delete_league_team_rosters_by_pk": [ - 2094, + 2100, { "league_team_season_id": [ - 4993, + 4999, "uuid!" ], "player_steam_id": [ - 252, + 258, "bigint!" ] } ], "delete_league_team_seasons": [ - 2152, + 2158, { "where": [ - 2144, + 2150, "league_team_seasons_bool_exp!" ] } ], "delete_league_team_seasons_by_pk": [ - 2135, + 2141, { "id": [ - 4993, + 4999, "uuid!" ] } ], "delete_league_teams": [ - 2185, + 2191, { "where": [ - 2180, + 2186, "league_teams_bool_exp!" ] } ], "delete_league_teams_by_pk": [ - 2177, + 2183, { "id": [ - 4993, + 4999, "uuid!" ] } ], "delete_lobbies": [ - 2204, + 2210, { "where": [ - 2199, + 2205, "lobbies_bool_exp!" ] } ], "delete_lobbies_by_pk": [ - 2196, + 2202, { "id": [ - 4993, + 4999, "uuid!" ] } ], "delete_lobby_players": [ - 2234, + 2240, { "where": [ - 2226, + 2232, "lobby_players_bool_exp!" ] } ], "delete_lobby_players_by_pk": [ - 2215, + 2221, { "lobby_id": [ - 4993, + 4999, "uuid!" ], "steam_id": [ - 252, + 258, "bigint!" ] } ], "delete_map_pools": [ - 2268, + 2274, { "where": [ - 2263, + 2269, "map_pools_bool_exp!" ] } ], "delete_map_pools_by_pk": [ - 2260, + 2266, { "id": [ - 4993, + 4999, "uuid!" ] } ], "delete_maps": [ - 2295, + 2301, { "where": [ - 2288, + 2294, "maps_bool_exp!" ] } ], "delete_maps_by_pk": [ - 2279, + 2285, { "id": [ - 4993, + 4999, "uuid!" ] } ], "delete_match_clips": [ - 2325, + 2331, { "where": [ - 2317, + 2323, "match_clips_bool_exp!" ] } ], "delete_match_clips_by_pk": [ - 2308, + 2314, { "id": [ - 4993, + 4999, "uuid!" ] } ], "delete_match_demo_sessions": [ - 2371, + 2377, { "where": [ - 2360, + 2366, "match_demo_sessions_bool_exp!" ] } ], "delete_match_demo_sessions_by_pk": [ - 2350, + 2356, { "id": [ - 4993, + 4999, "uuid!" ] } ], "delete_match_lineup_players": [ - 2415, + 2421, { "where": [ - 2407, + 2413, "match_lineup_players_bool_exp!" ] } ], "delete_match_lineup_players_by_pk": [ - 2396, + 2402, { "id": [ - 4993, + 4999, "uuid!" ] } ], "delete_match_lineups": [ - 2458, + 2464, { "where": [ - 2450, + 2456, "match_lineups_bool_exp!" ] } ], "delete_match_lineups_by_pk": [ - 2441, + 2447, { "id": [ - 4993, + 4999, "uuid!" ] } ], "delete_match_map_demos": [ - 2506, + 2512, { "where": [ - 2495, + 2501, "match_map_demos_bool_exp!" ] } ], "delete_match_map_demos_by_pk": [ - 2483, + 2489, { "id": [ - 4993, + 4999, "uuid!" ] } ], "delete_match_map_rounds": [ - 2551, + 2557, { "where": [ - 2543, + 2549, "match_map_rounds_bool_exp!" ] } ], "delete_match_map_rounds_by_pk": [ - 2534, + 2540, { "id": [ - 4993, + 4999, "uuid!" ] } ], "delete_match_map_veto_picks": [ - 2589, + 2595, { "where": [ - 2582, + 2588, "match_map_veto_picks_bool_exp!" ] } ], "delete_match_map_veto_picks_by_pk": [ - 2575, + 2581, { "id": [ - 4993, + 4999, "uuid!" ] } ], "delete_match_maps": [ - 2616, + 2622, { "where": [ - 2608, + 2614, "match_maps_bool_exp!" ] } ], "delete_match_maps_by_pk": [ - 2599, + 2605, { "id": [ - 4993, + 4999, "uuid!" ] } ], "delete_match_options": [ - 2651, + 2657, { "where": [ - 2645, + 2651, "match_options_bool_exp!" ] } ], "delete_match_options_by_pk": [ - 2641, + 2647, { "id": [ - 4993, + 4999, "uuid!" ] } ], "delete_match_region_veto_picks": [ - 2683, + 2689, { "where": [ - 2676, + 2682, "match_region_veto_picks_bool_exp!" ] } ], "delete_match_region_veto_picks_by_pk": [ - 2669, + 2675, { "id": [ - 4993, + 4999, "uuid!" ] } ], "delete_match_streams": [ - 2716, + 2722, { "where": [ - 2705, + 2711, "match_streams_bool_exp!" ] } ], "delete_match_streams_by_pk": [ - 2693, + 2699, { "id": [ - 4993, + 4999, "uuid!" ] } ], "delete_match_type_cfgs": [ - 2751, + 2757, { "where": [ - 2746, + 2752, "match_type_cfgs_bool_exp!" ] } ], "delete_match_type_cfgs_by_pk": [ - 2743, + 2749, { "type": [ - 735, + 741, "e_game_cfg_types_enum!" ] } ], "delete_matches": [ - 2778, + 2784, { "where": [ - 2770, + 2776, "matches_bool_exp!" ] } ], "delete_matches_by_pk": [ - 2761, + 2767, { "id": [ - 4993, + 4999, "uuid!" ] } ], "delete_migration_hashes_hashes": [ - 2811, + 2817, { "where": [ - 2806, + 2812, "migration_hashes_hashes_bool_exp!" ] } ], "delete_migration_hashes_hashes_by_pk": [ - 2803, + 2809, { "name": [ 80, @@ -148041,130 +148632,130 @@ export default { } ], "delete_my_friends": [ - 2843, + 2849, { "where": [ - 2833, + 2839, "my_friends_bool_exp!" ] } ], "delete_news_articles": [ - 2877, + 2883, { "where": [ - 2871, + 2877, "news_articles_bool_exp!" ] } ], "delete_news_articles_by_pk": [ - 2867, + 2873, { "id": [ - 4993, + 4999, "uuid!" ] } ], "delete_notifications": [ - 2917, + 2923, { "where": [ - 2906, + 2912, "notifications_bool_exp!" ] } ], "delete_notifications_by_pk": [ - 2894, + 2900, { "id": [ - 4993, + 4999, "uuid!" ] } ], "delete_pending_match_import_players": [ - 2964, + 2970, { "where": [ - 2956, + 2962, "pending_match_import_players_bool_exp!" ] } ], "delete_pending_match_import_players_by_pk": [ - 2947, + 2953, { "steam_id": [ - 252, + 258, "bigint!" ], "valve_match_id": [ - 2944, + 2950, "numeric!" ] } ], "delete_pending_match_imports": [ - 2998, + 3004, { "where": [ - 2992, + 2998, "pending_match_imports_bool_exp!" ] } ], "delete_pending_match_imports_by_pk": [ - 2988, + 2994, { "valve_match_id": [ - 2944, + 2950, "numeric!" ] } ], "delete_player_aim_stats_demo": [ - 3026, + 3032, { "where": [ - 3020, + 3026, "player_aim_stats_demo_bool_exp!" ] } ], "delete_player_aim_stats_demo_by_pk": [ - 3016, + 3022, { "attacker_steam_id": [ - 252, + 258, "bigint!" ], "match_map_id": [ - 4993, + 4999, "uuid!" ] } ], "delete_player_aim_weapon_stats": [ - 3060, + 3066, { "where": [ - 3052, + 3058, "player_aim_weapon_stats_bool_exp!" ] } ], "delete_player_aim_weapon_stats_by_pk": [ - 3043, + 3049, { "match_map_id": [ - 4993, + 4999, "uuid!" ], "steam_id": [ - 252, + 258, "bigint!" ], "weapon_class": [ @@ -148174,179 +148765,179 @@ export default { } ], "delete_player_assists": [ - 3103, + 3109, { "where": [ - 3095, + 3101, "player_assists_bool_exp!" ] } ], "delete_player_assists_by_pk": [ - 3084, + 3090, { "attacked_steam_id": [ - 252, + 258, "bigint!" ], "attacker_steam_id": [ - 252, + 258, "bigint!" ], "match_map_id": [ - 4993, + 4999, "uuid!" ], "time": [ - 4493, + 4499, "timestamptz!" ] } ], "delete_player_damages": [ - 3164, + 3170, { "where": [ - 3156, + 3162, "player_damages_bool_exp!" ] } ], "delete_player_damages_by_pk": [ - 3147, + 3153, { "id": [ - 4993, + 4999, "uuid!" ], "match_map_id": [ - 4993, + 4999, "uuid!" ], "time": [ - 4493, + 4499, "timestamptz!" ] } ], "delete_player_elo": [ - 3198, + 3204, { "where": [ - 3192, + 3198, "player_elo_bool_exp!" ] } ], "delete_player_elo_by_pk": [ - 3188, + 3194, { "match_id": [ - 4993, + 4999, "uuid!" ], "steam_id": [ - 252, + 258, "bigint!" ], "type": [ - 1004, + 1010, "e_match_types_enum!" ] } ], "delete_player_faceit_rank_history": [ - 3232, + 3238, { "where": [ - 3224, + 3230, "player_faceit_rank_history_bool_exp!" ] } ], "delete_player_faceit_rank_history_by_pk": [ - 3215, + 3221, { "id": [ - 4993, + 4999, "uuid!" ] } ], "delete_player_flashes": [ - 3275, + 3281, { "where": [ - 3267, + 3273, "player_flashes_bool_exp!" ] } ], "delete_player_flashes_by_pk": [ - 3256, + 3262, { "attacked_steam_id": [ - 252, + 258, "bigint!" ], "attacker_steam_id": [ - 252, + 258, "bigint!" ], "match_map_id": [ - 4993, + 4999, "uuid!" ], "time": [ - 4493, + 4499, "timestamptz!" ] } ], "delete_player_kills": [ - 3361, + 3367, { "where": [ - 3312, + 3318, "player_kills_bool_exp!" ] } ], "delete_player_kills_by_pk": [ - 3301, + 3307, { "attacked_steam_id": [ - 252, + 258, "bigint!" ], "attacker_steam_id": [ - 252, + 258, "bigint!" ], "match_map_id": [ - 4993, + 4999, "uuid!" ], "time": [ - 4493, + 4499, "timestamptz!" ] } ], "delete_player_kills_by_weapon": [ - 3330, + 3336, { "where": [ - 3322, + 3328, "player_kills_by_weapon_bool_exp!" ] } ], "delete_player_kills_by_weapon_by_pk": [ - 3313, + 3319, { "player_steam_id": [ - 252, + 258, "bigint!" ], "with": [ @@ -148356,258 +148947,258 @@ export default { } ], "delete_player_leaderboard_rank": [ - 3396, + 3402, { "where": [ - 3391, + 3397, "player_leaderboard_rank_bool_exp!" ] } ], "delete_player_match_map_stats": [ - 3427, + 3433, { "where": [ - 3419, + 3425, "player_match_map_stats_bool_exp!" ] } ], "delete_player_match_map_stats_by_pk": [ - 3410, + 3416, { "match_map_id": [ - 4993, + 4999, "uuid!" ], "steam_id": [ - 252, + 258, "bigint!" ] } ], "delete_player_objectives": [ - 3519, + 3525, { "where": [ - 3511, + 3517, "player_objectives_bool_exp!" ] } ], "delete_player_objectives_by_pk": [ - 3502, + 3508, { "match_map_id": [ - 4993, + 4999, "uuid!" ], "player_steam_id": [ - 252, + 258, "bigint!" ], "time": [ - 4493, + 4499, "timestamptz!" ] } ], "delete_player_premier_rank_history": [ - 3578, + 3584, { "where": [ - 3570, + 3576, "player_premier_rank_history_bool_exp!" ] } ], "delete_player_premier_rank_history_by_pk": [ - 3561, + 3567, { "id": [ - 4993, + 4999, "uuid!" ] } ], "delete_player_sanctions": [ - 3619, + 3625, { "where": [ - 3611, + 3617, "player_sanctions_bool_exp!" ] } ], "delete_player_sanctions_by_pk": [ - 3602, + 3608, { "created_at": [ - 4493, + 4499, "timestamptz!" ], "id": [ - 4993, + 4999, "uuid!" ] } ], "delete_player_season_stats": [ - 3670, + 3676, { "where": [ - 3662, + 3668, "player_season_stats_bool_exp!" ] } ], "delete_player_season_stats_by_pk": [ - 3643, + 3649, { "player_steam_id": [ - 252, + 258, "bigint!" ], "season_id": [ - 4993, + 4999, "uuid!" ] } ], "delete_player_stats": [ - 3712, + 3718, { "where": [ - 3706, + 3712, "player_stats_bool_exp!" ] } ], "delete_player_stats_by_pk": [ - 3702, + 3708, { "player_steam_id": [ - 252, + 258, "bigint!" ] } ], "delete_player_steam_bot_friend": [ - 3744, + 3750, { "where": [ - 3735, + 3741, "player_steam_bot_friend_bool_exp!" ] } ], "delete_player_steam_bot_friend_by_pk": [ - 3730, + 3736, { "steam_id": [ - 252, + 258, "bigint!" ] } ], "delete_player_steam_match_auth": [ - 3772, + 3778, { "where": [ - 3766, + 3772, "player_steam_match_auth_bool_exp!" ] } ], "delete_player_steam_match_auth_by_pk": [ - 3762, + 3768, { "steam_id": [ - 252, + 258, "bigint!" ] } ], "delete_player_unused_utility": [ - 3806, + 3812, { "where": [ - 3798, + 3804, "player_unused_utility_bool_exp!" ] } ], "delete_player_unused_utility_by_pk": [ - 3789, + 3795, { "match_map_id": [ - 4993, + 4999, "uuid!" ], "player_steam_id": [ - 252, + 258, "bigint!" ] } ], "delete_player_utility": [ - 3847, + 3853, { "where": [ - 3839, + 3845, "player_utility_bool_exp!" ] } ], "delete_player_utility_by_pk": [ - 3830, + 3836, { "attacker_steam_id": [ - 252, + 258, "bigint!" ], "match_map_id": [ - 4993, + 4999, "uuid!" ], "time": [ - 4493, + 4499, "timestamptz!" ] } ], "delete_players": [ - 3914, + 3920, { "where": [ - 3908, + 3914, "players_bool_exp!" ] } ], "delete_players_by_pk": [ - 3904, + 3910, { "steam_id": [ - 252, + 258, "bigint!" ] } ], "delete_plugin_versions": [ - 3942, + 3948, { "where": [ - 3936, + 3942, "plugin_versions_bool_exp!" ] } ], "delete_plugin_versions_by_pk": [ - 3932, + 3938, { "runtime": [ - 1085, + 1091, "e_plugin_runtimes_enum!" ], "version": [ @@ -148617,34 +149208,34 @@ export default { } ], "delete_seasons": [ - 3973, + 3979, { "where": [ - 3967, + 3973, "seasons_bool_exp!" ] } ], "delete_seasons_by_pk": [ - 3963, + 3969, { "id": [ - 4993, + 4999, "uuid!" ] } ], "delete_server_regions": [ - 4000, + 4006, { "where": [ - 3995, + 4001, "server_regions_bool_exp!" ] } ], "delete_server_regions_by_pk": [ - 3991, + 3997, { "value": [ 80, @@ -148653,34 +149244,34 @@ export default { } ], "delete_servers": [ - 4037, + 4043, { "where": [ - 4029, + 4035, "servers_bool_exp!" ] } ], "delete_servers_by_pk": [ - 4018, + 4024, { "id": [ - 4993, + 4999, "uuid!" ] } ], "delete_settings": [ - 4072, + 4078, { "where": [ - 4067, + 4073, "settings_bool_exp!" ] } ], "delete_settings_by_pk": [ - 4064, + 4070, { "name": [ 80, @@ -148689,511 +149280,511 @@ export default { } ], "delete_steam_account_claims": [ - 4098, + 4104, { "where": [ - 4091, + 4097, "steam_account_claims_bool_exp!" ] } ], "delete_steam_account_claims_by_pk": [ - 4084, + 4090, { "id": [ - 4993, + 4999, "uuid!" ] } ], "delete_steam_accounts": [ - 4118, + 4124, { "where": [ - 4112, + 4118, "steam_accounts_bool_exp!" ] } ], "delete_steam_accounts_by_pk": [ - 4108, + 4114, { "id": [ - 4993, + 4999, "uuid!" ] } ], "delete_system_alerts": [ - 4146, + 4152, { "where": [ - 4140, + 4146, "system_alerts_bool_exp!" ] } ], "delete_system_alerts_by_pk": [ - 4136, + 4142, { "id": [ - 4993, + 4999, "uuid!" ] } ], "delete_team_invites": [ - 4180, + 4186, { "where": [ - 4172, + 4178, "team_invites_bool_exp!" ] } ], "delete_team_invites_by_pk": [ - 4163, + 4169, { "id": [ - 4993, + 4999, "uuid!" ] } ], "delete_team_roster": [ - 4223, + 4229, { "where": [ - 4215, + 4221, "team_roster_bool_exp!" ] } ], "delete_team_roster_by_pk": [ - 4204, + 4210, { "player_steam_id": [ - 252, + 258, "bigint!" ], "team_id": [ - 4993, + 4999, "uuid!" ] } ], "delete_team_scrim_alerts": [ - 4259, + 4265, { "where": [ - 4253, + 4259, "team_scrim_alerts_bool_exp!" ] } ], "delete_team_scrim_alerts_by_pk": [ - 4249, + 4255, { "id": [ - 4993, + 4999, "uuid!" ] } ], "delete_team_scrim_availability": [ - 4292, + 4298, { "where": [ - 4285, + 4291, "team_scrim_availability_bool_exp!" ] } ], "delete_team_scrim_availability_by_pk": [ - 4276, + 4282, { "id": [ - 4993, + 4999, "uuid!" ] } ], "delete_team_scrim_request_proposals": [ - 4321, + 4327, { "where": [ - 4313, + 4319, "team_scrim_request_proposals_bool_exp!" ] } ], "delete_team_scrim_request_proposals_by_pk": [ - 4304, + 4310, { "id": [ - 4993, + 4999, "uuid!" ] } ], "delete_team_scrim_requests": [ - 4364, + 4370, { "where": [ - 4356, + 4362, "team_scrim_requests_bool_exp!" ] } ], "delete_team_scrim_requests_by_pk": [ - 4345, + 4351, { "id": [ - 4993, + 4999, "uuid!" ] } ], "delete_team_scrim_settings": [ - 4401, + 4407, { "where": [ - 4395, + 4401, "team_scrim_settings_bool_exp!" ] } ], "delete_team_scrim_settings_by_pk": [ - 4391, + 4397, { "id": [ - 4993, + 4999, "uuid!" ] } ], "delete_team_suggestions": [ - 4429, + 4435, { "where": [ - 4423, + 4429, "team_suggestions_bool_exp!" ] } ], "delete_team_suggestions_by_pk": [ - 4419, + 4425, { "id": [ - 4993, + 4999, "uuid!" ] } ], "delete_teams": [ - 4465, + 4471, { "where": [ - 4457, + 4463, "teams_bool_exp!" ] } ], "delete_teams_by_pk": [ - 4446, + 4452, { "id": [ - 4993, + 4999, "uuid!" ] } ], "delete_tournament_awards": [ - 4512, + 4518, { "where": [ - 4504, + 4510, "tournament_awards_bool_exp!" ] } ], "delete_tournament_awards_by_pk": [ - 4495, + 4501, { "id": [ - 4993, + 4999, "uuid!" ] } ], "delete_tournament_brackets": [ - 4556, + 4562, { "where": [ - 4548, + 4554, "tournament_brackets_bool_exp!" ] } ], "delete_tournament_brackets_by_pk": [ - 4537, + 4543, { "id": [ - 4993, + 4999, "uuid!" ] } ], "delete_tournament_categories": [ - 4597, + 4603, { "where": [ - 4590, + 4596, "tournament_categories_bool_exp!" ] } ], "delete_tournament_categories_by_pk": [ - 4583, + 4589, { "category": [ - 1287, + 1293, "e_tournament_categories_enum!" ], "tournament_id": [ - 4993, + 4999, "uuid!" ] } ], "delete_tournament_organizer_teams": [ - 4621, + 4627, { "where": [ - 4614, + 4620, "tournament_organizer_teams_bool_exp!" ] } ], "delete_tournament_organizer_teams_by_pk": [ - 4607, + 4613, { "team_id": [ - 4993, + 4999, "uuid!" ], "tournament_id": [ - 4993, + 4999, "uuid!" ] } ], "delete_tournament_organizers": [ - 4648, + 4654, { "where": [ - 4640, + 4646, "tournament_organizers_bool_exp!" ] } ], "delete_tournament_organizers_by_pk": [ - 4631, + 4637, { "steam_id": [ - 252, + 258, "bigint!" ], "tournament_id": [ - 4993, + 4999, "uuid!" ] } ], "delete_tournament_prizes": [ - 4689, + 4695, { "where": [ - 4681, + 4687, "tournament_prizes_bool_exp!" ] } ], "delete_tournament_prizes_by_pk": [ - 4672, + 4678, { "id": [ - 4993, + 4999, "uuid!" ] } ], "delete_tournament_stage_windows": [ - 4730, + 4736, { "where": [ - 4722, + 4728, "tournament_stage_windows_bool_exp!" ] } ], "delete_tournament_stage_windows_by_pk": [ - 4713, + 4719, { "id": [ - 4993, + 4999, "uuid!" ] } ], "delete_tournament_stages": [ - 4777, + 4783, { "where": [ - 4766, + 4772, "tournament_stages_bool_exp!" ] } ], "delete_tournament_stages_by_pk": [ - 4754, + 4760, { "id": [ - 4993, + 4999, "uuid!" ] } ], "delete_tournament_team_invites": [ - 4822, + 4828, { "where": [ - 4814, + 4820, "tournament_team_invites_bool_exp!" ] } ], "delete_tournament_team_invites_by_pk": [ - 4805, + 4811, { "id": [ - 4993, + 4999, "uuid!" ] } ], "delete_tournament_team_roster": [ - 4863, + 4869, { "where": [ - 4855, + 4861, "tournament_team_roster_bool_exp!" ] } ], "delete_tournament_team_roster_by_pk": [ - 4846, + 4852, { "player_steam_id": [ - 252, + 258, "bigint!" ], "tournament_id": [ - 4993, + 4999, "uuid!" ] } ], "delete_tournament_teams": [ - 4904, + 4910, { "where": [ - 4896, + 4902, "tournament_teams_bool_exp!" ] } ], "delete_tournament_teams_by_pk": [ - 4887, + 4893, { "id": [ - 4993, + 4999, "uuid!" ] } ], "delete_tournaments": [ - 4958, + 4964, { "where": [ - 4950, + 4956, "tournaments_bool_exp!" ] } ], "delete_tournaments_by_pk": [ - 4929, + 4935, { "id": [ - 4993, + 4999, "uuid!" ] } ], "delete_v_match_captains": [ - 5158, + 5164, { "where": [ - 5153, + 5159, "v_match_captains_bool_exp!" ] } ], "delete_v_match_map_backup_rounds": [ - 5269, + 5275, { "where": [ - 5264, + 5270, "v_match_map_backup_rounds_bool_exp!" ] } ], "delete_v_player_match_map_hltv": [ - 5491, + 5497, { "where": [ - 5484, + 5490, "v_player_match_map_hltv_bool_exp!" ] } ], "delete_v_pool_maps": [ - 5650, + 5656, { "where": [ - 5644, + 5650, "v_pool_maps_bool_exp!" ] } ], "delete_v_team_stage_results": [ - 5744, + 5750, { "where": [ - 5736, + 5742, "v_team_stage_results_bool_exp!" ] } ], "delete_v_team_stage_results_by_pk": [ - 5717, + 5723, { "tournament_stage_id": [ - 4993, + 4999, "uuid!" ], "tournament_team_id": [ - 4993, + 4999, "uuid!" ] } @@ -149202,7 +149793,7 @@ export default { 83, { "invite_id": [ - 4993, + 4999, "uuid!" ], "type": [ @@ -149215,11 +149806,11 @@ export default { 83, { "match_id": [ - 4993, + 4999, "uuid!" ], "winning_lineup_id": [ - 4993, + 4999, "uuid!" ] } @@ -149228,7 +149819,7 @@ export default { 45, { "match_id": [ - 4993, + 4999, "uuid!" ] } @@ -149240,3722 +149831,3731 @@ export default { 4, { "award_id": [ - 4993, + 4999, "uuid!" ], + "event_id": [ + 4999 + ], + "league_season_id": [ + 4999 + ], "note": [ 80 ], "player_steam_id": [ 80 ], + "season_id": [ + 4999 + ], "team_id": [ - 4993 + 4999 ], "tournament_id": [ - 4993 + 4999 ] } ], "insert__map_pool": [ - 103, + 109, { "objects": [ - 100, + 106, "[_map_pool_insert_input!]!" ], "on_conflict": [ - 104 + 110 ] } ], "insert__map_pool_one": [ - 95, + 101, { "object": [ - 100, + 106, "_map_pool_insert_input!" ], "on_conflict": [ - 104 + 110 ] } ], "insert_abandoned_matches": [ - 131, + 137, { "objects": [ - 126, + 132, "[abandoned_matches_insert_input!]!" ], "on_conflict": [ - 132 + 138 ] } ], "insert_abandoned_matches_one": [ - 114, + 120, { "object": [ - 126, + 132, "abandoned_matches_insert_input!" ], "on_conflict": [ - 132 + 138 ] } ], "insert_api_keys": [ - 165, + 171, { "objects": [ - 162, + 168, "[api_keys_insert_input!]!" ], "on_conflict": [ - 166 + 172 ] } ], "insert_api_keys_one": [ - 155, + 161, { "object": [ - 162, + 168, "api_keys_insert_input!" ], "on_conflict": [ - 166 + 172 ] } ], "insert_award_recipients": [ - 200, + 206, { "objects": [ - 195, + 201, "[award_recipients_insert_input!]!" ], "on_conflict": [ - 201 + 207 ] } ], "insert_award_recipients_one": [ - 183, + 189, { "object": [ - 195, + 201, "award_recipients_insert_input!" ], "on_conflict": [ - 201 + 207 ] } ], "insert_awards": [ - 234, + 240, { "objects": [ - 231, + 237, "[awards_insert_input!]!" ], "on_conflict": [ - 236 + 242 ] } ], "insert_awards_one": [ - 224, + 230, { "object": [ - 231, + 237, "awards_insert_input!" ], "on_conflict": [ - 236 + 242 ] } ], "insert_clip_render_jobs": [ - 280, + 286, { "objects": [ - 275, + 281, "[clip_render_jobs_insert_input!]!" ], "on_conflict": [ - 281 + 287 ] } ], "insert_clip_render_jobs_one": [ - 257, + 263, { "object": [ - 275, + 281, "clip_render_jobs_insert_input!" ], "on_conflict": [ - 281 + 287 ] } ], "insert_custom_pages": [ - 323, + 329, { "objects": [ - 320, + 326, "[custom_pages_insert_input!]!" ], "on_conflict": [ - 324 + 330 ] } ], "insert_custom_pages_one": [ - 309, + 315, { "object": [ - 320, + 326, "custom_pages_insert_input!" ], "on_conflict": [ - 324 + 330 ] } ], "insert_db_backups": [ - 351, + 357, { "objects": [ - 348, + 354, "[db_backups_insert_input!]!" ], "on_conflict": [ - 352 + 358 ] } ], "insert_db_backups_one": [ - 341, + 347, { "object": [ - 348, + 354, "db_backups_insert_input!" ], "on_conflict": [ - 352 + 358 ] } ], "insert_draft_game_picks": [ - 387, + 393, { "objects": [ - 382, + 388, "[draft_game_picks_insert_input!]!" ], "on_conflict": [ - 388 + 394 ] } ], "insert_draft_game_picks_one": [ - 368, + 374, { "object": [ - 382, + 388, "draft_game_picks_insert_input!" ], "on_conflict": [ - 388 + 394 ] } ], "insert_draft_game_players": [ - 432, + 438, { "objects": [ - 427, + 433, "[draft_game_players_insert_input!]!" ], "on_conflict": [ - 433 + 439 ] } ], "insert_draft_game_players_one": [ - 413, + 419, { "object": [ - 427, + 433, "draft_game_players_insert_input!" ], "on_conflict": [ - 433 + 439 ] } ], "insert_draft_games": [ - 477, + 483, { "objects": [ - 472, + 478, "[draft_games_insert_input!]!" ], "on_conflict": [ - 479 + 485 ] } ], "insert_draft_games_one": [ - 458, + 464, { "object": [ - 472, + 478, "draft_games_insert_input!" ], "on_conflict": [ - 479 + 485 ] } ], "insert_e_award_sources": [ - 514, + 520, { "objects": [ - 511, + 517, "[e_award_sources_insert_input!]!" ], "on_conflict": [ - 515 + 521 ] } ], "insert_e_award_sources_one": [ - 504, + 510, { "object": [ - 511, + 517, "e_award_sources_insert_input!" ], "on_conflict": [ - 515 + 521 ] } ], "insert_e_award_tiers": [ - 534, + 540, { "objects": [ - 531, + 537, "[e_award_tiers_insert_input!]!" ], "on_conflict": [ - 535 + 541 ] } ], "insert_e_award_tiers_one": [ - 524, + 530, { "object": [ - 531, + 537, "e_award_tiers_insert_input!" ], "on_conflict": [ - 535 + 541 ] } ], "insert_e_check_in_settings": [ - 554, + 560, { "objects": [ - 551, + 557, "[e_check_in_settings_insert_input!]!" ], "on_conflict": [ - 555 + 561 ] } ], "insert_e_check_in_settings_one": [ - 544, + 550, { "object": [ - 551, + 557, "e_check_in_settings_insert_input!" ], "on_conflict": [ - 555 + 561 ] } ], "insert_e_draft_game_captain_selection": [ - 574, + 580, { "objects": [ - 571, + 577, "[e_draft_game_captain_selection_insert_input!]!" ], "on_conflict": [ - 576 + 582 ] } ], "insert_e_draft_game_captain_selection_one": [ - 564, + 570, { "object": [ - 571, + 577, "e_draft_game_captain_selection_insert_input!" ], "on_conflict": [ - 576 + 582 ] } ], "insert_e_draft_game_draft_order": [ - 595, + 601, { "objects": [ - 592, + 598, "[e_draft_game_draft_order_insert_input!]!" ], "on_conflict": [ - 597 + 603 ] } ], "insert_e_draft_game_draft_order_one": [ - 585, + 591, { "object": [ - 592, + 598, "e_draft_game_draft_order_insert_input!" ], "on_conflict": [ - 597 + 603 ] } ], "insert_e_draft_game_mode": [ - 616, + 622, { "objects": [ - 613, + 619, "[e_draft_game_mode_insert_input!]!" ], "on_conflict": [ - 618 + 624 ] } ], "insert_e_draft_game_mode_one": [ - 606, + 612, { "object": [ - 613, + 619, "e_draft_game_mode_insert_input!" ], "on_conflict": [ - 618 + 624 ] } ], "insert_e_draft_game_player_status": [ - 637, + 643, { "objects": [ - 634, + 640, "[e_draft_game_player_status_insert_input!]!" ], "on_conflict": [ - 639 + 645 ] } ], "insert_e_draft_game_player_status_one": [ - 627, + 633, { "object": [ - 634, + 640, "e_draft_game_player_status_insert_input!" ], "on_conflict": [ - 639 + 645 ] } ], "insert_e_draft_game_status": [ - 658, + 664, { "objects": [ - 655, + 661, "[e_draft_game_status_insert_input!]!" ], "on_conflict": [ - 660 + 666 ] } ], "insert_e_draft_game_status_one": [ - 648, + 654, { "object": [ - 655, + 661, "e_draft_game_status_insert_input!" ], "on_conflict": [ - 660 + 666 ] } ], "insert_e_event_media_access": [ - 679, + 685, { "objects": [ - 676, + 682, "[e_event_media_access_insert_input!]!" ], "on_conflict": [ - 680 + 686 ] } ], "insert_e_event_media_access_one": [ - 669, + 675, { "object": [ - 676, + 682, "e_event_media_access_insert_input!" ], "on_conflict": [ - 680 + 686 ] } ], "insert_e_event_visibility": [ - 699, + 705, { "objects": [ - 696, + 702, "[e_event_visibility_insert_input!]!" ], "on_conflict": [ - 700 + 706 ] } ], "insert_e_event_visibility_one": [ - 689, + 695, { "object": [ - 696, + 702, "e_event_visibility_insert_input!" ], "on_conflict": [ - 700 + 706 ] } ], "insert_e_friend_status": [ - 719, + 725, { "objects": [ - 716, + 722, "[e_friend_status_insert_input!]!" ], "on_conflict": [ - 721 + 727 ] } ], "insert_e_friend_status_one": [ - 709, + 715, { "object": [ - 716, + 722, "e_friend_status_insert_input!" ], "on_conflict": [ - 721 + 727 ] } ], "insert_e_game_cfg_types": [ - 740, + 746, { "objects": [ - 737, + 743, "[e_game_cfg_types_insert_input!]!" ], "on_conflict": [ - 741 + 747 ] } ], "insert_e_game_cfg_types_one": [ - 730, + 736, { "object": [ - 737, + 743, "e_game_cfg_types_insert_input!" ], "on_conflict": [ - 741 + 747 ] } ], "insert_e_game_server_node_statuses": [ - 760, + 766, { "objects": [ - 757, + 763, "[e_game_server_node_statuses_insert_input!]!" ], "on_conflict": [ - 762 + 768 ] } ], "insert_e_game_server_node_statuses_one": [ - 750, + 756, { "object": [ - 757, + 763, "e_game_server_node_statuses_insert_input!" ], "on_conflict": [ - 762 + 768 ] } ], "insert_e_league_movement_types": [ - 781, + 787, { "objects": [ - 778, + 784, "[e_league_movement_types_insert_input!]!" ], "on_conflict": [ - 783 + 789 ] } ], "insert_e_league_movement_types_one": [ - 771, + 777, { "object": [ - 778, + 784, "e_league_movement_types_insert_input!" ], "on_conflict": [ - 783 + 789 ] } ], "insert_e_league_proposal_statuses": [ - 802, + 808, { "objects": [ - 799, + 805, "[e_league_proposal_statuses_insert_input!]!" ], "on_conflict": [ - 804 + 810 ] } ], "insert_e_league_proposal_statuses_one": [ - 792, + 798, { "object": [ - 799, + 805, "e_league_proposal_statuses_insert_input!" ], "on_conflict": [ - 804 + 810 ] } ], "insert_e_league_registration_statuses": [ - 823, + 829, { "objects": [ - 820, + 826, "[e_league_registration_statuses_insert_input!]!" ], "on_conflict": [ - 825 + 831 ] } ], "insert_e_league_registration_statuses_one": [ - 813, + 819, { "object": [ - 820, + 826, "e_league_registration_statuses_insert_input!" ], "on_conflict": [ - 825 + 831 ] } ], "insert_e_league_season_statuses": [ - 844, + 850, { "objects": [ - 841, + 847, "[e_league_season_statuses_insert_input!]!" ], "on_conflict": [ - 846 + 852 ] } ], "insert_e_league_season_statuses_one": [ - 834, + 840, { "object": [ - 841, + 847, "e_league_season_statuses_insert_input!" ], "on_conflict": [ - 846 + 852 ] } ], "insert_e_lobby_access": [ - 865, + 871, { "objects": [ - 862, + 868, "[e_lobby_access_insert_input!]!" ], "on_conflict": [ - 867 + 873 ] } ], "insert_e_lobby_access_one": [ - 855, + 861, { "object": [ - 862, + 868, "e_lobby_access_insert_input!" ], "on_conflict": [ - 867 + 873 ] } ], "insert_e_lobby_player_status": [ - 886, + 892, { "objects": [ - 883, + 889, "[e_lobby_player_status_insert_input!]!" ], "on_conflict": [ - 887 + 893 ] } ], "insert_e_lobby_player_status_one": [ - 876, + 882, { "object": [ - 883, + 889, "e_lobby_player_status_insert_input!" ], "on_conflict": [ - 887 + 893 ] } ], "insert_e_map_pool_types": [ - 906, + 912, { "objects": [ - 903, + 909, "[e_map_pool_types_insert_input!]!" ], "on_conflict": [ - 908 + 914 ] } ], "insert_e_map_pool_types_one": [ - 896, + 902, { "object": [ - 903, + 909, "e_map_pool_types_insert_input!" ], "on_conflict": [ - 908 + 914 ] } ], "insert_e_match_clip_visibility": [ - 927, + 933, { "objects": [ - 924, + 930, "[e_match_clip_visibility_insert_input!]!" ], "on_conflict": [ - 928 + 934 ] } ], "insert_e_match_clip_visibility_one": [ - 917, + 923, { "object": [ - 924, + 930, "e_match_clip_visibility_insert_input!" ], "on_conflict": [ - 928 + 934 ] } ], "insert_e_match_map_status": [ - 947, + 953, { "objects": [ - 944, + 950, "[e_match_map_status_insert_input!]!" ], "on_conflict": [ - 949 + 955 ] } ], "insert_e_match_map_status_one": [ - 937, + 943, { "object": [ - 944, + 950, "e_match_map_status_insert_input!" ], "on_conflict": [ - 949 + 955 ] } ], "insert_e_match_mode": [ - 968, + 974, { "objects": [ - 965, + 971, "[e_match_mode_insert_input!]!" ], "on_conflict": [ - 969 + 975 ] } ], "insert_e_match_mode_one": [ - 958, + 964, { "object": [ - 965, + 971, "e_match_mode_insert_input!" ], "on_conflict": [ - 969 + 975 ] } ], "insert_e_match_status": [ - 988, + 994, { "objects": [ - 985, + 991, "[e_match_status_insert_input!]!" ], "on_conflict": [ - 990 + 996 ] } ], "insert_e_match_status_one": [ - 978, + 984, { "object": [ - 985, + 991, "e_match_status_insert_input!" ], "on_conflict": [ - 990 + 996 ] } ], "insert_e_match_types": [ - 1009, + 1015, { "objects": [ - 1006, + 1012, "[e_match_types_insert_input!]!" ], "on_conflict": [ - 1011 + 1017 ] } ], "insert_e_match_types_one": [ - 999, + 1005, { "object": [ - 1006, + 1012, "e_match_types_insert_input!" ], "on_conflict": [ - 1011 + 1017 ] } ], "insert_e_notification_types": [ - 1030, + 1036, { "objects": [ - 1027, + 1033, "[e_notification_types_insert_input!]!" ], "on_conflict": [ - 1031 + 1037 ] } ], "insert_e_notification_types_one": [ - 1020, + 1026, { "object": [ - 1027, + 1033, "e_notification_types_insert_input!" ], "on_conflict": [ - 1031 + 1037 ] } ], "insert_e_objective_types": [ - 1050, + 1056, { "objects": [ - 1047, + 1053, "[e_objective_types_insert_input!]!" ], "on_conflict": [ - 1051 + 1057 ] } ], "insert_e_objective_types_one": [ - 1040, + 1046, { "object": [ - 1047, + 1053, "e_objective_types_insert_input!" ], "on_conflict": [ - 1051 + 1057 ] } ], "insert_e_player_roles": [ - 1070, + 1076, { "objects": [ - 1067, + 1073, "[e_player_roles_insert_input!]!" ], "on_conflict": [ - 1071 + 1077 ] } ], "insert_e_player_roles_one": [ - 1060, + 1066, { "object": [ - 1067, + 1073, "e_player_roles_insert_input!" ], "on_conflict": [ - 1071 + 1077 ] } ], "insert_e_plugin_runtimes": [ - 1090, + 1096, { "objects": [ - 1087, + 1093, "[e_plugin_runtimes_insert_input!]!" ], "on_conflict": [ - 1091 + 1097 ] } ], "insert_e_plugin_runtimes_one": [ - 1080, + 1086, { "object": [ - 1087, + 1093, "e_plugin_runtimes_insert_input!" ], "on_conflict": [ - 1091 + 1097 ] } ], "insert_e_ready_settings": [ - 1110, + 1116, { "objects": [ - 1107, + 1113, "[e_ready_settings_insert_input!]!" ], "on_conflict": [ - 1111 + 1117 ] } ], "insert_e_ready_settings_one": [ - 1100, + 1106, { "object": [ - 1107, + 1113, "e_ready_settings_insert_input!" ], "on_conflict": [ - 1111 + 1117 ] } ], "insert_e_sanction_types": [ - 1130, + 1136, { "objects": [ - 1127, + 1133, "[e_sanction_types_insert_input!]!" ], "on_conflict": [ - 1132 + 1138 ] } ], "insert_e_sanction_types_one": [ - 1120, + 1126, { "object": [ - 1127, + 1133, "e_sanction_types_insert_input!" ], "on_conflict": [ - 1132 + 1138 ] } ], "insert_e_scrim_request_statuses": [ - 1151, + 1157, { "objects": [ - 1148, + 1154, "[e_scrim_request_statuses_insert_input!]!" ], "on_conflict": [ - 1152 + 1158 ] } ], "insert_e_scrim_request_statuses_one": [ - 1141, + 1147, { "object": [ - 1148, + 1154, "e_scrim_request_statuses_insert_input!" ], "on_conflict": [ - 1152 + 1158 ] } ], "insert_e_server_types": [ - 1171, + 1177, { "objects": [ - 1168, + 1174, "[e_server_types_insert_input!]!" ], "on_conflict": [ - 1172 + 1178 ] } ], "insert_e_server_types_one": [ - 1161, + 1167, { "object": [ - 1168, + 1174, "e_server_types_insert_input!" ], "on_conflict": [ - 1172 + 1178 ] } ], "insert_e_sides": [ - 1191, + 1197, { "objects": [ - 1188, + 1194, "[e_sides_insert_input!]!" ], "on_conflict": [ - 1192 + 1198 ] } ], "insert_e_sides_one": [ - 1181, + 1187, { "object": [ - 1188, + 1194, "e_sides_insert_input!" ], "on_conflict": [ - 1192 + 1198 ] } ], "insert_e_system_alert_types": [ - 1211, + 1217, { "objects": [ - 1208, + 1214, "[e_system_alert_types_insert_input!]!" ], "on_conflict": [ - 1212 + 1218 ] } ], "insert_e_system_alert_types_one": [ - 1201, + 1207, { "object": [ - 1208, + 1214, "e_system_alert_types_insert_input!" ], "on_conflict": [ - 1212 + 1218 ] } ], "insert_e_team_roles": [ - 1231, + 1237, { "objects": [ - 1228, + 1234, "[e_team_roles_insert_input!]!" ], "on_conflict": [ - 1233 + 1239 ] } ], "insert_e_team_roles_one": [ - 1221, + 1227, { "object": [ - 1228, + 1234, "e_team_roles_insert_input!" ], "on_conflict": [ - 1233 + 1239 ] } ], "insert_e_team_roster_statuses": [ - 1252, + 1258, { "objects": [ - 1249, + 1255, "[e_team_roster_statuses_insert_input!]!" ], "on_conflict": [ - 1253 + 1259 ] } ], "insert_e_team_roster_statuses_one": [ - 1242, + 1248, { "object": [ - 1249, + 1255, "e_team_roster_statuses_insert_input!" ], "on_conflict": [ - 1253 + 1259 ] } ], "insert_e_timeout_settings": [ - 1272, + 1278, { "objects": [ - 1269, + 1275, "[e_timeout_settings_insert_input!]!" ], "on_conflict": [ - 1273 + 1279 ] } ], "insert_e_timeout_settings_one": [ - 1262, + 1268, { "object": [ - 1269, + 1275, "e_timeout_settings_insert_input!" ], "on_conflict": [ - 1273 + 1279 ] } ], "insert_e_tournament_categories": [ - 1292, + 1298, { "objects": [ - 1289, + 1295, "[e_tournament_categories_insert_input!]!" ], "on_conflict": [ - 1294 + 1300 ] } ], "insert_e_tournament_categories_one": [ - 1282, + 1288, { "object": [ - 1289, + 1295, "e_tournament_categories_insert_input!" ], "on_conflict": [ - 1294 + 1300 ] } ], "insert_e_tournament_stage_types": [ - 1313, + 1319, { "objects": [ - 1310, + 1316, "[e_tournament_stage_types_insert_input!]!" ], "on_conflict": [ - 1315 + 1321 ] } ], "insert_e_tournament_stage_types_one": [ - 1303, + 1309, { "object": [ - 1310, + 1316, "e_tournament_stage_types_insert_input!" ], "on_conflict": [ - 1315 + 1321 ] } ], "insert_e_tournament_status": [ - 1334, + 1340, { "objects": [ - 1331, + 1337, "[e_tournament_status_insert_input!]!" ], "on_conflict": [ - 1336 + 1342 ] } ], "insert_e_tournament_status_one": [ - 1324, + 1330, { "object": [ - 1331, + 1337, "e_tournament_status_insert_input!" ], "on_conflict": [ - 1336 + 1342 ] } ], "insert_e_utility_types": [ - 1355, + 1361, { "objects": [ - 1352, + 1358, "[e_utility_types_insert_input!]!" ], "on_conflict": [ - 1356 + 1362 ] } ], "insert_e_utility_types_one": [ - 1345, + 1351, { "object": [ - 1352, + 1358, "e_utility_types_insert_input!" ], "on_conflict": [ - 1356 + 1362 ] } ], "insert_e_veto_pick_types": [ - 1375, + 1381, { "objects": [ - 1372, + 1378, "[e_veto_pick_types_insert_input!]!" ], "on_conflict": [ - 1376 + 1382 ] } ], "insert_e_veto_pick_types_one": [ - 1365, + 1371, { "object": [ - 1372, + 1378, "e_veto_pick_types_insert_input!" ], "on_conflict": [ - 1376 + 1382 ] } ], "insert_e_winning_reasons": [ - 1395, + 1401, { "objects": [ - 1392, + 1398, "[e_winning_reasons_insert_input!]!" ], "on_conflict": [ - 1396 + 1402 ] } ], "insert_e_winning_reasons_one": [ - 1385, + 1391, { "object": [ - 1392, + 1398, "e_winning_reasons_insert_input!" ], "on_conflict": [ - 1396 + 1402 ] } ], "insert_event_match_links": [ - 1413, + 1419, { "objects": [ - 1410, + 1416, "[event_match_links_insert_input!]!" ], "on_conflict": [ - 1414 + 1420 ] } ], "insert_event_match_links_one": [ - 1405, + 1411, { "object": [ - 1410, + 1416, "event_match_links_insert_input!" ], "on_conflict": [ - 1414 + 1420 ] } ], "insert_event_media": [ - 1440, + 1446, { "objects": [ - 1435, + 1441, "[event_media_insert_input!]!" ], "on_conflict": [ - 1442 + 1448 ] } ], "insert_event_media_one": [ - 1423, + 1429, { "object": [ - 1435, + 1441, "event_media_insert_input!" ], "on_conflict": [ - 1442 + 1448 ] } ], "insert_event_media_players": [ - 1462, + 1468, { "objects": [ - 1457, + 1463, "[event_media_players_insert_input!]!" ], "on_conflict": [ - 1463 + 1469 ] } ], "insert_event_media_players_one": [ - 1445, + 1451, { "object": [ - 1457, + 1463, "event_media_players_insert_input!" ], "on_conflict": [ - 1463 + 1469 ] } ], "insert_event_organizers": [ - 1523, + 1529, { "objects": [ - 1518, + 1524, "[event_organizers_insert_input!]!" ], "on_conflict": [ - 1524 + 1530 ] } ], "insert_event_organizers_one": [ - 1506, + 1512, { "object": [ - 1518, + 1524, "event_organizers_insert_input!" ], "on_conflict": [ - 1524 + 1530 ] } ], "insert_event_players": [ - 1564, + 1570, { "objects": [ - 1559, + 1565, "[event_players_insert_input!]!" ], "on_conflict": [ - 1565 + 1571 ] } ], "insert_event_players_one": [ - 1547, + 1553, { "object": [ - 1559, + 1565, "event_players_insert_input!" ], "on_conflict": [ - 1565 + 1571 ] } ], "insert_event_teams": [ - 1602, + 1608, { "objects": [ - 1597, + 1603, "[event_teams_insert_input!]!" ], "on_conflict": [ - 1603 + 1609 ] } ], "insert_event_teams_one": [ - 1588, + 1594, { "object": [ - 1597, + 1603, "event_teams_insert_input!" ], "on_conflict": [ - 1603 + 1609 ] } ], "insert_event_tournaments": [ - 1626, + 1632, { "objects": [ - 1621, + 1627, "[event_tournaments_insert_input!]!" ], "on_conflict": [ - 1627 + 1633 ] } ], "insert_event_tournaments_one": [ - 1612, + 1618, { "object": [ - 1621, + 1627, "event_tournaments_insert_input!" ], "on_conflict": [ - 1627 + 1633 ] } ], "insert_events": [ - 1646, + 1652, { "objects": [ - 1643, + 1649, "[events_insert_input!]!" ], "on_conflict": [ - 1648 + 1654 ] } ], "insert_events_one": [ - 1636, + 1642, { "object": [ - 1643, + 1649, "events_insert_input!" ], "on_conflict": [ - 1648 + 1654 ] } ], "insert_friends": [ - 1676, + 1682, { "objects": [ - 1673, + 1679, "[friends_insert_input!]!" ], "on_conflict": [ - 1677 + 1683 ] } ], "insert_friends_one": [ - 1666, + 1672, { "object": [ - 1673, + 1679, "friends_insert_input!" ], "on_conflict": [ - 1677 + 1683 ] } ], "insert_game_server_nodes": [ - 1716, + 1722, { "objects": [ - 1711, + 1717, "[game_server_nodes_insert_input!]!" ], "on_conflict": [ - 1718 + 1724 ] } ], "insert_game_server_nodes_one": [ - 1693, + 1699, { "object": [ - 1711, + 1717, "game_server_nodes_insert_input!" ], "on_conflict": [ - 1718 + 1724 ] } ], "insert_game_versions": [ - 1758, + 1764, { "objects": [ - 1755, + 1761, "[game_versions_insert_input!]!" ], "on_conflict": [ - 1760 + 1766 ] } ], "insert_game_versions_one": [ - 1744, + 1750, { "object": [ - 1755, + 1761, "game_versions_insert_input!" ], "on_conflict": [ - 1760 + 1766 ] } ], "insert_gamedata_signature_validations": [ - 1791, + 1797, { "objects": [ - 1788, + 1794, "[gamedata_signature_validations_insert_input!]!" ], "on_conflict": [ - 1792 + 1798 ] } ], "insert_gamedata_signature_validations_one": [ - 1777, + 1783, { "object": [ - 1788, + 1794, "gamedata_signature_validations_insert_input!" ], "on_conflict": [ - 1792 + 1798 ] } ], "insert_leaderboard_entries": [ - 1829, + 1835, { "objects": [ - 1826, + 1832, "[leaderboard_entries_insert_input!]!" ] } ], "insert_leaderboard_entries_one": [ - 1820, + 1826, { "object": [ - 1826, + 1832, "leaderboard_entries_insert_input!" ] } ], "insert_league_divisions": [ - 1854, + 1860, { "objects": [ - 1851, + 1857, "[league_divisions_insert_input!]!" ], "on_conflict": [ - 1856 + 1862 ] } ], "insert_league_divisions_one": [ - 1844, + 1850, { "object": [ - 1851, + 1857, "league_divisions_insert_input!" ], "on_conflict": [ - 1856 + 1862 ] } ], "insert_league_match_weeks": [ - 1889, + 1895, { "objects": [ - 1884, + 1890, "[league_match_weeks_insert_input!]!" ], "on_conflict": [ - 1890 + 1896 ] } ], "insert_league_match_weeks_one": [ - 1872, + 1878, { "object": [ - 1884, + 1890, "league_match_weeks_insert_input!" ], "on_conflict": [ - 1890 + 1896 ] } ], "insert_league_relegation_playoffs": [ - 1930, + 1936, { "objects": [ - 1925, + 1931, "[league_relegation_playoffs_insert_input!]!" ], "on_conflict": [ - 1931 + 1937 ] } ], "insert_league_relegation_playoffs_one": [ - 1913, + 1919, { "object": [ - 1925, + 1931, "league_relegation_playoffs_insert_input!" ], "on_conflict": [ - 1931 + 1937 ] } ], "insert_league_scheduling_proposals": [ - 1971, + 1977, { "objects": [ - 1966, + 1972, "[league_scheduling_proposals_insert_input!]!" ], "on_conflict": [ - 1972 + 1978 ] } ], "insert_league_scheduling_proposals_one": [ - 1954, + 1960, { "object": [ - 1966, + 1972, "league_scheduling_proposals_insert_input!" ], "on_conflict": [ - 1972 + 1978 ] } ], "insert_league_season_divisions": [ - 2009, + 2015, { "objects": [ - 2004, + 2010, "[league_season_divisions_insert_input!]!" ], "on_conflict": [ - 2011 + 2017 ] } ], "insert_league_season_divisions_one": [ - 1995, + 2001, { "object": [ - 2004, + 2010, "league_season_divisions_insert_input!" ], "on_conflict": [ - 2011 + 2017 ] } ], "insert_league_seasons": [ - 2034, + 2040, { "objects": [ - 2031, + 2037, "[league_seasons_insert_input!]!" ], "on_conflict": [ - 2036 + 2042 ] } ], "insert_league_seasons_one": [ - 2020, + 2026, { "object": [ - 2031, + 2037, "league_seasons_insert_input!" ], "on_conflict": [ - 2036 + 2042 ] } ], "insert_league_team_movements": [ - 2070, + 2076, { "objects": [ - 2065, + 2071, "[league_team_movements_insert_input!]!" ], "on_conflict": [ - 2071 + 2077 ] } ], "insert_league_team_movements_one": [ - 2053, + 2059, { "object": [ - 2065, + 2071, "league_team_movements_insert_input!" ], "on_conflict": [ - 2071 + 2077 ] } ], "insert_league_team_rosters": [ - 2111, + 2117, { "objects": [ - 2106, + 2112, "[league_team_rosters_insert_input!]!" ], "on_conflict": [ - 2112 + 2118 ] } ], "insert_league_team_rosters_one": [ - 2094, + 2100, { "object": [ - 2106, + 2112, "league_team_rosters_insert_input!" ], "on_conflict": [ - 2112 + 2118 ] } ], "insert_league_team_seasons": [ - 2152, + 2158, { "objects": [ - 2147, + 2153, "[league_team_seasons_insert_input!]!" ], "on_conflict": [ - 2154 + 2160 ] } ], "insert_league_team_seasons_one": [ - 2135, + 2141, { "object": [ - 2147, + 2153, "league_team_seasons_insert_input!" ], "on_conflict": [ - 2154 + 2160 ] } ], "insert_league_teams": [ - 2185, + 2191, { "objects": [ - 2182, + 2188, "[league_teams_insert_input!]!" ], "on_conflict": [ - 2187 + 2193 ] } ], "insert_league_teams_one": [ - 2177, + 2183, { "object": [ - 2182, + 2188, "league_teams_insert_input!" ], "on_conflict": [ - 2187 + 2193 ] } ], "insert_lobbies": [ - 2204, + 2210, { "objects": [ - 2201, + 2207, "[lobbies_insert_input!]!" ], "on_conflict": [ - 2206 + 2212 ] } ], "insert_lobbies_one": [ - 2196, + 2202, { "object": [ - 2201, + 2207, "lobbies_insert_input!" ], "on_conflict": [ - 2206 + 2212 ] } ], "insert_lobby_players": [ - 2234, + 2240, { "objects": [ - 2229, + 2235, "[lobby_players_insert_input!]!" ], "on_conflict": [ - 2235 + 2241 ] } ], "insert_lobby_players_one": [ - 2215, + 2221, { "object": [ - 2229, + 2235, "lobby_players_insert_input!" ], "on_conflict": [ - 2235 + 2241 ] } ], "insert_map_pools": [ - 2268, + 2274, { "objects": [ - 2265, + 2271, "[map_pools_insert_input!]!" ], "on_conflict": [ - 2270 + 2276 ] } ], "insert_map_pools_one": [ - 2260, + 2266, { "object": [ - 2265, + 2271, "map_pools_insert_input!" ], "on_conflict": [ - 2270 + 2276 ] } ], "insert_maps": [ - 2295, + 2301, { "objects": [ - 2290, + 2296, "[maps_insert_input!]!" ], "on_conflict": [ - 2297 + 2303 ] } ], "insert_maps_one": [ - 2279, + 2285, { "object": [ - 2290, + 2296, "maps_insert_input!" ], "on_conflict": [ - 2297 + 2303 ] } ], "insert_match_clips": [ - 2325, + 2331, { "objects": [ - 2320, + 2326, "[match_clips_insert_input!]!" ], "on_conflict": [ - 2327 + 2333 ] } ], "insert_match_clips_one": [ - 2308, + 2314, { "object": [ - 2320, + 2326, "match_clips_insert_input!" ], "on_conflict": [ - 2327 + 2333 ] } ], "insert_match_demo_sessions": [ - 2371, + 2377, { "objects": [ - 2366, + 2372, "[match_demo_sessions_insert_input!]!" ], "on_conflict": [ - 2372 + 2378 ] } ], "insert_match_demo_sessions_one": [ - 2350, + 2356, { "object": [ - 2366, + 2372, "match_demo_sessions_insert_input!" ], "on_conflict": [ - 2372 + 2378 ] } ], "insert_match_lineup_players": [ - 2415, + 2421, { "objects": [ - 2410, + 2416, "[match_lineup_players_insert_input!]!" ], "on_conflict": [ - 2416 + 2422 ] } ], "insert_match_lineup_players_one": [ - 2396, + 2402, { "object": [ - 2410, + 2416, "match_lineup_players_insert_input!" ], "on_conflict": [ - 2416 + 2422 ] } ], "insert_match_lineups": [ - 2458, + 2464, { "objects": [ - 2453, + 2459, "[match_lineups_insert_input!]!" ], "on_conflict": [ - 2460 + 2466 ] } ], "insert_match_lineups_one": [ - 2441, + 2447, { "object": [ - 2453, + 2459, "match_lineups_insert_input!" ], "on_conflict": [ - 2460 + 2466 ] } ], "insert_match_map_demos": [ - 2506, + 2512, { "objects": [ - 2501, + 2507, "[match_map_demos_insert_input!]!" ], "on_conflict": [ - 2508 + 2514 ] } ], "insert_match_map_demos_one": [ - 2483, + 2489, { "object": [ - 2501, + 2507, "match_map_demos_insert_input!" ], "on_conflict": [ - 2508 + 2514 ] } ], "insert_match_map_rounds": [ - 2551, + 2557, { "objects": [ - 2546, + 2552, "[match_map_rounds_insert_input!]!" ], "on_conflict": [ - 2552 + 2558 ] } ], "insert_match_map_rounds_one": [ - 2534, + 2540, { "object": [ - 2546, + 2552, "match_map_rounds_insert_input!" ], "on_conflict": [ - 2552 + 2558 ] } ], "insert_match_map_veto_picks": [ - 2589, + 2595, { "objects": [ - 2584, + 2590, "[match_map_veto_picks_insert_input!]!" ], "on_conflict": [ - 2590 + 2596 ] } ], "insert_match_map_veto_picks_one": [ - 2575, + 2581, { "object": [ - 2584, + 2590, "match_map_veto_picks_insert_input!" ], "on_conflict": [ - 2590 + 2596 ] } ], "insert_match_maps": [ - 2616, + 2622, { "objects": [ - 2611, + 2617, "[match_maps_insert_input!]!" ], "on_conflict": [ - 2618 + 2624 ] } ], "insert_match_maps_one": [ - 2599, + 2605, { "object": [ - 2611, + 2617, "match_maps_insert_input!" ], "on_conflict": [ - 2618 + 2624 ] } ], "insert_match_options": [ - 2651, + 2657, { "objects": [ - 2648, + 2654, "[match_options_insert_input!]!" ], "on_conflict": [ - 2653 + 2659 ] } ], "insert_match_options_one": [ - 2641, + 2647, { "object": [ - 2648, + 2654, "match_options_insert_input!" ], "on_conflict": [ - 2653 + 2659 ] } ], "insert_match_region_veto_picks": [ - 2683, + 2689, { "objects": [ - 2678, + 2684, "[match_region_veto_picks_insert_input!]!" ], "on_conflict": [ - 2684 + 2690 ] } ], "insert_match_region_veto_picks_one": [ - 2669, + 2675, { "object": [ - 2678, + 2684, "match_region_veto_picks_insert_input!" ], "on_conflict": [ - 2684 + 2690 ] } ], "insert_match_streams": [ - 2716, + 2722, { "objects": [ - 2711, + 2717, "[match_streams_insert_input!]!" ], "on_conflict": [ - 2717 + 2723 ] } ], "insert_match_streams_one": [ - 2693, + 2699, { "object": [ - 2711, + 2717, "match_streams_insert_input!" ], "on_conflict": [ - 2717 + 2723 ] } ], "insert_match_type_cfgs": [ - 2751, + 2757, { "objects": [ - 2748, + 2754, "[match_type_cfgs_insert_input!]!" ], "on_conflict": [ - 2752 + 2758 ] } ], "insert_match_type_cfgs_one": [ - 2743, + 2749, { "object": [ - 2748, + 2754, "match_type_cfgs_insert_input!" ], "on_conflict": [ - 2752 + 2758 ] } ], "insert_matches": [ - 2778, + 2784, { "objects": [ - 2773, + 2779, "[matches_insert_input!]!" ], "on_conflict": [ - 2780 + 2786 ] } ], "insert_matches_one": [ - 2761, + 2767, { "object": [ - 2773, + 2779, "matches_insert_input!" ], "on_conflict": [ - 2780 + 2786 ] } ], "insert_migration_hashes_hashes": [ - 2811, + 2817, { "objects": [ - 2808, + 2814, "[migration_hashes_hashes_insert_input!]!" ], "on_conflict": [ - 2812 + 2818 ] } ], "insert_migration_hashes_hashes_one": [ - 2803, + 2809, { "object": [ - 2808, + 2814, "migration_hashes_hashes_insert_input!" ], "on_conflict": [ - 2812 + 2818 ] } ], "insert_my_friends": [ - 2843, + 2849, { "objects": [ - 2838, + 2844, "[my_friends_insert_input!]!" ] } ], "insert_my_friends_one": [ - 2821, + 2827, { "object": [ - 2838, + 2844, "my_friends_insert_input!" ] } ], "insert_news_articles": [ - 2877, + 2883, { "objects": [ - 2874, + 2880, "[news_articles_insert_input!]!" ], "on_conflict": [ - 2878 + 2884 ] } ], "insert_news_articles_one": [ - 2867, + 2873, { "object": [ - 2874, + 2880, "news_articles_insert_input!" ], "on_conflict": [ - 2878 + 2884 ] } ], "insert_notifications": [ - 2917, + 2923, { "objects": [ - 2912, + 2918, "[notifications_insert_input!]!" ], "on_conflict": [ - 2918 + 2924 ] } ], "insert_notifications_one": [ - 2894, + 2900, { "object": [ - 2912, + 2918, "notifications_insert_input!" ], "on_conflict": [ - 2918 + 2924 ] } ], "insert_pending_match_import_players": [ - 2964, + 2970, { "objects": [ - 2959, + 2965, "[pending_match_import_players_insert_input!]!" ], "on_conflict": [ - 2965 + 2971 ] } ], "insert_pending_match_import_players_one": [ - 2947, + 2953, { "object": [ - 2959, + 2965, "pending_match_import_players_insert_input!" ], "on_conflict": [ - 2965 + 2971 ] } ], "insert_pending_match_imports": [ - 2998, + 3004, { "objects": [ - 2995, + 3001, "[pending_match_imports_insert_input!]!" ], "on_conflict": [ - 3000 + 3006 ] } ], "insert_pending_match_imports_one": [ - 2988, + 2994, { "object": [ - 2995, + 3001, "pending_match_imports_insert_input!" ], "on_conflict": [ - 3000 + 3006 ] } ], "insert_player_aim_stats_demo": [ - 3026, + 3032, { "objects": [ - 3023, + 3029, "[player_aim_stats_demo_insert_input!]!" ], "on_conflict": [ - 3027 + 3033 ] } ], "insert_player_aim_stats_demo_one": [ - 3016, + 3022, { "object": [ - 3023, + 3029, "player_aim_stats_demo_insert_input!" ], "on_conflict": [ - 3027 + 3033 ] } ], "insert_player_aim_weapon_stats": [ - 3060, + 3066, { "objects": [ - 3055, + 3061, "[player_aim_weapon_stats_insert_input!]!" ], "on_conflict": [ - 3061 + 3067 ] } ], "insert_player_aim_weapon_stats_one": [ - 3043, + 3049, { "object": [ - 3055, + 3061, "player_aim_weapon_stats_insert_input!" ], "on_conflict": [ - 3061 + 3067 ] } ], "insert_player_assists": [ - 3103, + 3109, { "objects": [ - 3098, + 3104, "[player_assists_insert_input!]!" ], "on_conflict": [ - 3104 + 3110 ] } ], "insert_player_assists_one": [ - 3084, + 3090, { "object": [ - 3098, + 3104, "player_assists_insert_input!" ], "on_conflict": [ - 3104 + 3110 ] } ], "insert_player_damages": [ - 3164, + 3170, { "objects": [ - 3159, + 3165, "[player_damages_insert_input!]!" ], "on_conflict": [ - 3165 + 3171 ] } ], "insert_player_damages_one": [ - 3147, + 3153, { "object": [ - 3159, + 3165, "player_damages_insert_input!" ], "on_conflict": [ - 3165 + 3171 ] } ], "insert_player_elo": [ - 3198, + 3204, { "objects": [ - 3195, + 3201, "[player_elo_insert_input!]!" ], "on_conflict": [ - 3199 + 3205 ] } ], "insert_player_elo_one": [ - 3188, + 3194, { "object": [ - 3195, + 3201, "player_elo_insert_input!" ], "on_conflict": [ - 3199 + 3205 ] } ], "insert_player_faceit_rank_history": [ - 3232, + 3238, { "objects": [ - 3227, + 3233, "[player_faceit_rank_history_insert_input!]!" ], "on_conflict": [ - 3233 + 3239 ] } ], "insert_player_faceit_rank_history_one": [ - 3215, + 3221, { "object": [ - 3227, + 3233, "player_faceit_rank_history_insert_input!" ], "on_conflict": [ - 3233 + 3239 ] } ], "insert_player_flashes": [ - 3275, + 3281, { "objects": [ - 3270, + 3276, "[player_flashes_insert_input!]!" ], "on_conflict": [ - 3276 + 3282 ] } ], "insert_player_flashes_one": [ - 3256, + 3262, { "object": [ - 3270, + 3276, "player_flashes_insert_input!" ], "on_conflict": [ - 3276 + 3282 ] } ], "insert_player_kills": [ - 3361, + 3367, { "objects": [ - 3356, + 3362, "[player_kills_insert_input!]!" ], "on_conflict": [ - 3362 + 3368 ] } ], "insert_player_kills_by_weapon": [ - 3330, + 3336, { "objects": [ - 3325, + 3331, "[player_kills_by_weapon_insert_input!]!" ], "on_conflict": [ - 3331 + 3337 ] } ], "insert_player_kills_by_weapon_one": [ - 3313, + 3319, { "object": [ - 3325, + 3331, "player_kills_by_weapon_insert_input!" ], "on_conflict": [ - 3331 + 3337 ] } ], "insert_player_kills_one": [ - 3301, + 3307, { "object": [ - 3356, + 3362, "player_kills_insert_input!" ], "on_conflict": [ - 3362 + 3368 ] } ], "insert_player_leaderboard_rank": [ - 3396, + 3402, { "objects": [ - 3393, + 3399, "[player_leaderboard_rank_insert_input!]!" ] } ], "insert_player_leaderboard_rank_one": [ - 3387, + 3393, { "object": [ - 3393, + 3399, "player_leaderboard_rank_insert_input!" ] } ], "insert_player_match_map_stats": [ - 3427, + 3433, { "objects": [ - 3422, + 3428, "[player_match_map_stats_insert_input!]!" ], "on_conflict": [ - 3428 + 3434 ] } ], "insert_player_match_map_stats_one": [ - 3410, + 3416, { "object": [ - 3422, + 3428, "player_match_map_stats_insert_input!" ], "on_conflict": [ - 3428 + 3434 ] } ], "insert_player_objectives": [ - 3519, + 3525, { "objects": [ - 3514, + 3520, "[player_objectives_insert_input!]!" ], "on_conflict": [ - 3520 + 3526 ] } ], "insert_player_objectives_one": [ - 3502, + 3508, { "object": [ - 3514, + 3520, "player_objectives_insert_input!" ], "on_conflict": [ - 3520 + 3526 ] } ], "insert_player_premier_rank_history": [ - 3578, + 3584, { "objects": [ - 3573, + 3579, "[player_premier_rank_history_insert_input!]!" ], "on_conflict": [ - 3579 + 3585 ] } ], "insert_player_premier_rank_history_one": [ - 3561, + 3567, { "object": [ - 3573, + 3579, "player_premier_rank_history_insert_input!" ], "on_conflict": [ - 3579 + 3585 ] } ], "insert_player_sanctions": [ - 3619, + 3625, { "objects": [ - 3614, + 3620, "[player_sanctions_insert_input!]!" ], "on_conflict": [ - 3620 + 3626 ] } ], "insert_player_sanctions_one": [ - 3602, + 3608, { "object": [ - 3614, + 3620, "player_sanctions_insert_input!" ], "on_conflict": [ - 3620 + 3626 ] } ], "insert_player_season_stats": [ - 3670, + 3676, { "objects": [ - 3665, + 3671, "[player_season_stats_insert_input!]!" ], "on_conflict": [ - 3671 + 3677 ] } ], "insert_player_season_stats_one": [ - 3643, + 3649, { "object": [ - 3665, + 3671, "player_season_stats_insert_input!" ], "on_conflict": [ - 3671 + 3677 ] } ], "insert_player_stats": [ - 3712, + 3718, { "objects": [ - 3709, + 3715, "[player_stats_insert_input!]!" ], "on_conflict": [ - 3714 + 3720 ] } ], "insert_player_stats_one": [ - 3702, + 3708, { "object": [ - 3709, + 3715, "player_stats_insert_input!" ], "on_conflict": [ - 3714 + 3720 ] } ], "insert_player_steam_bot_friend": [ - 3744, + 3750, { "objects": [ - 3741, + 3747, "[player_steam_bot_friend_insert_input!]!" ], "on_conflict": [ - 3745 + 3751 ] } ], "insert_player_steam_bot_friend_one": [ - 3730, + 3736, { "object": [ - 3741, + 3747, "player_steam_bot_friend_insert_input!" ], "on_conflict": [ - 3745 + 3751 ] } ], "insert_player_steam_match_auth": [ - 3772, + 3778, { "objects": [ - 3769, + 3775, "[player_steam_match_auth_insert_input!]!" ], "on_conflict": [ - 3773 + 3779 ] } ], "insert_player_steam_match_auth_one": [ - 3762, + 3768, { "object": [ - 3769, + 3775, "player_steam_match_auth_insert_input!" ], "on_conflict": [ - 3773 + 3779 ] } ], "insert_player_unused_utility": [ - 3806, + 3812, { "objects": [ - 3801, + 3807, "[player_unused_utility_insert_input!]!" ], "on_conflict": [ - 3807 + 3813 ] } ], "insert_player_unused_utility_one": [ - 3789, + 3795, { "object": [ - 3801, + 3807, "player_unused_utility_insert_input!" ], "on_conflict": [ - 3807 + 3813 ] } ], "insert_player_utility": [ - 3847, + 3853, { "objects": [ - 3842, + 3848, "[player_utility_insert_input!]!" ], "on_conflict": [ - 3848 + 3854 ] } ], "insert_player_utility_one": [ - 3830, + 3836, { "object": [ - 3842, + 3848, "player_utility_insert_input!" ], "on_conflict": [ - 3848 + 3854 ] } ], "insert_players": [ - 3914, + 3920, { "objects": [ - 3911, + 3917, "[players_insert_input!]!" ], "on_conflict": [ - 3916 + 3922 ] } ], "insert_players_one": [ - 3904, + 3910, { "object": [ - 3911, + 3917, "players_insert_input!" ], "on_conflict": [ - 3916 + 3922 ] } ], "insert_plugin_versions": [ - 3942, + 3948, { "objects": [ - 3939, + 3945, "[plugin_versions_insert_input!]!" ], "on_conflict": [ - 3943 + 3949 ] } ], "insert_plugin_versions_one": [ - 3932, + 3938, { "object": [ - 3939, + 3945, "plugin_versions_insert_input!" ], "on_conflict": [ - 3943 + 3949 ] } ], "insert_seasons": [ - 3973, + 3979, { "objects": [ - 3970, + 3976, "[seasons_insert_input!]!" ], "on_conflict": [ - 3975 + 3981 ] } ], "insert_seasons_one": [ - 3963, + 3969, { "object": [ - 3970, + 3976, "seasons_insert_input!" ], "on_conflict": [ - 3975 + 3981 ] } ], "insert_server_regions": [ - 4000, + 4006, { "objects": [ - 3997, + 4003, "[server_regions_insert_input!]!" ], "on_conflict": [ - 4002 + 4008 ] } ], "insert_server_regions_one": [ - 3991, + 3997, { "object": [ - 3997, + 4003, "server_regions_insert_input!" ], "on_conflict": [ - 4002 + 4008 ] } ], "insert_servers": [ - 4037, + 4043, { "objects": [ - 4032, + 4038, "[servers_insert_input!]!" ], "on_conflict": [ - 4039 + 4045 ] } ], "insert_servers_one": [ - 4018, + 4024, { "object": [ - 4032, + 4038, "servers_insert_input!" ], "on_conflict": [ - 4039 + 4045 ] } ], "insert_settings": [ - 4072, + 4078, { "objects": [ - 4069, + 4075, "[settings_insert_input!]!" ], "on_conflict": [ - 4073 + 4079 ] } ], "insert_settings_one": [ - 4064, + 4070, { "object": [ - 4069, + 4075, "settings_insert_input!" ], "on_conflict": [ - 4073 + 4079 ] } ], "insert_steam_account_claims": [ - 4098, + 4104, { "objects": [ - 4093, + 4099, "[steam_account_claims_insert_input!]!" ], "on_conflict": [ - 4099 + 4105 ] } ], "insert_steam_account_claims_one": [ - 4084, + 4090, { "object": [ - 4093, + 4099, "steam_account_claims_insert_input!" ], "on_conflict": [ - 4099 + 4105 ] } ], "insert_steam_accounts": [ - 4118, + 4124, { "objects": [ - 4115, + 4121, "[steam_accounts_insert_input!]!" ], "on_conflict": [ - 4120 + 4126 ] } ], "insert_steam_accounts_one": [ - 4108, + 4114, { "object": [ - 4115, + 4121, "steam_accounts_insert_input!" ], "on_conflict": [ - 4120 + 4126 ] } ], "insert_system_alerts": [ - 4146, + 4152, { "objects": [ - 4143, + 4149, "[system_alerts_insert_input!]!" ], "on_conflict": [ - 4147 + 4153 ] } ], "insert_system_alerts_one": [ - 4136, + 4142, { "object": [ - 4143, + 4149, "system_alerts_insert_input!" ], "on_conflict": [ - 4147 + 4153 ] } ], "insert_team_invites": [ - 4180, + 4186, { "objects": [ - 4175, + 4181, "[team_invites_insert_input!]!" ], "on_conflict": [ - 4181 + 4187 ] } ], "insert_team_invites_one": [ - 4163, + 4169, { "object": [ - 4175, + 4181, "team_invites_insert_input!" ], "on_conflict": [ - 4181 + 4187 ] } ], "insert_team_roster": [ - 4223, + 4229, { "objects": [ - 4218, + 4224, "[team_roster_insert_input!]!" ], "on_conflict": [ - 4224 + 4230 ] } ], "insert_team_roster_one": [ - 4204, + 4210, { "object": [ - 4218, + 4224, "team_roster_insert_input!" ], "on_conflict": [ - 4224 + 4230 ] } ], "insert_team_scrim_alerts": [ - 4259, + 4265, { "objects": [ - 4256, + 4262, "[team_scrim_alerts_insert_input!]!" ], "on_conflict": [ - 4260 + 4266 ] } ], "insert_team_scrim_alerts_one": [ - 4249, + 4255, { "object": [ - 4256, + 4262, "team_scrim_alerts_insert_input!" ], "on_conflict": [ - 4260 + 4266 ] } ], "insert_team_scrim_availability": [ - 4292, + 4298, { "objects": [ - 4287, + 4293, "[team_scrim_availability_insert_input!]!" ], "on_conflict": [ - 4293 + 4299 ] } ], "insert_team_scrim_availability_one": [ - 4276, + 4282, { "object": [ - 4287, + 4293, "team_scrim_availability_insert_input!" ], "on_conflict": [ - 4293 + 4299 ] } ], "insert_team_scrim_request_proposals": [ - 4321, + 4327, { "objects": [ - 4316, + 4322, "[team_scrim_request_proposals_insert_input!]!" ], "on_conflict": [ - 4322 + 4328 ] } ], "insert_team_scrim_request_proposals_one": [ - 4304, + 4310, { "object": [ - 4316, + 4322, "team_scrim_request_proposals_insert_input!" ], "on_conflict": [ - 4322 + 4328 ] } ], "insert_team_scrim_requests": [ - 4364, + 4370, { "objects": [ - 4359, + 4365, "[team_scrim_requests_insert_input!]!" ], "on_conflict": [ - 4366 + 4372 ] } ], "insert_team_scrim_requests_one": [ - 4345, + 4351, { "object": [ - 4359, + 4365, "team_scrim_requests_insert_input!" ], "on_conflict": [ - 4366 + 4372 ] } ], "insert_team_scrim_settings": [ - 4401, + 4407, { "objects": [ - 4398, + 4404, "[team_scrim_settings_insert_input!]!" ], "on_conflict": [ - 4403 + 4409 ] } ], "insert_team_scrim_settings_one": [ - 4391, + 4397, { "object": [ - 4398, + 4404, "team_scrim_settings_insert_input!" ], "on_conflict": [ - 4403 + 4409 ] } ], "insert_team_suggestions": [ - 4429, + 4435, { "objects": [ - 4426, + 4432, "[team_suggestions_insert_input!]!" ], "on_conflict": [ - 4430 + 4436 ] } ], "insert_team_suggestions_one": [ - 4419, + 4425, { "object": [ - 4426, + 4432, "team_suggestions_insert_input!" ], "on_conflict": [ - 4430 + 4436 ] } ], "insert_teams": [ - 4465, + 4471, { "objects": [ - 4460, + 4466, "[teams_insert_input!]!" ], "on_conflict": [ - 4467 + 4473 ] } ], "insert_teams_one": [ - 4446, + 4452, { "object": [ - 4460, + 4466, "teams_insert_input!" ], "on_conflict": [ - 4467 + 4473 ] } ], "insert_tournament_awards": [ - 4512, + 4518, { "objects": [ - 4507, + 4513, "[tournament_awards_insert_input!]!" ], "on_conflict": [ - 4514 + 4520 ] } ], "insert_tournament_awards_one": [ - 4495, + 4501, { "object": [ - 4507, + 4513, "tournament_awards_insert_input!" ], "on_conflict": [ - 4514 + 4520 ] } ], "insert_tournament_brackets": [ - 4556, + 4562, { "objects": [ - 4551, + 4557, "[tournament_brackets_insert_input!]!" ], "on_conflict": [ - 4558 + 4564 ] } ], "insert_tournament_brackets_one": [ - 4537, + 4543, { "object": [ - 4551, + 4557, "tournament_brackets_insert_input!" ], "on_conflict": [ - 4558 + 4564 ] } ], "insert_tournament_categories": [ - 4597, + 4603, { "objects": [ - 4592, + 4598, "[tournament_categories_insert_input!]!" ], "on_conflict": [ - 4598 + 4604 ] } ], "insert_tournament_categories_one": [ - 4583, + 4589, { "object": [ - 4592, + 4598, "tournament_categories_insert_input!" ], "on_conflict": [ - 4598 + 4604 ] } ], "insert_tournament_organizer_teams": [ - 4621, + 4627, { "objects": [ - 4616, + 4622, "[tournament_organizer_teams_insert_input!]!" ], "on_conflict": [ - 4622 + 4628 ] } ], "insert_tournament_organizer_teams_one": [ - 4607, + 4613, { "object": [ - 4616, + 4622, "tournament_organizer_teams_insert_input!" ], "on_conflict": [ - 4622 + 4628 ] } ], "insert_tournament_organizers": [ - 4648, + 4654, { "objects": [ - 4643, + 4649, "[tournament_organizers_insert_input!]!" ], "on_conflict": [ - 4649 + 4655 ] } ], "insert_tournament_organizers_one": [ - 4631, + 4637, { "object": [ - 4643, + 4649, "tournament_organizers_insert_input!" ], "on_conflict": [ - 4649 + 4655 ] } ], "insert_tournament_prizes": [ - 4689, + 4695, { "objects": [ - 4684, + 4690, "[tournament_prizes_insert_input!]!" ], "on_conflict": [ - 4690 + 4696 ] } ], "insert_tournament_prizes_one": [ - 4672, + 4678, { "object": [ - 4684, + 4690, "tournament_prizes_insert_input!" ], "on_conflict": [ - 4690 + 4696 ] } ], "insert_tournament_stage_windows": [ - 4730, + 4736, { "objects": [ - 4725, + 4731, "[tournament_stage_windows_insert_input!]!" ], "on_conflict": [ - 4731 + 4737 ] } ], "insert_tournament_stage_windows_one": [ - 4713, + 4719, { "object": [ - 4725, + 4731, "tournament_stage_windows_insert_input!" ], "on_conflict": [ - 4731 + 4737 ] } ], "insert_tournament_stages": [ - 4777, + 4783, { "objects": [ - 4772, + 4778, "[tournament_stages_insert_input!]!" ], "on_conflict": [ - 4779 + 4785 ] } ], "insert_tournament_stages_one": [ - 4754, + 4760, { "object": [ - 4772, + 4778, "tournament_stages_insert_input!" ], "on_conflict": [ - 4779 + 4785 ] } ], "insert_tournament_team_invites": [ - 4822, + 4828, { "objects": [ - 4817, + 4823, "[tournament_team_invites_insert_input!]!" ], "on_conflict": [ - 4823 + 4829 ] } ], "insert_tournament_team_invites_one": [ - 4805, + 4811, { "object": [ - 4817, + 4823, "tournament_team_invites_insert_input!" ], "on_conflict": [ - 4823 + 4829 ] } ], "insert_tournament_team_roster": [ - 4863, + 4869, { "objects": [ - 4858, + 4864, "[tournament_team_roster_insert_input!]!" ], "on_conflict": [ - 4864 + 4870 ] } ], "insert_tournament_team_roster_one": [ - 4846, + 4852, { "object": [ - 4858, + 4864, "tournament_team_roster_insert_input!" ], "on_conflict": [ - 4864 + 4870 ] } ], "insert_tournament_teams": [ - 4904, + 4910, { "objects": [ - 4899, + 4905, "[tournament_teams_insert_input!]!" ], "on_conflict": [ - 4906 + 4912 ] } ], "insert_tournament_teams_one": [ - 4887, + 4893, { "object": [ - 4899, + 4905, "tournament_teams_insert_input!" ], "on_conflict": [ - 4906 + 4912 ] } ], "insert_tournaments": [ - 4958, + 4964, { "objects": [ - 4953, + 4959, "[tournaments_insert_input!]!" ], "on_conflict": [ - 4960 + 4966 ] } ], "insert_tournaments_one": [ - 4929, + 4935, { "object": [ - 4953, + 4959, "tournaments_insert_input!" ], "on_conflict": [ - 4960 + 4966 ] } ], "insert_v_match_captains": [ - 5158, + 5164, { "objects": [ - 5155, + 5161, "[v_match_captains_insert_input!]!" ] } ], "insert_v_match_captains_one": [ - 5149, + 5155, { "object": [ - 5155, + 5161, "v_match_captains_insert_input!" ] } ], "insert_v_match_map_backup_rounds": [ - 5269, + 5275, { "objects": [ - 5266, + 5272, "[v_match_map_backup_rounds_insert_input!]!" ] } ], "insert_v_match_map_backup_rounds_one": [ - 5260, + 5266, { "object": [ - 5266, + 5272, "v_match_map_backup_rounds_insert_input!" ] } ], "insert_v_player_match_map_hltv": [ - 5491, + 5497, { "objects": [ - 5486, + 5492, "[v_player_match_map_hltv_insert_input!]!" ] } ], "insert_v_player_match_map_hltv_one": [ - 5475, + 5481, { "object": [ - 5486, + 5492, "v_player_match_map_hltv_insert_input!" ] } ], "insert_v_pool_maps": [ - 5650, + 5656, { "objects": [ - 5645, + 5651, "[v_pool_maps_insert_input!]!" ] } ], "insert_v_pool_maps_one": [ - 5635, + 5641, { "object": [ - 5645, + 5651, "v_pool_maps_insert_input!" ] } ], "insert_v_team_stage_results": [ - 5744, + 5750, { "objects": [ - 5739, + 5745, "[v_team_stage_results_insert_input!]!" ], "on_conflict": [ - 5746 + 5752 ] } ], "insert_v_team_stage_results_one": [ - 5717, + 5723, { "object": [ - 5739, + 5745, "v_team_stage_results_insert_input!" ], "on_conflict": [ - 5746 + 5752 ] } ], @@ -152963,7 +153563,7 @@ export default { 83, { "draftGameId": [ - 4993, + 4999, "uuid!" ], "inviteCode": [ @@ -152975,7 +153575,7 @@ export default { 83, { "draftGameId": [ - 4993, + 4999, "uuid!" ], "inviteCode": [ @@ -153000,14 +153600,14 @@ export default { } ], "league_award_forfeit": [ - 2761, + 2767, { "args": [ - 1843, + 1849, "league_award_forfeit_args!" ], "distinct_on": [ - 2783, + 2789, "[matches_select_column!]" ], "limit": [ @@ -153017,11 +153617,11 @@ export default { 40 ], "order_by": [ - 2781, + 2787, "[matches_order_by!]" ], "where": [ - 2770 + 2776 ] } ], @@ -153080,7 +153680,7 @@ export default { 83, { "match_map_id": [ - 4993, + 4999, "uuid!" ] } @@ -153092,7 +153692,7 @@ export default { 24, { "draftGameId": [ - 4993, + 4999, "uuid!" ], "inviteCode": [ @@ -153107,7 +153707,7 @@ export default { 40 ], "match_map_id": [ - 4993, + 4999, "uuid!" ], "preset": [ @@ -153133,7 +153733,7 @@ export default { 83, { "match_id": [ - 4993, + 4999, "uuid!" ] } @@ -153142,20 +153742,20 @@ export default { 83, { "match_id": [ - 4993, + 4999, "uuid!" ] } ], "recalculate_tournament_awards": [ - 183, + 189, { "args": [ - 3959, + 3965, "recalculate_tournament_awards_args!" ], "distinct_on": [ - 204, + 210, "[award_recipients_select_column!]" ], "limit": [ @@ -153165,11 +153765,11 @@ export default { 40 ], "order_by": [ - 202, + 208, "[award_recipients_order_by!]" ], "where": [ - 192 + 198 ] } ], @@ -153183,7 +153783,7 @@ export default { 83, { "match_id": [ - 4993, + 4999, "uuid!" ] } @@ -153207,7 +153807,7 @@ export default { 83, { "match_id": [ - 4993, + 4999, "uuid!" ] } @@ -153234,14 +153834,14 @@ export default { } ], "remove_league_team_from_season": [ - 2135, + 2141, { "args": [ - 3960, + 3966, "remove_league_team_from_season_args!" ], "distinct_on": [ - 2157, + 2163, "[league_team_seasons_select_column!]" ], "limit": [ @@ -153251,11 +153851,11 @@ export default { 40 ], "order_by": [ - 2155, + 2161, "[league_team_seasons_order_by!]" ], "where": [ - 2144 + 2150 ] } ], @@ -153280,14 +153880,14 @@ export default { } ], "reorder_league_divisions": [ - 1844, + 1850, { "args": [ - 3961, + 3967, "reorder_league_divisions_args!" ], "distinct_on": [ - 1859, + 1865, "[league_divisions_select_column!]" ], "limit": [ @@ -153297,11 +153897,11 @@ export default { 40 ], "order_by": [ - 1857, + 1863, "[league_divisions_order_by!]" ], "where": [ - 1848 + 1854 ] } ], @@ -153315,7 +153915,7 @@ export default { 83, { "match_map_id": [ - 4993, + 4999, "uuid!" ] } @@ -153324,7 +153924,7 @@ export default { 83, { "match_id": [ - 4993, + 4999, "uuid!" ] } @@ -153337,7 +153937,7 @@ export default { "String!" ], "steam_id": [ - 252, + 258, "bigint!" ] } @@ -153346,7 +153946,7 @@ export default { 83, { "job_id": [ - 4993, + 4999, "uuid!" ] } @@ -153359,7 +153959,7 @@ export default { "Boolean!" ], "draftGameId": [ - 4993, + 4999, "uuid!" ] } @@ -153372,7 +153972,7 @@ export default { "Boolean!" ], "request_id": [ - 4993, + 4999, "uuid!" ] } @@ -153387,14 +153987,14 @@ export default { } ], "restart_league_season": [ - 2020, + 2026, { "args": [ - 3962, + 3968, "restart_league_season_args!" ], "distinct_on": [ - 2040, + 2046, "[league_seasons_select_column!]" ], "limit": [ @@ -153404,11 +154004,11 @@ export default { 40 ], "order_by": [ - 2037, + 2043, "[league_seasons_order_by!]" ], "where": [ - 2025 + 2031 ] } ], @@ -153416,7 +154016,7 @@ export default { 83, { "match_map_id": [ - 4993, + 4999, "uuid!" ] } @@ -153425,7 +154025,7 @@ export default { 83, { "match_map_id": [ - 4993, + 4999, "uuid!" ], "only_failed": [ @@ -153446,7 +154046,7 @@ export default { 83, { "id": [ - 4993, + 4999, "uuid!" ] } @@ -153482,19 +154082,31 @@ export default { "description": [ 80 ], + "event_id": [ + 4999 + ], "id": [ - 4993 + 4999 + ], + "league_season_id": [ + 4999 ], "name": [ 80, "String!" ], + "season_id": [ + 4999 + ], "silhouette": [ 40 ], "tier": [ 80, "String!" + ], + "tournament_id": [ + 4999 ] } ], @@ -153509,7 +154121,7 @@ export default { 80 ], "id": [ - 4993 + 4999 ], "teaser": [ 80 @@ -153530,11 +154142,11 @@ export default { 83, { "match_id": [ - 4993, + 4999, "uuid!" ], "time": [ - 4493 + 4499 ] } ], @@ -153545,18 +154157,18 @@ export default { 40 ], "from_team_id": [ - 4993, + 4999, "uuid!" ], "proposed_scheduled_at": [ - 4493, + 4499, "timestamptz!" ], "region": [ 80 ], "to_team_id": [ - 4993, + 4999, "uuid!" ] } @@ -153578,7 +154190,7 @@ export default { 83, { "match_id": [ - 4993, + 4999, "uuid!" ], "mode": [ @@ -153591,15 +154203,15 @@ export default { 83, { "match_id": [ - 4993, + 4999, "uuid!" ], "match_map_id": [ - 4993, + 4999, "uuid!" ], "winning_lineup_id": [ - 4993, + 4999, "uuid!" ] } @@ -153608,11 +154220,11 @@ export default { 83, { "match_id": [ - 4993, + 4999, "uuid!" ], "winning_lineup_id": [ - 4993, + 4999, "uuid!" ] } @@ -153621,7 +154233,7 @@ export default { 50, { "id": [ - 4993, + 4999, "uuid!" ], "status": [ @@ -153631,10 +154243,10 @@ export default { } ], "setTournamentAward": [ - 92, + 98, { "award_id": [ - 4993 + 4999 ], "custom_name": [ 80 @@ -153647,7 +154259,7 @@ export default { 40 ], "tournament_id": [ - 4993, + 4999, "uuid!" ] } @@ -153659,7 +154271,7 @@ export default { 83, { "match_id": [ - 4993, + 4999, "uuid!" ] } @@ -153672,7 +154284,7 @@ export default { "Boolean!" ], "match_id": [ - 4993, + 4999, "uuid!" ] } @@ -153685,7 +154297,7 @@ export default { "String!" ], "match_id": [ - 4993, + 4999, "uuid!" ] } @@ -153694,7 +154306,7 @@ export default { 83, { "match_id": [ - 4993, + 4999, "uuid!" ], "visible": [ @@ -153707,7 +154319,7 @@ export default { 83, { "match_id": [ - 4993, + 4999, "uuid!" ] } @@ -153716,7 +154328,7 @@ export default { 83, { "match_id": [ - 4993, + 4999, "uuid!" ] } @@ -153729,7 +154341,7 @@ export default { "Int!" ], "match_id": [ - 4993, + 4999, "uuid!" ] } @@ -153738,7 +154350,7 @@ export default { 83, { "match_id": [ - 4993, + 4999, "uuid!" ], "show": [ @@ -153751,7 +154363,7 @@ export default { 83, { "match_id": [ - 4993, + 4999, "uuid!" ], "slot": [ @@ -153768,7 +154380,7 @@ export default { "Boolean!" ], "match_id": [ - 4993, + 4999, "uuid!" ] } @@ -153777,7 +154389,7 @@ export default { 83, { "match_id": [ - 4993, + 4999, "uuid!" ], "mode": [ @@ -153790,11 +154402,11 @@ export default { 83, { "match_id": [ - 4993, + 4999, "uuid!" ], "server_id": [ - 4993 + 4999 ] } ], @@ -153802,7 +154414,7 @@ export default { 83, { "game_server_node_id": [ - 4993, + 4999, "uuid!" ] } @@ -153811,7 +154423,7 @@ export default { 83, { "match_id": [ - 4993, + 4999, "uuid!" ] } @@ -153820,7 +154432,7 @@ export default { 83, { "match_map_id": [ - 4993, + 4999, "uuid!" ] } @@ -153842,7 +154454,7 @@ export default { 83, { "match_id": [ - 4993, + 4999, "uuid!" ] } @@ -153860,7 +154472,7 @@ export default { 83, { "from_match_id": [ - 4993, + 4999, "uuid!" ], "mode": [ @@ -153868,7 +154480,7 @@ export default { "String!" ], "to_match_id": [ - 4993, + 4999, "uuid!" ] } @@ -153880,7 +154492,7 @@ export default { 26 ], "testUpload": [ - 89 + 95 ], "unlinkDiscord": [ 83 @@ -153908,7 +154520,7 @@ export default { 83, { "clip_id": [ - 4993, + 4999, "uuid!" ], "target_steam_id": [ @@ -153929,7 +154541,7 @@ export default { 80 ], "game_server_node_id": [ - 4993 + 4999 ] } ], @@ -153937,11 +154549,11 @@ export default { 83, { "draftGameId": [ - 4993, + 4999, "uuid!" ], "settings": [ - 1817, + 1823, "jsonb!" ] } @@ -153950,5974 +154562,5974 @@ export default { 83 ], "update__map_pool": [ - 103, + 109, { "_set": [ - 108 + 114 ], "where": [ - 98, + 104, "_map_pool_bool_exp!" ] } ], "update__map_pool_by_pk": [ - 95, + 101, { "_set": [ - 108 + 114 ], "pk_columns": [ - 106, + 112, "_map_pool_pk_columns_input!" ] } ], "update__map_pool_many": [ - 103, + 109, { "updates": [ - 112, + 118, "[_map_pool_updates!]!" ] } ], "update_abandoned_matches": [ - 131, + 137, { "_inc": [ - 125 + 131 ], "_set": [ - 136 + 142 ], "where": [ - 123, + 129, "abandoned_matches_bool_exp!" ] } ], "update_abandoned_matches_by_pk": [ - 114, + 120, { "_inc": [ - 125 + 131 ], "_set": [ - 136 + 142 ], "pk_columns": [ - 134, + 140, "abandoned_matches_pk_columns_input!" ] } ], "update_abandoned_matches_many": [ - 131, + 137, { "updates": [ - 148, + 154, "[abandoned_matches_updates!]!" ] } ], "update_api_keys": [ - 165, + 171, { "_inc": [ - 161 + 167 ], "_set": [ - 170 + 176 ], "where": [ - 159, + 165, "api_keys_bool_exp!" ] } ], "update_api_keys_by_pk": [ - 155, + 161, { "_inc": [ - 161 + 167 ], "_set": [ - 170 + 176 ], "pk_columns": [ - 168, + 174, "api_keys_pk_columns_input!" ] } ], "update_api_keys_many": [ - 165, + 171, { "updates": [ - 178, + 184, "[api_keys_updates!]!" ] } ], "update_award_recipients": [ - 200, + 206, { "_inc": [ - 194 + 200 ], "_set": [ - 205 + 211 ], "where": [ - 192, + 198, "award_recipients_bool_exp!" ] } ], "update_award_recipients_by_pk": [ - 183, + 189, { "_inc": [ - 194 + 200 ], "_set": [ - 205 + 211 ], "pk_columns": [ - 203, + 209, "award_recipients_pk_columns_input!" ] } ], "update_award_recipients_many": [ - 200, + 206, { "updates": [ - 217, + 223, "[award_recipients_updates!]!" ] } ], "update_awards": [ - 234, + 240, { "_inc": [ - 230 + 236 ], "_set": [ - 240 + 246 ], "where": [ - 228, + 234, "awards_bool_exp!" ] } ], "update_awards_by_pk": [ - 224, + 230, { "_inc": [ - 230 + 236 ], "_set": [ - 240 + 246 ], "pk_columns": [ - 238, + 244, "awards_pk_columns_input!" ] } ], "update_awards_many": [ - 234, + 240, { "updates": [ - 248, + 254, "[awards_updates!]!" ] } ], "update_clip_render_jobs": [ - 280, + 286, { "_append": [ - 265 + 271 ], "_delete_at_path": [ - 271 + 277 ], "_delete_elem": [ - 272 + 278 ], "_delete_key": [ - 273 + 279 ], "_inc": [ - 274 + 280 ], "_prepend": [ - 284 + 290 ], "_set": [ - 288 + 294 ], "where": [ - 269, + 275, "clip_render_jobs_bool_exp!" ] } ], "update_clip_render_jobs_by_pk": [ - 257, + 263, { "_append": [ - 265 + 271 ], "_delete_at_path": [ - 271 + 277 ], "_delete_elem": [ - 272 + 278 ], "_delete_key": [ - 273 + 279 ], "_inc": [ - 274 + 280 ], "_prepend": [ - 284 + 290 ], "_set": [ - 288 + 294 ], "pk_columns": [ - 283, + 289, "clip_render_jobs_pk_columns_input!" ] } ], "update_clip_render_jobs_many": [ - 280, + 286, { "updates": [ - 300, + 306, "[clip_render_jobs_updates!]!" ] } ], "update_custom_pages": [ - 323, + 329, { "_append": [ - 312 + 318 ], "_delete_at_path": [ - 316 + 322 ], "_delete_elem": [ - 317 + 323 ], "_delete_key": [ - 318 + 324 ], "_inc": [ - 319 + 325 ], "_prepend": [ - 327 + 333 ], "_set": [ - 329 + 335 ], "where": [ - 314, + 320, "custom_pages_bool_exp!" ] } ], "update_custom_pages_by_pk": [ - 309, + 315, { "_append": [ - 312 + 318 ], "_delete_at_path": [ - 316 + 322 ], "_delete_elem": [ - 317 + 323 ], "_delete_key": [ - 318 + 324 ], "_inc": [ - 319 + 325 ], "_prepend": [ - 327 + 333 ], "_set": [ - 329 + 335 ], "pk_columns": [ - 326, + 332, "custom_pages_pk_columns_input!" ] } ], "update_custom_pages_many": [ - 323, + 329, { "updates": [ - 337, + 343, "[custom_pages_updates!]!" ] } ], "update_db_backups": [ - 351, + 357, { "_inc": [ - 347 + 353 ], "_set": [ - 356 + 362 ], "where": [ - 345, + 351, "db_backups_bool_exp!" ] } ], "update_db_backups_by_pk": [ - 341, + 347, { "_inc": [ - 347 + 353 ], "_set": [ - 356 + 362 ], "pk_columns": [ - 354, + 360, "db_backups_pk_columns_input!" ] } ], "update_db_backups_many": [ - 351, + 357, { "updates": [ - 364, + 370, "[db_backups_updates!]!" ] } ], "update_draft_game_picks": [ - 387, + 393, { "_inc": [ - 381 + 387 ], "_set": [ - 394 + 400 ], "where": [ - 379, + 385, "draft_game_picks_bool_exp!" ] } ], "update_draft_game_picks_by_pk": [ - 368, + 374, { "_inc": [ - 381 + 387 ], "_set": [ - 394 + 400 ], "pk_columns": [ - 390, + 396, "draft_game_picks_pk_columns_input!" ] } ], "update_draft_game_picks_many": [ - 387, + 393, { "updates": [ - 406, + 412, "[draft_game_picks_updates!]!" ] } ], "update_draft_game_players": [ - 432, + 438, { "_inc": [ - 426 + 432 ], "_set": [ - 439 + 445 ], "where": [ - 424, + 430, "draft_game_players_bool_exp!" ] } ], "update_draft_game_players_by_pk": [ - 413, + 419, { "_inc": [ - 426 + 432 ], "_set": [ - 439 + 445 ], "pk_columns": [ - 435, + 441, "draft_game_players_pk_columns_input!" ] } ], "update_draft_game_players_many": [ - 432, + 438, { "updates": [ - 451, + 457, "[draft_game_players_updates!]!" ] } ], "update_draft_games": [ - 477, + 483, { "_inc": [ - 471 + 477 ], "_set": [ - 485 + 491 ], "where": [ - 469, + 475, "draft_games_bool_exp!" ] } ], "update_draft_games_by_pk": [ - 458, + 464, { "_inc": [ - 471 + 477 ], "_set": [ - 485 + 491 ], "pk_columns": [ - 481, + 487, "draft_games_pk_columns_input!" ] } ], "update_draft_games_many": [ - 477, + 483, { "updates": [ - 497, + 503, "[draft_games_updates!]!" ] } ], "update_e_award_sources": [ - 514, + 520, { "_set": [ - 519 + 525 ], "where": [ - 507, + 513, "e_award_sources_bool_exp!" ] } ], "update_e_award_sources_by_pk": [ - 504, + 510, { "_set": [ - 519 + 525 ], "pk_columns": [ - 517, + 523, "e_award_sources_pk_columns_input!" ] } ], "update_e_award_sources_many": [ - 514, + 520, { "updates": [ - 523, + 529, "[e_award_sources_updates!]!" ] } ], "update_e_award_tiers": [ - 534, + 540, { "_set": [ - 539 + 545 ], "where": [ - 527, + 533, "e_award_tiers_bool_exp!" ] } ], "update_e_award_tiers_by_pk": [ - 524, + 530, { "_set": [ - 539 + 545 ], "pk_columns": [ - 537, + 543, "e_award_tiers_pk_columns_input!" ] } ], "update_e_award_tiers_many": [ - 534, + 540, { "updates": [ - 543, + 549, "[e_award_tiers_updates!]!" ] } ], "update_e_check_in_settings": [ - 554, + 560, { "_set": [ - 559 + 565 ], "where": [ - 547, + 553, "e_check_in_settings_bool_exp!" ] } ], "update_e_check_in_settings_by_pk": [ - 544, + 550, { "_set": [ - 559 + 565 ], "pk_columns": [ - 557, + 563, "e_check_in_settings_pk_columns_input!" ] } ], "update_e_check_in_settings_many": [ - 554, + 560, { "updates": [ - 563, + 569, "[e_check_in_settings_updates!]!" ] } ], "update_e_draft_game_captain_selection": [ - 574, + 580, { "_set": [ - 580 + 586 ], "where": [ - 567, + 573, "e_draft_game_captain_selection_bool_exp!" ] } ], "update_e_draft_game_captain_selection_by_pk": [ - 564, + 570, { "_set": [ - 580 + 586 ], "pk_columns": [ - 578, + 584, "e_draft_game_captain_selection_pk_columns_input!" ] } ], "update_e_draft_game_captain_selection_many": [ - 574, + 580, { "updates": [ - 584, + 590, "[e_draft_game_captain_selection_updates!]!" ] } ], "update_e_draft_game_draft_order": [ - 595, + 601, { "_set": [ - 601 + 607 ], "where": [ - 588, + 594, "e_draft_game_draft_order_bool_exp!" ] } ], "update_e_draft_game_draft_order_by_pk": [ - 585, + 591, { "_set": [ - 601 + 607 ], "pk_columns": [ - 599, + 605, "e_draft_game_draft_order_pk_columns_input!" ] } ], "update_e_draft_game_draft_order_many": [ - 595, + 601, { "updates": [ - 605, + 611, "[e_draft_game_draft_order_updates!]!" ] } ], "update_e_draft_game_mode": [ - 616, + 622, { "_set": [ - 622 + 628 ], "where": [ - 609, + 615, "e_draft_game_mode_bool_exp!" ] } ], "update_e_draft_game_mode_by_pk": [ - 606, + 612, { "_set": [ - 622 + 628 ], "pk_columns": [ - 620, + 626, "e_draft_game_mode_pk_columns_input!" ] } ], "update_e_draft_game_mode_many": [ - 616, + 622, { "updates": [ - 626, + 632, "[e_draft_game_mode_updates!]!" ] } ], "update_e_draft_game_player_status": [ - 637, + 643, { "_set": [ - 643 + 649 ], "where": [ - 630, + 636, "e_draft_game_player_status_bool_exp!" ] } ], "update_e_draft_game_player_status_by_pk": [ - 627, + 633, { "_set": [ - 643 + 649 ], "pk_columns": [ - 641, + 647, "e_draft_game_player_status_pk_columns_input!" ] } ], "update_e_draft_game_player_status_many": [ - 637, + 643, { "updates": [ - 647, + 653, "[e_draft_game_player_status_updates!]!" ] } ], "update_e_draft_game_status": [ - 658, + 664, { "_set": [ - 664 + 670 ], "where": [ - 651, + 657, "e_draft_game_status_bool_exp!" ] } ], "update_e_draft_game_status_by_pk": [ - 648, + 654, { "_set": [ - 664 + 670 ], "pk_columns": [ - 662, + 668, "e_draft_game_status_pk_columns_input!" ] } ], "update_e_draft_game_status_many": [ - 658, + 664, { "updates": [ - 668, + 674, "[e_draft_game_status_updates!]!" ] } ], "update_e_event_media_access": [ - 679, + 685, { "_set": [ - 684 + 690 ], "where": [ - 672, + 678, "e_event_media_access_bool_exp!" ] } ], "update_e_event_media_access_by_pk": [ - 669, + 675, { "_set": [ - 684 + 690 ], "pk_columns": [ - 682, + 688, "e_event_media_access_pk_columns_input!" ] } ], "update_e_event_media_access_many": [ - 679, + 685, { "updates": [ - 688, + 694, "[e_event_media_access_updates!]!" ] } ], "update_e_event_visibility": [ - 699, + 705, { "_set": [ - 704 + 710 ], "where": [ - 692, + 698, "e_event_visibility_bool_exp!" ] } ], "update_e_event_visibility_by_pk": [ - 689, + 695, { "_set": [ - 704 + 710 ], "pk_columns": [ - 702, + 708, "e_event_visibility_pk_columns_input!" ] } ], "update_e_event_visibility_many": [ - 699, + 705, { "updates": [ - 708, + 714, "[e_event_visibility_updates!]!" ] } ], "update_e_friend_status": [ - 719, + 725, { "_set": [ - 725 + 731 ], "where": [ - 712, + 718, "e_friend_status_bool_exp!" ] } ], "update_e_friend_status_by_pk": [ - 709, + 715, { "_set": [ - 725 + 731 ], "pk_columns": [ - 723, + 729, "e_friend_status_pk_columns_input!" ] } ], "update_e_friend_status_many": [ - 719, + 725, { "updates": [ - 729, + 735, "[e_friend_status_updates!]!" ] } ], "update_e_game_cfg_types": [ - 740, + 746, { "_set": [ - 745 + 751 ], "where": [ - 733, + 739, "e_game_cfg_types_bool_exp!" ] } ], "update_e_game_cfg_types_by_pk": [ - 730, + 736, { "_set": [ - 745 + 751 ], "pk_columns": [ - 743, + 749, "e_game_cfg_types_pk_columns_input!" ] } ], "update_e_game_cfg_types_many": [ - 740, + 746, { "updates": [ - 749, + 755, "[e_game_cfg_types_updates!]!" ] } ], "update_e_game_server_node_statuses": [ - 760, + 766, { "_set": [ - 766 + 772 ], "where": [ - 753, + 759, "e_game_server_node_statuses_bool_exp!" ] } ], "update_e_game_server_node_statuses_by_pk": [ - 750, + 756, { "_set": [ - 766 + 772 ], "pk_columns": [ - 764, + 770, "e_game_server_node_statuses_pk_columns_input!" ] } ], "update_e_game_server_node_statuses_many": [ - 760, + 766, { "updates": [ - 770, + 776, "[e_game_server_node_statuses_updates!]!" ] } ], "update_e_league_movement_types": [ - 781, + 787, { "_set": [ - 787 + 793 ], "where": [ - 774, + 780, "e_league_movement_types_bool_exp!" ] } ], "update_e_league_movement_types_by_pk": [ - 771, + 777, { "_set": [ - 787 + 793 ], "pk_columns": [ - 785, + 791, "e_league_movement_types_pk_columns_input!" ] } ], "update_e_league_movement_types_many": [ - 781, + 787, { "updates": [ - 791, + 797, "[e_league_movement_types_updates!]!" ] } ], "update_e_league_proposal_statuses": [ - 802, + 808, { "_set": [ - 808 + 814 ], "where": [ - 795, + 801, "e_league_proposal_statuses_bool_exp!" ] } ], "update_e_league_proposal_statuses_by_pk": [ - 792, + 798, { "_set": [ - 808 + 814 ], "pk_columns": [ - 806, + 812, "e_league_proposal_statuses_pk_columns_input!" ] } ], "update_e_league_proposal_statuses_many": [ - 802, + 808, { "updates": [ - 812, + 818, "[e_league_proposal_statuses_updates!]!" ] } ], "update_e_league_registration_statuses": [ - 823, + 829, { "_set": [ - 829 + 835 ], "where": [ - 816, + 822, "e_league_registration_statuses_bool_exp!" ] } ], "update_e_league_registration_statuses_by_pk": [ - 813, + 819, { "_set": [ - 829 + 835 ], "pk_columns": [ - 827, + 833, "e_league_registration_statuses_pk_columns_input!" ] } ], "update_e_league_registration_statuses_many": [ - 823, + 829, { "updates": [ - 833, + 839, "[e_league_registration_statuses_updates!]!" ] } ], "update_e_league_season_statuses": [ - 844, + 850, { "_set": [ - 850 + 856 ], "where": [ - 837, + 843, "e_league_season_statuses_bool_exp!" ] } ], "update_e_league_season_statuses_by_pk": [ - 834, + 840, { "_set": [ - 850 + 856 ], "pk_columns": [ - 848, + 854, "e_league_season_statuses_pk_columns_input!" ] } ], "update_e_league_season_statuses_many": [ - 844, + 850, { "updates": [ - 854, + 860, "[e_league_season_statuses_updates!]!" ] } ], "update_e_lobby_access": [ - 865, + 871, { "_set": [ - 871 + 877 ], "where": [ - 858, + 864, "e_lobby_access_bool_exp!" ] } ], "update_e_lobby_access_by_pk": [ - 855, + 861, { "_set": [ - 871 + 877 ], "pk_columns": [ - 869, + 875, "e_lobby_access_pk_columns_input!" ] } ], "update_e_lobby_access_many": [ - 865, + 871, { "updates": [ - 875, + 881, "[e_lobby_access_updates!]!" ] } ], "update_e_lobby_player_status": [ - 886, + 892, { "_set": [ - 891 + 897 ], "where": [ - 879, + 885, "e_lobby_player_status_bool_exp!" ] } ], "update_e_lobby_player_status_by_pk": [ - 876, + 882, { "_set": [ - 891 + 897 ], "pk_columns": [ - 889, + 895, "e_lobby_player_status_pk_columns_input!" ] } ], "update_e_lobby_player_status_many": [ - 886, + 892, { "updates": [ - 895, + 901, "[e_lobby_player_status_updates!]!" ] } ], "update_e_map_pool_types": [ - 906, + 912, { "_set": [ - 912 + 918 ], "where": [ - 899, + 905, "e_map_pool_types_bool_exp!" ] } ], "update_e_map_pool_types_by_pk": [ - 896, + 902, { "_set": [ - 912 + 918 ], "pk_columns": [ - 910, + 916, "e_map_pool_types_pk_columns_input!" ] } ], "update_e_map_pool_types_many": [ - 906, + 912, { "updates": [ - 916, + 922, "[e_map_pool_types_updates!]!" ] } ], "update_e_match_clip_visibility": [ - 927, + 933, { "_set": [ - 932 + 938 ], "where": [ - 920, + 926, "e_match_clip_visibility_bool_exp!" ] } ], "update_e_match_clip_visibility_by_pk": [ - 917, + 923, { "_set": [ - 932 + 938 ], "pk_columns": [ - 930, + 936, "e_match_clip_visibility_pk_columns_input!" ] } ], "update_e_match_clip_visibility_many": [ - 927, + 933, { "updates": [ - 936, + 942, "[e_match_clip_visibility_updates!]!" ] } ], "update_e_match_map_status": [ - 947, + 953, { "_set": [ - 953 + 959 ], "where": [ - 940, + 946, "e_match_map_status_bool_exp!" ] } ], "update_e_match_map_status_by_pk": [ - 937, + 943, { "_set": [ - 953 + 959 ], "pk_columns": [ - 951, + 957, "e_match_map_status_pk_columns_input!" ] } ], "update_e_match_map_status_many": [ - 947, + 953, { "updates": [ - 957, + 963, "[e_match_map_status_updates!]!" ] } ], "update_e_match_mode": [ - 968, + 974, { "_set": [ - 973 + 979 ], "where": [ - 961, + 967, "e_match_mode_bool_exp!" ] } ], "update_e_match_mode_by_pk": [ - 958, + 964, { "_set": [ - 973 + 979 ], "pk_columns": [ - 971, + 977, "e_match_mode_pk_columns_input!" ] } ], "update_e_match_mode_many": [ - 968, + 974, { "updates": [ - 977, + 983, "[e_match_mode_updates!]!" ] } ], "update_e_match_status": [ - 988, + 994, { "_set": [ - 994 + 1000 ], "where": [ - 981, + 987, "e_match_status_bool_exp!" ] } ], "update_e_match_status_by_pk": [ - 978, + 984, { "_set": [ - 994 + 1000 ], "pk_columns": [ - 992, + 998, "e_match_status_pk_columns_input!" ] } ], "update_e_match_status_many": [ - 988, + 994, { "updates": [ - 998, + 1004, "[e_match_status_updates!]!" ] } ], "update_e_match_types": [ - 1009, + 1015, { "_set": [ - 1015 + 1021 ], "where": [ - 1002, + 1008, "e_match_types_bool_exp!" ] } ], "update_e_match_types_by_pk": [ - 999, + 1005, { "_set": [ - 1015 + 1021 ], "pk_columns": [ - 1013, + 1019, "e_match_types_pk_columns_input!" ] } ], "update_e_match_types_many": [ - 1009, + 1015, { "updates": [ - 1019, + 1025, "[e_match_types_updates!]!" ] } ], "update_e_notification_types": [ - 1030, + 1036, { "_set": [ - 1035 + 1041 ], "where": [ - 1023, + 1029, "e_notification_types_bool_exp!" ] } ], "update_e_notification_types_by_pk": [ - 1020, + 1026, { "_set": [ - 1035 + 1041 ], "pk_columns": [ - 1033, + 1039, "e_notification_types_pk_columns_input!" ] } ], "update_e_notification_types_many": [ - 1030, + 1036, { "updates": [ - 1039, + 1045, "[e_notification_types_updates!]!" ] } ], "update_e_objective_types": [ - 1050, + 1056, { "_set": [ - 1055 + 1061 ], "where": [ - 1043, + 1049, "e_objective_types_bool_exp!" ] } ], "update_e_objective_types_by_pk": [ - 1040, + 1046, { "_set": [ - 1055 + 1061 ], "pk_columns": [ - 1053, + 1059, "e_objective_types_pk_columns_input!" ] } ], "update_e_objective_types_many": [ - 1050, + 1056, { "updates": [ - 1059, + 1065, "[e_objective_types_updates!]!" ] } ], "update_e_player_roles": [ - 1070, + 1076, { "_set": [ - 1075 + 1081 ], "where": [ - 1063, + 1069, "e_player_roles_bool_exp!" ] } ], "update_e_player_roles_by_pk": [ - 1060, + 1066, { "_set": [ - 1075 + 1081 ], "pk_columns": [ - 1073, + 1079, "e_player_roles_pk_columns_input!" ] } ], "update_e_player_roles_many": [ - 1070, + 1076, { "updates": [ - 1079, + 1085, "[e_player_roles_updates!]!" ] } ], "update_e_plugin_runtimes": [ - 1090, + 1096, { "_set": [ - 1095 + 1101 ], "where": [ - 1083, + 1089, "e_plugin_runtimes_bool_exp!" ] } ], "update_e_plugin_runtimes_by_pk": [ - 1080, + 1086, { "_set": [ - 1095 + 1101 ], "pk_columns": [ - 1093, + 1099, "e_plugin_runtimes_pk_columns_input!" ] } ], "update_e_plugin_runtimes_many": [ - 1090, + 1096, { "updates": [ - 1099, + 1105, "[e_plugin_runtimes_updates!]!" ] } ], "update_e_ready_settings": [ - 1110, + 1116, { "_set": [ - 1115 + 1121 ], "where": [ - 1103, + 1109, "e_ready_settings_bool_exp!" ] } ], "update_e_ready_settings_by_pk": [ - 1100, + 1106, { "_set": [ - 1115 + 1121 ], "pk_columns": [ - 1113, + 1119, "e_ready_settings_pk_columns_input!" ] } ], "update_e_ready_settings_many": [ - 1110, + 1116, { "updates": [ - 1119, + 1125, "[e_ready_settings_updates!]!" ] } ], "update_e_sanction_types": [ - 1130, + 1136, { "_set": [ - 1136 + 1142 ], "where": [ - 1123, + 1129, "e_sanction_types_bool_exp!" ] } ], "update_e_sanction_types_by_pk": [ - 1120, + 1126, { "_set": [ - 1136 + 1142 ], "pk_columns": [ - 1134, + 1140, "e_sanction_types_pk_columns_input!" ] } ], "update_e_sanction_types_many": [ - 1130, + 1136, { "updates": [ - 1140, + 1146, "[e_sanction_types_updates!]!" ] } ], "update_e_scrim_request_statuses": [ - 1151, + 1157, { "_set": [ - 1156 + 1162 ], "where": [ - 1144, + 1150, "e_scrim_request_statuses_bool_exp!" ] } ], "update_e_scrim_request_statuses_by_pk": [ - 1141, + 1147, { "_set": [ - 1156 + 1162 ], "pk_columns": [ - 1154, + 1160, "e_scrim_request_statuses_pk_columns_input!" ] } ], "update_e_scrim_request_statuses_many": [ - 1151, + 1157, { "updates": [ - 1160, + 1166, "[e_scrim_request_statuses_updates!]!" ] } ], "update_e_server_types": [ - 1171, + 1177, { "_set": [ - 1176 + 1182 ], "where": [ - 1164, + 1170, "e_server_types_bool_exp!" ] } ], "update_e_server_types_by_pk": [ - 1161, + 1167, { "_set": [ - 1176 + 1182 ], "pk_columns": [ - 1174, + 1180, "e_server_types_pk_columns_input!" ] } ], "update_e_server_types_many": [ - 1171, + 1177, { "updates": [ - 1180, + 1186, "[e_server_types_updates!]!" ] } ], "update_e_sides": [ - 1191, + 1197, { "_set": [ - 1196 + 1202 ], "where": [ - 1184, + 1190, "e_sides_bool_exp!" ] } ], "update_e_sides_by_pk": [ - 1181, + 1187, { "_set": [ - 1196 + 1202 ], "pk_columns": [ - 1194, + 1200, "e_sides_pk_columns_input!" ] } ], "update_e_sides_many": [ - 1191, + 1197, { "updates": [ - 1200, + 1206, "[e_sides_updates!]!" ] } ], "update_e_system_alert_types": [ - 1211, + 1217, { "_set": [ - 1216 + 1222 ], "where": [ - 1204, + 1210, "e_system_alert_types_bool_exp!" ] } ], "update_e_system_alert_types_by_pk": [ - 1201, + 1207, { "_set": [ - 1216 + 1222 ], "pk_columns": [ - 1214, + 1220, "e_system_alert_types_pk_columns_input!" ] } ], "update_e_system_alert_types_many": [ - 1211, + 1217, { "updates": [ - 1220, + 1226, "[e_system_alert_types_updates!]!" ] } ], "update_e_team_roles": [ - 1231, + 1237, { "_set": [ - 1237 + 1243 ], "where": [ - 1224, + 1230, "e_team_roles_bool_exp!" ] } ], "update_e_team_roles_by_pk": [ - 1221, + 1227, { "_set": [ - 1237 + 1243 ], "pk_columns": [ - 1235, + 1241, "e_team_roles_pk_columns_input!" ] } ], "update_e_team_roles_many": [ - 1231, + 1237, { "updates": [ - 1241, + 1247, "[e_team_roles_updates!]!" ] } ], "update_e_team_roster_statuses": [ - 1252, + 1258, { "_set": [ - 1257 + 1263 ], "where": [ - 1245, + 1251, "e_team_roster_statuses_bool_exp!" ] } ], "update_e_team_roster_statuses_by_pk": [ - 1242, + 1248, { "_set": [ - 1257 + 1263 ], "pk_columns": [ - 1255, + 1261, "e_team_roster_statuses_pk_columns_input!" ] } ], "update_e_team_roster_statuses_many": [ - 1252, + 1258, { "updates": [ - 1261, + 1267, "[e_team_roster_statuses_updates!]!" ] } ], "update_e_timeout_settings": [ - 1272, + 1278, { "_set": [ - 1277 + 1283 ], "where": [ - 1265, + 1271, "e_timeout_settings_bool_exp!" ] } ], "update_e_timeout_settings_by_pk": [ - 1262, + 1268, { "_set": [ - 1277 + 1283 ], "pk_columns": [ - 1275, + 1281, "e_timeout_settings_pk_columns_input!" ] } ], "update_e_timeout_settings_many": [ - 1272, + 1278, { "updates": [ - 1281, + 1287, "[e_timeout_settings_updates!]!" ] } ], "update_e_tournament_categories": [ - 1292, + 1298, { "_set": [ - 1298 + 1304 ], "where": [ - 1285, + 1291, "e_tournament_categories_bool_exp!" ] } ], "update_e_tournament_categories_by_pk": [ - 1282, + 1288, { "_set": [ - 1298 + 1304 ], "pk_columns": [ - 1296, + 1302, "e_tournament_categories_pk_columns_input!" ] } ], "update_e_tournament_categories_many": [ - 1292, + 1298, { "updates": [ - 1302, + 1308, "[e_tournament_categories_updates!]!" ] } ], "update_e_tournament_stage_types": [ - 1313, + 1319, { "_set": [ - 1319 + 1325 ], "where": [ - 1306, + 1312, "e_tournament_stage_types_bool_exp!" ] } ], "update_e_tournament_stage_types_by_pk": [ - 1303, + 1309, { "_set": [ - 1319 + 1325 ], "pk_columns": [ - 1317, + 1323, "e_tournament_stage_types_pk_columns_input!" ] } ], "update_e_tournament_stage_types_many": [ - 1313, + 1319, { "updates": [ - 1323, + 1329, "[e_tournament_stage_types_updates!]!" ] } ], "update_e_tournament_status": [ - 1334, + 1340, { "_set": [ - 1340 + 1346 ], "where": [ - 1327, + 1333, "e_tournament_status_bool_exp!" ] } ], "update_e_tournament_status_by_pk": [ - 1324, + 1330, { "_set": [ - 1340 + 1346 ], "pk_columns": [ - 1338, + 1344, "e_tournament_status_pk_columns_input!" ] } ], "update_e_tournament_status_many": [ - 1334, + 1340, { "updates": [ - 1344, + 1350, "[e_tournament_status_updates!]!" ] } ], "update_e_utility_types": [ - 1355, + 1361, { "_set": [ - 1360 + 1366 ], "where": [ - 1348, + 1354, "e_utility_types_bool_exp!" ] } ], "update_e_utility_types_by_pk": [ - 1345, + 1351, { "_set": [ - 1360 + 1366 ], "pk_columns": [ - 1358, + 1364, "e_utility_types_pk_columns_input!" ] } ], "update_e_utility_types_many": [ - 1355, + 1361, { "updates": [ - 1364, + 1370, "[e_utility_types_updates!]!" ] } ], "update_e_veto_pick_types": [ - 1375, + 1381, { "_set": [ - 1380 + 1386 ], "where": [ - 1368, + 1374, "e_veto_pick_types_bool_exp!" ] } ], "update_e_veto_pick_types_by_pk": [ - 1365, + 1371, { "_set": [ - 1380 + 1386 ], "pk_columns": [ - 1378, + 1384, "e_veto_pick_types_pk_columns_input!" ] } ], "update_e_veto_pick_types_many": [ - 1375, + 1381, { "updates": [ - 1384, + 1390, "[e_veto_pick_types_updates!]!" ] } ], "update_e_winning_reasons": [ - 1395, + 1401, { "_set": [ - 1400 + 1406 ], "where": [ - 1388, + 1394, "e_winning_reasons_bool_exp!" ] } ], "update_e_winning_reasons_by_pk": [ - 1385, + 1391, { "_set": [ - 1400 + 1406 ], "pk_columns": [ - 1398, + 1404, "e_winning_reasons_pk_columns_input!" ] } ], "update_e_winning_reasons_many": [ - 1395, + 1401, { "updates": [ - 1404, + 1410, "[e_winning_reasons_updates!]!" ] } ], "update_event_match_links": [ - 1413, + 1419, { "_set": [ - 1418 + 1424 ], "where": [ - 1408, + 1414, "event_match_links_bool_exp!" ] } ], "update_event_match_links_by_pk": [ - 1405, + 1411, { "_set": [ - 1418 + 1424 ], "pk_columns": [ - 1416, + 1422, "event_match_links_pk_columns_input!" ] } ], "update_event_match_links_many": [ - 1413, + 1419, { "updates": [ - 1422, + 1428, "[event_match_links_updates!]!" ] } ], "update_event_media": [ - 1440, + 1446, { "_inc": [ - 1434 + 1440 ], "_set": [ - 1487 + 1493 ], "where": [ - 1432, + 1438, "event_media_bool_exp!" ] } ], "update_event_media_by_pk": [ - 1423, + 1429, { "_inc": [ - 1434 + 1440 ], "_set": [ - 1487 + 1493 ], "pk_columns": [ - 1444, + 1450, "event_media_pk_columns_input!" ] } ], "update_event_media_many": [ - 1440, + 1446, { "updates": [ - 1499, + 1505, "[event_media_updates!]!" ] } ], "update_event_media_players": [ - 1462, + 1468, { "_inc": [ - 1456 + 1462 ], "_set": [ - 1467 + 1473 ], "where": [ - 1454, + 1460, "event_media_players_bool_exp!" ] } ], "update_event_media_players_by_pk": [ - 1445, + 1451, { "_inc": [ - 1456 + 1462 ], "_set": [ - 1467 + 1473 ], "pk_columns": [ - 1465, + 1471, "event_media_players_pk_columns_input!" ] } ], "update_event_media_players_many": [ - 1462, + 1468, { "updates": [ - 1479, + 1485, "[event_media_players_updates!]!" ] } ], "update_event_organizers": [ - 1523, + 1529, { "_inc": [ - 1517 + 1523 ], "_set": [ - 1528 + 1534 ], "where": [ - 1515, + 1521, "event_organizers_bool_exp!" ] } ], "update_event_organizers_by_pk": [ - 1506, + 1512, { "_inc": [ - 1517 + 1523 ], "_set": [ - 1528 + 1534 ], "pk_columns": [ - 1526, + 1532, "event_organizers_pk_columns_input!" ] } ], "update_event_organizers_many": [ - 1523, + 1529, { "updates": [ - 1540, + 1546, "[event_organizers_updates!]!" ] } ], "update_event_players": [ - 1564, + 1570, { "_inc": [ - 1558 + 1564 ], "_set": [ - 1569 + 1575 ], "where": [ - 1556, + 1562, "event_players_bool_exp!" ] } ], "update_event_players_by_pk": [ - 1547, + 1553, { "_inc": [ - 1558 + 1564 ], "_set": [ - 1569 + 1575 ], "pk_columns": [ - 1567, + 1573, "event_players_pk_columns_input!" ] } ], "update_event_players_many": [ - 1564, + 1570, { "updates": [ - 1581, + 1587, "[event_players_updates!]!" ] } ], "update_event_teams": [ - 1602, + 1608, { "_set": [ - 1607 + 1613 ], "where": [ - 1595, + 1601, "event_teams_bool_exp!" ] } ], "update_event_teams_by_pk": [ - 1588, + 1594, { "_set": [ - 1607 + 1613 ], "pk_columns": [ - 1605, + 1611, "event_teams_pk_columns_input!" ] } ], "update_event_teams_many": [ - 1602, + 1608, { "updates": [ - 1611, + 1617, "[event_teams_updates!]!" ] } ], "update_event_tournaments": [ - 1626, + 1632, { "_set": [ - 1631 + 1637 ], "where": [ - 1619, + 1625, "event_tournaments_bool_exp!" ] } ], "update_event_tournaments_by_pk": [ - 1612, + 1618, { "_set": [ - 1631 + 1637 ], "pk_columns": [ - 1629, + 1635, "event_tournaments_pk_columns_input!" ] } ], "update_event_tournaments_many": [ - 1626, + 1632, { "updates": [ - 1635, + 1641, "[event_tournaments_updates!]!" ] } ], "update_events": [ - 1646, + 1652, { "_inc": [ - 1642 + 1648 ], "_set": [ - 1652 + 1658 ], "where": [ - 1640, + 1646, "events_bool_exp!" ] } ], "update_events_by_pk": [ - 1636, + 1642, { "_inc": [ - 1642 + 1648 ], "_set": [ - 1652 + 1658 ], "pk_columns": [ - 1650, + 1656, "events_pk_columns_input!" ] } ], "update_events_many": [ - 1646, + 1652, { "updates": [ - 1660, + 1666, "[events_updates!]!" ] } ], "update_friends": [ - 1676, + 1682, { "_inc": [ - 1672 + 1678 ], "_set": [ - 1681 + 1687 ], "where": [ - 1670, + 1676, "friends_bool_exp!" ] } ], "update_friends_by_pk": [ - 1666, + 1672, { "_inc": [ - 1672 + 1678 ], "_set": [ - 1681 + 1687 ], "pk_columns": [ - 1679, + 1685, "friends_pk_columns_input!" ] } ], "update_friends_many": [ - 1676, + 1682, { "updates": [ - 1689, + 1695, "[friends_updates!]!" ] } ], "update_game_server_nodes": [ - 1716, + 1722, { "_append": [ - 1701 + 1707 ], "_delete_at_path": [ - 1707 + 1713 ], "_delete_elem": [ - 1708 + 1714 ], "_delete_key": [ - 1709 + 1715 ], "_inc": [ - 1710 + 1716 ], "_prepend": [ - 1721 + 1727 ], "_set": [ - 1725 + 1731 ], "where": [ - 1705, + 1711, "game_server_nodes_bool_exp!" ] } ], "update_game_server_nodes_by_pk": [ - 1693, + 1699, { "_append": [ - 1701 + 1707 ], "_delete_at_path": [ - 1707 + 1713 ], "_delete_elem": [ - 1708 + 1714 ], "_delete_key": [ - 1709 + 1715 ], "_inc": [ - 1710 + 1716 ], "_prepend": [ - 1721 + 1727 ], "_set": [ - 1725 + 1731 ], "pk_columns": [ - 1720, + 1726, "game_server_nodes_pk_columns_input!" ] } ], "update_game_server_nodes_many": [ - 1716, + 1722, { "updates": [ - 1737, + 1743, "[game_server_nodes_updates!]!" ] } ], "update_game_versions": [ - 1758, + 1764, { "_append": [ - 1747 + 1753 ], "_delete_at_path": [ - 1751 + 1757 ], "_delete_elem": [ - 1752 + 1758 ], "_delete_key": [ - 1753 + 1759 ], "_inc": [ - 1754 + 1760 ], "_prepend": [ - 1763 + 1769 ], "_set": [ - 1765 + 1771 ], "where": [ - 1749, + 1755, "game_versions_bool_exp!" ] } ], "update_game_versions_by_pk": [ - 1744, + 1750, { "_append": [ - 1747 + 1753 ], "_delete_at_path": [ - 1751 + 1757 ], "_delete_elem": [ - 1752 + 1758 ], "_delete_key": [ - 1753 + 1759 ], "_inc": [ - 1754 + 1760 ], "_prepend": [ - 1763 + 1769 ], "_set": [ - 1765 + 1771 ], "pk_columns": [ - 1762, + 1768, "game_versions_pk_columns_input!" ] } ], "update_game_versions_many": [ - 1758, + 1764, { "updates": [ - 1773, + 1779, "[game_versions_updates!]!" ] } ], "update_gamedata_signature_validations": [ - 1791, + 1797, { "_append": [ - 1780 + 1786 ], "_delete_at_path": [ - 1784 + 1790 ], "_delete_elem": [ - 1785 + 1791 ], "_delete_key": [ - 1786 + 1792 ], "_inc": [ - 1787 + 1793 ], "_prepend": [ - 1795 + 1801 ], "_set": [ - 1797 + 1803 ], "where": [ - 1782, + 1788, "gamedata_signature_validations_bool_exp!" ] } ], "update_gamedata_signature_validations_by_pk": [ - 1777, + 1783, { "_append": [ - 1780 + 1786 ], "_delete_at_path": [ - 1784 + 1790 ], "_delete_elem": [ - 1785 + 1791 ], "_delete_key": [ - 1786 + 1792 ], "_inc": [ - 1787 + 1793 ], "_prepend": [ - 1795 + 1801 ], "_set": [ - 1797 + 1803 ], "pk_columns": [ - 1794, + 1800, "gamedata_signature_validations_pk_columns_input!" ] } ], "update_gamedata_signature_validations_many": [ - 1791, + 1797, { "updates": [ - 1805, + 1811, "[gamedata_signature_validations_updates!]!" ] } ], "update_leaderboard_entries": [ - 1829, + 1835, { "_inc": [ - 1825 + 1831 ], "_set": [ - 1832 + 1838 ], "where": [ - 1824, + 1830, "leaderboard_entries_bool_exp!" ] } ], "update_leaderboard_entries_many": [ - 1829, + 1835, { "updates": [ - 1839, + 1845, "[leaderboard_entries_updates!]!" ] } ], "update_league_divisions": [ - 1854, + 1860, { "_inc": [ - 1850 + 1856 ], "_set": [ - 1860 + 1866 ], "where": [ - 1848, + 1854, "league_divisions_bool_exp!" ] } ], "update_league_divisions_by_pk": [ - 1844, + 1850, { "_inc": [ - 1850 + 1856 ], "_set": [ - 1860 + 1866 ], "pk_columns": [ - 1858, + 1864, "league_divisions_pk_columns_input!" ] } ], "update_league_divisions_many": [ - 1854, + 1860, { "updates": [ - 1868, + 1874, "[league_divisions_updates!]!" ] } ], "update_league_match_weeks": [ - 1889, + 1895, { "_inc": [ - 1883 + 1889 ], "_set": [ - 1894 + 1900 ], "where": [ - 1881, + 1887, "league_match_weeks_bool_exp!" ] } ], "update_league_match_weeks_by_pk": [ - 1872, + 1878, { "_inc": [ - 1883 + 1889 ], "_set": [ - 1894 + 1900 ], "pk_columns": [ - 1892, + 1898, "league_match_weeks_pk_columns_input!" ] } ], "update_league_match_weeks_many": [ - 1889, + 1895, { "updates": [ - 1906, + 1912, "[league_match_weeks_updates!]!" ] } ], "update_league_relegation_playoffs": [ - 1930, + 1936, { "_inc": [ - 1924 + 1930 ], "_set": [ - 1935 + 1941 ], "where": [ - 1922, + 1928, "league_relegation_playoffs_bool_exp!" ] } ], "update_league_relegation_playoffs_by_pk": [ - 1913, + 1919, { "_inc": [ - 1924 + 1930 ], "_set": [ - 1935 + 1941 ], "pk_columns": [ - 1933, + 1939, "league_relegation_playoffs_pk_columns_input!" ] } ], "update_league_relegation_playoffs_many": [ - 1930, + 1936, { "updates": [ - 1947, + 1953, "[league_relegation_playoffs_updates!]!" ] } ], "update_league_scheduling_proposals": [ - 1971, + 1977, { "_inc": [ - 1965 + 1971 ], "_set": [ - 1976 + 1982 ], "where": [ - 1963, + 1969, "league_scheduling_proposals_bool_exp!" ] } ], "update_league_scheduling_proposals_by_pk": [ - 1954, + 1960, { "_inc": [ - 1965 + 1971 ], "_set": [ - 1976 + 1982 ], "pk_columns": [ - 1974, + 1980, "league_scheduling_proposals_pk_columns_input!" ] } ], "update_league_scheduling_proposals_many": [ - 1971, + 1977, { "updates": [ - 1988, + 1994, "[league_scheduling_proposals_updates!]!" ] } ], "update_league_season_divisions": [ - 2009, + 2015, { "_set": [ - 2015 + 2021 ], "where": [ - 2002, + 2008, "league_season_divisions_bool_exp!" ] } ], "update_league_season_divisions_by_pk": [ - 1995, + 2001, { "_set": [ - 2015 + 2021 ], "pk_columns": [ - 2013, + 2019, "league_season_divisions_pk_columns_input!" ] } ], "update_league_season_divisions_many": [ - 2009, + 2015, { "updates": [ - 2019, + 2025, "[league_season_divisions_updates!]!" ] } ], "update_league_seasons": [ - 2034, + 2040, { "_append": [ - 2023 + 2029 ], "_delete_at_path": [ - 2027 + 2033 ], "_delete_elem": [ - 2028 + 2034 ], "_delete_key": [ - 2029 + 2035 ], "_inc": [ - 2030 + 2036 ], "_prepend": [ - 2039 + 2045 ], "_set": [ - 2041 + 2047 ], "where": [ - 2025, + 2031, "league_seasons_bool_exp!" ] } ], "update_league_seasons_by_pk": [ - 2020, + 2026, { "_append": [ - 2023 + 2029 ], "_delete_at_path": [ - 2027 + 2033 ], "_delete_elem": [ - 2028 + 2034 ], "_delete_key": [ - 2029 + 2035 ], "_inc": [ - 2030 + 2036 ], "_prepend": [ - 2039 + 2045 ], "_set": [ - 2041 + 2047 ], "pk_columns": [ - 2038, + 2044, "league_seasons_pk_columns_input!" ] } ], "update_league_seasons_many": [ - 2034, + 2040, { "updates": [ - 2049, + 2055, "[league_seasons_updates!]!" ] } ], "update_league_team_movements": [ - 2070, + 2076, { "_inc": [ - 2064 + 2070 ], "_set": [ - 2075 + 2081 ], "where": [ - 2062, + 2068, "league_team_movements_bool_exp!" ] } ], "update_league_team_movements_by_pk": [ - 2053, + 2059, { "_inc": [ - 2064 + 2070 ], "_set": [ - 2075 + 2081 ], "pk_columns": [ - 2073, + 2079, "league_team_movements_pk_columns_input!" ] } ], "update_league_team_movements_many": [ - 2070, + 2076, { "updates": [ - 2087, + 2093, "[league_team_movements_updates!]!" ] } ], "update_league_team_rosters": [ - 2111, + 2117, { "_inc": [ - 2105 + 2111 ], "_set": [ - 2116 + 2122 ], "where": [ - 2103, + 2109, "league_team_rosters_bool_exp!" ] } ], "update_league_team_rosters_by_pk": [ - 2094, + 2100, { "_inc": [ - 2105 + 2111 ], "_set": [ - 2116 + 2122 ], "pk_columns": [ - 2114, + 2120, "league_team_rosters_pk_columns_input!" ] } ], "update_league_team_rosters_many": [ - 2111, + 2117, { "updates": [ - 2128, + 2134, "[league_team_rosters_updates!]!" ] } ], "update_league_team_seasons": [ - 2152, + 2158, { "_inc": [ - 2146 + 2152 ], "_set": [ - 2158 + 2164 ], "where": [ - 2144, + 2150, "league_team_seasons_bool_exp!" ] } ], "update_league_team_seasons_by_pk": [ - 2135, + 2141, { "_inc": [ - 2146 + 2152 ], "_set": [ - 2158 + 2164 ], "pk_columns": [ - 2156, + 2162, "league_team_seasons_pk_columns_input!" ] } ], "update_league_team_seasons_many": [ - 2152, + 2158, { "updates": [ - 2170, + 2176, "[league_team_seasons_updates!]!" ] } ], "update_league_teams": [ - 2185, + 2191, { "_set": [ - 2191 + 2197 ], "where": [ - 2180, + 2186, "league_teams_bool_exp!" ] } ], "update_league_teams_by_pk": [ - 2177, + 2183, { "_set": [ - 2191 + 2197 ], "pk_columns": [ - 2189, + 2195, "league_teams_pk_columns_input!" ] } ], "update_league_teams_many": [ - 2185, + 2191, { "updates": [ - 2195, + 2201, "[league_teams_updates!]!" ] } ], "update_lobbies": [ - 2204, + 2210, { "_set": [ - 2210 + 2216 ], "where": [ - 2199, + 2205, "lobbies_bool_exp!" ] } ], "update_lobbies_by_pk": [ - 2196, + 2202, { "_set": [ - 2210 + 2216 ], "pk_columns": [ - 2208, + 2214, "lobbies_pk_columns_input!" ] } ], "update_lobbies_many": [ - 2204, + 2210, { "updates": [ - 2214, + 2220, "[lobbies_updates!]!" ] } ], "update_lobby_players": [ - 2234, + 2240, { "_inc": [ - 2228 + 2234 ], "_set": [ - 2241 + 2247 ], "where": [ - 2226, + 2232, "lobby_players_bool_exp!" ] } ], "update_lobby_players_by_pk": [ - 2215, + 2221, { "_inc": [ - 2228 + 2234 ], "_set": [ - 2241 + 2247 ], "pk_columns": [ - 2237, + 2243, "lobby_players_pk_columns_input!" ] } ], "update_lobby_players_many": [ - 2234, + 2240, { "updates": [ - 2253, + 2259, "[lobby_players_updates!]!" ] } ], "update_map_pools": [ - 2268, + 2274, { "_set": [ - 2274 + 2280 ], "where": [ - 2263, + 2269, "map_pools_bool_exp!" ] } ], "update_map_pools_by_pk": [ - 2260, + 2266, { "_set": [ - 2274 + 2280 ], "pk_columns": [ - 2272, + 2278, "map_pools_pk_columns_input!" ] } ], "update_map_pools_many": [ - 2268, + 2274, { "updates": [ - 2278, + 2284, "[map_pools_updates!]!" ] } ], "update_maps": [ - 2295, + 2301, { "_set": [ - 2303 + 2309 ], "where": [ - 2288, + 2294, "maps_bool_exp!" ] } ], "update_maps_by_pk": [ - 2279, + 2285, { "_set": [ - 2303 + 2309 ], "pk_columns": [ - 2299, + 2305, "maps_pk_columns_input!" ] } ], "update_maps_many": [ - 2295, + 2301, { "updates": [ - 2307, + 2313, "[maps_updates!]!" ] } ], "update_match_clips": [ - 2325, + 2331, { "_inc": [ - 2319 + 2325 ], "_set": [ - 2331 + 2337 ], "where": [ - 2317, + 2323, "match_clips_bool_exp!" ] } ], "update_match_clips_by_pk": [ - 2308, + 2314, { "_inc": [ - 2319 + 2325 ], "_set": [ - 2331 + 2337 ], "pk_columns": [ - 2329, + 2335, "match_clips_pk_columns_input!" ] } ], "update_match_clips_many": [ - 2325, + 2331, { "updates": [ - 2343, + 2349, "[match_clips_updates!]!" ] } ], "update_match_demo_sessions": [ - 2371, + 2377, { "_append": [ - 2356 + 2362 ], "_delete_at_path": [ - 2362 + 2368 ], "_delete_elem": [ - 2363 + 2369 ], "_delete_key": [ - 2364 + 2370 ], "_inc": [ - 2365 + 2371 ], "_prepend": [ - 2375 + 2381 ], "_set": [ - 2377 + 2383 ], "where": [ - 2360, + 2366, "match_demo_sessions_bool_exp!" ] } ], "update_match_demo_sessions_by_pk": [ - 2350, + 2356, { "_append": [ - 2356 + 2362 ], "_delete_at_path": [ - 2362 + 2368 ], "_delete_elem": [ - 2363 + 2369 ], "_delete_key": [ - 2364 + 2370 ], "_inc": [ - 2365 + 2371 ], "_prepend": [ - 2375 + 2381 ], "_set": [ - 2377 + 2383 ], "pk_columns": [ - 2374, + 2380, "match_demo_sessions_pk_columns_input!" ] } ], "update_match_demo_sessions_many": [ - 2371, + 2377, { "updates": [ - 2389, + 2395, "[match_demo_sessions_updates!]!" ] } ], "update_match_lineup_players": [ - 2415, + 2421, { "_inc": [ - 2409 + 2415 ], "_set": [ - 2422 + 2428 ], "where": [ - 2407, + 2413, "match_lineup_players_bool_exp!" ] } ], "update_match_lineup_players_by_pk": [ - 2396, + 2402, { "_inc": [ - 2409 + 2415 ], "_set": [ - 2422 + 2428 ], "pk_columns": [ - 2418, + 2424, "match_lineup_players_pk_columns_input!" ] } ], "update_match_lineup_players_many": [ - 2415, + 2421, { "updates": [ - 2434, + 2440, "[match_lineup_players_updates!]!" ] } ], "update_match_lineups": [ - 2458, + 2464, { "_inc": [ - 2452 + 2458 ], "_set": [ - 2464 + 2470 ], "where": [ - 2450, + 2456, "match_lineups_bool_exp!" ] } ], "update_match_lineups_by_pk": [ - 2441, + 2447, { "_inc": [ - 2452 + 2458 ], "_set": [ - 2464 + 2470 ], "pk_columns": [ - 2462, + 2468, "match_lineups_pk_columns_input!" ] } ], "update_match_lineups_many": [ - 2458, + 2464, { "updates": [ - 2476, + 2482, "[match_lineups_updates!]!" ] } ], "update_match_map_demos": [ - 2506, + 2512, { "_append": [ - 2491 + 2497 ], "_delete_at_path": [ - 2497 + 2503 ], "_delete_elem": [ - 2498 + 2504 ], "_delete_key": [ - 2499 + 2505 ], "_inc": [ - 2500 + 2506 ], "_prepend": [ - 2511 + 2517 ], "_set": [ - 2515 + 2521 ], "where": [ - 2495, + 2501, "match_map_demos_bool_exp!" ] } ], "update_match_map_demos_by_pk": [ - 2483, + 2489, { "_append": [ - 2491 + 2497 ], "_delete_at_path": [ - 2497 + 2503 ], "_delete_elem": [ - 2498 + 2504 ], "_delete_key": [ - 2499 + 2505 ], "_inc": [ - 2500 + 2506 ], "_prepend": [ - 2511 + 2517 ], "_set": [ - 2515 + 2521 ], "pk_columns": [ - 2510, + 2516, "match_map_demos_pk_columns_input!" ] } ], "update_match_map_demos_many": [ - 2506, + 2512, { "updates": [ - 2527, + 2533, "[match_map_demos_updates!]!" ] } ], "update_match_map_rounds": [ - 2551, + 2557, { "_inc": [ - 2545 + 2551 ], "_set": [ - 2556 + 2562 ], "where": [ - 2543, + 2549, "match_map_rounds_bool_exp!" ] } ], "update_match_map_rounds_by_pk": [ - 2534, + 2540, { "_inc": [ - 2545 + 2551 ], "_set": [ - 2556 + 2562 ], "pk_columns": [ - 2554, + 2560, "match_map_rounds_pk_columns_input!" ] } ], "update_match_map_rounds_many": [ - 2551, + 2557, { "updates": [ - 2568, + 2574, "[match_map_rounds_updates!]!" ] } ], "update_match_map_veto_picks": [ - 2589, + 2595, { "_set": [ - 2594 + 2600 ], "where": [ - 2582, + 2588, "match_map_veto_picks_bool_exp!" ] } ], "update_match_map_veto_picks_by_pk": [ - 2575, + 2581, { "_set": [ - 2594 + 2600 ], "pk_columns": [ - 2592, + 2598, "match_map_veto_picks_pk_columns_input!" ] } ], "update_match_map_veto_picks_many": [ - 2589, + 2595, { "updates": [ - 2598, + 2604, "[match_map_veto_picks_updates!]!" ] } ], "update_match_maps": [ - 2616, + 2622, { "_inc": [ - 2610 + 2616 ], "_set": [ - 2622 + 2628 ], "where": [ - 2608, + 2614, "match_maps_bool_exp!" ] } ], "update_match_maps_by_pk": [ - 2599, + 2605, { "_inc": [ - 2610 + 2616 ], "_set": [ - 2622 + 2628 ], "pk_columns": [ - 2620, + 2626, "match_maps_pk_columns_input!" ] } ], "update_match_maps_many": [ - 2616, + 2622, { "updates": [ - 2634, + 2640, "[match_maps_updates!]!" ] } ], "update_match_options": [ - 2651, + 2657, { "_inc": [ - 2647 + 2653 ], "_set": [ - 2657 + 2663 ], "where": [ - 2645, + 2651, "match_options_bool_exp!" ] } ], "update_match_options_by_pk": [ - 2641, + 2647, { "_inc": [ - 2647 + 2653 ], "_set": [ - 2657 + 2663 ], "pk_columns": [ - 2655, + 2661, "match_options_pk_columns_input!" ] } ], "update_match_options_many": [ - 2651, + 2657, { "updates": [ - 2665, + 2671, "[match_options_updates!]!" ] } ], "update_match_region_veto_picks": [ - 2683, + 2689, { "_set": [ - 2688 + 2694 ], "where": [ - 2676, + 2682, "match_region_veto_picks_bool_exp!" ] } ], "update_match_region_veto_picks_by_pk": [ - 2669, + 2675, { "_set": [ - 2688 + 2694 ], "pk_columns": [ - 2686, + 2692, "match_region_veto_picks_pk_columns_input!" ] } ], "update_match_region_veto_picks_many": [ - 2683, + 2689, { "updates": [ - 2692, + 2698, "[match_region_veto_picks_updates!]!" ] } ], "update_match_streams": [ - 2716, + 2722, { "_append": [ - 2701 + 2707 ], "_delete_at_path": [ - 2707 + 2713 ], "_delete_elem": [ - 2708 + 2714 ], "_delete_key": [ - 2709 + 2715 ], "_inc": [ - 2710 + 2716 ], "_prepend": [ - 2720 + 2726 ], "_set": [ - 2724 + 2730 ], "where": [ - 2705, + 2711, "match_streams_bool_exp!" ] } ], "update_match_streams_by_pk": [ - 2693, + 2699, { "_append": [ - 2701 + 2707 ], "_delete_at_path": [ - 2707 + 2713 ], "_delete_elem": [ - 2708 + 2714 ], "_delete_key": [ - 2709 + 2715 ], "_inc": [ - 2710 + 2716 ], "_prepend": [ - 2720 + 2726 ], "_set": [ - 2724 + 2730 ], "pk_columns": [ - 2719, + 2725, "match_streams_pk_columns_input!" ] } ], "update_match_streams_many": [ - 2716, + 2722, { "updates": [ - 2736, + 2742, "[match_streams_updates!]!" ] } ], "update_match_type_cfgs": [ - 2751, + 2757, { "_set": [ - 2756 + 2762 ], "where": [ - 2746, + 2752, "match_type_cfgs_bool_exp!" ] } ], "update_match_type_cfgs_by_pk": [ - 2743, + 2749, { "_set": [ - 2756 + 2762 ], "pk_columns": [ - 2754, + 2760, "match_type_cfgs_pk_columns_input!" ] } ], "update_match_type_cfgs_many": [ - 2751, + 2757, { "updates": [ - 2760, + 2766, "[match_type_cfgs_updates!]!" ] } ], "update_matches": [ - 2778, + 2784, { "_inc": [ - 2772 + 2778 ], "_set": [ - 2784 + 2790 ], "where": [ - 2770, + 2776, "matches_bool_exp!" ] } ], "update_matches_by_pk": [ - 2761, + 2767, { "_inc": [ - 2772 + 2778 ], "_set": [ - 2784 + 2790 ], "pk_columns": [ - 2782, + 2788, "matches_pk_columns_input!" ] } ], "update_matches_many": [ - 2778, + 2784, { "updates": [ - 2796, + 2802, "[matches_updates!]!" ] } ], "update_migration_hashes_hashes": [ - 2811, + 2817, { "_set": [ - 2816 + 2822 ], "where": [ - 2806, + 2812, "migration_hashes_hashes_bool_exp!" ] } ], "update_migration_hashes_hashes_by_pk": [ - 2803, + 2809, { "_set": [ - 2816 + 2822 ], "pk_columns": [ - 2814, + 2820, "migration_hashes_hashes_pk_columns_input!" ] } ], "update_migration_hashes_hashes_many": [ - 2811, + 2817, { "updates": [ - 2820, + 2826, "[migration_hashes_hashes_updates!]!" ] } ], "update_my_friends": [ - 2843, + 2849, { "_append": [ - 2829 + 2835 ], "_delete_at_path": [ - 2834 + 2840 ], "_delete_elem": [ - 2835 + 2841 ], "_delete_key": [ - 2836 + 2842 ], "_inc": [ - 2837 + 2843 ], "_prepend": [ - 2845 + 2851 ], "_set": [ - 2849 + 2855 ], "where": [ - 2833, + 2839, "my_friends_bool_exp!" ] } ], "update_my_friends_many": [ - 2843, + 2849, { "updates": [ - 2860, + 2866, "[my_friends_updates!]!" ] } ], "update_news_articles": [ - 2877, + 2883, { "_inc": [ - 2873 + 2879 ], "_set": [ - 2882 + 2888 ], "where": [ - 2871, + 2877, "news_articles_bool_exp!" ] } ], "update_news_articles_by_pk": [ - 2867, + 2873, { "_inc": [ - 2873 + 2879 ], "_set": [ - 2882 + 2888 ], "pk_columns": [ - 2880, + 2886, "news_articles_pk_columns_input!" ] } ], "update_news_articles_many": [ - 2877, + 2883, { "updates": [ - 2890, + 2896, "[news_articles_updates!]!" ] } ], "update_notifications": [ - 2917, + 2923, { "_append": [ - 2902 + 2908 ], "_delete_at_path": [ - 2908 + 2914 ], "_delete_elem": [ - 2909 + 2915 ], "_delete_key": [ - 2910 + 2916 ], "_inc": [ - 2911 + 2917 ], "_prepend": [ - 2921 + 2927 ], "_set": [ - 2925 + 2931 ], "where": [ - 2906, + 2912, "notifications_bool_exp!" ] } ], "update_notifications_by_pk": [ - 2894, + 2900, { "_append": [ - 2902 + 2908 ], "_delete_at_path": [ - 2908 + 2914 ], "_delete_elem": [ - 2909 + 2915 ], "_delete_key": [ - 2910 + 2916 ], "_inc": [ - 2911 + 2917 ], "_prepend": [ - 2921 + 2927 ], "_set": [ - 2925 + 2931 ], "pk_columns": [ - 2920, + 2926, "notifications_pk_columns_input!" ] } ], "update_notifications_many": [ - 2917, + 2923, { "updates": [ - 2937, + 2943, "[notifications_updates!]!" ] } ], "update_pending_match_import_players": [ - 2964, + 2970, { "_inc": [ - 2958 + 2964 ], "_set": [ - 2969 + 2975 ], "where": [ - 2956, + 2962, "pending_match_import_players_bool_exp!" ] } ], "update_pending_match_import_players_by_pk": [ - 2947, + 2953, { "_inc": [ - 2958 + 2964 ], "_set": [ - 2969 + 2975 ], "pk_columns": [ - 2967, + 2973, "pending_match_import_players_pk_columns_input!" ] } ], "update_pending_match_import_players_many": [ - 2964, + 2970, { "updates": [ - 2981, + 2987, "[pending_match_import_players_updates!]!" ] } ], "update_pending_match_imports": [ - 2998, + 3004, { "_inc": [ - 2994 + 3000 ], "_set": [ - 3004 + 3010 ], "where": [ - 2992, + 2998, "pending_match_imports_bool_exp!" ] } ], "update_pending_match_imports_by_pk": [ - 2988, + 2994, { "_inc": [ - 2994 + 3000 ], "_set": [ - 3004 + 3010 ], "pk_columns": [ - 3002, + 3008, "pending_match_imports_pk_columns_input!" ] } ], "update_pending_match_imports_many": [ - 2998, + 3004, { "updates": [ - 3012, + 3018, "[pending_match_imports_updates!]!" ] } ], "update_player_aim_stats_demo": [ - 3026, + 3032, { "_inc": [ - 3022 + 3028 ], "_set": [ - 3031 + 3037 ], "where": [ - 3020, + 3026, "player_aim_stats_demo_bool_exp!" ] } ], "update_player_aim_stats_demo_by_pk": [ - 3016, + 3022, { "_inc": [ - 3022 + 3028 ], "_set": [ - 3031 + 3037 ], "pk_columns": [ - 3029, + 3035, "player_aim_stats_demo_pk_columns_input!" ] } ], "update_player_aim_stats_demo_many": [ - 3026, + 3032, { "updates": [ - 3039, + 3045, "[player_aim_stats_demo_updates!]!" ] } ], "update_player_aim_weapon_stats": [ - 3060, + 3066, { "_inc": [ - 3054 + 3060 ], "_set": [ - 3065 + 3071 ], "where": [ - 3052, + 3058, "player_aim_weapon_stats_bool_exp!" ] } ], "update_player_aim_weapon_stats_by_pk": [ - 3043, + 3049, { "_inc": [ - 3054 + 3060 ], "_set": [ - 3065 + 3071 ], "pk_columns": [ - 3063, + 3069, "player_aim_weapon_stats_pk_columns_input!" ] } ], "update_player_aim_weapon_stats_many": [ - 3060, + 3066, { "updates": [ - 3077, + 3083, "[player_aim_weapon_stats_updates!]!" ] } ], "update_player_assists": [ - 3103, + 3109, { "_inc": [ - 3097 + 3103 ], "_set": [ - 3110 + 3116 ], "where": [ - 3095, + 3101, "player_assists_bool_exp!" ] } ], "update_player_assists_by_pk": [ - 3084, + 3090, { "_inc": [ - 3097 + 3103 ], "_set": [ - 3110 + 3116 ], "pk_columns": [ - 3106, + 3112, "player_assists_pk_columns_input!" ] } ], "update_player_assists_many": [ - 3103, + 3109, { "updates": [ - 3122, + 3128, "[player_assists_updates!]!" ] } ], "update_player_damages": [ - 3164, + 3170, { "_inc": [ - 3158 + 3164 ], "_set": [ - 3169 + 3175 ], "where": [ - 3156, + 3162, "player_damages_bool_exp!" ] } ], "update_player_damages_by_pk": [ - 3147, + 3153, { "_inc": [ - 3158 + 3164 ], "_set": [ - 3169 + 3175 ], "pk_columns": [ - 3167, + 3173, "player_damages_pk_columns_input!" ] } ], "update_player_damages_many": [ - 3164, + 3170, { "updates": [ - 3181, + 3187, "[player_damages_updates!]!" ] } ], "update_player_elo": [ - 3198, + 3204, { "_inc": [ - 3194 + 3200 ], "_set": [ - 3203 + 3209 ], "where": [ - 3192, + 3198, "player_elo_bool_exp!" ] } ], "update_player_elo_by_pk": [ - 3188, + 3194, { "_inc": [ - 3194 + 3200 ], "_set": [ - 3203 + 3209 ], "pk_columns": [ - 3201, + 3207, "player_elo_pk_columns_input!" ] } ], "update_player_elo_many": [ - 3198, + 3204, { "updates": [ - 3211, + 3217, "[player_elo_updates!]!" ] } ], "update_player_faceit_rank_history": [ - 3232, + 3238, { "_inc": [ - 3226 + 3232 ], "_set": [ - 3237 + 3243 ], "where": [ - 3224, + 3230, "player_faceit_rank_history_bool_exp!" ] } ], "update_player_faceit_rank_history_by_pk": [ - 3215, + 3221, { "_inc": [ - 3226 + 3232 ], "_set": [ - 3237 + 3243 ], "pk_columns": [ - 3235, + 3241, "player_faceit_rank_history_pk_columns_input!" ] } ], "update_player_faceit_rank_history_many": [ - 3232, + 3238, { "updates": [ - 3249, + 3255, "[player_faceit_rank_history_updates!]!" ] } ], "update_player_flashes": [ - 3275, + 3281, { "_inc": [ - 3269 + 3275 ], "_set": [ - 3282 + 3288 ], "where": [ - 3267, + 3273, "player_flashes_bool_exp!" ] } ], "update_player_flashes_by_pk": [ - 3256, + 3262, { "_inc": [ - 3269 + 3275 ], "_set": [ - 3282 + 3288 ], "pk_columns": [ - 3278, + 3284, "player_flashes_pk_columns_input!" ] } ], "update_player_flashes_many": [ - 3275, + 3281, { "updates": [ - 3294, + 3300, "[player_flashes_updates!]!" ] } ], "update_player_kills": [ - 3361, + 3367, { "_inc": [ - 3355 + 3361 ], "_set": [ - 3368 + 3374 ], "where": [ - 3312, + 3318, "player_kills_bool_exp!" ] } ], "update_player_kills_by_pk": [ - 3301, + 3307, { "_inc": [ - 3355 + 3361 ], "_set": [ - 3368 + 3374 ], "pk_columns": [ - 3364, + 3370, "player_kills_pk_columns_input!" ] } ], "update_player_kills_by_weapon": [ - 3330, + 3336, { "_inc": [ - 3324 + 3330 ], "_set": [ - 3335 + 3341 ], "where": [ - 3322, + 3328, "player_kills_by_weapon_bool_exp!" ] } ], "update_player_kills_by_weapon_by_pk": [ - 3313, + 3319, { "_inc": [ - 3324 + 3330 ], "_set": [ - 3335 + 3341 ], "pk_columns": [ - 3333, + 3339, "player_kills_by_weapon_pk_columns_input!" ] } ], "update_player_kills_by_weapon_many": [ - 3330, + 3336, { "updates": [ - 3347, + 3353, "[player_kills_by_weapon_updates!]!" ] } ], "update_player_kills_many": [ - 3361, + 3367, { "updates": [ - 3380, + 3386, "[player_kills_updates!]!" ] } ], "update_player_leaderboard_rank": [ - 3396, + 3402, { "_inc": [ - 3392 + 3398 ], "_set": [ - 3399 + 3405 ], "where": [ - 3391, + 3397, "player_leaderboard_rank_bool_exp!" ] } ], "update_player_leaderboard_rank_many": [ - 3396, + 3402, { "updates": [ - 3406, + 3412, "[player_leaderboard_rank_updates!]!" ] } ], "update_player_match_map_stats": [ - 3427, + 3433, { "_inc": [ - 3421 + 3427 ], "_set": [ - 3432 + 3438 ], "where": [ - 3419, + 3425, "player_match_map_stats_bool_exp!" ] } ], "update_player_match_map_stats_by_pk": [ - 3410, + 3416, { "_inc": [ - 3421 + 3427 ], "_set": [ - 3432 + 3438 ], "pk_columns": [ - 3430, + 3436, "player_match_map_stats_pk_columns_input!" ] } ], "update_player_match_map_stats_many": [ - 3427, + 3433, { "updates": [ - 3444, + 3450, "[player_match_map_stats_updates!]!" ] } ], "update_player_objectives": [ - 3519, + 3525, { "_inc": [ - 3513 + 3519 ], "_set": [ - 3524 + 3530 ], "where": [ - 3511, + 3517, "player_objectives_bool_exp!" ] } ], "update_player_objectives_by_pk": [ - 3502, + 3508, { "_inc": [ - 3513 + 3519 ], "_set": [ - 3524 + 3530 ], "pk_columns": [ - 3522, + 3528, "player_objectives_pk_columns_input!" ] } ], "update_player_objectives_many": [ - 3519, + 3525, { "updates": [ - 3536, + 3542, "[player_objectives_updates!]!" ] } ], "update_player_premier_rank_history": [ - 3578, + 3584, { "_inc": [ - 3572 + 3578 ], "_set": [ - 3583 + 3589 ], "where": [ - 3570, + 3576, "player_premier_rank_history_bool_exp!" ] } ], "update_player_premier_rank_history_by_pk": [ - 3561, + 3567, { "_inc": [ - 3572 + 3578 ], "_set": [ - 3583 + 3589 ], "pk_columns": [ - 3581, + 3587, "player_premier_rank_history_pk_columns_input!" ] } ], "update_player_premier_rank_history_many": [ - 3578, + 3584, { "updates": [ - 3595, + 3601, "[player_premier_rank_history_updates!]!" ] } ], "update_player_sanctions": [ - 3619, + 3625, { "_inc": [ - 3613 + 3619 ], "_set": [ - 3624 + 3630 ], "where": [ - 3611, + 3617, "player_sanctions_bool_exp!" ] } ], "update_player_sanctions_by_pk": [ - 3602, + 3608, { "_inc": [ - 3613 + 3619 ], "_set": [ - 3624 + 3630 ], "pk_columns": [ - 3622, + 3628, "player_sanctions_pk_columns_input!" ] } ], "update_player_sanctions_many": [ - 3619, + 3625, { "updates": [ - 3636, + 3642, "[player_sanctions_updates!]!" ] } ], "update_player_season_stats": [ - 3670, + 3676, { "_inc": [ - 3664 + 3670 ], "_set": [ - 3683 + 3689 ], "where": [ - 3662, + 3668, "player_season_stats_bool_exp!" ] } ], "update_player_season_stats_by_pk": [ - 3643, + 3649, { "_inc": [ - 3664 + 3670 ], "_set": [ - 3683 + 3689 ], "pk_columns": [ - 3673, + 3679, "player_season_stats_pk_columns_input!" ] } ], "update_player_season_stats_many": [ - 3670, + 3676, { "updates": [ - 3695, + 3701, "[player_season_stats_updates!]!" ] } ], "update_player_stats": [ - 3712, + 3718, { "_inc": [ - 3708 + 3714 ], "_set": [ - 3718 + 3724 ], "where": [ - 3706, + 3712, "player_stats_bool_exp!" ] } ], "update_player_stats_by_pk": [ - 3702, + 3708, { "_inc": [ - 3708 + 3714 ], "_set": [ - 3718 + 3724 ], "pk_columns": [ - 3716, + 3722, "player_stats_pk_columns_input!" ] } ], "update_player_stats_many": [ - 3712, + 3718, { "updates": [ - 3726, + 3732, "[player_stats_updates!]!" ] } ], "update_player_steam_bot_friend": [ - 3744, + 3750, { "_append": [ - 3733 + 3739 ], "_delete_at_path": [ - 3737 + 3743 ], "_delete_elem": [ - 3738 + 3744 ], "_delete_key": [ - 3739 + 3745 ], "_inc": [ - 3740 + 3746 ], "_prepend": [ - 3748 + 3754 ], "_set": [ - 3750 + 3756 ], "where": [ - 3735, + 3741, "player_steam_bot_friend_bool_exp!" ] } ], "update_player_steam_bot_friend_by_pk": [ - 3730, + 3736, { "_append": [ - 3733 + 3739 ], "_delete_at_path": [ - 3737 + 3743 ], "_delete_elem": [ - 3738 + 3744 ], "_delete_key": [ - 3739 + 3745 ], "_inc": [ - 3740 + 3746 ], "_prepend": [ - 3748 + 3754 ], "_set": [ - 3750 + 3756 ], "pk_columns": [ - 3747, + 3753, "player_steam_bot_friend_pk_columns_input!" ] } ], "update_player_steam_bot_friend_many": [ - 3744, + 3750, { "updates": [ - 3758, + 3764, "[player_steam_bot_friend_updates!]!" ] } ], "update_player_steam_match_auth": [ - 3772, + 3778, { "_inc": [ - 3768 + 3774 ], "_set": [ - 3777 + 3783 ], "where": [ - 3766, + 3772, "player_steam_match_auth_bool_exp!" ] } ], "update_player_steam_match_auth_by_pk": [ - 3762, + 3768, { "_inc": [ - 3768 + 3774 ], "_set": [ - 3777 + 3783 ], "pk_columns": [ - 3775, + 3781, "player_steam_match_auth_pk_columns_input!" ] } ], "update_player_steam_match_auth_many": [ - 3772, + 3778, { "updates": [ - 3785, + 3791, "[player_steam_match_auth_updates!]!" ] } ], "update_player_unused_utility": [ - 3806, + 3812, { "_inc": [ - 3800 + 3806 ], "_set": [ - 3811 + 3817 ], "where": [ - 3798, + 3804, "player_unused_utility_bool_exp!" ] } ], "update_player_unused_utility_by_pk": [ - 3789, + 3795, { "_inc": [ - 3800 + 3806 ], "_set": [ - 3811 + 3817 ], "pk_columns": [ - 3809, + 3815, "player_unused_utility_pk_columns_input!" ] } ], "update_player_unused_utility_many": [ - 3806, + 3812, { "updates": [ - 3823, + 3829, "[player_unused_utility_updates!]!" ] } ], "update_player_utility": [ - 3847, + 3853, { "_inc": [ - 3841 + 3847 ], "_set": [ - 3852 + 3858 ], "where": [ - 3839, + 3845, "player_utility_bool_exp!" ] } ], "update_player_utility_by_pk": [ - 3830, + 3836, { "_inc": [ - 3841 + 3847 ], "_set": [ - 3852 + 3858 ], "pk_columns": [ - 3850, + 3856, "player_utility_pk_columns_input!" ] } ], "update_player_utility_many": [ - 3847, + 3853, { "updates": [ - 3864, + 3870, "[player_utility_updates!]!" ] } ], "update_players": [ - 3914, + 3920, { "_inc": [ - 3910 + 3916 ], "_set": [ - 3920 + 3926 ], "where": [ - 3908, + 3914, "players_bool_exp!" ] } ], "update_players_by_pk": [ - 3904, + 3910, { "_inc": [ - 3910 + 3916 ], "_set": [ - 3920 + 3926 ], "pk_columns": [ - 3918, + 3924, "players_pk_columns_input!" ] } ], "update_players_many": [ - 3914, + 3920, { "updates": [ - 3928, + 3934, "[players_updates!]!" ] } ], "update_plugin_versions": [ - 3942, + 3948, { "_inc": [ - 3938 + 3944 ], "_set": [ - 3947 + 3953 ], "where": [ - 3936, + 3942, "plugin_versions_bool_exp!" ] } ], "update_plugin_versions_by_pk": [ - 3932, + 3938, { "_inc": [ - 3938 + 3944 ], "_set": [ - 3947 + 3953 ], "pk_columns": [ - 3945, + 3951, "plugin_versions_pk_columns_input!" ] } ], "update_plugin_versions_many": [ - 3942, + 3948, { "updates": [ - 3955, + 3961, "[plugin_versions_updates!]!" ] } ], "update_seasons": [ - 3973, + 3979, { "_inc": [ - 3969 + 3975 ], "_set": [ - 3979 + 3985 ], "where": [ - 3967, + 3973, "seasons_bool_exp!" ] } ], "update_seasons_by_pk": [ - 3963, + 3969, { "_inc": [ - 3969 + 3975 ], "_set": [ - 3979 + 3985 ], "pk_columns": [ - 3977, + 3983, "seasons_pk_columns_input!" ] } ], "update_seasons_many": [ - 3973, + 3979, { "updates": [ - 3987, + 3993, "[seasons_updates!]!" ] } ], "update_server_regions": [ - 4000, + 4006, { "_set": [ - 4006 + 4012 ], "where": [ - 3995, + 4001, "server_regions_bool_exp!" ] } ], "update_server_regions_by_pk": [ - 3991, + 3997, { "_set": [ - 4006 + 4012 ], "pk_columns": [ - 4004, + 4010, "server_regions_pk_columns_input!" ] } ], "update_server_regions_many": [ - 4000, + 4006, { "updates": [ - 4014, + 4020, "[server_regions_updates!]!" ] } ], "update_servers": [ - 4037, + 4043, { "_inc": [ - 4031 + 4037 ], "_set": [ - 4045 + 4051 ], "where": [ - 4029, + 4035, "servers_bool_exp!" ] } ], "update_servers_by_pk": [ - 4018, + 4024, { "_inc": [ - 4031 + 4037 ], "_set": [ - 4045 + 4051 ], "pk_columns": [ - 4041, + 4047, "servers_pk_columns_input!" ] } ], "update_servers_many": [ - 4037, + 4043, { "updates": [ - 4057, + 4063, "[servers_updates!]!" ] } ], "update_settings": [ - 4072, + 4078, { "_set": [ - 4077 + 4083 ], "where": [ - 4067, + 4073, "settings_bool_exp!" ] } ], "update_settings_by_pk": [ - 4064, + 4070, { "_set": [ - 4077 + 4083 ], "pk_columns": [ - 4075, + 4081, "settings_pk_columns_input!" ] } ], "update_settings_many": [ - 4072, + 4078, { "updates": [ - 4081, + 4087, "[settings_updates!]!" ] } ], "update_steam_account_claims": [ - 4098, + 4104, { "_set": [ - 4103 + 4109 ], "where": [ - 4091, + 4097, "steam_account_claims_bool_exp!" ] } ], "update_steam_account_claims_by_pk": [ - 4084, + 4090, { "_set": [ - 4103 + 4109 ], "pk_columns": [ - 4101, + 4107, "steam_account_claims_pk_columns_input!" ] } ], "update_steam_account_claims_many": [ - 4098, + 4104, { "updates": [ - 4107, + 4113, "[steam_account_claims_updates!]!" ] } ], "update_steam_accounts": [ - 4118, + 4124, { "_inc": [ - 4114 + 4120 ], "_set": [ - 4124 + 4130 ], "where": [ - 4112, + 4118, "steam_accounts_bool_exp!" ] } ], "update_steam_accounts_by_pk": [ - 4108, + 4114, { "_inc": [ - 4114 + 4120 ], "_set": [ - 4124 + 4130 ], "pk_columns": [ - 4122, + 4128, "steam_accounts_pk_columns_input!" ] } ], "update_steam_accounts_many": [ - 4118, + 4124, { "updates": [ - 4132, + 4138, "[steam_accounts_updates!]!" ] } ], "update_system_alerts": [ - 4146, + 4152, { "_inc": [ - 4142 + 4148 ], "_set": [ - 4151 + 4157 ], "where": [ - 4140, + 4146, "system_alerts_bool_exp!" ] } ], "update_system_alerts_by_pk": [ - 4136, + 4142, { "_inc": [ - 4142 + 4148 ], "_set": [ - 4151 + 4157 ], "pk_columns": [ - 4149, + 4155, "system_alerts_pk_columns_input!" ] } ], "update_system_alerts_many": [ - 4146, + 4152, { "updates": [ - 4159, + 4165, "[system_alerts_updates!]!" ] } ], "update_team_invites": [ - 4180, + 4186, { "_inc": [ - 4174 + 4180 ], "_set": [ - 4185 + 4191 ], "where": [ - 4172, + 4178, "team_invites_bool_exp!" ] } ], "update_team_invites_by_pk": [ - 4163, + 4169, { "_inc": [ - 4174 + 4180 ], "_set": [ - 4185 + 4191 ], "pk_columns": [ - 4183, + 4189, "team_invites_pk_columns_input!" ] } ], "update_team_invites_many": [ - 4180, + 4186, { "updates": [ - 4197, + 4203, "[team_invites_updates!]!" ] } ], "update_team_roster": [ - 4223, + 4229, { "_inc": [ - 4217 + 4223 ], "_set": [ - 4230 + 4236 ], "where": [ - 4215, + 4221, "team_roster_bool_exp!" ] } ], "update_team_roster_by_pk": [ - 4204, + 4210, { "_inc": [ - 4217 + 4223 ], "_set": [ - 4230 + 4236 ], "pk_columns": [ - 4226, + 4232, "team_roster_pk_columns_input!" ] } ], "update_team_roster_many": [ - 4223, + 4229, { "updates": [ - 4242, + 4248, "[team_roster_updates!]!" ] } ], "update_team_scrim_alerts": [ - 4259, + 4265, { "_inc": [ - 4255 + 4261 ], "_set": [ - 4264 + 4270 ], "where": [ - 4253, + 4259, "team_scrim_alerts_bool_exp!" ] } ], "update_team_scrim_alerts_by_pk": [ - 4249, + 4255, { "_inc": [ - 4255 + 4261 ], "_set": [ - 4264 + 4270 ], "pk_columns": [ - 4262, + 4268, "team_scrim_alerts_pk_columns_input!" ] } ], "update_team_scrim_alerts_many": [ - 4259, + 4265, { "updates": [ - 4272, + 4278, "[team_scrim_alerts_updates!]!" ] } ], "update_team_scrim_availability": [ - 4292, + 4298, { "_set": [ - 4299 + 4305 ], "where": [ - 4285, + 4291, "team_scrim_availability_bool_exp!" ] } ], "update_team_scrim_availability_by_pk": [ - 4276, + 4282, { "_set": [ - 4299 + 4305 ], "pk_columns": [ - 4295, + 4301, "team_scrim_availability_pk_columns_input!" ] } ], "update_team_scrim_availability_many": [ - 4292, + 4298, { "updates": [ - 4303, + 4309, "[team_scrim_availability_updates!]!" ] } ], "update_team_scrim_request_proposals": [ - 4321, + 4327, { "_inc": [ - 4315 + 4321 ], "_set": [ - 4326 + 4332 ], "where": [ - 4313, + 4319, "team_scrim_request_proposals_bool_exp!" ] } ], "update_team_scrim_request_proposals_by_pk": [ - 4304, + 4310, { "_inc": [ - 4315 + 4321 ], "_set": [ - 4326 + 4332 ], "pk_columns": [ - 4324, + 4330, "team_scrim_request_proposals_pk_columns_input!" ] } ], "update_team_scrim_request_proposals_many": [ - 4321, + 4327, { "updates": [ - 4338, + 4344, "[team_scrim_request_proposals_updates!]!" ] } ], "update_team_scrim_requests": [ - 4364, + 4370, { "_inc": [ - 4358 + 4364 ], "_set": [ - 4372 + 4378 ], "where": [ - 4356, + 4362, "team_scrim_requests_bool_exp!" ] } ], "update_team_scrim_requests_by_pk": [ - 4345, + 4351, { "_inc": [ - 4358 + 4364 ], "_set": [ - 4372 + 4378 ], "pk_columns": [ - 4368, + 4374, "team_scrim_requests_pk_columns_input!" ] } ], "update_team_scrim_requests_many": [ - 4364, + 4370, { "updates": [ - 4384, + 4390, "[team_scrim_requests_updates!]!" ] } ], "update_team_scrim_settings": [ - 4401, + 4407, { "_inc": [ - 4397 + 4403 ], "_set": [ - 4407 + 4413 ], "where": [ - 4395, + 4401, "team_scrim_settings_bool_exp!" ] } ], "update_team_scrim_settings_by_pk": [ - 4391, + 4397, { "_inc": [ - 4397 + 4403 ], "_set": [ - 4407 + 4413 ], "pk_columns": [ - 4405, + 4411, "team_scrim_settings_pk_columns_input!" ] } ], "update_team_scrim_settings_many": [ - 4401, + 4407, { "updates": [ - 4415, + 4421, "[team_scrim_settings_updates!]!" ] } ], "update_team_suggestions": [ - 4429, + 4435, { "_inc": [ - 4425 + 4431 ], "_set": [ - 4434 + 4440 ], "where": [ - 4423, + 4429, "team_suggestions_bool_exp!" ] } ], "update_team_suggestions_by_pk": [ - 4419, + 4425, { "_inc": [ - 4425 + 4431 ], "_set": [ - 4434 + 4440 ], "pk_columns": [ - 4432, + 4438, "team_suggestions_pk_columns_input!" ] } ], "update_team_suggestions_many": [ - 4429, + 4435, { "updates": [ - 4442, + 4448, "[team_suggestions_updates!]!" ] } ], "update_teams": [ - 4465, + 4471, { "_inc": [ - 4459 + 4465 ], "_set": [ - 4473 + 4479 ], "where": [ - 4457, + 4463, "teams_bool_exp!" ] } ], "update_teams_by_pk": [ - 4446, + 4452, { "_inc": [ - 4459 + 4465 ], "_set": [ - 4473 + 4479 ], "pk_columns": [ - 4469, + 4475, "teams_pk_columns_input!" ] } ], "update_teams_many": [ - 4465, + 4471, { "updates": [ - 4485, + 4491, "[teams_updates!]!" ] } ], "update_tournament_awards": [ - 4512, + 4518, { "_inc": [ - 4506 + 4512 ], "_set": [ - 4518 + 4524 ], "where": [ - 4504, + 4510, "tournament_awards_bool_exp!" ] } ], "update_tournament_awards_by_pk": [ - 4495, + 4501, { "_inc": [ - 4506 + 4512 ], "_set": [ - 4518 + 4524 ], "pk_columns": [ - 4516, + 4522, "tournament_awards_pk_columns_input!" ] } ], "update_tournament_awards_many": [ - 4512, + 4518, { "updates": [ - 4530, + 4536, "[tournament_awards_updates!]!" ] } ], "update_tournament_brackets": [ - 4556, + 4562, { "_inc": [ - 4550 + 4556 ], "_set": [ - 4564 + 4570 ], "where": [ - 4548, + 4554, "tournament_brackets_bool_exp!" ] } ], "update_tournament_brackets_by_pk": [ - 4537, + 4543, { "_inc": [ - 4550 + 4556 ], "_set": [ - 4564 + 4570 ], "pk_columns": [ - 4560, + 4566, "tournament_brackets_pk_columns_input!" ] } ], "update_tournament_brackets_many": [ - 4556, + 4562, { "updates": [ - 4576, + 4582, "[tournament_brackets_updates!]!" ] } ], "update_tournament_categories": [ - 4597, + 4603, { "_set": [ - 4602 + 4608 ], "where": [ - 4590, + 4596, "tournament_categories_bool_exp!" ] } ], "update_tournament_categories_by_pk": [ - 4583, + 4589, { "_set": [ - 4602 + 4608 ], "pk_columns": [ - 4600, + 4606, "tournament_categories_pk_columns_input!" ] } ], "update_tournament_categories_many": [ - 4597, + 4603, { "updates": [ - 4606, + 4612, "[tournament_categories_updates!]!" ] } ], "update_tournament_organizer_teams": [ - 4621, + 4627, { "_set": [ - 4626 + 4632 ], "where": [ - 4614, + 4620, "tournament_organizer_teams_bool_exp!" ] } ], "update_tournament_organizer_teams_by_pk": [ - 4607, + 4613, { "_set": [ - 4626 + 4632 ], "pk_columns": [ - 4624, + 4630, "tournament_organizer_teams_pk_columns_input!" ] } ], "update_tournament_organizer_teams_many": [ - 4621, + 4627, { "updates": [ - 4630, + 4636, "[tournament_organizer_teams_updates!]!" ] } ], "update_tournament_organizers": [ - 4648, + 4654, { "_inc": [ - 4642 + 4648 ], "_set": [ - 4653 + 4659 ], "where": [ - 4640, + 4646, "tournament_organizers_bool_exp!" ] } ], "update_tournament_organizers_by_pk": [ - 4631, + 4637, { "_inc": [ - 4642 + 4648 ], "_set": [ - 4653 + 4659 ], "pk_columns": [ - 4651, + 4657, "tournament_organizers_pk_columns_input!" ] } ], "update_tournament_organizers_many": [ - 4648, + 4654, { "updates": [ - 4665, + 4671, "[tournament_organizers_updates!]!" ] } ], "update_tournament_prizes": [ - 4689, + 4695, { "_inc": [ - 4683 + 4689 ], "_set": [ - 4694 + 4700 ], "where": [ - 4681, + 4687, "tournament_prizes_bool_exp!" ] } ], "update_tournament_prizes_by_pk": [ - 4672, + 4678, { "_inc": [ - 4683 + 4689 ], "_set": [ - 4694 + 4700 ], "pk_columns": [ - 4692, + 4698, "tournament_prizes_pk_columns_input!" ] } ], "update_tournament_prizes_many": [ - 4689, + 4695, { "updates": [ - 4706, + 4712, "[tournament_prizes_updates!]!" ] } ], "update_tournament_stage_windows": [ - 4730, + 4736, { "_inc": [ - 4724 + 4730 ], "_set": [ - 4735 + 4741 ], "where": [ - 4722, + 4728, "tournament_stage_windows_bool_exp!" ] } ], "update_tournament_stage_windows_by_pk": [ - 4713, + 4719, { "_inc": [ - 4724 + 4730 ], "_set": [ - 4735 + 4741 ], "pk_columns": [ - 4733, + 4739, "tournament_stage_windows_pk_columns_input!" ] } ], "update_tournament_stage_windows_many": [ - 4730, + 4736, { "updates": [ - 4747, + 4753, "[tournament_stage_windows_updates!]!" ] } ], "update_tournament_stages": [ - 4777, + 4783, { "_append": [ - 4762 + 4768 ], "_delete_at_path": [ - 4768 + 4774 ], "_delete_elem": [ - 4769 + 4775 ], "_delete_key": [ - 4770 + 4776 ], "_inc": [ - 4771 + 4777 ], "_prepend": [ - 4782 + 4788 ], "_set": [ - 4786 + 4792 ], "where": [ - 4766, + 4772, "tournament_stages_bool_exp!" ] } ], "update_tournament_stages_by_pk": [ - 4754, + 4760, { "_append": [ - 4762 + 4768 ], "_delete_at_path": [ - 4768 + 4774 ], "_delete_elem": [ - 4769 + 4775 ], "_delete_key": [ - 4770 + 4776 ], "_inc": [ - 4771 + 4777 ], "_prepend": [ - 4782 + 4788 ], "_set": [ - 4786 + 4792 ], "pk_columns": [ - 4781, + 4787, "tournament_stages_pk_columns_input!" ] } ], "update_tournament_stages_many": [ - 4777, + 4783, { "updates": [ - 4798, + 4804, "[tournament_stages_updates!]!" ] } ], "update_tournament_team_invites": [ - 4822, + 4828, { "_inc": [ - 4816 + 4822 ], "_set": [ - 4827 + 4833 ], "where": [ - 4814, + 4820, "tournament_team_invites_bool_exp!" ] } ], "update_tournament_team_invites_by_pk": [ - 4805, + 4811, { "_inc": [ - 4816 + 4822 ], "_set": [ - 4827 + 4833 ], "pk_columns": [ - 4825, + 4831, "tournament_team_invites_pk_columns_input!" ] } ], "update_tournament_team_invites_many": [ - 4822, + 4828, { "updates": [ - 4839, + 4845, "[tournament_team_invites_updates!]!" ] } ], "update_tournament_team_roster": [ - 4863, + 4869, { "_inc": [ - 4857 + 4863 ], "_set": [ - 4868 + 4874 ], "where": [ - 4855, + 4861, "tournament_team_roster_bool_exp!" ] } ], "update_tournament_team_roster_by_pk": [ - 4846, + 4852, { "_inc": [ - 4857 + 4863 ], "_set": [ - 4868 + 4874 ], "pk_columns": [ - 4866, + 4872, "tournament_team_roster_pk_columns_input!" ] } ], "update_tournament_team_roster_many": [ - 4863, + 4869, { "updates": [ - 4880, + 4886, "[tournament_team_roster_updates!]!" ] } ], "update_tournament_teams": [ - 4904, + 4910, { "_inc": [ - 4898 + 4904 ], "_set": [ - 4910 + 4916 ], "where": [ - 4896, + 4902, "tournament_teams_bool_exp!" ] } ], "update_tournament_teams_by_pk": [ - 4887, + 4893, { "_inc": [ - 4898 + 4904 ], "_set": [ - 4910 + 4916 ], "pk_columns": [ - 4908, + 4914, "tournament_teams_pk_columns_input!" ] } ], "update_tournament_teams_many": [ - 4904, + 4910, { "updates": [ - 4922, + 4928, "[tournament_teams_updates!]!" ] } ], "update_tournaments": [ - 4958, + 4964, { "_inc": [ - 4952 + 4958 ], "_set": [ - 4974 + 4980 ], "where": [ - 4950, + 4956, "tournaments_bool_exp!" ] } ], "update_tournaments_by_pk": [ - 4929, + 4935, { "_inc": [ - 4952 + 4958 ], "_set": [ - 4974 + 4980 ], "pk_columns": [ - 4962, + 4968, "tournaments_pk_columns_input!" ] } ], "update_tournaments_many": [ - 4958, + 4964, { "updates": [ - 4986, + 4992, "[tournaments_updates!]!" ] } ], "update_v_match_captains": [ - 5158, + 5164, { "_inc": [ - 5154 + 5160 ], "_set": [ - 5162 + 5168 ], "where": [ - 5153, + 5159, "v_match_captains_bool_exp!" ] } ], "update_v_match_captains_many": [ - 5158, + 5164, { "updates": [ - 5169, + 5175, "[v_match_captains_updates!]!" ] } ], "update_v_match_map_backup_rounds": [ - 5269, + 5275, { "_inc": [ - 5265 + 5271 ], "_set": [ - 5272 + 5278 ], "where": [ - 5264, + 5270, "v_match_map_backup_rounds_bool_exp!" ] } ], "update_v_match_map_backup_rounds_many": [ - 5269, + 5275, { "updates": [ - 5279, + 5285, "[v_match_map_backup_rounds_updates!]!" ] } ], "update_v_player_match_map_hltv": [ - 5491, + 5497, { "_inc": [ - 5485 + 5491 ], "_set": [ - 5494 + 5500 ], "where": [ - 5484, + 5490, "v_player_match_map_hltv_bool_exp!" ] } ], "update_v_player_match_map_hltv_many": [ - 5491, + 5497, { "updates": [ - 5505, + 5511, "[v_player_match_map_hltv_updates!]!" ] } ], "update_v_pool_maps": [ - 5650, + 5656, { "_set": [ - 5655 + 5661 ], "where": [ - 5644, + 5650, "v_pool_maps_bool_exp!" ] } ], "update_v_pool_maps_many": [ - 5650, + 5656, { "updates": [ - 5658, + 5664, "[v_pool_maps_updates!]!" ] } ], "update_v_team_stage_results": [ - 5744, + 5750, { "_inc": [ - 5738 + 5744 ], "_set": [ - 5758 + 5764 ], "where": [ - 5736, + 5742, "v_team_stage_results_bool_exp!" ] } ], "update_v_team_stage_results_by_pk": [ - 5717, + 5723, { "_inc": [ - 5738 + 5744 ], "_set": [ - 5758 + 5764 ], "pk_columns": [ - 5748, + 5754, "v_team_stage_results_pk_columns_input!" ] } ], "update_v_team_stage_results_many": [ - 5744, + 5750, { "updates": [ - 5770, + 5776, "[v_team_stage_results_updates!]!" ] } @@ -159926,19 +160538,19 @@ export default { 83, { "game_server_node_id": [ - 4993, + 4999, "uuid!" ] } ], "watchDemo": [ - 94, + 100, { "match_map_demo_id": [ - 4993 + 4999 ], "match_map_id": [ - 4993, + 4999, "uuid!" ] } @@ -159969,10 +160581,10 @@ export default { }, "Subscription": { "_map_pool": [ - 95, + 101, { "distinct_on": [ - 107, + 113, "[_map_pool_select_column!]" ], "limit": [ @@ -159982,19 +160594,19 @@ export default { 40 ], "order_by": [ - 105, + 111, "[_map_pool_order_by!]" ], "where": [ - 98 + 104 ] } ], "_map_pool_aggregate": [ - 96, + 102, { "distinct_on": [ - 107, + 113, "[_map_pool_select_column!]" ], "limit": [ @@ -160004,48 +160616,48 @@ export default { 40 ], "order_by": [ - 105, + 111, "[_map_pool_order_by!]" ], "where": [ - 98 + 104 ] } ], "_map_pool_by_pk": [ - 95, + 101, { "map_id": [ - 4993, + 4999, "uuid!" ], "map_pool_id": [ - 4993, + 4999, "uuid!" ] } ], "_map_pool_stream": [ - 95, + 101, { "batch_size": [ 40, "Int!" ], "cursor": [ - 109, + 115, "[_map_pool_stream_cursor_input]!" ], "where": [ - 98 + 104 ] } ], "abandoned_matches": [ - 114, + 120, { "distinct_on": [ - 135, + 141, "[abandoned_matches_select_column!]" ], "limit": [ @@ -160055,19 +160667,19 @@ export default { 40 ], "order_by": [ - 133, + 139, "[abandoned_matches_order_by!]" ], "where": [ - 123 + 129 ] } ], "abandoned_matches_aggregate": [ - 115, + 121, { "distinct_on": [ - 135, + 141, "[abandoned_matches_select_column!]" ], "limit": [ @@ -160077,44 +160689,44 @@ export default { 40 ], "order_by": [ - 133, + 139, "[abandoned_matches_order_by!]" ], "where": [ - 123 + 129 ] } ], "abandoned_matches_by_pk": [ - 114, + 120, { "id": [ - 4993, + 4999, "uuid!" ] } ], "abandoned_matches_stream": [ - 114, + 120, { "batch_size": [ 40, "Int!" ], "cursor": [ - 143, + 149, "[abandoned_matches_stream_cursor_input]!" ], "where": [ - 123 + 129 ] } ], "api_keys": [ - 155, + 161, { "distinct_on": [ - 169, + 175, "[api_keys_select_column!]" ], "limit": [ @@ -160124,19 +160736,19 @@ export default { 40 ], "order_by": [ - 167, + 173, "[api_keys_order_by!]" ], "where": [ - 159 + 165 ] } ], "api_keys_aggregate": [ - 156, + 162, { "distinct_on": [ - 169, + 175, "[api_keys_select_column!]" ], "limit": [ @@ -160146,44 +160758,44 @@ export default { 40 ], "order_by": [ - 167, + 173, "[api_keys_order_by!]" ], "where": [ - 159 + 165 ] } ], "api_keys_by_pk": [ - 155, + 161, { "id": [ - 4993, + 4999, "uuid!" ] } ], "api_keys_stream": [ - 155, + 161, { "batch_size": [ 40, "Int!" ], "cursor": [ - 174, + 180, "[api_keys_stream_cursor_input]!" ], "where": [ - 159 + 165 ] } ], "award_recipients": [ - 183, + 189, { "distinct_on": [ - 204, + 210, "[award_recipients_select_column!]" ], "limit": [ @@ -160193,19 +160805,19 @@ export default { 40 ], "order_by": [ - 202, + 208, "[award_recipients_order_by!]" ], "where": [ - 192 + 198 ] } ], "award_recipients_aggregate": [ - 184, + 190, { "distinct_on": [ - 204, + 210, "[award_recipients_select_column!]" ], "limit": [ @@ -160215,44 +160827,44 @@ export default { 40 ], "order_by": [ - 202, + 208, "[award_recipients_order_by!]" ], "where": [ - 192 + 198 ] } ], "award_recipients_by_pk": [ - 183, + 189, { "id": [ - 4993, + 4999, "uuid!" ] } ], "award_recipients_stream": [ - 183, + 189, { "batch_size": [ 40, "Int!" ], "cursor": [ - 212, + 218, "[award_recipients_stream_cursor_input]!" ], "where": [ - 192 + 198 ] } ], "awards": [ - 224, + 230, { "distinct_on": [ - 239, + 245, "[awards_select_column!]" ], "limit": [ @@ -160262,19 +160874,19 @@ export default { 40 ], "order_by": [ - 237, + 243, "[awards_order_by!]" ], "where": [ - 228 + 234 ] } ], "awards_aggregate": [ - 225, + 231, { "distinct_on": [ - 239, + 245, "[awards_select_column!]" ], "limit": [ @@ -160284,44 +160896,44 @@ export default { 40 ], "order_by": [ - 237, + 243, "[awards_order_by!]" ], "where": [ - 228 + 234 ] } ], "awards_by_pk": [ - 224, + 230, { "id": [ - 4993, + 4999, "uuid!" ] } ], "awards_stream": [ - 224, + 230, { "batch_size": [ 40, "Int!" ], "cursor": [ - 244, + 250, "[awards_stream_cursor_input]!" ], "where": [ - 228 + 234 ] } ], "clip_render_jobs": [ - 257, + 263, { "distinct_on": [ - 285, + 291, "[clip_render_jobs_select_column!]" ], "limit": [ @@ -160331,19 +160943,19 @@ export default { 40 ], "order_by": [ - 282, + 288, "[clip_render_jobs_order_by!]" ], "where": [ - 269 + 275 ] } ], "clip_render_jobs_aggregate": [ - 258, + 264, { "distinct_on": [ - 285, + 291, "[clip_render_jobs_select_column!]" ], "limit": [ @@ -160353,44 +160965,44 @@ export default { 40 ], "order_by": [ - 282, + 288, "[clip_render_jobs_order_by!]" ], "where": [ - 269 + 275 ] } ], "clip_render_jobs_by_pk": [ - 257, + 263, { "id": [ - 4993, + 4999, "uuid!" ] } ], "clip_render_jobs_stream": [ - 257, + 263, { "batch_size": [ 40, "Int!" ], "cursor": [ - 295, + 301, "[clip_render_jobs_stream_cursor_input]!" ], "where": [ - 269 + 275 ] } ], "custom_pages": [ - 309, + 315, { "distinct_on": [ - 328, + 334, "[custom_pages_select_column!]" ], "limit": [ @@ -160400,19 +161012,19 @@ export default { 40 ], "order_by": [ - 325, + 331, "[custom_pages_order_by!]" ], "where": [ - 314 + 320 ] } ], "custom_pages_aggregate": [ - 310, + 316, { "distinct_on": [ - 328, + 334, "[custom_pages_select_column!]" ], "limit": [ @@ -160422,44 +161034,44 @@ export default { 40 ], "order_by": [ - 325, + 331, "[custom_pages_order_by!]" ], "where": [ - 314 + 320 ] } ], "custom_pages_by_pk": [ - 309, + 315, { "id": [ - 4993, + 4999, "uuid!" ] } ], "custom_pages_stream": [ - 309, + 315, { "batch_size": [ 40, "Int!" ], "cursor": [ - 333, + 339, "[custom_pages_stream_cursor_input]!" ], "where": [ - 314 + 320 ] } ], "db_backups": [ - 341, + 347, { "distinct_on": [ - 355, + 361, "[db_backups_select_column!]" ], "limit": [ @@ -160469,19 +161081,19 @@ export default { 40 ], "order_by": [ - 353, + 359, "[db_backups_order_by!]" ], "where": [ - 345 + 351 ] } ], "db_backups_aggregate": [ - 342, + 348, { "distinct_on": [ - 355, + 361, "[db_backups_select_column!]" ], "limit": [ @@ -160491,44 +161103,44 @@ export default { 40 ], "order_by": [ - 353, + 359, "[db_backups_order_by!]" ], "where": [ - 345 + 351 ] } ], "db_backups_by_pk": [ - 341, + 347, { "id": [ - 4993, + 4999, "uuid!" ] } ], "db_backups_stream": [ - 341, + 347, { "batch_size": [ 40, "Int!" ], "cursor": [ - 360, + 366, "[db_backups_stream_cursor_input]!" ], "where": [ - 345 + 351 ] } ], "draft_game_picks": [ - 368, + 374, { "distinct_on": [ - 391, + 397, "[draft_game_picks_select_column!]" ], "limit": [ @@ -160538,19 +161150,19 @@ export default { 40 ], "order_by": [ - 389, + 395, "[draft_game_picks_order_by!]" ], "where": [ - 379 + 385 ] } ], "draft_game_picks_aggregate": [ - 369, + 375, { "distinct_on": [ - 391, + 397, "[draft_game_picks_select_column!]" ], "limit": [ @@ -160560,44 +161172,44 @@ export default { 40 ], "order_by": [ - 389, + 395, "[draft_game_picks_order_by!]" ], "where": [ - 379 + 385 ] } ], "draft_game_picks_by_pk": [ - 368, + 374, { "id": [ - 4993, + 4999, "uuid!" ] } ], "draft_game_picks_stream": [ - 368, + 374, { "batch_size": [ 40, "Int!" ], "cursor": [ - 401, + 407, "[draft_game_picks_stream_cursor_input]!" ], "where": [ - 379 + 385 ] } ], "draft_game_players": [ - 413, + 419, { "distinct_on": [ - 436, + 442, "[draft_game_players_select_column!]" ], "limit": [ @@ -160607,19 +161219,19 @@ export default { 40 ], "order_by": [ - 434, + 440, "[draft_game_players_order_by!]" ], "where": [ - 424 + 430 ] } ], "draft_game_players_aggregate": [ - 414, + 420, { "distinct_on": [ - 436, + 442, "[draft_game_players_select_column!]" ], "limit": [ @@ -160629,48 +161241,48 @@ export default { 40 ], "order_by": [ - 434, + 440, "[draft_game_players_order_by!]" ], "where": [ - 424 + 430 ] } ], "draft_game_players_by_pk": [ - 413, + 419, { "draft_game_id": [ - 4993, + 4999, "uuid!" ], "steam_id": [ - 252, + 258, "bigint!" ] } ], "draft_game_players_stream": [ - 413, + 419, { "batch_size": [ 40, "Int!" ], "cursor": [ - 446, + 452, "[draft_game_players_stream_cursor_input]!" ], "where": [ - 424 + 430 ] } ], "draft_games": [ - 458, + 464, { "distinct_on": [ - 482, + 488, "[draft_games_select_column!]" ], "limit": [ @@ -160680,19 +161292,19 @@ export default { 40 ], "order_by": [ - 480, + 486, "[draft_games_order_by!]" ], "where": [ - 469 + 475 ] } ], "draft_games_aggregate": [ - 459, + 465, { "distinct_on": [ - 482, + 488, "[draft_games_select_column!]" ], "limit": [ @@ -160702,44 +161314,44 @@ export default { 40 ], "order_by": [ - 480, + 486, "[draft_games_order_by!]" ], "where": [ - 469 + 475 ] } ], "draft_games_by_pk": [ - 458, + 464, { "id": [ - 4993, + 4999, "uuid!" ] } ], "draft_games_stream": [ - 458, + 464, { "batch_size": [ 40, "Int!" ], "cursor": [ - 492, + 498, "[draft_games_stream_cursor_input]!" ], "where": [ - 469 + 475 ] } ], "e_award_sources": [ - 504, + 510, { "distinct_on": [ - 518, + 524, "[e_award_sources_select_column!]" ], "limit": [ @@ -160749,19 +161361,19 @@ export default { 40 ], "order_by": [ - 516, + 522, "[e_award_sources_order_by!]" ], "where": [ - 507 + 513 ] } ], "e_award_sources_aggregate": [ - 505, + 511, { "distinct_on": [ - 518, + 524, "[e_award_sources_select_column!]" ], "limit": [ @@ -160771,16 +161383,16 @@ export default { 40 ], "order_by": [ - 516, + 522, "[e_award_sources_order_by!]" ], "where": [ - 507 + 513 ] } ], "e_award_sources_by_pk": [ - 504, + 510, { "value": [ 80, @@ -160789,26 +161401,26 @@ export default { } ], "e_award_sources_stream": [ - 504, + 510, { "batch_size": [ 40, "Int!" ], "cursor": [ - 520, + 526, "[e_award_sources_stream_cursor_input]!" ], "where": [ - 507 + 513 ] } ], "e_award_tiers": [ - 524, + 530, { "distinct_on": [ - 538, + 544, "[e_award_tiers_select_column!]" ], "limit": [ @@ -160818,19 +161430,19 @@ export default { 40 ], "order_by": [ - 536, + 542, "[e_award_tiers_order_by!]" ], "where": [ - 527 + 533 ] } ], "e_award_tiers_aggregate": [ - 525, + 531, { "distinct_on": [ - 538, + 544, "[e_award_tiers_select_column!]" ], "limit": [ @@ -160840,16 +161452,16 @@ export default { 40 ], "order_by": [ - 536, + 542, "[e_award_tiers_order_by!]" ], "where": [ - 527 + 533 ] } ], "e_award_tiers_by_pk": [ - 524, + 530, { "value": [ 80, @@ -160858,26 +161470,26 @@ export default { } ], "e_award_tiers_stream": [ - 524, + 530, { "batch_size": [ 40, "Int!" ], "cursor": [ - 540, + 546, "[e_award_tiers_stream_cursor_input]!" ], "where": [ - 527 + 533 ] } ], "e_check_in_settings": [ - 544, + 550, { "distinct_on": [ - 558, + 564, "[e_check_in_settings_select_column!]" ], "limit": [ @@ -160887,19 +161499,19 @@ export default { 40 ], "order_by": [ - 556, + 562, "[e_check_in_settings_order_by!]" ], "where": [ - 547 + 553 ] } ], "e_check_in_settings_aggregate": [ - 545, + 551, { "distinct_on": [ - 558, + 564, "[e_check_in_settings_select_column!]" ], "limit": [ @@ -160909,16 +161521,16 @@ export default { 40 ], "order_by": [ - 556, + 562, "[e_check_in_settings_order_by!]" ], "where": [ - 547 + 553 ] } ], "e_check_in_settings_by_pk": [ - 544, + 550, { "value": [ 80, @@ -160927,26 +161539,26 @@ export default { } ], "e_check_in_settings_stream": [ - 544, + 550, { "batch_size": [ 40, "Int!" ], "cursor": [ - 560, + 566, "[e_check_in_settings_stream_cursor_input]!" ], "where": [ - 547 + 553 ] } ], "e_draft_game_captain_selection": [ - 564, + 570, { "distinct_on": [ - 579, + 585, "[e_draft_game_captain_selection_select_column!]" ], "limit": [ @@ -160956,19 +161568,19 @@ export default { 40 ], "order_by": [ - 577, + 583, "[e_draft_game_captain_selection_order_by!]" ], "where": [ - 567 + 573 ] } ], "e_draft_game_captain_selection_aggregate": [ - 565, + 571, { "distinct_on": [ - 579, + 585, "[e_draft_game_captain_selection_select_column!]" ], "limit": [ @@ -160978,16 +161590,16 @@ export default { 40 ], "order_by": [ - 577, + 583, "[e_draft_game_captain_selection_order_by!]" ], "where": [ - 567 + 573 ] } ], "e_draft_game_captain_selection_by_pk": [ - 564, + 570, { "value": [ 80, @@ -160996,26 +161608,26 @@ export default { } ], "e_draft_game_captain_selection_stream": [ - 564, + 570, { "batch_size": [ 40, "Int!" ], "cursor": [ - 581, + 587, "[e_draft_game_captain_selection_stream_cursor_input]!" ], "where": [ - 567 + 573 ] } ], "e_draft_game_draft_order": [ - 585, + 591, { "distinct_on": [ - 600, + 606, "[e_draft_game_draft_order_select_column!]" ], "limit": [ @@ -161025,19 +161637,19 @@ export default { 40 ], "order_by": [ - 598, + 604, "[e_draft_game_draft_order_order_by!]" ], "where": [ - 588 + 594 ] } ], "e_draft_game_draft_order_aggregate": [ - 586, + 592, { "distinct_on": [ - 600, + 606, "[e_draft_game_draft_order_select_column!]" ], "limit": [ @@ -161047,16 +161659,16 @@ export default { 40 ], "order_by": [ - 598, + 604, "[e_draft_game_draft_order_order_by!]" ], "where": [ - 588 + 594 ] } ], "e_draft_game_draft_order_by_pk": [ - 585, + 591, { "value": [ 80, @@ -161065,26 +161677,26 @@ export default { } ], "e_draft_game_draft_order_stream": [ - 585, + 591, { "batch_size": [ 40, "Int!" ], "cursor": [ - 602, + 608, "[e_draft_game_draft_order_stream_cursor_input]!" ], "where": [ - 588 + 594 ] } ], "e_draft_game_mode": [ - 606, + 612, { "distinct_on": [ - 621, + 627, "[e_draft_game_mode_select_column!]" ], "limit": [ @@ -161094,19 +161706,19 @@ export default { 40 ], "order_by": [ - 619, + 625, "[e_draft_game_mode_order_by!]" ], "where": [ - 609 + 615 ] } ], "e_draft_game_mode_aggregate": [ - 607, + 613, { "distinct_on": [ - 621, + 627, "[e_draft_game_mode_select_column!]" ], "limit": [ @@ -161116,16 +161728,16 @@ export default { 40 ], "order_by": [ - 619, + 625, "[e_draft_game_mode_order_by!]" ], "where": [ - 609 + 615 ] } ], "e_draft_game_mode_by_pk": [ - 606, + 612, { "value": [ 80, @@ -161134,26 +161746,26 @@ export default { } ], "e_draft_game_mode_stream": [ - 606, + 612, { "batch_size": [ 40, "Int!" ], "cursor": [ - 623, + 629, "[e_draft_game_mode_stream_cursor_input]!" ], "where": [ - 609 + 615 ] } ], "e_draft_game_player_status": [ - 627, + 633, { "distinct_on": [ - 642, + 648, "[e_draft_game_player_status_select_column!]" ], "limit": [ @@ -161163,19 +161775,19 @@ export default { 40 ], "order_by": [ - 640, + 646, "[e_draft_game_player_status_order_by!]" ], "where": [ - 630 + 636 ] } ], "e_draft_game_player_status_aggregate": [ - 628, + 634, { "distinct_on": [ - 642, + 648, "[e_draft_game_player_status_select_column!]" ], "limit": [ @@ -161185,16 +161797,16 @@ export default { 40 ], "order_by": [ - 640, + 646, "[e_draft_game_player_status_order_by!]" ], "where": [ - 630 + 636 ] } ], "e_draft_game_player_status_by_pk": [ - 627, + 633, { "value": [ 80, @@ -161203,26 +161815,26 @@ export default { } ], "e_draft_game_player_status_stream": [ - 627, + 633, { "batch_size": [ 40, "Int!" ], "cursor": [ - 644, + 650, "[e_draft_game_player_status_stream_cursor_input]!" ], "where": [ - 630 + 636 ] } ], "e_draft_game_status": [ - 648, + 654, { "distinct_on": [ - 663, + 669, "[e_draft_game_status_select_column!]" ], "limit": [ @@ -161232,19 +161844,19 @@ export default { 40 ], "order_by": [ - 661, + 667, "[e_draft_game_status_order_by!]" ], "where": [ - 651 + 657 ] } ], "e_draft_game_status_aggregate": [ - 649, + 655, { "distinct_on": [ - 663, + 669, "[e_draft_game_status_select_column!]" ], "limit": [ @@ -161254,16 +161866,16 @@ export default { 40 ], "order_by": [ - 661, + 667, "[e_draft_game_status_order_by!]" ], "where": [ - 651 + 657 ] } ], "e_draft_game_status_by_pk": [ - 648, + 654, { "value": [ 80, @@ -161272,26 +161884,26 @@ export default { } ], "e_draft_game_status_stream": [ - 648, + 654, { "batch_size": [ 40, "Int!" ], "cursor": [ - 665, + 671, "[e_draft_game_status_stream_cursor_input]!" ], "where": [ - 651 + 657 ] } ], "e_event_media_access": [ - 669, + 675, { "distinct_on": [ - 683, + 689, "[e_event_media_access_select_column!]" ], "limit": [ @@ -161301,19 +161913,19 @@ export default { 40 ], "order_by": [ - 681, + 687, "[e_event_media_access_order_by!]" ], "where": [ - 672 + 678 ] } ], "e_event_media_access_aggregate": [ - 670, + 676, { "distinct_on": [ - 683, + 689, "[e_event_media_access_select_column!]" ], "limit": [ @@ -161323,16 +161935,16 @@ export default { 40 ], "order_by": [ - 681, + 687, "[e_event_media_access_order_by!]" ], "where": [ - 672 + 678 ] } ], "e_event_media_access_by_pk": [ - 669, + 675, { "value": [ 80, @@ -161341,26 +161953,26 @@ export default { } ], "e_event_media_access_stream": [ - 669, + 675, { "batch_size": [ 40, "Int!" ], "cursor": [ - 685, + 691, "[e_event_media_access_stream_cursor_input]!" ], "where": [ - 672 + 678 ] } ], "e_event_visibility": [ - 689, + 695, { "distinct_on": [ - 703, + 709, "[e_event_visibility_select_column!]" ], "limit": [ @@ -161370,19 +161982,19 @@ export default { 40 ], "order_by": [ - 701, + 707, "[e_event_visibility_order_by!]" ], "where": [ - 692 + 698 ] } ], "e_event_visibility_aggregate": [ - 690, + 696, { "distinct_on": [ - 703, + 709, "[e_event_visibility_select_column!]" ], "limit": [ @@ -161392,16 +162004,16 @@ export default { 40 ], "order_by": [ - 701, + 707, "[e_event_visibility_order_by!]" ], "where": [ - 692 + 698 ] } ], "e_event_visibility_by_pk": [ - 689, + 695, { "value": [ 80, @@ -161410,26 +162022,26 @@ export default { } ], "e_event_visibility_stream": [ - 689, + 695, { "batch_size": [ 40, "Int!" ], "cursor": [ - 705, + 711, "[e_event_visibility_stream_cursor_input]!" ], "where": [ - 692 + 698 ] } ], "e_friend_status": [ - 709, + 715, { "distinct_on": [ - 724, + 730, "[e_friend_status_select_column!]" ], "limit": [ @@ -161439,19 +162051,19 @@ export default { 40 ], "order_by": [ - 722, + 728, "[e_friend_status_order_by!]" ], "where": [ - 712 + 718 ] } ], "e_friend_status_aggregate": [ - 710, + 716, { "distinct_on": [ - 724, + 730, "[e_friend_status_select_column!]" ], "limit": [ @@ -161461,16 +162073,16 @@ export default { 40 ], "order_by": [ - 722, + 728, "[e_friend_status_order_by!]" ], "where": [ - 712 + 718 ] } ], "e_friend_status_by_pk": [ - 709, + 715, { "value": [ 80, @@ -161479,26 +162091,26 @@ export default { } ], "e_friend_status_stream": [ - 709, + 715, { "batch_size": [ 40, "Int!" ], "cursor": [ - 726, + 732, "[e_friend_status_stream_cursor_input]!" ], "where": [ - 712 + 718 ] } ], "e_game_cfg_types": [ - 730, + 736, { "distinct_on": [ - 744, + 750, "[e_game_cfg_types_select_column!]" ], "limit": [ @@ -161508,19 +162120,19 @@ export default { 40 ], "order_by": [ - 742, + 748, "[e_game_cfg_types_order_by!]" ], "where": [ - 733 + 739 ] } ], "e_game_cfg_types_aggregate": [ - 731, + 737, { "distinct_on": [ - 744, + 750, "[e_game_cfg_types_select_column!]" ], "limit": [ @@ -161530,16 +162142,16 @@ export default { 40 ], "order_by": [ - 742, + 748, "[e_game_cfg_types_order_by!]" ], "where": [ - 733 + 739 ] } ], "e_game_cfg_types_by_pk": [ - 730, + 736, { "value": [ 80, @@ -161548,26 +162160,26 @@ export default { } ], "e_game_cfg_types_stream": [ - 730, + 736, { "batch_size": [ 40, "Int!" ], "cursor": [ - 746, + 752, "[e_game_cfg_types_stream_cursor_input]!" ], "where": [ - 733 + 739 ] } ], "e_game_server_node_statuses": [ - 750, + 756, { "distinct_on": [ - 765, + 771, "[e_game_server_node_statuses_select_column!]" ], "limit": [ @@ -161577,19 +162189,19 @@ export default { 40 ], "order_by": [ - 763, + 769, "[e_game_server_node_statuses_order_by!]" ], "where": [ - 753 + 759 ] } ], "e_game_server_node_statuses_aggregate": [ - 751, + 757, { "distinct_on": [ - 765, + 771, "[e_game_server_node_statuses_select_column!]" ], "limit": [ @@ -161599,16 +162211,16 @@ export default { 40 ], "order_by": [ - 763, + 769, "[e_game_server_node_statuses_order_by!]" ], "where": [ - 753 + 759 ] } ], "e_game_server_node_statuses_by_pk": [ - 750, + 756, { "value": [ 80, @@ -161617,26 +162229,26 @@ export default { } ], "e_game_server_node_statuses_stream": [ - 750, + 756, { "batch_size": [ 40, "Int!" ], "cursor": [ - 767, + 773, "[e_game_server_node_statuses_stream_cursor_input]!" ], "where": [ - 753 + 759 ] } ], "e_league_movement_types": [ - 771, + 777, { "distinct_on": [ - 786, + 792, "[e_league_movement_types_select_column!]" ], "limit": [ @@ -161646,19 +162258,19 @@ export default { 40 ], "order_by": [ - 784, + 790, "[e_league_movement_types_order_by!]" ], "where": [ - 774 + 780 ] } ], "e_league_movement_types_aggregate": [ - 772, + 778, { "distinct_on": [ - 786, + 792, "[e_league_movement_types_select_column!]" ], "limit": [ @@ -161668,16 +162280,16 @@ export default { 40 ], "order_by": [ - 784, + 790, "[e_league_movement_types_order_by!]" ], "where": [ - 774 + 780 ] } ], "e_league_movement_types_by_pk": [ - 771, + 777, { "value": [ 80, @@ -161686,26 +162298,26 @@ export default { } ], "e_league_movement_types_stream": [ - 771, + 777, { "batch_size": [ 40, "Int!" ], "cursor": [ - 788, + 794, "[e_league_movement_types_stream_cursor_input]!" ], "where": [ - 774 + 780 ] } ], "e_league_proposal_statuses": [ - 792, + 798, { "distinct_on": [ - 807, + 813, "[e_league_proposal_statuses_select_column!]" ], "limit": [ @@ -161715,19 +162327,19 @@ export default { 40 ], "order_by": [ - 805, + 811, "[e_league_proposal_statuses_order_by!]" ], "where": [ - 795 + 801 ] } ], "e_league_proposal_statuses_aggregate": [ - 793, + 799, { "distinct_on": [ - 807, + 813, "[e_league_proposal_statuses_select_column!]" ], "limit": [ @@ -161737,16 +162349,16 @@ export default { 40 ], "order_by": [ - 805, + 811, "[e_league_proposal_statuses_order_by!]" ], "where": [ - 795 + 801 ] } ], "e_league_proposal_statuses_by_pk": [ - 792, + 798, { "value": [ 80, @@ -161755,26 +162367,26 @@ export default { } ], "e_league_proposal_statuses_stream": [ - 792, + 798, { "batch_size": [ 40, "Int!" ], "cursor": [ - 809, + 815, "[e_league_proposal_statuses_stream_cursor_input]!" ], "where": [ - 795 + 801 ] } ], "e_league_registration_statuses": [ - 813, + 819, { "distinct_on": [ - 828, + 834, "[e_league_registration_statuses_select_column!]" ], "limit": [ @@ -161784,19 +162396,19 @@ export default { 40 ], "order_by": [ - 826, + 832, "[e_league_registration_statuses_order_by!]" ], "where": [ - 816 + 822 ] } ], "e_league_registration_statuses_aggregate": [ - 814, + 820, { "distinct_on": [ - 828, + 834, "[e_league_registration_statuses_select_column!]" ], "limit": [ @@ -161806,16 +162418,16 @@ export default { 40 ], "order_by": [ - 826, + 832, "[e_league_registration_statuses_order_by!]" ], "where": [ - 816 + 822 ] } ], "e_league_registration_statuses_by_pk": [ - 813, + 819, { "value": [ 80, @@ -161824,26 +162436,26 @@ export default { } ], "e_league_registration_statuses_stream": [ - 813, + 819, { "batch_size": [ 40, "Int!" ], "cursor": [ - 830, + 836, "[e_league_registration_statuses_stream_cursor_input]!" ], "where": [ - 816 + 822 ] } ], "e_league_season_statuses": [ - 834, + 840, { "distinct_on": [ - 849, + 855, "[e_league_season_statuses_select_column!]" ], "limit": [ @@ -161853,19 +162465,19 @@ export default { 40 ], "order_by": [ - 847, + 853, "[e_league_season_statuses_order_by!]" ], "where": [ - 837 + 843 ] } ], "e_league_season_statuses_aggregate": [ - 835, + 841, { "distinct_on": [ - 849, + 855, "[e_league_season_statuses_select_column!]" ], "limit": [ @@ -161875,16 +162487,16 @@ export default { 40 ], "order_by": [ - 847, + 853, "[e_league_season_statuses_order_by!]" ], "where": [ - 837 + 843 ] } ], "e_league_season_statuses_by_pk": [ - 834, + 840, { "value": [ 80, @@ -161893,26 +162505,26 @@ export default { } ], "e_league_season_statuses_stream": [ - 834, + 840, { "batch_size": [ 40, "Int!" ], "cursor": [ - 851, + 857, "[e_league_season_statuses_stream_cursor_input]!" ], "where": [ - 837 + 843 ] } ], "e_lobby_access": [ - 855, + 861, { "distinct_on": [ - 870, + 876, "[e_lobby_access_select_column!]" ], "limit": [ @@ -161922,19 +162534,19 @@ export default { 40 ], "order_by": [ - 868, + 874, "[e_lobby_access_order_by!]" ], "where": [ - 858 + 864 ] } ], "e_lobby_access_aggregate": [ - 856, + 862, { "distinct_on": [ - 870, + 876, "[e_lobby_access_select_column!]" ], "limit": [ @@ -161944,16 +162556,16 @@ export default { 40 ], "order_by": [ - 868, + 874, "[e_lobby_access_order_by!]" ], "where": [ - 858 + 864 ] } ], "e_lobby_access_by_pk": [ - 855, + 861, { "value": [ 80, @@ -161962,26 +162574,26 @@ export default { } ], "e_lobby_access_stream": [ - 855, + 861, { "batch_size": [ 40, "Int!" ], "cursor": [ - 872, + 878, "[e_lobby_access_stream_cursor_input]!" ], "where": [ - 858 + 864 ] } ], "e_lobby_player_status": [ - 876, + 882, { "distinct_on": [ - 890, + 896, "[e_lobby_player_status_select_column!]" ], "limit": [ @@ -161991,19 +162603,19 @@ export default { 40 ], "order_by": [ - 888, + 894, "[e_lobby_player_status_order_by!]" ], "where": [ - 879 + 885 ] } ], "e_lobby_player_status_aggregate": [ - 877, + 883, { "distinct_on": [ - 890, + 896, "[e_lobby_player_status_select_column!]" ], "limit": [ @@ -162013,16 +162625,16 @@ export default { 40 ], "order_by": [ - 888, + 894, "[e_lobby_player_status_order_by!]" ], "where": [ - 879 + 885 ] } ], "e_lobby_player_status_by_pk": [ - 876, + 882, { "value": [ 80, @@ -162031,26 +162643,26 @@ export default { } ], "e_lobby_player_status_stream": [ - 876, + 882, { "batch_size": [ 40, "Int!" ], "cursor": [ - 892, + 898, "[e_lobby_player_status_stream_cursor_input]!" ], "where": [ - 879 + 885 ] } ], "e_map_pool_types": [ - 896, + 902, { "distinct_on": [ - 911, + 917, "[e_map_pool_types_select_column!]" ], "limit": [ @@ -162060,19 +162672,19 @@ export default { 40 ], "order_by": [ - 909, + 915, "[e_map_pool_types_order_by!]" ], "where": [ - 899 + 905 ] } ], "e_map_pool_types_aggregate": [ - 897, + 903, { "distinct_on": [ - 911, + 917, "[e_map_pool_types_select_column!]" ], "limit": [ @@ -162082,16 +162694,16 @@ export default { 40 ], "order_by": [ - 909, + 915, "[e_map_pool_types_order_by!]" ], "where": [ - 899 + 905 ] } ], "e_map_pool_types_by_pk": [ - 896, + 902, { "value": [ 80, @@ -162100,26 +162712,26 @@ export default { } ], "e_map_pool_types_stream": [ - 896, + 902, { "batch_size": [ 40, "Int!" ], "cursor": [ - 913, + 919, "[e_map_pool_types_stream_cursor_input]!" ], "where": [ - 899 + 905 ] } ], "e_match_clip_visibility": [ - 917, + 923, { "distinct_on": [ - 931, + 937, "[e_match_clip_visibility_select_column!]" ], "limit": [ @@ -162129,19 +162741,19 @@ export default { 40 ], "order_by": [ - 929, + 935, "[e_match_clip_visibility_order_by!]" ], "where": [ - 920 + 926 ] } ], "e_match_clip_visibility_aggregate": [ - 918, + 924, { "distinct_on": [ - 931, + 937, "[e_match_clip_visibility_select_column!]" ], "limit": [ @@ -162151,16 +162763,16 @@ export default { 40 ], "order_by": [ - 929, + 935, "[e_match_clip_visibility_order_by!]" ], "where": [ - 920 + 926 ] } ], "e_match_clip_visibility_by_pk": [ - 917, + 923, { "value": [ 80, @@ -162169,26 +162781,26 @@ export default { } ], "e_match_clip_visibility_stream": [ - 917, + 923, { "batch_size": [ 40, "Int!" ], "cursor": [ - 933, + 939, "[e_match_clip_visibility_stream_cursor_input]!" ], "where": [ - 920 + 926 ] } ], "e_match_map_status": [ - 937, + 943, { "distinct_on": [ - 952, + 958, "[e_match_map_status_select_column!]" ], "limit": [ @@ -162198,19 +162810,19 @@ export default { 40 ], "order_by": [ - 950, + 956, "[e_match_map_status_order_by!]" ], "where": [ - 940 + 946 ] } ], "e_match_map_status_aggregate": [ - 938, + 944, { "distinct_on": [ - 952, + 958, "[e_match_map_status_select_column!]" ], "limit": [ @@ -162220,16 +162832,16 @@ export default { 40 ], "order_by": [ - 950, + 956, "[e_match_map_status_order_by!]" ], "where": [ - 940 + 946 ] } ], "e_match_map_status_by_pk": [ - 937, + 943, { "value": [ 80, @@ -162238,26 +162850,26 @@ export default { } ], "e_match_map_status_stream": [ - 937, + 943, { "batch_size": [ 40, "Int!" ], "cursor": [ - 954, + 960, "[e_match_map_status_stream_cursor_input]!" ], "where": [ - 940 + 946 ] } ], "e_match_mode": [ - 958, + 964, { "distinct_on": [ - 972, + 978, "[e_match_mode_select_column!]" ], "limit": [ @@ -162267,19 +162879,19 @@ export default { 40 ], "order_by": [ - 970, + 976, "[e_match_mode_order_by!]" ], "where": [ - 961 + 967 ] } ], "e_match_mode_aggregate": [ - 959, + 965, { "distinct_on": [ - 972, + 978, "[e_match_mode_select_column!]" ], "limit": [ @@ -162289,16 +162901,16 @@ export default { 40 ], "order_by": [ - 970, + 976, "[e_match_mode_order_by!]" ], "where": [ - 961 + 967 ] } ], "e_match_mode_by_pk": [ - 958, + 964, { "value": [ 80, @@ -162307,26 +162919,26 @@ export default { } ], "e_match_mode_stream": [ - 958, + 964, { "batch_size": [ 40, "Int!" ], "cursor": [ - 974, + 980, "[e_match_mode_stream_cursor_input]!" ], "where": [ - 961 + 967 ] } ], "e_match_status": [ - 978, + 984, { "distinct_on": [ - 993, + 999, "[e_match_status_select_column!]" ], "limit": [ @@ -162336,19 +162948,19 @@ export default { 40 ], "order_by": [ - 991, + 997, "[e_match_status_order_by!]" ], "where": [ - 981 + 987 ] } ], "e_match_status_aggregate": [ - 979, + 985, { "distinct_on": [ - 993, + 999, "[e_match_status_select_column!]" ], "limit": [ @@ -162358,16 +162970,16 @@ export default { 40 ], "order_by": [ - 991, + 997, "[e_match_status_order_by!]" ], "where": [ - 981 + 987 ] } ], "e_match_status_by_pk": [ - 978, + 984, { "value": [ 80, @@ -162376,26 +162988,26 @@ export default { } ], "e_match_status_stream": [ - 978, + 984, { "batch_size": [ 40, "Int!" ], "cursor": [ - 995, + 1001, "[e_match_status_stream_cursor_input]!" ], "where": [ - 981 + 987 ] } ], "e_match_types": [ - 999, + 1005, { "distinct_on": [ - 1014, + 1020, "[e_match_types_select_column!]" ], "limit": [ @@ -162405,19 +163017,19 @@ export default { 40 ], "order_by": [ - 1012, + 1018, "[e_match_types_order_by!]" ], "where": [ - 1002 + 1008 ] } ], "e_match_types_aggregate": [ - 1000, + 1006, { "distinct_on": [ - 1014, + 1020, "[e_match_types_select_column!]" ], "limit": [ @@ -162427,16 +163039,16 @@ export default { 40 ], "order_by": [ - 1012, + 1018, "[e_match_types_order_by!]" ], "where": [ - 1002 + 1008 ] } ], "e_match_types_by_pk": [ - 999, + 1005, { "value": [ 80, @@ -162445,26 +163057,26 @@ export default { } ], "e_match_types_stream": [ - 999, + 1005, { "batch_size": [ 40, "Int!" ], "cursor": [ - 1016, + 1022, "[e_match_types_stream_cursor_input]!" ], "where": [ - 1002 + 1008 ] } ], "e_notification_types": [ - 1020, + 1026, { "distinct_on": [ - 1034, + 1040, "[e_notification_types_select_column!]" ], "limit": [ @@ -162474,19 +163086,19 @@ export default { 40 ], "order_by": [ - 1032, + 1038, "[e_notification_types_order_by!]" ], "where": [ - 1023 + 1029 ] } ], "e_notification_types_aggregate": [ - 1021, + 1027, { "distinct_on": [ - 1034, + 1040, "[e_notification_types_select_column!]" ], "limit": [ @@ -162496,16 +163108,16 @@ export default { 40 ], "order_by": [ - 1032, + 1038, "[e_notification_types_order_by!]" ], "where": [ - 1023 + 1029 ] } ], "e_notification_types_by_pk": [ - 1020, + 1026, { "value": [ 80, @@ -162514,26 +163126,26 @@ export default { } ], "e_notification_types_stream": [ - 1020, + 1026, { "batch_size": [ 40, "Int!" ], "cursor": [ - 1036, + 1042, "[e_notification_types_stream_cursor_input]!" ], "where": [ - 1023 + 1029 ] } ], "e_objective_types": [ - 1040, + 1046, { "distinct_on": [ - 1054, + 1060, "[e_objective_types_select_column!]" ], "limit": [ @@ -162543,19 +163155,19 @@ export default { 40 ], "order_by": [ - 1052, + 1058, "[e_objective_types_order_by!]" ], "where": [ - 1043 + 1049 ] } ], "e_objective_types_aggregate": [ - 1041, + 1047, { "distinct_on": [ - 1054, + 1060, "[e_objective_types_select_column!]" ], "limit": [ @@ -162565,16 +163177,16 @@ export default { 40 ], "order_by": [ - 1052, + 1058, "[e_objective_types_order_by!]" ], "where": [ - 1043 + 1049 ] } ], "e_objective_types_by_pk": [ - 1040, + 1046, { "value": [ 80, @@ -162583,26 +163195,26 @@ export default { } ], "e_objective_types_stream": [ - 1040, + 1046, { "batch_size": [ 40, "Int!" ], "cursor": [ - 1056, + 1062, "[e_objective_types_stream_cursor_input]!" ], "where": [ - 1043 + 1049 ] } ], "e_player_roles": [ - 1060, + 1066, { "distinct_on": [ - 1074, + 1080, "[e_player_roles_select_column!]" ], "limit": [ @@ -162612,19 +163224,19 @@ export default { 40 ], "order_by": [ - 1072, + 1078, "[e_player_roles_order_by!]" ], "where": [ - 1063 + 1069 ] } ], "e_player_roles_aggregate": [ - 1061, + 1067, { "distinct_on": [ - 1074, + 1080, "[e_player_roles_select_column!]" ], "limit": [ @@ -162634,16 +163246,16 @@ export default { 40 ], "order_by": [ - 1072, + 1078, "[e_player_roles_order_by!]" ], "where": [ - 1063 + 1069 ] } ], "e_player_roles_by_pk": [ - 1060, + 1066, { "value": [ 80, @@ -162652,26 +163264,26 @@ export default { } ], "e_player_roles_stream": [ - 1060, + 1066, { "batch_size": [ 40, "Int!" ], "cursor": [ - 1076, + 1082, "[e_player_roles_stream_cursor_input]!" ], "where": [ - 1063 + 1069 ] } ], "e_plugin_runtimes": [ - 1080, + 1086, { "distinct_on": [ - 1094, + 1100, "[e_plugin_runtimes_select_column!]" ], "limit": [ @@ -162681,19 +163293,19 @@ export default { 40 ], "order_by": [ - 1092, + 1098, "[e_plugin_runtimes_order_by!]" ], "where": [ - 1083 + 1089 ] } ], "e_plugin_runtimes_aggregate": [ - 1081, + 1087, { "distinct_on": [ - 1094, + 1100, "[e_plugin_runtimes_select_column!]" ], "limit": [ @@ -162703,16 +163315,16 @@ export default { 40 ], "order_by": [ - 1092, + 1098, "[e_plugin_runtimes_order_by!]" ], "where": [ - 1083 + 1089 ] } ], "e_plugin_runtimes_by_pk": [ - 1080, + 1086, { "value": [ 80, @@ -162721,26 +163333,26 @@ export default { } ], "e_plugin_runtimes_stream": [ - 1080, + 1086, { "batch_size": [ 40, "Int!" ], "cursor": [ - 1096, + 1102, "[e_plugin_runtimes_stream_cursor_input]!" ], "where": [ - 1083 + 1089 ] } ], "e_ready_settings": [ - 1100, + 1106, { "distinct_on": [ - 1114, + 1120, "[e_ready_settings_select_column!]" ], "limit": [ @@ -162750,19 +163362,19 @@ export default { 40 ], "order_by": [ - 1112, + 1118, "[e_ready_settings_order_by!]" ], "where": [ - 1103 + 1109 ] } ], "e_ready_settings_aggregate": [ - 1101, + 1107, { "distinct_on": [ - 1114, + 1120, "[e_ready_settings_select_column!]" ], "limit": [ @@ -162772,16 +163384,16 @@ export default { 40 ], "order_by": [ - 1112, + 1118, "[e_ready_settings_order_by!]" ], "where": [ - 1103 + 1109 ] } ], "e_ready_settings_by_pk": [ - 1100, + 1106, { "value": [ 80, @@ -162790,26 +163402,26 @@ export default { } ], "e_ready_settings_stream": [ - 1100, + 1106, { "batch_size": [ 40, "Int!" ], "cursor": [ - 1116, + 1122, "[e_ready_settings_stream_cursor_input]!" ], "where": [ - 1103 + 1109 ] } ], "e_sanction_types": [ - 1120, + 1126, { "distinct_on": [ - 1135, + 1141, "[e_sanction_types_select_column!]" ], "limit": [ @@ -162819,19 +163431,19 @@ export default { 40 ], "order_by": [ - 1133, + 1139, "[e_sanction_types_order_by!]" ], "where": [ - 1123 + 1129 ] } ], "e_sanction_types_aggregate": [ - 1121, + 1127, { "distinct_on": [ - 1135, + 1141, "[e_sanction_types_select_column!]" ], "limit": [ @@ -162841,16 +163453,16 @@ export default { 40 ], "order_by": [ - 1133, + 1139, "[e_sanction_types_order_by!]" ], "where": [ - 1123 + 1129 ] } ], "e_sanction_types_by_pk": [ - 1120, + 1126, { "value": [ 80, @@ -162859,26 +163471,26 @@ export default { } ], "e_sanction_types_stream": [ - 1120, + 1126, { "batch_size": [ 40, "Int!" ], "cursor": [ - 1137, + 1143, "[e_sanction_types_stream_cursor_input]!" ], "where": [ - 1123 + 1129 ] } ], "e_scrim_request_statuses": [ - 1141, + 1147, { "distinct_on": [ - 1155, + 1161, "[e_scrim_request_statuses_select_column!]" ], "limit": [ @@ -162888,19 +163500,19 @@ export default { 40 ], "order_by": [ - 1153, + 1159, "[e_scrim_request_statuses_order_by!]" ], "where": [ - 1144 + 1150 ] } ], "e_scrim_request_statuses_aggregate": [ - 1142, + 1148, { "distinct_on": [ - 1155, + 1161, "[e_scrim_request_statuses_select_column!]" ], "limit": [ @@ -162910,16 +163522,16 @@ export default { 40 ], "order_by": [ - 1153, + 1159, "[e_scrim_request_statuses_order_by!]" ], "where": [ - 1144 + 1150 ] } ], "e_scrim_request_statuses_by_pk": [ - 1141, + 1147, { "value": [ 80, @@ -162928,26 +163540,26 @@ export default { } ], "e_scrim_request_statuses_stream": [ - 1141, + 1147, { "batch_size": [ 40, "Int!" ], "cursor": [ - 1157, + 1163, "[e_scrim_request_statuses_stream_cursor_input]!" ], "where": [ - 1144 + 1150 ] } ], "e_server_types": [ - 1161, + 1167, { "distinct_on": [ - 1175, + 1181, "[e_server_types_select_column!]" ], "limit": [ @@ -162957,19 +163569,19 @@ export default { 40 ], "order_by": [ - 1173, + 1179, "[e_server_types_order_by!]" ], "where": [ - 1164 + 1170 ] } ], "e_server_types_aggregate": [ - 1162, + 1168, { "distinct_on": [ - 1175, + 1181, "[e_server_types_select_column!]" ], "limit": [ @@ -162979,16 +163591,16 @@ export default { 40 ], "order_by": [ - 1173, + 1179, "[e_server_types_order_by!]" ], "where": [ - 1164 + 1170 ] } ], "e_server_types_by_pk": [ - 1161, + 1167, { "value": [ 80, @@ -162997,26 +163609,26 @@ export default { } ], "e_server_types_stream": [ - 1161, + 1167, { "batch_size": [ 40, "Int!" ], "cursor": [ - 1177, + 1183, "[e_server_types_stream_cursor_input]!" ], "where": [ - 1164 + 1170 ] } ], "e_sides": [ - 1181, + 1187, { "distinct_on": [ - 1195, + 1201, "[e_sides_select_column!]" ], "limit": [ @@ -163026,19 +163638,19 @@ export default { 40 ], "order_by": [ - 1193, + 1199, "[e_sides_order_by!]" ], "where": [ - 1184 + 1190 ] } ], "e_sides_aggregate": [ - 1182, + 1188, { "distinct_on": [ - 1195, + 1201, "[e_sides_select_column!]" ], "limit": [ @@ -163048,16 +163660,16 @@ export default { 40 ], "order_by": [ - 1193, + 1199, "[e_sides_order_by!]" ], "where": [ - 1184 + 1190 ] } ], "e_sides_by_pk": [ - 1181, + 1187, { "value": [ 80, @@ -163066,26 +163678,26 @@ export default { } ], "e_sides_stream": [ - 1181, + 1187, { "batch_size": [ 40, "Int!" ], "cursor": [ - 1197, + 1203, "[e_sides_stream_cursor_input]!" ], "where": [ - 1184 + 1190 ] } ], "e_system_alert_types": [ - 1201, + 1207, { "distinct_on": [ - 1215, + 1221, "[e_system_alert_types_select_column!]" ], "limit": [ @@ -163095,19 +163707,19 @@ export default { 40 ], "order_by": [ - 1213, + 1219, "[e_system_alert_types_order_by!]" ], "where": [ - 1204 + 1210 ] } ], "e_system_alert_types_aggregate": [ - 1202, + 1208, { "distinct_on": [ - 1215, + 1221, "[e_system_alert_types_select_column!]" ], "limit": [ @@ -163117,16 +163729,16 @@ export default { 40 ], "order_by": [ - 1213, + 1219, "[e_system_alert_types_order_by!]" ], "where": [ - 1204 + 1210 ] } ], "e_system_alert_types_by_pk": [ - 1201, + 1207, { "value": [ 80, @@ -163135,26 +163747,26 @@ export default { } ], "e_system_alert_types_stream": [ - 1201, + 1207, { "batch_size": [ 40, "Int!" ], "cursor": [ - 1217, + 1223, "[e_system_alert_types_stream_cursor_input]!" ], "where": [ - 1204 + 1210 ] } ], "e_team_roles": [ - 1221, + 1227, { "distinct_on": [ - 1236, + 1242, "[e_team_roles_select_column!]" ], "limit": [ @@ -163164,19 +163776,19 @@ export default { 40 ], "order_by": [ - 1234, + 1240, "[e_team_roles_order_by!]" ], "where": [ - 1224 + 1230 ] } ], "e_team_roles_aggregate": [ - 1222, + 1228, { "distinct_on": [ - 1236, + 1242, "[e_team_roles_select_column!]" ], "limit": [ @@ -163186,16 +163798,16 @@ export default { 40 ], "order_by": [ - 1234, + 1240, "[e_team_roles_order_by!]" ], "where": [ - 1224 + 1230 ] } ], "e_team_roles_by_pk": [ - 1221, + 1227, { "value": [ 80, @@ -163204,26 +163816,26 @@ export default { } ], "e_team_roles_stream": [ - 1221, + 1227, { "batch_size": [ 40, "Int!" ], "cursor": [ - 1238, + 1244, "[e_team_roles_stream_cursor_input]!" ], "where": [ - 1224 + 1230 ] } ], "e_team_roster_statuses": [ - 1242, + 1248, { "distinct_on": [ - 1256, + 1262, "[e_team_roster_statuses_select_column!]" ], "limit": [ @@ -163233,19 +163845,19 @@ export default { 40 ], "order_by": [ - 1254, + 1260, "[e_team_roster_statuses_order_by!]" ], "where": [ - 1245 + 1251 ] } ], "e_team_roster_statuses_aggregate": [ - 1243, + 1249, { "distinct_on": [ - 1256, + 1262, "[e_team_roster_statuses_select_column!]" ], "limit": [ @@ -163255,16 +163867,16 @@ export default { 40 ], "order_by": [ - 1254, + 1260, "[e_team_roster_statuses_order_by!]" ], "where": [ - 1245 + 1251 ] } ], "e_team_roster_statuses_by_pk": [ - 1242, + 1248, { "value": [ 80, @@ -163273,26 +163885,26 @@ export default { } ], "e_team_roster_statuses_stream": [ - 1242, + 1248, { "batch_size": [ 40, "Int!" ], "cursor": [ - 1258, + 1264, "[e_team_roster_statuses_stream_cursor_input]!" ], "where": [ - 1245 + 1251 ] } ], "e_timeout_settings": [ - 1262, + 1268, { "distinct_on": [ - 1276, + 1282, "[e_timeout_settings_select_column!]" ], "limit": [ @@ -163302,19 +163914,19 @@ export default { 40 ], "order_by": [ - 1274, + 1280, "[e_timeout_settings_order_by!]" ], "where": [ - 1265 + 1271 ] } ], "e_timeout_settings_aggregate": [ - 1263, + 1269, { "distinct_on": [ - 1276, + 1282, "[e_timeout_settings_select_column!]" ], "limit": [ @@ -163324,16 +163936,16 @@ export default { 40 ], "order_by": [ - 1274, + 1280, "[e_timeout_settings_order_by!]" ], "where": [ - 1265 + 1271 ] } ], "e_timeout_settings_by_pk": [ - 1262, + 1268, { "value": [ 80, @@ -163342,26 +163954,26 @@ export default { } ], "e_timeout_settings_stream": [ - 1262, + 1268, { "batch_size": [ 40, "Int!" ], "cursor": [ - 1278, + 1284, "[e_timeout_settings_stream_cursor_input]!" ], "where": [ - 1265 + 1271 ] } ], "e_tournament_categories": [ - 1282, + 1288, { "distinct_on": [ - 1297, + 1303, "[e_tournament_categories_select_column!]" ], "limit": [ @@ -163371,19 +163983,19 @@ export default { 40 ], "order_by": [ - 1295, + 1301, "[e_tournament_categories_order_by!]" ], "where": [ - 1285 + 1291 ] } ], "e_tournament_categories_aggregate": [ - 1283, + 1289, { "distinct_on": [ - 1297, + 1303, "[e_tournament_categories_select_column!]" ], "limit": [ @@ -163393,16 +164005,16 @@ export default { 40 ], "order_by": [ - 1295, + 1301, "[e_tournament_categories_order_by!]" ], "where": [ - 1285 + 1291 ] } ], "e_tournament_categories_by_pk": [ - 1282, + 1288, { "value": [ 80, @@ -163411,26 +164023,26 @@ export default { } ], "e_tournament_categories_stream": [ - 1282, + 1288, { "batch_size": [ 40, "Int!" ], "cursor": [ - 1299, + 1305, "[e_tournament_categories_stream_cursor_input]!" ], "where": [ - 1285 + 1291 ] } ], "e_tournament_stage_types": [ - 1303, + 1309, { "distinct_on": [ - 1318, + 1324, "[e_tournament_stage_types_select_column!]" ], "limit": [ @@ -163440,19 +164052,19 @@ export default { 40 ], "order_by": [ - 1316, + 1322, "[e_tournament_stage_types_order_by!]" ], "where": [ - 1306 + 1312 ] } ], "e_tournament_stage_types_aggregate": [ - 1304, + 1310, { "distinct_on": [ - 1318, + 1324, "[e_tournament_stage_types_select_column!]" ], "limit": [ @@ -163462,16 +164074,16 @@ export default { 40 ], "order_by": [ - 1316, + 1322, "[e_tournament_stage_types_order_by!]" ], "where": [ - 1306 + 1312 ] } ], "e_tournament_stage_types_by_pk": [ - 1303, + 1309, { "value": [ 80, @@ -163480,26 +164092,26 @@ export default { } ], "e_tournament_stage_types_stream": [ - 1303, + 1309, { "batch_size": [ 40, "Int!" ], "cursor": [ - 1320, + 1326, "[e_tournament_stage_types_stream_cursor_input]!" ], "where": [ - 1306 + 1312 ] } ], "e_tournament_status": [ - 1324, + 1330, { "distinct_on": [ - 1339, + 1345, "[e_tournament_status_select_column!]" ], "limit": [ @@ -163509,19 +164121,19 @@ export default { 40 ], "order_by": [ - 1337, + 1343, "[e_tournament_status_order_by!]" ], "where": [ - 1327 + 1333 ] } ], "e_tournament_status_aggregate": [ - 1325, + 1331, { "distinct_on": [ - 1339, + 1345, "[e_tournament_status_select_column!]" ], "limit": [ @@ -163531,16 +164143,16 @@ export default { 40 ], "order_by": [ - 1337, + 1343, "[e_tournament_status_order_by!]" ], "where": [ - 1327 + 1333 ] } ], "e_tournament_status_by_pk": [ - 1324, + 1330, { "value": [ 80, @@ -163549,26 +164161,26 @@ export default { } ], "e_tournament_status_stream": [ - 1324, + 1330, { "batch_size": [ 40, "Int!" ], "cursor": [ - 1341, + 1347, "[e_tournament_status_stream_cursor_input]!" ], "where": [ - 1327 + 1333 ] } ], "e_utility_types": [ - 1345, + 1351, { "distinct_on": [ - 1359, + 1365, "[e_utility_types_select_column!]" ], "limit": [ @@ -163578,19 +164190,19 @@ export default { 40 ], "order_by": [ - 1357, + 1363, "[e_utility_types_order_by!]" ], "where": [ - 1348 + 1354 ] } ], "e_utility_types_aggregate": [ - 1346, + 1352, { "distinct_on": [ - 1359, + 1365, "[e_utility_types_select_column!]" ], "limit": [ @@ -163600,16 +164212,16 @@ export default { 40 ], "order_by": [ - 1357, + 1363, "[e_utility_types_order_by!]" ], "where": [ - 1348 + 1354 ] } ], "e_utility_types_by_pk": [ - 1345, + 1351, { "value": [ 80, @@ -163618,26 +164230,26 @@ export default { } ], "e_utility_types_stream": [ - 1345, + 1351, { "batch_size": [ 40, "Int!" ], "cursor": [ - 1361, + 1367, "[e_utility_types_stream_cursor_input]!" ], "where": [ - 1348 + 1354 ] } ], "e_veto_pick_types": [ - 1365, + 1371, { "distinct_on": [ - 1379, + 1385, "[e_veto_pick_types_select_column!]" ], "limit": [ @@ -163647,19 +164259,19 @@ export default { 40 ], "order_by": [ - 1377, + 1383, "[e_veto_pick_types_order_by!]" ], "where": [ - 1368 + 1374 ] } ], "e_veto_pick_types_aggregate": [ - 1366, + 1372, { "distinct_on": [ - 1379, + 1385, "[e_veto_pick_types_select_column!]" ], "limit": [ @@ -163669,16 +164281,16 @@ export default { 40 ], "order_by": [ - 1377, + 1383, "[e_veto_pick_types_order_by!]" ], "where": [ - 1368 + 1374 ] } ], "e_veto_pick_types_by_pk": [ - 1365, + 1371, { "value": [ 80, @@ -163687,26 +164299,26 @@ export default { } ], "e_veto_pick_types_stream": [ - 1365, + 1371, { "batch_size": [ 40, "Int!" ], "cursor": [ - 1381, + 1387, "[e_veto_pick_types_stream_cursor_input]!" ], "where": [ - 1368 + 1374 ] } ], "e_winning_reasons": [ - 1385, + 1391, { "distinct_on": [ - 1399, + 1405, "[e_winning_reasons_select_column!]" ], "limit": [ @@ -163716,19 +164328,19 @@ export default { 40 ], "order_by": [ - 1397, + 1403, "[e_winning_reasons_order_by!]" ], "where": [ - 1388 + 1394 ] } ], "e_winning_reasons_aggregate": [ - 1386, + 1392, { "distinct_on": [ - 1399, + 1405, "[e_winning_reasons_select_column!]" ], "limit": [ @@ -163738,16 +164350,16 @@ export default { 40 ], "order_by": [ - 1397, + 1403, "[e_winning_reasons_order_by!]" ], "where": [ - 1388 + 1394 ] } ], "e_winning_reasons_by_pk": [ - 1385, + 1391, { "value": [ 80, @@ -163756,26 +164368,26 @@ export default { } ], "e_winning_reasons_stream": [ - 1385, + 1391, { "batch_size": [ 40, "Int!" ], "cursor": [ - 1401, + 1407, "[e_winning_reasons_stream_cursor_input]!" ], "where": [ - 1388 + 1394 ] } ], "event_match_links": [ - 1405, + 1411, { "distinct_on": [ - 1417, + 1423, "[event_match_links_select_column!]" ], "limit": [ @@ -163785,19 +164397,19 @@ export default { 40 ], "order_by": [ - 1415, + 1421, "[event_match_links_order_by!]" ], "where": [ - 1408 + 1414 ] } ], "event_match_links_aggregate": [ - 1406, + 1412, { "distinct_on": [ - 1417, + 1423, "[event_match_links_select_column!]" ], "limit": [ @@ -163807,48 +164419,48 @@ export default { 40 ], "order_by": [ - 1415, + 1421, "[event_match_links_order_by!]" ], "where": [ - 1408 + 1414 ] } ], "event_match_links_by_pk": [ - 1405, + 1411, { "event_id": [ - 4993, + 4999, "uuid!" ], "match_id": [ - 4993, + 4999, "uuid!" ] } ], "event_match_links_stream": [ - 1405, + 1411, { "batch_size": [ 40, "Int!" ], "cursor": [ - 1419, + 1425, "[event_match_links_stream_cursor_input]!" ], "where": [ - 1408 + 1414 ] } ], "event_media": [ - 1423, + 1429, { "distinct_on": [ - 1486, + 1492, "[event_media_select_column!]" ], "limit": [ @@ -163858,19 +164470,19 @@ export default { 40 ], "order_by": [ - 1443, + 1449, "[event_media_order_by!]" ], "where": [ - 1432 + 1438 ] } ], "event_media_aggregate": [ - 1424, + 1430, { "distinct_on": [ - 1486, + 1492, "[event_media_select_column!]" ], "limit": [ @@ -163880,28 +164492,28 @@ export default { 40 ], "order_by": [ - 1443, + 1449, "[event_media_order_by!]" ], "where": [ - 1432 + 1438 ] } ], "event_media_by_pk": [ - 1423, + 1429, { "id": [ - 4993, + 4999, "uuid!" ] } ], "event_media_players": [ - 1445, + 1451, { "distinct_on": [ - 1466, + 1472, "[event_media_players_select_column!]" ], "limit": [ @@ -163911,19 +164523,19 @@ export default { 40 ], "order_by": [ - 1464, + 1470, "[event_media_players_order_by!]" ], "where": [ - 1454 + 1460 ] } ], "event_media_players_aggregate": [ - 1446, + 1452, { "distinct_on": [ - 1466, + 1472, "[event_media_players_select_column!]" ], "limit": [ @@ -163933,64 +164545,64 @@ export default { 40 ], "order_by": [ - 1464, + 1470, "[event_media_players_order_by!]" ], "where": [ - 1454 + 1460 ] } ], "event_media_players_by_pk": [ - 1445, + 1451, { "media_id": [ - 4993, + 4999, "uuid!" ], "steam_id": [ - 252, + 258, "bigint!" ] } ], "event_media_players_stream": [ - 1445, + 1451, { "batch_size": [ 40, "Int!" ], "cursor": [ - 1474, + 1480, "[event_media_players_stream_cursor_input]!" ], "where": [ - 1454 + 1460 ] } ], "event_media_stream": [ - 1423, + 1429, { "batch_size": [ 40, "Int!" ], "cursor": [ - 1494, + 1500, "[event_media_stream_cursor_input]!" ], "where": [ - 1432 + 1438 ] } ], "event_organizers": [ - 1506, + 1512, { "distinct_on": [ - 1527, + 1533, "[event_organizers_select_column!]" ], "limit": [ @@ -164000,19 +164612,19 @@ export default { 40 ], "order_by": [ - 1525, + 1531, "[event_organizers_order_by!]" ], "where": [ - 1515 + 1521 ] } ], "event_organizers_aggregate": [ - 1507, + 1513, { "distinct_on": [ - 1527, + 1533, "[event_organizers_select_column!]" ], "limit": [ @@ -164022,48 +164634,48 @@ export default { 40 ], "order_by": [ - 1525, + 1531, "[event_organizers_order_by!]" ], "where": [ - 1515 + 1521 ] } ], "event_organizers_by_pk": [ - 1506, + 1512, { "event_id": [ - 4993, + 4999, "uuid!" ], "steam_id": [ - 252, + 258, "bigint!" ] } ], "event_organizers_stream": [ - 1506, + 1512, { "batch_size": [ 40, "Int!" ], "cursor": [ - 1535, + 1541, "[event_organizers_stream_cursor_input]!" ], "where": [ - 1515 + 1521 ] } ], "event_players": [ - 1547, + 1553, { "distinct_on": [ - 1568, + 1574, "[event_players_select_column!]" ], "limit": [ @@ -164073,19 +164685,19 @@ export default { 40 ], "order_by": [ - 1566, + 1572, "[event_players_order_by!]" ], "where": [ - 1556 + 1562 ] } ], "event_players_aggregate": [ - 1548, + 1554, { "distinct_on": [ - 1568, + 1574, "[event_players_select_column!]" ], "limit": [ @@ -164095,48 +164707,48 @@ export default { 40 ], "order_by": [ - 1566, + 1572, "[event_players_order_by!]" ], "where": [ - 1556 + 1562 ] } ], "event_players_by_pk": [ - 1547, + 1553, { "event_id": [ - 4993, + 4999, "uuid!" ], "steam_id": [ - 252, + 258, "bigint!" ] } ], "event_players_stream": [ - 1547, + 1553, { "batch_size": [ 40, "Int!" ], "cursor": [ - 1576, + 1582, "[event_players_stream_cursor_input]!" ], "where": [ - 1556 + 1562 ] } ], "event_teams": [ - 1588, + 1594, { "distinct_on": [ - 1606, + 1612, "[event_teams_select_column!]" ], "limit": [ @@ -164146,19 +164758,19 @@ export default { 40 ], "order_by": [ - 1604, + 1610, "[event_teams_order_by!]" ], "where": [ - 1595 + 1601 ] } ], "event_teams_aggregate": [ - 1589, + 1595, { "distinct_on": [ - 1606, + 1612, "[event_teams_select_column!]" ], "limit": [ @@ -164168,48 +164780,48 @@ export default { 40 ], "order_by": [ - 1604, + 1610, "[event_teams_order_by!]" ], "where": [ - 1595 + 1601 ] } ], "event_teams_by_pk": [ - 1588, + 1594, { "event_id": [ - 4993, + 4999, "uuid!" ], "team_id": [ - 4993, + 4999, "uuid!" ] } ], "event_teams_stream": [ - 1588, + 1594, { "batch_size": [ 40, "Int!" ], "cursor": [ - 1608, + 1614, "[event_teams_stream_cursor_input]!" ], "where": [ - 1595 + 1601 ] } ], "event_tournaments": [ - 1612, + 1618, { "distinct_on": [ - 1630, + 1636, "[event_tournaments_select_column!]" ], "limit": [ @@ -164219,19 +164831,19 @@ export default { 40 ], "order_by": [ - 1628, + 1634, "[event_tournaments_order_by!]" ], "where": [ - 1619 + 1625 ] } ], "event_tournaments_aggregate": [ - 1613, + 1619, { "distinct_on": [ - 1630, + 1636, "[event_tournaments_select_column!]" ], "limit": [ @@ -164241,48 +164853,48 @@ export default { 40 ], "order_by": [ - 1628, + 1634, "[event_tournaments_order_by!]" ], "where": [ - 1619 + 1625 ] } ], "event_tournaments_by_pk": [ - 1612, + 1618, { "event_id": [ - 4993, + 4999, "uuid!" ], "tournament_id": [ - 4993, + 4999, "uuid!" ] } ], "event_tournaments_stream": [ - 1612, + 1618, { "batch_size": [ 40, "Int!" ], "cursor": [ - 1632, + 1638, "[event_tournaments_stream_cursor_input]!" ], "where": [ - 1619 + 1625 ] } ], "events": [ - 1636, + 1642, { "distinct_on": [ - 1651, + 1657, "[events_select_column!]" ], "limit": [ @@ -164292,19 +164904,19 @@ export default { 40 ], "order_by": [ - 1649, + 1655, "[events_order_by!]" ], "where": [ - 1640 + 1646 ] } ], "events_aggregate": [ - 1637, + 1643, { "distinct_on": [ - 1651, + 1657, "[events_select_column!]" ], "limit": [ @@ -164314,44 +164926,44 @@ export default { 40 ], "order_by": [ - 1649, + 1655, "[events_order_by!]" ], "where": [ - 1640 + 1646 ] } ], "events_by_pk": [ - 1636, + 1642, { "id": [ - 4993, + 4999, "uuid!" ] } ], "events_stream": [ - 1636, + 1642, { "batch_size": [ 40, "Int!" ], "cursor": [ - 1656, + 1662, "[events_stream_cursor_input]!" ], "where": [ - 1640 + 1646 ] } ], "friends": [ - 1666, + 1672, { "distinct_on": [ - 1680, + 1686, "[friends_select_column!]" ], "limit": [ @@ -164361,19 +164973,19 @@ export default { 40 ], "order_by": [ - 1678, + 1684, "[friends_order_by!]" ], "where": [ - 1670 + 1676 ] } ], "friends_aggregate": [ - 1667, + 1673, { "distinct_on": [ - 1680, + 1686, "[friends_select_column!]" ], "limit": [ @@ -164383,48 +164995,48 @@ export default { 40 ], "order_by": [ - 1678, + 1684, "[friends_order_by!]" ], "where": [ - 1670 + 1676 ] } ], "friends_by_pk": [ - 1666, + 1672, { "other_player_steam_id": [ - 252, + 258, "bigint!" ], "player_steam_id": [ - 252, + 258, "bigint!" ] } ], "friends_stream": [ - 1666, + 1672, { "batch_size": [ 40, "Int!" ], "cursor": [ - 1685, + 1691, "[friends_stream_cursor_input]!" ], "where": [ - 1670 + 1676 ] } ], "game_server_nodes": [ - 1693, + 1699, { "distinct_on": [ - 1722, + 1728, "[game_server_nodes_select_column!]" ], "limit": [ @@ -164434,19 +165046,19 @@ export default { 40 ], "order_by": [ - 1719, + 1725, "[game_server_nodes_order_by!]" ], "where": [ - 1705 + 1711 ] } ], "game_server_nodes_aggregate": [ - 1694, + 1700, { "distinct_on": [ - 1722, + 1728, "[game_server_nodes_select_column!]" ], "limit": [ @@ -164456,16 +165068,16 @@ export default { 40 ], "order_by": [ - 1719, + 1725, "[game_server_nodes_order_by!]" ], "where": [ - 1705 + 1711 ] } ], "game_server_nodes_by_pk": [ - 1693, + 1699, { "id": [ 80, @@ -164474,26 +165086,26 @@ export default { } ], "game_server_nodes_stream": [ - 1693, + 1699, { "batch_size": [ 40, "Int!" ], "cursor": [ - 1732, + 1738, "[game_server_nodes_stream_cursor_input]!" ], "where": [ - 1705 + 1711 ] } ], "game_versions": [ - 1744, + 1750, { "distinct_on": [ - 1764, + 1770, "[game_versions_select_column!]" ], "limit": [ @@ -164503,19 +165115,19 @@ export default { 40 ], "order_by": [ - 1761, + 1767, "[game_versions_order_by!]" ], "where": [ - 1749 + 1755 ] } ], "game_versions_aggregate": [ - 1745, + 1751, { "distinct_on": [ - 1764, + 1770, "[game_versions_select_column!]" ], "limit": [ @@ -164525,16 +165137,16 @@ export default { 40 ], "order_by": [ - 1761, + 1767, "[game_versions_order_by!]" ], "where": [ - 1749 + 1755 ] } ], "game_versions_by_pk": [ - 1744, + 1750, { "build_id": [ 40, @@ -164543,26 +165155,26 @@ export default { } ], "game_versions_stream": [ - 1744, + 1750, { "batch_size": [ 40, "Int!" ], "cursor": [ - 1769, + 1775, "[game_versions_stream_cursor_input]!" ], "where": [ - 1749 + 1755 ] } ], "gamedata_signature_validations": [ - 1777, + 1783, { "distinct_on": [ - 1796, + 1802, "[gamedata_signature_validations_select_column!]" ], "limit": [ @@ -164572,19 +165184,19 @@ export default { 40 ], "order_by": [ - 1793, + 1799, "[gamedata_signature_validations_order_by!]" ], "where": [ - 1782 + 1788 ] } ], "gamedata_signature_validations_aggregate": [ - 1778, + 1784, { "distinct_on": [ - 1796, + 1802, "[gamedata_signature_validations_select_column!]" ], "limit": [ @@ -164594,48 +165206,48 @@ export default { 40 ], "order_by": [ - 1793, + 1799, "[gamedata_signature_validations_order_by!]" ], "where": [ - 1782 + 1788 ] } ], "gamedata_signature_validations_by_pk": [ - 1777, + 1783, { "id": [ - 4993, + 4999, "uuid!" ] } ], "gamedata_signature_validations_stream": [ - 1777, + 1783, { "batch_size": [ 40, "Int!" ], "cursor": [ - 1801, + 1807, "[gamedata_signature_validations_stream_cursor_input]!" ], "where": [ - 1782 + 1788 ] } ], "get_event_leaderboard": [ - 1820, + 1826, { "args": [ - 1809, + 1815, "get_event_leaderboard_args!" ], "distinct_on": [ - 1831, + 1837, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -164645,23 +165257,23 @@ export default { 40 ], "order_by": [ - 1830, + 1836, "[leaderboard_entries_order_by!]" ], "where": [ - 1824 + 1830 ] } ], "get_event_leaderboard_aggregate": [ - 1821, + 1827, { "args": [ - 1809, + 1815, "get_event_leaderboard_args!" ], "distinct_on": [ - 1831, + 1837, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -164671,23 +165283,23 @@ export default { 40 ], "order_by": [ - 1830, + 1836, "[leaderboard_entries_order_by!]" ], "where": [ - 1824 + 1830 ] } ], "get_leaderboard": [ - 1820, + 1826, { "args": [ - 1810, + 1816, "get_leaderboard_args!" ], "distinct_on": [ - 1831, + 1837, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -164697,23 +165309,23 @@ export default { 40 ], "order_by": [ - 1830, + 1836, "[leaderboard_entries_order_by!]" ], "where": [ - 1824 + 1830 ] } ], "get_leaderboard_aggregate": [ - 1821, + 1827, { "args": [ - 1810, + 1816, "get_leaderboard_args!" ], "distinct_on": [ - 1831, + 1837, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -164723,23 +165335,23 @@ export default { 40 ], "order_by": [ - 1830, + 1836, "[leaderboard_entries_order_by!]" ], "where": [ - 1824 + 1830 ] } ], "get_league_season_leaderboard": [ - 1820, + 1826, { "args": [ - 1811, + 1817, "get_league_season_leaderboard_args!" ], "distinct_on": [ - 1831, + 1837, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -164749,23 +165361,23 @@ export default { 40 ], "order_by": [ - 1830, + 1836, "[leaderboard_entries_order_by!]" ], "where": [ - 1824 + 1830 ] } ], "get_league_season_leaderboard_aggregate": [ - 1821, + 1827, { "args": [ - 1811, + 1817, "get_league_season_leaderboard_args!" ], "distinct_on": [ - 1831, + 1837, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -164775,23 +165387,23 @@ export default { 40 ], "order_by": [ - 1830, + 1836, "[leaderboard_entries_order_by!]" ], "where": [ - 1824 + 1830 ] } ], "get_player_leaderboard_rank": [ - 3387, + 3393, { "args": [ - 1812, + 1818, "get_player_leaderboard_rank_args!" ], "distinct_on": [ - 3398, + 3404, "[player_leaderboard_rank_select_column!]" ], "limit": [ @@ -164801,23 +165413,23 @@ export default { 40 ], "order_by": [ - 3397, + 3403, "[player_leaderboard_rank_order_by!]" ], "where": [ - 3391 + 3397 ] } ], "get_player_leaderboard_rank_aggregate": [ - 3388, + 3394, { "args": [ - 1812, + 1818, "get_player_leaderboard_rank_args!" ], "distinct_on": [ - 3398, + 3404, "[player_leaderboard_rank_select_column!]" ], "limit": [ @@ -164827,19 +165439,19 @@ export default { 40 ], "order_by": [ - 3397, + 3403, "[player_leaderboard_rank_order_by!]" ], "where": [ - 3391 + 3397 ] } ], "leaderboard_entries": [ - 1820, + 1826, { "distinct_on": [ - 1831, + 1837, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -164849,19 +165461,19 @@ export default { 40 ], "order_by": [ - 1830, + 1836, "[leaderboard_entries_order_by!]" ], "where": [ - 1824 + 1830 ] } ], "leaderboard_entries_aggregate": [ - 1821, + 1827, { "distinct_on": [ - 1831, + 1837, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -164871,35 +165483,35 @@ export default { 40 ], "order_by": [ - 1830, + 1836, "[leaderboard_entries_order_by!]" ], "where": [ - 1824 + 1830 ] } ], "leaderboard_entries_stream": [ - 1820, + 1826, { "batch_size": [ 40, "Int!" ], "cursor": [ - 1836, + 1842, "[leaderboard_entries_stream_cursor_input]!" ], "where": [ - 1824 + 1830 ] } ], "league_divisions": [ - 1844, + 1850, { "distinct_on": [ - 1859, + 1865, "[league_divisions_select_column!]" ], "limit": [ @@ -164909,19 +165521,19 @@ export default { 40 ], "order_by": [ - 1857, + 1863, "[league_divisions_order_by!]" ], "where": [ - 1848 + 1854 ] } ], "league_divisions_aggregate": [ - 1845, + 1851, { "distinct_on": [ - 1859, + 1865, "[league_divisions_select_column!]" ], "limit": [ @@ -164931,44 +165543,44 @@ export default { 40 ], "order_by": [ - 1857, + 1863, "[league_divisions_order_by!]" ], "where": [ - 1848 + 1854 ] } ], "league_divisions_by_pk": [ - 1844, + 1850, { "id": [ - 4993, + 4999, "uuid!" ] } ], "league_divisions_stream": [ - 1844, + 1850, { "batch_size": [ 40, "Int!" ], "cursor": [ - 1864, + 1870, "[league_divisions_stream_cursor_input]!" ], "where": [ - 1848 + 1854 ] } ], "league_match_weeks": [ - 1872, + 1878, { "distinct_on": [ - 1893, + 1899, "[league_match_weeks_select_column!]" ], "limit": [ @@ -164978,19 +165590,19 @@ export default { 40 ], "order_by": [ - 1891, + 1897, "[league_match_weeks_order_by!]" ], "where": [ - 1881 + 1887 ] } ], "league_match_weeks_aggregate": [ - 1873, + 1879, { "distinct_on": [ - 1893, + 1899, "[league_match_weeks_select_column!]" ], "limit": [ @@ -165000,44 +165612,44 @@ export default { 40 ], "order_by": [ - 1891, + 1897, "[league_match_weeks_order_by!]" ], "where": [ - 1881 + 1887 ] } ], "league_match_weeks_by_pk": [ - 1872, + 1878, { "id": [ - 4993, + 4999, "uuid!" ] } ], "league_match_weeks_stream": [ - 1872, + 1878, { "batch_size": [ 40, "Int!" ], "cursor": [ - 1901, + 1907, "[league_match_weeks_stream_cursor_input]!" ], "where": [ - 1881 + 1887 ] } ], "league_relegation_playoffs": [ - 1913, + 1919, { "distinct_on": [ - 1934, + 1940, "[league_relegation_playoffs_select_column!]" ], "limit": [ @@ -165047,19 +165659,19 @@ export default { 40 ], "order_by": [ - 1932, + 1938, "[league_relegation_playoffs_order_by!]" ], "where": [ - 1922 + 1928 ] } ], "league_relegation_playoffs_aggregate": [ - 1914, + 1920, { "distinct_on": [ - 1934, + 1940, "[league_relegation_playoffs_select_column!]" ], "limit": [ @@ -165069,44 +165681,44 @@ export default { 40 ], "order_by": [ - 1932, + 1938, "[league_relegation_playoffs_order_by!]" ], "where": [ - 1922 + 1928 ] } ], "league_relegation_playoffs_by_pk": [ - 1913, + 1919, { "id": [ - 4993, + 4999, "uuid!" ] } ], "league_relegation_playoffs_stream": [ - 1913, + 1919, { "batch_size": [ 40, "Int!" ], "cursor": [ - 1942, + 1948, "[league_relegation_playoffs_stream_cursor_input]!" ], "where": [ - 1922 + 1928 ] } ], "league_scheduling_proposals": [ - 1954, + 1960, { "distinct_on": [ - 1975, + 1981, "[league_scheduling_proposals_select_column!]" ], "limit": [ @@ -165116,19 +165728,19 @@ export default { 40 ], "order_by": [ - 1973, + 1979, "[league_scheduling_proposals_order_by!]" ], "where": [ - 1963 + 1969 ] } ], "league_scheduling_proposals_aggregate": [ - 1955, + 1961, { "distinct_on": [ - 1975, + 1981, "[league_scheduling_proposals_select_column!]" ], "limit": [ @@ -165138,44 +165750,44 @@ export default { 40 ], "order_by": [ - 1973, + 1979, "[league_scheduling_proposals_order_by!]" ], "where": [ - 1963 + 1969 ] } ], "league_scheduling_proposals_by_pk": [ - 1954, + 1960, { "id": [ - 4993, + 4999, "uuid!" ] } ], "league_scheduling_proposals_stream": [ - 1954, + 1960, { "batch_size": [ 40, "Int!" ], "cursor": [ - 1983, + 1989, "[league_scheduling_proposals_stream_cursor_input]!" ], "where": [ - 1963 + 1969 ] } ], "league_season_divisions": [ - 1995, + 2001, { "distinct_on": [ - 2014, + 2020, "[league_season_divisions_select_column!]" ], "limit": [ @@ -165185,19 +165797,19 @@ export default { 40 ], "order_by": [ - 2012, + 2018, "[league_season_divisions_order_by!]" ], "where": [ - 2002 + 2008 ] } ], "league_season_divisions_aggregate": [ - 1996, + 2002, { "distinct_on": [ - 2014, + 2020, "[league_season_divisions_select_column!]" ], "limit": [ @@ -165207,44 +165819,44 @@ export default { 40 ], "order_by": [ - 2012, + 2018, "[league_season_divisions_order_by!]" ], "where": [ - 2002 + 2008 ] } ], "league_season_divisions_by_pk": [ - 1995, + 2001, { "id": [ - 4993, + 4999, "uuid!" ] } ], "league_season_divisions_stream": [ - 1995, + 2001, { "batch_size": [ 40, "Int!" ], "cursor": [ - 2016, + 2022, "[league_season_divisions_stream_cursor_input]!" ], "where": [ - 2002 + 2008 ] } ], "league_seasons": [ - 2020, + 2026, { "distinct_on": [ - 2040, + 2046, "[league_seasons_select_column!]" ], "limit": [ @@ -165254,19 +165866,19 @@ export default { 40 ], "order_by": [ - 2037, + 2043, "[league_seasons_order_by!]" ], "where": [ - 2025 + 2031 ] } ], "league_seasons_aggregate": [ - 2021, + 2027, { "distinct_on": [ - 2040, + 2046, "[league_seasons_select_column!]" ], "limit": [ @@ -165276,44 +165888,44 @@ export default { 40 ], "order_by": [ - 2037, + 2043, "[league_seasons_order_by!]" ], "where": [ - 2025 + 2031 ] } ], "league_seasons_by_pk": [ - 2020, + 2026, { "id": [ - 4993, + 4999, "uuid!" ] } ], "league_seasons_stream": [ - 2020, + 2026, { "batch_size": [ 40, "Int!" ], "cursor": [ - 2045, + 2051, "[league_seasons_stream_cursor_input]!" ], "where": [ - 2025 + 2031 ] } ], "league_team_movements": [ - 2053, + 2059, { "distinct_on": [ - 2074, + 2080, "[league_team_movements_select_column!]" ], "limit": [ @@ -165323,19 +165935,19 @@ export default { 40 ], "order_by": [ - 2072, + 2078, "[league_team_movements_order_by!]" ], "where": [ - 2062 + 2068 ] } ], "league_team_movements_aggregate": [ - 2054, + 2060, { "distinct_on": [ - 2074, + 2080, "[league_team_movements_select_column!]" ], "limit": [ @@ -165345,44 +165957,44 @@ export default { 40 ], "order_by": [ - 2072, + 2078, "[league_team_movements_order_by!]" ], "where": [ - 2062 + 2068 ] } ], "league_team_movements_by_pk": [ - 2053, + 2059, { "id": [ - 4993, + 4999, "uuid!" ] } ], "league_team_movements_stream": [ - 2053, + 2059, { "batch_size": [ 40, "Int!" ], "cursor": [ - 2082, + 2088, "[league_team_movements_stream_cursor_input]!" ], "where": [ - 2062 + 2068 ] } ], "league_team_rosters": [ - 2094, + 2100, { "distinct_on": [ - 2115, + 2121, "[league_team_rosters_select_column!]" ], "limit": [ @@ -165392,19 +166004,19 @@ export default { 40 ], "order_by": [ - 2113, + 2119, "[league_team_rosters_order_by!]" ], "where": [ - 2103 + 2109 ] } ], "league_team_rosters_aggregate": [ - 2095, + 2101, { "distinct_on": [ - 2115, + 2121, "[league_team_rosters_select_column!]" ], "limit": [ @@ -165414,48 +166026,48 @@ export default { 40 ], "order_by": [ - 2113, + 2119, "[league_team_rosters_order_by!]" ], "where": [ - 2103 + 2109 ] } ], "league_team_rosters_by_pk": [ - 2094, + 2100, { "league_team_season_id": [ - 4993, + 4999, "uuid!" ], "player_steam_id": [ - 252, + 258, "bigint!" ] } ], "league_team_rosters_stream": [ - 2094, + 2100, { "batch_size": [ 40, "Int!" ], "cursor": [ - 2123, + 2129, "[league_team_rosters_stream_cursor_input]!" ], "where": [ - 2103 + 2109 ] } ], "league_team_seasons": [ - 2135, + 2141, { "distinct_on": [ - 2157, + 2163, "[league_team_seasons_select_column!]" ], "limit": [ @@ -165465,19 +166077,19 @@ export default { 40 ], "order_by": [ - 2155, + 2161, "[league_team_seasons_order_by!]" ], "where": [ - 2144 + 2150 ] } ], "league_team_seasons_aggregate": [ - 2136, + 2142, { "distinct_on": [ - 2157, + 2163, "[league_team_seasons_select_column!]" ], "limit": [ @@ -165487,44 +166099,44 @@ export default { 40 ], "order_by": [ - 2155, + 2161, "[league_team_seasons_order_by!]" ], "where": [ - 2144 + 2150 ] } ], "league_team_seasons_by_pk": [ - 2135, + 2141, { "id": [ - 4993, + 4999, "uuid!" ] } ], "league_team_seasons_stream": [ - 2135, + 2141, { "batch_size": [ 40, "Int!" ], "cursor": [ - 2165, + 2171, "[league_team_seasons_stream_cursor_input]!" ], "where": [ - 2144 + 2150 ] } ], "league_teams": [ - 2177, + 2183, { "distinct_on": [ - 2190, + 2196, "[league_teams_select_column!]" ], "limit": [ @@ -165534,19 +166146,19 @@ export default { 40 ], "order_by": [ - 2188, + 2194, "[league_teams_order_by!]" ], "where": [ - 2180 + 2186 ] } ], "league_teams_aggregate": [ - 2178, + 2184, { "distinct_on": [ - 2190, + 2196, "[league_teams_select_column!]" ], "limit": [ @@ -165556,44 +166168,44 @@ export default { 40 ], "order_by": [ - 2188, + 2194, "[league_teams_order_by!]" ], "where": [ - 2180 + 2186 ] } ], "league_teams_by_pk": [ - 2177, + 2183, { "id": [ - 4993, + 4999, "uuid!" ] } ], "league_teams_stream": [ - 2177, + 2183, { "batch_size": [ 40, "Int!" ], "cursor": [ - 2192, + 2198, "[league_teams_stream_cursor_input]!" ], "where": [ - 2180 + 2186 ] } ], "lobbies": [ - 2196, + 2202, { "distinct_on": [ - 2209, + 2215, "[lobbies_select_column!]" ], "limit": [ @@ -165603,19 +166215,19 @@ export default { 40 ], "order_by": [ - 2207, + 2213, "[lobbies_order_by!]" ], "where": [ - 2199 + 2205 ] } ], "lobbies_aggregate": [ - 2197, + 2203, { "distinct_on": [ - 2209, + 2215, "[lobbies_select_column!]" ], "limit": [ @@ -165625,44 +166237,44 @@ export default { 40 ], "order_by": [ - 2207, + 2213, "[lobbies_order_by!]" ], "where": [ - 2199 + 2205 ] } ], "lobbies_by_pk": [ - 2196, + 2202, { "id": [ - 4993, + 4999, "uuid!" ] } ], "lobbies_stream": [ - 2196, + 2202, { "batch_size": [ 40, "Int!" ], "cursor": [ - 2211, + 2217, "[lobbies_stream_cursor_input]!" ], "where": [ - 2199 + 2205 ] } ], "lobby_players": [ - 2215, + 2221, { "distinct_on": [ - 2238, + 2244, "[lobby_players_select_column!]" ], "limit": [ @@ -165672,19 +166284,19 @@ export default { 40 ], "order_by": [ - 2236, + 2242, "[lobby_players_order_by!]" ], "where": [ - 2226 + 2232 ] } ], "lobby_players_aggregate": [ - 2216, + 2222, { "distinct_on": [ - 2238, + 2244, "[lobby_players_select_column!]" ], "limit": [ @@ -165694,48 +166306,48 @@ export default { 40 ], "order_by": [ - 2236, + 2242, "[lobby_players_order_by!]" ], "where": [ - 2226 + 2232 ] } ], "lobby_players_by_pk": [ - 2215, + 2221, { "lobby_id": [ - 4993, + 4999, "uuid!" ], "steam_id": [ - 252, + 258, "bigint!" ] } ], "lobby_players_stream": [ - 2215, + 2221, { "batch_size": [ 40, "Int!" ], "cursor": [ - 2248, + 2254, "[lobby_players_stream_cursor_input]!" ], "where": [ - 2226 + 2232 ] } ], "map_pools": [ - 2260, + 2266, { "distinct_on": [ - 2273, + 2279, "[map_pools_select_column!]" ], "limit": [ @@ -165745,19 +166357,19 @@ export default { 40 ], "order_by": [ - 2271, + 2277, "[map_pools_order_by!]" ], "where": [ - 2263 + 2269 ] } ], "map_pools_aggregate": [ - 2261, + 2267, { "distinct_on": [ - 2273, + 2279, "[map_pools_select_column!]" ], "limit": [ @@ -165767,44 +166379,44 @@ export default { 40 ], "order_by": [ - 2271, + 2277, "[map_pools_order_by!]" ], "where": [ - 2263 + 2269 ] } ], "map_pools_by_pk": [ - 2260, + 2266, { "id": [ - 4993, + 4999, "uuid!" ] } ], "map_pools_stream": [ - 2260, + 2266, { "batch_size": [ 40, "Int!" ], "cursor": [ - 2275, + 2281, "[map_pools_stream_cursor_input]!" ], "where": [ - 2263 + 2269 ] } ], "maps": [ - 2279, + 2285, { "distinct_on": [ - 2300, + 2306, "[maps_select_column!]" ], "limit": [ @@ -165814,19 +166426,19 @@ export default { 40 ], "order_by": [ - 2298, + 2304, "[maps_order_by!]" ], "where": [ - 2288 + 2294 ] } ], "maps_aggregate": [ - 2280, + 2286, { "distinct_on": [ - 2300, + 2306, "[maps_select_column!]" ], "limit": [ @@ -165836,44 +166448,44 @@ export default { 40 ], "order_by": [ - 2298, + 2304, "[maps_order_by!]" ], "where": [ - 2288 + 2294 ] } ], "maps_by_pk": [ - 2279, + 2285, { "id": [ - 4993, + 4999, "uuid!" ] } ], "maps_stream": [ - 2279, + 2285, { "batch_size": [ 40, "Int!" ], "cursor": [ - 2304, + 2310, "[maps_stream_cursor_input]!" ], "where": [ - 2288 + 2294 ] } ], "match_clips": [ - 2308, + 2314, { "distinct_on": [ - 2330, + 2336, "[match_clips_select_column!]" ], "limit": [ @@ -165883,19 +166495,19 @@ export default { 40 ], "order_by": [ - 2328, + 2334, "[match_clips_order_by!]" ], "where": [ - 2317 + 2323 ] } ], "match_clips_aggregate": [ - 2309, + 2315, { "distinct_on": [ - 2330, + 2336, "[match_clips_select_column!]" ], "limit": [ @@ -165905,44 +166517,44 @@ export default { 40 ], "order_by": [ - 2328, + 2334, "[match_clips_order_by!]" ], "where": [ - 2317 + 2323 ] } ], "match_clips_by_pk": [ - 2308, + 2314, { "id": [ - 4993, + 4999, "uuid!" ] } ], "match_clips_stream": [ - 2308, + 2314, { "batch_size": [ 40, "Int!" ], "cursor": [ - 2338, + 2344, "[match_clips_stream_cursor_input]!" ], "where": [ - 2317 + 2323 ] } ], "match_demo_sessions": [ - 2350, + 2356, { "distinct_on": [ - 2376, + 2382, "[match_demo_sessions_select_column!]" ], "limit": [ @@ -165952,19 +166564,19 @@ export default { 40 ], "order_by": [ - 2373, + 2379, "[match_demo_sessions_order_by!]" ], "where": [ - 2360 + 2366 ] } ], "match_demo_sessions_aggregate": [ - 2351, + 2357, { "distinct_on": [ - 2376, + 2382, "[match_demo_sessions_select_column!]" ], "limit": [ @@ -165974,44 +166586,44 @@ export default { 40 ], "order_by": [ - 2373, + 2379, "[match_demo_sessions_order_by!]" ], "where": [ - 2360 + 2366 ] } ], "match_demo_sessions_by_pk": [ - 2350, + 2356, { "id": [ - 4993, + 4999, "uuid!" ] } ], "match_demo_sessions_stream": [ - 2350, + 2356, { "batch_size": [ 40, "Int!" ], "cursor": [ - 2384, + 2390, "[match_demo_sessions_stream_cursor_input]!" ], "where": [ - 2360 + 2366 ] } ], "match_lineup_players": [ - 2396, + 2402, { "distinct_on": [ - 2419, + 2425, "[match_lineup_players_select_column!]" ], "limit": [ @@ -166021,19 +166633,19 @@ export default { 40 ], "order_by": [ - 2417, + 2423, "[match_lineup_players_order_by!]" ], "where": [ - 2407 + 2413 ] } ], "match_lineup_players_aggregate": [ - 2397, + 2403, { "distinct_on": [ - 2419, + 2425, "[match_lineup_players_select_column!]" ], "limit": [ @@ -166043,44 +166655,44 @@ export default { 40 ], "order_by": [ - 2417, + 2423, "[match_lineup_players_order_by!]" ], "where": [ - 2407 + 2413 ] } ], "match_lineup_players_by_pk": [ - 2396, + 2402, { "id": [ - 4993, + 4999, "uuid!" ] } ], "match_lineup_players_stream": [ - 2396, + 2402, { "batch_size": [ 40, "Int!" ], "cursor": [ - 2429, + 2435, "[match_lineup_players_stream_cursor_input]!" ], "where": [ - 2407 + 2413 ] } ], "match_lineups": [ - 2441, + 2447, { "distinct_on": [ - 2463, + 2469, "[match_lineups_select_column!]" ], "limit": [ @@ -166090,19 +166702,19 @@ export default { 40 ], "order_by": [ - 2461, + 2467, "[match_lineups_order_by!]" ], "where": [ - 2450 + 2456 ] } ], "match_lineups_aggregate": [ - 2442, + 2448, { "distinct_on": [ - 2463, + 2469, "[match_lineups_select_column!]" ], "limit": [ @@ -166112,44 +166724,44 @@ export default { 40 ], "order_by": [ - 2461, + 2467, "[match_lineups_order_by!]" ], "where": [ - 2450 + 2456 ] } ], "match_lineups_by_pk": [ - 2441, + 2447, { "id": [ - 4993, + 4999, "uuid!" ] } ], "match_lineups_stream": [ - 2441, + 2447, { "batch_size": [ 40, "Int!" ], "cursor": [ - 2471, + 2477, "[match_lineups_stream_cursor_input]!" ], "where": [ - 2450 + 2456 ] } ], "match_map_demos": [ - 2483, + 2489, { "distinct_on": [ - 2512, + 2518, "[match_map_demos_select_column!]" ], "limit": [ @@ -166159,19 +166771,19 @@ export default { 40 ], "order_by": [ - 2509, + 2515, "[match_map_demos_order_by!]" ], "where": [ - 2495 + 2501 ] } ], "match_map_demos_aggregate": [ - 2484, + 2490, { "distinct_on": [ - 2512, + 2518, "[match_map_demos_select_column!]" ], "limit": [ @@ -166181,44 +166793,44 @@ export default { 40 ], "order_by": [ - 2509, + 2515, "[match_map_demos_order_by!]" ], "where": [ - 2495 + 2501 ] } ], "match_map_demos_by_pk": [ - 2483, + 2489, { "id": [ - 4993, + 4999, "uuid!" ] } ], "match_map_demos_stream": [ - 2483, + 2489, { "batch_size": [ 40, "Int!" ], "cursor": [ - 2522, + 2528, "[match_map_demos_stream_cursor_input]!" ], "where": [ - 2495 + 2501 ] } ], "match_map_rounds": [ - 2534, + 2540, { "distinct_on": [ - 2555, + 2561, "[match_map_rounds_select_column!]" ], "limit": [ @@ -166228,19 +166840,19 @@ export default { 40 ], "order_by": [ - 2553, + 2559, "[match_map_rounds_order_by!]" ], "where": [ - 2543 + 2549 ] } ], "match_map_rounds_aggregate": [ - 2535, + 2541, { "distinct_on": [ - 2555, + 2561, "[match_map_rounds_select_column!]" ], "limit": [ @@ -166250,44 +166862,44 @@ export default { 40 ], "order_by": [ - 2553, + 2559, "[match_map_rounds_order_by!]" ], "where": [ - 2543 + 2549 ] } ], "match_map_rounds_by_pk": [ - 2534, + 2540, { "id": [ - 4993, + 4999, "uuid!" ] } ], "match_map_rounds_stream": [ - 2534, + 2540, { "batch_size": [ 40, "Int!" ], "cursor": [ - 2563, + 2569, "[match_map_rounds_stream_cursor_input]!" ], "where": [ - 2543 + 2549 ] } ], "match_map_veto_picks": [ - 2575, + 2581, { "distinct_on": [ - 2593, + 2599, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -166297,19 +166909,19 @@ export default { 40 ], "order_by": [ - 2591, + 2597, "[match_map_veto_picks_order_by!]" ], "where": [ - 2582 + 2588 ] } ], "match_map_veto_picks_aggregate": [ - 2576, + 2582, { "distinct_on": [ - 2593, + 2599, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -166319,44 +166931,44 @@ export default { 40 ], "order_by": [ - 2591, + 2597, "[match_map_veto_picks_order_by!]" ], "where": [ - 2582 + 2588 ] } ], "match_map_veto_picks_by_pk": [ - 2575, + 2581, { "id": [ - 4993, + 4999, "uuid!" ] } ], "match_map_veto_picks_stream": [ - 2575, + 2581, { "batch_size": [ 40, "Int!" ], "cursor": [ - 2595, + 2601, "[match_map_veto_picks_stream_cursor_input]!" ], "where": [ - 2582 + 2588 ] } ], "match_maps": [ - 2599, + 2605, { "distinct_on": [ - 2621, + 2627, "[match_maps_select_column!]" ], "limit": [ @@ -166366,19 +166978,19 @@ export default { 40 ], "order_by": [ - 2619, + 2625, "[match_maps_order_by!]" ], "where": [ - 2608 + 2614 ] } ], "match_maps_aggregate": [ - 2600, + 2606, { "distinct_on": [ - 2621, + 2627, "[match_maps_select_column!]" ], "limit": [ @@ -166388,44 +167000,44 @@ export default { 40 ], "order_by": [ - 2619, + 2625, "[match_maps_order_by!]" ], "where": [ - 2608 + 2614 ] } ], "match_maps_by_pk": [ - 2599, + 2605, { "id": [ - 4993, + 4999, "uuid!" ] } ], "match_maps_stream": [ - 2599, + 2605, { "batch_size": [ 40, "Int!" ], "cursor": [ - 2629, + 2635, "[match_maps_stream_cursor_input]!" ], "where": [ - 2608 + 2614 ] } ], "match_options": [ - 2641, + 2647, { "distinct_on": [ - 2656, + 2662, "[match_options_select_column!]" ], "limit": [ @@ -166435,19 +167047,19 @@ export default { 40 ], "order_by": [ - 2654, + 2660, "[match_options_order_by!]" ], "where": [ - 2645 + 2651 ] } ], "match_options_aggregate": [ - 2642, + 2648, { "distinct_on": [ - 2656, + 2662, "[match_options_select_column!]" ], "limit": [ @@ -166457,44 +167069,44 @@ export default { 40 ], "order_by": [ - 2654, + 2660, "[match_options_order_by!]" ], "where": [ - 2645 + 2651 ] } ], "match_options_by_pk": [ - 2641, + 2647, { "id": [ - 4993, + 4999, "uuid!" ] } ], "match_options_stream": [ - 2641, + 2647, { "batch_size": [ 40, "Int!" ], "cursor": [ - 2661, + 2667, "[match_options_stream_cursor_input]!" ], "where": [ - 2645 + 2651 ] } ], "match_region_veto_picks": [ - 2669, + 2675, { "distinct_on": [ - 2687, + 2693, "[match_region_veto_picks_select_column!]" ], "limit": [ @@ -166504,19 +167116,19 @@ export default { 40 ], "order_by": [ - 2685, + 2691, "[match_region_veto_picks_order_by!]" ], "where": [ - 2676 + 2682 ] } ], "match_region_veto_picks_aggregate": [ - 2670, + 2676, { "distinct_on": [ - 2687, + 2693, "[match_region_veto_picks_select_column!]" ], "limit": [ @@ -166526,44 +167138,44 @@ export default { 40 ], "order_by": [ - 2685, + 2691, "[match_region_veto_picks_order_by!]" ], "where": [ - 2676 + 2682 ] } ], "match_region_veto_picks_by_pk": [ - 2669, + 2675, { "id": [ - 4993, + 4999, "uuid!" ] } ], "match_region_veto_picks_stream": [ - 2669, + 2675, { "batch_size": [ 40, "Int!" ], "cursor": [ - 2689, + 2695, "[match_region_veto_picks_stream_cursor_input]!" ], "where": [ - 2676 + 2682 ] } ], "match_streams": [ - 2693, + 2699, { "distinct_on": [ - 2721, + 2727, "[match_streams_select_column!]" ], "limit": [ @@ -166573,19 +167185,19 @@ export default { 40 ], "order_by": [ - 2718, + 2724, "[match_streams_order_by!]" ], "where": [ - 2705 + 2711 ] } ], "match_streams_aggregate": [ - 2694, + 2700, { "distinct_on": [ - 2721, + 2727, "[match_streams_select_column!]" ], "limit": [ @@ -166595,44 +167207,44 @@ export default { 40 ], "order_by": [ - 2718, + 2724, "[match_streams_order_by!]" ], "where": [ - 2705 + 2711 ] } ], "match_streams_by_pk": [ - 2693, + 2699, { "id": [ - 4993, + 4999, "uuid!" ] } ], "match_streams_stream": [ - 2693, + 2699, { "batch_size": [ 40, "Int!" ], "cursor": [ - 2731, + 2737, "[match_streams_stream_cursor_input]!" ], "where": [ - 2705 + 2711 ] } ], "match_type_cfgs": [ - 2743, + 2749, { "distinct_on": [ - 2755, + 2761, "[match_type_cfgs_select_column!]" ], "limit": [ @@ -166642,19 +167254,19 @@ export default { 40 ], "order_by": [ - 2753, + 2759, "[match_type_cfgs_order_by!]" ], "where": [ - 2746 + 2752 ] } ], "match_type_cfgs_aggregate": [ - 2744, + 2750, { "distinct_on": [ - 2755, + 2761, "[match_type_cfgs_select_column!]" ], "limit": [ @@ -166664,44 +167276,44 @@ export default { 40 ], "order_by": [ - 2753, + 2759, "[match_type_cfgs_order_by!]" ], "where": [ - 2746 + 2752 ] } ], "match_type_cfgs_by_pk": [ - 2743, + 2749, { "type": [ - 735, + 741, "e_game_cfg_types_enum!" ] } ], "match_type_cfgs_stream": [ - 2743, + 2749, { "batch_size": [ 40, "Int!" ], "cursor": [ - 2757, + 2763, "[match_type_cfgs_stream_cursor_input]!" ], "where": [ - 2746 + 2752 ] } ], "matches": [ - 2761, + 2767, { "distinct_on": [ - 2783, + 2789, "[matches_select_column!]" ], "limit": [ @@ -166711,19 +167323,19 @@ export default { 40 ], "order_by": [ - 2781, + 2787, "[matches_order_by!]" ], "where": [ - 2770 + 2776 ] } ], "matches_aggregate": [ - 2762, + 2768, { "distinct_on": [ - 2783, + 2789, "[matches_select_column!]" ], "limit": [ @@ -166733,44 +167345,44 @@ export default { 40 ], "order_by": [ - 2781, + 2787, "[matches_order_by!]" ], "where": [ - 2770 + 2776 ] } ], "matches_by_pk": [ - 2761, + 2767, { "id": [ - 4993, + 4999, "uuid!" ] } ], "matches_stream": [ - 2761, + 2767, { "batch_size": [ 40, "Int!" ], "cursor": [ - 2791, + 2797, "[matches_stream_cursor_input]!" ], "where": [ - 2770 + 2776 ] } ], "migration_hashes_hashes": [ - 2803, + 2809, { "distinct_on": [ - 2815, + 2821, "[migration_hashes_hashes_select_column!]" ], "limit": [ @@ -166780,19 +167392,19 @@ export default { 40 ], "order_by": [ - 2813, + 2819, "[migration_hashes_hashes_order_by!]" ], "where": [ - 2806 + 2812 ] } ], "migration_hashes_hashes_aggregate": [ - 2804, + 2810, { "distinct_on": [ - 2815, + 2821, "[migration_hashes_hashes_select_column!]" ], "limit": [ @@ -166802,16 +167414,16 @@ export default { 40 ], "order_by": [ - 2813, + 2819, "[migration_hashes_hashes_order_by!]" ], "where": [ - 2806 + 2812 ] } ], "migration_hashes_hashes_by_pk": [ - 2803, + 2809, { "name": [ 80, @@ -166820,26 +167432,26 @@ export default { } ], "migration_hashes_hashes_stream": [ - 2803, + 2809, { "batch_size": [ 40, "Int!" ], "cursor": [ - 2817, + 2823, "[migration_hashes_hashes_stream_cursor_input]!" ], "where": [ - 2806 + 2812 ] } ], "my_friends": [ - 2821, + 2827, { "distinct_on": [ - 2846, + 2852, "[my_friends_select_column!]" ], "limit": [ @@ -166849,19 +167461,19 @@ export default { 40 ], "order_by": [ - 2844, + 2850, "[my_friends_order_by!]" ], "where": [ - 2833 + 2839 ] } ], "my_friends_aggregate": [ - 2822, + 2828, { "distinct_on": [ - 2846, + 2852, "[my_friends_select_column!]" ], "limit": [ @@ -166871,35 +167483,35 @@ export default { 40 ], "order_by": [ - 2844, + 2850, "[my_friends_order_by!]" ], "where": [ - 2833 + 2839 ] } ], "my_friends_stream": [ - 2821, + 2827, { "batch_size": [ 40, "Int!" ], "cursor": [ - 2856, + 2862, "[my_friends_stream_cursor_input]!" ], "where": [ - 2833 + 2839 ] } ], "news_articles": [ - 2867, + 2873, { "distinct_on": [ - 2881, + 2887, "[news_articles_select_column!]" ], "limit": [ @@ -166909,19 +167521,19 @@ export default { 40 ], "order_by": [ - 2879, + 2885, "[news_articles_order_by!]" ], "where": [ - 2871 + 2877 ] } ], "news_articles_aggregate": [ - 2868, + 2874, { "distinct_on": [ - 2881, + 2887, "[news_articles_select_column!]" ], "limit": [ @@ -166931,44 +167543,44 @@ export default { 40 ], "order_by": [ - 2879, + 2885, "[news_articles_order_by!]" ], "where": [ - 2871 + 2877 ] } ], "news_articles_by_pk": [ - 2867, + 2873, { "id": [ - 4993, + 4999, "uuid!" ] } ], "news_articles_stream": [ - 2867, + 2873, { "batch_size": [ 40, "Int!" ], "cursor": [ - 2886, + 2892, "[news_articles_stream_cursor_input]!" ], "where": [ - 2871 + 2877 ] } ], "notifications": [ - 2894, + 2900, { "distinct_on": [ - 2922, + 2928, "[notifications_select_column!]" ], "limit": [ @@ -166978,19 +167590,19 @@ export default { 40 ], "order_by": [ - 2919, + 2925, "[notifications_order_by!]" ], "where": [ - 2906 + 2912 ] } ], "notifications_aggregate": [ - 2895, + 2901, { "distinct_on": [ - 2922, + 2928, "[notifications_select_column!]" ], "limit": [ @@ -167000,44 +167612,44 @@ export default { 40 ], "order_by": [ - 2919, + 2925, "[notifications_order_by!]" ], "where": [ - 2906 + 2912 ] } ], "notifications_by_pk": [ - 2894, + 2900, { "id": [ - 4993, + 4999, "uuid!" ] } ], "notifications_stream": [ - 2894, + 2900, { "batch_size": [ 40, "Int!" ], "cursor": [ - 2932, + 2938, "[notifications_stream_cursor_input]!" ], "where": [ - 2906 + 2912 ] } ], "pending_match_import_players": [ - 2947, + 2953, { "distinct_on": [ - 2968, + 2974, "[pending_match_import_players_select_column!]" ], "limit": [ @@ -167047,19 +167659,19 @@ export default { 40 ], "order_by": [ - 2966, + 2972, "[pending_match_import_players_order_by!]" ], "where": [ - 2956 + 2962 ] } ], "pending_match_import_players_aggregate": [ - 2948, + 2954, { "distinct_on": [ - 2968, + 2974, "[pending_match_import_players_select_column!]" ], "limit": [ @@ -167069,48 +167681,48 @@ export default { 40 ], "order_by": [ - 2966, + 2972, "[pending_match_import_players_order_by!]" ], "where": [ - 2956 + 2962 ] } ], "pending_match_import_players_by_pk": [ - 2947, + 2953, { "steam_id": [ - 252, + 258, "bigint!" ], "valve_match_id": [ - 2944, + 2950, "numeric!" ] } ], "pending_match_import_players_stream": [ - 2947, + 2953, { "batch_size": [ 40, "Int!" ], "cursor": [ - 2976, + 2982, "[pending_match_import_players_stream_cursor_input]!" ], "where": [ - 2956 + 2962 ] } ], "pending_match_imports": [ - 2988, + 2994, { "distinct_on": [ - 3003, + 3009, "[pending_match_imports_select_column!]" ], "limit": [ @@ -167120,19 +167732,19 @@ export default { 40 ], "order_by": [ - 3001, + 3007, "[pending_match_imports_order_by!]" ], "where": [ - 2992 + 2998 ] } ], "pending_match_imports_aggregate": [ - 2989, + 2995, { "distinct_on": [ - 3003, + 3009, "[pending_match_imports_select_column!]" ], "limit": [ @@ -167142,44 +167754,44 @@ export default { 40 ], "order_by": [ - 3001, + 3007, "[pending_match_imports_order_by!]" ], "where": [ - 2992 + 2998 ] } ], "pending_match_imports_by_pk": [ - 2988, + 2994, { "valve_match_id": [ - 2944, + 2950, "numeric!" ] } ], "pending_match_imports_stream": [ - 2988, + 2994, { "batch_size": [ 40, "Int!" ], "cursor": [ - 3008, + 3014, "[pending_match_imports_stream_cursor_input]!" ], "where": [ - 2992 + 2998 ] } ], "player_aim_stats_demo": [ - 3016, + 3022, { "distinct_on": [ - 3030, + 3036, "[player_aim_stats_demo_select_column!]" ], "limit": [ @@ -167189,19 +167801,19 @@ export default { 40 ], "order_by": [ - 3028, + 3034, "[player_aim_stats_demo_order_by!]" ], "where": [ - 3020 + 3026 ] } ], "player_aim_stats_demo_aggregate": [ - 3017, + 3023, { "distinct_on": [ - 3030, + 3036, "[player_aim_stats_demo_select_column!]" ], "limit": [ @@ -167211,48 +167823,48 @@ export default { 40 ], "order_by": [ - 3028, + 3034, "[player_aim_stats_demo_order_by!]" ], "where": [ - 3020 + 3026 ] } ], "player_aim_stats_demo_by_pk": [ - 3016, + 3022, { "attacker_steam_id": [ - 252, + 258, "bigint!" ], "match_map_id": [ - 4993, + 4999, "uuid!" ] } ], "player_aim_stats_demo_stream": [ - 3016, + 3022, { "batch_size": [ 40, "Int!" ], "cursor": [ - 3035, + 3041, "[player_aim_stats_demo_stream_cursor_input]!" ], "where": [ - 3020 + 3026 ] } ], "player_aim_weapon_stats": [ - 3043, + 3049, { "distinct_on": [ - 3064, + 3070, "[player_aim_weapon_stats_select_column!]" ], "limit": [ @@ -167262,19 +167874,19 @@ export default { 40 ], "order_by": [ - 3062, + 3068, "[player_aim_weapon_stats_order_by!]" ], "where": [ - 3052 + 3058 ] } ], "player_aim_weapon_stats_aggregate": [ - 3044, + 3050, { "distinct_on": [ - 3064, + 3070, "[player_aim_weapon_stats_select_column!]" ], "limit": [ @@ -167284,23 +167896,23 @@ export default { 40 ], "order_by": [ - 3062, + 3068, "[player_aim_weapon_stats_order_by!]" ], "where": [ - 3052 + 3058 ] } ], "player_aim_weapon_stats_by_pk": [ - 3043, + 3049, { "match_map_id": [ - 4993, + 4999, "uuid!" ], "steam_id": [ - 252, + 258, "bigint!" ], "weapon_class": [ @@ -167310,26 +167922,26 @@ export default { } ], "player_aim_weapon_stats_stream": [ - 3043, + 3049, { "batch_size": [ 40, "Int!" ], "cursor": [ - 3072, + 3078, "[player_aim_weapon_stats_stream_cursor_input]!" ], "where": [ - 3052 + 3058 ] } ], "player_assists": [ - 3084, + 3090, { "distinct_on": [ - 3107, + 3113, "[player_assists_select_column!]" ], "limit": [ @@ -167339,19 +167951,19 @@ export default { 40 ], "order_by": [ - 3105, + 3111, "[player_assists_order_by!]" ], "where": [ - 3095 + 3101 ] } ], "player_assists_aggregate": [ - 3085, + 3091, { "distinct_on": [ - 3107, + 3113, "[player_assists_select_column!]" ], "limit": [ @@ -167361,56 +167973,56 @@ export default { 40 ], "order_by": [ - 3105, + 3111, "[player_assists_order_by!]" ], "where": [ - 3095 + 3101 ] } ], "player_assists_by_pk": [ - 3084, + 3090, { "attacked_steam_id": [ - 252, + 258, "bigint!" ], "attacker_steam_id": [ - 252, + 258, "bigint!" ], "match_map_id": [ - 4993, + 4999, "uuid!" ], "time": [ - 4493, + 4499, "timestamptz!" ] } ], "player_assists_stream": [ - 3084, + 3090, { "batch_size": [ 40, "Int!" ], "cursor": [ - 3117, + 3123, "[player_assists_stream_cursor_input]!" ], "where": [ - 3095 + 3101 ] } ], "player_career_stats_v": [ - 3129, + 3135, { "distinct_on": [ - 3137, + 3143, "[player_career_stats_v_select_column!]" ], "limit": [ @@ -167420,19 +168032,19 @@ export default { 40 ], "order_by": [ - 3136, + 3142, "[player_career_stats_v_order_by!]" ], "where": [ - 3133 + 3139 ] } ], "player_career_stats_v_aggregate": [ - 3130, + 3136, { "distinct_on": [ - 3137, + 3143, "[player_career_stats_v_select_column!]" ], "limit": [ @@ -167442,35 +168054,35 @@ export default { 40 ], "order_by": [ - 3136, + 3142, "[player_career_stats_v_order_by!]" ], "where": [ - 3133 + 3139 ] } ], "player_career_stats_v_stream": [ - 3129, + 3135, { "batch_size": [ 40, "Int!" ], "cursor": [ - 3141, + 3147, "[player_career_stats_v_stream_cursor_input]!" ], "where": [ - 3133 + 3139 ] } ], "player_damages": [ - 3147, + 3153, { "distinct_on": [ - 3168, + 3174, "[player_damages_select_column!]" ], "limit": [ @@ -167480,19 +168092,19 @@ export default { 40 ], "order_by": [ - 3166, + 3172, "[player_damages_order_by!]" ], "where": [ - 3156 + 3162 ] } ], "player_damages_aggregate": [ - 3148, + 3154, { "distinct_on": [ - 3168, + 3174, "[player_damages_select_column!]" ], "limit": [ @@ -167502,52 +168114,52 @@ export default { 40 ], "order_by": [ - 3166, + 3172, "[player_damages_order_by!]" ], "where": [ - 3156 + 3162 ] } ], "player_damages_by_pk": [ - 3147, + 3153, { "id": [ - 4993, + 4999, "uuid!" ], "match_map_id": [ - 4993, + 4999, "uuid!" ], "time": [ - 4493, + 4499, "timestamptz!" ] } ], "player_damages_stream": [ - 3147, + 3153, { "batch_size": [ 40, "Int!" ], "cursor": [ - 3176, + 3182, "[player_damages_stream_cursor_input]!" ], "where": [ - 3156 + 3162 ] } ], "player_elo": [ - 3188, + 3194, { "distinct_on": [ - 3202, + 3208, "[player_elo_select_column!]" ], "limit": [ @@ -167557,19 +168169,19 @@ export default { 40 ], "order_by": [ - 3200, + 3206, "[player_elo_order_by!]" ], "where": [ - 3192 + 3198 ] } ], "player_elo_aggregate": [ - 3189, + 3195, { "distinct_on": [ - 3202, + 3208, "[player_elo_select_column!]" ], "limit": [ @@ -167579,52 +168191,52 @@ export default { 40 ], "order_by": [ - 3200, + 3206, "[player_elo_order_by!]" ], "where": [ - 3192 + 3198 ] } ], "player_elo_by_pk": [ - 3188, + 3194, { "match_id": [ - 4993, + 4999, "uuid!" ], "steam_id": [ - 252, + 258, "bigint!" ], "type": [ - 1004, + 1010, "e_match_types_enum!" ] } ], "player_elo_stream": [ - 3188, + 3194, { "batch_size": [ 40, "Int!" ], "cursor": [ - 3207, + 3213, "[player_elo_stream_cursor_input]!" ], "where": [ - 3192 + 3198 ] } ], "player_faceit_rank_history": [ - 3215, + 3221, { "distinct_on": [ - 3236, + 3242, "[player_faceit_rank_history_select_column!]" ], "limit": [ @@ -167634,19 +168246,19 @@ export default { 40 ], "order_by": [ - 3234, + 3240, "[player_faceit_rank_history_order_by!]" ], "where": [ - 3224 + 3230 ] } ], "player_faceit_rank_history_aggregate": [ - 3216, + 3222, { "distinct_on": [ - 3236, + 3242, "[player_faceit_rank_history_select_column!]" ], "limit": [ @@ -167656,44 +168268,44 @@ export default { 40 ], "order_by": [ - 3234, + 3240, "[player_faceit_rank_history_order_by!]" ], "where": [ - 3224 + 3230 ] } ], "player_faceit_rank_history_by_pk": [ - 3215, + 3221, { "id": [ - 4993, + 4999, "uuid!" ] } ], "player_faceit_rank_history_stream": [ - 3215, + 3221, { "batch_size": [ 40, "Int!" ], "cursor": [ - 3244, + 3250, "[player_faceit_rank_history_stream_cursor_input]!" ], "where": [ - 3224 + 3230 ] } ], "player_flashes": [ - 3256, + 3262, { "distinct_on": [ - 3279, + 3285, "[player_flashes_select_column!]" ], "limit": [ @@ -167703,19 +168315,19 @@ export default { 40 ], "order_by": [ - 3277, + 3283, "[player_flashes_order_by!]" ], "where": [ - 3267 + 3273 ] } ], "player_flashes_aggregate": [ - 3257, + 3263, { "distinct_on": [ - 3279, + 3285, "[player_flashes_select_column!]" ], "limit": [ @@ -167725,56 +168337,56 @@ export default { 40 ], "order_by": [ - 3277, + 3283, "[player_flashes_order_by!]" ], "where": [ - 3267 + 3273 ] } ], "player_flashes_by_pk": [ - 3256, + 3262, { "attacked_steam_id": [ - 252, + 258, "bigint!" ], "attacker_steam_id": [ - 252, + 258, "bigint!" ], "match_map_id": [ - 4993, + 4999, "uuid!" ], "time": [ - 4493, + 4499, "timestamptz!" ] } ], "player_flashes_stream": [ - 3256, + 3262, { "batch_size": [ 40, "Int!" ], "cursor": [ - 3289, + 3295, "[player_flashes_stream_cursor_input]!" ], "where": [ - 3267 + 3273 ] } ], "player_kills": [ - 3301, + 3307, { "distinct_on": [ - 3365, + 3371, "[player_kills_select_column!]" ], "limit": [ @@ -167784,19 +168396,19 @@ export default { 40 ], "order_by": [ - 3363, + 3369, "[player_kills_order_by!]" ], "where": [ - 3312 + 3318 ] } ], "player_kills_aggregate": [ - 3302, + 3308, { "distinct_on": [ - 3365, + 3371, "[player_kills_select_column!]" ], "limit": [ @@ -167806,40 +168418,40 @@ export default { 40 ], "order_by": [ - 3363, + 3369, "[player_kills_order_by!]" ], "where": [ - 3312 + 3318 ] } ], "player_kills_by_pk": [ - 3301, + 3307, { "attacked_steam_id": [ - 252, + 258, "bigint!" ], "attacker_steam_id": [ - 252, + 258, "bigint!" ], "match_map_id": [ - 4993, + 4999, "uuid!" ], "time": [ - 4493, + 4499, "timestamptz!" ] } ], "player_kills_by_weapon": [ - 3313, + 3319, { "distinct_on": [ - 3334, + 3340, "[player_kills_by_weapon_select_column!]" ], "limit": [ @@ -167849,19 +168461,19 @@ export default { 40 ], "order_by": [ - 3332, + 3338, "[player_kills_by_weapon_order_by!]" ], "where": [ - 3322 + 3328 ] } ], "player_kills_by_weapon_aggregate": [ - 3314, + 3320, { "distinct_on": [ - 3334, + 3340, "[player_kills_by_weapon_select_column!]" ], "limit": [ @@ -167871,19 +168483,19 @@ export default { 40 ], "order_by": [ - 3332, + 3338, "[player_kills_by_weapon_order_by!]" ], "where": [ - 3322 + 3328 ] } ], "player_kills_by_weapon_by_pk": [ - 3313, + 3319, { "player_steam_id": [ - 252, + 258, "bigint!" ], "with": [ @@ -167893,42 +168505,42 @@ export default { } ], "player_kills_by_weapon_stream": [ - 3313, + 3319, { "batch_size": [ 40, "Int!" ], "cursor": [ - 3342, + 3348, "[player_kills_by_weapon_stream_cursor_input]!" ], "where": [ - 3322 + 3328 ] } ], "player_kills_stream": [ - 3301, + 3307, { "batch_size": [ 40, "Int!" ], "cursor": [ - 3375, + 3381, "[player_kills_stream_cursor_input]!" ], "where": [ - 3312 + 3318 ] } ], "player_leaderboard_rank": [ - 3387, + 3393, { "distinct_on": [ - 3398, + 3404, "[player_leaderboard_rank_select_column!]" ], "limit": [ @@ -167938,19 +168550,19 @@ export default { 40 ], "order_by": [ - 3397, + 3403, "[player_leaderboard_rank_order_by!]" ], "where": [ - 3391 + 3397 ] } ], "player_leaderboard_rank_aggregate": [ - 3388, + 3394, { "distinct_on": [ - 3398, + 3404, "[player_leaderboard_rank_select_column!]" ], "limit": [ @@ -167960,35 +168572,35 @@ export default { 40 ], "order_by": [ - 3397, + 3403, "[player_leaderboard_rank_order_by!]" ], "where": [ - 3391 + 3397 ] } ], "player_leaderboard_rank_stream": [ - 3387, + 3393, { "batch_size": [ 40, "Int!" ], "cursor": [ - 3403, + 3409, "[player_leaderboard_rank_stream_cursor_input]!" ], "where": [ - 3391 + 3397 ] } ], "player_match_map_stats": [ - 3410, + 3416, { "distinct_on": [ - 3431, + 3437, "[player_match_map_stats_select_column!]" ], "limit": [ @@ -167998,19 +168610,19 @@ export default { 40 ], "order_by": [ - 3429, + 3435, "[player_match_map_stats_order_by!]" ], "where": [ - 3419 + 3425 ] } ], "player_match_map_stats_aggregate": [ - 3411, + 3417, { "distinct_on": [ - 3431, + 3437, "[player_match_map_stats_select_column!]" ], "limit": [ @@ -168020,48 +168632,48 @@ export default { 40 ], "order_by": [ - 3429, + 3435, "[player_match_map_stats_order_by!]" ], "where": [ - 3419 + 3425 ] } ], "player_match_map_stats_by_pk": [ - 3410, + 3416, { "match_map_id": [ - 4993, + 4999, "uuid!" ], "steam_id": [ - 252, + 258, "bigint!" ] } ], "player_match_map_stats_stream": [ - 3410, + 3416, { "batch_size": [ 40, "Int!" ], "cursor": [ - 3439, + 3445, "[player_match_map_stats_stream_cursor_input]!" ], "where": [ - 3419 + 3425 ] } ], "player_match_performance_v": [ - 3451, + 3457, { "distinct_on": [ - 3459, + 3465, "[player_match_performance_v_select_column!]" ], "limit": [ @@ -168071,19 +168683,19 @@ export default { 40 ], "order_by": [ - 3458, + 3464, "[player_match_performance_v_order_by!]" ], "where": [ - 3455 + 3461 ] } ], "player_match_performance_v_aggregate": [ - 3452, + 3458, { "distinct_on": [ - 3459, + 3465, "[player_match_performance_v_select_column!]" ], "limit": [ @@ -168093,35 +168705,35 @@ export default { 40 ], "order_by": [ - 3458, + 3464, "[player_match_performance_v_order_by!]" ], "where": [ - 3455 + 3461 ] } ], "player_match_performance_v_stream": [ - 3451, + 3457, { "batch_size": [ 40, "Int!" ], "cursor": [ - 3463, + 3469, "[player_match_performance_v_stream_cursor_input]!" ], "where": [ - 3455 + 3461 ] } ], "player_match_stats_v": [ - 3469, + 3475, { "distinct_on": [ - 3485, + 3491, "[player_match_stats_v_select_column!]" ], "limit": [ @@ -168131,19 +168743,19 @@ export default { 40 ], "order_by": [ - 3484, + 3490, "[player_match_stats_v_order_by!]" ], "where": [ - 3478 + 3484 ] } ], "player_match_stats_v_aggregate": [ - 3470, + 3476, { "distinct_on": [ - 3485, + 3491, "[player_match_stats_v_select_column!]" ], "limit": [ @@ -168153,35 +168765,35 @@ export default { 40 ], "order_by": [ - 3484, + 3490, "[player_match_stats_v_order_by!]" ], "where": [ - 3478 + 3484 ] } ], "player_match_stats_v_stream": [ - 3469, + 3475, { "batch_size": [ 40, "Int!" ], "cursor": [ - 3492, + 3498, "[player_match_stats_v_stream_cursor_input]!" ], "where": [ - 3478 + 3484 ] } ], "player_objectives": [ - 3502, + 3508, { "distinct_on": [ - 3523, + 3529, "[player_objectives_select_column!]" ], "limit": [ @@ -168191,19 +168803,19 @@ export default { 40 ], "order_by": [ - 3521, + 3527, "[player_objectives_order_by!]" ], "where": [ - 3511 + 3517 ] } ], "player_objectives_aggregate": [ - 3503, + 3509, { "distinct_on": [ - 3523, + 3529, "[player_objectives_select_column!]" ], "limit": [ @@ -168213,52 +168825,52 @@ export default { 40 ], "order_by": [ - 3521, + 3527, "[player_objectives_order_by!]" ], "where": [ - 3511 + 3517 ] } ], "player_objectives_by_pk": [ - 3502, + 3508, { "match_map_id": [ - 4993, + 4999, "uuid!" ], "player_steam_id": [ - 252, + 258, "bigint!" ], "time": [ - 4493, + 4499, "timestamptz!" ] } ], "player_objectives_stream": [ - 3502, + 3508, { "batch_size": [ 40, "Int!" ], "cursor": [ - 3531, + 3537, "[player_objectives_stream_cursor_input]!" ], "where": [ - 3511 + 3517 ] } ], "player_performance_v": [ - 3543, + 3549, { "distinct_on": [ - 3551, + 3557, "[player_performance_v_select_column!]" ], "limit": [ @@ -168268,19 +168880,19 @@ export default { 40 ], "order_by": [ - 3550, + 3556, "[player_performance_v_order_by!]" ], "where": [ - 3547 + 3553 ] } ], "player_performance_v_aggregate": [ - 3544, + 3550, { "distinct_on": [ - 3551, + 3557, "[player_performance_v_select_column!]" ], "limit": [ @@ -168290,35 +168902,35 @@ export default { 40 ], "order_by": [ - 3550, + 3556, "[player_performance_v_order_by!]" ], "where": [ - 3547 + 3553 ] } ], "player_performance_v_stream": [ - 3543, + 3549, { "batch_size": [ 40, "Int!" ], "cursor": [ - 3555, + 3561, "[player_performance_v_stream_cursor_input]!" ], "where": [ - 3547 + 3553 ] } ], "player_premier_rank_history": [ - 3561, + 3567, { "distinct_on": [ - 3582, + 3588, "[player_premier_rank_history_select_column!]" ], "limit": [ @@ -168328,19 +168940,19 @@ export default { 40 ], "order_by": [ - 3580, + 3586, "[player_premier_rank_history_order_by!]" ], "where": [ - 3570 + 3576 ] } ], "player_premier_rank_history_aggregate": [ - 3562, + 3568, { "distinct_on": [ - 3582, + 3588, "[player_premier_rank_history_select_column!]" ], "limit": [ @@ -168350,44 +168962,44 @@ export default { 40 ], "order_by": [ - 3580, + 3586, "[player_premier_rank_history_order_by!]" ], "where": [ - 3570 + 3576 ] } ], "player_premier_rank_history_by_pk": [ - 3561, + 3567, { "id": [ - 4993, + 4999, "uuid!" ] } ], "player_premier_rank_history_stream": [ - 3561, + 3567, { "batch_size": [ 40, "Int!" ], "cursor": [ - 3590, + 3596, "[player_premier_rank_history_stream_cursor_input]!" ], "where": [ - 3570 + 3576 ] } ], "player_sanctions": [ - 3602, + 3608, { "distinct_on": [ - 3623, + 3629, "[player_sanctions_select_column!]" ], "limit": [ @@ -168397,19 +169009,19 @@ export default { 40 ], "order_by": [ - 3621, + 3627, "[player_sanctions_order_by!]" ], "where": [ - 3611 + 3617 ] } ], "player_sanctions_aggregate": [ - 3603, + 3609, { "distinct_on": [ - 3623, + 3629, "[player_sanctions_select_column!]" ], "limit": [ @@ -168419,48 +169031,48 @@ export default { 40 ], "order_by": [ - 3621, + 3627, "[player_sanctions_order_by!]" ], "where": [ - 3611 + 3617 ] } ], "player_sanctions_by_pk": [ - 3602, + 3608, { "created_at": [ - 4493, + 4499, "timestamptz!" ], "id": [ - 4993, + 4999, "uuid!" ] } ], "player_sanctions_stream": [ - 3602, + 3608, { "batch_size": [ 40, "Int!" ], "cursor": [ - 3631, + 3637, "[player_sanctions_stream_cursor_input]!" ], "where": [ - 3611 + 3617 ] } ], "player_season_stats": [ - 3643, + 3649, { "distinct_on": [ - 3674, + 3680, "[player_season_stats_select_column!]" ], "limit": [ @@ -168470,19 +169082,19 @@ export default { 40 ], "order_by": [ - 3672, + 3678, "[player_season_stats_order_by!]" ], "where": [ - 3662 + 3668 ] } ], "player_season_stats_aggregate": [ - 3644, + 3650, { "distinct_on": [ - 3674, + 3680, "[player_season_stats_select_column!]" ], "limit": [ @@ -168492,48 +169104,48 @@ export default { 40 ], "order_by": [ - 3672, + 3678, "[player_season_stats_order_by!]" ], "where": [ - 3662 + 3668 ] } ], "player_season_stats_by_pk": [ - 3643, + 3649, { "player_steam_id": [ - 252, + 258, "bigint!" ], "season_id": [ - 4993, + 4999, "uuid!" ] } ], "player_season_stats_stream": [ - 3643, + 3649, { "batch_size": [ 40, "Int!" ], "cursor": [ - 3690, + 3696, "[player_season_stats_stream_cursor_input]!" ], "where": [ - 3662 + 3668 ] } ], "player_stats": [ - 3702, + 3708, { "distinct_on": [ - 3717, + 3723, "[player_stats_select_column!]" ], "limit": [ @@ -168543,19 +169155,19 @@ export default { 40 ], "order_by": [ - 3715, + 3721, "[player_stats_order_by!]" ], "where": [ - 3706 + 3712 ] } ], "player_stats_aggregate": [ - 3703, + 3709, { "distinct_on": [ - 3717, + 3723, "[player_stats_select_column!]" ], "limit": [ @@ -168565,44 +169177,44 @@ export default { 40 ], "order_by": [ - 3715, + 3721, "[player_stats_order_by!]" ], "where": [ - 3706 + 3712 ] } ], "player_stats_by_pk": [ - 3702, + 3708, { "player_steam_id": [ - 252, + 258, "bigint!" ] } ], "player_stats_stream": [ - 3702, + 3708, { "batch_size": [ 40, "Int!" ], "cursor": [ - 3722, + 3728, "[player_stats_stream_cursor_input]!" ], "where": [ - 3706 + 3712 ] } ], "player_steam_bot_friend": [ - 3730, + 3736, { "distinct_on": [ - 3749, + 3755, "[player_steam_bot_friend_select_column!]" ], "limit": [ @@ -168612,19 +169224,19 @@ export default { 40 ], "order_by": [ - 3746, + 3752, "[player_steam_bot_friend_order_by!]" ], "where": [ - 3735 + 3741 ] } ], "player_steam_bot_friend_aggregate": [ - 3731, + 3737, { "distinct_on": [ - 3749, + 3755, "[player_steam_bot_friend_select_column!]" ], "limit": [ @@ -168634,44 +169246,44 @@ export default { 40 ], "order_by": [ - 3746, + 3752, "[player_steam_bot_friend_order_by!]" ], "where": [ - 3735 + 3741 ] } ], "player_steam_bot_friend_by_pk": [ - 3730, + 3736, { "steam_id": [ - 252, + 258, "bigint!" ] } ], "player_steam_bot_friend_stream": [ - 3730, + 3736, { "batch_size": [ 40, "Int!" ], "cursor": [ - 3754, + 3760, "[player_steam_bot_friend_stream_cursor_input]!" ], "where": [ - 3735 + 3741 ] } ], "player_steam_match_auth": [ - 3762, + 3768, { "distinct_on": [ - 3776, + 3782, "[player_steam_match_auth_select_column!]" ], "limit": [ @@ -168681,19 +169293,19 @@ export default { 40 ], "order_by": [ - 3774, + 3780, "[player_steam_match_auth_order_by!]" ], "where": [ - 3766 + 3772 ] } ], "player_steam_match_auth_aggregate": [ - 3763, + 3769, { "distinct_on": [ - 3776, + 3782, "[player_steam_match_auth_select_column!]" ], "limit": [ @@ -168703,44 +169315,44 @@ export default { 40 ], "order_by": [ - 3774, + 3780, "[player_steam_match_auth_order_by!]" ], "where": [ - 3766 + 3772 ] } ], "player_steam_match_auth_by_pk": [ - 3762, + 3768, { "steam_id": [ - 252, + 258, "bigint!" ] } ], "player_steam_match_auth_stream": [ - 3762, + 3768, { "batch_size": [ 40, "Int!" ], "cursor": [ - 3781, + 3787, "[player_steam_match_auth_stream_cursor_input]!" ], "where": [ - 3766 + 3772 ] } ], "player_unused_utility": [ - 3789, + 3795, { "distinct_on": [ - 3810, + 3816, "[player_unused_utility_select_column!]" ], "limit": [ @@ -168750,19 +169362,19 @@ export default { 40 ], "order_by": [ - 3808, + 3814, "[player_unused_utility_order_by!]" ], "where": [ - 3798 + 3804 ] } ], "player_unused_utility_aggregate": [ - 3790, + 3796, { "distinct_on": [ - 3810, + 3816, "[player_unused_utility_select_column!]" ], "limit": [ @@ -168772,48 +169384,48 @@ export default { 40 ], "order_by": [ - 3808, + 3814, "[player_unused_utility_order_by!]" ], "where": [ - 3798 + 3804 ] } ], "player_unused_utility_by_pk": [ - 3789, + 3795, { "match_map_id": [ - 4993, + 4999, "uuid!" ], "player_steam_id": [ - 252, + 258, "bigint!" ] } ], "player_unused_utility_stream": [ - 3789, + 3795, { "batch_size": [ 40, "Int!" ], "cursor": [ - 3818, + 3824, "[player_unused_utility_stream_cursor_input]!" ], "where": [ - 3798 + 3804 ] } ], "player_utility": [ - 3830, + 3836, { "distinct_on": [ - 3851, + 3857, "[player_utility_select_column!]" ], "limit": [ @@ -168823,19 +169435,19 @@ export default { 40 ], "order_by": [ - 3849, + 3855, "[player_utility_order_by!]" ], "where": [ - 3839 + 3845 ] } ], "player_utility_aggregate": [ - 3831, + 3837, { "distinct_on": [ - 3851, + 3857, "[player_utility_select_column!]" ], "limit": [ @@ -168845,52 +169457,52 @@ export default { 40 ], "order_by": [ - 3849, + 3855, "[player_utility_order_by!]" ], "where": [ - 3839 + 3845 ] } ], "player_utility_by_pk": [ - 3830, + 3836, { "attacker_steam_id": [ - 252, + 258, "bigint!" ], "match_map_id": [ - 4993, + 4999, "uuid!" ], "time": [ - 4493, + 4499, "timestamptz!" ] } ], "player_utility_stream": [ - 3830, + 3836, { "batch_size": [ 40, "Int!" ], "cursor": [ - 3859, + 3865, "[player_utility_stream_cursor_input]!" ], "where": [ - 3839 + 3845 ] } ], "player_weapon_stats_v": [ - 3871, + 3877, { "distinct_on": [ - 3887, + 3893, "[player_weapon_stats_v_select_column!]" ], "limit": [ @@ -168900,19 +169512,19 @@ export default { 40 ], "order_by": [ - 3886, + 3892, "[player_weapon_stats_v_order_by!]" ], "where": [ - 3880 + 3886 ] } ], "player_weapon_stats_v_aggregate": [ - 3872, + 3878, { "distinct_on": [ - 3887, + 3893, "[player_weapon_stats_v_select_column!]" ], "limit": [ @@ -168922,35 +169534,35 @@ export default { 40 ], "order_by": [ - 3886, + 3892, "[player_weapon_stats_v_order_by!]" ], "where": [ - 3880 + 3886 ] } ], "player_weapon_stats_v_stream": [ - 3871, + 3877, { "batch_size": [ 40, "Int!" ], "cursor": [ - 3894, + 3900, "[player_weapon_stats_v_stream_cursor_input]!" ], "where": [ - 3880 + 3886 ] } ], "players": [ - 3904, + 3910, { "distinct_on": [ - 3919, + 3925, "[players_select_column!]" ], "limit": [ @@ -168960,19 +169572,19 @@ export default { 40 ], "order_by": [ - 3917, + 3923, "[players_order_by!]" ], "where": [ - 3908 + 3914 ] } ], "players_aggregate": [ - 3905, + 3911, { "distinct_on": [ - 3919, + 3925, "[players_select_column!]" ], "limit": [ @@ -168982,44 +169594,44 @@ export default { 40 ], "order_by": [ - 3917, + 3923, "[players_order_by!]" ], "where": [ - 3908 + 3914 ] } ], "players_by_pk": [ - 3904, + 3910, { "steam_id": [ - 252, + 258, "bigint!" ] } ], "players_stream": [ - 3904, + 3910, { "batch_size": [ 40, "Int!" ], "cursor": [ - 3924, + 3930, "[players_stream_cursor_input]!" ], "where": [ - 3908 + 3914 ] } ], "plugin_versions": [ - 3932, + 3938, { "distinct_on": [ - 3946, + 3952, "[plugin_versions_select_column!]" ], "limit": [ @@ -169029,19 +169641,19 @@ export default { 40 ], "order_by": [ - 3944, + 3950, "[plugin_versions_order_by!]" ], "where": [ - 3936 + 3942 ] } ], "plugin_versions_aggregate": [ - 3933, + 3939, { "distinct_on": [ - 3946, + 3952, "[plugin_versions_select_column!]" ], "limit": [ @@ -169051,19 +169663,19 @@ export default { 40 ], "order_by": [ - 3944, + 3950, "[plugin_versions_order_by!]" ], "where": [ - 3936 + 3942 ] } ], "plugin_versions_by_pk": [ - 3932, + 3938, { "runtime": [ - 1085, + 1091, "e_plugin_runtimes_enum!" ], "version": [ @@ -169073,26 +169685,26 @@ export default { } ], "plugin_versions_stream": [ - 3932, + 3938, { "batch_size": [ 40, "Int!" ], "cursor": [ - 3951, + 3957, "[plugin_versions_stream_cursor_input]!" ], "where": [ - 3936 + 3942 ] } ], "seasons": [ - 3963, + 3969, { "distinct_on": [ - 3978, + 3984, "[seasons_select_column!]" ], "limit": [ @@ -169102,19 +169714,19 @@ export default { 40 ], "order_by": [ - 3976, + 3982, "[seasons_order_by!]" ], "where": [ - 3967 + 3973 ] } ], "seasons_aggregate": [ - 3964, + 3970, { "distinct_on": [ - 3978, + 3984, "[seasons_select_column!]" ], "limit": [ @@ -169124,44 +169736,44 @@ export default { 40 ], "order_by": [ - 3976, + 3982, "[seasons_order_by!]" ], "where": [ - 3967 + 3973 ] } ], "seasons_by_pk": [ - 3963, + 3969, { "id": [ - 4993, + 4999, "uuid!" ] } ], "seasons_stream": [ - 3963, + 3969, { "batch_size": [ 40, "Int!" ], "cursor": [ - 3983, + 3989, "[seasons_stream_cursor_input]!" ], "where": [ - 3967 + 3973 ] } ], "server_regions": [ - 3991, + 3997, { "distinct_on": [ - 4005, + 4011, "[server_regions_select_column!]" ], "limit": [ @@ -169171,19 +169783,19 @@ export default { 40 ], "order_by": [ - 4003, + 4009, "[server_regions_order_by!]" ], "where": [ - 3995 + 4001 ] } ], "server_regions_aggregate": [ - 3992, + 3998, { "distinct_on": [ - 4005, + 4011, "[server_regions_select_column!]" ], "limit": [ @@ -169193,16 +169805,16 @@ export default { 40 ], "order_by": [ - 4003, + 4009, "[server_regions_order_by!]" ], "where": [ - 3995 + 4001 ] } ], "server_regions_by_pk": [ - 3991, + 3997, { "value": [ 80, @@ -169211,26 +169823,26 @@ export default { } ], "server_regions_stream": [ - 3991, + 3997, { "batch_size": [ 40, "Int!" ], "cursor": [ - 4010, + 4016, "[server_regions_stream_cursor_input]!" ], "where": [ - 3995 + 4001 ] } ], "servers": [ - 4018, + 4024, { "distinct_on": [ - 4042, + 4048, "[servers_select_column!]" ], "limit": [ @@ -169240,19 +169852,19 @@ export default { 40 ], "order_by": [ - 4040, + 4046, "[servers_order_by!]" ], "where": [ - 4029 + 4035 ] } ], "servers_aggregate": [ - 4019, + 4025, { "distinct_on": [ - 4042, + 4048, "[servers_select_column!]" ], "limit": [ @@ -169262,44 +169874,44 @@ export default { 40 ], "order_by": [ - 4040, + 4046, "[servers_order_by!]" ], "where": [ - 4029 + 4035 ] } ], "servers_by_pk": [ - 4018, + 4024, { "id": [ - 4993, + 4999, "uuid!" ] } ], "servers_stream": [ - 4018, + 4024, { "batch_size": [ 40, "Int!" ], "cursor": [ - 4052, + 4058, "[servers_stream_cursor_input]!" ], "where": [ - 4029 + 4035 ] } ], "settings": [ - 4064, + 4070, { "distinct_on": [ - 4076, + 4082, "[settings_select_column!]" ], "limit": [ @@ -169309,19 +169921,19 @@ export default { 40 ], "order_by": [ - 4074, + 4080, "[settings_order_by!]" ], "where": [ - 4067 + 4073 ] } ], "settings_aggregate": [ - 4065, + 4071, { "distinct_on": [ - 4076, + 4082, "[settings_select_column!]" ], "limit": [ @@ -169331,16 +169943,16 @@ export default { 40 ], "order_by": [ - 4074, + 4080, "[settings_order_by!]" ], "where": [ - 4067 + 4073 ] } ], "settings_by_pk": [ - 4064, + 4070, { "name": [ 80, @@ -169349,26 +169961,26 @@ export default { } ], "settings_stream": [ - 4064, + 4070, { "batch_size": [ 40, "Int!" ], "cursor": [ - 4078, + 4084, "[settings_stream_cursor_input]!" ], "where": [ - 4067 + 4073 ] } ], "steam_account_claims": [ - 4084, + 4090, { "distinct_on": [ - 4102, + 4108, "[steam_account_claims_select_column!]" ], "limit": [ @@ -169378,19 +169990,19 @@ export default { 40 ], "order_by": [ - 4100, + 4106, "[steam_account_claims_order_by!]" ], "where": [ - 4091 + 4097 ] } ], "steam_account_claims_aggregate": [ - 4085, + 4091, { "distinct_on": [ - 4102, + 4108, "[steam_account_claims_select_column!]" ], "limit": [ @@ -169400,44 +170012,44 @@ export default { 40 ], "order_by": [ - 4100, + 4106, "[steam_account_claims_order_by!]" ], "where": [ - 4091 + 4097 ] } ], "steam_account_claims_by_pk": [ - 4084, + 4090, { "id": [ - 4993, + 4999, "uuid!" ] } ], "steam_account_claims_stream": [ - 4084, + 4090, { "batch_size": [ 40, "Int!" ], "cursor": [ - 4104, + 4110, "[steam_account_claims_stream_cursor_input]!" ], "where": [ - 4091 + 4097 ] } ], "steam_accounts": [ - 4108, + 4114, { "distinct_on": [ - 4123, + 4129, "[steam_accounts_select_column!]" ], "limit": [ @@ -169447,19 +170059,19 @@ export default { 40 ], "order_by": [ - 4121, + 4127, "[steam_accounts_order_by!]" ], "where": [ - 4112 + 4118 ] } ], "steam_accounts_aggregate": [ - 4109, + 4115, { "distinct_on": [ - 4123, + 4129, "[steam_accounts_select_column!]" ], "limit": [ @@ -169469,44 +170081,44 @@ export default { 40 ], "order_by": [ - 4121, + 4127, "[steam_accounts_order_by!]" ], "where": [ - 4112 + 4118 ] } ], "steam_accounts_by_pk": [ - 4108, + 4114, { "id": [ - 4993, + 4999, "uuid!" ] } ], "steam_accounts_stream": [ - 4108, + 4114, { "batch_size": [ 40, "Int!" ], "cursor": [ - 4128, + 4134, "[steam_accounts_stream_cursor_input]!" ], "where": [ - 4112 + 4118 ] } ], "system_alerts": [ - 4136, + 4142, { "distinct_on": [ - 4150, + 4156, "[system_alerts_select_column!]" ], "limit": [ @@ -169516,19 +170128,19 @@ export default { 40 ], "order_by": [ - 4148, + 4154, "[system_alerts_order_by!]" ], "where": [ - 4140 + 4146 ] } ], "system_alerts_aggregate": [ - 4137, + 4143, { "distinct_on": [ - 4150, + 4156, "[system_alerts_select_column!]" ], "limit": [ @@ -169538,44 +170150,44 @@ export default { 40 ], "order_by": [ - 4148, + 4154, "[system_alerts_order_by!]" ], "where": [ - 4140 + 4146 ] } ], "system_alerts_by_pk": [ - 4136, + 4142, { "id": [ - 4993, + 4999, "uuid!" ] } ], "system_alerts_stream": [ - 4136, + 4142, { "batch_size": [ 40, "Int!" ], "cursor": [ - 4155, + 4161, "[system_alerts_stream_cursor_input]!" ], "where": [ - 4140 + 4146 ] } ], "team_invites": [ - 4163, + 4169, { "distinct_on": [ - 4184, + 4190, "[team_invites_select_column!]" ], "limit": [ @@ -169585,19 +170197,19 @@ export default { 40 ], "order_by": [ - 4182, + 4188, "[team_invites_order_by!]" ], "where": [ - 4172 + 4178 ] } ], "team_invites_aggregate": [ - 4164, + 4170, { "distinct_on": [ - 4184, + 4190, "[team_invites_select_column!]" ], "limit": [ @@ -169607,44 +170219,44 @@ export default { 40 ], "order_by": [ - 4182, + 4188, "[team_invites_order_by!]" ], "where": [ - 4172 + 4178 ] } ], "team_invites_by_pk": [ - 4163, + 4169, { "id": [ - 4993, + 4999, "uuid!" ] } ], "team_invites_stream": [ - 4163, + 4169, { "batch_size": [ 40, "Int!" ], "cursor": [ - 4192, + 4198, "[team_invites_stream_cursor_input]!" ], "where": [ - 4172 + 4178 ] } ], "team_roster": [ - 4204, + 4210, { "distinct_on": [ - 4227, + 4233, "[team_roster_select_column!]" ], "limit": [ @@ -169654,19 +170266,19 @@ export default { 40 ], "order_by": [ - 4225, + 4231, "[team_roster_order_by!]" ], "where": [ - 4215 + 4221 ] } ], "team_roster_aggregate": [ - 4205, + 4211, { "distinct_on": [ - 4227, + 4233, "[team_roster_select_column!]" ], "limit": [ @@ -169676,48 +170288,48 @@ export default { 40 ], "order_by": [ - 4225, + 4231, "[team_roster_order_by!]" ], "where": [ - 4215 + 4221 ] } ], "team_roster_by_pk": [ - 4204, + 4210, { "player_steam_id": [ - 252, + 258, "bigint!" ], "team_id": [ - 4993, + 4999, "uuid!" ] } ], "team_roster_stream": [ - 4204, + 4210, { "batch_size": [ 40, "Int!" ], "cursor": [ - 4237, + 4243, "[team_roster_stream_cursor_input]!" ], "where": [ - 4215 + 4221 ] } ], "team_scrim_alerts": [ - 4249, + 4255, { "distinct_on": [ - 4263, + 4269, "[team_scrim_alerts_select_column!]" ], "limit": [ @@ -169727,19 +170339,19 @@ export default { 40 ], "order_by": [ - 4261, + 4267, "[team_scrim_alerts_order_by!]" ], "where": [ - 4253 + 4259 ] } ], "team_scrim_alerts_aggregate": [ - 4250, + 4256, { "distinct_on": [ - 4263, + 4269, "[team_scrim_alerts_select_column!]" ], "limit": [ @@ -169749,44 +170361,44 @@ export default { 40 ], "order_by": [ - 4261, + 4267, "[team_scrim_alerts_order_by!]" ], "where": [ - 4253 + 4259 ] } ], "team_scrim_alerts_by_pk": [ - 4249, + 4255, { "id": [ - 4993, + 4999, "uuid!" ] } ], "team_scrim_alerts_stream": [ - 4249, + 4255, { "batch_size": [ 40, "Int!" ], "cursor": [ - 4268, + 4274, "[team_scrim_alerts_stream_cursor_input]!" ], "where": [ - 4253 + 4259 ] } ], "team_scrim_availability": [ - 4276, + 4282, { "distinct_on": [ - 4296, + 4302, "[team_scrim_availability_select_column!]" ], "limit": [ @@ -169796,19 +170408,19 @@ export default { 40 ], "order_by": [ - 4294, + 4300, "[team_scrim_availability_order_by!]" ], "where": [ - 4285 + 4291 ] } ], "team_scrim_availability_aggregate": [ - 4277, + 4283, { "distinct_on": [ - 4296, + 4302, "[team_scrim_availability_select_column!]" ], "limit": [ @@ -169818,44 +170430,44 @@ export default { 40 ], "order_by": [ - 4294, + 4300, "[team_scrim_availability_order_by!]" ], "where": [ - 4285 + 4291 ] } ], "team_scrim_availability_by_pk": [ - 4276, + 4282, { "id": [ - 4993, + 4999, "uuid!" ] } ], "team_scrim_availability_stream": [ - 4276, + 4282, { "batch_size": [ 40, "Int!" ], "cursor": [ - 4300, + 4306, "[team_scrim_availability_stream_cursor_input]!" ], "where": [ - 4285 + 4291 ] } ], "team_scrim_request_proposals": [ - 4304, + 4310, { "distinct_on": [ - 4325, + 4331, "[team_scrim_request_proposals_select_column!]" ], "limit": [ @@ -169865,19 +170477,19 @@ export default { 40 ], "order_by": [ - 4323, + 4329, "[team_scrim_request_proposals_order_by!]" ], "where": [ - 4313 + 4319 ] } ], "team_scrim_request_proposals_aggregate": [ - 4305, + 4311, { "distinct_on": [ - 4325, + 4331, "[team_scrim_request_proposals_select_column!]" ], "limit": [ @@ -169887,44 +170499,44 @@ export default { 40 ], "order_by": [ - 4323, + 4329, "[team_scrim_request_proposals_order_by!]" ], "where": [ - 4313 + 4319 ] } ], "team_scrim_request_proposals_by_pk": [ - 4304, + 4310, { "id": [ - 4993, + 4999, "uuid!" ] } ], "team_scrim_request_proposals_stream": [ - 4304, + 4310, { "batch_size": [ 40, "Int!" ], "cursor": [ - 4333, + 4339, "[team_scrim_request_proposals_stream_cursor_input]!" ], "where": [ - 4313 + 4319 ] } ], "team_scrim_requests": [ - 4345, + 4351, { "distinct_on": [ - 4369, + 4375, "[team_scrim_requests_select_column!]" ], "limit": [ @@ -169934,19 +170546,19 @@ export default { 40 ], "order_by": [ - 4367, + 4373, "[team_scrim_requests_order_by!]" ], "where": [ - 4356 + 4362 ] } ], "team_scrim_requests_aggregate": [ - 4346, + 4352, { "distinct_on": [ - 4369, + 4375, "[team_scrim_requests_select_column!]" ], "limit": [ @@ -169956,44 +170568,44 @@ export default { 40 ], "order_by": [ - 4367, + 4373, "[team_scrim_requests_order_by!]" ], "where": [ - 4356 + 4362 ] } ], "team_scrim_requests_by_pk": [ - 4345, + 4351, { "id": [ - 4993, + 4999, "uuid!" ] } ], "team_scrim_requests_stream": [ - 4345, + 4351, { "batch_size": [ 40, "Int!" ], "cursor": [ - 4379, + 4385, "[team_scrim_requests_stream_cursor_input]!" ], "where": [ - 4356 + 4362 ] } ], "team_scrim_settings": [ - 4391, + 4397, { "distinct_on": [ - 4406, + 4412, "[team_scrim_settings_select_column!]" ], "limit": [ @@ -170003,19 +170615,19 @@ export default { 40 ], "order_by": [ - 4404, + 4410, "[team_scrim_settings_order_by!]" ], "where": [ - 4395 + 4401 ] } ], "team_scrim_settings_aggregate": [ - 4392, + 4398, { "distinct_on": [ - 4406, + 4412, "[team_scrim_settings_select_column!]" ], "limit": [ @@ -170025,44 +170637,44 @@ export default { 40 ], "order_by": [ - 4404, + 4410, "[team_scrim_settings_order_by!]" ], "where": [ - 4395 + 4401 ] } ], "team_scrim_settings_by_pk": [ - 4391, + 4397, { "id": [ - 4993, + 4999, "uuid!" ] } ], "team_scrim_settings_stream": [ - 4391, + 4397, { "batch_size": [ 40, "Int!" ], "cursor": [ - 4411, + 4417, "[team_scrim_settings_stream_cursor_input]!" ], "where": [ - 4395 + 4401 ] } ], "team_suggestions": [ - 4419, + 4425, { "distinct_on": [ - 4433, + 4439, "[team_suggestions_select_column!]" ], "limit": [ @@ -170072,19 +170684,19 @@ export default { 40 ], "order_by": [ - 4431, + 4437, "[team_suggestions_order_by!]" ], "where": [ - 4423 + 4429 ] } ], "team_suggestions_aggregate": [ - 4420, + 4426, { "distinct_on": [ - 4433, + 4439, "[team_suggestions_select_column!]" ], "limit": [ @@ -170094,44 +170706,44 @@ export default { 40 ], "order_by": [ - 4431, + 4437, "[team_suggestions_order_by!]" ], "where": [ - 4423 + 4429 ] } ], "team_suggestions_by_pk": [ - 4419, + 4425, { "id": [ - 4993, + 4999, "uuid!" ] } ], "team_suggestions_stream": [ - 4419, + 4425, { "batch_size": [ 40, "Int!" ], "cursor": [ - 4438, + 4444, "[team_suggestions_stream_cursor_input]!" ], "where": [ - 4423 + 4429 ] } ], "teams": [ - 4446, + 4452, { "distinct_on": [ - 4470, + 4476, "[teams_select_column!]" ], "limit": [ @@ -170141,19 +170753,19 @@ export default { 40 ], "order_by": [ - 4468, + 4474, "[teams_order_by!]" ], "where": [ - 4457 + 4463 ] } ], "teams_aggregate": [ - 4447, + 4453, { "distinct_on": [ - 4470, + 4476, "[teams_select_column!]" ], "limit": [ @@ -170163,44 +170775,44 @@ export default { 40 ], "order_by": [ - 4468, + 4474, "[teams_order_by!]" ], "where": [ - 4457 + 4463 ] } ], "teams_by_pk": [ - 4446, + 4452, { "id": [ - 4993, + 4999, "uuid!" ] } ], "teams_stream": [ - 4446, + 4452, { "batch_size": [ 40, "Int!" ], "cursor": [ - 4480, + 4486, "[teams_stream_cursor_input]!" ], "where": [ - 4457 + 4463 ] } ], "tournament_awards": [ - 4495, + 4501, { "distinct_on": [ - 4517, + 4523, "[tournament_awards_select_column!]" ], "limit": [ @@ -170210,19 +170822,19 @@ export default { 40 ], "order_by": [ - 4515, + 4521, "[tournament_awards_order_by!]" ], "where": [ - 4504 + 4510 ] } ], "tournament_awards_aggregate": [ - 4496, + 4502, { "distinct_on": [ - 4517, + 4523, "[tournament_awards_select_column!]" ], "limit": [ @@ -170232,44 +170844,44 @@ export default { 40 ], "order_by": [ - 4515, + 4521, "[tournament_awards_order_by!]" ], "where": [ - 4504 + 4510 ] } ], "tournament_awards_by_pk": [ - 4495, + 4501, { "id": [ - 4993, + 4999, "uuid!" ] } ], "tournament_awards_stream": [ - 4495, + 4501, { "batch_size": [ 40, "Int!" ], "cursor": [ - 4525, + 4531, "[tournament_awards_stream_cursor_input]!" ], "where": [ - 4504 + 4510 ] } ], "tournament_brackets": [ - 4537, + 4543, { "distinct_on": [ - 4561, + 4567, "[tournament_brackets_select_column!]" ], "limit": [ @@ -170279,19 +170891,19 @@ export default { 40 ], "order_by": [ - 4559, + 4565, "[tournament_brackets_order_by!]" ], "where": [ - 4548 + 4554 ] } ], "tournament_brackets_aggregate": [ - 4538, + 4544, { "distinct_on": [ - 4561, + 4567, "[tournament_brackets_select_column!]" ], "limit": [ @@ -170301,44 +170913,44 @@ export default { 40 ], "order_by": [ - 4559, + 4565, "[tournament_brackets_order_by!]" ], "where": [ - 4548 + 4554 ] } ], "tournament_brackets_by_pk": [ - 4537, + 4543, { "id": [ - 4993, + 4999, "uuid!" ] } ], "tournament_brackets_stream": [ - 4537, + 4543, { "batch_size": [ 40, "Int!" ], "cursor": [ - 4571, + 4577, "[tournament_brackets_stream_cursor_input]!" ], "where": [ - 4548 + 4554 ] } ], "tournament_categories": [ - 4583, + 4589, { "distinct_on": [ - 4601, + 4607, "[tournament_categories_select_column!]" ], "limit": [ @@ -170348,19 +170960,19 @@ export default { 40 ], "order_by": [ - 4599, + 4605, "[tournament_categories_order_by!]" ], "where": [ - 4590 + 4596 ] } ], "tournament_categories_aggregate": [ - 4584, + 4590, { "distinct_on": [ - 4601, + 4607, "[tournament_categories_select_column!]" ], "limit": [ @@ -170370,48 +170982,48 @@ export default { 40 ], "order_by": [ - 4599, + 4605, "[tournament_categories_order_by!]" ], "where": [ - 4590 + 4596 ] } ], "tournament_categories_by_pk": [ - 4583, + 4589, { "category": [ - 1287, + 1293, "e_tournament_categories_enum!" ], "tournament_id": [ - 4993, + 4999, "uuid!" ] } ], "tournament_categories_stream": [ - 4583, + 4589, { "batch_size": [ 40, "Int!" ], "cursor": [ - 4603, + 4609, "[tournament_categories_stream_cursor_input]!" ], "where": [ - 4590 + 4596 ] } ], "tournament_organizer_teams": [ - 4607, + 4613, { "distinct_on": [ - 4625, + 4631, "[tournament_organizer_teams_select_column!]" ], "limit": [ @@ -170421,19 +171033,19 @@ export default { 40 ], "order_by": [ - 4623, + 4629, "[tournament_organizer_teams_order_by!]" ], "where": [ - 4614 + 4620 ] } ], "tournament_organizer_teams_aggregate": [ - 4608, + 4614, { "distinct_on": [ - 4625, + 4631, "[tournament_organizer_teams_select_column!]" ], "limit": [ @@ -170443,48 +171055,48 @@ export default { 40 ], "order_by": [ - 4623, + 4629, "[tournament_organizer_teams_order_by!]" ], "where": [ - 4614 + 4620 ] } ], "tournament_organizer_teams_by_pk": [ - 4607, + 4613, { "team_id": [ - 4993, + 4999, "uuid!" ], "tournament_id": [ - 4993, + 4999, "uuid!" ] } ], "tournament_organizer_teams_stream": [ - 4607, + 4613, { "batch_size": [ 40, "Int!" ], "cursor": [ - 4627, + 4633, "[tournament_organizer_teams_stream_cursor_input]!" ], "where": [ - 4614 + 4620 ] } ], "tournament_organizers": [ - 4631, + 4637, { "distinct_on": [ - 4652, + 4658, "[tournament_organizers_select_column!]" ], "limit": [ @@ -170494,19 +171106,19 @@ export default { 40 ], "order_by": [ - 4650, + 4656, "[tournament_organizers_order_by!]" ], "where": [ - 4640 + 4646 ] } ], "tournament_organizers_aggregate": [ - 4632, + 4638, { "distinct_on": [ - 4652, + 4658, "[tournament_organizers_select_column!]" ], "limit": [ @@ -170516,48 +171128,48 @@ export default { 40 ], "order_by": [ - 4650, + 4656, "[tournament_organizers_order_by!]" ], "where": [ - 4640 + 4646 ] } ], "tournament_organizers_by_pk": [ - 4631, + 4637, { "steam_id": [ - 252, + 258, "bigint!" ], "tournament_id": [ - 4993, + 4999, "uuid!" ] } ], "tournament_organizers_stream": [ - 4631, + 4637, { "batch_size": [ 40, "Int!" ], "cursor": [ - 4660, + 4666, "[tournament_organizers_stream_cursor_input]!" ], "where": [ - 4640 + 4646 ] } ], "tournament_prizes": [ - 4672, + 4678, { "distinct_on": [ - 4693, + 4699, "[tournament_prizes_select_column!]" ], "limit": [ @@ -170567,19 +171179,19 @@ export default { 40 ], "order_by": [ - 4691, + 4697, "[tournament_prizes_order_by!]" ], "where": [ - 4681 + 4687 ] } ], "tournament_prizes_aggregate": [ - 4673, + 4679, { "distinct_on": [ - 4693, + 4699, "[tournament_prizes_select_column!]" ], "limit": [ @@ -170589,44 +171201,44 @@ export default { 40 ], "order_by": [ - 4691, + 4697, "[tournament_prizes_order_by!]" ], "where": [ - 4681 + 4687 ] } ], "tournament_prizes_by_pk": [ - 4672, + 4678, { "id": [ - 4993, + 4999, "uuid!" ] } ], "tournament_prizes_stream": [ - 4672, + 4678, { "batch_size": [ 40, "Int!" ], "cursor": [ - 4701, + 4707, "[tournament_prizes_stream_cursor_input]!" ], "where": [ - 4681 + 4687 ] } ], "tournament_stage_windows": [ - 4713, + 4719, { "distinct_on": [ - 4734, + 4740, "[tournament_stage_windows_select_column!]" ], "limit": [ @@ -170636,19 +171248,19 @@ export default { 40 ], "order_by": [ - 4732, + 4738, "[tournament_stage_windows_order_by!]" ], "where": [ - 4722 + 4728 ] } ], "tournament_stage_windows_aggregate": [ - 4714, + 4720, { "distinct_on": [ - 4734, + 4740, "[tournament_stage_windows_select_column!]" ], "limit": [ @@ -170658,44 +171270,44 @@ export default { 40 ], "order_by": [ - 4732, + 4738, "[tournament_stage_windows_order_by!]" ], "where": [ - 4722 + 4728 ] } ], "tournament_stage_windows_by_pk": [ - 4713, + 4719, { "id": [ - 4993, + 4999, "uuid!" ] } ], "tournament_stage_windows_stream": [ - 4713, + 4719, { "batch_size": [ 40, "Int!" ], "cursor": [ - 4742, + 4748, "[tournament_stage_windows_stream_cursor_input]!" ], "where": [ - 4722 + 4728 ] } ], "tournament_stages": [ - 4754, + 4760, { "distinct_on": [ - 4783, + 4789, "[tournament_stages_select_column!]" ], "limit": [ @@ -170705,19 +171317,19 @@ export default { 40 ], "order_by": [ - 4780, + 4786, "[tournament_stages_order_by!]" ], "where": [ - 4766 + 4772 ] } ], "tournament_stages_aggregate": [ - 4755, + 4761, { "distinct_on": [ - 4783, + 4789, "[tournament_stages_select_column!]" ], "limit": [ @@ -170727,44 +171339,44 @@ export default { 40 ], "order_by": [ - 4780, + 4786, "[tournament_stages_order_by!]" ], "where": [ - 4766 + 4772 ] } ], "tournament_stages_by_pk": [ - 4754, + 4760, { "id": [ - 4993, + 4999, "uuid!" ] } ], "tournament_stages_stream": [ - 4754, + 4760, { "batch_size": [ 40, "Int!" ], "cursor": [ - 4793, + 4799, "[tournament_stages_stream_cursor_input]!" ], "where": [ - 4766 + 4772 ] } ], "tournament_team_invites": [ - 4805, + 4811, { "distinct_on": [ - 4826, + 4832, "[tournament_team_invites_select_column!]" ], "limit": [ @@ -170774,19 +171386,19 @@ export default { 40 ], "order_by": [ - 4824, + 4830, "[tournament_team_invites_order_by!]" ], "where": [ - 4814 + 4820 ] } ], "tournament_team_invites_aggregate": [ - 4806, + 4812, { "distinct_on": [ - 4826, + 4832, "[tournament_team_invites_select_column!]" ], "limit": [ @@ -170796,44 +171408,44 @@ export default { 40 ], "order_by": [ - 4824, + 4830, "[tournament_team_invites_order_by!]" ], "where": [ - 4814 + 4820 ] } ], "tournament_team_invites_by_pk": [ - 4805, + 4811, { "id": [ - 4993, + 4999, "uuid!" ] } ], "tournament_team_invites_stream": [ - 4805, + 4811, { "batch_size": [ 40, "Int!" ], "cursor": [ - 4834, + 4840, "[tournament_team_invites_stream_cursor_input]!" ], "where": [ - 4814 + 4820 ] } ], "tournament_team_roster": [ - 4846, + 4852, { "distinct_on": [ - 4867, + 4873, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -170843,19 +171455,19 @@ export default { 40 ], "order_by": [ - 4865, + 4871, "[tournament_team_roster_order_by!]" ], "where": [ - 4855 + 4861 ] } ], "tournament_team_roster_aggregate": [ - 4847, + 4853, { "distinct_on": [ - 4867, + 4873, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -170865,48 +171477,48 @@ export default { 40 ], "order_by": [ - 4865, + 4871, "[tournament_team_roster_order_by!]" ], "where": [ - 4855 + 4861 ] } ], "tournament_team_roster_by_pk": [ - 4846, + 4852, { "player_steam_id": [ - 252, + 258, "bigint!" ], "tournament_id": [ - 4993, + 4999, "uuid!" ] } ], "tournament_team_roster_stream": [ - 4846, + 4852, { "batch_size": [ 40, "Int!" ], "cursor": [ - 4875, + 4881, "[tournament_team_roster_stream_cursor_input]!" ], "where": [ - 4855 + 4861 ] } ], "tournament_teams": [ - 4887, + 4893, { "distinct_on": [ - 4909, + 4915, "[tournament_teams_select_column!]" ], "limit": [ @@ -170916,19 +171528,19 @@ export default { 40 ], "order_by": [ - 4907, + 4913, "[tournament_teams_order_by!]" ], "where": [ - 4896 + 4902 ] } ], "tournament_teams_aggregate": [ - 4888, + 4894, { "distinct_on": [ - 4909, + 4915, "[tournament_teams_select_column!]" ], "limit": [ @@ -170938,44 +171550,44 @@ export default { 40 ], "order_by": [ - 4907, + 4913, "[tournament_teams_order_by!]" ], "where": [ - 4896 + 4902 ] } ], "tournament_teams_by_pk": [ - 4887, + 4893, { "id": [ - 4993, + 4999, "uuid!" ] } ], "tournament_teams_stream": [ - 4887, + 4893, { "batch_size": [ 40, "Int!" ], "cursor": [ - 4917, + 4923, "[tournament_teams_stream_cursor_input]!" ], "where": [ - 4896 + 4902 ] } ], "tournaments": [ - 4929, + 4935, { "distinct_on": [ - 4963, + 4969, "[tournaments_select_column!]" ], "limit": [ @@ -170985,19 +171597,19 @@ export default { 40 ], "order_by": [ - 4961, + 4967, "[tournaments_order_by!]" ], "where": [ - 4950 + 4956 ] } ], "tournaments_aggregate": [ - 4930, + 4936, { "distinct_on": [ - 4963, + 4969, "[tournaments_select_column!]" ], "limit": [ @@ -171007,44 +171619,44 @@ export default { 40 ], "order_by": [ - 4961, + 4967, "[tournaments_order_by!]" ], "where": [ - 4950 + 4956 ] } ], "tournaments_by_pk": [ - 4929, + 4935, { "id": [ - 4993, + 4999, "uuid!" ] } ], "tournaments_stream": [ - 4929, + 4935, { "batch_size": [ 40, "Int!" ], "cursor": [ - 4981, + 4987, "[tournaments_stream_cursor_input]!" ], "where": [ - 4950 + 4956 ] } ], "v_event_player_stats": [ - 4996, + 5002, { "distinct_on": [ - 5022, + 5028, "[v_event_player_stats_select_column!]" ], "limit": [ @@ -171054,19 +171666,19 @@ export default { 40 ], "order_by": [ - 5021, + 5027, "[v_event_player_stats_order_by!]" ], "where": [ - 5015 + 5021 ] } ], "v_event_player_stats_aggregate": [ - 4997, + 5003, { "distinct_on": [ - 5022, + 5028, "[v_event_player_stats_select_column!]" ], "limit": [ @@ -171076,35 +171688,35 @@ export default { 40 ], "order_by": [ - 5021, + 5027, "[v_event_player_stats_order_by!]" ], "where": [ - 5015 + 5021 ] } ], "v_event_player_stats_stream": [ - 4996, + 5002, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5037, + 5043, "[v_event_player_stats_stream_cursor_input]!" ], "where": [ - 5015 + 5021 ] } ], "v_gpu_pool_status": [ - 5047, + 5053, { "distinct_on": [ - 5055, + 5061, "[v_gpu_pool_status_select_column!]" ], "limit": [ @@ -171114,19 +171726,19 @@ export default { 40 ], "order_by": [ - 5054, + 5060, "[v_gpu_pool_status_order_by!]" ], "where": [ - 5051 + 5057 ] } ], "v_gpu_pool_status_aggregate": [ - 5048, + 5054, { "distinct_on": [ - 5055, + 5061, "[v_gpu_pool_status_select_column!]" ], "limit": [ @@ -171136,35 +171748,35 @@ export default { 40 ], "order_by": [ - 5054, + 5060, "[v_gpu_pool_status_order_by!]" ], "where": [ - 5051 + 5057 ] } ], "v_gpu_pool_status_stream": [ - 5047, + 5053, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5059, + 5065, "[v_gpu_pool_status_stream_cursor_input]!" ], "where": [ - 5051 + 5057 ] } ], "v_league_division_standings": [ - 5065, + 5071, { "distinct_on": [ - 5081, + 5087, "[v_league_division_standings_select_column!]" ], "limit": [ @@ -171174,19 +171786,19 @@ export default { 40 ], "order_by": [ - 5080, + 5086, "[v_league_division_standings_order_by!]" ], "where": [ - 5074 + 5080 ] } ], "v_league_division_standings_aggregate": [ - 5066, + 5072, { "distinct_on": [ - 5081, + 5087, "[v_league_division_standings_select_column!]" ], "limit": [ @@ -171196,35 +171808,35 @@ export default { 40 ], "order_by": [ - 5080, + 5086, "[v_league_division_standings_order_by!]" ], "where": [ - 5074 + 5080 ] } ], "v_league_division_standings_stream": [ - 5065, + 5071, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5088, + 5094, "[v_league_division_standings_stream_cursor_input]!" ], "where": [ - 5074 + 5080 ] } ], "v_league_season_player_stats": [ - 5098, + 5104, { "distinct_on": [ - 5124, + 5130, "[v_league_season_player_stats_select_column!]" ], "limit": [ @@ -171234,19 +171846,19 @@ export default { 40 ], "order_by": [ - 5123, + 5129, "[v_league_season_player_stats_order_by!]" ], "where": [ - 5117 + 5123 ] } ], "v_league_season_player_stats_aggregate": [ - 5099, + 5105, { "distinct_on": [ - 5124, + 5130, "[v_league_season_player_stats_select_column!]" ], "limit": [ @@ -171256,35 +171868,35 @@ export default { 40 ], "order_by": [ - 5123, + 5129, "[v_league_season_player_stats_order_by!]" ], "where": [ - 5117 + 5123 ] } ], "v_league_season_player_stats_stream": [ - 5098, + 5104, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5139, + 5145, "[v_league_season_player_stats_stream_cursor_input]!" ], "where": [ - 5117 + 5123 ] } ], "v_match_captains": [ - 5149, + 5155, { "distinct_on": [ - 5161, + 5167, "[v_match_captains_select_column!]" ], "limit": [ @@ -171294,19 +171906,19 @@ export default { 40 ], "order_by": [ - 5160, + 5166, "[v_match_captains_order_by!]" ], "where": [ - 5153 + 5159 ] } ], "v_match_captains_aggregate": [ - 5150, + 5156, { "distinct_on": [ - 5161, + 5167, "[v_match_captains_select_column!]" ], "limit": [ @@ -171316,35 +171928,35 @@ export default { 40 ], "order_by": [ - 5160, + 5166, "[v_match_captains_order_by!]" ], "where": [ - 5153 + 5159 ] } ], "v_match_captains_stream": [ - 5149, + 5155, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5166, + 5172, "[v_match_captains_stream_cursor_input]!" ], "where": [ - 5153 + 5159 ] } ], "v_match_clutches": [ - 5173, + 5179, { "distinct_on": [ - 5189, + 5195, "[v_match_clutches_select_column!]" ], "limit": [ @@ -171354,19 +171966,19 @@ export default { 40 ], "order_by": [ - 5188, + 5194, "[v_match_clutches_order_by!]" ], "where": [ - 5182 + 5188 ] } ], "v_match_clutches_aggregate": [ - 5174, + 5180, { "distinct_on": [ - 5189, + 5195, "[v_match_clutches_select_column!]" ], "limit": [ @@ -171376,35 +171988,35 @@ export default { 40 ], "order_by": [ - 5188, + 5194, "[v_match_clutches_order_by!]" ], "where": [ - 5182 + 5188 ] } ], "v_match_clutches_stream": [ - 5173, + 5179, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5196, + 5202, "[v_match_clutches_stream_cursor_input]!" ], "where": [ - 5182 + 5188 ] } ], "v_match_kill_pairs": [ - 5206, + 5212, { "distinct_on": [ - 5214, + 5220, "[v_match_kill_pairs_select_column!]" ], "limit": [ @@ -171414,19 +172026,19 @@ export default { 40 ], "order_by": [ - 5213, + 5219, "[v_match_kill_pairs_order_by!]" ], "where": [ - 5210 + 5216 ] } ], "v_match_kill_pairs_aggregate": [ - 5207, + 5213, { "distinct_on": [ - 5214, + 5220, "[v_match_kill_pairs_select_column!]" ], "limit": [ @@ -171436,35 +172048,35 @@ export default { 40 ], "order_by": [ - 5213, + 5219, "[v_match_kill_pairs_order_by!]" ], "where": [ - 5210 + 5216 ] } ], "v_match_kill_pairs_stream": [ - 5206, + 5212, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5218, + 5224, "[v_match_kill_pairs_stream_cursor_input]!" ], "where": [ - 5210 + 5216 ] } ], "v_match_lineup_buy_types": [ - 5224, + 5230, { "distinct_on": [ - 5232, + 5238, "[v_match_lineup_buy_types_select_column!]" ], "limit": [ @@ -171474,19 +172086,19 @@ export default { 40 ], "order_by": [ - 5231, + 5237, "[v_match_lineup_buy_types_order_by!]" ], "where": [ - 5228 + 5234 ] } ], "v_match_lineup_buy_types_aggregate": [ - 5225, + 5231, { "distinct_on": [ - 5232, + 5238, "[v_match_lineup_buy_types_select_column!]" ], "limit": [ @@ -171496,35 +172108,35 @@ export default { 40 ], "order_by": [ - 5231, + 5237, "[v_match_lineup_buy_types_order_by!]" ], "where": [ - 5228 + 5234 ] } ], "v_match_lineup_buy_types_stream": [ - 5224, + 5230, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5236, + 5242, "[v_match_lineup_buy_types_stream_cursor_input]!" ], "where": [ - 5228 + 5234 ] } ], "v_match_lineup_map_stats": [ - 5242, + 5248, { "distinct_on": [ - 5250, + 5256, "[v_match_lineup_map_stats_select_column!]" ], "limit": [ @@ -171534,19 +172146,19 @@ export default { 40 ], "order_by": [ - 5249, + 5255, "[v_match_lineup_map_stats_order_by!]" ], "where": [ - 5246 + 5252 ] } ], "v_match_lineup_map_stats_aggregate": [ - 5243, + 5249, { "distinct_on": [ - 5250, + 5256, "[v_match_lineup_map_stats_select_column!]" ], "limit": [ @@ -171556,35 +172168,35 @@ export default { 40 ], "order_by": [ - 5249, + 5255, "[v_match_lineup_map_stats_order_by!]" ], "where": [ - 5246 + 5252 ] } ], "v_match_lineup_map_stats_stream": [ - 5242, + 5248, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5254, + 5260, "[v_match_lineup_map_stats_stream_cursor_input]!" ], "where": [ - 5246 + 5252 ] } ], "v_match_map_backup_rounds": [ - 5260, + 5266, { "distinct_on": [ - 5271, + 5277, "[v_match_map_backup_rounds_select_column!]" ], "limit": [ @@ -171594,19 +172206,19 @@ export default { 40 ], "order_by": [ - 5270, + 5276, "[v_match_map_backup_rounds_order_by!]" ], "where": [ - 5264 + 5270 ] } ], "v_match_map_backup_rounds_aggregate": [ - 5261, + 5267, { "distinct_on": [ - 5271, + 5277, "[v_match_map_backup_rounds_select_column!]" ], "limit": [ @@ -171616,35 +172228,35 @@ export default { 40 ], "order_by": [ - 5270, + 5276, "[v_match_map_backup_rounds_order_by!]" ], "where": [ - 5264 + 5270 ] } ], "v_match_map_backup_rounds_stream": [ - 5260, + 5266, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5276, + 5282, "[v_match_map_backup_rounds_stream_cursor_input]!" ], "where": [ - 5264 + 5270 ] } ], "v_match_player_buy_types": [ - 5283, + 5289, { "distinct_on": [ - 5291, + 5297, "[v_match_player_buy_types_select_column!]" ], "limit": [ @@ -171654,19 +172266,19 @@ export default { 40 ], "order_by": [ - 5290, + 5296, "[v_match_player_buy_types_order_by!]" ], "where": [ - 5287 + 5293 ] } ], "v_match_player_buy_types_aggregate": [ - 5284, + 5290, { "distinct_on": [ - 5291, + 5297, "[v_match_player_buy_types_select_column!]" ], "limit": [ @@ -171676,35 +172288,35 @@ export default { 40 ], "order_by": [ - 5290, + 5296, "[v_match_player_buy_types_order_by!]" ], "where": [ - 5287 + 5293 ] } ], "v_match_player_buy_types_stream": [ - 5283, + 5289, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5295, + 5301, "[v_match_player_buy_types_stream_cursor_input]!" ], "where": [ - 5287 + 5293 ] } ], "v_match_player_opening_duels": [ - 5301, + 5307, { "distinct_on": [ - 5317, + 5323, "[v_match_player_opening_duels_select_column!]" ], "limit": [ @@ -171714,19 +172326,19 @@ export default { 40 ], "order_by": [ - 5316, + 5322, "[v_match_player_opening_duels_order_by!]" ], "where": [ - 5310 + 5316 ] } ], "v_match_player_opening_duels_aggregate": [ - 5302, + 5308, { "distinct_on": [ - 5317, + 5323, "[v_match_player_opening_duels_select_column!]" ], "limit": [ @@ -171736,35 +172348,35 @@ export default { 40 ], "order_by": [ - 5316, + 5322, "[v_match_player_opening_duels_order_by!]" ], "where": [ - 5310 + 5316 ] } ], "v_match_player_opening_duels_stream": [ - 5301, + 5307, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5324, + 5330, "[v_match_player_opening_duels_stream_cursor_input]!" ], "where": [ - 5310 + 5316 ] } ], "v_player_arch_nemesis": [ - 5334, + 5340, { "distinct_on": [ - 5342, + 5348, "[v_player_arch_nemesis_select_column!]" ], "limit": [ @@ -171774,19 +172386,19 @@ export default { 40 ], "order_by": [ - 5341, + 5347, "[v_player_arch_nemesis_order_by!]" ], "where": [ - 5338 + 5344 ] } ], "v_player_arch_nemesis_aggregate": [ - 5335, + 5341, { "distinct_on": [ - 5342, + 5348, "[v_player_arch_nemesis_select_column!]" ], "limit": [ @@ -171796,35 +172408,35 @@ export default { 40 ], "order_by": [ - 5341, + 5347, "[v_player_arch_nemesis_order_by!]" ], "where": [ - 5338 + 5344 ] } ], "v_player_arch_nemesis_stream": [ - 5334, + 5340, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5346, + 5352, "[v_player_arch_nemesis_stream_cursor_input]!" ], "where": [ - 5338 + 5344 ] } ], "v_player_damage": [ - 5352, + 5358, { "distinct_on": [ - 5360, + 5366, "[v_player_damage_select_column!]" ], "limit": [ @@ -171834,19 +172446,19 @@ export default { 40 ], "order_by": [ - 5359, + 5365, "[v_player_damage_order_by!]" ], "where": [ - 5356 + 5362 ] } ], "v_player_damage_aggregate": [ - 5353, + 5359, { "distinct_on": [ - 5360, + 5366, "[v_player_damage_select_column!]" ], "limit": [ @@ -171856,35 +172468,35 @@ export default { 40 ], "order_by": [ - 5359, + 5365, "[v_player_damage_order_by!]" ], "where": [ - 5356 + 5362 ] } ], "v_player_damage_stream": [ - 5352, + 5358, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5364, + 5370, "[v_player_damage_stream_cursor_input]!" ], "where": [ - 5356 + 5362 ] } ], "v_player_elo": [ - 5370, + 5376, { "distinct_on": [ - 5396, + 5402, "[v_player_elo_select_column!]" ], "limit": [ @@ -171894,19 +172506,19 @@ export default { 40 ], "order_by": [ - 5395, + 5401, "[v_player_elo_order_by!]" ], "where": [ - 5389 + 5395 ] } ], "v_player_elo_aggregate": [ - 5371, + 5377, { "distinct_on": [ - 5396, + 5402, "[v_player_elo_select_column!]" ], "limit": [ @@ -171916,35 +172528,35 @@ export default { 40 ], "order_by": [ - 5395, + 5401, "[v_player_elo_order_by!]" ], "where": [ - 5389 + 5395 ] } ], "v_player_elo_stream": [ - 5370, + 5376, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5411, + 5417, "[v_player_elo_stream_cursor_input]!" ], "where": [ - 5389 + 5395 ] } ], "v_player_map_losses": [ - 5421, + 5427, { "distinct_on": [ - 5429, + 5435, "[v_player_map_losses_select_column!]" ], "limit": [ @@ -171954,19 +172566,19 @@ export default { 40 ], "order_by": [ - 5428, + 5434, "[v_player_map_losses_order_by!]" ], "where": [ - 5425 + 5431 ] } ], "v_player_map_losses_aggregate": [ - 5422, + 5428, { "distinct_on": [ - 5429, + 5435, "[v_player_map_losses_select_column!]" ], "limit": [ @@ -171976,35 +172588,35 @@ export default { 40 ], "order_by": [ - 5428, + 5434, "[v_player_map_losses_order_by!]" ], "where": [ - 5425 + 5431 ] } ], "v_player_map_losses_stream": [ - 5421, + 5427, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5433, + 5439, "[v_player_map_losses_stream_cursor_input]!" ], "where": [ - 5425 + 5431 ] } ], "v_player_map_wins": [ - 5439, + 5445, { "distinct_on": [ - 5447, + 5453, "[v_player_map_wins_select_column!]" ], "limit": [ @@ -172014,19 +172626,19 @@ export default { 40 ], "order_by": [ - 5446, + 5452, "[v_player_map_wins_order_by!]" ], "where": [ - 5443 + 5449 ] } ], "v_player_map_wins_aggregate": [ - 5440, + 5446, { "distinct_on": [ - 5447, + 5453, "[v_player_map_wins_select_column!]" ], "limit": [ @@ -172036,35 +172648,35 @@ export default { 40 ], "order_by": [ - 5446, + 5452, "[v_player_map_wins_order_by!]" ], "where": [ - 5443 + 5449 ] } ], "v_player_map_wins_stream": [ - 5439, + 5445, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5451, + 5457, "[v_player_map_wins_stream_cursor_input]!" ], "where": [ - 5443 + 5449 ] } ], "v_player_match_head_to_head": [ - 5457, + 5463, { "distinct_on": [ - 5465, + 5471, "[v_player_match_head_to_head_select_column!]" ], "limit": [ @@ -172074,19 +172686,19 @@ export default { 40 ], "order_by": [ - 5464, + 5470, "[v_player_match_head_to_head_order_by!]" ], "where": [ - 5461 + 5467 ] } ], "v_player_match_head_to_head_aggregate": [ - 5458, + 5464, { "distinct_on": [ - 5465, + 5471, "[v_player_match_head_to_head_select_column!]" ], "limit": [ @@ -172096,35 +172708,35 @@ export default { 40 ], "order_by": [ - 5464, + 5470, "[v_player_match_head_to_head_order_by!]" ], "where": [ - 5461 + 5467 ] } ], "v_player_match_head_to_head_stream": [ - 5457, + 5463, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5469, + 5475, "[v_player_match_head_to_head_stream_cursor_input]!" ], "where": [ - 5461 + 5467 ] } ], "v_player_match_map_hltv": [ - 5475, + 5481, { "distinct_on": [ - 5493, + 5499, "[v_player_match_map_hltv_select_column!]" ], "limit": [ @@ -172134,19 +172746,19 @@ export default { 40 ], "order_by": [ - 5492, + 5498, "[v_player_match_map_hltv_order_by!]" ], "where": [ - 5484 + 5490 ] } ], "v_player_match_map_hltv_aggregate": [ - 5476, + 5482, { "distinct_on": [ - 5493, + 5499, "[v_player_match_map_hltv_select_column!]" ], "limit": [ @@ -172156,35 +172768,35 @@ export default { 40 ], "order_by": [ - 5492, + 5498, "[v_player_match_map_hltv_order_by!]" ], "where": [ - 5484 + 5490 ] } ], "v_player_match_map_hltv_stream": [ - 5475, + 5481, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5501, + 5507, "[v_player_match_map_hltv_stream_cursor_input]!" ], "where": [ - 5484 + 5490 ] } ], "v_player_match_map_roles": [ - 5512, + 5518, { "distinct_on": [ - 5520, + 5526, "[v_player_match_map_roles_select_column!]" ], "limit": [ @@ -172194,19 +172806,19 @@ export default { 40 ], "order_by": [ - 5519, + 5525, "[v_player_match_map_roles_order_by!]" ], "where": [ - 5516 + 5522 ] } ], "v_player_match_map_roles_aggregate": [ - 5513, + 5519, { "distinct_on": [ - 5520, + 5526, "[v_player_match_map_roles_select_column!]" ], "limit": [ @@ -172216,35 +172828,35 @@ export default { 40 ], "order_by": [ - 5519, + 5525, "[v_player_match_map_roles_order_by!]" ], "where": [ - 5516 + 5522 ] } ], "v_player_match_map_roles_stream": [ - 5512, + 5518, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5524, + 5530, "[v_player_match_map_roles_stream_cursor_input]!" ], "where": [ - 5516 + 5522 ] } ], "v_player_match_performance": [ - 5530, + 5536, { "distinct_on": [ - 5538, + 5544, "[v_player_match_performance_select_column!]" ], "limit": [ @@ -172254,19 +172866,19 @@ export default { 40 ], "order_by": [ - 5537, + 5543, "[v_player_match_performance_order_by!]" ], "where": [ - 5534 + 5540 ] } ], "v_player_match_performance_aggregate": [ - 5531, + 5537, { "distinct_on": [ - 5538, + 5544, "[v_player_match_performance_select_column!]" ], "limit": [ @@ -172276,35 +172888,35 @@ export default { 40 ], "order_by": [ - 5537, + 5543, "[v_player_match_performance_order_by!]" ], "where": [ - 5534 + 5540 ] } ], "v_player_match_performance_stream": [ - 5530, + 5536, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5542, + 5548, "[v_player_match_performance_stream_cursor_input]!" ], "where": [ - 5534 + 5540 ] } ], "v_player_match_rating": [ - 5548, + 5554, { "distinct_on": [ - 5556, + 5562, "[v_player_match_rating_select_column!]" ], "limit": [ @@ -172314,19 +172926,19 @@ export default { 40 ], "order_by": [ - 5555, + 5561, "[v_player_match_rating_order_by!]" ], "where": [ - 5552 + 5558 ] } ], "v_player_match_rating_aggregate": [ - 5549, + 5555, { "distinct_on": [ - 5556, + 5562, "[v_player_match_rating_select_column!]" ], "limit": [ @@ -172336,35 +172948,35 @@ export default { 40 ], "order_by": [ - 5555, + 5561, "[v_player_match_rating_order_by!]" ], "where": [ - 5552 + 5558 ] } ], "v_player_match_rating_stream": [ - 5548, + 5554, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5560, + 5566, "[v_player_match_rating_stream_cursor_input]!" ], "where": [ - 5552 + 5558 ] } ], "v_player_multi_kills": [ - 5566, + 5572, { "distinct_on": [ - 5582, + 5588, "[v_player_multi_kills_select_column!]" ], "limit": [ @@ -172374,19 +172986,19 @@ export default { 40 ], "order_by": [ - 5581, + 5587, "[v_player_multi_kills_order_by!]" ], "where": [ - 5575 + 5581 ] } ], "v_player_multi_kills_aggregate": [ - 5567, + 5573, { "distinct_on": [ - 5582, + 5588, "[v_player_multi_kills_select_column!]" ], "limit": [ @@ -172396,35 +173008,35 @@ export default { 40 ], "order_by": [ - 5581, + 5587, "[v_player_multi_kills_order_by!]" ], "where": [ - 5575 + 5581 ] } ], "v_player_multi_kills_stream": [ - 5566, + 5572, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5589, + 5595, "[v_player_multi_kills_stream_cursor_input]!" ], "where": [ - 5575 + 5581 ] } ], "v_player_weapon_damage": [ - 5599, + 5605, { "distinct_on": [ - 5607, + 5613, "[v_player_weapon_damage_select_column!]" ], "limit": [ @@ -172434,19 +173046,19 @@ export default { 40 ], "order_by": [ - 5606, + 5612, "[v_player_weapon_damage_order_by!]" ], "where": [ - 5603 + 5609 ] } ], "v_player_weapon_damage_aggregate": [ - 5600, + 5606, { "distinct_on": [ - 5607, + 5613, "[v_player_weapon_damage_select_column!]" ], "limit": [ @@ -172456,35 +173068,35 @@ export default { 40 ], "order_by": [ - 5606, + 5612, "[v_player_weapon_damage_order_by!]" ], "where": [ - 5603 + 5609 ] } ], "v_player_weapon_damage_stream": [ - 5599, + 5605, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5611, + 5617, "[v_player_weapon_damage_stream_cursor_input]!" ], "where": [ - 5603 + 5609 ] } ], "v_player_weapon_kills": [ - 5617, + 5623, { "distinct_on": [ - 5625, + 5631, "[v_player_weapon_kills_select_column!]" ], "limit": [ @@ -172494,19 +173106,19 @@ export default { 40 ], "order_by": [ - 5624, + 5630, "[v_player_weapon_kills_order_by!]" ], "where": [ - 5621 + 5627 ] } ], "v_player_weapon_kills_aggregate": [ - 5618, + 5624, { "distinct_on": [ - 5625, + 5631, "[v_player_weapon_kills_select_column!]" ], "limit": [ @@ -172516,35 +173128,35 @@ export default { 40 ], "order_by": [ - 5624, + 5630, "[v_player_weapon_kills_order_by!]" ], "where": [ - 5621 + 5627 ] } ], "v_player_weapon_kills_stream": [ - 5617, + 5623, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5629, + 5635, "[v_player_weapon_kills_stream_cursor_input]!" ], "where": [ - 5621 + 5627 ] } ], "v_pool_maps": [ - 5635, + 5641, { "distinct_on": [ - 5652, + 5658, "[v_pool_maps_select_column!]" ], "limit": [ @@ -172554,19 +173166,19 @@ export default { 40 ], "order_by": [ - 5651, + 5657, "[v_pool_maps_order_by!]" ], "where": [ - 5644 + 5650 ] } ], "v_pool_maps_aggregate": [ - 5636, + 5642, { "distinct_on": [ - 5652, + 5658, "[v_pool_maps_select_column!]" ], "limit": [ @@ -172576,35 +173188,35 @@ export default { 40 ], "order_by": [ - 5651, + 5657, "[v_pool_maps_order_by!]" ], "where": [ - 5644 + 5650 ] } ], "v_pool_maps_stream": [ - 5635, + 5641, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5656, + 5662, "[v_pool_maps_stream_cursor_input]!" ], "where": [ - 5644 + 5650 ] } ], "v_steam_account_pool_status": [ - 5659, + 5665, { "distinct_on": [ - 5667, + 5673, "[v_steam_account_pool_status_select_column!]" ], "limit": [ @@ -172614,19 +173226,19 @@ export default { 40 ], "order_by": [ - 5666, + 5672, "[v_steam_account_pool_status_order_by!]" ], "where": [ - 5663 + 5669 ] } ], "v_steam_account_pool_status_aggregate": [ - 5660, + 5666, { "distinct_on": [ - 5667, + 5673, "[v_steam_account_pool_status_select_column!]" ], "limit": [ @@ -172636,35 +173248,35 @@ export default { 40 ], "order_by": [ - 5666, + 5672, "[v_steam_account_pool_status_order_by!]" ], "where": [ - 5663 + 5669 ] } ], "v_steam_account_pool_status_stream": [ - 5659, + 5665, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5671, + 5677, "[v_steam_account_pool_status_stream_cursor_input]!" ], "where": [ - 5663 + 5669 ] } ], "v_team_ranks": [ - 5677, + 5683, { "distinct_on": [ - 5687, + 5693, "[v_team_ranks_select_column!]" ], "limit": [ @@ -172674,19 +173286,19 @@ export default { 40 ], "order_by": [ - 5686, + 5692, "[v_team_ranks_order_by!]" ], "where": [ - 5681 + 5687 ] } ], "v_team_ranks_aggregate": [ - 5678, + 5684, { "distinct_on": [ - 5687, + 5693, "[v_team_ranks_select_column!]" ], "limit": [ @@ -172696,35 +173308,35 @@ export default { 40 ], "order_by": [ - 5686, + 5692, "[v_team_ranks_order_by!]" ], "where": [ - 5681 + 5687 ] } ], "v_team_ranks_stream": [ - 5677, + 5683, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5691, + 5697, "[v_team_ranks_stream_cursor_input]!" ], "where": [ - 5681 + 5687 ] } ], "v_team_reputation": [ - 5697, + 5703, { "distinct_on": [ - 5707, + 5713, "[v_team_reputation_select_column!]" ], "limit": [ @@ -172734,19 +173346,19 @@ export default { 40 ], "order_by": [ - 5706, + 5712, "[v_team_reputation_order_by!]" ], "where": [ - 5701 + 5707 ] } ], "v_team_reputation_aggregate": [ - 5698, + 5704, { "distinct_on": [ - 5707, + 5713, "[v_team_reputation_select_column!]" ], "limit": [ @@ -172756,35 +173368,35 @@ export default { 40 ], "order_by": [ - 5706, + 5712, "[v_team_reputation_order_by!]" ], "where": [ - 5701 + 5707 ] } ], "v_team_reputation_stream": [ - 5697, + 5703, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5711, + 5717, "[v_team_reputation_stream_cursor_input]!" ], "where": [ - 5701 + 5707 ] } ], "v_team_stage_results": [ - 5717, + 5723, { "distinct_on": [ - 5749, + 5755, "[v_team_stage_results_select_column!]" ], "limit": [ @@ -172794,19 +173406,19 @@ export default { 40 ], "order_by": [ - 5747, + 5753, "[v_team_stage_results_order_by!]" ], "where": [ - 5736 + 5742 ] } ], "v_team_stage_results_aggregate": [ - 5718, + 5724, { "distinct_on": [ - 5749, + 5755, "[v_team_stage_results_select_column!]" ], "limit": [ @@ -172816,48 +173428,48 @@ export default { 40 ], "order_by": [ - 5747, + 5753, "[v_team_stage_results_order_by!]" ], "where": [ - 5736 + 5742 ] } ], "v_team_stage_results_by_pk": [ - 5717, + 5723, { "tournament_stage_id": [ - 4993, + 4999, "uuid!" ], "tournament_team_id": [ - 4993, + 4999, "uuid!" ] } ], "v_team_stage_results_stream": [ - 5717, + 5723, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5765, + 5771, "[v_team_stage_results_stream_cursor_input]!" ], "where": [ - 5736 + 5742 ] } ], "v_team_tournament_results": [ - 5777, + 5783, { "distinct_on": [ - 5803, + 5809, "[v_team_tournament_results_select_column!]" ], "limit": [ @@ -172867,19 +173479,19 @@ export default { 40 ], "order_by": [ - 5802, + 5808, "[v_team_tournament_results_order_by!]" ], "where": [ - 5796 + 5802 ] } ], "v_team_tournament_results_aggregate": [ - 5778, + 5784, { "distinct_on": [ - 5803, + 5809, "[v_team_tournament_results_select_column!]" ], "limit": [ @@ -172889,35 +173501,35 @@ export default { 40 ], "order_by": [ - 5802, + 5808, "[v_team_tournament_results_order_by!]" ], "where": [ - 5796 + 5802 ] } ], "v_team_tournament_results_stream": [ - 5777, + 5783, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5818, + 5824, "[v_team_tournament_results_stream_cursor_input]!" ], "where": [ - 5796 + 5802 ] } ], "v_tournament_player_stats": [ - 5828, + 5834, { "distinct_on": [ - 5854, + 5860, "[v_tournament_player_stats_select_column!]" ], "limit": [ @@ -172927,19 +173539,19 @@ export default { 40 ], "order_by": [ - 5853, + 5859, "[v_tournament_player_stats_order_by!]" ], "where": [ - 5847 + 5853 ] } ], "v_tournament_player_stats_aggregate": [ - 5829, + 5835, { "distinct_on": [ - 5854, + 5860, "[v_tournament_player_stats_select_column!]" ], "limit": [ @@ -172949,27 +173561,27 @@ export default { 40 ], "order_by": [ - 5853, + 5859, "[v_tournament_player_stats_order_by!]" ], "where": [ - 5847 + 5853 ] } ], "v_tournament_player_stats_stream": [ - 5828, + 5834, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5869, + 5875, "[v_tournament_player_stats_stream_cursor_input]!" ], "where": [ - 5847 + 5853 ] } ], diff --git a/src/telemetry/telemetry.service.ts b/src/telemetry/telemetry.service.ts index 802277fd..fc956610 100644 --- a/src/telemetry/telemetry.service.ts +++ b/src/telemetry/telemetry.service.ts @@ -77,6 +77,30 @@ export class TelemetryService { }, }; + // A match this panel actually hosted. Imported demos are stamped with a + // started_at (from demo metadata, or the import time when that is missing), + // so started_at alone would count every FACEIT import as a match we ran. + // external_id catches the case a 5stack-server demo is imported back in, + // which keeps source = '5stack'. + private static nativeMatch(alias?: string) { + const column = TelemetryService.column(alias); + + return `${column("started_at")} IS NOT NULL + AND ${column("source")} = '5stack' + AND ${column("external_id")} IS NULL`; + } + + private static importedMatch(alias?: string) { + const column = TelemetryService.column(alias); + + return `${column("started_at")} IS NOT NULL + AND (${column("source")} <> '5stack' OR ${column("external_id")} IS NOT NULL)`; + } + + private static column(alias?: string) { + return (name: string) => (alias ? `${alias}.${name}` : name); + } + constructor( private readonly logger: Logger, private readonly redisManagerService: RedisManagerService, @@ -161,6 +185,12 @@ export class TelemetryService { tournament: counts.matches_tournament, league: counts.matches_league, scrim: counts.matches_scrim, + external: { + total: counts.matches_external, + week: counts.matches_external_week, + month: counts.matches_external_month, + year: counts.matches_external_year, + }, }, players: { registered: counts.players_registered, @@ -190,9 +220,28 @@ export class TelemetryService { await this.persist(payload, country); } + // SCAN rather than KEYS: this runs on a per-minute poll, and KEYS walks the + // whole keyspace in one blocking command that stalls every other client. async getOnlineSystemsCount(): Promise { - const keys = await this.redis.keys("online_system:*"); - return keys.length; + let cursor = "0"; + // SCAN can hand back the same key on more than one pass, so count distinct. + const seen = new Set(); + + do { + const [next, keys] = await this.redis.scan( + cursor, + "MATCH", + "online_system:*", + "COUNT", + 1000, + ); + cursor = next; + for (const key of keys) { + seen.add(key); + } + } while (cursor !== "0"); + + return seen.size; } // The nav badge polls this action every minute for `online` alone, and a @@ -203,17 +252,16 @@ export class TelemetryService { const aggregates = await this.cache.remember( "telemetry:fleet", async () => { - const [installs, totals, features, versions, growth, activity] = + const [installs, totals, features, growth, activity] = await Promise.all([ this.getInstallCounts(), this.getFleetTotals(), this.getFeatureAdoption(), - this.getVersionSpread(), this.getInstallGrowth(), this.getFleetActivity(), ]); - return { installs, totals, features, versions, growth, activity }; + return { installs, totals, features, growth, activity }; }, 300, ); @@ -314,23 +362,6 @@ export class TelemetryService { })); } - private async getVersionSpread() { - const rows = await this.postgres.query>>( - `SELECT - coalesce(nullif(panel_version, ''), 'unknown') AS version, - count(*) AS installs - FROM public.telemetry_installs - WHERE last_seen_at >= now() - interval '30 days' - GROUP BY 1 - ORDER BY installs DESC, version ASC`, - ); - - return rows.map((row) => ({ - version: row.version, - ...TelemetryService.toIntegers(row, ["installs"]), - })); - } - private async getInstallGrowth() { const rows = await this.postgres.query>>( `SELECT @@ -765,31 +796,30 @@ export class TelemetryService { (SELECT coalesce(sum(max_players), 0) FROM public.servers) AS servers_capacity, (SELECT count(*) FROM public.matches) AS matches_created, - (SELECT count(*) FROM public.matches WHERE ${TelemetryService.NativeMatch}) AS matches_ran, + (SELECT count(*) FROM public.matches WHERE ${TelemetryService.nativeMatch()}) AS matches_ran, (SELECT count(*) FROM public.matches - WHERE ${TelemetryService.NativeMatch} + WHERE ${TelemetryService.nativeMatch()} AND effective_at >= now() - interval '7 days') AS matches_week, (SELECT count(*) FROM public.matches - WHERE ${TelemetryService.NativeMatch} + WHERE ${TelemetryService.nativeMatch()} AND effective_at >= now() - interval '30 days') AS matches_month, (SELECT count(*) FROM public.matches - WHERE ${TelemetryService.NativeMatch} + WHERE ${TelemetryService.nativeMatch()} AND effective_at >= now() - interval '365 days') AS matches_year, (SELECT count(*) FROM public.match_maps mm JOIN public.matches m ON m.id = mm.match_id WHERE mm.status = 'Finished' - AND ${TelemetryService.NativeMatch.replace(/\b(source|external_id|started_at)\b/g, "m.$1")}) - AS maps_played, + AND ${TelemetryService.nativeMatch("m")}) AS maps_played, - (SELECT count(*) FROM public.matches WHERE ${TelemetryService.ImportedMatch}) AS matches_external, + (SELECT count(*) FROM public.matches WHERE ${TelemetryService.importedMatch()}) AS matches_external, (SELECT count(*) FROM public.matches - WHERE ${TelemetryService.ImportedMatch} + WHERE ${TelemetryService.importedMatch()} AND effective_at >= now() - interval '7 days') AS matches_external_week, (SELECT count(*) FROM public.matches - WHERE ${TelemetryService.ImportedMatch} + WHERE ${TelemetryService.importedMatch()} AND effective_at >= now() - interval '30 days') AS matches_external_month, (SELECT count(*) FROM public.matches - WHERE ${TelemetryService.ImportedMatch} + WHERE ${TelemetryService.importedMatch()} AND effective_at >= now() - interval '365 days') AS matches_external_year, (SELECT count(*) FROM public.matches WHERE source = 'faceit') AS matches_faceit, From 692c97543ab3835ed408ce2aa7315929efd1cde6 Mon Sep 17 00:00:00 2001 From: Luke Policinski Date: Sun, 26 Jul 2026 14:40:16 -0400 Subject: [PATCH 6/8] wip --- generated/schema.graphql | 11 +- generated/schema.ts | 30 +- generated/types.ts | 60786 +++++++++++++-------------- hasura/metadata/actions.graphql | 8 +- hasura/metadata/actions.yaml | 1 - src/telemetry/telemetry.service.ts | 10 + test/telemetry-perf.spec.ts | 154 + test/telemetry.spec.ts | 36 +- 8 files changed, 30599 insertions(+), 30437 deletions(-) create mode 100644 test/telemetry-perf.spec.ts diff --git a/generated/schema.graphql b/generated/schema.graphql index f5aecd4d..80afcf1a 100644 --- a/generated/schema.graphql +++ b/generated/schema.graphql @@ -799,6 +799,8 @@ type TelemetryFleetTotals { gameServerNodes: Int! mapsPlayed: Int! matches: Int! + matchesImported: Int! + matchesImportedMonth: Int! matchesMonth: Int! matchesWeek: Int! matchesYear: Int! @@ -831,12 +833,6 @@ type TelemetryStats { installs: TelemetryInstallCounts! online: Int! totals: TelemetryFleetTotals! - versions: [TelemetryVersionSpread!]! -} - -type TelemetryVersionSpread { - installs: Int! - version: String! } type TestUploadResponse { @@ -6266,6 +6262,9 @@ enum e_award_sources_enum { """Granted by hand""" manual + """Calculated from a season standing""" + season + """Calculated from a tournament placement""" tournament } diff --git a/generated/schema.ts b/generated/schema.ts index aa68b1b9..f97f3efb 100644 --- a/generated/schema.ts +++ b/generated/schema.ts @@ -723,6 +723,8 @@ export interface TelemetryFleetTotals { gameServerNodes: Scalars['Int'] mapsPlayed: Scalars['Int'] matches: Scalars['Int'] + matchesImported: Scalars['Int'] + matchesImportedMonth: Scalars['Int'] matchesMonth: Scalars['Int'] matchesWeek: Scalars['Int'] matchesYear: Scalars['Int'] @@ -758,16 +760,9 @@ export interface TelemetryStats { installs: TelemetryInstallCounts online: Scalars['Int'] totals: TelemetryFleetTotals - versions: TelemetryVersionSpread[] __typename: 'TelemetryStats' } -export interface TelemetryVersionSpread { - installs: Scalars['Int'] - version: Scalars['String'] - __typename: 'TelemetryVersionSpread' -} - export interface TestUploadResponse { error: (Scalars['String'] | null) __typename: 'TestUploadResponse' @@ -2676,7 +2671,7 @@ export interface e_award_sources_aggregate_fields { /** unique or primary key constraints on table "e_award_sources" */ export type e_award_sources_constraint = 'e_award_sources_pkey' -export type e_award_sources_enum = 'manual' | 'tournament' +export type e_award_sources_enum = 'manual' | 'season' | 'tournament' /** aggregate max on columns */ @@ -36367,6 +36362,8 @@ export interface TelemetryFleetTotalsGenqlSelection{ gameServerNodes?: boolean | number mapsPlayed?: boolean | number matches?: boolean | number + matchesImported?: boolean | number + matchesImportedMonth?: boolean | number matchesMonth?: boolean | number matchesWeek?: boolean | number matchesYear?: boolean | number @@ -36405,14 +36402,6 @@ export interface TelemetryStatsGenqlSelection{ installs?: TelemetryInstallCountsGenqlSelection online?: boolean | number totals?: TelemetryFleetTotalsGenqlSelection - versions?: TelemetryVersionSpreadGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - -export interface TelemetryVersionSpreadGenqlSelection{ - installs?: boolean | number - version?: boolean | number __typename?: boolean | number __scalar?: boolean | number } @@ -100060,14 +100049,6 @@ export type SubscriptionGenqlSelection = subscription_rootGenqlSelection - const TelemetryVersionSpread_possibleTypes: string[] = ['TelemetryVersionSpread'] - export const isTelemetryVersionSpread = (obj?: { __typename?: any } | null): obj is TelemetryVersionSpread => { - if (!obj?.__typename) throw new Error('__typename is missing in "isTelemetryVersionSpread"') - return TelemetryVersionSpread_possibleTypes.includes(obj.__typename) - } - - - const TestUploadResponse_possibleTypes: string[] = ['TestUploadResponse'] export const isTestUploadResponse = (obj?: { __typename?: any } | null): obj is TestUploadResponse => { if (!obj?.__typename) throw new Error('__typename is missing in "isTestUploadResponse"') @@ -117306,6 +117287,7 @@ export const enumEAwardSourcesConstraint = { export const enumEAwardSourcesEnum = { manual: 'manual' as const, + season: 'season' as const, tournament: 'tournament' as const } diff --git a/generated/types.ts b/generated/types.ts index c80b7b1e..0c0e5328 100644 --- a/generated/types.ts +++ b/generated/types.ts @@ -4,434 +4,435 @@ export default { 31, 40, 80, - 105, - 113, - 117, - 119, - 130, - 141, - 153, - 166, - 175, - 183, - 199, - 210, - 222, - 235, - 245, - 253, - 258, - 261, - 276, + 104, + 112, + 116, + 118, + 129, + 140, + 152, + 165, + 174, + 182, + 198, + 209, + 221, + 234, + 244, + 252, + 257, + 260, + 275, + 290, 291, 292, - 293, - 305, - 314, - 321, - 334, - 342, - 352, - 361, - 369, - 386, + 304, + 313, + 320, + 333, + 341, + 351, + 360, + 368, + 385, + 396, 397, 398, - 399, - 411, - 431, + 410, + 430, + 441, 442, 443, - 444, - 456, - 476, + 455, + 475, + 487, 488, 489, - 490, - 502, + 501, + 513, 514, - 515, - 524, - 528, + 523, + 527, + 533, 534, - 535, - 544, - 548, + 543, + 547, + 553, 554, - 555, - 564, - 568, + 563, + 567, + 573, 574, - 575, - 585, - 589, + 584, + 588, + 594, 595, - 596, - 606, - 610, + 605, + 609, + 615, 616, - 617, - 627, - 631, + 626, + 630, + 636, 637, - 638, - 648, - 652, + 647, + 651, + 657, 658, - 659, - 669, - 673, + 668, + 672, + 678, 679, - 680, - 689, - 693, + 688, + 692, + 698, 699, - 700, - 709, - 713, + 708, + 712, + 718, 719, - 720, - 730, - 734, + 729, + 733, + 739, 740, - 741, - 750, - 754, + 749, + 753, + 759, 760, - 761, - 771, - 775, + 770, + 774, + 780, 781, - 782, - 792, - 796, + 791, + 795, + 801, 802, - 803, - 813, - 817, + 812, + 816, + 822, 823, - 824, - 834, - 838, + 833, + 837, + 843, 844, - 845, - 855, - 859, + 854, + 858, + 864, 865, - 866, - 876, - 880, + 875, + 879, + 885, 886, - 887, - 896, - 900, + 895, + 899, + 905, 906, - 907, - 917, - 921, + 916, + 920, + 926, 927, - 928, - 937, - 941, + 936, + 940, + 946, 947, - 948, - 958, - 962, + 957, + 961, + 967, 968, - 969, - 978, - 982, + 977, + 981, + 987, 988, - 989, - 999, - 1003, + 998, + 1002, + 1008, 1009, - 1010, - 1020, - 1024, + 1019, + 1023, + 1029, 1030, - 1031, - 1040, - 1044, + 1039, + 1043, + 1049, 1050, - 1051, - 1060, - 1064, + 1059, + 1063, + 1069, 1070, - 1071, - 1080, - 1084, + 1079, + 1083, + 1089, 1090, - 1091, - 1100, - 1104, + 1099, + 1103, + 1109, 1110, - 1111, - 1120, - 1124, + 1119, + 1123, + 1129, 1130, - 1131, - 1141, - 1145, + 1140, + 1144, + 1150, 1151, - 1152, - 1161, - 1165, + 1160, + 1164, + 1170, 1171, - 1172, - 1181, - 1185, + 1180, + 1184, + 1190, 1191, - 1192, - 1201, - 1205, + 1200, + 1204, + 1210, 1211, - 1212, - 1221, - 1225, + 1220, + 1224, + 1230, 1231, - 1232, - 1242, - 1246, + 1241, + 1245, + 1251, 1252, - 1253, - 1262, - 1266, + 1261, + 1265, + 1271, 1272, - 1273, - 1282, - 1286, + 1281, + 1285, + 1291, 1292, - 1293, - 1303, - 1307, + 1302, + 1306, + 1312, 1313, - 1314, - 1324, - 1328, + 1323, + 1327, + 1333, 1334, - 1335, - 1345, - 1349, + 1344, + 1348, + 1354, 1355, - 1356, - 1365, - 1369, + 1364, + 1368, + 1374, 1375, - 1376, - 1385, - 1389, + 1384, + 1388, + 1394, 1395, - 1396, - 1405, - 1409, - 1415, - 1423, - 1427, - 1439, - 1461, - 1472, - 1484, - 1492, - 1504, - 1522, - 1533, - 1545, - 1563, - 1574, - 1586, - 1602, - 1612, - 1616, - 1626, - 1636, - 1640, - 1647, - 1657, - 1665, - 1670, - 1677, - 1686, - 1694, - 1712, + 1404, + 1408, + 1414, + 1422, + 1426, + 1438, + 1460, + 1471, + 1483, + 1491, + 1503, + 1521, + 1532, + 1544, + 1562, + 1573, + 1585, + 1601, + 1611, + 1615, + 1625, + 1635, + 1639, + 1646, + 1656, + 1664, + 1669, + 1676, + 1685, + 1693, + 1711, + 1727, 1728, 1729, - 1730, - 1742, - 1756, - 1770, - 1778, - 1789, - 1802, - 1810, - 1819, - 1821, - 1823, - 1837, - 1855, - 1865, - 1873, - 1888, - 1899, - 1911, - 1929, - 1940, - 1952, - 1970, - 1981, - 1993, - 2009, - 2020, - 2024, - 2032, - 2046, - 2054, - 2069, - 2080, - 2092, - 2110, - 2121, - 2133, - 2151, - 2163, - 2175, - 2187, - 2196, - 2200, - 2206, - 2215, - 2219, - 2233, + 1741, + 1755, + 1769, + 1777, + 1788, + 1801, + 1809, + 1818, + 1820, + 1822, + 1836, + 1854, + 1864, + 1872, + 1887, + 1898, + 1910, + 1928, + 1939, + 1951, + 1969, + 1980, + 1992, + 2008, + 2019, + 2023, + 2031, + 2045, + 2053, + 2068, + 2079, + 2091, + 2109, + 2120, + 2132, + 2150, + 2162, + 2174, + 2186, + 2195, + 2199, + 2205, + 2214, + 2218, + 2232, + 2243, 2244, 2245, - 2246, - 2258, - 2270, - 2279, - 2283, - 2295, + 2257, + 2269, + 2278, + 2282, + 2294, + 2305, 2306, 2307, - 2308, - 2312, - 2324, - 2336, - 2348, - 2367, - 2382, - 2394, - 2414, + 2311, + 2323, + 2335, + 2347, + 2366, + 2381, + 2393, + 2413, + 2424, 2425, 2426, - 2427, - 2439, - 2457, - 2469, - 2481, - 2502, + 2438, + 2456, + 2468, + 2480, + 2501, + 2517, 2518, 2519, - 2520, - 2532, - 2550, - 2561, - 2573, - 2589, - 2599, - 2603, - 2615, - 2627, - 2639, - 2652, - 2662, - 2670, - 2683, - 2693, - 2697, - 2712, + 2531, + 2549, + 2560, + 2572, + 2588, + 2598, + 2602, + 2614, + 2626, + 2638, + 2651, + 2661, + 2669, + 2682, + 2692, + 2696, + 2711, + 2726, 2727, 2728, - 2729, - 2741, - 2753, - 2761, - 2765, - 2777, - 2789, - 2801, - 2813, - 2821, - 2825, + 2740, + 2752, + 2760, + 2764, + 2776, + 2788, + 2800, + 2812, + 2820, + 2824, + 2851, 2852, 2853, - 2854, - 2878, - 2887, - 2895, - 2913, + 2877, + 2886, + 2894, + 2912, + 2927, 2928, 2929, - 2930, - 2942, - 2950, - 2952, - 2963, - 2974, - 2986, - 2999, - 3009, - 3017, - 3027, - 3036, - 3044, - 3059, - 3070, - 3082, - 3102, + 2941, + 2949, + 2951, + 2962, + 2973, + 2985, + 2998, + 3008, + 3016, + 3026, + 3035, + 3043, + 3058, + 3069, + 3081, + 3101, + 3112, 3113, 3114, - 3115, - 3127, - 3143, - 3163, - 3174, - 3186, - 3199, - 3208, - 3216, - 3231, - 3242, - 3254, - 3274, + 3126, + 3142, + 3162, + 3173, + 3185, + 3198, + 3207, + 3215, + 3230, + 3241, + 3253, + 3273, + 3284, 3285, 3286, - 3287, - 3299, - 3329, - 3340, - 3352, - 3360, + 3298, + 3328, + 3339, + 3351, + 3359, + 3370, 3371, 3372, - 3373, - 3385, - 3404, - 3426, - 3437, - 3449, - 3465, - 3491, - 3518, - 3529, - 3541, - 3557, - 3577, - 3588, - 3600, - 3618, - 3629, - 3641, - 3669, + 3384, + 3403, + 3425, + 3436, + 3448, + 3464, + 3490, + 3517, + 3528, + 3540, + 3556, + 3576, + 3587, + 3599, + 3617, + 3628, + 3640, + 3668, + 3679, 3680, 3681, 3682, @@ -440,129 +441,129 @@ export default { 3685, 3686, 3687, - 3688, - 3700, - 3713, - 3723, - 3731, - 3742, - 3755, - 3763, - 3773, - 3782, - 3790, - 3805, - 3816, - 3828, - 3846, - 3857, - 3869, - 3893, - 3915, - 3925, - 3933, - 3943, - 3952, - 3960, - 3974, - 3984, - 3992, - 4002, - 4011, - 4019, - 4036, + 3699, + 3712, + 3722, + 3730, + 3741, + 3754, + 3762, + 3772, + 3781, + 3789, + 3804, + 3815, + 3827, + 3845, + 3856, + 3868, + 3892, + 3914, + 3924, + 3932, + 3942, + 3951, + 3959, + 3973, + 3983, + 3991, + 4001, + 4010, + 4018, + 4035, + 4047, 4048, 4049, - 4050, - 4062, - 4074, - 4082, - 4086, - 4088, - 4098, - 4108, - 4112, - 4119, - 4129, - 4137, - 4147, - 4156, - 4164, - 4179, - 4190, - 4202, - 4222, + 4061, + 4073, + 4081, + 4085, + 4087, + 4097, + 4107, + 4111, + 4118, + 4128, + 4136, + 4146, + 4155, + 4163, + 4178, + 4189, + 4201, + 4221, + 4232, 4233, 4234, - 4235, - 4247, - 4260, - 4269, - 4277, - 4292, + 4246, + 4259, + 4268, + 4276, + 4291, + 4301, 4302, 4303, - 4304, - 4308, - 4320, - 4331, - 4343, - 4363, + 4307, + 4319, + 4330, + 4342, + 4362, + 4374, 4375, 4376, - 4377, - 4389, - 4402, - 4412, - 4420, - 4430, - 4439, - 4447, - 4464, + 4388, + 4401, + 4411, + 4419, + 4429, + 4438, + 4446, + 4463, + 4475, 4476, 4477, - 4478, - 4490, + 4489, + 4497, 4498, - 4499, - 4511, - 4523, - 4535, - 4555, + 4510, + 4522, + 4534, + 4554, + 4566, 4567, 4568, - 4569, - 4581, - 4597, - 4607, - 4611, - 4621, - 4631, - 4635, - 4647, - 4658, - 4670, - 4688, - 4699, - 4711, - 4729, - 4740, - 4752, - 4773, + 4580, + 4596, + 4606, + 4610, + 4620, + 4630, + 4634, + 4646, + 4657, + 4669, + 4687, + 4698, + 4710, + 4728, + 4739, + 4751, + 4772, + 4788, 4789, 4790, - 4791, - 4803, - 4821, - 4832, - 4844, - 4862, - 4873, - 4885, - 4903, - 4915, - 4927, - 4957, + 4802, + 4820, + 4831, + 4843, + 4861, + 4872, + 4884, + 4902, + 4914, + 4926, + 4956, + 4968, 4969, 4970, 4971, @@ -573,9 +574,9 @@ export default { 4976, 4977, 4978, - 4979, - 4991, - 4999, + 4990, + 4998, + 5027, 5028, 5029, 5030, @@ -584,9 +585,9 @@ export default { 5033, 5034, 5035, - 5036, - 5061, - 5087, + 5060, + 5086, + 5129, 5130, 5131, 5132, @@ -595,17 +596,17 @@ export default { 5135, 5136, 5137, - 5138, - 5167, - 5195, - 5220, - 5238, - 5256, - 5277, - 5297, - 5323, - 5348, - 5366, + 5166, + 5194, + 5219, + 5237, + 5255, + 5276, + 5296, + 5322, + 5347, + 5365, + 5401, 5402, 5403, 5404, @@ -614,24 +615,24 @@ export default { 5407, 5408, 5409, - 5410, - 5435, - 5453, - 5471, - 5499, - 5526, - 5544, - 5562, - 5588, - 5613, - 5631, + 5434, + 5452, + 5470, + 5498, + 5525, + 5543, + 5561, + 5587, + 5612, + 5630, + 5657, 5658, 5659, - 5660, - 5673, - 5693, - 5713, - 5743, + 5672, + 5692, + 5712, + 5742, + 5754, 5755, 5756, 5757, @@ -640,8 +641,8 @@ export default { 5760, 5761, 5762, - 5763, - 5775, + 5774, + 5808, 5809, 5810, 5811, @@ -650,7 +651,7 @@ export default { 5814, 5815, 5816, - 5817, + 5859, 5860, 5861, 5862, @@ -658,8 +659,7 @@ export default { 5864, 5865, 5866, - 5867, - 5868 + 5867 ], "types": { "ActiveConnection": { @@ -676,7 +676,7 @@ export default { 80 ], "query_start": [ - 4498 + 4497 ], "state": [ 80 @@ -705,7 +705,7 @@ export default { 80 ], "query_start": [ - 4498 + 4497 ], "state": [ 80 @@ -745,22 +745,22 @@ export default { 80 ], "event_id": [ - 4999 + 4998 ], "id": [ - 4999 + 4998 ], "image_url": [ 80 ], "league_season_id": [ - 4999 + 4998 ], "name": [ 80 ], "season_id": [ - 4999 + 4998 ], "silhouette": [ 40 @@ -772,7 +772,7 @@ export default { 80 ], "tournament_id": [ - 4999 + 4998 ], "updated_at": [ 80 @@ -783,7 +783,7 @@ export default { }, "AwardRecipient": { "award_id": [ - 4999 + 4998 ], "awarded_by_steam_id": [ 80 @@ -792,7 +792,7 @@ export default { 80 ], "id": [ - 4999 + 4998 ], "note": [ 80 @@ -807,13 +807,13 @@ export default { 80 ], "team_id": [ - 4999 + 4998 ], "tournament_id": [ - 4999 + 4998 ], "tournament_team_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -891,7 +891,7 @@ export default { 40 ], "payload": [ - 1823 + 1822 ], "start_ms": [ 40 @@ -925,7 +925,7 @@ export default { 80 ], "match_map_id": [ - 4999 + 4998 ], "output": [ 8 @@ -985,13 +985,13 @@ export default { }, "CpuStat": { "time": [ - 4498 + 4497 ], "total": [ - 258 + 257 ], "used": [ - 258 + 257 ], "window": [ 31 @@ -1002,7 +1002,7 @@ export default { }, "CreateClipRenderOutput": { "job_id": [ - 4999 + 4998 ], "success": [ 5 @@ -1013,7 +1013,7 @@ export default { }, "CreateDraftGameOutput": { "draftGameId": [ - 4999 + 4998 ], "__typename": [ 80 @@ -1021,7 +1021,7 @@ export default { }, "CreateScheduledMatchOutput": { "matchId": [ - 4999 + 4998 ], "__typename": [ 80 @@ -1177,7 +1177,7 @@ export default { 22 ], "time": [ - 4498 + 4497 ], "__typename": [ 80 @@ -1203,7 +1203,7 @@ export default { 80 ], "id": [ - 4999 + 4998 ], "mode": [ 80 @@ -1271,7 +1271,7 @@ export default { 80 ], "size": [ - 258 + 257 ], "__typename": [ 80 @@ -1282,7 +1282,7 @@ export default { 5 ], "modified": [ - 4498 + 4497 ], "name": [ 80 @@ -1291,7 +1291,7 @@ export default { 80 ], "size": [ - 258 + 257 ], "type": [ 80 @@ -1386,7 +1386,7 @@ export default { 34 ], "time": [ - 4498 + 4497 ], "__typename": [ 80 @@ -1628,7 +1628,7 @@ export default { 80 ], "player": [ - 3910 + 3909 ], "profile_url": [ 80 @@ -1645,13 +1645,13 @@ export default { }, "MemoryStat": { "time": [ - 4498 + 4497 ], "total": [ - 258 + 257 ], "used": [ - 258 + 257 ], "__typename": [ 80 @@ -1662,7 +1662,7 @@ export default { 51 ], "time": [ - 4498 + 4497 ], "__typename": [ 80 @@ -1682,7 +1682,7 @@ export default { 80 ], "id": [ - 4999 + 4998 ], "published_at": [ 80 @@ -1703,7 +1703,7 @@ export default { 80 ], "view_count": [ - 258 + 257 ], "__typename": [ 80 @@ -1714,10 +1714,10 @@ export default { 80 ], "rx": [ - 258 + 257 ], "tx": [ - 258 + 257 ], "__typename": [ 80 @@ -1843,7 +1843,7 @@ export default { }, "PreviewTournamentMatchResetOutput": { "impacts": [ - 99 + 98 ], "__typename": [ 80 @@ -2440,16 +2440,16 @@ export default { 40 ], "last_analyze": [ - 4498 + 4497 ], "last_autoanalyze": [ - 4498 + 4497 ], "last_autovacuum": [ - 4498 + 4497 ], "last_vacuum": [ - 4498 + 4497 ], "n_dead_tup": [ 40 @@ -2540,6 +2540,12 @@ export default { "matches": [ 40 ], + "matchesImported": [ + 40 + ], + "matchesImportedMonth": [ + 40 + ], "matchesMonth": [ 40 ], @@ -2624,20 +2630,6 @@ export default { "totals": [ 90 ], - "versions": [ - 94 - ], - "__typename": [ - 80 - ] - }, - "TelemetryVersionSpread": { - "installs": [ - 40 - ], - "version": [ - 80 - ], "__typename": [ 80 ] @@ -2664,7 +2656,7 @@ export default { 80 ], "next_start": [ - 4498 + 4497 ], "__typename": [ 80 @@ -2678,7 +2670,7 @@ export default { 37 ], "jobs": [ - 96 + 95 ], "__typename": [ 80 @@ -2686,13 +2678,13 @@ export default { }, "TournamentAward": { "award_id": [ - 4999 + 4998 ], "custom_name": [ 80 ], "id": [ - 4999 + 4998 ], "image_url": [ 80 @@ -2704,7 +2696,7 @@ export default { 40 ], "tournament_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -2712,7 +2704,7 @@ export default { }, "TournamentMatchResetImpact": { "bracket_id": [ - 4999 + 4998 ], "depth": [ 40 @@ -2721,7 +2713,7 @@ export default { 5 ], "match_id": [ - 4999 + 4998 ], "match_number": [ 40 @@ -2764,10 +2756,10 @@ export default { }, "_map_pool": { "map_id": [ - 4999 + 4998 ], "map_pool_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -2775,10 +2767,10 @@ export default { }, "_map_pool_aggregate": { "aggregate": [ - 103 + 102 ], "nodes": [ - 101 + 100 ], "__typename": [ 80 @@ -2789,7 +2781,7 @@ export default { 40, { "columns": [ - 113, + 112, "[_map_pool_select_column!]" ], "distinct": [ @@ -2798,10 +2790,10 @@ export default { } ], "max": [ - 107 + 106 ], "min": [ - 108 + 107 ], "__typename": [ 80 @@ -2809,19 +2801,19 @@ export default { }, "_map_pool_bool_exp": { "_and": [ - 104 + 103 ], "_not": [ - 104 + 103 ], "_or": [ - 104 + 103 ], "map_id": [ - 5001 + 5000 ], "map_pool_id": [ - 5001 + 5000 ], "__typename": [ 80 @@ -2830,10 +2822,10 @@ export default { "_map_pool_constraint": {}, "_map_pool_insert_input": { "map_id": [ - 4999 + 4998 ], "map_pool_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -2841,10 +2833,10 @@ export default { }, "_map_pool_max_fields": { "map_id": [ - 4999 + 4998 ], "map_pool_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -2852,10 +2844,10 @@ export default { }, "_map_pool_min_fields": { "map_id": [ - 4999 + 4998 ], "map_pool_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -2866,7 +2858,7 @@ export default { 40 ], "returning": [ - 101 + 100 ], "__typename": [ 80 @@ -2874,13 +2866,13 @@ export default { }, "_map_pool_on_conflict": { "constraint": [ - 105 + 104 ], "update_columns": [ - 117 + 116 ], "where": [ - 104 + 103 ], "__typename": [ 80 @@ -2888,10 +2880,10 @@ export default { }, "_map_pool_order_by": { "map_id": [ - 2952 + 2951 ], "map_pool_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -2899,10 +2891,10 @@ export default { }, "_map_pool_pk_columns_input": { "map_id": [ - 4999 + 4998 ], "map_pool_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -2911,10 +2903,10 @@ export default { "_map_pool_select_column": {}, "_map_pool_set_input": { "map_id": [ - 4999 + 4998 ], "map_pool_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -2922,10 +2914,10 @@ export default { }, "_map_pool_stream_cursor_input": { "initial_value": [ - 116 + 115 ], "ordering": [ - 314 + 313 ], "__typename": [ 80 @@ -2933,10 +2925,10 @@ export default { }, "_map_pool_stream_cursor_value_input": { "map_id": [ - 4999 + 4998 ], "map_pool_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -2945,10 +2937,10 @@ export default { "_map_pool_update_column": {}, "_map_pool_updates": { "_set": [ - 114 + 113 ], "where": [ - 104 + 103 ], "__typename": [ 80 @@ -2957,13 +2949,13 @@ export default { "_uuid": {}, "abandoned_matches": { "abandoned_at": [ - 4499 + 4498 ], "id": [ - 4999 + 4998 ], "steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -2971,10 +2963,10 @@ export default { }, "abandoned_matches_aggregate": { "aggregate": [ - 124 + 123 ], "nodes": [ - 120 + 119 ], "__typename": [ 80 @@ -2982,7 +2974,7 @@ export default { }, "abandoned_matches_aggregate_bool_exp": { "count": [ - 123 + 122 ], "__typename": [ 80 @@ -2990,13 +2982,13 @@ export default { }, "abandoned_matches_aggregate_bool_exp_count": { "arguments": [ - 141 + 140 ], "distinct": [ 5 ], "filter": [ - 129 + 128 ], "predicate": [ 41 @@ -3007,13 +2999,13 @@ export default { }, "abandoned_matches_aggregate_fields": { "avg": [ - 127 + 126 ], "count": [ 40, { "columns": [ - 141, + 140, "[abandoned_matches_select_column!]" ], "distinct": [ @@ -3022,31 +3014,31 @@ export default { } ], "max": [ - 133 + 132 ], "min": [ - 135 + 134 ], "stddev": [ - 143 + 142 ], "stddev_pop": [ - 145 + 144 ], "stddev_samp": [ - 147 + 146 ], "sum": [ - 151 + 150 ], "var_pop": [ - 155 + 154 ], "var_samp": [ - 157 + 156 ], "variance": [ - 159 + 158 ], "__typename": [ 80 @@ -3054,37 +3046,37 @@ export default { }, "abandoned_matches_aggregate_order_by": { "avg": [ - 128 + 127 ], "count": [ - 2952 + 2951 ], "max": [ - 134 + 133 ], "min": [ - 136 + 135 ], "stddev": [ - 144 + 143 ], "stddev_pop": [ - 146 + 145 ], "stddev_samp": [ - 148 + 147 ], "sum": [ - 152 + 151 ], "var_pop": [ - 156 + 155 ], "var_samp": [ - 158 + 157 ], "variance": [ - 160 + 159 ], "__typename": [ 80 @@ -3092,10 +3084,10 @@ export default { }, "abandoned_matches_arr_rel_insert_input": { "data": [ - 132 + 131 ], "on_conflict": [ - 138 + 137 ], "__typename": [ 80 @@ -3111,7 +3103,7 @@ export default { }, "abandoned_matches_avg_order_by": { "steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -3119,22 +3111,22 @@ export default { }, "abandoned_matches_bool_exp": { "_and": [ - 129 + 128 ], "_not": [ - 129 + 128 ], "_or": [ - 129 + 128 ], "abandoned_at": [ - 4500 + 4499 ], "id": [ - 5001 + 5000 ], "steam_id": [ - 260 + 259 ], "__typename": [ 80 @@ -3143,7 +3135,7 @@ export default { "abandoned_matches_constraint": {}, "abandoned_matches_inc_input": { "steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -3151,13 +3143,13 @@ export default { }, "abandoned_matches_insert_input": { "abandoned_at": [ - 4499 + 4498 ], "id": [ - 4999 + 4998 ], "steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -3165,13 +3157,13 @@ export default { }, "abandoned_matches_max_fields": { "abandoned_at": [ - 4499 + 4498 ], "id": [ - 4999 + 4998 ], "steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -3179,13 +3171,13 @@ export default { }, "abandoned_matches_max_order_by": { "abandoned_at": [ - 2952 + 2951 ], "id": [ - 2952 + 2951 ], "steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -3193,13 +3185,13 @@ export default { }, "abandoned_matches_min_fields": { "abandoned_at": [ - 4499 + 4498 ], "id": [ - 4999 + 4998 ], "steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -3207,13 +3199,13 @@ export default { }, "abandoned_matches_min_order_by": { "abandoned_at": [ - 2952 + 2951 ], "id": [ - 2952 + 2951 ], "steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -3224,7 +3216,7 @@ export default { 40 ], "returning": [ - 120 + 119 ], "__typename": [ 80 @@ -3232,13 +3224,13 @@ export default { }, "abandoned_matches_on_conflict": { "constraint": [ - 130 + 129 ], "update_columns": [ - 153 + 152 ], "where": [ - 129 + 128 ], "__typename": [ 80 @@ -3246,13 +3238,13 @@ export default { }, "abandoned_matches_order_by": { "abandoned_at": [ - 2952 + 2951 ], "id": [ - 2952 + 2951 ], "steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -3260,7 +3252,7 @@ export default { }, "abandoned_matches_pk_columns_input": { "id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -3269,13 +3261,13 @@ export default { "abandoned_matches_select_column": {}, "abandoned_matches_set_input": { "abandoned_at": [ - 4499 + 4498 ], "id": [ - 4999 + 4998 ], "steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -3291,7 +3283,7 @@ export default { }, "abandoned_matches_stddev_order_by": { "steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -3307,7 +3299,7 @@ export default { }, "abandoned_matches_stddev_pop_order_by": { "steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -3323,7 +3315,7 @@ export default { }, "abandoned_matches_stddev_samp_order_by": { "steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -3331,10 +3323,10 @@ export default { }, "abandoned_matches_stream_cursor_input": { "initial_value": [ - 150 + 149 ], "ordering": [ - 314 + 313 ], "__typename": [ 80 @@ -3342,13 +3334,13 @@ export default { }, "abandoned_matches_stream_cursor_value_input": { "abandoned_at": [ - 4499 + 4498 ], "id": [ - 4999 + 4998 ], "steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -3356,7 +3348,7 @@ export default { }, "abandoned_matches_sum_fields": { "steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -3364,7 +3356,7 @@ export default { }, "abandoned_matches_sum_order_by": { "steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -3373,13 +3365,13 @@ export default { "abandoned_matches_update_column": {}, "abandoned_matches_updates": { "_inc": [ - 131 + 130 ], "_set": [ - 142 + 141 ], "where": [ - 129 + 128 ], "__typename": [ 80 @@ -3395,7 +3387,7 @@ export default { }, "abandoned_matches_var_pop_order_by": { "steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -3411,7 +3403,7 @@ export default { }, "abandoned_matches_var_samp_order_by": { "steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -3427,7 +3419,7 @@ export default { }, "abandoned_matches_variance_order_by": { "steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -3435,19 +3427,19 @@ export default { }, "api_keys": { "created_at": [ - 4499 + 4498 ], "id": [ - 4999 + 4998 ], "label": [ 80 ], "last_used_at": [ - 4499 + 4498 ], "steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -3455,10 +3447,10 @@ export default { }, "api_keys_aggregate": { "aggregate": [ - 163 + 162 ], "nodes": [ - 161 + 160 ], "__typename": [ 80 @@ -3466,13 +3458,13 @@ export default { }, "api_keys_aggregate_fields": { "avg": [ - 164 + 163 ], "count": [ 40, { "columns": [ - 175, + 174, "[api_keys_select_column!]" ], "distinct": [ @@ -3481,31 +3473,31 @@ export default { } ], "max": [ - 169 + 168 ], "min": [ - 170 + 169 ], "stddev": [ - 177 + 176 ], "stddev_pop": [ - 178 + 177 ], "stddev_samp": [ - 179 + 178 ], "sum": [ - 182 + 181 ], "var_pop": [ - 185 + 184 ], "var_samp": [ - 186 + 185 ], "variance": [ - 187 + 186 ], "__typename": [ 80 @@ -3521,28 +3513,28 @@ export default { }, "api_keys_bool_exp": { "_and": [ - 165 + 164 ], "_not": [ - 165 + 164 ], "_or": [ - 165 + 164 ], "created_at": [ - 4500 + 4499 ], "id": [ - 5001 + 5000 ], "label": [ 82 ], "last_used_at": [ - 4500 + 4499 ], "steam_id": [ - 260 + 259 ], "__typename": [ 80 @@ -3551,7 +3543,7 @@ export default { "api_keys_constraint": {}, "api_keys_inc_input": { "steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -3559,19 +3551,19 @@ export default { }, "api_keys_insert_input": { "created_at": [ - 4499 + 4498 ], "id": [ - 4999 + 4998 ], "label": [ 80 ], "last_used_at": [ - 4499 + 4498 ], "steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -3579,19 +3571,19 @@ export default { }, "api_keys_max_fields": { "created_at": [ - 4499 + 4498 ], "id": [ - 4999 + 4998 ], "label": [ 80 ], "last_used_at": [ - 4499 + 4498 ], "steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -3599,19 +3591,19 @@ export default { }, "api_keys_min_fields": { "created_at": [ - 4499 + 4498 ], "id": [ - 4999 + 4998 ], "label": [ 80 ], "last_used_at": [ - 4499 + 4498 ], "steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -3622,7 +3614,7 @@ export default { 40 ], "returning": [ - 161 + 160 ], "__typename": [ 80 @@ -3630,13 +3622,13 @@ export default { }, "api_keys_on_conflict": { "constraint": [ - 166 + 165 ], "update_columns": [ - 183 + 182 ], "where": [ - 165 + 164 ], "__typename": [ 80 @@ -3644,19 +3636,19 @@ export default { }, "api_keys_order_by": { "created_at": [ - 2952 + 2951 ], "id": [ - 2952 + 2951 ], "label": [ - 2952 + 2951 ], "last_used_at": [ - 2952 + 2951 ], "steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -3664,7 +3656,7 @@ export default { }, "api_keys_pk_columns_input": { "id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -3673,19 +3665,19 @@ export default { "api_keys_select_column": {}, "api_keys_set_input": { "created_at": [ - 4499 + 4498 ], "id": [ - 4999 + 4998 ], "label": [ 80 ], "last_used_at": [ - 4499 + 4498 ], "steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -3717,10 +3709,10 @@ export default { }, "api_keys_stream_cursor_input": { "initial_value": [ - 181 + 180 ], "ordering": [ - 314 + 313 ], "__typename": [ 80 @@ -3728,19 +3720,19 @@ export default { }, "api_keys_stream_cursor_value_input": { "created_at": [ - 4499 + 4498 ], "id": [ - 4999 + 4998 ], "label": [ 80 ], "last_used_at": [ - 4499 + 4498 ], "steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -3748,7 +3740,7 @@ export default { }, "api_keys_sum_fields": { "steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -3757,13 +3749,13 @@ export default { "api_keys_update_column": {}, "api_keys_updates": { "_inc": [ - 167 + 166 ], "_set": [ - 176 + 175 ], "where": [ - 165 + 164 ], "__typename": [ 80 @@ -3795,7 +3787,7 @@ export default { }, "approve_league_season_movements_args": { "_league_season_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -3803,34 +3795,34 @@ export default { }, "award_recipients": { "award": [ - 230 + 229 ], "award_id": [ - 4999 + 4998 ], "awarded_by": [ - 3910 + 3909 ], "awarded_by_steam_id": [ - 258 + 257 ], "created_at": [ - 4499 + 4498 ], "event": [ - 1642 + 1641 ], "event_id": [ - 4999 + 4998 ], "id": [ - 4999 + 4998 ], "league_season": [ - 2026 + 2025 ], "league_season_id": [ - 4999 + 4998 ], "note": [ 80 @@ -3842,40 +3834,40 @@ export default { 80 ], "player": [ - 3910 + 3909 ], "player_steam_id": [ - 258 + 257 ], "season": [ - 3969 + 3968 ], "season_id": [ - 4999 + 4998 ], "source": [ - 515 + 514 ], "team": [ - 4452 + 4451 ], "team_id": [ - 4999 + 4998 ], "tournament": [ - 4935 + 4934 ], "tournament_award": [ - 4501 + 4500 ], "tournament_id": [ - 4999 + 4998 ], "tournament_team": [ - 4893 + 4892 ], "tournament_team_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -3883,10 +3875,10 @@ export default { }, "award_recipients_aggregate": { "aggregate": [ - 193 + 192 ], "nodes": [ - 189 + 188 ], "__typename": [ 80 @@ -3894,7 +3886,7 @@ export default { }, "award_recipients_aggregate_bool_exp": { "count": [ - 192 + 191 ], "__typename": [ 80 @@ -3902,13 +3894,13 @@ export default { }, "award_recipients_aggregate_bool_exp_count": { "arguments": [ - 210 + 209 ], "distinct": [ 5 ], "filter": [ - 198 + 197 ], "predicate": [ 41 @@ -3919,13 +3911,13 @@ export default { }, "award_recipients_aggregate_fields": { "avg": [ - 196 + 195 ], "count": [ 40, { "columns": [ - 210, + 209, "[award_recipients_select_column!]" ], "distinct": [ @@ -3934,31 +3926,31 @@ export default { } ], "max": [ - 202 + 201 ], "min": [ - 204 + 203 ], "stddev": [ - 212 + 211 ], "stddev_pop": [ - 214 + 213 ], "stddev_samp": [ - 216 + 215 ], "sum": [ - 220 + 219 ], "var_pop": [ - 224 + 223 ], "var_samp": [ - 226 + 225 ], "variance": [ - 228 + 227 ], "__typename": [ 80 @@ -3966,37 +3958,37 @@ export default { }, "award_recipients_aggregate_order_by": { "avg": [ - 197 + 196 ], "count": [ - 2952 + 2951 ], "max": [ - 203 + 202 ], "min": [ - 205 + 204 ], "stddev": [ - 213 + 212 ], "stddev_pop": [ - 215 + 214 ], "stddev_samp": [ - 217 + 216 ], "sum": [ - 221 + 220 ], "var_pop": [ - 225 + 224 ], "var_samp": [ - 227 + 226 ], "variance": [ - 229 + 228 ], "__typename": [ 80 @@ -4004,10 +3996,10 @@ export default { }, "award_recipients_arr_rel_insert_input": { "data": [ - 201 + 200 ], "on_conflict": [ - 207 + 206 ], "__typename": [ 80 @@ -4029,13 +4021,13 @@ export default { }, "award_recipients_avg_order_by": { "awarded_by_steam_id": [ - 2952 + 2951 ], "placement": [ - 2952 + 2951 ], "player_steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -4043,43 +4035,43 @@ export default { }, "award_recipients_bool_exp": { "_and": [ - 198 + 197 ], "_not": [ - 198 + 197 ], "_or": [ - 198 + 197 ], "award": [ - 234 + 233 ], "award_id": [ - 5001 + 5000 ], "awarded_by": [ - 3914 + 3913 ], "awarded_by_steam_id": [ - 260 + 259 ], "created_at": [ - 4500 + 4499 ], "event": [ - 1646 + 1645 ], "event_id": [ - 5001 + 5000 ], "id": [ - 5001 + 5000 ], "league_season": [ - 2031 + 2030 ], "league_season_id": [ - 5001 + 5000 ], "note": [ 82 @@ -4091,40 +4083,40 @@ export default { 82 ], "player": [ - 3914 + 3913 ], "player_steam_id": [ - 260 + 259 ], "season": [ - 3973 + 3972 ], "season_id": [ - 5001 + 5000 ], "source": [ - 516 + 515 ], "team": [ - 4463 + 4462 ], "team_id": [ - 5001 + 5000 ], "tournament": [ - 4956 + 4955 ], "tournament_award": [ - 4510 + 4509 ], "tournament_id": [ - 5001 + 5000 ], "tournament_team": [ - 4902 + 4901 ], "tournament_team_id": [ - 5001 + 5000 ], "__typename": [ 80 @@ -4133,13 +4125,13 @@ export default { "award_recipients_constraint": {}, "award_recipients_inc_input": { "awarded_by_steam_id": [ - 258 + 257 ], "placement": [ 40 ], "player_steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -4147,34 +4139,34 @@ export default { }, "award_recipients_insert_input": { "award": [ - 241 + 240 ], "award_id": [ - 4999 + 4998 ], "awarded_by": [ - 3921 + 3920 ], "awarded_by_steam_id": [ - 258 + 257 ], "created_at": [ - 4499 + 4498 ], "event": [ - 1653 + 1652 ], "event_id": [ - 4999 + 4998 ], "id": [ - 4999 + 4998 ], "league_season": [ - 2041 + 2040 ], "league_season_id": [ - 4999 + 4998 ], "note": [ 80 @@ -4183,40 +4175,40 @@ export default { 40 ], "player": [ - 3921 + 3920 ], "player_steam_id": [ - 258 + 257 ], "season": [ - 3980 + 3979 ], "season_id": [ - 4999 + 4998 ], "source": [ - 515 + 514 ], "team": [ - 4472 + 4471 ], "team_id": [ - 4999 + 4998 ], "tournament": [ - 4965 + 4964 ], "tournament_award": [ - 4519 + 4518 ], "tournament_id": [ - 4999 + 4998 ], "tournament_team": [ - 4911 + 4910 ], "tournament_team_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -4224,22 +4216,22 @@ export default { }, "award_recipients_max_fields": { "award_id": [ - 4999 + 4998 ], "awarded_by_steam_id": [ - 258 + 257 ], "created_at": [ - 4499 + 4498 ], "event_id": [ - 4999 + 4998 ], "id": [ - 4999 + 4998 ], "league_season_id": [ - 4999 + 4998 ], "note": [ 80 @@ -4251,19 +4243,19 @@ export default { 80 ], "player_steam_id": [ - 258 + 257 ], "season_id": [ - 4999 + 4998 ], "team_id": [ - 4999 + 4998 ], "tournament_id": [ - 4999 + 4998 ], "tournament_team_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -4271,46 +4263,46 @@ export default { }, "award_recipients_max_order_by": { "award_id": [ - 2952 + 2951 ], "awarded_by_steam_id": [ - 2952 + 2951 ], "created_at": [ - 2952 + 2951 ], "event_id": [ - 2952 + 2951 ], "id": [ - 2952 + 2951 ], "league_season_id": [ - 2952 + 2951 ], "note": [ - 2952 + 2951 ], "placement": [ - 2952 + 2951 ], "placement_tier": [ - 2952 + 2951 ], "player_steam_id": [ - 2952 + 2951 ], "season_id": [ - 2952 + 2951 ], "team_id": [ - 2952 + 2951 ], "tournament_id": [ - 2952 + 2951 ], "tournament_team_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -4318,22 +4310,22 @@ export default { }, "award_recipients_min_fields": { "award_id": [ - 4999 + 4998 ], "awarded_by_steam_id": [ - 258 + 257 ], "created_at": [ - 4499 + 4498 ], "event_id": [ - 4999 + 4998 ], "id": [ - 4999 + 4998 ], "league_season_id": [ - 4999 + 4998 ], "note": [ 80 @@ -4345,19 +4337,19 @@ export default { 80 ], "player_steam_id": [ - 258 + 257 ], "season_id": [ - 4999 + 4998 ], "team_id": [ - 4999 + 4998 ], "tournament_id": [ - 4999 + 4998 ], "tournament_team_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -4365,46 +4357,46 @@ export default { }, "award_recipients_min_order_by": { "award_id": [ - 2952 + 2951 ], "awarded_by_steam_id": [ - 2952 + 2951 ], "created_at": [ - 2952 + 2951 ], "event_id": [ - 2952 + 2951 ], "id": [ - 2952 + 2951 ], "league_season_id": [ - 2952 + 2951 ], "note": [ - 2952 + 2951 ], "placement": [ - 2952 + 2951 ], "placement_tier": [ - 2952 + 2951 ], "player_steam_id": [ - 2952 + 2951 ], "season_id": [ - 2952 + 2951 ], "team_id": [ - 2952 + 2951 ], "tournament_id": [ - 2952 + 2951 ], "tournament_team_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -4415,7 +4407,7 @@ export default { 40 ], "returning": [ - 189 + 188 ], "__typename": [ 80 @@ -4423,13 +4415,13 @@ export default { }, "award_recipients_on_conflict": { "constraint": [ - 199 + 198 ], "update_columns": [ - 222 + 221 ], "where": [ - 198 + 197 ], "__typename": [ 80 @@ -4437,79 +4429,79 @@ export default { }, "award_recipients_order_by": { "award": [ - 243 + 242 ], "award_id": [ - 2952 + 2951 ], "awarded_by": [ - 3923 + 3922 ], "awarded_by_steam_id": [ - 2952 + 2951 ], "created_at": [ - 2952 + 2951 ], "event": [ - 1655 + 1654 ], "event_id": [ - 2952 + 2951 ], "id": [ - 2952 + 2951 ], "league_season": [ - 2043 + 2042 ], "league_season_id": [ - 2952 + 2951 ], "note": [ - 2952 + 2951 ], "placement": [ - 2952 + 2951 ], "placement_tier": [ - 2952 + 2951 ], "player": [ - 3923 + 3922 ], "player_steam_id": [ - 2952 + 2951 ], "season": [ - 3982 + 3981 ], "season_id": [ - 2952 + 2951 ], "source": [ - 2952 + 2951 ], "team": [ - 4474 + 4473 ], "team_id": [ - 2952 + 2951 ], "tournament": [ - 4967 + 4966 ], "tournament_award": [ - 4521 + 4520 ], "tournament_id": [ - 2952 + 2951 ], "tournament_team": [ - 4913 + 4912 ], "tournament_team_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -4517,7 +4509,7 @@ export default { }, "award_recipients_pk_columns_input": { "id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -4526,22 +4518,22 @@ export default { "award_recipients_select_column": {}, "award_recipients_set_input": { "award_id": [ - 4999 + 4998 ], "awarded_by_steam_id": [ - 258 + 257 ], "created_at": [ - 4499 + 4498 ], "event_id": [ - 4999 + 4998 ], "id": [ - 4999 + 4998 ], "league_season_id": [ - 4999 + 4998 ], "note": [ 80 @@ -4550,22 +4542,22 @@ export default { 40 ], "player_steam_id": [ - 258 + 257 ], "season_id": [ - 4999 + 4998 ], "source": [ - 515 + 514 ], "team_id": [ - 4999 + 4998 ], "tournament_id": [ - 4999 + 4998 ], "tournament_team_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -4587,13 +4579,13 @@ export default { }, "award_recipients_stddev_order_by": { "awarded_by_steam_id": [ - 2952 + 2951 ], "placement": [ - 2952 + 2951 ], "player_steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -4615,13 +4607,13 @@ export default { }, "award_recipients_stddev_pop_order_by": { "awarded_by_steam_id": [ - 2952 + 2951 ], "placement": [ - 2952 + 2951 ], "player_steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -4643,13 +4635,13 @@ export default { }, "award_recipients_stddev_samp_order_by": { "awarded_by_steam_id": [ - 2952 + 2951 ], "placement": [ - 2952 + 2951 ], "player_steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -4657,10 +4649,10 @@ export default { }, "award_recipients_stream_cursor_input": { "initial_value": [ - 219 + 218 ], "ordering": [ - 314 + 313 ], "__typename": [ 80 @@ -4668,22 +4660,22 @@ export default { }, "award_recipients_stream_cursor_value_input": { "award_id": [ - 4999 + 4998 ], "awarded_by_steam_id": [ - 258 + 257 ], "created_at": [ - 4499 + 4498 ], "event_id": [ - 4999 + 4998 ], "id": [ - 4999 + 4998 ], "league_season_id": [ - 4999 + 4998 ], "note": [ 80 @@ -4695,22 +4687,22 @@ export default { 80 ], "player_steam_id": [ - 258 + 257 ], "season_id": [ - 4999 + 4998 ], "source": [ - 515 + 514 ], "team_id": [ - 4999 + 4998 ], "tournament_id": [ - 4999 + 4998 ], "tournament_team_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -4718,13 +4710,13 @@ export default { }, "award_recipients_sum_fields": { "awarded_by_steam_id": [ - 258 + 257 ], "placement": [ 40 ], "player_steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -4732,13 +4724,13 @@ export default { }, "award_recipients_sum_order_by": { "awarded_by_steam_id": [ - 2952 + 2951 ], "placement": [ - 2952 + 2951 ], "player_steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -4747,13 +4739,13 @@ export default { "award_recipients_update_column": {}, "award_recipients_updates": { "_inc": [ - 200 + 199 ], "_set": [ - 211 + 210 ], "where": [ - 198 + 197 ], "__typename": [ 80 @@ -4775,13 +4767,13 @@ export default { }, "award_recipients_var_pop_order_by": { "awarded_by_steam_id": [ - 2952 + 2951 ], "placement": [ - 2952 + 2951 ], "player_steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -4803,13 +4795,13 @@ export default { }, "award_recipients_var_samp_order_by": { "awarded_by_steam_id": [ - 2952 + 2951 ], "placement": [ - 2952 + 2951 ], "player_steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -4831,13 +4823,13 @@ export default { }, "award_recipients_variance_order_by": { "awarded_by_steam_id": [ - 2952 + 2951 ], "placement": [ - 2952 + 2951 ], "player_steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -4848,43 +4840,43 @@ export default { 5 ], "created_at": [ - 4499 + 4498 ], "created_by": [ - 3910 + 3909 ], "created_by_steam_id": [ - 258 + 257 ], "description": [ 80 ], "event": [ - 1642 + 1641 ], "event_id": [ - 4999 + 4998 ], "id": [ - 4999 + 4998 ], "image_url": [ 80 ], "league_season": [ - 2026 + 2025 ], "league_season_id": [ - 4999 + 4998 ], "name": [ 80 ], "recipients": [ - 189, + 188, { "distinct_on": [ - 210, + 209, "[award_recipients_select_column!]" ], "limit": [ @@ -4894,19 +4886,19 @@ export default { 40 ], "order_by": [ - 208, + 207, "[award_recipients_order_by!]" ], "where": [ - 198 + 197 ] } ], "recipients_aggregate": [ - 190, + 189, { "distinct_on": [ - 210, + 209, "[award_recipients_select_column!]" ], "limit": [ @@ -4916,19 +4908,19 @@ export default { 40 ], "order_by": [ - 208, + 207, "[award_recipients_order_by!]" ], "where": [ - 198 + 197 ] } ], "season": [ - 3969 + 3968 ], "season_id": [ - 4999 + 4998 ], "silhouette": [ 40 @@ -4937,16 +4929,16 @@ export default { 80 ], "tier": [ - 535 + 534 ], "tournament": [ - 4935 + 4934 ], "tournament_configs": [ - 4501, + 4500, { "distinct_on": [ - 4523, + 4522, "[tournament_awards_select_column!]" ], "limit": [ @@ -4956,19 +4948,19 @@ export default { 40 ], "order_by": [ - 4521, + 4520, "[tournament_awards_order_by!]" ], "where": [ - 4510 + 4509 ] } ], "tournament_configs_aggregate": [ - 4502, + 4501, { "distinct_on": [ - 4523, + 4522, "[tournament_awards_select_column!]" ], "limit": [ @@ -4978,19 +4970,19 @@ export default { 40 ], "order_by": [ - 4521, + 4520, "[tournament_awards_order_by!]" ], "where": [ - 4510 + 4509 ] } ], "tournament_id": [ - 4999 + 4998 ], "updated_at": [ - 4499 + 4498 ], "__typename": [ 80 @@ -4998,10 +4990,10 @@ export default { }, "awards_aggregate": { "aggregate": [ - 232 + 231 ], "nodes": [ - 230 + 229 ], "__typename": [ 80 @@ -5009,13 +5001,13 @@ export default { }, "awards_aggregate_fields": { "avg": [ - 233 + 232 ], "count": [ 40, { "columns": [ - 245, + 244, "[awards_select_column!]" ], "distinct": [ @@ -5024,31 +5016,31 @@ export default { } ], "max": [ - 238 + 237 ], "min": [ - 239 + 238 ], "stddev": [ - 247 + 246 ], "stddev_pop": [ - 248 + 247 ], "stddev_samp": [ - 249 + 248 ], "sum": [ - 252 + 251 ], "var_pop": [ - 255 + 254 ], "var_samp": [ - 256 + 255 ], "variance": [ - 257 + 256 ], "__typename": [ 80 @@ -5067,61 +5059,61 @@ export default { }, "awards_bool_exp": { "_and": [ - 234 + 233 ], "_not": [ - 234 + 233 ], "_or": [ - 234 + 233 ], "allow_multiple": [ 6 ], "created_at": [ - 4500 + 4499 ], "created_by": [ - 3914 + 3913 ], "created_by_steam_id": [ - 260 + 259 ], "description": [ 82 ], "event": [ - 1646 + 1645 ], "event_id": [ - 5001 + 5000 ], "id": [ - 5001 + 5000 ], "image_url": [ 82 ], "league_season": [ - 2031 + 2030 ], "league_season_id": [ - 5001 + 5000 ], "name": [ 82 ], "recipients": [ - 198 + 197 ], "recipients_aggregate": [ - 191 + 190 ], "season": [ - 3973 + 3972 ], "season_id": [ - 5001 + 5000 ], "silhouette": [ 41 @@ -5130,22 +5122,22 @@ export default { 82 ], "tier": [ - 536 + 535 ], "tournament": [ - 4956 + 4955 ], "tournament_configs": [ - 4510 + 4509 ], "tournament_configs_aggregate": [ - 4503 + 4502 ], "tournament_id": [ - 5001 + 5000 ], "updated_at": [ - 4500 + 4499 ], "__typename": [ 80 @@ -5154,7 +5146,7 @@ export default { "awards_constraint": {}, "awards_inc_input": { "created_by_steam_id": [ - 258 + 257 ], "silhouette": [ 40 @@ -5168,46 +5160,46 @@ export default { 5 ], "created_at": [ - 4499 + 4498 ], "created_by": [ - 3921 + 3920 ], "created_by_steam_id": [ - 258 + 257 ], "description": [ 80 ], "event": [ - 1653 + 1652 ], "event_id": [ - 4999 + 4998 ], "id": [ - 4999 + 4998 ], "image_url": [ 80 ], "league_season": [ - 2041 + 2040 ], "league_season_id": [ - 4999 + 4998 ], "name": [ 80 ], "recipients": [ - 195 + 194 ], "season": [ - 3980 + 3979 ], "season_id": [ - 4999 + 4998 ], "silhouette": [ 40 @@ -5216,19 +5208,19 @@ export default { 80 ], "tier": [ - 535 + 534 ], "tournament": [ - 4965 + 4964 ], "tournament_configs": [ - 4507 + 4506 ], "tournament_id": [ - 4999 + 4998 ], "updated_at": [ - 4499 + 4498 ], "__typename": [ 80 @@ -5236,31 +5228,31 @@ export default { }, "awards_max_fields": { "created_at": [ - 4499 + 4498 ], "created_by_steam_id": [ - 258 + 257 ], "description": [ 80 ], "event_id": [ - 4999 + 4998 ], "id": [ - 4999 + 4998 ], "image_url": [ 80 ], "league_season_id": [ - 4999 + 4998 ], "name": [ 80 ], "season_id": [ - 4999 + 4998 ], "silhouette": [ 40 @@ -5269,10 +5261,10 @@ export default { 80 ], "tournament_id": [ - 4999 + 4998 ], "updated_at": [ - 4499 + 4498 ], "__typename": [ 80 @@ -5280,31 +5272,31 @@ export default { }, "awards_min_fields": { "created_at": [ - 4499 + 4498 ], "created_by_steam_id": [ - 258 + 257 ], "description": [ 80 ], "event_id": [ - 4999 + 4998 ], "id": [ - 4999 + 4998 ], "image_url": [ 80 ], "league_season_id": [ - 4999 + 4998 ], "name": [ 80 ], "season_id": [ - 4999 + 4998 ], "silhouette": [ 40 @@ -5313,10 +5305,10 @@ export default { 80 ], "tournament_id": [ - 4999 + 4998 ], "updated_at": [ - 4499 + 4498 ], "__typename": [ 80 @@ -5327,7 +5319,7 @@ export default { 40 ], "returning": [ - 230 + 229 ], "__typename": [ 80 @@ -5335,10 +5327,10 @@ export default { }, "awards_obj_rel_insert_input": { "data": [ - 237 + 236 ], "on_conflict": [ - 242 + 241 ], "__typename": [ 80 @@ -5346,13 +5338,13 @@ export default { }, "awards_on_conflict": { "constraint": [ - 235 + 234 ], "update_columns": [ - 253 + 252 ], "where": [ - 234 + 233 ], "__typename": [ 80 @@ -5360,70 +5352,70 @@ export default { }, "awards_order_by": { "allow_multiple": [ - 2952 + 2951 ], "created_at": [ - 2952 + 2951 ], "created_by": [ - 3923 + 3922 ], "created_by_steam_id": [ - 2952 + 2951 ], "description": [ - 2952 + 2951 ], "event": [ - 1655 + 1654 ], "event_id": [ - 2952 + 2951 ], "id": [ - 2952 + 2951 ], "image_url": [ - 2952 + 2951 ], "league_season": [ - 2043 + 2042 ], "league_season_id": [ - 2952 + 2951 ], "name": [ - 2952 + 2951 ], "recipients_aggregate": [ - 194 + 193 ], "season": [ - 3982 + 3981 ], "season_id": [ - 2952 + 2951 ], "silhouette": [ - 2952 + 2951 ], "system_key": [ - 2952 + 2951 ], "tier": [ - 2952 + 2951 ], "tournament": [ - 4967 + 4966 ], "tournament_configs_aggregate": [ - 4506 + 4505 ], "tournament_id": [ - 2952 + 2951 ], "updated_at": [ - 2952 + 2951 ], "__typename": [ 80 @@ -5431,7 +5423,7 @@ export default { }, "awards_pk_columns_input": { "id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -5443,31 +5435,31 @@ export default { 5 ], "created_at": [ - 4499 + 4498 ], "created_by_steam_id": [ - 258 + 257 ], "description": [ 80 ], "event_id": [ - 4999 + 4998 ], "id": [ - 4999 + 4998 ], "image_url": [ 80 ], "league_season_id": [ - 4999 + 4998 ], "name": [ 80 ], "season_id": [ - 4999 + 4998 ], "silhouette": [ 40 @@ -5476,13 +5468,13 @@ export default { 80 ], "tier": [ - 535 + 534 ], "tournament_id": [ - 4999 + 4998 ], "updated_at": [ - 4499 + 4498 ], "__typename": [ 80 @@ -5523,10 +5515,10 @@ export default { }, "awards_stream_cursor_input": { "initial_value": [ - 251 + 250 ], "ordering": [ - 314 + 313 ], "__typename": [ 80 @@ -5537,31 +5529,31 @@ export default { 5 ], "created_at": [ - 4499 + 4498 ], "created_by_steam_id": [ - 258 + 257 ], "description": [ 80 ], "event_id": [ - 4999 + 4998 ], "id": [ - 4999 + 4998 ], "image_url": [ 80 ], "league_season_id": [ - 4999 + 4998 ], "name": [ 80 ], "season_id": [ - 4999 + 4998 ], "silhouette": [ 40 @@ -5570,13 +5562,13 @@ export default { 80 ], "tier": [ - 535 + 534 ], "tournament_id": [ - 4999 + 4998 ], "updated_at": [ - 4499 + 4498 ], "__typename": [ 80 @@ -5584,7 +5576,7 @@ export default { }, "awards_sum_fields": { "created_by_steam_id": [ - 258 + 257 ], "silhouette": [ 40 @@ -5596,13 +5588,13 @@ export default { "awards_update_column": {}, "awards_updates": { "_inc": [ - 236 + 235 ], "_set": [ - 246 + 245 ], "where": [ - 234 + 233 ], "__typename": [ 80 @@ -5644,37 +5636,37 @@ export default { "bigint": {}, "bigint_array_comparison_exp": { "_contained_in": [ - 258 + 257 ], "_contains": [ - 258 + 257 ], "_eq": [ - 258 + 257 ], "_gt": [ - 258 + 257 ], "_gte": [ - 258 + 257 ], "_in": [ - 258 + 257 ], "_is_null": [ 5 ], "_lt": [ - 258 + 257 ], "_lte": [ - 258 + 257 ], "_neq": [ - 258 + 257 ], "_nin": [ - 258 + 257 ], "__typename": [ 80 @@ -5682,31 +5674,31 @@ export default { }, "bigint_comparison_exp": { "_eq": [ - 258 + 257 ], "_gt": [ - 258 + 257 ], "_gte": [ - 258 + 257 ], "_in": [ - 258 + 257 ], "_is_null": [ 5 ], "_lt": [ - 258 + 257 ], "_lte": [ - 258 + 257 ], "_neq": [ - 258 + 257 ], "_nin": [ - 258 + 257 ], "__typename": [ 80 @@ -5715,31 +5707,31 @@ export default { "bytea": {}, "bytea_comparison_exp": { "_eq": [ - 261 + 260 ], "_gt": [ - 261 + 260 ], "_gte": [ - 261 + 260 ], "_in": [ - 261 + 260 ], "_is_null": [ 5 ], "_lt": [ - 261 + 260 ], "_lte": [ - 261 + 260 ], "_neq": [ - 261 + 260 ], "_nin": [ - 261 + 260 ], "__typename": [ 80 @@ -5747,49 +5739,49 @@ export default { }, "clip_render_jobs": { "clip": [ - 2314 + 2313 ], "clip_id": [ - 4999 + 4998 ], "created_at": [ - 4499 + 4498 ], "error_message": [ 80 ], "game_server_node": [ - 1699 + 1698 ], "game_server_node_id": [ 80 ], "id": [ - 4999 + 4998 ], "k8s_job_name": [ 80 ], "last_status_at": [ - 4499 + 4498 ], "match_map": [ - 2605 + 2604 ], "match_map_demo": [ - 2489 + 2488 ], "match_map_demo_id": [ - 4999 + 4998 ], "match_map_id": [ - 4999 + 4998 ], "paused": [ 5 ], "progress": [ - 2950 + 2949 ], "session_token": [ 80 @@ -5798,7 +5790,7 @@ export default { 40 ], "spec": [ - 1823, + 1822, { "path": [ 80 @@ -5809,7 +5801,7 @@ export default { 80 ], "status_history": [ - 1823, + 1822, { "path": [ 80 @@ -5817,10 +5809,10 @@ export default { } ], "user": [ - 3910 + 3909 ], "user_steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -5828,10 +5820,10 @@ export default { }, "clip_render_jobs_aggregate": { "aggregate": [ - 269 + 268 ], "nodes": [ - 263 + 262 ], "__typename": [ 80 @@ -5839,13 +5831,13 @@ export default { }, "clip_render_jobs_aggregate_bool_exp": { "bool_and": [ - 266 + 265 ], "bool_or": [ - 267 + 266 ], "count": [ - 268 + 267 ], "__typename": [ 80 @@ -5853,13 +5845,13 @@ export default { }, "clip_render_jobs_aggregate_bool_exp_bool_and": { "arguments": [ - 292 + 291 ], "distinct": [ 5 ], "filter": [ - 275 + 274 ], "predicate": [ 6 @@ -5870,13 +5862,13 @@ export default { }, "clip_render_jobs_aggregate_bool_exp_bool_or": { "arguments": [ - 293 + 292 ], "distinct": [ 5 ], "filter": [ - 275 + 274 ], "predicate": [ 6 @@ -5887,13 +5879,13 @@ export default { }, "clip_render_jobs_aggregate_bool_exp_count": { "arguments": [ - 291 + 290 ], "distinct": [ 5 ], "filter": [ - 275 + 274 ], "predicate": [ 41 @@ -5904,13 +5896,13 @@ export default { }, "clip_render_jobs_aggregate_fields": { "avg": [ - 273 + 272 ], "count": [ 40, { "columns": [ - 291, + 290, "[clip_render_jobs_select_column!]" ], "distinct": [ @@ -5919,31 +5911,31 @@ export default { } ], "max": [ - 282 + 281 ], "min": [ - 284 + 283 ], "stddev": [ - 295 + 294 ], "stddev_pop": [ - 297 + 296 ], "stddev_samp": [ - 299 + 298 ], "sum": [ - 303 + 302 ], "var_pop": [ - 307 + 306 ], "var_samp": [ - 309 + 308 ], "variance": [ - 311 + 310 ], "__typename": [ 80 @@ -5951,37 +5943,37 @@ export default { }, "clip_render_jobs_aggregate_order_by": { "avg": [ - 274 + 273 ], "count": [ - 2952 + 2951 ], "max": [ - 283 + 282 ], "min": [ - 285 + 284 ], "stddev": [ - 296 + 295 ], "stddev_pop": [ - 298 + 297 ], "stddev_samp": [ - 300 + 299 ], "sum": [ - 304 + 303 ], "var_pop": [ - 308 + 307 ], "var_samp": [ - 310 + 309 ], "variance": [ - 312 + 311 ], "__typename": [ 80 @@ -5989,10 +5981,10 @@ export default { }, "clip_render_jobs_append_input": { "spec": [ - 1823 + 1822 ], "status_history": [ - 1823 + 1822 ], "__typename": [ 80 @@ -6000,10 +5992,10 @@ export default { }, "clip_render_jobs_arr_rel_insert_input": { "data": [ - 281 + 280 ], "on_conflict": [ - 287 + 286 ], "__typename": [ 80 @@ -6025,13 +6017,13 @@ export default { }, "clip_render_jobs_avg_order_by": { "progress": [ - 2952 + 2951 ], "sort_index": [ - 2952 + 2951 ], "user_steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -6039,58 +6031,58 @@ export default { }, "clip_render_jobs_bool_exp": { "_and": [ - 275 + 274 ], "_not": [ - 275 + 274 ], "_or": [ - 275 + 274 ], "clip": [ - 2323 + 2322 ], "clip_id": [ - 5001 + 5000 ], "created_at": [ - 4500 + 4499 ], "error_message": [ 82 ], "game_server_node": [ - 1711 + 1710 ], "game_server_node_id": [ 82 ], "id": [ - 5001 + 5000 ], "k8s_job_name": [ 82 ], "last_status_at": [ - 4500 + 4499 ], "match_map": [ - 2614 + 2613 ], "match_map_demo": [ - 2501 + 2500 ], "match_map_demo_id": [ - 5001 + 5000 ], "match_map_id": [ - 5001 + 5000 ], "paused": [ 6 ], "progress": [ - 2951 + 2950 ], "session_token": [ 82 @@ -6099,19 +6091,19 @@ export default { 41 ], "spec": [ - 1825 + 1824 ], "status": [ 82 ], "status_history": [ - 1825 + 1824 ], "user": [ - 3914 + 3913 ], "user_steam_id": [ - 260 + 259 ], "__typename": [ 80 @@ -6153,13 +6145,13 @@ export default { }, "clip_render_jobs_inc_input": { "progress": [ - 2950 + 2949 ], "sort_index": [ 40 ], "user_steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -6167,49 +6159,49 @@ export default { }, "clip_render_jobs_insert_input": { "clip": [ - 2332 + 2331 ], "clip_id": [ - 4999 + 4998 ], "created_at": [ - 4499 + 4498 ], "error_message": [ 80 ], "game_server_node": [ - 1723 + 1722 ], "game_server_node_id": [ 80 ], "id": [ - 4999 + 4998 ], "k8s_job_name": [ 80 ], "last_status_at": [ - 4499 + 4498 ], "match_map": [ - 2623 + 2622 ], "match_map_demo": [ - 2513 + 2512 ], "match_map_demo_id": [ - 4999 + 4998 ], "match_map_id": [ - 4999 + 4998 ], "paused": [ 5 ], "progress": [ - 2950 + 2949 ], "session_token": [ 80 @@ -6218,19 +6210,19 @@ export default { 40 ], "spec": [ - 1823 + 1822 ], "status": [ 80 ], "status_history": [ - 1823 + 1822 ], "user": [ - 3921 + 3920 ], "user_steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -6238,10 +6230,10 @@ export default { }, "clip_render_jobs_max_fields": { "clip_id": [ - 4999 + 4998 ], "created_at": [ - 4499 + 4498 ], "error_message": [ 80 @@ -6250,22 +6242,22 @@ export default { 80 ], "id": [ - 4999 + 4998 ], "k8s_job_name": [ 80 ], "last_status_at": [ - 4499 + 4498 ], "match_map_demo_id": [ - 4999 + 4998 ], "match_map_id": [ - 4999 + 4998 ], "progress": [ - 2950 + 2949 ], "session_token": [ 80 @@ -6277,7 +6269,7 @@ export default { 80 ], "user_steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -6285,46 +6277,46 @@ export default { }, "clip_render_jobs_max_order_by": { "clip_id": [ - 2952 + 2951 ], "created_at": [ - 2952 + 2951 ], "error_message": [ - 2952 + 2951 ], "game_server_node_id": [ - 2952 + 2951 ], "id": [ - 2952 + 2951 ], "k8s_job_name": [ - 2952 + 2951 ], "last_status_at": [ - 2952 + 2951 ], "match_map_demo_id": [ - 2952 + 2951 ], "match_map_id": [ - 2952 + 2951 ], "progress": [ - 2952 + 2951 ], "session_token": [ - 2952 + 2951 ], "sort_index": [ - 2952 + 2951 ], "status": [ - 2952 + 2951 ], "user_steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -6332,10 +6324,10 @@ export default { }, "clip_render_jobs_min_fields": { "clip_id": [ - 4999 + 4998 ], "created_at": [ - 4499 + 4498 ], "error_message": [ 80 @@ -6344,22 +6336,22 @@ export default { 80 ], "id": [ - 4999 + 4998 ], "k8s_job_name": [ 80 ], "last_status_at": [ - 4499 + 4498 ], "match_map_demo_id": [ - 4999 + 4998 ], "match_map_id": [ - 4999 + 4998 ], "progress": [ - 2950 + 2949 ], "session_token": [ 80 @@ -6371,7 +6363,7 @@ export default { 80 ], "user_steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -6379,46 +6371,46 @@ export default { }, "clip_render_jobs_min_order_by": { "clip_id": [ - 2952 + 2951 ], "created_at": [ - 2952 + 2951 ], "error_message": [ - 2952 + 2951 ], "game_server_node_id": [ - 2952 + 2951 ], "id": [ - 2952 + 2951 ], "k8s_job_name": [ - 2952 + 2951 ], "last_status_at": [ - 2952 + 2951 ], "match_map_demo_id": [ - 2952 + 2951 ], "match_map_id": [ - 2952 + 2951 ], "progress": [ - 2952 + 2951 ], "session_token": [ - 2952 + 2951 ], "sort_index": [ - 2952 + 2951 ], "status": [ - 2952 + 2951 ], "user_steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -6429,7 +6421,7 @@ export default { 40 ], "returning": [ - 263 + 262 ], "__typename": [ 80 @@ -6437,13 +6429,13 @@ export default { }, "clip_render_jobs_on_conflict": { "constraint": [ - 276 + 275 ], "update_columns": [ - 305 + 304 ], "where": [ - 275 + 274 ], "__typename": [ 80 @@ -6451,70 +6443,70 @@ export default { }, "clip_render_jobs_order_by": { "clip": [ - 2334 + 2333 ], "clip_id": [ - 2952 + 2951 ], "created_at": [ - 2952 + 2951 ], "error_message": [ - 2952 + 2951 ], "game_server_node": [ - 1725 + 1724 ], "game_server_node_id": [ - 2952 + 2951 ], "id": [ - 2952 + 2951 ], "k8s_job_name": [ - 2952 + 2951 ], "last_status_at": [ - 2952 + 2951 ], "match_map": [ - 2625 + 2624 ], "match_map_demo": [ - 2515 + 2514 ], "match_map_demo_id": [ - 2952 + 2951 ], "match_map_id": [ - 2952 + 2951 ], "paused": [ - 2952 + 2951 ], "progress": [ - 2952 + 2951 ], "session_token": [ - 2952 + 2951 ], "sort_index": [ - 2952 + 2951 ], "spec": [ - 2952 + 2951 ], "status": [ - 2952 + 2951 ], "status_history": [ - 2952 + 2951 ], "user": [ - 3923 + 3922 ], "user_steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -6522,7 +6514,7 @@ export default { }, "clip_render_jobs_pk_columns_input": { "id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -6530,10 +6522,10 @@ export default { }, "clip_render_jobs_prepend_input": { "spec": [ - 1823 + 1822 ], "status_history": [ - 1823 + 1822 ], "__typename": [ 80 @@ -6544,10 +6536,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": [ - 4999 + 4998 ], "created_at": [ - 4499 + 4498 ], "error_message": [ 80 @@ -6556,25 +6548,25 @@ export default { 80 ], "id": [ - 4999 + 4998 ], "k8s_job_name": [ 80 ], "last_status_at": [ - 4499 + 4498 ], "match_map_demo_id": [ - 4999 + 4998 ], "match_map_id": [ - 4999 + 4998 ], "paused": [ 5 ], "progress": [ - 2950 + 2949 ], "session_token": [ 80 @@ -6583,16 +6575,16 @@ export default { 40 ], "spec": [ - 1823 + 1822 ], "status": [ 80 ], "status_history": [ - 1823 + 1822 ], "user_steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -6614,13 +6606,13 @@ export default { }, "clip_render_jobs_stddev_order_by": { "progress": [ - 2952 + 2951 ], "sort_index": [ - 2952 + 2951 ], "user_steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -6642,13 +6634,13 @@ export default { }, "clip_render_jobs_stddev_pop_order_by": { "progress": [ - 2952 + 2951 ], "sort_index": [ - 2952 + 2951 ], "user_steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -6670,13 +6662,13 @@ export default { }, "clip_render_jobs_stddev_samp_order_by": { "progress": [ - 2952 + 2951 ], "sort_index": [ - 2952 + 2951 ], "user_steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -6684,10 +6676,10 @@ export default { }, "clip_render_jobs_stream_cursor_input": { "initial_value": [ - 302 + 301 ], "ordering": [ - 314 + 313 ], "__typename": [ 80 @@ -6695,10 +6687,10 @@ export default { }, "clip_render_jobs_stream_cursor_value_input": { "clip_id": [ - 4999 + 4998 ], "created_at": [ - 4499 + 4498 ], "error_message": [ 80 @@ -6707,25 +6699,25 @@ export default { 80 ], "id": [ - 4999 + 4998 ], "k8s_job_name": [ 80 ], "last_status_at": [ - 4499 + 4498 ], "match_map_demo_id": [ - 4999 + 4998 ], "match_map_id": [ - 4999 + 4998 ], "paused": [ 5 ], "progress": [ - 2950 + 2949 ], "session_token": [ 80 @@ -6734,16 +6726,16 @@ export default { 40 ], "spec": [ - 1823 + 1822 ], "status": [ 80 ], "status_history": [ - 1823 + 1822 ], "user_steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -6751,13 +6743,13 @@ export default { }, "clip_render_jobs_sum_fields": { "progress": [ - 2950 + 2949 ], "sort_index": [ 40 ], "user_steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -6765,13 +6757,13 @@ export default { }, "clip_render_jobs_sum_order_by": { "progress": [ - 2952 + 2951 ], "sort_index": [ - 2952 + 2951 ], "user_steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -6780,28 +6772,28 @@ export default { "clip_render_jobs_update_column": {}, "clip_render_jobs_updates": { "_append": [ - 271 + 270 ], "_delete_at_path": [ - 277 + 276 ], "_delete_elem": [ - 278 + 277 ], "_delete_key": [ - 279 + 278 ], "_inc": [ - 280 + 279 ], "_prepend": [ - 290 + 289 ], "_set": [ - 294 + 293 ], "where": [ - 275 + 274 ], "__typename": [ 80 @@ -6823,13 +6815,13 @@ export default { }, "clip_render_jobs_var_pop_order_by": { "progress": [ - 2952 + 2951 ], "sort_index": [ - 2952 + 2951 ], "user_steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -6851,13 +6843,13 @@ export default { }, "clip_render_jobs_var_samp_order_by": { "progress": [ - 2952 + 2951 ], "sort_index": [ - 2952 + 2951 ], "user_steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -6879,13 +6871,13 @@ export default { }, "clip_render_jobs_variance_order_by": { "progress": [ - 2952 + 2951 ], "sort_index": [ - 2952 + 2951 ], "user_steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -6893,7 +6885,7 @@ export default { }, "clone_league_season_args": { "_league_season_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -6902,10 +6894,10 @@ export default { "cursor_ordering": {}, "custom_pages": { "created_at": [ - 4499 + 4498 ], "deployments": [ - 1823, + 1822, { "path": [ 80 @@ -6922,7 +6914,7 @@ export default { 80 ], "id": [ - 4999 + 4998 ], "is_default": [ 5 @@ -6946,7 +6938,7 @@ export default { 80 ], "required_role": [ - 1071 + 1070 ], "slug": [ 80 @@ -6955,7 +6947,7 @@ export default { 80 ], "updated_at": [ - 4499 + 4498 ], "__typename": [ 80 @@ -6963,10 +6955,10 @@ export default { }, "custom_pages_aggregate": { "aggregate": [ - 317 + 316 ], "nodes": [ - 315 + 314 ], "__typename": [ 80 @@ -6974,13 +6966,13 @@ export default { }, "custom_pages_aggregate_fields": { "avg": [ - 319 + 318 ], "count": [ 40, { "columns": [ - 334, + 333, "[custom_pages_select_column!]" ], "distinct": [ @@ -6989,31 +6981,31 @@ export default { } ], "max": [ - 327 + 326 ], "min": [ - 328 + 327 ], "stddev": [ - 336 + 335 ], "stddev_pop": [ - 337 + 336 ], "stddev_samp": [ - 338 + 337 ], "sum": [ - 341 + 340 ], "var_pop": [ - 344 + 343 ], "var_samp": [ - 345 + 344 ], "variance": [ - 346 + 345 ], "__typename": [ 80 @@ -7021,7 +7013,7 @@ export default { }, "custom_pages_append_input": { "deployments": [ - 1823 + 1822 ], "__typename": [ 80 @@ -7037,19 +7029,19 @@ export default { }, "custom_pages_bool_exp": { "_and": [ - 320 + 319 ], "_not": [ - 320 + 319 ], "_or": [ - 320 + 319 ], "created_at": [ - 4500 + 4499 ], "deployments": [ - 1825 + 1824 ], "enabled": [ 6 @@ -7061,7 +7053,7 @@ export default { 82 ], "id": [ - 5001 + 5000 ], "is_default": [ 6 @@ -7085,7 +7077,7 @@ export default { 82 ], "required_role": [ - 1072 + 1071 ], "slug": [ 82 @@ -7094,7 +7086,7 @@ export default { 82 ], "updated_at": [ - 4500 + 4499 ], "__typename": [ 80 @@ -7135,10 +7127,10 @@ export default { }, "custom_pages_insert_input": { "created_at": [ - 4499 + 4498 ], "deployments": [ - 1823 + 1822 ], "enabled": [ 5 @@ -7150,7 +7142,7 @@ export default { 80 ], "id": [ - 4999 + 4998 ], "is_default": [ 5 @@ -7174,7 +7166,7 @@ export default { 80 ], "required_role": [ - 1071 + 1070 ], "slug": [ 80 @@ -7183,7 +7175,7 @@ export default { 80 ], "updated_at": [ - 4499 + 4498 ], "__typename": [ 80 @@ -7191,7 +7183,7 @@ export default { }, "custom_pages_max_fields": { "created_at": [ - 4499 + 4498 ], "exposed_module": [ 80 @@ -7200,7 +7192,7 @@ export default { 80 ], "id": [ - 4999 + 4998 ], "manifest_url": [ 80 @@ -7227,7 +7219,7 @@ export default { 80 ], "updated_at": [ - 4499 + 4498 ], "__typename": [ 80 @@ -7235,7 +7227,7 @@ export default { }, "custom_pages_min_fields": { "created_at": [ - 4499 + 4498 ], "exposed_module": [ 80 @@ -7244,7 +7236,7 @@ export default { 80 ], "id": [ - 4999 + 4998 ], "manifest_url": [ 80 @@ -7271,7 +7263,7 @@ export default { 80 ], "updated_at": [ - 4499 + 4498 ], "__typename": [ 80 @@ -7282,7 +7274,7 @@ export default { 40 ], "returning": [ - 315 + 314 ], "__typename": [ 80 @@ -7290,13 +7282,13 @@ export default { }, "custom_pages_on_conflict": { "constraint": [ - 321 + 320 ], "update_columns": [ - 342 + 341 ], "where": [ - 320 + 319 ], "__typename": [ 80 @@ -7304,55 +7296,55 @@ export default { }, "custom_pages_order_by": { "created_at": [ - 2952 + 2951 ], "deployments": [ - 2952 + 2951 ], "enabled": [ - 2952 + 2951 ], "exposed_module": [ - 2952 + 2951 ], "icon": [ - 2952 + 2951 ], "id": [ - 2952 + 2951 ], "is_default": [ - 2952 + 2951 ], "manifest_url": [ - 2952 + 2951 ], "nav_group": [ - 2952 + 2951 ], "nav_order": [ - 2952 + 2951 ], "profile_tab_label": [ - 2952 + 2951 ], "remote_entry_url": [ - 2952 + 2951 ], "remote_scope": [ - 2952 + 2951 ], "required_role": [ - 2952 + 2951 ], "slug": [ - 2952 + 2951 ], "title": [ - 2952 + 2951 ], "updated_at": [ - 2952 + 2951 ], "__typename": [ 80 @@ -7360,7 +7352,7 @@ export default { }, "custom_pages_pk_columns_input": { "id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -7368,7 +7360,7 @@ export default { }, "custom_pages_prepend_input": { "deployments": [ - 1823 + 1822 ], "__typename": [ 80 @@ -7377,10 +7369,10 @@ export default { "custom_pages_select_column": {}, "custom_pages_set_input": { "created_at": [ - 4499 + 4498 ], "deployments": [ - 1823 + 1822 ], "enabled": [ 5 @@ -7392,7 +7384,7 @@ export default { 80 ], "id": [ - 4999 + 4998 ], "is_default": [ 5 @@ -7416,7 +7408,7 @@ export default { 80 ], "required_role": [ - 1071 + 1070 ], "slug": [ 80 @@ -7425,7 +7417,7 @@ export default { 80 ], "updated_at": [ - 4499 + 4498 ], "__typename": [ 80 @@ -7457,10 +7449,10 @@ export default { }, "custom_pages_stream_cursor_input": { "initial_value": [ - 340 + 339 ], "ordering": [ - 314 + 313 ], "__typename": [ 80 @@ -7468,10 +7460,10 @@ export default { }, "custom_pages_stream_cursor_value_input": { "created_at": [ - 4499 + 4498 ], "deployments": [ - 1823 + 1822 ], "enabled": [ 5 @@ -7483,7 +7475,7 @@ export default { 80 ], "id": [ - 4999 + 4998 ], "is_default": [ 5 @@ -7507,7 +7499,7 @@ export default { 80 ], "required_role": [ - 1071 + 1070 ], "slug": [ 80 @@ -7516,7 +7508,7 @@ export default { 80 ], "updated_at": [ - 4499 + 4498 ], "__typename": [ 80 @@ -7533,28 +7525,28 @@ export default { "custom_pages_update_column": {}, "custom_pages_updates": { "_append": [ - 318 + 317 ], "_delete_at_path": [ - 322 + 321 ], "_delete_elem": [ - 323 + 322 ], "_delete_key": [ - 324 + 323 ], "_inc": [ - 325 + 324 ], "_prepend": [ - 333 + 332 ], "_set": [ - 335 + 334 ], "where": [ - 320 + 319 ], "__typename": [ 80 @@ -7586,10 +7578,10 @@ export default { }, "db_backups": { "created_at": [ - 4499 + 4498 ], "id": [ - 4999 + 4998 ], "name": [ 80 @@ -7603,10 +7595,10 @@ export default { }, "db_backups_aggregate": { "aggregate": [ - 349 + 348 ], "nodes": [ - 347 + 346 ], "__typename": [ 80 @@ -7614,13 +7606,13 @@ export default { }, "db_backups_aggregate_fields": { "avg": [ - 350 + 349 ], "count": [ 40, { "columns": [ - 361, + 360, "[db_backups_select_column!]" ], "distinct": [ @@ -7629,31 +7621,31 @@ export default { } ], "max": [ - 355 + 354 ], "min": [ - 356 + 355 ], "stddev": [ - 363 + 362 ], "stddev_pop": [ - 364 + 363 ], "stddev_samp": [ - 365 + 364 ], "sum": [ - 368 + 367 ], "var_pop": [ - 371 + 370 ], "var_samp": [ - 372 + 371 ], "variance": [ - 373 + 372 ], "__typename": [ 80 @@ -7669,19 +7661,19 @@ export default { }, "db_backups_bool_exp": { "_and": [ - 351 + 350 ], "_not": [ - 351 + 350 ], "_or": [ - 351 + 350 ], "created_at": [ - 4500 + 4499 ], "id": [ - 5001 + 5000 ], "name": [ 82 @@ -7704,10 +7696,10 @@ export default { }, "db_backups_insert_input": { "created_at": [ - 4499 + 4498 ], "id": [ - 4999 + 4998 ], "name": [ 80 @@ -7721,10 +7713,10 @@ export default { }, "db_backups_max_fields": { "created_at": [ - 4499 + 4498 ], "id": [ - 4999 + 4998 ], "name": [ 80 @@ -7738,10 +7730,10 @@ export default { }, "db_backups_min_fields": { "created_at": [ - 4499 + 4498 ], "id": [ - 4999 + 4998 ], "name": [ 80 @@ -7758,7 +7750,7 @@ export default { 40 ], "returning": [ - 347 + 346 ], "__typename": [ 80 @@ -7766,13 +7758,13 @@ export default { }, "db_backups_on_conflict": { "constraint": [ - 352 + 351 ], "update_columns": [ - 369 + 368 ], "where": [ - 351 + 350 ], "__typename": [ 80 @@ -7780,16 +7772,16 @@ export default { }, "db_backups_order_by": { "created_at": [ - 2952 + 2951 ], "id": [ - 2952 + 2951 ], "name": [ - 2952 + 2951 ], "size": [ - 2952 + 2951 ], "__typename": [ 80 @@ -7797,7 +7789,7 @@ export default { }, "db_backups_pk_columns_input": { "id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -7806,10 +7798,10 @@ export default { "db_backups_select_column": {}, "db_backups_set_input": { "created_at": [ - 4499 + 4498 ], "id": [ - 4999 + 4998 ], "name": [ 80 @@ -7847,10 +7839,10 @@ export default { }, "db_backups_stream_cursor_input": { "initial_value": [ - 367 + 366 ], "ordering": [ - 314 + 313 ], "__typename": [ 80 @@ -7858,10 +7850,10 @@ export default { }, "db_backups_stream_cursor_value_input": { "created_at": [ - 4499 + 4498 ], "id": [ - 4999 + 4998 ], "name": [ 80 @@ -7884,13 +7876,13 @@ export default { "db_backups_update_column": {}, "db_backups_updates": { "_inc": [ - 353 + 352 ], "_set": [ - 362 + 361 ], "where": [ - 351 + 350 ], "__typename": [ 80 @@ -7925,22 +7917,22 @@ export default { 5 ], "captain": [ - 3910 + 3909 ], "captain_steam_id": [ - 258 + 257 ], "created_at": [ - 4499 + 4498 ], "draft_game": [ - 464 + 463 ], "draft_game_id": [ - 4999 + 4998 ], "id": [ - 4999 + 4998 ], "is_organizer": [ 5 @@ -7949,10 +7941,10 @@ export default { 40 ], "picked": [ - 3910 + 3909 ], "picked_steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -7960,10 +7952,10 @@ export default { }, "draft_game_picks_aggregate": { "aggregate": [ - 380 + 379 ], "nodes": [ - 374 + 373 ], "__typename": [ 80 @@ -7971,13 +7963,13 @@ export default { }, "draft_game_picks_aggregate_bool_exp": { "bool_and": [ - 377 + 376 ], "bool_or": [ - 378 + 377 ], "count": [ - 379 + 378 ], "__typename": [ 80 @@ -7985,13 +7977,13 @@ export default { }, "draft_game_picks_aggregate_bool_exp_bool_and": { "arguments": [ - 398 + 397 ], "distinct": [ 5 ], "filter": [ - 385 + 384 ], "predicate": [ 6 @@ -8002,13 +7994,13 @@ export default { }, "draft_game_picks_aggregate_bool_exp_bool_or": { "arguments": [ - 399 + 398 ], "distinct": [ 5 ], "filter": [ - 385 + 384 ], "predicate": [ 6 @@ -8019,13 +8011,13 @@ export default { }, "draft_game_picks_aggregate_bool_exp_count": { "arguments": [ - 397 + 396 ], "distinct": [ 5 ], "filter": [ - 385 + 384 ], "predicate": [ 41 @@ -8036,13 +8028,13 @@ export default { }, "draft_game_picks_aggregate_fields": { "avg": [ - 383 + 382 ], "count": [ 40, { "columns": [ - 397, + 396, "[draft_game_picks_select_column!]" ], "distinct": [ @@ -8051,31 +8043,31 @@ export default { } ], "max": [ - 389 + 388 ], "min": [ - 391 + 390 ], "stddev": [ - 401 + 400 ], "stddev_pop": [ - 403 + 402 ], "stddev_samp": [ - 405 + 404 ], "sum": [ - 409 + 408 ], "var_pop": [ - 413 + 412 ], "var_samp": [ - 415 + 414 ], "variance": [ - 417 + 416 ], "__typename": [ 80 @@ -8083,37 +8075,37 @@ export default { }, "draft_game_picks_aggregate_order_by": { "avg": [ - 384 + 383 ], "count": [ - 2952 + 2951 ], "max": [ - 390 + 389 ], "min": [ - 392 + 391 ], "stddev": [ - 402 + 401 ], "stddev_pop": [ - 404 + 403 ], "stddev_samp": [ - 406 + 405 ], "sum": [ - 410 + 409 ], "var_pop": [ - 414 + 413 ], "var_samp": [ - 416 + 415 ], "variance": [ - 418 + 417 ], "__typename": [ 80 @@ -8121,10 +8113,10 @@ export default { }, "draft_game_picks_arr_rel_insert_input": { "data": [ - 388 + 387 ], "on_conflict": [ - 394 + 393 ], "__typename": [ 80 @@ -8146,13 +8138,13 @@ export default { }, "draft_game_picks_avg_order_by": { "captain_steam_id": [ - 2952 + 2951 ], "lineup": [ - 2952 + 2951 ], "picked_steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -8160,34 +8152,34 @@ export default { }, "draft_game_picks_bool_exp": { "_and": [ - 385 + 384 ], "_not": [ - 385 + 384 ], "_or": [ - 385 + 384 ], "auto_picked": [ 6 ], "captain": [ - 3914 + 3913 ], "captain_steam_id": [ - 260 + 259 ], "created_at": [ - 4500 + 4499 ], "draft_game": [ - 475 + 474 ], "draft_game_id": [ - 5001 + 5000 ], "id": [ - 5001 + 5000 ], "is_organizer": [ 6 @@ -8196,10 +8188,10 @@ export default { 41 ], "picked": [ - 3914 + 3913 ], "picked_steam_id": [ - 260 + 259 ], "__typename": [ 80 @@ -8208,13 +8200,13 @@ export default { "draft_game_picks_constraint": {}, "draft_game_picks_inc_input": { "captain_steam_id": [ - 258 + 257 ], "lineup": [ 40 ], "picked_steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -8225,31 +8217,31 @@ export default { 5 ], "captain": [ - 3921 + 3920 ], "captain_steam_id": [ - 258 + 257 ], "created_at": [ - 4499 + 4498 ], "draft_game": [ - 484 + 483 ], "draft_game_id": [ - 4999 + 4998 ], "id": [ - 4999 + 4998 ], "lineup": [ 40 ], "picked": [ - 3921 + 3920 ], "picked_steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -8257,22 +8249,22 @@ export default { }, "draft_game_picks_max_fields": { "captain_steam_id": [ - 258 + 257 ], "created_at": [ - 4499 + 4498 ], "draft_game_id": [ - 4999 + 4998 ], "id": [ - 4999 + 4998 ], "lineup": [ 40 ], "picked_steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -8280,22 +8272,22 @@ export default { }, "draft_game_picks_max_order_by": { "captain_steam_id": [ - 2952 + 2951 ], "created_at": [ - 2952 + 2951 ], "draft_game_id": [ - 2952 + 2951 ], "id": [ - 2952 + 2951 ], "lineup": [ - 2952 + 2951 ], "picked_steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -8303,22 +8295,22 @@ export default { }, "draft_game_picks_min_fields": { "captain_steam_id": [ - 258 + 257 ], "created_at": [ - 4499 + 4498 ], "draft_game_id": [ - 4999 + 4998 ], "id": [ - 4999 + 4998 ], "lineup": [ 40 ], "picked_steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -8326,22 +8318,22 @@ export default { }, "draft_game_picks_min_order_by": { "captain_steam_id": [ - 2952 + 2951 ], "created_at": [ - 2952 + 2951 ], "draft_game_id": [ - 2952 + 2951 ], "id": [ - 2952 + 2951 ], "lineup": [ - 2952 + 2951 ], "picked_steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -8352,7 +8344,7 @@ export default { 40 ], "returning": [ - 374 + 373 ], "__typename": [ 80 @@ -8360,13 +8352,13 @@ export default { }, "draft_game_picks_on_conflict": { "constraint": [ - 386 + 385 ], "update_columns": [ - 411 + 410 ], "where": [ - 385 + 384 ], "__typename": [ 80 @@ -8374,37 +8366,37 @@ export default { }, "draft_game_picks_order_by": { "auto_picked": [ - 2952 + 2951 ], "captain": [ - 3923 + 3922 ], "captain_steam_id": [ - 2952 + 2951 ], "created_at": [ - 2952 + 2951 ], "draft_game": [ - 486 + 485 ], "draft_game_id": [ - 2952 + 2951 ], "id": [ - 2952 + 2951 ], "is_organizer": [ - 2952 + 2951 ], "lineup": [ - 2952 + 2951 ], "picked": [ - 3923 + 3922 ], "picked_steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -8412,7 +8404,7 @@ export default { }, "draft_game_picks_pk_columns_input": { "id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -8426,22 +8418,22 @@ export default { 5 ], "captain_steam_id": [ - 258 + 257 ], "created_at": [ - 4499 + 4498 ], "draft_game_id": [ - 4999 + 4998 ], "id": [ - 4999 + 4998 ], "lineup": [ 40 ], "picked_steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -8463,13 +8455,13 @@ export default { }, "draft_game_picks_stddev_order_by": { "captain_steam_id": [ - 2952 + 2951 ], "lineup": [ - 2952 + 2951 ], "picked_steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -8491,13 +8483,13 @@ export default { }, "draft_game_picks_stddev_pop_order_by": { "captain_steam_id": [ - 2952 + 2951 ], "lineup": [ - 2952 + 2951 ], "picked_steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -8519,13 +8511,13 @@ export default { }, "draft_game_picks_stddev_samp_order_by": { "captain_steam_id": [ - 2952 + 2951 ], "lineup": [ - 2952 + 2951 ], "picked_steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -8533,10 +8525,10 @@ export default { }, "draft_game_picks_stream_cursor_input": { "initial_value": [ - 408 + 407 ], "ordering": [ - 314 + 313 ], "__typename": [ 80 @@ -8547,22 +8539,22 @@ export default { 5 ], "captain_steam_id": [ - 258 + 257 ], "created_at": [ - 4499 + 4498 ], "draft_game_id": [ - 4999 + 4998 ], "id": [ - 4999 + 4998 ], "lineup": [ 40 ], "picked_steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -8570,13 +8562,13 @@ export default { }, "draft_game_picks_sum_fields": { "captain_steam_id": [ - 258 + 257 ], "lineup": [ 40 ], "picked_steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -8584,13 +8576,13 @@ export default { }, "draft_game_picks_sum_order_by": { "captain_steam_id": [ - 2952 + 2951 ], "lineup": [ - 2952 + 2951 ], "picked_steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -8599,13 +8591,13 @@ export default { "draft_game_picks_update_column": {}, "draft_game_picks_updates": { "_inc": [ - 387 + 386 ], "_set": [ - 400 + 399 ], "where": [ - 385 + 384 ], "__typename": [ 80 @@ -8627,13 +8619,13 @@ export default { }, "draft_game_picks_var_pop_order_by": { "captain_steam_id": [ - 2952 + 2951 ], "lineup": [ - 2952 + 2951 ], "picked_steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -8655,13 +8647,13 @@ export default { }, "draft_game_picks_var_samp_order_by": { "captain_steam_id": [ - 2952 + 2951 ], "lineup": [ - 2952 + 2951 ], "picked_steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -8683,13 +8675,13 @@ export default { }, "draft_game_picks_variance_order_by": { "captain_steam_id": [ - 2952 + 2951 ], "lineup": [ - 2952 + 2951 ], "picked_steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -8697,13 +8689,13 @@ export default { }, "draft_game_players": { "draft_game": [ - 464 + 463 ], "draft_game_id": [ - 4999 + 4998 ], "e_draft_game_player_status": [ - 633 + 632 ], "elo_snapshot": [ 40 @@ -8715,7 +8707,7 @@ export default { 5 ], "joined_at": [ - 4499 + 4498 ], "lineup": [ 40 @@ -8724,13 +8716,13 @@ export default { 40 ], "player": [ - 3910 + 3909 ], "status": [ - 638 + 637 ], "steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -8738,10 +8730,10 @@ export default { }, "draft_game_players_aggregate": { "aggregate": [ - 425 + 424 ], "nodes": [ - 419 + 418 ], "__typename": [ 80 @@ -8749,13 +8741,13 @@ export default { }, "draft_game_players_aggregate_bool_exp": { "bool_and": [ - 422 + 421 ], "bool_or": [ - 423 + 422 ], "count": [ - 424 + 423 ], "__typename": [ 80 @@ -8763,13 +8755,13 @@ export default { }, "draft_game_players_aggregate_bool_exp_bool_and": { "arguments": [ - 443 + 442 ], "distinct": [ 5 ], "filter": [ - 430 + 429 ], "predicate": [ 6 @@ -8780,13 +8772,13 @@ export default { }, "draft_game_players_aggregate_bool_exp_bool_or": { "arguments": [ - 444 + 443 ], "distinct": [ 5 ], "filter": [ - 430 + 429 ], "predicate": [ 6 @@ -8797,13 +8789,13 @@ export default { }, "draft_game_players_aggregate_bool_exp_count": { "arguments": [ - 442 + 441 ], "distinct": [ 5 ], "filter": [ - 430 + 429 ], "predicate": [ 41 @@ -8814,13 +8806,13 @@ export default { }, "draft_game_players_aggregate_fields": { "avg": [ - 428 + 427 ], "count": [ 40, { "columns": [ - 442, + 441, "[draft_game_players_select_column!]" ], "distinct": [ @@ -8829,31 +8821,31 @@ export default { } ], "max": [ - 434 + 433 ], "min": [ - 436 + 435 ], "stddev": [ - 446 + 445 ], "stddev_pop": [ - 448 + 447 ], "stddev_samp": [ - 450 + 449 ], "sum": [ - 454 + 453 ], "var_pop": [ - 458 + 457 ], "var_samp": [ - 460 + 459 ], "variance": [ - 462 + 461 ], "__typename": [ 80 @@ -8861,37 +8853,37 @@ export default { }, "draft_game_players_aggregate_order_by": { "avg": [ - 429 + 428 ], "count": [ - 2952 + 2951 ], "max": [ - 435 + 434 ], "min": [ - 437 + 436 ], "stddev": [ - 447 + 446 ], "stddev_pop": [ - 449 + 448 ], "stddev_samp": [ - 451 + 450 ], "sum": [ - 455 + 454 ], "var_pop": [ - 459 + 458 ], "var_samp": [ - 461 + 460 ], "variance": [ - 463 + 462 ], "__typename": [ 80 @@ -8899,10 +8891,10 @@ export default { }, "draft_game_players_arr_rel_insert_input": { "data": [ - 433 + 432 ], "on_conflict": [ - 439 + 438 ], "__typename": [ 80 @@ -8927,16 +8919,16 @@ export default { }, "draft_game_players_avg_order_by": { "elo_snapshot": [ - 2952 + 2951 ], "lineup": [ - 2952 + 2951 ], "pick_order": [ - 2952 + 2951 ], "steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -8944,22 +8936,22 @@ export default { }, "draft_game_players_bool_exp": { "_and": [ - 430 + 429 ], "_not": [ - 430 + 429 ], "_or": [ - 430 + 429 ], "draft_game": [ - 475 + 474 ], "draft_game_id": [ - 5001 + 5000 ], "e_draft_game_player_status": [ - 636 + 635 ], "elo_snapshot": [ 41 @@ -8971,7 +8963,7 @@ export default { 6 ], "joined_at": [ - 4500 + 4499 ], "lineup": [ 41 @@ -8980,13 +8972,13 @@ export default { 41 ], "player": [ - 3914 + 3913 ], "status": [ - 639 + 638 ], "steam_id": [ - 260 + 259 ], "__typename": [ 80 @@ -9004,7 +8996,7 @@ export default { 40 ], "steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -9012,13 +9004,13 @@ export default { }, "draft_game_players_insert_input": { "draft_game": [ - 484 + 483 ], "draft_game_id": [ - 4999 + 4998 ], "e_draft_game_player_status": [ - 644 + 643 ], "elo_snapshot": [ 40 @@ -9027,7 +9019,7 @@ export default { 5 ], "joined_at": [ - 4499 + 4498 ], "lineup": [ 40 @@ -9036,13 +9028,13 @@ export default { 40 ], "player": [ - 3921 + 3920 ], "status": [ - 638 + 637 ], "steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -9050,13 +9042,13 @@ export default { }, "draft_game_players_max_fields": { "draft_game_id": [ - 4999 + 4998 ], "elo_snapshot": [ 40 ], "joined_at": [ - 4499 + 4498 ], "lineup": [ 40 @@ -9065,7 +9057,7 @@ export default { 40 ], "steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -9073,22 +9065,22 @@ export default { }, "draft_game_players_max_order_by": { "draft_game_id": [ - 2952 + 2951 ], "elo_snapshot": [ - 2952 + 2951 ], "joined_at": [ - 2952 + 2951 ], "lineup": [ - 2952 + 2951 ], "pick_order": [ - 2952 + 2951 ], "steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -9096,13 +9088,13 @@ export default { }, "draft_game_players_min_fields": { "draft_game_id": [ - 4999 + 4998 ], "elo_snapshot": [ 40 ], "joined_at": [ - 4499 + 4498 ], "lineup": [ 40 @@ -9111,7 +9103,7 @@ export default { 40 ], "steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -9119,22 +9111,22 @@ export default { }, "draft_game_players_min_order_by": { "draft_game_id": [ - 2952 + 2951 ], "elo_snapshot": [ - 2952 + 2951 ], "joined_at": [ - 2952 + 2951 ], "lineup": [ - 2952 + 2951 ], "pick_order": [ - 2952 + 2951 ], "steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -9145,7 +9137,7 @@ export default { 40 ], "returning": [ - 419 + 418 ], "__typename": [ 80 @@ -9153,13 +9145,13 @@ export default { }, "draft_game_players_on_conflict": { "constraint": [ - 431 + 430 ], "update_columns": [ - 456 + 455 ], "where": [ - 430 + 429 ], "__typename": [ 80 @@ -9167,40 +9159,40 @@ export default { }, "draft_game_players_order_by": { "draft_game": [ - 486 + 485 ], "draft_game_id": [ - 2952 + 2951 ], "e_draft_game_player_status": [ - 646 + 645 ], "elo_snapshot": [ - 2952 + 2951 ], "is_captain": [ - 2952 + 2951 ], "is_organizer": [ - 2952 + 2951 ], "joined_at": [ - 2952 + 2951 ], "lineup": [ - 2952 + 2951 ], "pick_order": [ - 2952 + 2951 ], "player": [ - 3923 + 3922 ], "status": [ - 2952 + 2951 ], "steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -9208,10 +9200,10 @@ export default { }, "draft_game_players_pk_columns_input": { "draft_game_id": [ - 4999 + 4998 ], "steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -9222,7 +9214,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": [ - 4999 + 4998 ], "elo_snapshot": [ 40 @@ -9231,7 +9223,7 @@ export default { 5 ], "joined_at": [ - 4499 + 4498 ], "lineup": [ 40 @@ -9240,10 +9232,10 @@ export default { 40 ], "status": [ - 638 + 637 ], "steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -9268,16 +9260,16 @@ export default { }, "draft_game_players_stddev_order_by": { "elo_snapshot": [ - 2952 + 2951 ], "lineup": [ - 2952 + 2951 ], "pick_order": [ - 2952 + 2951 ], "steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -9302,16 +9294,16 @@ export default { }, "draft_game_players_stddev_pop_order_by": { "elo_snapshot": [ - 2952 + 2951 ], "lineup": [ - 2952 + 2951 ], "pick_order": [ - 2952 + 2951 ], "steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -9336,16 +9328,16 @@ export default { }, "draft_game_players_stddev_samp_order_by": { "elo_snapshot": [ - 2952 + 2951 ], "lineup": [ - 2952 + 2951 ], "pick_order": [ - 2952 + 2951 ], "steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -9353,10 +9345,10 @@ export default { }, "draft_game_players_stream_cursor_input": { "initial_value": [ - 453 + 452 ], "ordering": [ - 314 + 313 ], "__typename": [ 80 @@ -9364,7 +9356,7 @@ export default { }, "draft_game_players_stream_cursor_value_input": { "draft_game_id": [ - 4999 + 4998 ], "elo_snapshot": [ 40 @@ -9373,7 +9365,7 @@ export default { 5 ], "joined_at": [ - 4499 + 4498 ], "lineup": [ 40 @@ -9382,10 +9374,10 @@ export default { 40 ], "status": [ - 638 + 637 ], "steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -9402,7 +9394,7 @@ export default { 40 ], "steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -9410,16 +9402,16 @@ export default { }, "draft_game_players_sum_order_by": { "elo_snapshot": [ - 2952 + 2951 ], "lineup": [ - 2952 + 2951 ], "pick_order": [ - 2952 + 2951 ], "steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -9428,13 +9420,13 @@ export default { "draft_game_players_update_column": {}, "draft_game_players_updates": { "_inc": [ - 432 + 431 ], "_set": [ - 445 + 444 ], "where": [ - 430 + 429 ], "__typename": [ 80 @@ -9459,16 +9451,16 @@ export default { }, "draft_game_players_var_pop_order_by": { "elo_snapshot": [ - 2952 + 2951 ], "lineup": [ - 2952 + 2951 ], "pick_order": [ - 2952 + 2951 ], "steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -9493,16 +9485,16 @@ export default { }, "draft_game_players_var_samp_order_by": { "elo_snapshot": [ - 2952 + 2951 ], "lineup": [ - 2952 + 2951 ], "pick_order": [ - 2952 + 2951 ], "steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -9527,16 +9519,16 @@ export default { }, "draft_game_players_variance_order_by": { "elo_snapshot": [ - 2952 + 2951 ], "lineup": [ - 2952 + 2951 ], "pick_order": [ - 2952 + 2951 ], "steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -9544,73 +9536,73 @@ export default { }, "draft_games": { "access": [ - 866 + 865 ], "capacity": [ 40 ], "captain_selection": [ - 575 + 574 ], "created_at": [ - 4499 + 4498 ], "current_pick_lineup": [ 40 ], "draft_order": [ - 596 + 595 ], "e_draft_game_captain_selection": [ - 570 + 569 ], "e_draft_game_draft_order": [ - 591 + 590 ], "e_draft_game_mode": [ - 612 + 611 ], "e_draft_game_status": [ - 654 + 653 ], "e_lobby_access": [ - 861 + 860 ], "expires_at": [ - 4499 + 4498 ], "host": [ - 3910 + 3909 ], "host_steam_id": [ - 258 + 257 ], "id": [ - 4999 + 4998 ], "inner_squad": [ 5 ], "invite_code": [ - 4999 + 4998 ], "is_organizer": [ 5 ], "map_pool": [ - 2266 + 2265 ], "map_pool_id": [ - 4999 + 4998 ], "match": [ - 2767 + 2766 ], "match_id": [ - 4999 + 4998 ], "match_options_id": [ - 4999 + 4998 ], "max_elo": [ 40 @@ -9619,13 +9611,13 @@ export default { 40 ], "mode": [ - 617 + 616 ], "options": [ - 2647 + 2646 ], "pattern": [ - 1823, + 1822, { "path": [ 80 @@ -9633,13 +9625,13 @@ export default { } ], "pick_deadline": [ - 4499 + 4498 ], "picks": [ - 374, + 373, { "distinct_on": [ - 397, + 396, "[draft_game_picks_select_column!]" ], "limit": [ @@ -9649,19 +9641,19 @@ export default { 40 ], "order_by": [ - 395, + 394, "[draft_game_picks_order_by!]" ], "where": [ - 385 + 384 ] } ], "picks_aggregate": [ - 375, + 374, { "distinct_on": [ - 397, + 396, "[draft_game_picks_select_column!]" ], "limit": [ @@ -9671,19 +9663,19 @@ export default { 40 ], "order_by": [ - 395, + 394, "[draft_game_picks_order_by!]" ], "where": [ - 385 + 384 ] } ], "players": [ - 419, + 418, { "distinct_on": [ - 442, + 441, "[draft_game_players_select_column!]" ], "limit": [ @@ -9693,19 +9685,19 @@ export default { 40 ], "order_by": [ - 440, + 439, "[draft_game_players_order_by!]" ], "where": [ - 430 + 429 ] } ], "players_aggregate": [ - 420, + 419, { "distinct_on": [ - 442, + 441, "[draft_game_players_select_column!]" ], "limit": [ @@ -9715,11 +9707,11 @@ export default { 40 ], "order_by": [ - 440, + 439, "[draft_game_players_order_by!]" ], "where": [ - 430 + 429 ] } ], @@ -9730,28 +9722,28 @@ export default { 5 ], "scheduled_at": [ - 4499 + 4498 ], "status": [ - 659 + 658 ], "team_1": [ - 4452 + 4451 ], "team_1_id": [ - 4999 + 4998 ], "team_2": [ - 4452 + 4451 ], "team_2_id": [ - 4999 + 4998 ], "type": [ - 1010 + 1009 ], "updated_at": [ - 4499 + 4498 ], "__typename": [ 80 @@ -9759,10 +9751,10 @@ export default { }, "draft_games_aggregate": { "aggregate": [ - 470 + 469 ], "nodes": [ - 464 + 463 ], "__typename": [ 80 @@ -9770,13 +9762,13 @@ export default { }, "draft_games_aggregate_bool_exp": { "bool_and": [ - 467 + 466 ], "bool_or": [ - 468 + 467 ], "count": [ - 469 + 468 ], "__typename": [ 80 @@ -9784,13 +9776,13 @@ export default { }, "draft_games_aggregate_bool_exp_bool_and": { "arguments": [ - 489 + 488 ], "distinct": [ 5 ], "filter": [ - 475 + 474 ], "predicate": [ 6 @@ -9801,13 +9793,13 @@ export default { }, "draft_games_aggregate_bool_exp_bool_or": { "arguments": [ - 490 + 489 ], "distinct": [ 5 ], "filter": [ - 475 + 474 ], "predicate": [ 6 @@ -9818,13 +9810,13 @@ export default { }, "draft_games_aggregate_bool_exp_count": { "arguments": [ - 488 + 487 ], "distinct": [ 5 ], "filter": [ - 475 + 474 ], "predicate": [ 41 @@ -9835,13 +9827,13 @@ export default { }, "draft_games_aggregate_fields": { "avg": [ - 473 + 472 ], "count": [ 40, { "columns": [ - 488, + 487, "[draft_games_select_column!]" ], "distinct": [ @@ -9850,31 +9842,31 @@ export default { } ], "max": [ - 479 + 478 ], "min": [ - 481 + 480 ], "stddev": [ - 492 + 491 ], "stddev_pop": [ - 494 + 493 ], "stddev_samp": [ - 496 + 495 ], "sum": [ - 500 + 499 ], "var_pop": [ - 504 + 503 ], "var_samp": [ - 506 + 505 ], "variance": [ - 508 + 507 ], "__typename": [ 80 @@ -9882,37 +9874,37 @@ export default { }, "draft_games_aggregate_order_by": { "avg": [ - 474 + 473 ], "count": [ - 2952 + 2951 ], "max": [ - 480 + 479 ], "min": [ - 482 + 481 ], "stddev": [ - 493 + 492 ], "stddev_pop": [ - 495 + 494 ], "stddev_samp": [ - 497 + 496 ], "sum": [ - 501 + 500 ], "var_pop": [ - 505 + 504 ], "var_samp": [ - 507 + 506 ], "variance": [ - 509 + 508 ], "__typename": [ 80 @@ -9920,10 +9912,10 @@ export default { }, "draft_games_arr_rel_insert_input": { "data": [ - 478 + 477 ], "on_conflict": [ - 485 + 484 ], "__typename": [ 80 @@ -9951,19 +9943,19 @@ export default { }, "draft_games_avg_order_by": { "capacity": [ - 2952 + 2951 ], "current_pick_lineup": [ - 2952 + 2951 ], "host_steam_id": [ - 2952 + 2951 ], "max_elo": [ - 2952 + 2951 ], "min_elo": [ - 2952 + 2951 ], "__typename": [ 80 @@ -9971,82 +9963,82 @@ export default { }, "draft_games_bool_exp": { "_and": [ - 475 + 474 ], "_not": [ - 475 + 474 ], "_or": [ - 475 + 474 ], "access": [ - 867 + 866 ], "capacity": [ 41 ], "captain_selection": [ - 576 + 575 ], "created_at": [ - 4500 + 4499 ], "current_pick_lineup": [ 41 ], "draft_order": [ - 597 + 596 ], "e_draft_game_captain_selection": [ - 573 + 572 ], "e_draft_game_draft_order": [ - 594 + 593 ], "e_draft_game_mode": [ - 615 + 614 ], "e_draft_game_status": [ - 657 + 656 ], "e_lobby_access": [ - 864 + 863 ], "expires_at": [ - 4500 + 4499 ], "host": [ - 3914 + 3913 ], "host_steam_id": [ - 260 + 259 ], "id": [ - 5001 + 5000 ], "inner_squad": [ 6 ], "invite_code": [ - 5001 + 5000 ], "is_organizer": [ 6 ], "map_pool": [ - 2269 + 2268 ], "map_pool_id": [ - 5001 + 5000 ], "match": [ - 2776 + 2775 ], "match_id": [ - 5001 + 5000 ], "match_options_id": [ - 5001 + 5000 ], "max_elo": [ 41 @@ -10055,28 +10047,28 @@ export default { 41 ], "mode": [ - 618 + 617 ], "options": [ - 2651 + 2650 ], "pattern": [ - 1825 + 1824 ], "pick_deadline": [ - 4500 + 4499 ], "picks": [ - 385 + 384 ], "picks_aggregate": [ - 376 + 375 ], "players": [ - 430 + 429 ], "players_aggregate": [ - 421 + 420 ], "regions": [ 81 @@ -10085,28 +10077,28 @@ export default { 6 ], "scheduled_at": [ - 4500 + 4499 ], "status": [ - 660 + 659 ], "team_1": [ - 4463 + 4462 ], "team_1_id": [ - 5001 + 5000 ], "team_2": [ - 4463 + 4462 ], "team_2_id": [ - 5001 + 5000 ], "type": [ - 1011 + 1010 ], "updated_at": [ - 4500 + 4499 ], "__typename": [ 80 @@ -10121,7 +10113,7 @@ export default { 40 ], "host_steam_id": [ - 258 + 257 ], "max_elo": [ 40 @@ -10135,70 +10127,70 @@ export default { }, "draft_games_insert_input": { "access": [ - 866 + 865 ], "capacity": [ 40 ], "captain_selection": [ - 575 + 574 ], "created_at": [ - 4499 + 4498 ], "current_pick_lineup": [ 40 ], "draft_order": [ - 596 + 595 ], "e_draft_game_captain_selection": [ - 581 + 580 ], "e_draft_game_draft_order": [ - 602 + 601 ], "e_draft_game_mode": [ - 623 + 622 ], "e_draft_game_status": [ - 665 + 664 ], "e_lobby_access": [ - 872 + 871 ], "expires_at": [ - 4499 + 4498 ], "host": [ - 3921 + 3920 ], "host_steam_id": [ - 258 + 257 ], "id": [ - 4999 + 4998 ], "inner_squad": [ 5 ], "invite_code": [ - 4999 + 4998 ], "map_pool": [ - 2275 + 2274 ], "map_pool_id": [ - 4999 + 4998 ], "match": [ - 2785 + 2784 ], "match_id": [ - 4999 + 4998 ], "match_options_id": [ - 4999 + 4998 ], "max_elo": [ 40 @@ -10207,19 +10199,19 @@ export default { 40 ], "mode": [ - 617 + 616 ], "options": [ - 2658 + 2657 ], "pick_deadline": [ - 4499 + 4498 ], "picks": [ - 382 + 381 ], "players": [ - 427 + 426 ], "regions": [ 80 @@ -10228,28 +10220,28 @@ export default { 5 ], "scheduled_at": [ - 4499 + 4498 ], "status": [ - 659 + 658 ], "team_1": [ - 4472 + 4471 ], "team_1_id": [ - 4999 + 4998 ], "team_2": [ - 4472 + 4471 ], "team_2_id": [ - 4999 + 4998 ], "type": [ - 1010 + 1009 ], "updated_at": [ - 4499 + 4498 ], "__typename": [ 80 @@ -10260,31 +10252,31 @@ export default { 40 ], "created_at": [ - 4499 + 4498 ], "current_pick_lineup": [ 40 ], "expires_at": [ - 4499 + 4498 ], "host_steam_id": [ - 258 + 257 ], "id": [ - 4999 + 4998 ], "invite_code": [ - 4999 + 4998 ], "map_pool_id": [ - 4999 + 4998 ], "match_id": [ - 4999 + 4998 ], "match_options_id": [ - 4999 + 4998 ], "max_elo": [ 40 @@ -10293,22 +10285,22 @@ export default { 40 ], "pick_deadline": [ - 4499 + 4498 ], "regions": [ 80 ], "scheduled_at": [ - 4499 + 4498 ], "team_1_id": [ - 4999 + 4998 ], "team_2_id": [ - 4999 + 4998 ], "updated_at": [ - 4499 + 4498 ], "__typename": [ 80 @@ -10316,58 +10308,58 @@ export default { }, "draft_games_max_order_by": { "capacity": [ - 2952 + 2951 ], "created_at": [ - 2952 + 2951 ], "current_pick_lineup": [ - 2952 + 2951 ], "expires_at": [ - 2952 + 2951 ], "host_steam_id": [ - 2952 + 2951 ], "id": [ - 2952 + 2951 ], "invite_code": [ - 2952 + 2951 ], "map_pool_id": [ - 2952 + 2951 ], "match_id": [ - 2952 + 2951 ], "match_options_id": [ - 2952 + 2951 ], "max_elo": [ - 2952 + 2951 ], "min_elo": [ - 2952 + 2951 ], "pick_deadline": [ - 2952 + 2951 ], "regions": [ - 2952 + 2951 ], "scheduled_at": [ - 2952 + 2951 ], "team_1_id": [ - 2952 + 2951 ], "team_2_id": [ - 2952 + 2951 ], "updated_at": [ - 2952 + 2951 ], "__typename": [ 80 @@ -10378,31 +10370,31 @@ export default { 40 ], "created_at": [ - 4499 + 4498 ], "current_pick_lineup": [ 40 ], "expires_at": [ - 4499 + 4498 ], "host_steam_id": [ - 258 + 257 ], "id": [ - 4999 + 4998 ], "invite_code": [ - 4999 + 4998 ], "map_pool_id": [ - 4999 + 4998 ], "match_id": [ - 4999 + 4998 ], "match_options_id": [ - 4999 + 4998 ], "max_elo": [ 40 @@ -10411,22 +10403,22 @@ export default { 40 ], "pick_deadline": [ - 4499 + 4498 ], "regions": [ 80 ], "scheduled_at": [ - 4499 + 4498 ], "team_1_id": [ - 4999 + 4998 ], "team_2_id": [ - 4999 + 4998 ], "updated_at": [ - 4499 + 4498 ], "__typename": [ 80 @@ -10434,58 +10426,58 @@ export default { }, "draft_games_min_order_by": { "capacity": [ - 2952 + 2951 ], "created_at": [ - 2952 + 2951 ], "current_pick_lineup": [ - 2952 + 2951 ], "expires_at": [ - 2952 + 2951 ], "host_steam_id": [ - 2952 + 2951 ], "id": [ - 2952 + 2951 ], "invite_code": [ - 2952 + 2951 ], "map_pool_id": [ - 2952 + 2951 ], "match_id": [ - 2952 + 2951 ], "match_options_id": [ - 2952 + 2951 ], "max_elo": [ - 2952 + 2951 ], "min_elo": [ - 2952 + 2951 ], "pick_deadline": [ - 2952 + 2951 ], "regions": [ - 2952 + 2951 ], "scheduled_at": [ - 2952 + 2951 ], "team_1_id": [ - 2952 + 2951 ], "team_2_id": [ - 2952 + 2951 ], "updated_at": [ - 2952 + 2951 ], "__typename": [ 80 @@ -10496,7 +10488,7 @@ export default { 40 ], "returning": [ - 464 + 463 ], "__typename": [ 80 @@ -10504,10 +10496,10 @@ export default { }, "draft_games_obj_rel_insert_input": { "data": [ - 478 + 477 ], "on_conflict": [ - 485 + 484 ], "__typename": [ 80 @@ -10515,13 +10507,13 @@ export default { }, "draft_games_on_conflict": { "constraint": [ - 476 + 475 ], "update_columns": [ - 502 + 501 ], "where": [ - 475 + 474 ], "__typename": [ 80 @@ -10529,127 +10521,127 @@ export default { }, "draft_games_order_by": { "access": [ - 2952 + 2951 ], "capacity": [ - 2952 + 2951 ], "captain_selection": [ - 2952 + 2951 ], "created_at": [ - 2952 + 2951 ], "current_pick_lineup": [ - 2952 + 2951 ], "draft_order": [ - 2952 + 2951 ], "e_draft_game_captain_selection": [ - 583 + 582 ], "e_draft_game_draft_order": [ - 604 + 603 ], "e_draft_game_mode": [ - 625 + 624 ], "e_draft_game_status": [ - 667 + 666 ], "e_lobby_access": [ - 874 + 873 ], "expires_at": [ - 2952 + 2951 ], "host": [ - 3923 + 3922 ], "host_steam_id": [ - 2952 + 2951 ], "id": [ - 2952 + 2951 ], "inner_squad": [ - 2952 + 2951 ], "invite_code": [ - 2952 + 2951 ], "is_organizer": [ - 2952 + 2951 ], "map_pool": [ - 2277 + 2276 ], "map_pool_id": [ - 2952 + 2951 ], "match": [ - 2787 + 2786 ], "match_id": [ - 2952 + 2951 ], "match_options_id": [ - 2952 + 2951 ], "max_elo": [ - 2952 + 2951 ], "min_elo": [ - 2952 + 2951 ], "mode": [ - 2952 + 2951 ], "options": [ - 2660 + 2659 ], "pattern": [ - 2952 + 2951 ], "pick_deadline": [ - 2952 + 2951 ], "picks_aggregate": [ - 381 + 380 ], "players_aggregate": [ - 426 + 425 ], "regions": [ - 2952 + 2951 ], "require_approval": [ - 2952 + 2951 ], "scheduled_at": [ - 2952 + 2951 ], "status": [ - 2952 + 2951 ], "team_1": [ - 4474 + 4473 ], "team_1_id": [ - 2952 + 2951 ], "team_2": [ - 4474 + 4473 ], "team_2_id": [ - 2952 + 2951 ], "type": [ - 2952 + 2951 ], "updated_at": [ - 2952 + 2951 ], "__typename": [ 80 @@ -10657,7 +10649,7 @@ export default { }, "draft_games_pk_columns_input": { "id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -10668,46 +10660,46 @@ export default { "draft_games_select_column_draft_games_aggregate_bool_exp_bool_or_arguments_columns": {}, "draft_games_set_input": { "access": [ - 866 + 865 ], "capacity": [ 40 ], "captain_selection": [ - 575 + 574 ], "created_at": [ - 4499 + 4498 ], "current_pick_lineup": [ 40 ], "draft_order": [ - 596 + 595 ], "expires_at": [ - 4499 + 4498 ], "host_steam_id": [ - 258 + 257 ], "id": [ - 4999 + 4998 ], "inner_squad": [ 5 ], "invite_code": [ - 4999 + 4998 ], "map_pool_id": [ - 4999 + 4998 ], "match_id": [ - 4999 + 4998 ], "match_options_id": [ - 4999 + 4998 ], "max_elo": [ 40 @@ -10716,10 +10708,10 @@ export default { 40 ], "mode": [ - 617 + 616 ], "pick_deadline": [ - 4499 + 4498 ], "regions": [ 80 @@ -10728,22 +10720,22 @@ export default { 5 ], "scheduled_at": [ - 4499 + 4498 ], "status": [ - 659 + 658 ], "team_1_id": [ - 4999 + 4998 ], "team_2_id": [ - 4999 + 4998 ], "type": [ - 1010 + 1009 ], "updated_at": [ - 4499 + 4498 ], "__typename": [ 80 @@ -10771,19 +10763,19 @@ export default { }, "draft_games_stddev_order_by": { "capacity": [ - 2952 + 2951 ], "current_pick_lineup": [ - 2952 + 2951 ], "host_steam_id": [ - 2952 + 2951 ], "max_elo": [ - 2952 + 2951 ], "min_elo": [ - 2952 + 2951 ], "__typename": [ 80 @@ -10811,19 +10803,19 @@ export default { }, "draft_games_stddev_pop_order_by": { "capacity": [ - 2952 + 2951 ], "current_pick_lineup": [ - 2952 + 2951 ], "host_steam_id": [ - 2952 + 2951 ], "max_elo": [ - 2952 + 2951 ], "min_elo": [ - 2952 + 2951 ], "__typename": [ 80 @@ -10851,19 +10843,19 @@ export default { }, "draft_games_stddev_samp_order_by": { "capacity": [ - 2952 + 2951 ], "current_pick_lineup": [ - 2952 + 2951 ], "host_steam_id": [ - 2952 + 2951 ], "max_elo": [ - 2952 + 2951 ], "min_elo": [ - 2952 + 2951 ], "__typename": [ 80 @@ -10871,10 +10863,10 @@ export default { }, "draft_games_stream_cursor_input": { "initial_value": [ - 499 + 498 ], "ordering": [ - 314 + 313 ], "__typename": [ 80 @@ -10882,46 +10874,46 @@ export default { }, "draft_games_stream_cursor_value_input": { "access": [ - 866 + 865 ], "capacity": [ 40 ], "captain_selection": [ - 575 + 574 ], "created_at": [ - 4499 + 4498 ], "current_pick_lineup": [ 40 ], "draft_order": [ - 596 + 595 ], "expires_at": [ - 4499 + 4498 ], "host_steam_id": [ - 258 + 257 ], "id": [ - 4999 + 4998 ], "inner_squad": [ 5 ], "invite_code": [ - 4999 + 4998 ], "map_pool_id": [ - 4999 + 4998 ], "match_id": [ - 4999 + 4998 ], "match_options_id": [ - 4999 + 4998 ], "max_elo": [ 40 @@ -10930,10 +10922,10 @@ export default { 40 ], "mode": [ - 617 + 616 ], "pick_deadline": [ - 4499 + 4498 ], "regions": [ 80 @@ -10942,22 +10934,22 @@ export default { 5 ], "scheduled_at": [ - 4499 + 4498 ], "status": [ - 659 + 658 ], "team_1_id": [ - 4999 + 4998 ], "team_2_id": [ - 4999 + 4998 ], "type": [ - 1010 + 1009 ], "updated_at": [ - 4499 + 4498 ], "__typename": [ 80 @@ -10971,7 +10963,7 @@ export default { 40 ], "host_steam_id": [ - 258 + 257 ], "max_elo": [ 40 @@ -10985,19 +10977,19 @@ export default { }, "draft_games_sum_order_by": { "capacity": [ - 2952 + 2951 ], "current_pick_lineup": [ - 2952 + 2951 ], "host_steam_id": [ - 2952 + 2951 ], "max_elo": [ - 2952 + 2951 ], "min_elo": [ - 2952 + 2951 ], "__typename": [ 80 @@ -11006,13 +10998,13 @@ export default { "draft_games_update_column": {}, "draft_games_updates": { "_inc": [ - 477 + 476 ], "_set": [ - 491 + 490 ], "where": [ - 475 + 474 ], "__typename": [ 80 @@ -11040,19 +11032,19 @@ export default { }, "draft_games_var_pop_order_by": { "capacity": [ - 2952 + 2951 ], "current_pick_lineup": [ - 2952 + 2951 ], "host_steam_id": [ - 2952 + 2951 ], "max_elo": [ - 2952 + 2951 ], "min_elo": [ - 2952 + 2951 ], "__typename": [ 80 @@ -11080,19 +11072,19 @@ export default { }, "draft_games_var_samp_order_by": { "capacity": [ - 2952 + 2951 ], "current_pick_lineup": [ - 2952 + 2951 ], "host_steam_id": [ - 2952 + 2951 ], "max_elo": [ - 2952 + 2951 ], "min_elo": [ - 2952 + 2951 ], "__typename": [ 80 @@ -11120,19 +11112,19 @@ export default { }, "draft_games_variance_order_by": { "capacity": [ - 2952 + 2951 ], "current_pick_lineup": [ - 2952 + 2951 ], "host_steam_id": [ - 2952 + 2951 ], "max_elo": [ - 2952 + 2951 ], "min_elo": [ - 2952 + 2951 ], "__typename": [ 80 @@ -11151,10 +11143,10 @@ export default { }, "e_award_sources_aggregate": { "aggregate": [ - 512 + 511 ], "nodes": [ - 510 + 509 ], "__typename": [ 80 @@ -11165,7 +11157,7 @@ export default { 40, { "columns": [ - 524, + 523, "[e_award_sources_select_column!]" ], "distinct": [ @@ -11174,10 +11166,10 @@ export default { } ], "max": [ - 518 + 517 ], "min": [ - 519 + 518 ], "__typename": [ 80 @@ -11185,13 +11177,13 @@ export default { }, "e_award_sources_bool_exp": { "_and": [ - 513 + 512 ], "_not": [ - 513 + 512 ], "_or": [ - 513 + 512 ], "description": [ 82 @@ -11207,19 +11199,19 @@ export default { "e_award_sources_enum": {}, "e_award_sources_enum_comparison_exp": { "_eq": [ - 515 + 514 ], "_in": [ - 515 + 514 ], "_is_null": [ 5 ], "_neq": [ - 515 + 514 ], "_nin": [ - 515 + 514 ], "__typename": [ 80 @@ -11263,7 +11255,7 @@ export default { 40 ], "returning": [ - 510 + 509 ], "__typename": [ 80 @@ -11271,13 +11263,13 @@ export default { }, "e_award_sources_on_conflict": { "constraint": [ - 514 + 513 ], "update_columns": [ - 528 + 527 ], "where": [ - 513 + 512 ], "__typename": [ 80 @@ -11285,10 +11277,10 @@ export default { }, "e_award_sources_order_by": { "description": [ - 2952 + 2951 ], "value": [ - 2952 + 2951 ], "__typename": [ 80 @@ -11316,10 +11308,10 @@ export default { }, "e_award_sources_stream_cursor_input": { "initial_value": [ - 527 + 526 ], "ordering": [ - 314 + 313 ], "__typename": [ 80 @@ -11339,10 +11331,10 @@ export default { "e_award_sources_update_column": {}, "e_award_sources_updates": { "_set": [ - 525 + 524 ], "where": [ - 513 + 512 ], "__typename": [ 80 @@ -11361,10 +11353,10 @@ export default { }, "e_award_tiers_aggregate": { "aggregate": [ - 532 + 531 ], "nodes": [ - 530 + 529 ], "__typename": [ 80 @@ -11375,7 +11367,7 @@ export default { 40, { "columns": [ - 544, + 543, "[e_award_tiers_select_column!]" ], "distinct": [ @@ -11384,10 +11376,10 @@ export default { } ], "max": [ - 538 + 537 ], "min": [ - 539 + 538 ], "__typename": [ 80 @@ -11395,13 +11387,13 @@ export default { }, "e_award_tiers_bool_exp": { "_and": [ - 533 + 532 ], "_not": [ - 533 + 532 ], "_or": [ - 533 + 532 ], "description": [ 82 @@ -11417,19 +11409,19 @@ export default { "e_award_tiers_enum": {}, "e_award_tiers_enum_comparison_exp": { "_eq": [ - 535 + 534 ], "_in": [ - 535 + 534 ], "_is_null": [ 5 ], "_neq": [ - 535 + 534 ], "_nin": [ - 535 + 534 ], "__typename": [ 80 @@ -11473,7 +11465,7 @@ export default { 40 ], "returning": [ - 530 + 529 ], "__typename": [ 80 @@ -11481,13 +11473,13 @@ export default { }, "e_award_tiers_on_conflict": { "constraint": [ - 534 + 533 ], "update_columns": [ - 548 + 547 ], "where": [ - 533 + 532 ], "__typename": [ 80 @@ -11495,10 +11487,10 @@ export default { }, "e_award_tiers_order_by": { "description": [ - 2952 + 2951 ], "value": [ - 2952 + 2951 ], "__typename": [ 80 @@ -11526,10 +11518,10 @@ export default { }, "e_award_tiers_stream_cursor_input": { "initial_value": [ - 547 + 546 ], "ordering": [ - 314 + 313 ], "__typename": [ 80 @@ -11549,10 +11541,10 @@ export default { "e_award_tiers_update_column": {}, "e_award_tiers_updates": { "_set": [ - 545 + 544 ], "where": [ - 533 + 532 ], "__typename": [ 80 @@ -11571,10 +11563,10 @@ export default { }, "e_check_in_settings_aggregate": { "aggregate": [ - 552 + 551 ], "nodes": [ - 550 + 549 ], "__typename": [ 80 @@ -11585,7 +11577,7 @@ export default { 40, { "columns": [ - 564, + 563, "[e_check_in_settings_select_column!]" ], "distinct": [ @@ -11594,10 +11586,10 @@ export default { } ], "max": [ - 558 + 557 ], "min": [ - 559 + 558 ], "__typename": [ 80 @@ -11605,13 +11597,13 @@ export default { }, "e_check_in_settings_bool_exp": { "_and": [ - 553 + 552 ], "_not": [ - 553 + 552 ], "_or": [ - 553 + 552 ], "description": [ 82 @@ -11627,19 +11619,19 @@ export default { "e_check_in_settings_enum": {}, "e_check_in_settings_enum_comparison_exp": { "_eq": [ - 555 + 554 ], "_in": [ - 555 + 554 ], "_is_null": [ 5 ], "_neq": [ - 555 + 554 ], "_nin": [ - 555 + 554 ], "__typename": [ 80 @@ -11683,7 +11675,7 @@ export default { 40 ], "returning": [ - 550 + 549 ], "__typename": [ 80 @@ -11691,13 +11683,13 @@ export default { }, "e_check_in_settings_on_conflict": { "constraint": [ - 554 + 553 ], "update_columns": [ - 568 + 567 ], "where": [ - 553 + 552 ], "__typename": [ 80 @@ -11705,10 +11697,10 @@ export default { }, "e_check_in_settings_order_by": { "description": [ - 2952 + 2951 ], "value": [ - 2952 + 2951 ], "__typename": [ 80 @@ -11736,10 +11728,10 @@ export default { }, "e_check_in_settings_stream_cursor_input": { "initial_value": [ - 567 + 566 ], "ordering": [ - 314 + 313 ], "__typename": [ 80 @@ -11759,10 +11751,10 @@ export default { "e_check_in_settings_update_column": {}, "e_check_in_settings_updates": { "_set": [ - 565 + 564 ], "where": [ - 553 + 552 ], "__typename": [ 80 @@ -11781,10 +11773,10 @@ export default { }, "e_draft_game_captain_selection_aggregate": { "aggregate": [ - 572 + 571 ], "nodes": [ - 570 + 569 ], "__typename": [ 80 @@ -11795,7 +11787,7 @@ export default { 40, { "columns": [ - 585, + 584, "[e_draft_game_captain_selection_select_column!]" ], "distinct": [ @@ -11804,10 +11796,10 @@ export default { } ], "max": [ - 578 + 577 ], "min": [ - 579 + 578 ], "__typename": [ 80 @@ -11815,13 +11807,13 @@ export default { }, "e_draft_game_captain_selection_bool_exp": { "_and": [ - 573 + 572 ], "_not": [ - 573 + 572 ], "_or": [ - 573 + 572 ], "description": [ 82 @@ -11837,19 +11829,19 @@ export default { "e_draft_game_captain_selection_enum": {}, "e_draft_game_captain_selection_enum_comparison_exp": { "_eq": [ - 575 + 574 ], "_in": [ - 575 + 574 ], "_is_null": [ 5 ], "_neq": [ - 575 + 574 ], "_nin": [ - 575 + 574 ], "__typename": [ 80 @@ -11893,7 +11885,7 @@ export default { 40 ], "returning": [ - 570 + 569 ], "__typename": [ 80 @@ -11901,10 +11893,10 @@ export default { }, "e_draft_game_captain_selection_obj_rel_insert_input": { "data": [ - 577 + 576 ], "on_conflict": [ - 582 + 581 ], "__typename": [ 80 @@ -11912,13 +11904,13 @@ export default { }, "e_draft_game_captain_selection_on_conflict": { "constraint": [ - 574 + 573 ], "update_columns": [ - 589 + 588 ], "where": [ - 573 + 572 ], "__typename": [ 80 @@ -11926,10 +11918,10 @@ export default { }, "e_draft_game_captain_selection_order_by": { "description": [ - 2952 + 2951 ], "value": [ - 2952 + 2951 ], "__typename": [ 80 @@ -11957,10 +11949,10 @@ export default { }, "e_draft_game_captain_selection_stream_cursor_input": { "initial_value": [ - 588 + 587 ], "ordering": [ - 314 + 313 ], "__typename": [ 80 @@ -11980,10 +11972,10 @@ export default { "e_draft_game_captain_selection_update_column": {}, "e_draft_game_captain_selection_updates": { "_set": [ - 586 + 585 ], "where": [ - 573 + 572 ], "__typename": [ 80 @@ -12002,10 +11994,10 @@ export default { }, "e_draft_game_draft_order_aggregate": { "aggregate": [ - 593 + 592 ], "nodes": [ - 591 + 590 ], "__typename": [ 80 @@ -12016,7 +12008,7 @@ export default { 40, { "columns": [ - 606, + 605, "[e_draft_game_draft_order_select_column!]" ], "distinct": [ @@ -12025,10 +12017,10 @@ export default { } ], "max": [ - 599 + 598 ], "min": [ - 600 + 599 ], "__typename": [ 80 @@ -12036,13 +12028,13 @@ export default { }, "e_draft_game_draft_order_bool_exp": { "_and": [ - 594 + 593 ], "_not": [ - 594 + 593 ], "_or": [ - 594 + 593 ], "description": [ 82 @@ -12058,19 +12050,19 @@ export default { "e_draft_game_draft_order_enum": {}, "e_draft_game_draft_order_enum_comparison_exp": { "_eq": [ - 596 + 595 ], "_in": [ - 596 + 595 ], "_is_null": [ 5 ], "_neq": [ - 596 + 595 ], "_nin": [ - 596 + 595 ], "__typename": [ 80 @@ -12114,7 +12106,7 @@ export default { 40 ], "returning": [ - 591 + 590 ], "__typename": [ 80 @@ -12122,10 +12114,10 @@ export default { }, "e_draft_game_draft_order_obj_rel_insert_input": { "data": [ - 598 + 597 ], "on_conflict": [ - 603 + 602 ], "__typename": [ 80 @@ -12133,13 +12125,13 @@ export default { }, "e_draft_game_draft_order_on_conflict": { "constraint": [ - 595 + 594 ], "update_columns": [ - 610 + 609 ], "where": [ - 594 + 593 ], "__typename": [ 80 @@ -12147,10 +12139,10 @@ export default { }, "e_draft_game_draft_order_order_by": { "description": [ - 2952 + 2951 ], "value": [ - 2952 + 2951 ], "__typename": [ 80 @@ -12178,10 +12170,10 @@ export default { }, "e_draft_game_draft_order_stream_cursor_input": { "initial_value": [ - 609 + 608 ], "ordering": [ - 314 + 313 ], "__typename": [ 80 @@ -12201,10 +12193,10 @@ export default { "e_draft_game_draft_order_update_column": {}, "e_draft_game_draft_order_updates": { "_set": [ - 607 + 606 ], "where": [ - 594 + 593 ], "__typename": [ 80 @@ -12223,10 +12215,10 @@ export default { }, "e_draft_game_mode_aggregate": { "aggregate": [ - 614 + 613 ], "nodes": [ - 612 + 611 ], "__typename": [ 80 @@ -12237,7 +12229,7 @@ export default { 40, { "columns": [ - 627, + 626, "[e_draft_game_mode_select_column!]" ], "distinct": [ @@ -12246,10 +12238,10 @@ export default { } ], "max": [ - 620 + 619 ], "min": [ - 621 + 620 ], "__typename": [ 80 @@ -12257,13 +12249,13 @@ export default { }, "e_draft_game_mode_bool_exp": { "_and": [ - 615 + 614 ], "_not": [ - 615 + 614 ], "_or": [ - 615 + 614 ], "description": [ 82 @@ -12279,19 +12271,19 @@ export default { "e_draft_game_mode_enum": {}, "e_draft_game_mode_enum_comparison_exp": { "_eq": [ - 617 + 616 ], "_in": [ - 617 + 616 ], "_is_null": [ 5 ], "_neq": [ - 617 + 616 ], "_nin": [ - 617 + 616 ], "__typename": [ 80 @@ -12335,7 +12327,7 @@ export default { 40 ], "returning": [ - 612 + 611 ], "__typename": [ 80 @@ -12343,10 +12335,10 @@ export default { }, "e_draft_game_mode_obj_rel_insert_input": { "data": [ - 619 + 618 ], "on_conflict": [ - 624 + 623 ], "__typename": [ 80 @@ -12354,13 +12346,13 @@ export default { }, "e_draft_game_mode_on_conflict": { "constraint": [ - 616 + 615 ], "update_columns": [ - 631 + 630 ], "where": [ - 615 + 614 ], "__typename": [ 80 @@ -12368,10 +12360,10 @@ export default { }, "e_draft_game_mode_order_by": { "description": [ - 2952 + 2951 ], "value": [ - 2952 + 2951 ], "__typename": [ 80 @@ -12399,10 +12391,10 @@ export default { }, "e_draft_game_mode_stream_cursor_input": { "initial_value": [ - 630 + 629 ], "ordering": [ - 314 + 313 ], "__typename": [ 80 @@ -12422,10 +12414,10 @@ export default { "e_draft_game_mode_update_column": {}, "e_draft_game_mode_updates": { "_set": [ - 628 + 627 ], "where": [ - 615 + 614 ], "__typename": [ 80 @@ -12444,10 +12436,10 @@ export default { }, "e_draft_game_player_status_aggregate": { "aggregate": [ - 635 + 634 ], "nodes": [ - 633 + 632 ], "__typename": [ 80 @@ -12458,7 +12450,7 @@ export default { 40, { "columns": [ - 648, + 647, "[e_draft_game_player_status_select_column!]" ], "distinct": [ @@ -12467,10 +12459,10 @@ export default { } ], "max": [ - 641 + 640 ], "min": [ - 642 + 641 ], "__typename": [ 80 @@ -12478,13 +12470,13 @@ export default { }, "e_draft_game_player_status_bool_exp": { "_and": [ - 636 + 635 ], "_not": [ - 636 + 635 ], "_or": [ - 636 + 635 ], "description": [ 82 @@ -12500,19 +12492,19 @@ export default { "e_draft_game_player_status_enum": {}, "e_draft_game_player_status_enum_comparison_exp": { "_eq": [ - 638 + 637 ], "_in": [ - 638 + 637 ], "_is_null": [ 5 ], "_neq": [ - 638 + 637 ], "_nin": [ - 638 + 637 ], "__typename": [ 80 @@ -12556,7 +12548,7 @@ export default { 40 ], "returning": [ - 633 + 632 ], "__typename": [ 80 @@ -12564,10 +12556,10 @@ export default { }, "e_draft_game_player_status_obj_rel_insert_input": { "data": [ - 640 + 639 ], "on_conflict": [ - 645 + 644 ], "__typename": [ 80 @@ -12575,13 +12567,13 @@ export default { }, "e_draft_game_player_status_on_conflict": { "constraint": [ - 637 + 636 ], "update_columns": [ - 652 + 651 ], "where": [ - 636 + 635 ], "__typename": [ 80 @@ -12589,10 +12581,10 @@ export default { }, "e_draft_game_player_status_order_by": { "description": [ - 2952 + 2951 ], "value": [ - 2952 + 2951 ], "__typename": [ 80 @@ -12620,10 +12612,10 @@ export default { }, "e_draft_game_player_status_stream_cursor_input": { "initial_value": [ - 651 + 650 ], "ordering": [ - 314 + 313 ], "__typename": [ 80 @@ -12643,10 +12635,10 @@ export default { "e_draft_game_player_status_update_column": {}, "e_draft_game_player_status_updates": { "_set": [ - 649 + 648 ], "where": [ - 636 + 635 ], "__typename": [ 80 @@ -12665,10 +12657,10 @@ export default { }, "e_draft_game_status_aggregate": { "aggregate": [ - 656 + 655 ], "nodes": [ - 654 + 653 ], "__typename": [ 80 @@ -12679,7 +12671,7 @@ export default { 40, { "columns": [ - 669, + 668, "[e_draft_game_status_select_column!]" ], "distinct": [ @@ -12688,10 +12680,10 @@ export default { } ], "max": [ - 662 + 661 ], "min": [ - 663 + 662 ], "__typename": [ 80 @@ -12699,13 +12691,13 @@ export default { }, "e_draft_game_status_bool_exp": { "_and": [ - 657 + 656 ], "_not": [ - 657 + 656 ], "_or": [ - 657 + 656 ], "description": [ 82 @@ -12721,19 +12713,19 @@ export default { "e_draft_game_status_enum": {}, "e_draft_game_status_enum_comparison_exp": { "_eq": [ - 659 + 658 ], "_in": [ - 659 + 658 ], "_is_null": [ 5 ], "_neq": [ - 659 + 658 ], "_nin": [ - 659 + 658 ], "__typename": [ 80 @@ -12777,7 +12769,7 @@ export default { 40 ], "returning": [ - 654 + 653 ], "__typename": [ 80 @@ -12785,10 +12777,10 @@ export default { }, "e_draft_game_status_obj_rel_insert_input": { "data": [ - 661 + 660 ], "on_conflict": [ - 666 + 665 ], "__typename": [ 80 @@ -12796,13 +12788,13 @@ export default { }, "e_draft_game_status_on_conflict": { "constraint": [ - 658 + 657 ], "update_columns": [ - 673 + 672 ], "where": [ - 657 + 656 ], "__typename": [ 80 @@ -12810,10 +12802,10 @@ export default { }, "e_draft_game_status_order_by": { "description": [ - 2952 + 2951 ], "value": [ - 2952 + 2951 ], "__typename": [ 80 @@ -12841,10 +12833,10 @@ export default { }, "e_draft_game_status_stream_cursor_input": { "initial_value": [ - 672 + 671 ], "ordering": [ - 314 + 313 ], "__typename": [ 80 @@ -12864,10 +12856,10 @@ export default { "e_draft_game_status_update_column": {}, "e_draft_game_status_updates": { "_set": [ - 670 + 669 ], "where": [ - 657 + 656 ], "__typename": [ 80 @@ -12886,10 +12878,10 @@ export default { }, "e_event_media_access_aggregate": { "aggregate": [ - 677 + 676 ], "nodes": [ - 675 + 674 ], "__typename": [ 80 @@ -12900,7 +12892,7 @@ export default { 40, { "columns": [ - 689, + 688, "[e_event_media_access_select_column!]" ], "distinct": [ @@ -12909,10 +12901,10 @@ export default { } ], "max": [ - 683 + 682 ], "min": [ - 684 + 683 ], "__typename": [ 80 @@ -12920,13 +12912,13 @@ export default { }, "e_event_media_access_bool_exp": { "_and": [ - 678 + 677 ], "_not": [ - 678 + 677 ], "_or": [ - 678 + 677 ], "description": [ 82 @@ -12942,19 +12934,19 @@ export default { "e_event_media_access_enum": {}, "e_event_media_access_enum_comparison_exp": { "_eq": [ - 680 + 679 ], "_in": [ - 680 + 679 ], "_is_null": [ 5 ], "_neq": [ - 680 + 679 ], "_nin": [ - 680 + 679 ], "__typename": [ 80 @@ -12998,7 +12990,7 @@ export default { 40 ], "returning": [ - 675 + 674 ], "__typename": [ 80 @@ -13006,13 +12998,13 @@ export default { }, "e_event_media_access_on_conflict": { "constraint": [ - 679 + 678 ], "update_columns": [ - 693 + 692 ], "where": [ - 678 + 677 ], "__typename": [ 80 @@ -13020,10 +13012,10 @@ export default { }, "e_event_media_access_order_by": { "description": [ - 2952 + 2951 ], "value": [ - 2952 + 2951 ], "__typename": [ 80 @@ -13051,10 +13043,10 @@ export default { }, "e_event_media_access_stream_cursor_input": { "initial_value": [ - 692 + 691 ], "ordering": [ - 314 + 313 ], "__typename": [ 80 @@ -13074,10 +13066,10 @@ export default { "e_event_media_access_update_column": {}, "e_event_media_access_updates": { "_set": [ - 690 + 689 ], "where": [ - 678 + 677 ], "__typename": [ 80 @@ -13096,10 +13088,10 @@ export default { }, "e_event_visibility_aggregate": { "aggregate": [ - 697 + 696 ], "nodes": [ - 695 + 694 ], "__typename": [ 80 @@ -13110,7 +13102,7 @@ export default { 40, { "columns": [ - 709, + 708, "[e_event_visibility_select_column!]" ], "distinct": [ @@ -13119,10 +13111,10 @@ export default { } ], "max": [ - 703 + 702 ], "min": [ - 704 + 703 ], "__typename": [ 80 @@ -13130,13 +13122,13 @@ export default { }, "e_event_visibility_bool_exp": { "_and": [ - 698 + 697 ], "_not": [ - 698 + 697 ], "_or": [ - 698 + 697 ], "description": [ 82 @@ -13152,19 +13144,19 @@ export default { "e_event_visibility_enum": {}, "e_event_visibility_enum_comparison_exp": { "_eq": [ - 700 + 699 ], "_in": [ - 700 + 699 ], "_is_null": [ 5 ], "_neq": [ - 700 + 699 ], "_nin": [ - 700 + 699 ], "__typename": [ 80 @@ -13208,7 +13200,7 @@ export default { 40 ], "returning": [ - 695 + 694 ], "__typename": [ 80 @@ -13216,13 +13208,13 @@ export default { }, "e_event_visibility_on_conflict": { "constraint": [ - 699 + 698 ], "update_columns": [ - 713 + 712 ], "where": [ - 698 + 697 ], "__typename": [ 80 @@ -13230,10 +13222,10 @@ export default { }, "e_event_visibility_order_by": { "description": [ - 2952 + 2951 ], "value": [ - 2952 + 2951 ], "__typename": [ 80 @@ -13261,10 +13253,10 @@ export default { }, "e_event_visibility_stream_cursor_input": { "initial_value": [ - 712 + 711 ], "ordering": [ - 314 + 313 ], "__typename": [ 80 @@ -13284,10 +13276,10 @@ export default { "e_event_visibility_update_column": {}, "e_event_visibility_updates": { "_set": [ - 710 + 709 ], "where": [ - 698 + 697 ], "__typename": [ 80 @@ -13306,10 +13298,10 @@ export default { }, "e_friend_status_aggregate": { "aggregate": [ - 717 + 716 ], "nodes": [ - 715 + 714 ], "__typename": [ 80 @@ -13320,7 +13312,7 @@ export default { 40, { "columns": [ - 730, + 729, "[e_friend_status_select_column!]" ], "distinct": [ @@ -13329,10 +13321,10 @@ export default { } ], "max": [ - 723 + 722 ], "min": [ - 724 + 723 ], "__typename": [ 80 @@ -13340,13 +13332,13 @@ export default { }, "e_friend_status_bool_exp": { "_and": [ - 718 + 717 ], "_not": [ - 718 + 717 ], "_or": [ - 718 + 717 ], "description": [ 82 @@ -13362,19 +13354,19 @@ export default { "e_friend_status_enum": {}, "e_friend_status_enum_comparison_exp": { "_eq": [ - 720 + 719 ], "_in": [ - 720 + 719 ], "_is_null": [ 5 ], "_neq": [ - 720 + 719 ], "_nin": [ - 720 + 719 ], "__typename": [ 80 @@ -13418,7 +13410,7 @@ export default { 40 ], "returning": [ - 715 + 714 ], "__typename": [ 80 @@ -13426,10 +13418,10 @@ export default { }, "e_friend_status_obj_rel_insert_input": { "data": [ - 722 + 721 ], "on_conflict": [ - 727 + 726 ], "__typename": [ 80 @@ -13437,13 +13429,13 @@ export default { }, "e_friend_status_on_conflict": { "constraint": [ - 719 + 718 ], "update_columns": [ - 734 + 733 ], "where": [ - 718 + 717 ], "__typename": [ 80 @@ -13451,10 +13443,10 @@ export default { }, "e_friend_status_order_by": { "description": [ - 2952 + 2951 ], "value": [ - 2952 + 2951 ], "__typename": [ 80 @@ -13482,10 +13474,10 @@ export default { }, "e_friend_status_stream_cursor_input": { "initial_value": [ - 733 + 732 ], "ordering": [ - 314 + 313 ], "__typename": [ 80 @@ -13505,10 +13497,10 @@ export default { "e_friend_status_update_column": {}, "e_friend_status_updates": { "_set": [ - 731 + 730 ], "where": [ - 718 + 717 ], "__typename": [ 80 @@ -13527,10 +13519,10 @@ export default { }, "e_game_cfg_types_aggregate": { "aggregate": [ - 738 + 737 ], "nodes": [ - 736 + 735 ], "__typename": [ 80 @@ -13541,7 +13533,7 @@ export default { 40, { "columns": [ - 750, + 749, "[e_game_cfg_types_select_column!]" ], "distinct": [ @@ -13550,10 +13542,10 @@ export default { } ], "max": [ - 744 + 743 ], "min": [ - 745 + 744 ], "__typename": [ 80 @@ -13561,13 +13553,13 @@ export default { }, "e_game_cfg_types_bool_exp": { "_and": [ - 739 + 738 ], "_not": [ - 739 + 738 ], "_or": [ - 739 + 738 ], "description": [ 82 @@ -13583,19 +13575,19 @@ export default { "e_game_cfg_types_enum": {}, "e_game_cfg_types_enum_comparison_exp": { "_eq": [ - 741 + 740 ], "_in": [ - 741 + 740 ], "_is_null": [ 5 ], "_neq": [ - 741 + 740 ], "_nin": [ - 741 + 740 ], "__typename": [ 80 @@ -13639,7 +13631,7 @@ export default { 40 ], "returning": [ - 736 + 735 ], "__typename": [ 80 @@ -13647,13 +13639,13 @@ export default { }, "e_game_cfg_types_on_conflict": { "constraint": [ - 740 + 739 ], "update_columns": [ - 754 + 753 ], "where": [ - 739 + 738 ], "__typename": [ 80 @@ -13661,10 +13653,10 @@ export default { }, "e_game_cfg_types_order_by": { "description": [ - 2952 + 2951 ], "value": [ - 2952 + 2951 ], "__typename": [ 80 @@ -13692,10 +13684,10 @@ export default { }, "e_game_cfg_types_stream_cursor_input": { "initial_value": [ - 753 + 752 ], "ordering": [ - 314 + 313 ], "__typename": [ 80 @@ -13715,10 +13707,10 @@ export default { "e_game_cfg_types_update_column": {}, "e_game_cfg_types_updates": { "_set": [ - 751 + 750 ], "where": [ - 739 + 738 ], "__typename": [ 80 @@ -13737,10 +13729,10 @@ export default { }, "e_game_server_node_statuses_aggregate": { "aggregate": [ - 758 + 757 ], "nodes": [ - 756 + 755 ], "__typename": [ 80 @@ -13751,7 +13743,7 @@ export default { 40, { "columns": [ - 771, + 770, "[e_game_server_node_statuses_select_column!]" ], "distinct": [ @@ -13760,10 +13752,10 @@ export default { } ], "max": [ - 764 + 763 ], "min": [ - 765 + 764 ], "__typename": [ 80 @@ -13771,13 +13763,13 @@ export default { }, "e_game_server_node_statuses_bool_exp": { "_and": [ - 759 + 758 ], "_not": [ - 759 + 758 ], "_or": [ - 759 + 758 ], "description": [ 82 @@ -13793,19 +13785,19 @@ export default { "e_game_server_node_statuses_enum": {}, "e_game_server_node_statuses_enum_comparison_exp": { "_eq": [ - 761 + 760 ], "_in": [ - 761 + 760 ], "_is_null": [ 5 ], "_neq": [ - 761 + 760 ], "_nin": [ - 761 + 760 ], "__typename": [ 80 @@ -13849,7 +13841,7 @@ export default { 40 ], "returning": [ - 756 + 755 ], "__typename": [ 80 @@ -13857,10 +13849,10 @@ export default { }, "e_game_server_node_statuses_obj_rel_insert_input": { "data": [ - 763 + 762 ], "on_conflict": [ - 768 + 767 ], "__typename": [ 80 @@ -13868,13 +13860,13 @@ export default { }, "e_game_server_node_statuses_on_conflict": { "constraint": [ - 760 + 759 ], "update_columns": [ - 775 + 774 ], "where": [ - 759 + 758 ], "__typename": [ 80 @@ -13882,10 +13874,10 @@ export default { }, "e_game_server_node_statuses_order_by": { "description": [ - 2952 + 2951 ], "value": [ - 2952 + 2951 ], "__typename": [ 80 @@ -13913,10 +13905,10 @@ export default { }, "e_game_server_node_statuses_stream_cursor_input": { "initial_value": [ - 774 + 773 ], "ordering": [ - 314 + 313 ], "__typename": [ 80 @@ -13936,10 +13928,10 @@ export default { "e_game_server_node_statuses_update_column": {}, "e_game_server_node_statuses_updates": { "_set": [ - 772 + 771 ], "where": [ - 759 + 758 ], "__typename": [ 80 @@ -13958,10 +13950,10 @@ export default { }, "e_league_movement_types_aggregate": { "aggregate": [ - 779 + 778 ], "nodes": [ - 777 + 776 ], "__typename": [ 80 @@ -13972,7 +13964,7 @@ export default { 40, { "columns": [ - 792, + 791, "[e_league_movement_types_select_column!]" ], "distinct": [ @@ -13981,10 +13973,10 @@ export default { } ], "max": [ - 785 + 784 ], "min": [ - 786 + 785 ], "__typename": [ 80 @@ -13992,13 +13984,13 @@ export default { }, "e_league_movement_types_bool_exp": { "_and": [ - 780 + 779 ], "_not": [ - 780 + 779 ], "_or": [ - 780 + 779 ], "description": [ 82 @@ -14014,19 +14006,19 @@ export default { "e_league_movement_types_enum": {}, "e_league_movement_types_enum_comparison_exp": { "_eq": [ - 782 + 781 ], "_in": [ - 782 + 781 ], "_is_null": [ 5 ], "_neq": [ - 782 + 781 ], "_nin": [ - 782 + 781 ], "__typename": [ 80 @@ -14070,7 +14062,7 @@ export default { 40 ], "returning": [ - 777 + 776 ], "__typename": [ 80 @@ -14078,10 +14070,10 @@ export default { }, "e_league_movement_types_obj_rel_insert_input": { "data": [ - 784 + 783 ], "on_conflict": [ - 789 + 788 ], "__typename": [ 80 @@ -14089,13 +14081,13 @@ export default { }, "e_league_movement_types_on_conflict": { "constraint": [ - 781 + 780 ], "update_columns": [ - 796 + 795 ], "where": [ - 780 + 779 ], "__typename": [ 80 @@ -14103,10 +14095,10 @@ export default { }, "e_league_movement_types_order_by": { "description": [ - 2952 + 2951 ], "value": [ - 2952 + 2951 ], "__typename": [ 80 @@ -14134,10 +14126,10 @@ export default { }, "e_league_movement_types_stream_cursor_input": { "initial_value": [ - 795 + 794 ], "ordering": [ - 314 + 313 ], "__typename": [ 80 @@ -14157,10 +14149,10 @@ export default { "e_league_movement_types_update_column": {}, "e_league_movement_types_updates": { "_set": [ - 793 + 792 ], "where": [ - 780 + 779 ], "__typename": [ 80 @@ -14179,10 +14171,10 @@ export default { }, "e_league_proposal_statuses_aggregate": { "aggregate": [ - 800 + 799 ], "nodes": [ - 798 + 797 ], "__typename": [ 80 @@ -14193,7 +14185,7 @@ export default { 40, { "columns": [ - 813, + 812, "[e_league_proposal_statuses_select_column!]" ], "distinct": [ @@ -14202,10 +14194,10 @@ export default { } ], "max": [ - 806 + 805 ], "min": [ - 807 + 806 ], "__typename": [ 80 @@ -14213,13 +14205,13 @@ export default { }, "e_league_proposal_statuses_bool_exp": { "_and": [ - 801 + 800 ], "_not": [ - 801 + 800 ], "_or": [ - 801 + 800 ], "description": [ 82 @@ -14235,19 +14227,19 @@ export default { "e_league_proposal_statuses_enum": {}, "e_league_proposal_statuses_enum_comparison_exp": { "_eq": [ - 803 + 802 ], "_in": [ - 803 + 802 ], "_is_null": [ 5 ], "_neq": [ - 803 + 802 ], "_nin": [ - 803 + 802 ], "__typename": [ 80 @@ -14291,7 +14283,7 @@ export default { 40 ], "returning": [ - 798 + 797 ], "__typename": [ 80 @@ -14299,10 +14291,10 @@ export default { }, "e_league_proposal_statuses_obj_rel_insert_input": { "data": [ - 805 + 804 ], "on_conflict": [ - 810 + 809 ], "__typename": [ 80 @@ -14310,13 +14302,13 @@ export default { }, "e_league_proposal_statuses_on_conflict": { "constraint": [ - 802 + 801 ], "update_columns": [ - 817 + 816 ], "where": [ - 801 + 800 ], "__typename": [ 80 @@ -14324,10 +14316,10 @@ export default { }, "e_league_proposal_statuses_order_by": { "description": [ - 2952 + 2951 ], "value": [ - 2952 + 2951 ], "__typename": [ 80 @@ -14355,10 +14347,10 @@ export default { }, "e_league_proposal_statuses_stream_cursor_input": { "initial_value": [ - 816 + 815 ], "ordering": [ - 314 + 313 ], "__typename": [ 80 @@ -14378,10 +14370,10 @@ export default { "e_league_proposal_statuses_update_column": {}, "e_league_proposal_statuses_updates": { "_set": [ - 814 + 813 ], "where": [ - 801 + 800 ], "__typename": [ 80 @@ -14400,10 +14392,10 @@ export default { }, "e_league_registration_statuses_aggregate": { "aggregate": [ - 821 + 820 ], "nodes": [ - 819 + 818 ], "__typename": [ 80 @@ -14414,7 +14406,7 @@ export default { 40, { "columns": [ - 834, + 833, "[e_league_registration_statuses_select_column!]" ], "distinct": [ @@ -14423,10 +14415,10 @@ export default { } ], "max": [ - 827 + 826 ], "min": [ - 828 + 827 ], "__typename": [ 80 @@ -14434,13 +14426,13 @@ export default { }, "e_league_registration_statuses_bool_exp": { "_and": [ - 822 + 821 ], "_not": [ - 822 + 821 ], "_or": [ - 822 + 821 ], "description": [ 82 @@ -14456,19 +14448,19 @@ export default { "e_league_registration_statuses_enum": {}, "e_league_registration_statuses_enum_comparison_exp": { "_eq": [ - 824 + 823 ], "_in": [ - 824 + 823 ], "_is_null": [ 5 ], "_neq": [ - 824 + 823 ], "_nin": [ - 824 + 823 ], "__typename": [ 80 @@ -14512,7 +14504,7 @@ export default { 40 ], "returning": [ - 819 + 818 ], "__typename": [ 80 @@ -14520,10 +14512,10 @@ export default { }, "e_league_registration_statuses_obj_rel_insert_input": { "data": [ - 826 + 825 ], "on_conflict": [ - 831 + 830 ], "__typename": [ 80 @@ -14531,13 +14523,13 @@ export default { }, "e_league_registration_statuses_on_conflict": { "constraint": [ - 823 + 822 ], "update_columns": [ - 838 + 837 ], "where": [ - 822 + 821 ], "__typename": [ 80 @@ -14545,10 +14537,10 @@ export default { }, "e_league_registration_statuses_order_by": { "description": [ - 2952 + 2951 ], "value": [ - 2952 + 2951 ], "__typename": [ 80 @@ -14576,10 +14568,10 @@ export default { }, "e_league_registration_statuses_stream_cursor_input": { "initial_value": [ - 837 + 836 ], "ordering": [ - 314 + 313 ], "__typename": [ 80 @@ -14599,10 +14591,10 @@ export default { "e_league_registration_statuses_update_column": {}, "e_league_registration_statuses_updates": { "_set": [ - 835 + 834 ], "where": [ - 822 + 821 ], "__typename": [ 80 @@ -14621,10 +14613,10 @@ export default { }, "e_league_season_statuses_aggregate": { "aggregate": [ - 842 + 841 ], "nodes": [ - 840 + 839 ], "__typename": [ 80 @@ -14635,7 +14627,7 @@ export default { 40, { "columns": [ - 855, + 854, "[e_league_season_statuses_select_column!]" ], "distinct": [ @@ -14644,10 +14636,10 @@ export default { } ], "max": [ - 848 + 847 ], "min": [ - 849 + 848 ], "__typename": [ 80 @@ -14655,13 +14647,13 @@ export default { }, "e_league_season_statuses_bool_exp": { "_and": [ - 843 + 842 ], "_not": [ - 843 + 842 ], "_or": [ - 843 + 842 ], "description": [ 82 @@ -14677,19 +14669,19 @@ export default { "e_league_season_statuses_enum": {}, "e_league_season_statuses_enum_comparison_exp": { "_eq": [ - 845 + 844 ], "_in": [ - 845 + 844 ], "_is_null": [ 5 ], "_neq": [ - 845 + 844 ], "_nin": [ - 845 + 844 ], "__typename": [ 80 @@ -14733,7 +14725,7 @@ export default { 40 ], "returning": [ - 840 + 839 ], "__typename": [ 80 @@ -14741,10 +14733,10 @@ export default { }, "e_league_season_statuses_obj_rel_insert_input": { "data": [ - 847 + 846 ], "on_conflict": [ - 852 + 851 ], "__typename": [ 80 @@ -14752,13 +14744,13 @@ export default { }, "e_league_season_statuses_on_conflict": { "constraint": [ - 844 + 843 ], "update_columns": [ - 859 + 858 ], "where": [ - 843 + 842 ], "__typename": [ 80 @@ -14766,10 +14758,10 @@ export default { }, "e_league_season_statuses_order_by": { "description": [ - 2952 + 2951 ], "value": [ - 2952 + 2951 ], "__typename": [ 80 @@ -14797,10 +14789,10 @@ export default { }, "e_league_season_statuses_stream_cursor_input": { "initial_value": [ - 858 + 857 ], "ordering": [ - 314 + 313 ], "__typename": [ 80 @@ -14820,10 +14812,10 @@ export default { "e_league_season_statuses_update_column": {}, "e_league_season_statuses_updates": { "_set": [ - 856 + 855 ], "where": [ - 843 + 842 ], "__typename": [ 80 @@ -14842,10 +14834,10 @@ export default { }, "e_lobby_access_aggregate": { "aggregate": [ - 863 + 862 ], "nodes": [ - 861 + 860 ], "__typename": [ 80 @@ -14856,7 +14848,7 @@ export default { 40, { "columns": [ - 876, + 875, "[e_lobby_access_select_column!]" ], "distinct": [ @@ -14865,10 +14857,10 @@ export default { } ], "max": [ - 869 + 868 ], "min": [ - 870 + 869 ], "__typename": [ 80 @@ -14876,13 +14868,13 @@ export default { }, "e_lobby_access_bool_exp": { "_and": [ - 864 + 863 ], "_not": [ - 864 + 863 ], "_or": [ - 864 + 863 ], "description": [ 82 @@ -14898,19 +14890,19 @@ export default { "e_lobby_access_enum": {}, "e_lobby_access_enum_comparison_exp": { "_eq": [ - 866 + 865 ], "_in": [ - 866 + 865 ], "_is_null": [ 5 ], "_neq": [ - 866 + 865 ], "_nin": [ - 866 + 865 ], "__typename": [ 80 @@ -14954,7 +14946,7 @@ export default { 40 ], "returning": [ - 861 + 860 ], "__typename": [ 80 @@ -14962,10 +14954,10 @@ export default { }, "e_lobby_access_obj_rel_insert_input": { "data": [ - 868 + 867 ], "on_conflict": [ - 873 + 872 ], "__typename": [ 80 @@ -14973,13 +14965,13 @@ export default { }, "e_lobby_access_on_conflict": { "constraint": [ - 865 + 864 ], "update_columns": [ - 880 + 879 ], "where": [ - 864 + 863 ], "__typename": [ 80 @@ -14987,10 +14979,10 @@ export default { }, "e_lobby_access_order_by": { "description": [ - 2952 + 2951 ], "value": [ - 2952 + 2951 ], "__typename": [ 80 @@ -15018,10 +15010,10 @@ export default { }, "e_lobby_access_stream_cursor_input": { "initial_value": [ - 879 + 878 ], "ordering": [ - 314 + 313 ], "__typename": [ 80 @@ -15041,10 +15033,10 @@ export default { "e_lobby_access_update_column": {}, "e_lobby_access_updates": { "_set": [ - 877 + 876 ], "where": [ - 864 + 863 ], "__typename": [ 80 @@ -15063,10 +15055,10 @@ export default { }, "e_lobby_player_status_aggregate": { "aggregate": [ - 884 + 883 ], "nodes": [ - 882 + 881 ], "__typename": [ 80 @@ -15077,7 +15069,7 @@ export default { 40, { "columns": [ - 896, + 895, "[e_lobby_player_status_select_column!]" ], "distinct": [ @@ -15086,10 +15078,10 @@ export default { } ], "max": [ - 890 + 889 ], "min": [ - 891 + 890 ], "__typename": [ 80 @@ -15097,13 +15089,13 @@ export default { }, "e_lobby_player_status_bool_exp": { "_and": [ - 885 + 884 ], "_not": [ - 885 + 884 ], "_or": [ - 885 + 884 ], "description": [ 82 @@ -15119,19 +15111,19 @@ export default { "e_lobby_player_status_enum": {}, "e_lobby_player_status_enum_comparison_exp": { "_eq": [ - 887 + 886 ], "_in": [ - 887 + 886 ], "_is_null": [ 5 ], "_neq": [ - 887 + 886 ], "_nin": [ - 887 + 886 ], "__typename": [ 80 @@ -15175,7 +15167,7 @@ export default { 40 ], "returning": [ - 882 + 881 ], "__typename": [ 80 @@ -15183,13 +15175,13 @@ export default { }, "e_lobby_player_status_on_conflict": { "constraint": [ - 886 + 885 ], "update_columns": [ - 900 + 899 ], "where": [ - 885 + 884 ], "__typename": [ 80 @@ -15197,10 +15189,10 @@ export default { }, "e_lobby_player_status_order_by": { "description": [ - 2952 + 2951 ], "value": [ - 2952 + 2951 ], "__typename": [ 80 @@ -15228,10 +15220,10 @@ export default { }, "e_lobby_player_status_stream_cursor_input": { "initial_value": [ - 899 + 898 ], "ordering": [ - 314 + 313 ], "__typename": [ 80 @@ -15251,10 +15243,10 @@ export default { "e_lobby_player_status_update_column": {}, "e_lobby_player_status_updates": { "_set": [ - 897 + 896 ], "where": [ - 885 + 884 ], "__typename": [ 80 @@ -15273,10 +15265,10 @@ export default { }, "e_map_pool_types_aggregate": { "aggregate": [ - 904 + 903 ], "nodes": [ - 902 + 901 ], "__typename": [ 80 @@ -15287,7 +15279,7 @@ export default { 40, { "columns": [ - 917, + 916, "[e_map_pool_types_select_column!]" ], "distinct": [ @@ -15296,10 +15288,10 @@ export default { } ], "max": [ - 910 + 909 ], "min": [ - 911 + 910 ], "__typename": [ 80 @@ -15307,13 +15299,13 @@ export default { }, "e_map_pool_types_bool_exp": { "_and": [ - 905 + 904 ], "_not": [ - 905 + 904 ], "_or": [ - 905 + 904 ], "description": [ 82 @@ -15329,19 +15321,19 @@ export default { "e_map_pool_types_enum": {}, "e_map_pool_types_enum_comparison_exp": { "_eq": [ - 907 + 906 ], "_in": [ - 907 + 906 ], "_is_null": [ 5 ], "_neq": [ - 907 + 906 ], "_nin": [ - 907 + 906 ], "__typename": [ 80 @@ -15385,7 +15377,7 @@ export default { 40 ], "returning": [ - 902 + 901 ], "__typename": [ 80 @@ -15393,10 +15385,10 @@ export default { }, "e_map_pool_types_obj_rel_insert_input": { "data": [ - 909 + 908 ], "on_conflict": [ - 914 + 913 ], "__typename": [ 80 @@ -15404,13 +15396,13 @@ export default { }, "e_map_pool_types_on_conflict": { "constraint": [ - 906 + 905 ], "update_columns": [ - 921 + 920 ], "where": [ - 905 + 904 ], "__typename": [ 80 @@ -15418,10 +15410,10 @@ export default { }, "e_map_pool_types_order_by": { "description": [ - 2952 + 2951 ], "value": [ - 2952 + 2951 ], "__typename": [ 80 @@ -15449,10 +15441,10 @@ export default { }, "e_map_pool_types_stream_cursor_input": { "initial_value": [ - 920 + 919 ], "ordering": [ - 314 + 313 ], "__typename": [ 80 @@ -15472,10 +15464,10 @@ export default { "e_map_pool_types_update_column": {}, "e_map_pool_types_updates": { "_set": [ - 918 + 917 ], "where": [ - 905 + 904 ], "__typename": [ 80 @@ -15486,10 +15478,10 @@ export default { 80 ], "match_clips": [ - 2314, + 2313, { "distinct_on": [ - 2336, + 2335, "[match_clips_select_column!]" ], "limit": [ @@ -15499,19 +15491,19 @@ export default { 40 ], "order_by": [ - 2334, + 2333, "[match_clips_order_by!]" ], "where": [ - 2323 + 2322 ] } ], "match_clips_aggregate": [ - 2315, + 2314, { "distinct_on": [ - 2336, + 2335, "[match_clips_select_column!]" ], "limit": [ @@ -15521,11 +15513,11 @@ export default { 40 ], "order_by": [ - 2334, + 2333, "[match_clips_order_by!]" ], "where": [ - 2323 + 2322 ] } ], @@ -15538,10 +15530,10 @@ export default { }, "e_match_clip_visibility_aggregate": { "aggregate": [ - 925 + 924 ], "nodes": [ - 923 + 922 ], "__typename": [ 80 @@ -15552,7 +15544,7 @@ export default { 40, { "columns": [ - 937, + 936, "[e_match_clip_visibility_select_column!]" ], "distinct": [ @@ -15561,10 +15553,10 @@ export default { } ], "max": [ - 931 + 930 ], "min": [ - 932 + 931 ], "__typename": [ 80 @@ -15572,22 +15564,22 @@ export default { }, "e_match_clip_visibility_bool_exp": { "_and": [ - 926 + 925 ], "_not": [ - 926 + 925 ], "_or": [ - 926 + 925 ], "description": [ 82 ], "match_clips": [ - 2323 + 2322 ], "match_clips_aggregate": [ - 2316 + 2315 ], "value": [ 82 @@ -15600,19 +15592,19 @@ export default { "e_match_clip_visibility_enum": {}, "e_match_clip_visibility_enum_comparison_exp": { "_eq": [ - 928 + 927 ], "_in": [ - 928 + 927 ], "_is_null": [ 5 ], "_neq": [ - 928 + 927 ], "_nin": [ - 928 + 927 ], "__typename": [ 80 @@ -15623,7 +15615,7 @@ export default { 80 ], "match_clips": [ - 2320 + 2319 ], "value": [ 80 @@ -15659,7 +15651,7 @@ export default { 40 ], "returning": [ - 923 + 922 ], "__typename": [ 80 @@ -15667,13 +15659,13 @@ export default { }, "e_match_clip_visibility_on_conflict": { "constraint": [ - 927 + 926 ], "update_columns": [ - 941 + 940 ], "where": [ - 926 + 925 ], "__typename": [ 80 @@ -15681,13 +15673,13 @@ export default { }, "e_match_clip_visibility_order_by": { "description": [ - 2952 + 2951 ], "match_clips_aggregate": [ - 2319 + 2318 ], "value": [ - 2952 + 2951 ], "__typename": [ 80 @@ -15715,10 +15707,10 @@ export default { }, "e_match_clip_visibility_stream_cursor_input": { "initial_value": [ - 940 + 939 ], "ordering": [ - 314 + 313 ], "__typename": [ 80 @@ -15738,10 +15730,10 @@ export default { "e_match_clip_visibility_update_column": {}, "e_match_clip_visibility_updates": { "_set": [ - 938 + 937 ], "where": [ - 926 + 925 ], "__typename": [ 80 @@ -15752,10 +15744,10 @@ export default { 80 ], "match_maps": [ - 2605, + 2604, { "distinct_on": [ - 2627, + 2626, "[match_maps_select_column!]" ], "limit": [ @@ -15765,19 +15757,19 @@ export default { 40 ], "order_by": [ - 2625, + 2624, "[match_maps_order_by!]" ], "where": [ - 2614 + 2613 ] } ], "match_maps_aggregate": [ - 2606, + 2605, { "distinct_on": [ - 2627, + 2626, "[match_maps_select_column!]" ], "limit": [ @@ -15787,11 +15779,11 @@ export default { 40 ], "order_by": [ - 2625, + 2624, "[match_maps_order_by!]" ], "where": [ - 2614 + 2613 ] } ], @@ -15804,10 +15796,10 @@ export default { }, "e_match_map_status_aggregate": { "aggregate": [ - 945 + 944 ], "nodes": [ - 943 + 942 ], "__typename": [ 80 @@ -15818,7 +15810,7 @@ export default { 40, { "columns": [ - 958, + 957, "[e_match_map_status_select_column!]" ], "distinct": [ @@ -15827,10 +15819,10 @@ export default { } ], "max": [ - 951 + 950 ], "min": [ - 952 + 951 ], "__typename": [ 80 @@ -15838,22 +15830,22 @@ export default { }, "e_match_map_status_bool_exp": { "_and": [ - 946 + 945 ], "_not": [ - 946 + 945 ], "_or": [ - 946 + 945 ], "description": [ 82 ], "match_maps": [ - 2614 + 2613 ], "match_maps_aggregate": [ - 2607 + 2606 ], "value": [ 82 @@ -15866,19 +15858,19 @@ export default { "e_match_map_status_enum": {}, "e_match_map_status_enum_comparison_exp": { "_eq": [ - 948 + 947 ], "_in": [ - 948 + 947 ], "_is_null": [ 5 ], "_neq": [ - 948 + 947 ], "_nin": [ - 948 + 947 ], "__typename": [ 80 @@ -15889,7 +15881,7 @@ export default { 80 ], "match_maps": [ - 2611 + 2610 ], "value": [ 80 @@ -15925,7 +15917,7 @@ export default { 40 ], "returning": [ - 943 + 942 ], "__typename": [ 80 @@ -15933,10 +15925,10 @@ export default { }, "e_match_map_status_obj_rel_insert_input": { "data": [ - 950 + 949 ], "on_conflict": [ - 955 + 954 ], "__typename": [ 80 @@ -15944,13 +15936,13 @@ export default { }, "e_match_map_status_on_conflict": { "constraint": [ - 947 + 946 ], "update_columns": [ - 962 + 961 ], "where": [ - 946 + 945 ], "__typename": [ 80 @@ -15958,13 +15950,13 @@ export default { }, "e_match_map_status_order_by": { "description": [ - 2952 + 2951 ], "match_maps_aggregate": [ - 2610 + 2609 ], "value": [ - 2952 + 2951 ], "__typename": [ 80 @@ -15992,10 +15984,10 @@ export default { }, "e_match_map_status_stream_cursor_input": { "initial_value": [ - 961 + 960 ], "ordering": [ - 314 + 313 ], "__typename": [ 80 @@ -16015,10 +16007,10 @@ export default { "e_match_map_status_update_column": {}, "e_match_map_status_updates": { "_set": [ - 959 + 958 ], "where": [ - 946 + 945 ], "__typename": [ 80 @@ -16037,10 +16029,10 @@ export default { }, "e_match_mode_aggregate": { "aggregate": [ - 966 + 965 ], "nodes": [ - 964 + 963 ], "__typename": [ 80 @@ -16051,7 +16043,7 @@ export default { 40, { "columns": [ - 978, + 977, "[e_match_mode_select_column!]" ], "distinct": [ @@ -16060,10 +16052,10 @@ export default { } ], "max": [ - 972 + 971 ], "min": [ - 973 + 972 ], "__typename": [ 80 @@ -16071,13 +16063,13 @@ export default { }, "e_match_mode_bool_exp": { "_and": [ - 967 + 966 ], "_not": [ - 967 + 966 ], "_or": [ - 967 + 966 ], "description": [ 82 @@ -16093,19 +16085,19 @@ export default { "e_match_mode_enum": {}, "e_match_mode_enum_comparison_exp": { "_eq": [ - 969 + 968 ], "_in": [ - 969 + 968 ], "_is_null": [ 5 ], "_neq": [ - 969 + 968 ], "_nin": [ - 969 + 968 ], "__typename": [ 80 @@ -16149,7 +16141,7 @@ export default { 40 ], "returning": [ - 964 + 963 ], "__typename": [ 80 @@ -16157,13 +16149,13 @@ export default { }, "e_match_mode_on_conflict": { "constraint": [ - 968 + 967 ], "update_columns": [ - 982 + 981 ], "where": [ - 967 + 966 ], "__typename": [ 80 @@ -16171,10 +16163,10 @@ export default { }, "e_match_mode_order_by": { "description": [ - 2952 + 2951 ], "value": [ - 2952 + 2951 ], "__typename": [ 80 @@ -16202,10 +16194,10 @@ export default { }, "e_match_mode_stream_cursor_input": { "initial_value": [ - 981 + 980 ], "ordering": [ - 314 + 313 ], "__typename": [ 80 @@ -16225,10 +16217,10 @@ export default { "e_match_mode_update_column": {}, "e_match_mode_updates": { "_set": [ - 979 + 978 ], "where": [ - 967 + 966 ], "__typename": [ 80 @@ -16239,10 +16231,10 @@ export default { 80 ], "matches": [ - 2767, + 2766, { "distinct_on": [ - 2789, + 2788, "[matches_select_column!]" ], "limit": [ @@ -16252,19 +16244,19 @@ export default { 40 ], "order_by": [ - 2787, + 2786, "[matches_order_by!]" ], "where": [ - 2776 + 2775 ] } ], "matches_aggregate": [ - 2768, + 2767, { "distinct_on": [ - 2789, + 2788, "[matches_select_column!]" ], "limit": [ @@ -16274,11 +16266,11 @@ export default { 40 ], "order_by": [ - 2787, + 2786, "[matches_order_by!]" ], "where": [ - 2776 + 2775 ] } ], @@ -16291,10 +16283,10 @@ export default { }, "e_match_status_aggregate": { "aggregate": [ - 986 + 985 ], "nodes": [ - 984 + 983 ], "__typename": [ 80 @@ -16305,7 +16297,7 @@ export default { 40, { "columns": [ - 999, + 998, "[e_match_status_select_column!]" ], "distinct": [ @@ -16314,10 +16306,10 @@ export default { } ], "max": [ - 992 + 991 ], "min": [ - 993 + 992 ], "__typename": [ 80 @@ -16325,22 +16317,22 @@ export default { }, "e_match_status_bool_exp": { "_and": [ - 987 + 986 ], "_not": [ - 987 + 986 ], "_or": [ - 987 + 986 ], "description": [ 82 ], "matches": [ - 2776 + 2775 ], "matches_aggregate": [ - 2769 + 2768 ], "value": [ 82 @@ -16353,19 +16345,19 @@ export default { "e_match_status_enum": {}, "e_match_status_enum_comparison_exp": { "_eq": [ - 989 + 988 ], "_in": [ - 989 + 988 ], "_is_null": [ 5 ], "_neq": [ - 989 + 988 ], "_nin": [ - 989 + 988 ], "__typename": [ 80 @@ -16376,7 +16368,7 @@ export default { 80 ], "matches": [ - 2773 + 2772 ], "value": [ 80 @@ -16412,7 +16404,7 @@ export default { 40 ], "returning": [ - 984 + 983 ], "__typename": [ 80 @@ -16420,10 +16412,10 @@ export default { }, "e_match_status_obj_rel_insert_input": { "data": [ - 991 + 990 ], "on_conflict": [ - 996 + 995 ], "__typename": [ 80 @@ -16431,13 +16423,13 @@ export default { }, "e_match_status_on_conflict": { "constraint": [ - 988 + 987 ], "update_columns": [ - 1003 + 1002 ], "where": [ - 987 + 986 ], "__typename": [ 80 @@ -16445,13 +16437,13 @@ export default { }, "e_match_status_order_by": { "description": [ - 2952 + 2951 ], "matches_aggregate": [ - 2772 + 2771 ], "value": [ - 2952 + 2951 ], "__typename": [ 80 @@ -16479,10 +16471,10 @@ export default { }, "e_match_status_stream_cursor_input": { "initial_value": [ - 1002 + 1001 ], "ordering": [ - 314 + 313 ], "__typename": [ 80 @@ -16502,10 +16494,10 @@ export default { "e_match_status_update_column": {}, "e_match_status_updates": { "_set": [ - 1000 + 999 ], "where": [ - 987 + 986 ], "__typename": [ 80 @@ -16516,10 +16508,10 @@ export default { 80 ], "maps": [ - 2285, + 2284, { "distinct_on": [ - 2306, + 2305, "[maps_select_column!]" ], "limit": [ @@ -16529,19 +16521,19 @@ export default { 40 ], "order_by": [ - 2304, + 2303, "[maps_order_by!]" ], "where": [ - 2294 + 2293 ] } ], "maps_aggregate": [ - 2286, + 2285, { "distinct_on": [ - 2306, + 2305, "[maps_select_column!]" ], "limit": [ @@ -16551,11 +16543,11 @@ export default { 40 ], "order_by": [ - 2304, + 2303, "[maps_order_by!]" ], "where": [ - 2294 + 2293 ] } ], @@ -16568,10 +16560,10 @@ export default { }, "e_match_types_aggregate": { "aggregate": [ - 1007 + 1006 ], "nodes": [ - 1005 + 1004 ], "__typename": [ 80 @@ -16582,7 +16574,7 @@ export default { 40, { "columns": [ - 1020, + 1019, "[e_match_types_select_column!]" ], "distinct": [ @@ -16591,10 +16583,10 @@ export default { } ], "max": [ - 1013 + 1012 ], "min": [ - 1014 + 1013 ], "__typename": [ 80 @@ -16602,22 +16594,22 @@ export default { }, "e_match_types_bool_exp": { "_and": [ - 1008 + 1007 ], "_not": [ - 1008 + 1007 ], "_or": [ - 1008 + 1007 ], "description": [ 82 ], "maps": [ - 2294 + 2293 ], "maps_aggregate": [ - 2287 + 2286 ], "value": [ 82 @@ -16630,19 +16622,19 @@ export default { "e_match_types_enum": {}, "e_match_types_enum_comparison_exp": { "_eq": [ - 1010 + 1009 ], "_in": [ - 1010 + 1009 ], "_is_null": [ 5 ], "_neq": [ - 1010 + 1009 ], "_nin": [ - 1010 + 1009 ], "__typename": [ 80 @@ -16653,7 +16645,7 @@ export default { 80 ], "maps": [ - 2293 + 2292 ], "value": [ 80 @@ -16689,7 +16681,7 @@ export default { 40 ], "returning": [ - 1005 + 1004 ], "__typename": [ 80 @@ -16697,10 +16689,10 @@ export default { }, "e_match_types_obj_rel_insert_input": { "data": [ - 1012 + 1011 ], "on_conflict": [ - 1017 + 1016 ], "__typename": [ 80 @@ -16708,13 +16700,13 @@ export default { }, "e_match_types_on_conflict": { "constraint": [ - 1009 + 1008 ], "update_columns": [ - 1024 + 1023 ], "where": [ - 1008 + 1007 ], "__typename": [ 80 @@ -16722,13 +16714,13 @@ export default { }, "e_match_types_order_by": { "description": [ - 2952 + 2951 ], "maps_aggregate": [ - 2292 + 2291 ], "value": [ - 2952 + 2951 ], "__typename": [ 80 @@ -16756,10 +16748,10 @@ export default { }, "e_match_types_stream_cursor_input": { "initial_value": [ - 1023 + 1022 ], "ordering": [ - 314 + 313 ], "__typename": [ 80 @@ -16779,10 +16771,10 @@ export default { "e_match_types_update_column": {}, "e_match_types_updates": { "_set": [ - 1021 + 1020 ], "where": [ - 1008 + 1007 ], "__typename": [ 80 @@ -16801,10 +16793,10 @@ export default { }, "e_notification_types_aggregate": { "aggregate": [ - 1028 + 1027 ], "nodes": [ - 1026 + 1025 ], "__typename": [ 80 @@ -16815,7 +16807,7 @@ export default { 40, { "columns": [ - 1040, + 1039, "[e_notification_types_select_column!]" ], "distinct": [ @@ -16824,10 +16816,10 @@ export default { } ], "max": [ - 1034 + 1033 ], "min": [ - 1035 + 1034 ], "__typename": [ 80 @@ -16835,13 +16827,13 @@ export default { }, "e_notification_types_bool_exp": { "_and": [ - 1029 + 1028 ], "_not": [ - 1029 + 1028 ], "_or": [ - 1029 + 1028 ], "description": [ 82 @@ -16857,19 +16849,19 @@ export default { "e_notification_types_enum": {}, "e_notification_types_enum_comparison_exp": { "_eq": [ - 1031 + 1030 ], "_in": [ - 1031 + 1030 ], "_is_null": [ 5 ], "_neq": [ - 1031 + 1030 ], "_nin": [ - 1031 + 1030 ], "__typename": [ 80 @@ -16913,7 +16905,7 @@ export default { 40 ], "returning": [ - 1026 + 1025 ], "__typename": [ 80 @@ -16921,13 +16913,13 @@ export default { }, "e_notification_types_on_conflict": { "constraint": [ - 1030 + 1029 ], "update_columns": [ - 1044 + 1043 ], "where": [ - 1029 + 1028 ], "__typename": [ 80 @@ -16935,10 +16927,10 @@ export default { }, "e_notification_types_order_by": { "description": [ - 2952 + 2951 ], "value": [ - 2952 + 2951 ], "__typename": [ 80 @@ -16966,10 +16958,10 @@ export default { }, "e_notification_types_stream_cursor_input": { "initial_value": [ - 1043 + 1042 ], "ordering": [ - 314 + 313 ], "__typename": [ 80 @@ -16989,10 +16981,10 @@ export default { "e_notification_types_update_column": {}, "e_notification_types_updates": { "_set": [ - 1041 + 1040 ], "where": [ - 1029 + 1028 ], "__typename": [ 80 @@ -17003,10 +16995,10 @@ export default { 80 ], "player_objectives": [ - 3508, + 3507, { "distinct_on": [ - 3529, + 3528, "[player_objectives_select_column!]" ], "limit": [ @@ -17016,19 +17008,19 @@ export default { 40 ], "order_by": [ - 3527, + 3526, "[player_objectives_order_by!]" ], "where": [ - 3517 + 3516 ] } ], "player_objectives_aggregate": [ - 3509, + 3508, { "distinct_on": [ - 3529, + 3528, "[player_objectives_select_column!]" ], "limit": [ @@ -17038,11 +17030,11 @@ export default { 40 ], "order_by": [ - 3527, + 3526, "[player_objectives_order_by!]" ], "where": [ - 3517 + 3516 ] } ], @@ -17055,10 +17047,10 @@ export default { }, "e_objective_types_aggregate": { "aggregate": [ - 1048 + 1047 ], "nodes": [ - 1046 + 1045 ], "__typename": [ 80 @@ -17069,7 +17061,7 @@ export default { 40, { "columns": [ - 1060, + 1059, "[e_objective_types_select_column!]" ], "distinct": [ @@ -17078,10 +17070,10 @@ export default { } ], "max": [ - 1054 + 1053 ], "min": [ - 1055 + 1054 ], "__typename": [ 80 @@ -17089,22 +17081,22 @@ export default { }, "e_objective_types_bool_exp": { "_and": [ - 1049 + 1048 ], "_not": [ - 1049 + 1048 ], "_or": [ - 1049 + 1048 ], "description": [ 82 ], "player_objectives": [ - 3517 + 3516 ], "player_objectives_aggregate": [ - 3510 + 3509 ], "value": [ 82 @@ -17117,19 +17109,19 @@ export default { "e_objective_types_enum": {}, "e_objective_types_enum_comparison_exp": { "_eq": [ - 1051 + 1050 ], "_in": [ - 1051 + 1050 ], "_is_null": [ 5 ], "_neq": [ - 1051 + 1050 ], "_nin": [ - 1051 + 1050 ], "__typename": [ 80 @@ -17140,7 +17132,7 @@ export default { 80 ], "player_objectives": [ - 3514 + 3513 ], "value": [ 80 @@ -17176,7 +17168,7 @@ export default { 40 ], "returning": [ - 1046 + 1045 ], "__typename": [ 80 @@ -17184,13 +17176,13 @@ export default { }, "e_objective_types_on_conflict": { "constraint": [ - 1050 + 1049 ], "update_columns": [ - 1064 + 1063 ], "where": [ - 1049 + 1048 ], "__typename": [ 80 @@ -17198,13 +17190,13 @@ export default { }, "e_objective_types_order_by": { "description": [ - 2952 + 2951 ], "player_objectives_aggregate": [ - 3513 + 3512 ], "value": [ - 2952 + 2951 ], "__typename": [ 80 @@ -17232,10 +17224,10 @@ export default { }, "e_objective_types_stream_cursor_input": { "initial_value": [ - 1063 + 1062 ], "ordering": [ - 314 + 313 ], "__typename": [ 80 @@ -17255,10 +17247,10 @@ export default { "e_objective_types_update_column": {}, "e_objective_types_updates": { "_set": [ - 1061 + 1060 ], "where": [ - 1049 + 1048 ], "__typename": [ 80 @@ -17277,10 +17269,10 @@ export default { }, "e_player_roles_aggregate": { "aggregate": [ - 1068 + 1067 ], "nodes": [ - 1066 + 1065 ], "__typename": [ 80 @@ -17291,7 +17283,7 @@ export default { 40, { "columns": [ - 1080, + 1079, "[e_player_roles_select_column!]" ], "distinct": [ @@ -17300,10 +17292,10 @@ export default { } ], "max": [ - 1074 + 1073 ], "min": [ - 1075 + 1074 ], "__typename": [ 80 @@ -17311,13 +17303,13 @@ export default { }, "e_player_roles_bool_exp": { "_and": [ - 1069 + 1068 ], "_not": [ - 1069 + 1068 ], "_or": [ - 1069 + 1068 ], "description": [ 82 @@ -17333,19 +17325,19 @@ export default { "e_player_roles_enum": {}, "e_player_roles_enum_comparison_exp": { "_eq": [ - 1071 + 1070 ], "_in": [ - 1071 + 1070 ], "_is_null": [ 5 ], "_neq": [ - 1071 + 1070 ], "_nin": [ - 1071 + 1070 ], "__typename": [ 80 @@ -17389,7 +17381,7 @@ export default { 40 ], "returning": [ - 1066 + 1065 ], "__typename": [ 80 @@ -17397,13 +17389,13 @@ export default { }, "e_player_roles_on_conflict": { "constraint": [ - 1070 + 1069 ], "update_columns": [ - 1084 + 1083 ], "where": [ - 1069 + 1068 ], "__typename": [ 80 @@ -17411,10 +17403,10 @@ export default { }, "e_player_roles_order_by": { "description": [ - 2952 + 2951 ], "value": [ - 2952 + 2951 ], "__typename": [ 80 @@ -17442,10 +17434,10 @@ export default { }, "e_player_roles_stream_cursor_input": { "initial_value": [ - 1083 + 1082 ], "ordering": [ - 314 + 313 ], "__typename": [ 80 @@ -17465,10 +17457,10 @@ export default { "e_player_roles_update_column": {}, "e_player_roles_updates": { "_set": [ - 1081 + 1080 ], "where": [ - 1069 + 1068 ], "__typename": [ 80 @@ -17487,10 +17479,10 @@ export default { }, "e_plugin_runtimes_aggregate": { "aggregate": [ - 1088 + 1087 ], "nodes": [ - 1086 + 1085 ], "__typename": [ 80 @@ -17501,7 +17493,7 @@ export default { 40, { "columns": [ - 1100, + 1099, "[e_plugin_runtimes_select_column!]" ], "distinct": [ @@ -17510,10 +17502,10 @@ export default { } ], "max": [ - 1094 + 1093 ], "min": [ - 1095 + 1094 ], "__typename": [ 80 @@ -17521,13 +17513,13 @@ export default { }, "e_plugin_runtimes_bool_exp": { "_and": [ - 1089 + 1088 ], "_not": [ - 1089 + 1088 ], "_or": [ - 1089 + 1088 ], "description": [ 82 @@ -17543,19 +17535,19 @@ export default { "e_plugin_runtimes_enum": {}, "e_plugin_runtimes_enum_comparison_exp": { "_eq": [ - 1091 + 1090 ], "_in": [ - 1091 + 1090 ], "_is_null": [ 5 ], "_neq": [ - 1091 + 1090 ], "_nin": [ - 1091 + 1090 ], "__typename": [ 80 @@ -17599,7 +17591,7 @@ export default { 40 ], "returning": [ - 1086 + 1085 ], "__typename": [ 80 @@ -17607,13 +17599,13 @@ export default { }, "e_plugin_runtimes_on_conflict": { "constraint": [ - 1090 + 1089 ], "update_columns": [ - 1104 + 1103 ], "where": [ - 1089 + 1088 ], "__typename": [ 80 @@ -17621,10 +17613,10 @@ export default { }, "e_plugin_runtimes_order_by": { "description": [ - 2952 + 2951 ], "value": [ - 2952 + 2951 ], "__typename": [ 80 @@ -17652,10 +17644,10 @@ export default { }, "e_plugin_runtimes_stream_cursor_input": { "initial_value": [ - 1103 + 1102 ], "ordering": [ - 314 + 313 ], "__typename": [ 80 @@ -17675,10 +17667,10 @@ export default { "e_plugin_runtimes_update_column": {}, "e_plugin_runtimes_updates": { "_set": [ - 1101 + 1100 ], "where": [ - 1089 + 1088 ], "__typename": [ 80 @@ -17697,10 +17689,10 @@ export default { }, "e_ready_settings_aggregate": { "aggregate": [ - 1108 + 1107 ], "nodes": [ - 1106 + 1105 ], "__typename": [ 80 @@ -17711,7 +17703,7 @@ export default { 40, { "columns": [ - 1120, + 1119, "[e_ready_settings_select_column!]" ], "distinct": [ @@ -17720,10 +17712,10 @@ export default { } ], "max": [ - 1114 + 1113 ], "min": [ - 1115 + 1114 ], "__typename": [ 80 @@ -17731,13 +17723,13 @@ export default { }, "e_ready_settings_bool_exp": { "_and": [ - 1109 + 1108 ], "_not": [ - 1109 + 1108 ], "_or": [ - 1109 + 1108 ], "description": [ 82 @@ -17753,19 +17745,19 @@ export default { "e_ready_settings_enum": {}, "e_ready_settings_enum_comparison_exp": { "_eq": [ - 1111 + 1110 ], "_in": [ - 1111 + 1110 ], "_is_null": [ 5 ], "_neq": [ - 1111 + 1110 ], "_nin": [ - 1111 + 1110 ], "__typename": [ 80 @@ -17809,7 +17801,7 @@ export default { 40 ], "returning": [ - 1106 + 1105 ], "__typename": [ 80 @@ -17817,13 +17809,13 @@ export default { }, "e_ready_settings_on_conflict": { "constraint": [ - 1110 + 1109 ], "update_columns": [ - 1124 + 1123 ], "where": [ - 1109 + 1108 ], "__typename": [ 80 @@ -17831,10 +17823,10 @@ export default { }, "e_ready_settings_order_by": { "description": [ - 2952 + 2951 ], "value": [ - 2952 + 2951 ], "__typename": [ 80 @@ -17862,10 +17854,10 @@ export default { }, "e_ready_settings_stream_cursor_input": { "initial_value": [ - 1123 + 1122 ], "ordering": [ - 314 + 313 ], "__typename": [ 80 @@ -17885,10 +17877,10 @@ export default { "e_ready_settings_update_column": {}, "e_ready_settings_updates": { "_set": [ - 1121 + 1120 ], "where": [ - 1109 + 1108 ], "__typename": [ 80 @@ -17907,10 +17899,10 @@ export default { }, "e_sanction_types_aggregate": { "aggregate": [ - 1128 + 1127 ], "nodes": [ - 1126 + 1125 ], "__typename": [ 80 @@ -17921,7 +17913,7 @@ export default { 40, { "columns": [ - 1141, + 1140, "[e_sanction_types_select_column!]" ], "distinct": [ @@ -17930,10 +17922,10 @@ export default { } ], "max": [ - 1134 + 1133 ], "min": [ - 1135 + 1134 ], "__typename": [ 80 @@ -17941,13 +17933,13 @@ export default { }, "e_sanction_types_bool_exp": { "_and": [ - 1129 + 1128 ], "_not": [ - 1129 + 1128 ], "_or": [ - 1129 + 1128 ], "description": [ 82 @@ -17963,19 +17955,19 @@ export default { "e_sanction_types_enum": {}, "e_sanction_types_enum_comparison_exp": { "_eq": [ - 1131 + 1130 ], "_in": [ - 1131 + 1130 ], "_is_null": [ 5 ], "_neq": [ - 1131 + 1130 ], "_nin": [ - 1131 + 1130 ], "__typename": [ 80 @@ -18019,7 +18011,7 @@ export default { 40 ], "returning": [ - 1126 + 1125 ], "__typename": [ 80 @@ -18027,10 +18019,10 @@ export default { }, "e_sanction_types_obj_rel_insert_input": { "data": [ - 1133 + 1132 ], "on_conflict": [ - 1138 + 1137 ], "__typename": [ 80 @@ -18038,13 +18030,13 @@ export default { }, "e_sanction_types_on_conflict": { "constraint": [ - 1130 + 1129 ], "update_columns": [ - 1145 + 1144 ], "where": [ - 1129 + 1128 ], "__typename": [ 80 @@ -18052,10 +18044,10 @@ export default { }, "e_sanction_types_order_by": { "description": [ - 2952 + 2951 ], "value": [ - 2952 + 2951 ], "__typename": [ 80 @@ -18083,10 +18075,10 @@ export default { }, "e_sanction_types_stream_cursor_input": { "initial_value": [ - 1144 + 1143 ], "ordering": [ - 314 + 313 ], "__typename": [ 80 @@ -18106,10 +18098,10 @@ export default { "e_sanction_types_update_column": {}, "e_sanction_types_updates": { "_set": [ - 1142 + 1141 ], "where": [ - 1129 + 1128 ], "__typename": [ 80 @@ -18120,10 +18112,10 @@ export default { 80 ], "scrim_requests": [ - 4351, + 4350, { "distinct_on": [ - 4375, + 4374, "[team_scrim_requests_select_column!]" ], "limit": [ @@ -18133,19 +18125,19 @@ export default { 40 ], "order_by": [ - 4373, + 4372, "[team_scrim_requests_order_by!]" ], "where": [ - 4362 + 4361 ] } ], "scrim_requests_aggregate": [ - 4352, + 4351, { "distinct_on": [ - 4375, + 4374, "[team_scrim_requests_select_column!]" ], "limit": [ @@ -18155,11 +18147,11 @@ export default { 40 ], "order_by": [ - 4373, + 4372, "[team_scrim_requests_order_by!]" ], "where": [ - 4362 + 4361 ] } ], @@ -18172,10 +18164,10 @@ export default { }, "e_scrim_request_statuses_aggregate": { "aggregate": [ - 1149 + 1148 ], "nodes": [ - 1147 + 1146 ], "__typename": [ 80 @@ -18186,7 +18178,7 @@ export default { 40, { "columns": [ - 1161, + 1160, "[e_scrim_request_statuses_select_column!]" ], "distinct": [ @@ -18195,10 +18187,10 @@ export default { } ], "max": [ - 1155 + 1154 ], "min": [ - 1156 + 1155 ], "__typename": [ 80 @@ -18206,22 +18198,22 @@ export default { }, "e_scrim_request_statuses_bool_exp": { "_and": [ - 1150 + 1149 ], "_not": [ - 1150 + 1149 ], "_or": [ - 1150 + 1149 ], "description": [ 82 ], "scrim_requests": [ - 4362 + 4361 ], "scrim_requests_aggregate": [ - 4353 + 4352 ], "value": [ 82 @@ -18234,19 +18226,19 @@ export default { "e_scrim_request_statuses_enum": {}, "e_scrim_request_statuses_enum_comparison_exp": { "_eq": [ - 1152 + 1151 ], "_in": [ - 1152 + 1151 ], "_is_null": [ 5 ], "_neq": [ - 1152 + 1151 ], "_nin": [ - 1152 + 1151 ], "__typename": [ 80 @@ -18257,7 +18249,7 @@ export default { 80 ], "scrim_requests": [ - 4359 + 4358 ], "value": [ 80 @@ -18293,7 +18285,7 @@ export default { 40 ], "returning": [ - 1147 + 1146 ], "__typename": [ 80 @@ -18301,13 +18293,13 @@ export default { }, "e_scrim_request_statuses_on_conflict": { "constraint": [ - 1151 + 1150 ], "update_columns": [ - 1165 + 1164 ], "where": [ - 1150 + 1149 ], "__typename": [ 80 @@ -18315,13 +18307,13 @@ export default { }, "e_scrim_request_statuses_order_by": { "description": [ - 2952 + 2951 ], "scrim_requests_aggregate": [ - 4358 + 4357 ], "value": [ - 2952 + 2951 ], "__typename": [ 80 @@ -18349,10 +18341,10 @@ export default { }, "e_scrim_request_statuses_stream_cursor_input": { "initial_value": [ - 1164 + 1163 ], "ordering": [ - 314 + 313 ], "__typename": [ 80 @@ -18372,10 +18364,10 @@ export default { "e_scrim_request_statuses_update_column": {}, "e_scrim_request_statuses_updates": { "_set": [ - 1162 + 1161 ], "where": [ - 1150 + 1149 ], "__typename": [ 80 @@ -18386,10 +18378,10 @@ export default { 80 ], "servers": [ - 4024, + 4023, { "distinct_on": [ - 4048, + 4047, "[servers_select_column!]" ], "limit": [ @@ -18399,19 +18391,19 @@ export default { 40 ], "order_by": [ - 4046, + 4045, "[servers_order_by!]" ], "where": [ - 4035 + 4034 ] } ], "servers_aggregate": [ - 4025, + 4024, { "distinct_on": [ - 4048, + 4047, "[servers_select_column!]" ], "limit": [ @@ -18421,11 +18413,11 @@ export default { 40 ], "order_by": [ - 4046, + 4045, "[servers_order_by!]" ], "where": [ - 4035 + 4034 ] } ], @@ -18438,10 +18430,10 @@ export default { }, "e_server_types_aggregate": { "aggregate": [ - 1169 + 1168 ], "nodes": [ - 1167 + 1166 ], "__typename": [ 80 @@ -18452,7 +18444,7 @@ export default { 40, { "columns": [ - 1181, + 1180, "[e_server_types_select_column!]" ], "distinct": [ @@ -18461,10 +18453,10 @@ export default { } ], "max": [ - 1175 + 1174 ], "min": [ - 1176 + 1175 ], "__typename": [ 80 @@ -18472,22 +18464,22 @@ export default { }, "e_server_types_bool_exp": { "_and": [ - 1170 + 1169 ], "_not": [ - 1170 + 1169 ], "_or": [ - 1170 + 1169 ], "description": [ 82 ], "servers": [ - 4035 + 4034 ], "servers_aggregate": [ - 4026 + 4025 ], "value": [ 82 @@ -18500,19 +18492,19 @@ export default { "e_server_types_enum": {}, "e_server_types_enum_comparison_exp": { "_eq": [ - 1172 + 1171 ], "_in": [ - 1172 + 1171 ], "_is_null": [ 5 ], "_neq": [ - 1172 + 1171 ], "_nin": [ - 1172 + 1171 ], "__typename": [ 80 @@ -18523,7 +18515,7 @@ export default { 80 ], "servers": [ - 4032 + 4031 ], "value": [ 80 @@ -18559,7 +18551,7 @@ export default { 40 ], "returning": [ - 1167 + 1166 ], "__typename": [ 80 @@ -18567,13 +18559,13 @@ export default { }, "e_server_types_on_conflict": { "constraint": [ - 1171 + 1170 ], "update_columns": [ - 1185 + 1184 ], "where": [ - 1170 + 1169 ], "__typename": [ 80 @@ -18581,13 +18573,13 @@ export default { }, "e_server_types_order_by": { "description": [ - 2952 + 2951 ], "servers_aggregate": [ - 4031 + 4030 ], "value": [ - 2952 + 2951 ], "__typename": [ 80 @@ -18615,10 +18607,10 @@ export default { }, "e_server_types_stream_cursor_input": { "initial_value": [ - 1184 + 1183 ], "ordering": [ - 314 + 313 ], "__typename": [ 80 @@ -18638,10 +18630,10 @@ export default { "e_server_types_update_column": {}, "e_server_types_updates": { "_set": [ - 1182 + 1181 ], "where": [ - 1170 + 1169 ], "__typename": [ 80 @@ -18652,10 +18644,10 @@ export default { 80 ], "match_map_lineup_1": [ - 2605, + 2604, { "distinct_on": [ - 2627, + 2626, "[match_maps_select_column!]" ], "limit": [ @@ -18665,19 +18657,19 @@ export default { 40 ], "order_by": [ - 2625, + 2624, "[match_maps_order_by!]" ], "where": [ - 2614 + 2613 ] } ], "match_map_lineup_1_aggregate": [ - 2606, + 2605, { "distinct_on": [ - 2627, + 2626, "[match_maps_select_column!]" ], "limit": [ @@ -18687,19 +18679,19 @@ export default { 40 ], "order_by": [ - 2625, + 2624, "[match_maps_order_by!]" ], "where": [ - 2614 + 2613 ] } ], "match_map_lineup_2": [ - 2605, + 2604, { "distinct_on": [ - 2627, + 2626, "[match_maps_select_column!]" ], "limit": [ @@ -18709,19 +18701,19 @@ export default { 40 ], "order_by": [ - 2625, + 2624, "[match_maps_order_by!]" ], "where": [ - 2614 + 2613 ] } ], "match_map_lineup_2_aggregate": [ - 2606, + 2605, { "distinct_on": [ - 2627, + 2626, "[match_maps_select_column!]" ], "limit": [ @@ -18731,11 +18723,11 @@ export default { 40 ], "order_by": [ - 2625, + 2624, "[match_maps_order_by!]" ], "where": [ - 2614 + 2613 ] } ], @@ -18748,10 +18740,10 @@ export default { }, "e_sides_aggregate": { "aggregate": [ - 1189 + 1188 ], "nodes": [ - 1187 + 1186 ], "__typename": [ 80 @@ -18762,7 +18754,7 @@ export default { 40, { "columns": [ - 1201, + 1200, "[e_sides_select_column!]" ], "distinct": [ @@ -18771,10 +18763,10 @@ export default { } ], "max": [ - 1195 + 1194 ], "min": [ - 1196 + 1195 ], "__typename": [ 80 @@ -18782,28 +18774,28 @@ export default { }, "e_sides_bool_exp": { "_and": [ - 1190 + 1189 ], "_not": [ - 1190 + 1189 ], "_or": [ - 1190 + 1189 ], "description": [ 82 ], "match_map_lineup_1": [ - 2614 + 2613 ], "match_map_lineup_1_aggregate": [ - 2607 + 2606 ], "match_map_lineup_2": [ - 2614 + 2613 ], "match_map_lineup_2_aggregate": [ - 2607 + 2606 ], "value": [ 82 @@ -18816,19 +18808,19 @@ export default { "e_sides_enum": {}, "e_sides_enum_comparison_exp": { "_eq": [ - 1192 + 1191 ], "_in": [ - 1192 + 1191 ], "_is_null": [ 5 ], "_neq": [ - 1192 + 1191 ], "_nin": [ - 1192 + 1191 ], "__typename": [ 80 @@ -18839,10 +18831,10 @@ export default { 80 ], "match_map_lineup_1": [ - 2611 + 2610 ], "match_map_lineup_2": [ - 2611 + 2610 ], "value": [ 80 @@ -18878,7 +18870,7 @@ export default { 40 ], "returning": [ - 1187 + 1186 ], "__typename": [ 80 @@ -18886,13 +18878,13 @@ export default { }, "e_sides_on_conflict": { "constraint": [ - 1191 + 1190 ], "update_columns": [ - 1205 + 1204 ], "where": [ - 1190 + 1189 ], "__typename": [ 80 @@ -18900,16 +18892,16 @@ export default { }, "e_sides_order_by": { "description": [ - 2952 + 2951 ], "match_map_lineup_1_aggregate": [ - 2610 + 2609 ], "match_map_lineup_2_aggregate": [ - 2610 + 2609 ], "value": [ - 2952 + 2951 ], "__typename": [ 80 @@ -18937,10 +18929,10 @@ export default { }, "e_sides_stream_cursor_input": { "initial_value": [ - 1204 + 1203 ], "ordering": [ - 314 + 313 ], "__typename": [ 80 @@ -18960,10 +18952,10 @@ export default { "e_sides_update_column": {}, "e_sides_updates": { "_set": [ - 1202 + 1201 ], "where": [ - 1190 + 1189 ], "__typename": [ 80 @@ -18982,10 +18974,10 @@ export default { }, "e_system_alert_types_aggregate": { "aggregate": [ - 1209 + 1208 ], "nodes": [ - 1207 + 1206 ], "__typename": [ 80 @@ -18996,7 +18988,7 @@ export default { 40, { "columns": [ - 1221, + 1220, "[e_system_alert_types_select_column!]" ], "distinct": [ @@ -19005,10 +18997,10 @@ export default { } ], "max": [ - 1215 + 1214 ], "min": [ - 1216 + 1215 ], "__typename": [ 80 @@ -19016,13 +19008,13 @@ export default { }, "e_system_alert_types_bool_exp": { "_and": [ - 1210 + 1209 ], "_not": [ - 1210 + 1209 ], "_or": [ - 1210 + 1209 ], "description": [ 82 @@ -19038,19 +19030,19 @@ export default { "e_system_alert_types_enum": {}, "e_system_alert_types_enum_comparison_exp": { "_eq": [ - 1212 + 1211 ], "_in": [ - 1212 + 1211 ], "_is_null": [ 5 ], "_neq": [ - 1212 + 1211 ], "_nin": [ - 1212 + 1211 ], "__typename": [ 80 @@ -19094,7 +19086,7 @@ export default { 40 ], "returning": [ - 1207 + 1206 ], "__typename": [ 80 @@ -19102,13 +19094,13 @@ export default { }, "e_system_alert_types_on_conflict": { "constraint": [ - 1211 + 1210 ], "update_columns": [ - 1225 + 1224 ], "where": [ - 1210 + 1209 ], "__typename": [ 80 @@ -19116,10 +19108,10 @@ export default { }, "e_system_alert_types_order_by": { "description": [ - 2952 + 2951 ], "value": [ - 2952 + 2951 ], "__typename": [ 80 @@ -19147,10 +19139,10 @@ export default { }, "e_system_alert_types_stream_cursor_input": { "initial_value": [ - 1224 + 1223 ], "ordering": [ - 314 + 313 ], "__typename": [ 80 @@ -19170,10 +19162,10 @@ export default { "e_system_alert_types_update_column": {}, "e_system_alert_types_updates": { "_set": [ - 1222 + 1221 ], "where": [ - 1210 + 1209 ], "__typename": [ 80 @@ -19184,10 +19176,10 @@ export default { 80 ], "team_rosters": [ - 4210, + 4209, { "distinct_on": [ - 4233, + 4232, "[team_roster_select_column!]" ], "limit": [ @@ -19197,19 +19189,19 @@ export default { 40 ], "order_by": [ - 4231, + 4230, "[team_roster_order_by!]" ], "where": [ - 4221 + 4220 ] } ], "team_rosters_aggregate": [ - 4211, + 4210, { "distinct_on": [ - 4233, + 4232, "[team_roster_select_column!]" ], "limit": [ @@ -19219,19 +19211,19 @@ export default { 40 ], "order_by": [ - 4231, + 4230, "[team_roster_order_by!]" ], "where": [ - 4221 + 4220 ] } ], "tournament_team_rosters": [ - 4852, + 4851, { "distinct_on": [ - 4873, + 4872, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -19241,19 +19233,19 @@ export default { 40 ], "order_by": [ - 4871, + 4870, "[tournament_team_roster_order_by!]" ], "where": [ - 4861 + 4860 ] } ], "tournament_team_rosters_aggregate": [ - 4853, + 4852, { "distinct_on": [ - 4873, + 4872, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -19263,11 +19255,11 @@ export default { 40 ], "order_by": [ - 4871, + 4870, "[tournament_team_roster_order_by!]" ], "where": [ - 4861 + 4860 ] } ], @@ -19280,10 +19272,10 @@ export default { }, "e_team_roles_aggregate": { "aggregate": [ - 1229 + 1228 ], "nodes": [ - 1227 + 1226 ], "__typename": [ 80 @@ -19294,7 +19286,7 @@ export default { 40, { "columns": [ - 1242, + 1241, "[e_team_roles_select_column!]" ], "distinct": [ @@ -19303,10 +19295,10 @@ export default { } ], "max": [ - 1235 + 1234 ], "min": [ - 1236 + 1235 ], "__typename": [ 80 @@ -19314,28 +19306,28 @@ export default { }, "e_team_roles_bool_exp": { "_and": [ - 1230 + 1229 ], "_not": [ - 1230 + 1229 ], "_or": [ - 1230 + 1229 ], "description": [ 82 ], "team_rosters": [ - 4221 + 4220 ], "team_rosters_aggregate": [ - 4212 + 4211 ], "tournament_team_rosters": [ - 4861 + 4860 ], "tournament_team_rosters_aggregate": [ - 4854 + 4853 ], "value": [ 82 @@ -19348,19 +19340,19 @@ export default { "e_team_roles_enum": {}, "e_team_roles_enum_comparison_exp": { "_eq": [ - 1232 + 1231 ], "_in": [ - 1232 + 1231 ], "_is_null": [ 5 ], "_neq": [ - 1232 + 1231 ], "_nin": [ - 1232 + 1231 ], "__typename": [ 80 @@ -19371,10 +19363,10 @@ export default { 80 ], "team_rosters": [ - 4218 + 4217 ], "tournament_team_rosters": [ - 4858 + 4857 ], "value": [ 80 @@ -19410,7 +19402,7 @@ export default { 40 ], "returning": [ - 1227 + 1226 ], "__typename": [ 80 @@ -19418,10 +19410,10 @@ export default { }, "e_team_roles_obj_rel_insert_input": { "data": [ - 1234 + 1233 ], "on_conflict": [ - 1239 + 1238 ], "__typename": [ 80 @@ -19429,13 +19421,13 @@ export default { }, "e_team_roles_on_conflict": { "constraint": [ - 1231 + 1230 ], "update_columns": [ - 1246 + 1245 ], "where": [ - 1230 + 1229 ], "__typename": [ 80 @@ -19443,16 +19435,16 @@ export default { }, "e_team_roles_order_by": { "description": [ - 2952 + 2951 ], "team_rosters_aggregate": [ - 4217 + 4216 ], "tournament_team_rosters_aggregate": [ - 4857 + 4856 ], "value": [ - 2952 + 2951 ], "__typename": [ 80 @@ -19480,10 +19472,10 @@ export default { }, "e_team_roles_stream_cursor_input": { "initial_value": [ - 1245 + 1244 ], "ordering": [ - 314 + 313 ], "__typename": [ 80 @@ -19503,10 +19495,10 @@ export default { "e_team_roles_update_column": {}, "e_team_roles_updates": { "_set": [ - 1243 + 1242 ], "where": [ - 1230 + 1229 ], "__typename": [ 80 @@ -19525,10 +19517,10 @@ export default { }, "e_team_roster_statuses_aggregate": { "aggregate": [ - 1250 + 1249 ], "nodes": [ - 1248 + 1247 ], "__typename": [ 80 @@ -19539,7 +19531,7 @@ export default { 40, { "columns": [ - 1262, + 1261, "[e_team_roster_statuses_select_column!]" ], "distinct": [ @@ -19548,10 +19540,10 @@ export default { } ], "max": [ - 1256 + 1255 ], "min": [ - 1257 + 1256 ], "__typename": [ 80 @@ -19559,13 +19551,13 @@ export default { }, "e_team_roster_statuses_bool_exp": { "_and": [ - 1251 + 1250 ], "_not": [ - 1251 + 1250 ], "_or": [ - 1251 + 1250 ], "description": [ 82 @@ -19581,19 +19573,19 @@ export default { "e_team_roster_statuses_enum": {}, "e_team_roster_statuses_enum_comparison_exp": { "_eq": [ - 1253 + 1252 ], "_in": [ - 1253 + 1252 ], "_is_null": [ 5 ], "_neq": [ - 1253 + 1252 ], "_nin": [ - 1253 + 1252 ], "__typename": [ 80 @@ -19637,7 +19629,7 @@ export default { 40 ], "returning": [ - 1248 + 1247 ], "__typename": [ 80 @@ -19645,13 +19637,13 @@ export default { }, "e_team_roster_statuses_on_conflict": { "constraint": [ - 1252 + 1251 ], "update_columns": [ - 1266 + 1265 ], "where": [ - 1251 + 1250 ], "__typename": [ 80 @@ -19659,10 +19651,10 @@ export default { }, "e_team_roster_statuses_order_by": { "description": [ - 2952 + 2951 ], "value": [ - 2952 + 2951 ], "__typename": [ 80 @@ -19690,10 +19682,10 @@ export default { }, "e_team_roster_statuses_stream_cursor_input": { "initial_value": [ - 1265 + 1264 ], "ordering": [ - 314 + 313 ], "__typename": [ 80 @@ -19713,10 +19705,10 @@ export default { "e_team_roster_statuses_update_column": {}, "e_team_roster_statuses_updates": { "_set": [ - 1263 + 1262 ], "where": [ - 1251 + 1250 ], "__typename": [ 80 @@ -19735,10 +19727,10 @@ export default { }, "e_timeout_settings_aggregate": { "aggregate": [ - 1270 + 1269 ], "nodes": [ - 1268 + 1267 ], "__typename": [ 80 @@ -19749,7 +19741,7 @@ export default { 40, { "columns": [ - 1282, + 1281, "[e_timeout_settings_select_column!]" ], "distinct": [ @@ -19758,10 +19750,10 @@ export default { } ], "max": [ - 1276 + 1275 ], "min": [ - 1277 + 1276 ], "__typename": [ 80 @@ -19769,13 +19761,13 @@ export default { }, "e_timeout_settings_bool_exp": { "_and": [ - 1271 + 1270 ], "_not": [ - 1271 + 1270 ], "_or": [ - 1271 + 1270 ], "description": [ 82 @@ -19791,19 +19783,19 @@ export default { "e_timeout_settings_enum": {}, "e_timeout_settings_enum_comparison_exp": { "_eq": [ - 1273 + 1272 ], "_in": [ - 1273 + 1272 ], "_is_null": [ 5 ], "_neq": [ - 1273 + 1272 ], "_nin": [ - 1273 + 1272 ], "__typename": [ 80 @@ -19847,7 +19839,7 @@ export default { 40 ], "returning": [ - 1268 + 1267 ], "__typename": [ 80 @@ -19855,13 +19847,13 @@ export default { }, "e_timeout_settings_on_conflict": { "constraint": [ - 1272 + 1271 ], "update_columns": [ - 1286 + 1285 ], "where": [ - 1271 + 1270 ], "__typename": [ 80 @@ -19869,10 +19861,10 @@ export default { }, "e_timeout_settings_order_by": { "description": [ - 2952 + 2951 ], "value": [ - 2952 + 2951 ], "__typename": [ 80 @@ -19900,10 +19892,10 @@ export default { }, "e_timeout_settings_stream_cursor_input": { "initial_value": [ - 1285 + 1284 ], "ordering": [ - 314 + 313 ], "__typename": [ 80 @@ -19923,10 +19915,10 @@ export default { "e_timeout_settings_update_column": {}, "e_timeout_settings_updates": { "_set": [ - 1283 + 1282 ], "where": [ - 1271 + 1270 ], "__typename": [ 80 @@ -19937,10 +19929,10 @@ export default { 80 ], "tournament_categories": [ - 4589, + 4588, { "distinct_on": [ - 4607, + 4606, "[tournament_categories_select_column!]" ], "limit": [ @@ -19950,19 +19942,19 @@ export default { 40 ], "order_by": [ - 4605, + 4604, "[tournament_categories_order_by!]" ], "where": [ - 4596 + 4595 ] } ], "tournament_categories_aggregate": [ - 4590, + 4589, { "distinct_on": [ - 4607, + 4606, "[tournament_categories_select_column!]" ], "limit": [ @@ -19972,11 +19964,11 @@ export default { 40 ], "order_by": [ - 4605, + 4604, "[tournament_categories_order_by!]" ], "where": [ - 4596 + 4595 ] } ], @@ -19989,10 +19981,10 @@ export default { }, "e_tournament_categories_aggregate": { "aggregate": [ - 1290 + 1289 ], "nodes": [ - 1288 + 1287 ], "__typename": [ 80 @@ -20003,7 +19995,7 @@ export default { 40, { "columns": [ - 1303, + 1302, "[e_tournament_categories_select_column!]" ], "distinct": [ @@ -20012,10 +20004,10 @@ export default { } ], "max": [ - 1296 + 1295 ], "min": [ - 1297 + 1296 ], "__typename": [ 80 @@ -20023,22 +20015,22 @@ export default { }, "e_tournament_categories_bool_exp": { "_and": [ - 1291 + 1290 ], "_not": [ - 1291 + 1290 ], "_or": [ - 1291 + 1290 ], "description": [ 82 ], "tournament_categories": [ - 4596 + 4595 ], "tournament_categories_aggregate": [ - 4591 + 4590 ], "value": [ 82 @@ -20051,19 +20043,19 @@ export default { "e_tournament_categories_enum": {}, "e_tournament_categories_enum_comparison_exp": { "_eq": [ - 1293 + 1292 ], "_in": [ - 1293 + 1292 ], "_is_null": [ 5 ], "_neq": [ - 1293 + 1292 ], "_nin": [ - 1293 + 1292 ], "__typename": [ 80 @@ -20074,7 +20066,7 @@ export default { 80 ], "tournament_categories": [ - 4595 + 4594 ], "value": [ 80 @@ -20110,7 +20102,7 @@ export default { 40 ], "returning": [ - 1288 + 1287 ], "__typename": [ 80 @@ -20118,10 +20110,10 @@ export default { }, "e_tournament_categories_obj_rel_insert_input": { "data": [ - 1295 + 1294 ], "on_conflict": [ - 1300 + 1299 ], "__typename": [ 80 @@ -20129,13 +20121,13 @@ export default { }, "e_tournament_categories_on_conflict": { "constraint": [ - 1292 + 1291 ], "update_columns": [ - 1307 + 1306 ], "where": [ - 1291 + 1290 ], "__typename": [ 80 @@ -20143,13 +20135,13 @@ export default { }, "e_tournament_categories_order_by": { "description": [ - 2952 + 2951 ], "tournament_categories_aggregate": [ - 4594 + 4593 ], "value": [ - 2952 + 2951 ], "__typename": [ 80 @@ -20177,10 +20169,10 @@ export default { }, "e_tournament_categories_stream_cursor_input": { "initial_value": [ - 1306 + 1305 ], "ordering": [ - 314 + 313 ], "__typename": [ 80 @@ -20200,10 +20192,10 @@ export default { "e_tournament_categories_update_column": {}, "e_tournament_categories_updates": { "_set": [ - 1304 + 1303 ], "where": [ - 1291 + 1290 ], "__typename": [ 80 @@ -20214,10 +20206,10 @@ export default { 80 ], "tournament_stages": [ - 4760, + 4759, { "distinct_on": [ - 4789, + 4788, "[tournament_stages_select_column!]" ], "limit": [ @@ -20227,19 +20219,19 @@ export default { 40 ], "order_by": [ - 4786, + 4785, "[tournament_stages_order_by!]" ], "where": [ - 4772 + 4771 ] } ], "tournament_stages_aggregate": [ - 4761, + 4760, { "distinct_on": [ - 4789, + 4788, "[tournament_stages_select_column!]" ], "limit": [ @@ -20249,11 +20241,11 @@ export default { 40 ], "order_by": [ - 4786, + 4785, "[tournament_stages_order_by!]" ], "where": [ - 4772 + 4771 ] } ], @@ -20266,10 +20258,10 @@ export default { }, "e_tournament_stage_types_aggregate": { "aggregate": [ - 1311 + 1310 ], "nodes": [ - 1309 + 1308 ], "__typename": [ 80 @@ -20280,7 +20272,7 @@ export default { 40, { "columns": [ - 1324, + 1323, "[e_tournament_stage_types_select_column!]" ], "distinct": [ @@ -20289,10 +20281,10 @@ export default { } ], "max": [ - 1317 + 1316 ], "min": [ - 1318 + 1317 ], "__typename": [ 80 @@ -20300,22 +20292,22 @@ export default { }, "e_tournament_stage_types_bool_exp": { "_and": [ - 1312 + 1311 ], "_not": [ - 1312 + 1311 ], "_or": [ - 1312 + 1311 ], "description": [ 82 ], "tournament_stages": [ - 4772 + 4771 ], "tournament_stages_aggregate": [ - 4762 + 4761 ], "value": [ 82 @@ -20328,19 +20320,19 @@ export default { "e_tournament_stage_types_enum": {}, "e_tournament_stage_types_enum_comparison_exp": { "_eq": [ - 1314 + 1313 ], "_in": [ - 1314 + 1313 ], "_is_null": [ 5 ], "_neq": [ - 1314 + 1313 ], "_nin": [ - 1314 + 1313 ], "__typename": [ 80 @@ -20351,7 +20343,7 @@ export default { 80 ], "tournament_stages": [ - 4769 + 4768 ], "value": [ 80 @@ -20387,7 +20379,7 @@ export default { 40 ], "returning": [ - 1309 + 1308 ], "__typename": [ 80 @@ -20395,10 +20387,10 @@ export default { }, "e_tournament_stage_types_obj_rel_insert_input": { "data": [ - 1316 + 1315 ], "on_conflict": [ - 1321 + 1320 ], "__typename": [ 80 @@ -20406,13 +20398,13 @@ export default { }, "e_tournament_stage_types_on_conflict": { "constraint": [ - 1313 + 1312 ], "update_columns": [ - 1328 + 1327 ], "where": [ - 1312 + 1311 ], "__typename": [ 80 @@ -20420,13 +20412,13 @@ export default { }, "e_tournament_stage_types_order_by": { "description": [ - 2952 + 2951 ], "tournament_stages_aggregate": [ - 4767 + 4766 ], "value": [ - 2952 + 2951 ], "__typename": [ 80 @@ -20454,10 +20446,10 @@ export default { }, "e_tournament_stage_types_stream_cursor_input": { "initial_value": [ - 1327 + 1326 ], "ordering": [ - 314 + 313 ], "__typename": [ 80 @@ -20477,10 +20469,10 @@ export default { "e_tournament_stage_types_update_column": {}, "e_tournament_stage_types_updates": { "_set": [ - 1325 + 1324 ], "where": [ - 1312 + 1311 ], "__typename": [ 80 @@ -20491,10 +20483,10 @@ export default { 80 ], "tournaments": [ - 4935, + 4934, { "distinct_on": [ - 4969, + 4968, "[tournaments_select_column!]" ], "limit": [ @@ -20504,19 +20496,19 @@ export default { 40 ], "order_by": [ - 4967, + 4966, "[tournaments_order_by!]" ], "where": [ - 4956 + 4955 ] } ], "tournaments_aggregate": [ - 4936, + 4935, { "distinct_on": [ - 4969, + 4968, "[tournaments_select_column!]" ], "limit": [ @@ -20526,11 +20518,11 @@ export default { 40 ], "order_by": [ - 4967, + 4966, "[tournaments_order_by!]" ], "where": [ - 4956 + 4955 ] } ], @@ -20543,10 +20535,10 @@ export default { }, "e_tournament_status_aggregate": { "aggregate": [ - 1332 + 1331 ], "nodes": [ - 1330 + 1329 ], "__typename": [ 80 @@ -20557,7 +20549,7 @@ export default { 40, { "columns": [ - 1345, + 1344, "[e_tournament_status_select_column!]" ], "distinct": [ @@ -20566,10 +20558,10 @@ export default { } ], "max": [ - 1338 + 1337 ], "min": [ - 1339 + 1338 ], "__typename": [ 80 @@ -20577,22 +20569,22 @@ export default { }, "e_tournament_status_bool_exp": { "_and": [ - 1333 + 1332 ], "_not": [ - 1333 + 1332 ], "_or": [ - 1333 + 1332 ], "description": [ 82 ], "tournaments": [ - 4956 + 4955 ], "tournaments_aggregate": [ - 4937 + 4936 ], "value": [ 82 @@ -20605,19 +20597,19 @@ export default { "e_tournament_status_enum": {}, "e_tournament_status_enum_comparison_exp": { "_eq": [ - 1335 + 1334 ], "_in": [ - 1335 + 1334 ], "_is_null": [ 5 ], "_neq": [ - 1335 + 1334 ], "_nin": [ - 1335 + 1334 ], "__typename": [ 80 @@ -20628,7 +20620,7 @@ export default { 80 ], "tournaments": [ - 4953 + 4952 ], "value": [ 80 @@ -20664,7 +20656,7 @@ export default { 40 ], "returning": [ - 1330 + 1329 ], "__typename": [ 80 @@ -20672,10 +20664,10 @@ export default { }, "e_tournament_status_obj_rel_insert_input": { "data": [ - 1337 + 1336 ], "on_conflict": [ - 1342 + 1341 ], "__typename": [ 80 @@ -20683,13 +20675,13 @@ export default { }, "e_tournament_status_on_conflict": { "constraint": [ - 1334 + 1333 ], "update_columns": [ - 1349 + 1348 ], "where": [ - 1333 + 1332 ], "__typename": [ 80 @@ -20697,13 +20689,13 @@ export default { }, "e_tournament_status_order_by": { "description": [ - 2952 + 2951 ], "tournaments_aggregate": [ - 4952 + 4951 ], "value": [ - 2952 + 2951 ], "__typename": [ 80 @@ -20731,10 +20723,10 @@ export default { }, "e_tournament_status_stream_cursor_input": { "initial_value": [ - 1348 + 1347 ], "ordering": [ - 314 + 313 ], "__typename": [ 80 @@ -20754,10 +20746,10 @@ export default { "e_tournament_status_update_column": {}, "e_tournament_status_updates": { "_set": [ - 1346 + 1345 ], "where": [ - 1333 + 1332 ], "__typename": [ 80 @@ -20768,10 +20760,10 @@ export default { 80 ], "player_utilities": [ - 3836, + 3835, { "distinct_on": [ - 3857, + 3856, "[player_utility_select_column!]" ], "limit": [ @@ -20781,19 +20773,19 @@ export default { 40 ], "order_by": [ - 3855, + 3854, "[player_utility_order_by!]" ], "where": [ - 3845 + 3844 ] } ], "player_utilities_aggregate": [ - 3837, + 3836, { "distinct_on": [ - 3857, + 3856, "[player_utility_select_column!]" ], "limit": [ @@ -20803,11 +20795,11 @@ export default { 40 ], "order_by": [ - 3855, + 3854, "[player_utility_order_by!]" ], "where": [ - 3845 + 3844 ] } ], @@ -20820,10 +20812,10 @@ export default { }, "e_utility_types_aggregate": { "aggregate": [ - 1353 + 1352 ], "nodes": [ - 1351 + 1350 ], "__typename": [ 80 @@ -20834,7 +20826,7 @@ export default { 40, { "columns": [ - 1365, + 1364, "[e_utility_types_select_column!]" ], "distinct": [ @@ -20843,10 +20835,10 @@ export default { } ], "max": [ - 1359 + 1358 ], "min": [ - 1360 + 1359 ], "__typename": [ 80 @@ -20854,22 +20846,22 @@ export default { }, "e_utility_types_bool_exp": { "_and": [ - 1354 + 1353 ], "_not": [ - 1354 + 1353 ], "_or": [ - 1354 + 1353 ], "description": [ 82 ], "player_utilities": [ - 3845 + 3844 ], "player_utilities_aggregate": [ - 3838 + 3837 ], "value": [ 82 @@ -20882,19 +20874,19 @@ export default { "e_utility_types_enum": {}, "e_utility_types_enum_comparison_exp": { "_eq": [ - 1356 + 1355 ], "_in": [ - 1356 + 1355 ], "_is_null": [ 5 ], "_neq": [ - 1356 + 1355 ], "_nin": [ - 1356 + 1355 ], "__typename": [ 80 @@ -20905,7 +20897,7 @@ export default { 80 ], "player_utilities": [ - 3842 + 3841 ], "value": [ 80 @@ -20941,7 +20933,7 @@ export default { 40 ], "returning": [ - 1351 + 1350 ], "__typename": [ 80 @@ -20949,13 +20941,13 @@ export default { }, "e_utility_types_on_conflict": { "constraint": [ - 1355 + 1354 ], "update_columns": [ - 1369 + 1368 ], "where": [ - 1354 + 1353 ], "__typename": [ 80 @@ -20963,13 +20955,13 @@ export default { }, "e_utility_types_order_by": { "description": [ - 2952 + 2951 ], "player_utilities_aggregate": [ - 3841 + 3840 ], "value": [ - 2952 + 2951 ], "__typename": [ 80 @@ -20997,10 +20989,10 @@ export default { }, "e_utility_types_stream_cursor_input": { "initial_value": [ - 1368 + 1367 ], "ordering": [ - 314 + 313 ], "__typename": [ 80 @@ -21020,10 +21012,10 @@ export default { "e_utility_types_update_column": {}, "e_utility_types_updates": { "_set": [ - 1366 + 1365 ], "where": [ - 1354 + 1353 ], "__typename": [ 80 @@ -21034,10 +21026,10 @@ export default { 80 ], "match_veto_picks": [ - 2581, + 2580, { "distinct_on": [ - 2599, + 2598, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -21047,19 +21039,19 @@ export default { 40 ], "order_by": [ - 2597, + 2596, "[match_map_veto_picks_order_by!]" ], "where": [ - 2588 + 2587 ] } ], "match_veto_picks_aggregate": [ - 2582, + 2581, { "distinct_on": [ - 2599, + 2598, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -21069,11 +21061,11 @@ export default { 40 ], "order_by": [ - 2597, + 2596, "[match_map_veto_picks_order_by!]" ], "where": [ - 2588 + 2587 ] } ], @@ -21086,10 +21078,10 @@ export default { }, "e_veto_pick_types_aggregate": { "aggregate": [ - 1373 + 1372 ], "nodes": [ - 1371 + 1370 ], "__typename": [ 80 @@ -21100,7 +21092,7 @@ export default { 40, { "columns": [ - 1385, + 1384, "[e_veto_pick_types_select_column!]" ], "distinct": [ @@ -21109,10 +21101,10 @@ export default { } ], "max": [ - 1379 + 1378 ], "min": [ - 1380 + 1379 ], "__typename": [ 80 @@ -21120,22 +21112,22 @@ export default { }, "e_veto_pick_types_bool_exp": { "_and": [ - 1374 + 1373 ], "_not": [ - 1374 + 1373 ], "_or": [ - 1374 + 1373 ], "description": [ 82 ], "match_veto_picks": [ - 2588 + 2587 ], "match_veto_picks_aggregate": [ - 2583 + 2582 ], "value": [ 82 @@ -21148,19 +21140,19 @@ export default { "e_veto_pick_types_enum": {}, "e_veto_pick_types_enum_comparison_exp": { "_eq": [ - 1376 + 1375 ], "_in": [ - 1376 + 1375 ], "_is_null": [ 5 ], "_neq": [ - 1376 + 1375 ], "_nin": [ - 1376 + 1375 ], "__typename": [ 80 @@ -21171,7 +21163,7 @@ export default { 80 ], "match_veto_picks": [ - 2587 + 2586 ], "value": [ 80 @@ -21207,7 +21199,7 @@ export default { 40 ], "returning": [ - 1371 + 1370 ], "__typename": [ 80 @@ -21215,13 +21207,13 @@ export default { }, "e_veto_pick_types_on_conflict": { "constraint": [ - 1375 + 1374 ], "update_columns": [ - 1389 + 1388 ], "where": [ - 1374 + 1373 ], "__typename": [ 80 @@ -21229,13 +21221,13 @@ export default { }, "e_veto_pick_types_order_by": { "description": [ - 2952 + 2951 ], "match_veto_picks_aggregate": [ - 2586 + 2585 ], "value": [ - 2952 + 2951 ], "__typename": [ 80 @@ -21263,10 +21255,10 @@ export default { }, "e_veto_pick_types_stream_cursor_input": { "initial_value": [ - 1388 + 1387 ], "ordering": [ - 314 + 313 ], "__typename": [ 80 @@ -21286,10 +21278,10 @@ export default { "e_veto_pick_types_update_column": {}, "e_veto_pick_types_updates": { "_set": [ - 1386 + 1385 ], "where": [ - 1374 + 1373 ], "__typename": [ 80 @@ -21308,10 +21300,10 @@ export default { }, "e_winning_reasons_aggregate": { "aggregate": [ - 1393 + 1392 ], "nodes": [ - 1391 + 1390 ], "__typename": [ 80 @@ -21322,7 +21314,7 @@ export default { 40, { "columns": [ - 1405, + 1404, "[e_winning_reasons_select_column!]" ], "distinct": [ @@ -21331,10 +21323,10 @@ export default { } ], "max": [ - 1399 + 1398 ], "min": [ - 1400 + 1399 ], "__typename": [ 80 @@ -21342,13 +21334,13 @@ export default { }, "e_winning_reasons_bool_exp": { "_and": [ - 1394 + 1393 ], "_not": [ - 1394 + 1393 ], "_or": [ - 1394 + 1393 ], "description": [ 82 @@ -21364,19 +21356,19 @@ export default { "e_winning_reasons_enum": {}, "e_winning_reasons_enum_comparison_exp": { "_eq": [ - 1396 + 1395 ], "_in": [ - 1396 + 1395 ], "_is_null": [ 5 ], "_neq": [ - 1396 + 1395 ], "_nin": [ - 1396 + 1395 ], "__typename": [ 80 @@ -21420,7 +21412,7 @@ export default { 40 ], "returning": [ - 1391 + 1390 ], "__typename": [ 80 @@ -21428,13 +21420,13 @@ export default { }, "e_winning_reasons_on_conflict": { "constraint": [ - 1395 + 1394 ], "update_columns": [ - 1409 + 1408 ], "where": [ - 1394 + 1393 ], "__typename": [ 80 @@ -21442,10 +21434,10 @@ export default { }, "e_winning_reasons_order_by": { "description": [ - 2952 + 2951 ], "value": [ - 2952 + 2951 ], "__typename": [ 80 @@ -21473,10 +21465,10 @@ export default { }, "e_winning_reasons_stream_cursor_input": { "initial_value": [ - 1408 + 1407 ], "ordering": [ - 314 + 313 ], "__typename": [ 80 @@ -21496,10 +21488,10 @@ export default { "e_winning_reasons_update_column": {}, "e_winning_reasons_updates": { "_set": [ - 1406 + 1405 ], "where": [ - 1394 + 1393 ], "__typename": [ 80 @@ -21507,19 +21499,19 @@ export default { }, "event_match_links": { "created_at": [ - 4499 + 4498 ], "event": [ - 1642 + 1641 ], "event_id": [ - 4999 + 4998 ], "match": [ - 2767 + 2766 ], "match_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -21527,10 +21519,10 @@ export default { }, "event_match_links_aggregate": { "aggregate": [ - 1413 + 1412 ], "nodes": [ - 1411 + 1410 ], "__typename": [ 80 @@ -21541,7 +21533,7 @@ export default { 40, { "columns": [ - 1423, + 1422, "[event_match_links_select_column!]" ], "distinct": [ @@ -21550,10 +21542,10 @@ export default { } ], "max": [ - 1417 + 1416 ], "min": [ - 1418 + 1417 ], "__typename": [ 80 @@ -21561,28 +21553,28 @@ export default { }, "event_match_links_bool_exp": { "_and": [ - 1414 + 1413 ], "_not": [ - 1414 + 1413 ], "_or": [ - 1414 + 1413 ], "created_at": [ - 4500 + 4499 ], "event": [ - 1646 + 1645 ], "event_id": [ - 5001 + 5000 ], "match": [ - 2776 + 2775 ], "match_id": [ - 5001 + 5000 ], "__typename": [ 80 @@ -21591,19 +21583,19 @@ export default { "event_match_links_constraint": {}, "event_match_links_insert_input": { "created_at": [ - 4499 + 4498 ], "event": [ - 1653 + 1652 ], "event_id": [ - 4999 + 4998 ], "match": [ - 2785 + 2784 ], "match_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -21611,13 +21603,13 @@ export default { }, "event_match_links_max_fields": { "created_at": [ - 4499 + 4498 ], "event_id": [ - 4999 + 4998 ], "match_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -21625,13 +21617,13 @@ export default { }, "event_match_links_min_fields": { "created_at": [ - 4499 + 4498 ], "event_id": [ - 4999 + 4998 ], "match_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -21642,7 +21634,7 @@ export default { 40 ], "returning": [ - 1411 + 1410 ], "__typename": [ 80 @@ -21650,13 +21642,13 @@ export default { }, "event_match_links_on_conflict": { "constraint": [ - 1415 + 1414 ], "update_columns": [ - 1427 + 1426 ], "where": [ - 1414 + 1413 ], "__typename": [ 80 @@ -21664,19 +21656,19 @@ export default { }, "event_match_links_order_by": { "created_at": [ - 2952 + 2951 ], "event": [ - 1655 + 1654 ], "event_id": [ - 2952 + 2951 ], "match": [ - 2787 + 2786 ], "match_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -21684,10 +21676,10 @@ export default { }, "event_match_links_pk_columns_input": { "event_id": [ - 4999 + 4998 ], "match_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -21696,13 +21688,13 @@ export default { "event_match_links_select_column": {}, "event_match_links_set_input": { "created_at": [ - 4499 + 4498 ], "event_id": [ - 4999 + 4998 ], "match_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -21710,10 +21702,10 @@ export default { }, "event_match_links_stream_cursor_input": { "initial_value": [ - 1426 + 1425 ], "ordering": [ - 314 + 313 ], "__typename": [ 80 @@ -21721,13 +21713,13 @@ export default { }, "event_match_links_stream_cursor_value_input": { "created_at": [ - 4499 + 4498 ], "event_id": [ - 4999 + 4998 ], "match_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -21736,10 +21728,10 @@ export default { "event_match_links_update_column": {}, "event_match_links_updates": { "_set": [ - 1424 + 1423 ], "where": [ - 1414 + 1413 ], "__typename": [ 80 @@ -21747,13 +21739,13 @@ export default { }, "event_media": { "created_at": [ - 4499 + 4498 ], "event": [ - 1642 + 1641 ], "event_id": [ - 4999 + 4998 ], "external_url": [ 80 @@ -21762,16 +21754,16 @@ export default { 80 ], "id": [ - 4999 + 4998 ], "mime_type": [ 80 ], "players": [ - 1451, + 1450, { "distinct_on": [ - 1472, + 1471, "[event_media_players_select_column!]" ], "limit": [ @@ -21781,19 +21773,19 @@ export default { 40 ], "order_by": [ - 1470, + 1469, "[event_media_players_order_by!]" ], "where": [ - 1460 + 1459 ] } ], "players_aggregate": [ - 1452, + 1451, { "distinct_on": [ - 1472, + 1471, "[event_media_players_select_column!]" ], "limit": [ @@ -21803,16 +21795,16 @@ export default { 40 ], "order_by": [ - 1470, + 1469, "[event_media_players_order_by!]" ], "where": [ - 1460 + 1459 ] } ], "size": [ - 258 + 257 ], "thumbnail_filename": [ 80 @@ -21821,10 +21813,10 @@ export default { 80 ], "uploader": [ - 3910 + 3909 ], "uploader_steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -21832,10 +21824,10 @@ export default { }, "event_media_aggregate": { "aggregate": [ - 1433 + 1432 ], "nodes": [ - 1429 + 1428 ], "__typename": [ 80 @@ -21843,7 +21835,7 @@ export default { }, "event_media_aggregate_bool_exp": { "count": [ - 1432 + 1431 ], "__typename": [ 80 @@ -21851,13 +21843,13 @@ export default { }, "event_media_aggregate_bool_exp_count": { "arguments": [ - 1492 + 1491 ], "distinct": [ 5 ], "filter": [ - 1438 + 1437 ], "predicate": [ 41 @@ -21868,13 +21860,13 @@ export default { }, "event_media_aggregate_fields": { "avg": [ - 1436 + 1435 ], "count": [ 40, { "columns": [ - 1492, + 1491, "[event_media_select_column!]" ], "distinct": [ @@ -21882,6 +21874,44 @@ export default { ] } ], + "max": [ + 1441 + ], + "min": [ + 1443 + ], + "stddev": [ + 1493 + ], + "stddev_pop": [ + 1495 + ], + "stddev_samp": [ + 1497 + ], + "sum": [ + 1501 + ], + "var_pop": [ + 1505 + ], + "var_samp": [ + 1507 + ], + "variance": [ + 1509 + ], + "__typename": [ + 80 + ] + }, + "event_media_aggregate_order_by": { + "avg": [ + 1436 + ], + "count": [ + 2951 + ], "max": [ 1442 ], @@ -21913,50 +21943,12 @@ export default { 80 ] }, - "event_media_aggregate_order_by": { - "avg": [ - 1437 - ], - "count": [ - 2952 - ], - "max": [ - 1443 - ], - "min": [ - 1445 - ], - "stddev": [ - 1495 - ], - "stddev_pop": [ - 1497 - ], - "stddev_samp": [ - 1499 - ], - "sum": [ - 1503 - ], - "var_pop": [ - 1507 - ], - "var_samp": [ - 1509 - ], - "variance": [ - 1511 - ], - "__typename": [ - 80 - ] - }, "event_media_arr_rel_insert_input": { "data": [ - 1441 + 1440 ], "on_conflict": [ - 1448 + 1447 ], "__typename": [ 80 @@ -21975,10 +21967,10 @@ export default { }, "event_media_avg_order_by": { "size": [ - 2952 + 2951 ], "uploader_steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -21986,22 +21978,22 @@ export default { }, "event_media_bool_exp": { "_and": [ - 1438 + 1437 ], "_not": [ - 1438 + 1437 ], "_or": [ - 1438 + 1437 ], "created_at": [ - 4500 + 4499 ], "event": [ - 1646 + 1645 ], "event_id": [ - 5001 + 5000 ], "external_url": [ 82 @@ -22010,19 +22002,19 @@ export default { 82 ], "id": [ - 5001 + 5000 ], "mime_type": [ 82 ], "players": [ - 1460 + 1459 ], "players_aggregate": [ - 1453 + 1452 ], "size": [ - 260 + 259 ], "thumbnail_filename": [ 82 @@ -22031,10 +22023,10 @@ export default { 82 ], "uploader": [ - 3914 + 3913 ], "uploader_steam_id": [ - 260 + 259 ], "__typename": [ 80 @@ -22043,10 +22035,10 @@ export default { "event_media_constraint": {}, "event_media_inc_input": { "size": [ - 258 + 257 ], "uploader_steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -22054,13 +22046,13 @@ export default { }, "event_media_insert_input": { "created_at": [ - 4499 + 4498 ], "event": [ - 1653 + 1652 ], "event_id": [ - 4999 + 4998 ], "external_url": [ 80 @@ -22069,16 +22061,16 @@ export default { 80 ], "id": [ - 4999 + 4998 ], "mime_type": [ 80 ], "players": [ - 1457 + 1456 ], "size": [ - 258 + 257 ], "thumbnail_filename": [ 80 @@ -22087,10 +22079,10 @@ export default { 80 ], "uploader": [ - 3921 + 3920 ], "uploader_steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -22098,10 +22090,10 @@ export default { }, "event_media_max_fields": { "created_at": [ - 4499 + 4498 ], "event_id": [ - 4999 + 4998 ], "external_url": [ 80 @@ -22110,13 +22102,13 @@ export default { 80 ], "id": [ - 4999 + 4998 ], "mime_type": [ 80 ], "size": [ - 258 + 257 ], "thumbnail_filename": [ 80 @@ -22125,7 +22117,7 @@ export default { 80 ], "uploader_steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -22133,34 +22125,34 @@ export default { }, "event_media_max_order_by": { "created_at": [ - 2952 + 2951 ], "event_id": [ - 2952 + 2951 ], "external_url": [ - 2952 + 2951 ], "filename": [ - 2952 + 2951 ], "id": [ - 2952 + 2951 ], "mime_type": [ - 2952 + 2951 ], "size": [ - 2952 + 2951 ], "thumbnail_filename": [ - 2952 + 2951 ], "title": [ - 2952 + 2951 ], "uploader_steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -22168,10 +22160,10 @@ export default { }, "event_media_min_fields": { "created_at": [ - 4499 + 4498 ], "event_id": [ - 4999 + 4998 ], "external_url": [ 80 @@ -22180,13 +22172,13 @@ export default { 80 ], "id": [ - 4999 + 4998 ], "mime_type": [ 80 ], "size": [ - 258 + 257 ], "thumbnail_filename": [ 80 @@ -22195,7 +22187,7 @@ export default { 80 ], "uploader_steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -22203,34 +22195,34 @@ export default { }, "event_media_min_order_by": { "created_at": [ - 2952 + 2951 ], "event_id": [ - 2952 + 2951 ], "external_url": [ - 2952 + 2951 ], "filename": [ - 2952 + 2951 ], "id": [ - 2952 + 2951 ], "mime_type": [ - 2952 + 2951 ], "size": [ - 2952 + 2951 ], "thumbnail_filename": [ - 2952 + 2951 ], "title": [ - 2952 + 2951 ], "uploader_steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -22241,7 +22233,7 @@ export default { 40 ], "returning": [ - 1429 + 1428 ], "__typename": [ 80 @@ -22249,10 +22241,10 @@ export default { }, "event_media_obj_rel_insert_input": { "data": [ - 1441 + 1440 ], "on_conflict": [ - 1448 + 1447 ], "__typename": [ 80 @@ -22260,13 +22252,13 @@ export default { }, "event_media_on_conflict": { "constraint": [ - 1439 + 1438 ], "update_columns": [ - 1504 + 1503 ], "where": [ - 1438 + 1437 ], "__typename": [ 80 @@ -22274,43 +22266,43 @@ export default { }, "event_media_order_by": { "created_at": [ - 2952 + 2951 ], "event": [ - 1655 + 1654 ], "event_id": [ - 2952 + 2951 ], "external_url": [ - 2952 + 2951 ], "filename": [ - 2952 + 2951 ], "id": [ - 2952 + 2951 ], "mime_type": [ - 2952 + 2951 ], "players_aggregate": [ - 1456 + 1455 ], "size": [ - 2952 + 2951 ], "thumbnail_filename": [ - 2952 + 2951 ], "title": [ - 2952 + 2951 ], "uploader": [ - 3923 + 3922 ], "uploader_steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -22318,7 +22310,7 @@ export default { }, "event_media_pk_columns_input": { "id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -22326,19 +22318,19 @@ export default { }, "event_media_players": { "created_at": [ - 4499 + 4498 ], "media": [ - 1429 + 1428 ], "media_id": [ - 4999 + 4998 ], "player": [ - 3910 + 3909 ], "steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -22346,10 +22338,10 @@ export default { }, "event_media_players_aggregate": { "aggregate": [ - 1455 + 1454 ], "nodes": [ - 1451 + 1450 ], "__typename": [ 80 @@ -22357,7 +22349,7 @@ export default { }, "event_media_players_aggregate_bool_exp": { "count": [ - 1454 + 1453 ], "__typename": [ 80 @@ -22365,13 +22357,13 @@ export default { }, "event_media_players_aggregate_bool_exp_count": { "arguments": [ - 1472 + 1471 ], "distinct": [ 5 ], "filter": [ - 1460 + 1459 ], "predicate": [ 41 @@ -22382,13 +22374,13 @@ export default { }, "event_media_players_aggregate_fields": { "avg": [ - 1458 + 1457 ], "count": [ 40, { "columns": [ - 1472, + 1471, "[event_media_players_select_column!]" ], "distinct": [ @@ -22397,31 +22389,31 @@ export default { } ], "max": [ - 1464 + 1463 ], "min": [ - 1466 + 1465 ], "stddev": [ - 1474 + 1473 ], "stddev_pop": [ - 1476 + 1475 ], "stddev_samp": [ - 1478 + 1477 ], "sum": [ - 1482 + 1481 ], "var_pop": [ - 1486 + 1485 ], "var_samp": [ - 1488 + 1487 ], "variance": [ - 1490 + 1489 ], "__typename": [ 80 @@ -22429,37 +22421,37 @@ export default { }, "event_media_players_aggregate_order_by": { "avg": [ - 1459 + 1458 ], "count": [ - 2952 + 2951 ], "max": [ - 1465 + 1464 ], "min": [ - 1467 + 1466 ], "stddev": [ - 1475 + 1474 ], "stddev_pop": [ - 1477 + 1476 ], "stddev_samp": [ - 1479 + 1478 ], "sum": [ - 1483 + 1482 ], "var_pop": [ - 1487 + 1486 ], "var_samp": [ - 1489 + 1488 ], "variance": [ - 1491 + 1490 ], "__typename": [ 80 @@ -22467,10 +22459,10 @@ export default { }, "event_media_players_arr_rel_insert_input": { "data": [ - 1463 + 1462 ], "on_conflict": [ - 1469 + 1468 ], "__typename": [ 80 @@ -22486,7 +22478,7 @@ export default { }, "event_media_players_avg_order_by": { "steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -22494,28 +22486,28 @@ export default { }, "event_media_players_bool_exp": { "_and": [ - 1460 + 1459 ], "_not": [ - 1460 + 1459 ], "_or": [ - 1460 + 1459 ], "created_at": [ - 4500 + 4499 ], "media": [ - 1438 + 1437 ], "media_id": [ - 5001 + 5000 ], "player": [ - 3914 + 3913 ], "steam_id": [ - 260 + 259 ], "__typename": [ 80 @@ -22524,7 +22516,7 @@ export default { "event_media_players_constraint": {}, "event_media_players_inc_input": { "steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -22532,19 +22524,19 @@ export default { }, "event_media_players_insert_input": { "created_at": [ - 4499 + 4498 ], "media": [ - 1447 + 1446 ], "media_id": [ - 4999 + 4998 ], "player": [ - 3921 + 3920 ], "steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -22552,13 +22544,13 @@ export default { }, "event_media_players_max_fields": { "created_at": [ - 4499 + 4498 ], "media_id": [ - 4999 + 4998 ], "steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -22566,13 +22558,13 @@ export default { }, "event_media_players_max_order_by": { "created_at": [ - 2952 + 2951 ], "media_id": [ - 2952 + 2951 ], "steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -22580,13 +22572,13 @@ export default { }, "event_media_players_min_fields": { "created_at": [ - 4499 + 4498 ], "media_id": [ - 4999 + 4998 ], "steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -22594,13 +22586,13 @@ export default { }, "event_media_players_min_order_by": { "created_at": [ - 2952 + 2951 ], "media_id": [ - 2952 + 2951 ], "steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -22611,7 +22603,7 @@ export default { 40 ], "returning": [ - 1451 + 1450 ], "__typename": [ 80 @@ -22619,13 +22611,13 @@ export default { }, "event_media_players_on_conflict": { "constraint": [ - 1461 + 1460 ], "update_columns": [ - 1484 + 1483 ], "where": [ - 1460 + 1459 ], "__typename": [ 80 @@ -22633,19 +22625,19 @@ export default { }, "event_media_players_order_by": { "created_at": [ - 2952 + 2951 ], "media": [ - 1449 + 1448 ], "media_id": [ - 2952 + 2951 ], "player": [ - 3923 + 3922 ], "steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -22653,10 +22645,10 @@ export default { }, "event_media_players_pk_columns_input": { "media_id": [ - 4999 + 4998 ], "steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -22665,13 +22657,13 @@ export default { "event_media_players_select_column": {}, "event_media_players_set_input": { "created_at": [ - 4499 + 4498 ], "media_id": [ - 4999 + 4998 ], "steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -22687,7 +22679,7 @@ export default { }, "event_media_players_stddev_order_by": { "steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -22703,7 +22695,7 @@ export default { }, "event_media_players_stddev_pop_order_by": { "steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -22719,7 +22711,7 @@ export default { }, "event_media_players_stddev_samp_order_by": { "steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -22727,10 +22719,10 @@ export default { }, "event_media_players_stream_cursor_input": { "initial_value": [ - 1481 + 1480 ], "ordering": [ - 314 + 313 ], "__typename": [ 80 @@ -22738,13 +22730,13 @@ export default { }, "event_media_players_stream_cursor_value_input": { "created_at": [ - 4499 + 4498 ], "media_id": [ - 4999 + 4998 ], "steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -22752,7 +22744,7 @@ export default { }, "event_media_players_sum_fields": { "steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -22760,7 +22752,7 @@ export default { }, "event_media_players_sum_order_by": { "steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -22769,13 +22761,13 @@ export default { "event_media_players_update_column": {}, "event_media_players_updates": { "_inc": [ - 1462 + 1461 ], "_set": [ - 1473 + 1472 ], "where": [ - 1460 + 1459 ], "__typename": [ 80 @@ -22791,7 +22783,7 @@ export default { }, "event_media_players_var_pop_order_by": { "steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -22807,7 +22799,7 @@ export default { }, "event_media_players_var_samp_order_by": { "steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -22823,7 +22815,7 @@ export default { }, "event_media_players_variance_order_by": { "steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -22832,10 +22824,10 @@ export default { "event_media_select_column": {}, "event_media_set_input": { "created_at": [ - 4499 + 4498 ], "event_id": [ - 4999 + 4998 ], "external_url": [ 80 @@ -22844,13 +22836,13 @@ export default { 80 ], "id": [ - 4999 + 4998 ], "mime_type": [ 80 ], "size": [ - 258 + 257 ], "thumbnail_filename": [ 80 @@ -22859,7 +22851,7 @@ export default { 80 ], "uploader_steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -22878,10 +22870,10 @@ export default { }, "event_media_stddev_order_by": { "size": [ - 2952 + 2951 ], "uploader_steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -22900,10 +22892,10 @@ export default { }, "event_media_stddev_pop_order_by": { "size": [ - 2952 + 2951 ], "uploader_steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -22922,10 +22914,10 @@ export default { }, "event_media_stddev_samp_order_by": { "size": [ - 2952 + 2951 ], "uploader_steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -22933,10 +22925,10 @@ export default { }, "event_media_stream_cursor_input": { "initial_value": [ - 1501 + 1500 ], "ordering": [ - 314 + 313 ], "__typename": [ 80 @@ -22944,10 +22936,10 @@ export default { }, "event_media_stream_cursor_value_input": { "created_at": [ - 4499 + 4498 ], "event_id": [ - 4999 + 4998 ], "external_url": [ 80 @@ -22956,13 +22948,13 @@ export default { 80 ], "id": [ - 4999 + 4998 ], "mime_type": [ 80 ], "size": [ - 258 + 257 ], "thumbnail_filename": [ 80 @@ -22971,7 +22963,7 @@ export default { 80 ], "uploader_steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -22979,10 +22971,10 @@ export default { }, "event_media_sum_fields": { "size": [ - 258 + 257 ], "uploader_steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -22990,10 +22982,10 @@ export default { }, "event_media_sum_order_by": { "size": [ - 2952 + 2951 ], "uploader_steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -23002,13 +22994,13 @@ export default { "event_media_update_column": {}, "event_media_updates": { "_inc": [ - 1440 + 1439 ], "_set": [ - 1493 + 1492 ], "where": [ - 1438 + 1437 ], "__typename": [ 80 @@ -23027,10 +23019,10 @@ export default { }, "event_media_var_pop_order_by": { "size": [ - 2952 + 2951 ], "uploader_steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -23049,10 +23041,10 @@ export default { }, "event_media_var_samp_order_by": { "size": [ - 2952 + 2951 ], "uploader_steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -23071,10 +23063,10 @@ export default { }, "event_media_variance_order_by": { "size": [ - 2952 + 2951 ], "uploader_steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -23082,19 +23074,19 @@ export default { }, "event_organizers": { "created_at": [ - 4499 + 4498 ], "event": [ - 1642 + 1641 ], "event_id": [ - 4999 + 4998 ], "organizer": [ - 3910 + 3909 ], "steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -23102,10 +23094,10 @@ export default { }, "event_organizers_aggregate": { "aggregate": [ - 1516 + 1515 ], "nodes": [ - 1512 + 1511 ], "__typename": [ 80 @@ -23113,7 +23105,7 @@ export default { }, "event_organizers_aggregate_bool_exp": { "count": [ - 1515 + 1514 ], "__typename": [ 80 @@ -23121,13 +23113,13 @@ export default { }, "event_organizers_aggregate_bool_exp_count": { "arguments": [ - 1533 + 1532 ], "distinct": [ 5 ], "filter": [ - 1521 + 1520 ], "predicate": [ 41 @@ -23138,13 +23130,13 @@ export default { }, "event_organizers_aggregate_fields": { "avg": [ - 1519 + 1518 ], "count": [ 40, { "columns": [ - 1533, + 1532, "[event_organizers_select_column!]" ], "distinct": [ @@ -23152,6 +23144,44 @@ export default { ] } ], + "max": [ + 1524 + ], + "min": [ + 1526 + ], + "stddev": [ + 1534 + ], + "stddev_pop": [ + 1536 + ], + "stddev_samp": [ + 1538 + ], + "sum": [ + 1542 + ], + "var_pop": [ + 1546 + ], + "var_samp": [ + 1548 + ], + "variance": [ + 1550 + ], + "__typename": [ + 80 + ] + }, + "event_organizers_aggregate_order_by": { + "avg": [ + 1519 + ], + "count": [ + 2951 + ], "max": [ 1525 ], @@ -23183,50 +23213,12 @@ export default { 80 ] }, - "event_organizers_aggregate_order_by": { - "avg": [ - 1520 - ], - "count": [ - 2952 - ], - "max": [ - 1526 - ], - "min": [ - 1528 - ], - "stddev": [ - 1536 - ], - "stddev_pop": [ - 1538 - ], - "stddev_samp": [ - 1540 - ], - "sum": [ - 1544 - ], - "var_pop": [ - 1548 - ], - "var_samp": [ - 1550 - ], - "variance": [ - 1552 - ], - "__typename": [ - 80 - ] - }, "event_organizers_arr_rel_insert_input": { "data": [ - 1524 + 1523 ], "on_conflict": [ - 1530 + 1529 ], "__typename": [ 80 @@ -23242,7 +23234,7 @@ export default { }, "event_organizers_avg_order_by": { "steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -23250,28 +23242,28 @@ export default { }, "event_organizers_bool_exp": { "_and": [ - 1521 + 1520 ], "_not": [ - 1521 + 1520 ], "_or": [ - 1521 + 1520 ], "created_at": [ - 4500 + 4499 ], "event": [ - 1646 + 1645 ], "event_id": [ - 5001 + 5000 ], "organizer": [ - 3914 + 3913 ], "steam_id": [ - 260 + 259 ], "__typename": [ 80 @@ -23280,7 +23272,7 @@ export default { "event_organizers_constraint": {}, "event_organizers_inc_input": { "steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -23288,19 +23280,19 @@ export default { }, "event_organizers_insert_input": { "created_at": [ - 4499 + 4498 ], "event": [ - 1653 + 1652 ], "event_id": [ - 4999 + 4998 ], "organizer": [ - 3921 + 3920 ], "steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -23308,13 +23300,13 @@ export default { }, "event_organizers_max_fields": { "created_at": [ - 4499 + 4498 ], "event_id": [ - 4999 + 4998 ], "steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -23322,13 +23314,13 @@ export default { }, "event_organizers_max_order_by": { "created_at": [ - 2952 + 2951 ], "event_id": [ - 2952 + 2951 ], "steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -23336,13 +23328,13 @@ export default { }, "event_organizers_min_fields": { "created_at": [ - 4499 + 4498 ], "event_id": [ - 4999 + 4998 ], "steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -23350,13 +23342,13 @@ export default { }, "event_organizers_min_order_by": { "created_at": [ - 2952 + 2951 ], "event_id": [ - 2952 + 2951 ], "steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -23367,7 +23359,7 @@ export default { 40 ], "returning": [ - 1512 + 1511 ], "__typename": [ 80 @@ -23375,13 +23367,13 @@ export default { }, "event_organizers_on_conflict": { "constraint": [ - 1522 + 1521 ], "update_columns": [ - 1545 + 1544 ], "where": [ - 1521 + 1520 ], "__typename": [ 80 @@ -23389,19 +23381,19 @@ export default { }, "event_organizers_order_by": { "created_at": [ - 2952 + 2951 ], "event": [ - 1655 + 1654 ], "event_id": [ - 2952 + 2951 ], "organizer": [ - 3923 + 3922 ], "steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -23409,10 +23401,10 @@ export default { }, "event_organizers_pk_columns_input": { "event_id": [ - 4999 + 4998 ], "steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -23421,13 +23413,13 @@ export default { "event_organizers_select_column": {}, "event_organizers_set_input": { "created_at": [ - 4499 + 4498 ], "event_id": [ - 4999 + 4998 ], "steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -23443,7 +23435,7 @@ export default { }, "event_organizers_stddev_order_by": { "steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -23459,7 +23451,7 @@ export default { }, "event_organizers_stddev_pop_order_by": { "steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -23475,7 +23467,7 @@ export default { }, "event_organizers_stddev_samp_order_by": { "steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -23483,10 +23475,10 @@ export default { }, "event_organizers_stream_cursor_input": { "initial_value": [ - 1542 + 1541 ], "ordering": [ - 314 + 313 ], "__typename": [ 80 @@ -23494,13 +23486,13 @@ export default { }, "event_organizers_stream_cursor_value_input": { "created_at": [ - 4499 + 4498 ], "event_id": [ - 4999 + 4998 ], "steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -23508,7 +23500,7 @@ export default { }, "event_organizers_sum_fields": { "steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -23516,7 +23508,7 @@ export default { }, "event_organizers_sum_order_by": { "steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -23525,13 +23517,13 @@ export default { "event_organizers_update_column": {}, "event_organizers_updates": { "_inc": [ - 1523 + 1522 ], "_set": [ - 1534 + 1533 ], "where": [ - 1521 + 1520 ], "__typename": [ 80 @@ -23547,7 +23539,7 @@ export default { }, "event_organizers_var_pop_order_by": { "steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -23563,7 +23555,7 @@ export default { }, "event_organizers_var_samp_order_by": { "steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -23579,7 +23571,7 @@ export default { }, "event_organizers_variance_order_by": { "steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -23587,19 +23579,19 @@ export default { }, "event_players": { "created_at": [ - 4499 + 4498 ], "event": [ - 1642 + 1641 ], "event_id": [ - 4999 + 4998 ], "player": [ - 3910 + 3909 ], "steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -23607,10 +23599,10 @@ export default { }, "event_players_aggregate": { "aggregate": [ - 1557 + 1556 ], "nodes": [ - 1553 + 1552 ], "__typename": [ 80 @@ -23618,7 +23610,7 @@ export default { }, "event_players_aggregate_bool_exp": { "count": [ - 1556 + 1555 ], "__typename": [ 80 @@ -23626,13 +23618,13 @@ export default { }, "event_players_aggregate_bool_exp_count": { "arguments": [ - 1574 + 1573 ], "distinct": [ 5 ], "filter": [ - 1562 + 1561 ], "predicate": [ 41 @@ -23643,13 +23635,13 @@ export default { }, "event_players_aggregate_fields": { "avg": [ - 1560 + 1559 ], "count": [ 40, { "columns": [ - 1574, + 1573, "[event_players_select_column!]" ], "distinct": [ @@ -23658,31 +23650,31 @@ export default { } ], "max": [ - 1566 + 1565 ], "min": [ - 1568 + 1567 ], "stddev": [ - 1576 + 1575 ], "stddev_pop": [ - 1578 + 1577 ], "stddev_samp": [ - 1580 + 1579 ], "sum": [ - 1584 + 1583 ], "var_pop": [ - 1588 + 1587 ], "var_samp": [ - 1590 + 1589 ], "variance": [ - 1592 + 1591 ], "__typename": [ 80 @@ -23690,37 +23682,37 @@ export default { }, "event_players_aggregate_order_by": { "avg": [ - 1561 + 1560 ], "count": [ - 2952 + 2951 ], "max": [ - 1567 + 1566 ], "min": [ - 1569 + 1568 ], "stddev": [ - 1577 + 1576 ], "stddev_pop": [ - 1579 + 1578 ], "stddev_samp": [ - 1581 + 1580 ], "sum": [ - 1585 + 1584 ], "var_pop": [ - 1589 + 1588 ], "var_samp": [ - 1591 + 1590 ], "variance": [ - 1593 + 1592 ], "__typename": [ 80 @@ -23728,10 +23720,10 @@ export default { }, "event_players_arr_rel_insert_input": { "data": [ - 1565 + 1564 ], "on_conflict": [ - 1571 + 1570 ], "__typename": [ 80 @@ -23747,7 +23739,7 @@ export default { }, "event_players_avg_order_by": { "steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -23755,28 +23747,28 @@ export default { }, "event_players_bool_exp": { "_and": [ - 1562 + 1561 ], "_not": [ - 1562 + 1561 ], "_or": [ - 1562 + 1561 ], "created_at": [ - 4500 + 4499 ], "event": [ - 1646 + 1645 ], "event_id": [ - 5001 + 5000 ], "player": [ - 3914 + 3913 ], "steam_id": [ - 260 + 259 ], "__typename": [ 80 @@ -23785,7 +23777,7 @@ export default { "event_players_constraint": {}, "event_players_inc_input": { "steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -23793,19 +23785,19 @@ export default { }, "event_players_insert_input": { "created_at": [ - 4499 + 4498 ], "event": [ - 1653 + 1652 ], "event_id": [ - 4999 + 4998 ], "player": [ - 3921 + 3920 ], "steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -23813,13 +23805,13 @@ export default { }, "event_players_max_fields": { "created_at": [ - 4499 + 4498 ], "event_id": [ - 4999 + 4998 ], "steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -23827,13 +23819,13 @@ export default { }, "event_players_max_order_by": { "created_at": [ - 2952 + 2951 ], "event_id": [ - 2952 + 2951 ], "steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -23841,13 +23833,13 @@ export default { }, "event_players_min_fields": { "created_at": [ - 4499 + 4498 ], "event_id": [ - 4999 + 4998 ], "steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -23855,13 +23847,13 @@ export default { }, "event_players_min_order_by": { "created_at": [ - 2952 + 2951 ], "event_id": [ - 2952 + 2951 ], "steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -23872,7 +23864,7 @@ export default { 40 ], "returning": [ - 1553 + 1552 ], "__typename": [ 80 @@ -23880,13 +23872,13 @@ export default { }, "event_players_on_conflict": { "constraint": [ - 1563 + 1562 ], "update_columns": [ - 1586 + 1585 ], "where": [ - 1562 + 1561 ], "__typename": [ 80 @@ -23894,19 +23886,19 @@ export default { }, "event_players_order_by": { "created_at": [ - 2952 + 2951 ], "event": [ - 1655 + 1654 ], "event_id": [ - 2952 + 2951 ], "player": [ - 3923 + 3922 ], "steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -23914,10 +23906,10 @@ export default { }, "event_players_pk_columns_input": { "event_id": [ - 4999 + 4998 ], "steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -23926,13 +23918,13 @@ export default { "event_players_select_column": {}, "event_players_set_input": { "created_at": [ - 4499 + 4498 ], "event_id": [ - 4999 + 4998 ], "steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -23948,7 +23940,7 @@ export default { }, "event_players_stddev_order_by": { "steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -23964,7 +23956,7 @@ export default { }, "event_players_stddev_pop_order_by": { "steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -23980,7 +23972,7 @@ export default { }, "event_players_stddev_samp_order_by": { "steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -23988,10 +23980,10 @@ export default { }, "event_players_stream_cursor_input": { "initial_value": [ - 1583 + 1582 ], "ordering": [ - 314 + 313 ], "__typename": [ 80 @@ -23999,13 +23991,13 @@ export default { }, "event_players_stream_cursor_value_input": { "created_at": [ - 4499 + 4498 ], "event_id": [ - 4999 + 4998 ], "steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -24013,7 +24005,7 @@ export default { }, "event_players_sum_fields": { "steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -24021,7 +24013,7 @@ export default { }, "event_players_sum_order_by": { "steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -24030,13 +24022,13 @@ export default { "event_players_update_column": {}, "event_players_updates": { "_inc": [ - 1564 + 1563 ], "_set": [ - 1575 + 1574 ], "where": [ - 1562 + 1561 ], "__typename": [ 80 @@ -24052,7 +24044,7 @@ export default { }, "event_players_var_pop_order_by": { "steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -24068,7 +24060,7 @@ export default { }, "event_players_var_samp_order_by": { "steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -24084,7 +24076,7 @@ export default { }, "event_players_variance_order_by": { "steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -24092,19 +24084,19 @@ export default { }, "event_teams": { "created_at": [ - 4499 + 4498 ], "event": [ - 1642 + 1641 ], "event_id": [ - 4999 + 4998 ], "team": [ - 4452 + 4451 ], "team_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -24112,10 +24104,10 @@ export default { }, "event_teams_aggregate": { "aggregate": [ - 1598 + 1597 ], "nodes": [ - 1594 + 1593 ], "__typename": [ 80 @@ -24123,7 +24115,7 @@ export default { }, "event_teams_aggregate_bool_exp": { "count": [ - 1597 + 1596 ], "__typename": [ 80 @@ -24131,13 +24123,13 @@ export default { }, "event_teams_aggregate_bool_exp_count": { "arguments": [ - 1612 + 1611 ], "distinct": [ 5 ], "filter": [ - 1601 + 1600 ], "predicate": [ 41 @@ -24151,7 +24143,7 @@ export default { 40, { "columns": [ - 1612, + 1611, "[event_teams_select_column!]" ], "distinct": [ @@ -24160,10 +24152,10 @@ export default { } ], "max": [ - 1604 + 1603 ], "min": [ - 1606 + 1605 ], "__typename": [ 80 @@ -24171,13 +24163,13 @@ export default { }, "event_teams_aggregate_order_by": { "count": [ - 2952 + 2951 ], "max": [ - 1605 + 1604 ], "min": [ - 1607 + 1606 ], "__typename": [ 80 @@ -24185,10 +24177,10 @@ export default { }, "event_teams_arr_rel_insert_input": { "data": [ - 1603 + 1602 ], "on_conflict": [ - 1609 + 1608 ], "__typename": [ 80 @@ -24196,28 +24188,28 @@ export default { }, "event_teams_bool_exp": { "_and": [ - 1601 + 1600 ], "_not": [ - 1601 + 1600 ], "_or": [ - 1601 + 1600 ], "created_at": [ - 4500 + 4499 ], "event": [ - 1646 + 1645 ], "event_id": [ - 5001 + 5000 ], "team": [ - 4463 + 4462 ], "team_id": [ - 5001 + 5000 ], "__typename": [ 80 @@ -24226,19 +24218,19 @@ export default { "event_teams_constraint": {}, "event_teams_insert_input": { "created_at": [ - 4499 + 4498 ], "event": [ - 1653 + 1652 ], "event_id": [ - 4999 + 4998 ], "team": [ - 4472 + 4471 ], "team_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -24246,13 +24238,13 @@ export default { }, "event_teams_max_fields": { "created_at": [ - 4499 + 4498 ], "event_id": [ - 4999 + 4998 ], "team_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -24260,13 +24252,13 @@ export default { }, "event_teams_max_order_by": { "created_at": [ - 2952 + 2951 ], "event_id": [ - 2952 + 2951 ], "team_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -24274,13 +24266,13 @@ export default { }, "event_teams_min_fields": { "created_at": [ - 4499 + 4498 ], "event_id": [ - 4999 + 4998 ], "team_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -24288,13 +24280,13 @@ export default { }, "event_teams_min_order_by": { "created_at": [ - 2952 + 2951 ], "event_id": [ - 2952 + 2951 ], "team_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -24305,7 +24297,7 @@ export default { 40 ], "returning": [ - 1594 + 1593 ], "__typename": [ 80 @@ -24313,13 +24305,13 @@ export default { }, "event_teams_on_conflict": { "constraint": [ - 1602 + 1601 ], "update_columns": [ - 1616 + 1615 ], "where": [ - 1601 + 1600 ], "__typename": [ 80 @@ -24327,19 +24319,19 @@ export default { }, "event_teams_order_by": { "created_at": [ - 2952 + 2951 ], "event": [ - 1655 + 1654 ], "event_id": [ - 2952 + 2951 ], "team": [ - 4474 + 4473 ], "team_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -24347,10 +24339,10 @@ export default { }, "event_teams_pk_columns_input": { "event_id": [ - 4999 + 4998 ], "team_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -24359,13 +24351,13 @@ export default { "event_teams_select_column": {}, "event_teams_set_input": { "created_at": [ - 4499 + 4498 ], "event_id": [ - 4999 + 4998 ], "team_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -24373,10 +24365,10 @@ export default { }, "event_teams_stream_cursor_input": { "initial_value": [ - 1615 + 1614 ], "ordering": [ - 314 + 313 ], "__typename": [ 80 @@ -24384,13 +24376,13 @@ export default { }, "event_teams_stream_cursor_value_input": { "created_at": [ - 4499 + 4498 ], "event_id": [ - 4999 + 4998 ], "team_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -24399,10 +24391,10 @@ export default { "event_teams_update_column": {}, "event_teams_updates": { "_set": [ - 1613 + 1612 ], "where": [ - 1601 + 1600 ], "__typename": [ 80 @@ -24410,19 +24402,19 @@ export default { }, "event_tournaments": { "created_at": [ - 4499 + 4498 ], "event": [ - 1642 + 1641 ], "event_id": [ - 4999 + 4998 ], "tournament": [ - 4935 + 4934 ], "tournament_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -24430,10 +24422,10 @@ export default { }, "event_tournaments_aggregate": { "aggregate": [ - 1622 + 1621 ], "nodes": [ - 1618 + 1617 ], "__typename": [ 80 @@ -24441,7 +24433,7 @@ export default { }, "event_tournaments_aggregate_bool_exp": { "count": [ - 1621 + 1620 ], "__typename": [ 80 @@ -24449,13 +24441,13 @@ export default { }, "event_tournaments_aggregate_bool_exp_count": { "arguments": [ - 1636 + 1635 ], "distinct": [ 5 ], "filter": [ - 1625 + 1624 ], "predicate": [ 41 @@ -24469,7 +24461,7 @@ export default { 40, { "columns": [ - 1636, + 1635, "[event_tournaments_select_column!]" ], "distinct": [ @@ -24478,10 +24470,10 @@ export default { } ], "max": [ - 1628 + 1627 ], "min": [ - 1630 + 1629 ], "__typename": [ 80 @@ -24489,13 +24481,13 @@ export default { }, "event_tournaments_aggregate_order_by": { "count": [ - 2952 + 2951 ], "max": [ - 1629 + 1628 ], "min": [ - 1631 + 1630 ], "__typename": [ 80 @@ -24503,10 +24495,10 @@ export default { }, "event_tournaments_arr_rel_insert_input": { "data": [ - 1627 + 1626 ], "on_conflict": [ - 1633 + 1632 ], "__typename": [ 80 @@ -24514,28 +24506,28 @@ export default { }, "event_tournaments_bool_exp": { "_and": [ - 1625 + 1624 ], "_not": [ - 1625 + 1624 ], "_or": [ - 1625 + 1624 ], "created_at": [ - 4500 + 4499 ], "event": [ - 1646 + 1645 ], "event_id": [ - 5001 + 5000 ], "tournament": [ - 4956 + 4955 ], "tournament_id": [ - 5001 + 5000 ], "__typename": [ 80 @@ -24544,19 +24536,19 @@ export default { "event_tournaments_constraint": {}, "event_tournaments_insert_input": { "created_at": [ - 4499 + 4498 ], "event": [ - 1653 + 1652 ], "event_id": [ - 4999 + 4998 ], "tournament": [ - 4965 + 4964 ], "tournament_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -24564,13 +24556,13 @@ export default { }, "event_tournaments_max_fields": { "created_at": [ - 4499 + 4498 ], "event_id": [ - 4999 + 4998 ], "tournament_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -24578,13 +24570,13 @@ export default { }, "event_tournaments_max_order_by": { "created_at": [ - 2952 + 2951 ], "event_id": [ - 2952 + 2951 ], "tournament_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -24592,13 +24584,13 @@ export default { }, "event_tournaments_min_fields": { "created_at": [ - 4499 + 4498 ], "event_id": [ - 4999 + 4998 ], "tournament_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -24606,13 +24598,13 @@ export default { }, "event_tournaments_min_order_by": { "created_at": [ - 2952 + 2951 ], "event_id": [ - 2952 + 2951 ], "tournament_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -24623,7 +24615,7 @@ export default { 40 ], "returning": [ - 1618 + 1617 ], "__typename": [ 80 @@ -24631,13 +24623,13 @@ export default { }, "event_tournaments_on_conflict": { "constraint": [ - 1626 + 1625 ], "update_columns": [ - 1640 + 1639 ], "where": [ - 1625 + 1624 ], "__typename": [ 80 @@ -24645,19 +24637,19 @@ export default { }, "event_tournaments_order_by": { "created_at": [ - 2952 + 2951 ], "event": [ - 1655 + 1654 ], "event_id": [ - 2952 + 2951 ], "tournament": [ - 4967 + 4966 ], "tournament_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -24665,10 +24657,10 @@ export default { }, "event_tournaments_pk_columns_input": { "event_id": [ - 4999 + 4998 ], "tournament_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -24677,13 +24669,13 @@ export default { "event_tournaments_select_column": {}, "event_tournaments_set_input": { "created_at": [ - 4499 + 4498 ], "event_id": [ - 4999 + 4998 ], "tournament_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -24691,10 +24683,10 @@ export default { }, "event_tournaments_stream_cursor_input": { "initial_value": [ - 1639 + 1638 ], "ordering": [ - 314 + 313 ], "__typename": [ 80 @@ -24702,13 +24694,13 @@ export default { }, "event_tournaments_stream_cursor_value_input": { "created_at": [ - 4499 + 4498 ], "event_id": [ - 4999 + 4998 ], "tournament_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -24717,10 +24709,10 @@ export default { "event_tournaments_update_column": {}, "event_tournaments_updates": { "_set": [ - 1637 + 1636 ], "where": [ - 1625 + 1624 ], "__typename": [ 80 @@ -24728,10 +24720,10 @@ export default { }, "events": { "awards": [ - 189, + 188, { "distinct_on": [ - 210, + 209, "[award_recipients_select_column!]" ], "limit": [ @@ -24741,19 +24733,19 @@ export default { 40 ], "order_by": [ - 208, + 207, "[award_recipients_order_by!]" ], "where": [ - 198 + 197 ] } ], "awards_aggregate": [ - 190, + 189, { "distinct_on": [ - 210, + 209, "[award_recipients_select_column!]" ], "limit": [ @@ -24763,19 +24755,19 @@ export default { 40 ], "order_by": [ - 208, + 207, "[award_recipients_order_by!]" ], "where": [ - 198 + 197 ] } ], "banner": [ - 1429 + 1428 ], "banner_media_id": [ - 4999 + 4998 ], "can_upload_media": [ 5 @@ -24784,28 +24776,28 @@ export default { 5 ], "created_at": [ - 4499 + 4498 ], "description": [ 80 ], "ends_at": [ - 4499 + 4498 ], "hide_creator_organizer": [ 5 ], "id": [ - 4999 + 4998 ], "is_organizer": [ 5 ], "media": [ - 1429, + 1428, { "distinct_on": [ - 1492, + 1491, "[event_media_select_column!]" ], "limit": [ @@ -24815,22 +24807,22 @@ export default { 40 ], "order_by": [ - 1449, + 1448, "[event_media_order_by!]" ], "where": [ - 1438 + 1437 ] } ], "media_access": [ - 680 + 679 ], "media_aggregate": [ - 1430, + 1429, { "distinct_on": [ - 1492, + 1491, "[event_media_select_column!]" ], "limit": [ @@ -24840,11 +24832,11 @@ export default { 40 ], "order_by": [ - 1449, + 1448, "[event_media_order_by!]" ], "where": [ - 1438 + 1437 ] } ], @@ -24852,16 +24844,16 @@ export default { 80 ], "organizer": [ - 3910 + 3909 ], "organizer_steam_id": [ - 258 + 257 ], "organizers": [ - 1512, + 1511, { "distinct_on": [ - 1533, + 1532, "[event_organizers_select_column!]" ], "limit": [ @@ -24871,19 +24863,19 @@ export default { 40 ], "order_by": [ - 1531, + 1530, "[event_organizers_order_by!]" ], "where": [ - 1521 + 1520 ] } ], "organizers_aggregate": [ - 1513, + 1512, { "distinct_on": [ - 1533, + 1532, "[event_organizers_select_column!]" ], "limit": [ @@ -24893,19 +24885,19 @@ export default { 40 ], "order_by": [ - 1531, + 1530, "[event_organizers_order_by!]" ], "where": [ - 1521 + 1520 ] } ], "player_stats": [ - 5002, + 5001, { "distinct_on": [ - 5028, + 5027, "[v_event_player_stats_select_column!]" ], "limit": [ @@ -24915,19 +24907,19 @@ export default { 40 ], "order_by": [ - 5027, + 5026, "[v_event_player_stats_order_by!]" ], "where": [ - 5021 + 5020 ] } ], "player_stats_aggregate": [ - 5003, + 5002, { "distinct_on": [ - 5028, + 5027, "[v_event_player_stats_select_column!]" ], "limit": [ @@ -24937,19 +24929,19 @@ export default { 40 ], "order_by": [ - 5027, + 5026, "[v_event_player_stats_order_by!]" ], "where": [ - 5021 + 5020 ] } ], "players": [ - 1553, + 1552, { "distinct_on": [ - 1574, + 1573, "[event_players_select_column!]" ], "limit": [ @@ -24959,19 +24951,19 @@ export default { 40 ], "order_by": [ - 1572, + 1571, "[event_players_order_by!]" ], "where": [ - 1562 + 1561 ] } ], "players_aggregate": [ - 1554, + 1553, { "distinct_on": [ - 1574, + 1573, "[event_players_select_column!]" ], "limit": [ @@ -24981,22 +24973,22 @@ export default { 40 ], "order_by": [ - 1572, + 1571, "[event_players_order_by!]" ], "where": [ - 1562 + 1561 ] } ], "starts_at": [ - 4499 + 4498 ], "teams": [ - 1594, + 1593, { "distinct_on": [ - 1612, + 1611, "[event_teams_select_column!]" ], "limit": [ @@ -25006,19 +24998,19 @@ export default { 40 ], "order_by": [ - 1610, + 1609, "[event_teams_order_by!]" ], "where": [ - 1601 + 1600 ] } ], "teams_aggregate": [ - 1595, + 1594, { "distinct_on": [ - 1612, + 1611, "[event_teams_select_column!]" ], "limit": [ @@ -25028,19 +25020,19 @@ export default { 40 ], "order_by": [ - 1610, + 1609, "[event_teams_order_by!]" ], "where": [ - 1601 + 1600 ] } ], "tournaments": [ - 1618, + 1617, { "distinct_on": [ - 1636, + 1635, "[event_tournaments_select_column!]" ], "limit": [ @@ -25050,19 +25042,19 @@ export default { 40 ], "order_by": [ - 1634, + 1633, "[event_tournaments_order_by!]" ], "where": [ - 1625 + 1624 ] } ], "tournaments_aggregate": [ - 1619, + 1618, { "distinct_on": [ - 1636, + 1635, "[event_tournaments_select_column!]" ], "limit": [ @@ -25072,16 +25064,16 @@ export default { 40 ], "order_by": [ - 1634, + 1633, "[event_tournaments_order_by!]" ], "where": [ - 1625 + 1624 ] } ], "visibility": [ - 700 + 699 ], "__typename": [ 80 @@ -25089,10 +25081,10 @@ export default { }, "events_aggregate": { "aggregate": [ - 1644 + 1643 ], "nodes": [ - 1642 + 1641 ], "__typename": [ 80 @@ -25100,13 +25092,13 @@ export default { }, "events_aggregate_fields": { "avg": [ - 1645 + 1644 ], "count": [ 40, { "columns": [ - 1657, + 1656, "[events_select_column!]" ], "distinct": [ @@ -25115,31 +25107,31 @@ export default { } ], "max": [ - 1650 + 1649 ], "min": [ - 1651 + 1650 ], "stddev": [ - 1659 + 1658 ], "stddev_pop": [ - 1660 + 1659 ], "stddev_samp": [ - 1661 + 1660 ], "sum": [ - 1664 + 1663 ], "var_pop": [ - 1667 + 1666 ], "var_samp": [ - 1668 + 1667 ], "variance": [ - 1669 + 1668 ], "__typename": [ 80 @@ -25155,25 +25147,25 @@ export default { }, "events_bool_exp": { "_and": [ - 1646 + 1645 ], "_not": [ - 1646 + 1645 ], "_or": [ - 1646 + 1645 ], "awards": [ - 198 + 197 ], "awards_aggregate": [ - 191 + 190 ], "banner": [ - 1438 + 1437 ], "banner_media_id": [ - 5001 + 5000 ], "can_upload_media": [ 6 @@ -25182,76 +25174,76 @@ export default { 6 ], "created_at": [ - 4500 + 4499 ], "description": [ 82 ], "ends_at": [ - 4500 + 4499 ], "hide_creator_organizer": [ 6 ], "id": [ - 5001 + 5000 ], "is_organizer": [ 6 ], "media": [ - 1438 + 1437 ], "media_access": [ - 681 + 680 ], "media_aggregate": [ - 1431 + 1430 ], "name": [ 82 ], "organizer": [ - 3914 + 3913 ], "organizer_steam_id": [ - 260 + 259 ], "organizers": [ - 1521 + 1520 ], "organizers_aggregate": [ - 1514 + 1513 ], "player_stats": [ - 5021 + 5020 ], "player_stats_aggregate": [ - 5004 + 5003 ], "players": [ - 1562 + 1561 ], "players_aggregate": [ - 1555 + 1554 ], "starts_at": [ - 4500 + 4499 ], "teams": [ - 1601 + 1600 ], "teams_aggregate": [ - 1596 + 1595 ], "tournaments": [ - 1625 + 1624 ], "tournaments_aggregate": [ - 1620 + 1619 ], "visibility": [ - 701 + 700 ], "__typename": [ 80 @@ -25260,7 +25252,7 @@ export default { "events_constraint": {}, "events_inc_input": { "organizer_steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -25268,64 +25260,64 @@ export default { }, "events_insert_input": { "awards": [ - 195 + 194 ], "banner": [ - 1447 + 1446 ], "banner_media_id": [ - 4999 + 4998 ], "created_at": [ - 4499 + 4498 ], "description": [ 80 ], "ends_at": [ - 4499 + 4498 ], "hide_creator_organizer": [ 5 ], "id": [ - 4999 + 4998 ], "media": [ - 1435 + 1434 ], "media_access": [ - 680 + 679 ], "name": [ 80 ], "organizer": [ - 3921 + 3920 ], "organizer_steam_id": [ - 258 + 257 ], "organizers": [ - 1518 + 1517 ], "player_stats": [ - 5018 + 5017 ], "players": [ - 1559 + 1558 ], "starts_at": [ - 4499 + 4498 ], "teams": [ - 1600 + 1599 ], "tournaments": [ - 1624 + 1623 ], "visibility": [ - 700 + 699 ], "__typename": [ 80 @@ -25333,28 +25325,28 @@ export default { }, "events_max_fields": { "banner_media_id": [ - 4999 + 4998 ], "created_at": [ - 4499 + 4498 ], "description": [ 80 ], "ends_at": [ - 4499 + 4498 ], "id": [ - 4999 + 4998 ], "name": [ 80 ], "organizer_steam_id": [ - 258 + 257 ], "starts_at": [ - 4499 + 4498 ], "__typename": [ 80 @@ -25362,28 +25354,28 @@ export default { }, "events_min_fields": { "banner_media_id": [ - 4999 + 4998 ], "created_at": [ - 4499 + 4498 ], "description": [ 80 ], "ends_at": [ - 4499 + 4498 ], "id": [ - 4999 + 4998 ], "name": [ 80 ], "organizer_steam_id": [ - 258 + 257 ], "starts_at": [ - 4499 + 4498 ], "__typename": [ 80 @@ -25394,7 +25386,7 @@ export default { 40 ], "returning": [ - 1642 + 1641 ], "__typename": [ 80 @@ -25402,10 +25394,10 @@ export default { }, "events_obj_rel_insert_input": { "data": [ - 1649 + 1648 ], "on_conflict": [ - 1654 + 1653 ], "__typename": [ 80 @@ -25413,13 +25405,13 @@ export default { }, "events_on_conflict": { "constraint": [ - 1647 + 1646 ], "update_columns": [ - 1665 + 1664 ], "where": [ - 1646 + 1645 ], "__typename": [ 80 @@ -25427,73 +25419,73 @@ export default { }, "events_order_by": { "awards_aggregate": [ - 194 + 193 ], "banner": [ - 1449 + 1448 ], "banner_media_id": [ - 2952 + 2951 ], "can_upload_media": [ - 2952 + 2951 ], "can_view": [ - 2952 + 2951 ], "created_at": [ - 2952 + 2951 ], "description": [ - 2952 + 2951 ], "ends_at": [ - 2952 + 2951 ], "hide_creator_organizer": [ - 2952 + 2951 ], "id": [ - 2952 + 2951 ], "is_organizer": [ - 2952 + 2951 ], "media_access": [ - 2952 + 2951 ], "media_aggregate": [ - 1434 + 1433 ], "name": [ - 2952 + 2951 ], "organizer": [ - 3923 + 3922 ], "organizer_steam_id": [ - 2952 + 2951 ], "organizers_aggregate": [ - 1517 + 1516 ], "player_stats_aggregate": [ - 5017 + 5016 ], "players_aggregate": [ - 1558 + 1557 ], "starts_at": [ - 2952 + 2951 ], "teams_aggregate": [ - 1599 + 1598 ], "tournaments_aggregate": [ - 1623 + 1622 ], "visibility": [ - 2952 + 2951 ], "__typename": [ 80 @@ -25501,7 +25493,7 @@ export default { }, "events_pk_columns_input": { "id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -25510,37 +25502,37 @@ export default { "events_select_column": {}, "events_set_input": { "banner_media_id": [ - 4999 + 4998 ], "created_at": [ - 4499 + 4498 ], "description": [ 80 ], "ends_at": [ - 4499 + 4498 ], "hide_creator_organizer": [ 5 ], "id": [ - 4999 + 4998 ], "media_access": [ - 680 + 679 ], "name": [ 80 ], "organizer_steam_id": [ - 258 + 257 ], "starts_at": [ - 4499 + 4498 ], "visibility": [ - 700 + 699 ], "__typename": [ 80 @@ -25572,10 +25564,10 @@ export default { }, "events_stream_cursor_input": { "initial_value": [ - 1663 + 1662 ], "ordering": [ - 314 + 313 ], "__typename": [ 80 @@ -25583,37 +25575,37 @@ export default { }, "events_stream_cursor_value_input": { "banner_media_id": [ - 4999 + 4998 ], "created_at": [ - 4499 + 4498 ], "description": [ 80 ], "ends_at": [ - 4499 + 4498 ], "hide_creator_organizer": [ 5 ], "id": [ - 4999 + 4998 ], "media_access": [ - 680 + 679 ], "name": [ 80 ], "organizer_steam_id": [ - 258 + 257 ], "starts_at": [ - 4499 + 4498 ], "visibility": [ - 700 + 699 ], "__typename": [ 80 @@ -25621,7 +25613,7 @@ export default { }, "events_sum_fields": { "organizer_steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -25630,13 +25622,13 @@ export default { "events_update_column": {}, "events_updates": { "_inc": [ - 1648 + 1647 ], "_set": [ - 1658 + 1657 ], "where": [ - 1646 + 1645 ], "__typename": [ 80 @@ -25669,31 +25661,31 @@ export default { "float8": {}, "float8_comparison_exp": { "_eq": [ - 1670 + 1669 ], "_gt": [ - 1670 + 1669 ], "_gte": [ - 1670 + 1669 ], "_in": [ - 1670 + 1669 ], "_is_null": [ 5 ], "_lt": [ - 1670 + 1669 ], "_lte": [ - 1670 + 1669 ], "_neq": [ - 1670 + 1669 ], "_nin": [ - 1670 + 1669 ], "__typename": [ 80 @@ -25701,16 +25693,16 @@ export default { }, "friends": { "e_status": [ - 715 + 714 ], "other_player_steam_id": [ - 258 + 257 ], "player_steam_id": [ - 258 + 257 ], "status": [ - 720 + 719 ], "__typename": [ 80 @@ -25718,10 +25710,10 @@ export default { }, "friends_aggregate": { "aggregate": [ - 1674 + 1673 ], "nodes": [ - 1672 + 1671 ], "__typename": [ 80 @@ -25729,13 +25721,13 @@ export default { }, "friends_aggregate_fields": { "avg": [ - 1675 + 1674 ], "count": [ 40, { "columns": [ - 1686, + 1685, "[friends_select_column!]" ], "distinct": [ @@ -25744,31 +25736,31 @@ export default { } ], "max": [ - 1680 + 1679 ], "min": [ - 1681 + 1680 ], "stddev": [ - 1688 + 1687 ], "stddev_pop": [ - 1689 + 1688 ], "stddev_samp": [ - 1690 + 1689 ], "sum": [ - 1693 + 1692 ], "var_pop": [ - 1696 + 1695 ], "var_samp": [ - 1697 + 1696 ], "variance": [ - 1698 + 1697 ], "__typename": [ 80 @@ -25787,25 +25779,25 @@ export default { }, "friends_bool_exp": { "_and": [ - 1676 + 1675 ], "_not": [ - 1676 + 1675 ], "_or": [ - 1676 + 1675 ], "e_status": [ - 718 + 717 ], "other_player_steam_id": [ - 260 + 259 ], "player_steam_id": [ - 260 + 259 ], "status": [ - 721 + 720 ], "__typename": [ 80 @@ -25814,10 +25806,10 @@ export default { "friends_constraint": {}, "friends_inc_input": { "other_player_steam_id": [ - 258 + 257 ], "player_steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -25825,16 +25817,16 @@ export default { }, "friends_insert_input": { "e_status": [ - 726 + 725 ], "other_player_steam_id": [ - 258 + 257 ], "player_steam_id": [ - 258 + 257 ], "status": [ - 720 + 719 ], "__typename": [ 80 @@ -25842,10 +25834,10 @@ export default { }, "friends_max_fields": { "other_player_steam_id": [ - 258 + 257 ], "player_steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -25853,10 +25845,10 @@ export default { }, "friends_min_fields": { "other_player_steam_id": [ - 258 + 257 ], "player_steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -25867,7 +25859,7 @@ export default { 40 ], "returning": [ - 1672 + 1671 ], "__typename": [ 80 @@ -25875,13 +25867,13 @@ export default { }, "friends_on_conflict": { "constraint": [ - 1677 + 1676 ], "update_columns": [ - 1694 + 1693 ], "where": [ - 1676 + 1675 ], "__typename": [ 80 @@ -25889,16 +25881,16 @@ export default { }, "friends_order_by": { "e_status": [ - 728 + 727 ], "other_player_steam_id": [ - 2952 + 2951 ], "player_steam_id": [ - 2952 + 2951 ], "status": [ - 2952 + 2951 ], "__typename": [ 80 @@ -25906,10 +25898,10 @@ export default { }, "friends_pk_columns_input": { "other_player_steam_id": [ - 258 + 257 ], "player_steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -25918,13 +25910,13 @@ export default { "friends_select_column": {}, "friends_set_input": { "other_player_steam_id": [ - 258 + 257 ], "player_steam_id": [ - 258 + 257 ], "status": [ - 720 + 719 ], "__typename": [ 80 @@ -25965,10 +25957,10 @@ export default { }, "friends_stream_cursor_input": { "initial_value": [ - 1692 + 1691 ], "ordering": [ - 314 + 313 ], "__typename": [ 80 @@ -25976,13 +25968,13 @@ export default { }, "friends_stream_cursor_value_input": { "other_player_steam_id": [ - 258 + 257 ], "player_steam_id": [ - 258 + 257 ], "status": [ - 720 + 719 ], "__typename": [ 80 @@ -25990,10 +25982,10 @@ export default { }, "friends_sum_fields": { "other_player_steam_id": [ - 258 + 257 ], "player_steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -26002,13 +25994,13 @@ export default { "friends_update_column": {}, "friends_updates": { "_inc": [ - 1678 + 1677 ], "_set": [ - 1687 + 1686 ], "where": [ - 1676 + 1675 ], "__typename": [ 80 @@ -26058,7 +26050,7 @@ export default { 40 ], "cpu_frequency_info": [ - 1823, + 1822, { "path": [ 80 @@ -26066,7 +26058,7 @@ export default { } ], "cpu_governor_info": [ - 1823, + 1822, { "path": [ 80 @@ -26080,7 +26072,7 @@ export default { 40 ], "cpu_warnings": [ - 1823, + 1822, { "path": [ 80 @@ -26088,7 +26080,7 @@ export default { } ], "cs2_launch_options": [ - 1823, + 1822, { "path": [ 80 @@ -26096,7 +26088,7 @@ export default { } ], "cs2_video_settings": [ - 1823, + 1822, { "path": [ 80 @@ -26116,10 +26108,10 @@ export default { 40 ], "e_region": [ - 3997 + 3996 ], "e_status": [ - 756 + 755 ], "enabled": [ 5 @@ -26137,7 +26129,7 @@ export default { 5 ], "gpu_info": [ - 1823, + 1822, { "path": [ 80 @@ -26157,13 +26149,13 @@ export default { 80 ], "lan_ip": [ - 1819 + 1818 ], "node_ip": [ - 1819 + 1818 ], "offline_at": [ - 4499 + 4498 ], "pin_build_id": [ 40 @@ -26175,22 +26167,22 @@ export default { 80 ], "pinned_version": [ - 1750 + 1749 ], "plugin_supported": [ 5 ], "public_ip": [ - 1819 + 1818 ], "region": [ 80 ], "servers": [ - 4024, + 4023, { "distinct_on": [ - 4048, + 4047, "[servers_select_column!]" ], "limit": [ @@ -26200,19 +26192,19 @@ export default { 40 ], "order_by": [ - 4046, + 4045, "[servers_order_by!]" ], "where": [ - 4035 + 4034 ] } ], "servers_aggregate": [ - 4025, + 4024, { "distinct_on": [ - 4048, + 4047, "[servers_select_column!]" ], "limit": [ @@ -26222,16 +26214,16 @@ export default { 40 ], "order_by": [ - 4046, + 4045, "[servers_order_by!]" ], "where": [ - 4035 + 4034 ] } ], "shader_bake_progress": [ - 2950 + 2949 ], "shader_bake_progress_stage": [ 80 @@ -26240,7 +26232,7 @@ export default { 80 ], "shader_bake_status_history": [ - 1823, + 1822, { "path": [ 80 @@ -26251,7 +26243,7 @@ export default { 40 ], "status": [ - 761 + 760 ], "supports_cpu_pinning": [ 5 @@ -26269,7 +26261,7 @@ export default { 80 ], "version": [ - 1750 + 1749 ], "__typename": [ 80 @@ -26277,10 +26269,10 @@ export default { }, "game_server_nodes_aggregate": { "aggregate": [ - 1705 + 1704 ], "nodes": [ - 1699 + 1698 ], "__typename": [ 80 @@ -26288,13 +26280,13 @@ export default { }, "game_server_nodes_aggregate_bool_exp": { "bool_and": [ - 1702 + 1701 ], "bool_or": [ - 1703 + 1702 ], "count": [ - 1704 + 1703 ], "__typename": [ 80 @@ -26302,13 +26294,13 @@ export default { }, "game_server_nodes_aggregate_bool_exp_bool_and": { "arguments": [ - 1729 + 1728 ], "distinct": [ 5 ], "filter": [ - 1711 + 1710 ], "predicate": [ 6 @@ -26319,13 +26311,13 @@ export default { }, "game_server_nodes_aggregate_bool_exp_bool_or": { "arguments": [ - 1730 + 1729 ], "distinct": [ 5 ], "filter": [ - 1711 + 1710 ], "predicate": [ 6 @@ -26336,13 +26328,13 @@ export default { }, "game_server_nodes_aggregate_bool_exp_count": { "arguments": [ - 1728 + 1727 ], "distinct": [ 5 ], "filter": [ - 1711 + 1710 ], "predicate": [ 41 @@ -26353,13 +26345,13 @@ export default { }, "game_server_nodes_aggregate_fields": { "avg": [ - 1709 + 1708 ], "count": [ 40, { "columns": [ - 1728, + 1727, "[game_server_nodes_select_column!]" ], "distinct": [ @@ -26368,31 +26360,31 @@ export default { } ], "max": [ - 1718 + 1717 ], "min": [ - 1720 + 1719 ], "stddev": [ - 1732 + 1731 ], "stddev_pop": [ - 1734 + 1733 ], "stddev_samp": [ - 1736 + 1735 ], "sum": [ - 1740 + 1739 ], "var_pop": [ - 1744 + 1743 ], "var_samp": [ - 1746 + 1745 ], "variance": [ - 1748 + 1747 ], "__typename": [ 80 @@ -26400,37 +26392,37 @@ export default { }, "game_server_nodes_aggregate_order_by": { "avg": [ - 1710 + 1709 ], "count": [ - 2952 + 2951 ], "max": [ - 1719 + 1718 ], "min": [ - 1721 + 1720 ], "stddev": [ - 1733 + 1732 ], "stddev_pop": [ - 1735 + 1734 ], "stddev_samp": [ - 1737 + 1736 ], "sum": [ - 1741 + 1740 ], "var_pop": [ - 1745 + 1744 ], "var_samp": [ - 1747 + 1746 ], "variance": [ - 1749 + 1748 ], "__typename": [ 80 @@ -26438,25 +26430,25 @@ export default { }, "game_server_nodes_append_input": { "cpu_frequency_info": [ - 1823 + 1822 ], "cpu_governor_info": [ - 1823 + 1822 ], "cpu_warnings": [ - 1823 + 1822 ], "cs2_launch_options": [ - 1823 + 1822 ], "cs2_video_settings": [ - 1823 + 1822 ], "gpu_info": [ - 1823 + 1822 ], "shader_bake_status_history": [ - 1823 + 1822 ], "__typename": [ 80 @@ -26464,10 +26456,10 @@ export default { }, "game_server_nodes_arr_rel_insert_input": { "data": [ - 1717 + 1716 ], "on_conflict": [ - 1724 + 1723 ], "__typename": [ 80 @@ -26522,40 +26514,40 @@ export default { }, "game_server_nodes_avg_order_by": { "build_id": [ - 2952 + 2951 ], "cpu_cores_per_socket": [ - 2952 + 2951 ], "cpu_sockets": [ - 2952 + 2951 ], "cpu_threads_per_core": [ - 2952 + 2951 ], "csgo_build_id": [ - 2952 + 2951 ], "demo_network_limiter": [ - 2952 + 2951 ], "disk_available_gb": [ - 2952 + 2951 ], "disk_used_percent": [ - 2952 + 2951 ], "end_port_range": [ - 2952 + 2951 ], "pin_build_id": [ - 2952 + 2951 ], "shader_bake_progress": [ - 2952 + 2951 ], "start_port_range": [ - 2952 + 2951 ], "__typename": [ 80 @@ -26563,13 +26555,13 @@ export default { }, "game_server_nodes_bool_exp": { "_and": [ - 1711 + 1710 ], "_not": [ - 1711 + 1710 ], "_or": [ - 1711 + 1710 ], "available_server_count": [ 41 @@ -26581,10 +26573,10 @@ export default { 41 ], "cpu_frequency_info": [ - 1825 + 1824 ], "cpu_governor_info": [ - 1825 + 1824 ], "cpu_sockets": [ 41 @@ -26593,13 +26585,13 @@ export default { 41 ], "cpu_warnings": [ - 1825 + 1824 ], "cs2_launch_options": [ - 1825 + 1824 ], "cs2_video_settings": [ - 1825 + 1824 ], "csgo_build_id": [ 41 @@ -26614,10 +26606,10 @@ export default { 41 ], "e_region": [ - 4001 + 4000 ], "e_status": [ - 759 + 758 ], "enabled": [ 6 @@ -26635,7 +26627,7 @@ export default { 6 ], "gpu_info": [ - 1825 + 1824 ], "gpu_rendering_enabled": [ 6 @@ -26650,13 +26642,13 @@ export default { 82 ], "lan_ip": [ - 1820 + 1819 ], "node_ip": [ - 1820 + 1819 ], "offline_at": [ - 4500 + 4499 ], "pin_build_id": [ 41 @@ -26668,25 +26660,25 @@ export default { 82 ], "pinned_version": [ - 1755 + 1754 ], "plugin_supported": [ 6 ], "public_ip": [ - 1820 + 1819 ], "region": [ 82 ], "servers": [ - 4035 + 4034 ], "servers_aggregate": [ - 4026 + 4025 ], "shader_bake_progress": [ - 2951 + 2950 ], "shader_bake_progress_stage": [ 82 @@ -26695,13 +26687,13 @@ export default { 82 ], "shader_bake_status_history": [ - 1825 + 1824 ], "start_port_range": [ 41 ], "status": [ - 762 + 761 ], "supports_cpu_pinning": [ 6 @@ -26719,7 +26711,7 @@ export default { 82 ], "version": [ - 1755 + 1754 ], "__typename": [ 80 @@ -26836,7 +26828,7 @@ export default { 40 ], "shader_bake_progress": [ - 2950 + 2949 ], "start_port_range": [ 40 @@ -26853,10 +26845,10 @@ export default { 40 ], "cpu_frequency_info": [ - 1823 + 1822 ], "cpu_governor_info": [ - 1823 + 1822 ], "cpu_sockets": [ 40 @@ -26865,13 +26857,13 @@ export default { 40 ], "cpu_warnings": [ - 1823 + 1822 ], "cs2_launch_options": [ - 1823 + 1822 ], "cs2_video_settings": [ - 1823 + 1822 ], "csgo_build_id": [ 40 @@ -26886,10 +26878,10 @@ export default { 40 ], "e_region": [ - 4007 + 4006 ], "e_status": [ - 767 + 766 ], "enabled": [ 5 @@ -26907,7 +26899,7 @@ export default { 5 ], "gpu_info": [ - 1823 + 1822 ], "gpu_rendering_enabled": [ 5 @@ -26922,13 +26914,13 @@ export default { 80 ], "lan_ip": [ - 1819 + 1818 ], "node_ip": [ - 1819 + 1818 ], "offline_at": [ - 4499 + 4498 ], "pin_build_id": [ 40 @@ -26940,19 +26932,19 @@ export default { 80 ], "pinned_version": [ - 1765 + 1764 ], "public_ip": [ - 1819 + 1818 ], "region": [ 80 ], "servers": [ - 4032 + 4031 ], "shader_bake_progress": [ - 2950 + 2949 ], "shader_bake_progress_stage": [ 80 @@ -26961,13 +26953,13 @@ export default { 80 ], "shader_bake_status_history": [ - 1823 + 1822 ], "start_port_range": [ 40 ], "status": [ - 761 + 760 ], "supports_cpu_pinning": [ 5 @@ -26982,7 +26974,7 @@ export default { 80 ], "version": [ - 1765 + 1764 ], "__typename": [ 80 @@ -27026,7 +27018,7 @@ export default { 80 ], "offline_at": [ - 4499 + 4498 ], "pin_build_id": [ 40 @@ -27041,7 +27033,7 @@ export default { 80 ], "shader_bake_progress": [ - 2950 + 2949 ], "shader_bake_progress_stage": [ 80 @@ -27067,70 +27059,70 @@ export default { }, "game_server_nodes_max_order_by": { "build_id": [ - 2952 + 2951 ], "cpu_cores_per_socket": [ - 2952 + 2951 ], "cpu_sockets": [ - 2952 + 2951 ], "cpu_threads_per_core": [ - 2952 + 2951 ], "csgo_build_id": [ - 2952 + 2951 ], "demo_network_limiter": [ - 2952 + 2951 ], "disk_available_gb": [ - 2952 + 2951 ], "disk_used_percent": [ - 2952 + 2951 ], "end_port_range": [ - 2952 + 2951 ], "id": [ - 2952 + 2951 ], "label": [ - 2952 + 2951 ], "offline_at": [ - 2952 + 2951 ], "pin_build_id": [ - 2952 + 2951 ], "pin_plugin_runtime": [ - 2952 + 2951 ], "pin_plugin_version": [ - 2952 + 2951 ], "region": [ - 2952 + 2951 ], "shader_bake_progress": [ - 2952 + 2951 ], "shader_bake_progress_stage": [ - 2952 + 2951 ], "shader_bake_status": [ - 2952 + 2951 ], "start_port_range": [ - 2952 + 2951 ], "token": [ - 2952 + 2951 ], "update_status": [ - 2952 + 2951 ], "__typename": [ 80 @@ -27174,7 +27166,7 @@ export default { 80 ], "offline_at": [ - 4499 + 4498 ], "pin_build_id": [ 40 @@ -27189,7 +27181,7 @@ export default { 80 ], "shader_bake_progress": [ - 2950 + 2949 ], "shader_bake_progress_stage": [ 80 @@ -27215,70 +27207,70 @@ export default { }, "game_server_nodes_min_order_by": { "build_id": [ - 2952 + 2951 ], "cpu_cores_per_socket": [ - 2952 + 2951 ], "cpu_sockets": [ - 2952 + 2951 ], "cpu_threads_per_core": [ - 2952 + 2951 ], "csgo_build_id": [ - 2952 + 2951 ], "demo_network_limiter": [ - 2952 + 2951 ], "disk_available_gb": [ - 2952 + 2951 ], "disk_used_percent": [ - 2952 + 2951 ], "end_port_range": [ - 2952 + 2951 ], "id": [ - 2952 + 2951 ], "label": [ - 2952 + 2951 ], "offline_at": [ - 2952 + 2951 ], "pin_build_id": [ - 2952 + 2951 ], "pin_plugin_runtime": [ - 2952 + 2951 ], "pin_plugin_version": [ - 2952 + 2951 ], "region": [ - 2952 + 2951 ], "shader_bake_progress": [ - 2952 + 2951 ], "shader_bake_progress_stage": [ - 2952 + 2951 ], "shader_bake_status": [ - 2952 + 2951 ], "start_port_range": [ - 2952 + 2951 ], "token": [ - 2952 + 2951 ], "update_status": [ - 2952 + 2951 ], "__typename": [ 80 @@ -27289,7 +27281,7 @@ export default { 40 ], "returning": [ - 1699 + 1698 ], "__typename": [ 80 @@ -27297,10 +27289,10 @@ export default { }, "game_server_nodes_obj_rel_insert_input": { "data": [ - 1717 + 1716 ], "on_conflict": [ - 1724 + 1723 ], "__typename": [ 80 @@ -27308,13 +27300,13 @@ export default { }, "game_server_nodes_on_conflict": { "constraint": [ - 1712 + 1711 ], "update_columns": [ - 1742 + 1741 ], "where": [ - 1711 + 1710 ], "__typename": [ 80 @@ -27322,151 +27314,151 @@ export default { }, "game_server_nodes_order_by": { "available_server_count": [ - 2952 + 2951 ], "build_id": [ - 2952 + 2951 ], "cpu_cores_per_socket": [ - 2952 + 2951 ], "cpu_frequency_info": [ - 2952 + 2951 ], "cpu_governor_info": [ - 2952 + 2951 ], "cpu_sockets": [ - 2952 + 2951 ], "cpu_threads_per_core": [ - 2952 + 2951 ], "cpu_warnings": [ - 2952 + 2951 ], "cs2_launch_options": [ - 2952 + 2951 ], "cs2_video_settings": [ - 2952 + 2951 ], "csgo_build_id": [ - 2952 + 2951 ], "demo_network_limiter": [ - 2952 + 2951 ], "disk_available_gb": [ - 2952 + 2951 ], "disk_used_percent": [ - 2952 + 2951 ], "e_region": [ - 4009 + 4008 ], "e_status": [ - 769 + 768 ], "enabled": [ - 2952 + 2951 ], "enabled_for_match_making": [ - 2952 + 2951 ], "end_port_range": [ - 2952 + 2951 ], "gpu": [ - 2952 + 2951 ], "gpu_demos_enabled": [ - 2952 + 2951 ], "gpu_info": [ - 2952 + 2951 ], "gpu_rendering_enabled": [ - 2952 + 2951 ], "gpu_streaming_enabled": [ - 2952 + 2951 ], "id": [ - 2952 + 2951 ], "label": [ - 2952 + 2951 ], "lan_ip": [ - 2952 + 2951 ], "node_ip": [ - 2952 + 2951 ], "offline_at": [ - 2952 + 2951 ], "pin_build_id": [ - 2952 + 2951 ], "pin_plugin_runtime": [ - 2952 + 2951 ], "pin_plugin_version": [ - 2952 + 2951 ], "pinned_version": [ - 1767 + 1766 ], "plugin_supported": [ - 2952 + 2951 ], "public_ip": [ - 2952 + 2951 ], "region": [ - 2952 + 2951 ], "servers_aggregate": [ - 4031 + 4030 ], "shader_bake_progress": [ - 2952 + 2951 ], "shader_bake_progress_stage": [ - 2952 + 2951 ], "shader_bake_status": [ - 2952 + 2951 ], "shader_bake_status_history": [ - 2952 + 2951 ], "start_port_range": [ - 2952 + 2951 ], "status": [ - 2952 + 2951 ], "supports_cpu_pinning": [ - 2952 + 2951 ], "supports_low_latency": [ - 2952 + 2951 ], "token": [ - 2952 + 2951 ], "total_server_count": [ - 2952 + 2951 ], "update_status": [ - 2952 + 2951 ], "version": [ - 1767 + 1766 ], "__typename": [ 80 @@ -27482,25 +27474,25 @@ export default { }, "game_server_nodes_prepend_input": { "cpu_frequency_info": [ - 1823 + 1822 ], "cpu_governor_info": [ - 1823 + 1822 ], "cpu_warnings": [ - 1823 + 1822 ], "cs2_launch_options": [ - 1823 + 1822 ], "cs2_video_settings": [ - 1823 + 1822 ], "gpu_info": [ - 1823 + 1822 ], "shader_bake_status_history": [ - 1823 + 1822 ], "__typename": [ 80 @@ -27517,10 +27509,10 @@ export default { 40 ], "cpu_frequency_info": [ - 1823 + 1822 ], "cpu_governor_info": [ - 1823 + 1822 ], "cpu_sockets": [ 40 @@ -27529,13 +27521,13 @@ export default { 40 ], "cpu_warnings": [ - 1823 + 1822 ], "cs2_launch_options": [ - 1823 + 1822 ], "cs2_video_settings": [ - 1823 + 1822 ], "csgo_build_id": [ 40 @@ -27565,7 +27557,7 @@ export default { 5 ], "gpu_info": [ - 1823 + 1822 ], "gpu_rendering_enabled": [ 5 @@ -27580,13 +27572,13 @@ export default { 80 ], "lan_ip": [ - 1819 + 1818 ], "node_ip": [ - 1819 + 1818 ], "offline_at": [ - 4499 + 4498 ], "pin_build_id": [ 40 @@ -27598,13 +27590,13 @@ export default { 80 ], "public_ip": [ - 1819 + 1818 ], "region": [ 80 ], "shader_bake_progress": [ - 2950 + 2949 ], "shader_bake_progress_stage": [ 80 @@ -27613,13 +27605,13 @@ export default { 80 ], "shader_bake_status_history": [ - 1823 + 1822 ], "start_port_range": [ 40 ], "status": [ - 761 + 760 ], "supports_cpu_pinning": [ 5 @@ -27686,40 +27678,40 @@ export default { }, "game_server_nodes_stddev_order_by": { "build_id": [ - 2952 + 2951 ], "cpu_cores_per_socket": [ - 2952 + 2951 ], "cpu_sockets": [ - 2952 + 2951 ], "cpu_threads_per_core": [ - 2952 + 2951 ], "csgo_build_id": [ - 2952 + 2951 ], "demo_network_limiter": [ - 2952 + 2951 ], "disk_available_gb": [ - 2952 + 2951 ], "disk_used_percent": [ - 2952 + 2951 ], "end_port_range": [ - 2952 + 2951 ], "pin_build_id": [ - 2952 + 2951 ], "shader_bake_progress": [ - 2952 + 2951 ], "start_port_range": [ - 2952 + 2951 ], "__typename": [ 80 @@ -27774,40 +27766,40 @@ export default { }, "game_server_nodes_stddev_pop_order_by": { "build_id": [ - 2952 + 2951 ], "cpu_cores_per_socket": [ - 2952 + 2951 ], "cpu_sockets": [ - 2952 + 2951 ], "cpu_threads_per_core": [ - 2952 + 2951 ], "csgo_build_id": [ - 2952 + 2951 ], "demo_network_limiter": [ - 2952 + 2951 ], "disk_available_gb": [ - 2952 + 2951 ], "disk_used_percent": [ - 2952 + 2951 ], "end_port_range": [ - 2952 + 2951 ], "pin_build_id": [ - 2952 + 2951 ], "shader_bake_progress": [ - 2952 + 2951 ], "start_port_range": [ - 2952 + 2951 ], "__typename": [ 80 @@ -27862,40 +27854,40 @@ export default { }, "game_server_nodes_stddev_samp_order_by": { "build_id": [ - 2952 + 2951 ], "cpu_cores_per_socket": [ - 2952 + 2951 ], "cpu_sockets": [ - 2952 + 2951 ], "cpu_threads_per_core": [ - 2952 + 2951 ], "csgo_build_id": [ - 2952 + 2951 ], "demo_network_limiter": [ - 2952 + 2951 ], "disk_available_gb": [ - 2952 + 2951 ], "disk_used_percent": [ - 2952 + 2951 ], "end_port_range": [ - 2952 + 2951 ], "pin_build_id": [ - 2952 + 2951 ], "shader_bake_progress": [ - 2952 + 2951 ], "start_port_range": [ - 2952 + 2951 ], "__typename": [ 80 @@ -27903,10 +27895,10 @@ export default { }, "game_server_nodes_stream_cursor_input": { "initial_value": [ - 1739 + 1738 ], "ordering": [ - 314 + 313 ], "__typename": [ 80 @@ -27920,10 +27912,10 @@ export default { 40 ], "cpu_frequency_info": [ - 1823 + 1822 ], "cpu_governor_info": [ - 1823 + 1822 ], "cpu_sockets": [ 40 @@ -27932,13 +27924,13 @@ export default { 40 ], "cpu_warnings": [ - 1823 + 1822 ], "cs2_launch_options": [ - 1823 + 1822 ], "cs2_video_settings": [ - 1823 + 1822 ], "csgo_build_id": [ 40 @@ -27968,7 +27960,7 @@ export default { 5 ], "gpu_info": [ - 1823 + 1822 ], "gpu_rendering_enabled": [ 5 @@ -27983,13 +27975,13 @@ export default { 80 ], "lan_ip": [ - 1819 + 1818 ], "node_ip": [ - 1819 + 1818 ], "offline_at": [ - 4499 + 4498 ], "pin_build_id": [ 40 @@ -28001,13 +27993,13 @@ export default { 80 ], "public_ip": [ - 1819 + 1818 ], "region": [ 80 ], "shader_bake_progress": [ - 2950 + 2949 ], "shader_bake_progress_stage": [ 80 @@ -28016,13 +28008,13 @@ export default { 80 ], "shader_bake_status_history": [ - 1823 + 1822 ], "start_port_range": [ 40 ], "status": [ - 761 + 760 ], "supports_cpu_pinning": [ 5 @@ -28075,7 +28067,7 @@ export default { 40 ], "shader_bake_progress": [ - 2950 + 2949 ], "start_port_range": [ 40 @@ -28089,40 +28081,40 @@ export default { }, "game_server_nodes_sum_order_by": { "build_id": [ - 2952 + 2951 ], "cpu_cores_per_socket": [ - 2952 + 2951 ], "cpu_sockets": [ - 2952 + 2951 ], "cpu_threads_per_core": [ - 2952 + 2951 ], "csgo_build_id": [ - 2952 + 2951 ], "demo_network_limiter": [ - 2952 + 2951 ], "disk_available_gb": [ - 2952 + 2951 ], "disk_used_percent": [ - 2952 + 2951 ], "end_port_range": [ - 2952 + 2951 ], "pin_build_id": [ - 2952 + 2951 ], "shader_bake_progress": [ - 2952 + 2951 ], "start_port_range": [ - 2952 + 2951 ], "__typename": [ 80 @@ -28131,28 +28123,28 @@ export default { "game_server_nodes_update_column": {}, "game_server_nodes_updates": { "_append": [ - 1707 + 1706 ], "_delete_at_path": [ - 1713 + 1712 ], "_delete_elem": [ - 1714 + 1713 ], "_delete_key": [ - 1715 + 1714 ], "_inc": [ - 1716 + 1715 ], "_prepend": [ - 1727 + 1726 ], "_set": [ - 1731 + 1730 ], "where": [ - 1711 + 1710 ], "__typename": [ 80 @@ -28207,40 +28199,40 @@ export default { }, "game_server_nodes_var_pop_order_by": { "build_id": [ - 2952 + 2951 ], "cpu_cores_per_socket": [ - 2952 + 2951 ], "cpu_sockets": [ - 2952 + 2951 ], "cpu_threads_per_core": [ - 2952 + 2951 ], "csgo_build_id": [ - 2952 + 2951 ], "demo_network_limiter": [ - 2952 + 2951 ], "disk_available_gb": [ - 2952 + 2951 ], "disk_used_percent": [ - 2952 + 2951 ], "end_port_range": [ - 2952 + 2951 ], "pin_build_id": [ - 2952 + 2951 ], "shader_bake_progress": [ - 2952 + 2951 ], "start_port_range": [ - 2952 + 2951 ], "__typename": [ 80 @@ -28295,40 +28287,40 @@ export default { }, "game_server_nodes_var_samp_order_by": { "build_id": [ - 2952 + 2951 ], "cpu_cores_per_socket": [ - 2952 + 2951 ], "cpu_sockets": [ - 2952 + 2951 ], "cpu_threads_per_core": [ - 2952 + 2951 ], "csgo_build_id": [ - 2952 + 2951 ], "demo_network_limiter": [ - 2952 + 2951 ], "disk_available_gb": [ - 2952 + 2951 ], "disk_used_percent": [ - 2952 + 2951 ], "end_port_range": [ - 2952 + 2951 ], "pin_build_id": [ - 2952 + 2951 ], "shader_bake_progress": [ - 2952 + 2951 ], "start_port_range": [ - 2952 + 2951 ], "__typename": [ 80 @@ -28383,40 +28375,40 @@ export default { }, "game_server_nodes_variance_order_by": { "build_id": [ - 2952 + 2951 ], "cpu_cores_per_socket": [ - 2952 + 2951 ], "cpu_sockets": [ - 2952 + 2951 ], "cpu_threads_per_core": [ - 2952 + 2951 ], "csgo_build_id": [ - 2952 + 2951 ], "demo_network_limiter": [ - 2952 + 2951 ], "disk_available_gb": [ - 2952 + 2951 ], "disk_used_percent": [ - 2952 + 2951 ], "end_port_range": [ - 2952 + 2951 ], "pin_build_id": [ - 2952 + 2951 ], "shader_bake_progress": [ - 2952 + 2951 ], "start_port_range": [ - 2952 + 2951 ], "__typename": [ 80 @@ -28436,7 +28428,7 @@ export default { 80 ], "downloads": [ - 1823, + 1822, { "path": [ 80 @@ -28444,7 +28436,7 @@ export default { } ], "updated_at": [ - 4499 + 4498 ], "version": [ 80 @@ -28455,10 +28447,10 @@ export default { }, "game_versions_aggregate": { "aggregate": [ - 1752 + 1751 ], "nodes": [ - 1750 + 1749 ], "__typename": [ 80 @@ -28466,13 +28458,13 @@ export default { }, "game_versions_aggregate_fields": { "avg": [ - 1754 + 1753 ], "count": [ 40, { "columns": [ - 1770, + 1769, "[game_versions_select_column!]" ], "distinct": [ @@ -28481,31 +28473,31 @@ export default { } ], "max": [ - 1762 + 1761 ], "min": [ - 1763 + 1762 ], "stddev": [ - 1772 + 1771 ], "stddev_pop": [ - 1773 + 1772 ], "stddev_samp": [ - 1774 + 1773 ], "sum": [ - 1777 + 1776 ], "var_pop": [ - 1780 + 1779 ], "var_samp": [ - 1781 + 1780 ], "variance": [ - 1782 + 1781 ], "__typename": [ 80 @@ -28513,7 +28505,7 @@ export default { }, "game_versions_append_input": { "downloads": [ - 1823 + 1822 ], "__typename": [ 80 @@ -28529,13 +28521,13 @@ export default { }, "game_versions_bool_exp": { "_and": [ - 1755 + 1754 ], "_not": [ - 1755 + 1754 ], "_or": [ - 1755 + 1754 ], "build_id": [ 41 @@ -28550,10 +28542,10 @@ export default { 82 ], "downloads": [ - 1825 + 1824 ], "updated_at": [ - 4500 + 4499 ], "version": [ 82 @@ -28609,10 +28601,10 @@ export default { 80 ], "downloads": [ - 1823 + 1822 ], "updated_at": [ - 4499 + 4498 ], "version": [ 80 @@ -28629,7 +28621,7 @@ export default { 80 ], "updated_at": [ - 4499 + 4498 ], "version": [ 80 @@ -28646,7 +28638,7 @@ export default { 80 ], "updated_at": [ - 4499 + 4498 ], "version": [ 80 @@ -28660,7 +28652,7 @@ export default { 40 ], "returning": [ - 1750 + 1749 ], "__typename": [ 80 @@ -28668,10 +28660,10 @@ export default { }, "game_versions_obj_rel_insert_input": { "data": [ - 1761 + 1760 ], "on_conflict": [ - 1766 + 1765 ], "__typename": [ 80 @@ -28679,13 +28671,13 @@ export default { }, "game_versions_on_conflict": { "constraint": [ - 1756 + 1755 ], "update_columns": [ - 1778 + 1777 ], "where": [ - 1755 + 1754 ], "__typename": [ 80 @@ -28693,25 +28685,25 @@ export default { }, "game_versions_order_by": { "build_id": [ - 2952 + 2951 ], "current": [ - 2952 + 2951 ], "cvars": [ - 2952 + 2951 ], "description": [ - 2952 + 2951 ], "downloads": [ - 2952 + 2951 ], "updated_at": [ - 2952 + 2951 ], "version": [ - 2952 + 2951 ], "__typename": [ 80 @@ -28727,7 +28719,7 @@ export default { }, "game_versions_prepend_input": { "downloads": [ - 1823 + 1822 ], "__typename": [ 80 @@ -28748,10 +28740,10 @@ export default { 80 ], "downloads": [ - 1823 + 1822 ], "updated_at": [ - 4499 + 4498 ], "version": [ 80 @@ -28786,10 +28778,10 @@ export default { }, "game_versions_stream_cursor_input": { "initial_value": [ - 1776 + 1775 ], "ordering": [ - 314 + 313 ], "__typename": [ 80 @@ -28809,10 +28801,10 @@ export default { 80 ], "downloads": [ - 1823 + 1822 ], "updated_at": [ - 4499 + 4498 ], "version": [ 80 @@ -28832,28 +28824,28 @@ export default { "game_versions_update_column": {}, "game_versions_updates": { "_append": [ - 1753 + 1752 ], "_delete_at_path": [ - 1757 + 1756 ], "_delete_elem": [ - 1758 + 1757 ], "_delete_key": [ - 1759 + 1758 ], "_inc": [ - 1760 + 1759 ], "_prepend": [ - 1769 + 1768 ], "_set": [ - 1771 + 1770 ], "where": [ - 1755 + 1754 ], "__typename": [ 80 @@ -28891,13 +28883,13 @@ export default { 40 ], "game_version": [ - 1750 + 1749 ], "id": [ - 4999 + 4998 ], "results": [ - 1823, + 1822, { "path": [ 80 @@ -28908,7 +28900,7 @@ export default { 80 ], "validated_at": [ - 4499 + 4498 ], "__typename": [ 80 @@ -28916,10 +28908,10 @@ export default { }, "gamedata_signature_validations_aggregate": { "aggregate": [ - 1785 + 1784 ], "nodes": [ - 1783 + 1782 ], "__typename": [ 80 @@ -28927,13 +28919,13 @@ export default { }, "gamedata_signature_validations_aggregate_fields": { "avg": [ - 1787 + 1786 ], "count": [ 40, { "columns": [ - 1802, + 1801, "[gamedata_signature_validations_select_column!]" ], "distinct": [ @@ -28942,31 +28934,31 @@ export default { } ], "max": [ - 1795 + 1794 ], "min": [ - 1796 + 1795 ], "stddev": [ - 1804 + 1803 ], "stddev_pop": [ - 1805 + 1804 ], "stddev_samp": [ - 1806 + 1805 ], "sum": [ - 1809 + 1808 ], "var_pop": [ - 1812 + 1811 ], "var_samp": [ - 1813 + 1812 ], "variance": [ - 1814 + 1813 ], "__typename": [ 80 @@ -28974,7 +28966,7 @@ export default { }, "gamedata_signature_validations_append_input": { "results": [ - 1823 + 1822 ], "__typename": [ 80 @@ -28990,13 +28982,13 @@ export default { }, "gamedata_signature_validations_bool_exp": { "_and": [ - 1788 + 1787 ], "_not": [ - 1788 + 1787 ], "_or": [ - 1788 + 1787 ], "branch": [ 82 @@ -29005,19 +28997,19 @@ export default { 41 ], "game_version": [ - 1755 + 1754 ], "id": [ - 5001 + 5000 ], "results": [ - 1825 + 1824 ], "status": [ 82 ], "validated_at": [ - 4500 + 4499 ], "__typename": [ 80 @@ -29064,19 +29056,19 @@ export default { 40 ], "game_version": [ - 1765 + 1764 ], "id": [ - 4999 + 4998 ], "results": [ - 1823 + 1822 ], "status": [ 80 ], "validated_at": [ - 4499 + 4498 ], "__typename": [ 80 @@ -29090,13 +29082,13 @@ export default { 40 ], "id": [ - 4999 + 4998 ], "status": [ 80 ], "validated_at": [ - 4499 + 4498 ], "__typename": [ 80 @@ -29110,13 +29102,13 @@ export default { 40 ], "id": [ - 4999 + 4998 ], "status": [ 80 ], "validated_at": [ - 4499 + 4498 ], "__typename": [ 80 @@ -29127,7 +29119,7 @@ export default { 40 ], "returning": [ - 1783 + 1782 ], "__typename": [ 80 @@ -29135,13 +29127,13 @@ export default { }, "gamedata_signature_validations_on_conflict": { "constraint": [ - 1789 + 1788 ], "update_columns": [ - 1810 + 1809 ], "where": [ - 1788 + 1787 ], "__typename": [ 80 @@ -29149,25 +29141,25 @@ export default { }, "gamedata_signature_validations_order_by": { "branch": [ - 2952 + 2951 ], "build_id": [ - 2952 + 2951 ], "game_version": [ - 1767 + 1766 ], "id": [ - 2952 + 2951 ], "results": [ - 2952 + 2951 ], "status": [ - 2952 + 2951 ], "validated_at": [ - 2952 + 2951 ], "__typename": [ 80 @@ -29175,7 +29167,7 @@ export default { }, "gamedata_signature_validations_pk_columns_input": { "id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -29183,7 +29175,7 @@ export default { }, "gamedata_signature_validations_prepend_input": { "results": [ - 1823 + 1822 ], "__typename": [ 80 @@ -29198,16 +29190,16 @@ export default { 40 ], "id": [ - 4999 + 4998 ], "results": [ - 1823 + 1822 ], "status": [ 80 ], "validated_at": [ - 4499 + 4498 ], "__typename": [ 80 @@ -29239,10 +29231,10 @@ export default { }, "gamedata_signature_validations_stream_cursor_input": { "initial_value": [ - 1808 + 1807 ], "ordering": [ - 314 + 313 ], "__typename": [ 80 @@ -29256,16 +29248,16 @@ export default { 40 ], "id": [ - 4999 + 4998 ], "results": [ - 1823 + 1822 ], "status": [ 80 ], "validated_at": [ - 4499 + 4498 ], "__typename": [ 80 @@ -29282,28 +29274,28 @@ export default { "gamedata_signature_validations_update_column": {}, "gamedata_signature_validations_updates": { "_append": [ - 1786 + 1785 ], "_delete_at_path": [ - 1790 + 1789 ], "_delete_elem": [ - 1791 + 1790 ], "_delete_key": [ - 1792 + 1791 ], "_inc": [ - 1793 + 1792 ], "_prepend": [ - 1801 + 1800 ], "_set": [ - 1803 + 1802 ], "where": [ - 1788 + 1787 ], "__typename": [ 80 @@ -29338,7 +29330,7 @@ export default { 80 ], "_event_id": [ - 4999 + 4998 ], "_match_type": [ 80 @@ -29364,7 +29356,7 @@ export default { 80 ], "_season_id": [ - 4999 + 4998 ], "_window_days": [ 40 @@ -29378,7 +29370,7 @@ export default { 80 ], "_league_season_id": [ - 4999 + 4998 ], "_role": [ 80 @@ -29401,7 +29393,7 @@ export default { 80 ], "_season_id": [ - 4999 + 4998 ], "_window_days": [ 40 @@ -29413,31 +29405,31 @@ export default { "inet": {}, "inet_comparison_exp": { "_eq": [ - 1819 + 1818 ], "_gt": [ - 1819 + 1818 ], "_gte": [ - 1819 + 1818 ], "_in": [ - 1819 + 1818 ], "_is_null": [ 5 ], "_lt": [ - 1819 + 1818 ], "_lte": [ - 1819 + 1818 ], "_neq": [ - 1819 + 1818 ], "_nin": [ - 1819 + 1818 ], "__typename": [ 80 @@ -29446,31 +29438,31 @@ export default { "json": {}, "json_comparison_exp": { "_eq": [ - 1821 + 1820 ], "_gt": [ - 1821 + 1820 ], "_gte": [ - 1821 + 1820 ], "_in": [ - 1821 + 1820 ], "_is_null": [ 5 ], "_lt": [ - 1821 + 1820 ], "_lte": [ - 1821 + 1820 ], "_neq": [ - 1821 + 1820 ], "_nin": [ - 1821 + 1820 ], "__typename": [ 80 @@ -29487,22 +29479,22 @@ export default { }, "jsonb_comparison_exp": { "_cast": [ - 1824 + 1823 ], "_contained_in": [ - 1823 + 1822 ], "_contains": [ - 1823 + 1822 ], "_eq": [ - 1823 + 1822 ], "_gt": [ - 1823 + 1822 ], "_gte": [ - 1823 + 1822 ], "_has_key": [ 80 @@ -29514,22 +29506,22 @@ export default { 80 ], "_in": [ - 1823 + 1822 ], "_is_null": [ 5 ], "_lt": [ - 1823 + 1822 ], "_lte": [ - 1823 + 1822 ], "_neq": [ - 1823 + 1822 ], "_nin": [ - 1823 + 1822 ], "__typename": [ 80 @@ -29552,13 +29544,13 @@ export default { 80 ], "secondary_value": [ - 1670 + 1669 ], "tertiary_value": [ - 1670 + 1669 ], "value": [ - 1670 + 1669 ], "__typename": [ 80 @@ -29566,10 +29558,10 @@ export default { }, "leaderboard_entries_aggregate": { "aggregate": [ - 1828 + 1827 ], "nodes": [ - 1826 + 1825 ], "__typename": [ 80 @@ -29577,13 +29569,13 @@ export default { }, "leaderboard_entries_aggregate_fields": { "avg": [ - 1829 + 1828 ], "count": [ 40, { "columns": [ - 1837, + 1836, "[leaderboard_entries_select_column!]" ], "distinct": [ @@ -29592,31 +29584,31 @@ export default { } ], "max": [ - 1833 + 1832 ], "min": [ - 1834 + 1833 ], "stddev": [ - 1839 + 1838 ], "stddev_pop": [ - 1840 + 1839 ], "stddev_samp": [ - 1841 + 1840 ], "sum": [ - 1844 + 1843 ], "var_pop": [ - 1846 + 1845 ], "var_samp": [ - 1847 + 1846 ], "variance": [ - 1848 + 1847 ], "__typename": [ 80 @@ -29641,13 +29633,13 @@ export default { }, "leaderboard_entries_bool_exp": { "_and": [ - 1830 + 1829 ], "_not": [ - 1830 + 1829 ], "_or": [ - 1830 + 1829 ], "matches_played": [ 41 @@ -29665,13 +29657,13 @@ export default { 82 ], "secondary_value": [ - 1671 + 1670 ], "tertiary_value": [ - 1671 + 1670 ], "value": [ - 1671 + 1670 ], "__typename": [ 80 @@ -29682,13 +29674,13 @@ export default { 40 ], "secondary_value": [ - 1670 + 1669 ], "tertiary_value": [ - 1670 + 1669 ], "value": [ - 1670 + 1669 ], "__typename": [ 80 @@ -29711,13 +29703,13 @@ export default { 80 ], "secondary_value": [ - 1670 + 1669 ], "tertiary_value": [ - 1670 + 1669 ], "value": [ - 1670 + 1669 ], "__typename": [ 80 @@ -29740,13 +29732,13 @@ export default { 80 ], "secondary_value": [ - 1670 + 1669 ], "tertiary_value": [ - 1670 + 1669 ], "value": [ - 1670 + 1669 ], "__typename": [ 80 @@ -29769,13 +29761,13 @@ export default { 80 ], "secondary_value": [ - 1670 + 1669 ], "tertiary_value": [ - 1670 + 1669 ], "value": [ - 1670 + 1669 ], "__typename": [ 80 @@ -29786,7 +29778,7 @@ export default { 40 ], "returning": [ - 1826 + 1825 ], "__typename": [ 80 @@ -29794,28 +29786,28 @@ export default { }, "leaderboard_entries_order_by": { "matches_played": [ - 2952 + 2951 ], "player_avatar_url": [ - 2952 + 2951 ], "player_country": [ - 2952 + 2951 ], "player_name": [ - 2952 + 2951 ], "player_steam_id": [ - 2952 + 2951 ], "secondary_value": [ - 2952 + 2951 ], "tertiary_value": [ - 2952 + 2951 ], "value": [ - 2952 + 2951 ], "__typename": [ 80 @@ -29839,13 +29831,13 @@ export default { 80 ], "secondary_value": [ - 1670 + 1669 ], "tertiary_value": [ - 1670 + 1669 ], "value": [ - 1670 + 1669 ], "__typename": [ 80 @@ -29904,10 +29896,10 @@ export default { }, "leaderboard_entries_stream_cursor_input": { "initial_value": [ - 1843 + 1842 ], "ordering": [ - 314 + 313 ], "__typename": [ 80 @@ -29930,13 +29922,13 @@ export default { 80 ], "secondary_value": [ - 1670 + 1669 ], "tertiary_value": [ - 1670 + 1669 ], "value": [ - 1670 + 1669 ], "__typename": [ 80 @@ -29947,13 +29939,13 @@ export default { 40 ], "secondary_value": [ - 1670 + 1669 ], "tertiary_value": [ - 1670 + 1669 ], "value": [ - 1670 + 1669 ], "__typename": [ 80 @@ -29961,13 +29953,13 @@ export default { }, "leaderboard_entries_updates": { "_inc": [ - 1831 + 1830 ], "_set": [ - 1838 + 1837 ], "where": [ - 1830 + 1829 ], "__typename": [ 80 @@ -30026,10 +30018,10 @@ export default { }, "league_award_forfeit_args": { "_tournament_bracket_id": [ - 4999 + 4998 ], "_winning_tournament_team_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -30037,19 +30029,19 @@ export default { }, "league_divisions": { "created_at": [ - 4499 + 4498 ], "id": [ - 4999 + 4998 ], "name": [ 80 ], "season_divisions": [ - 2001, + 2000, { "distinct_on": [ - 2020, + 2019, "[league_season_divisions_select_column!]" ], "limit": [ @@ -30059,19 +30051,19 @@ export default { 40 ], "order_by": [ - 2018, + 2017, "[league_season_divisions_order_by!]" ], "where": [ - 2008 + 2007 ] } ], "season_divisions_aggregate": [ - 2002, + 2001, { "distinct_on": [ - 2020, + 2019, "[league_season_divisions_select_column!]" ], "limit": [ @@ -30081,16 +30073,16 @@ export default { 40 ], "order_by": [ - 2018, + 2017, "[league_season_divisions_order_by!]" ], "where": [ - 2008 + 2007 ] } ], "tier": [ - 4088 + 4087 ], "__typename": [ 80 @@ -30098,10 +30090,10 @@ export default { }, "league_divisions_aggregate": { "aggregate": [ - 1852 + 1851 ], "nodes": [ - 1850 + 1849 ], "__typename": [ 80 @@ -30109,13 +30101,13 @@ export default { }, "league_divisions_aggregate_fields": { "avg": [ - 1853 + 1852 ], "count": [ 40, { "columns": [ - 1865, + 1864, "[league_divisions_select_column!]" ], "distinct": [ @@ -30124,31 +30116,31 @@ export default { } ], "max": [ - 1858 + 1857 ], "min": [ - 1859 + 1858 ], "stddev": [ - 1867 + 1866 ], "stddev_pop": [ - 1868 + 1867 ], "stddev_samp": [ - 1869 + 1868 ], "sum": [ - 1872 + 1871 ], "var_pop": [ - 1875 + 1874 ], "var_samp": [ - 1876 + 1875 ], "variance": [ - 1877 + 1876 ], "__typename": [ 80 @@ -30164,31 +30156,31 @@ export default { }, "league_divisions_bool_exp": { "_and": [ - 1854 + 1853 ], "_not": [ - 1854 + 1853 ], "_or": [ - 1854 + 1853 ], "created_at": [ - 4500 + 4499 ], "id": [ - 5001 + 5000 ], "name": [ 82 ], "season_divisions": [ - 2008 + 2007 ], "season_divisions_aggregate": [ - 2003 + 2002 ], "tier": [ - 4089 + 4088 ], "__typename": [ 80 @@ -30197,7 +30189,7 @@ export default { "league_divisions_constraint": {}, "league_divisions_inc_input": { "tier": [ - 4088 + 4087 ], "__typename": [ 80 @@ -30205,19 +30197,19 @@ export default { }, "league_divisions_insert_input": { "created_at": [ - 4499 + 4498 ], "id": [ - 4999 + 4998 ], "name": [ 80 ], "season_divisions": [ - 2007 + 2006 ], "tier": [ - 4088 + 4087 ], "__typename": [ 80 @@ -30225,16 +30217,16 @@ export default { }, "league_divisions_max_fields": { "created_at": [ - 4499 + 4498 ], "id": [ - 4999 + 4998 ], "name": [ 80 ], "tier": [ - 4088 + 4087 ], "__typename": [ 80 @@ -30242,16 +30234,16 @@ export default { }, "league_divisions_min_fields": { "created_at": [ - 4499 + 4498 ], "id": [ - 4999 + 4998 ], "name": [ 80 ], "tier": [ - 4088 + 4087 ], "__typename": [ 80 @@ -30262,7 +30254,7 @@ export default { 40 ], "returning": [ - 1850 + 1849 ], "__typename": [ 80 @@ -30270,10 +30262,10 @@ export default { }, "league_divisions_obj_rel_insert_input": { "data": [ - 1857 + 1856 ], "on_conflict": [ - 1862 + 1861 ], "__typename": [ 80 @@ -30281,13 +30273,13 @@ export default { }, "league_divisions_on_conflict": { "constraint": [ - 1855 + 1854 ], "update_columns": [ - 1873 + 1872 ], "where": [ - 1854 + 1853 ], "__typename": [ 80 @@ -30295,19 +30287,19 @@ export default { }, "league_divisions_order_by": { "created_at": [ - 2952 + 2951 ], "id": [ - 2952 + 2951 ], "name": [ - 2952 + 2951 ], "season_divisions_aggregate": [ - 2006 + 2005 ], "tier": [ - 2952 + 2951 ], "__typename": [ 80 @@ -30315,7 +30307,7 @@ export default { }, "league_divisions_pk_columns_input": { "id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -30324,16 +30316,16 @@ export default { "league_divisions_select_column": {}, "league_divisions_set_input": { "created_at": [ - 4499 + 4498 ], "id": [ - 4999 + 4998 ], "name": [ 80 ], "tier": [ - 4088 + 4087 ], "__typename": [ 80 @@ -30365,10 +30357,10 @@ export default { }, "league_divisions_stream_cursor_input": { "initial_value": [ - 1871 + 1870 ], "ordering": [ - 314 + 313 ], "__typename": [ 80 @@ -30376,16 +30368,16 @@ export default { }, "league_divisions_stream_cursor_value_input": { "created_at": [ - 4499 + 4498 ], "id": [ - 4999 + 4998 ], "name": [ 80 ], "tier": [ - 4088 + 4087 ], "__typename": [ 80 @@ -30393,7 +30385,7 @@ export default { }, "league_divisions_sum_fields": { "tier": [ - 4088 + 4087 ], "__typename": [ 80 @@ -30402,13 +30394,13 @@ export default { "league_divisions_update_column": {}, "league_divisions_updates": { "_inc": [ - 1856 + 1855 ], "_set": [ - 1866 + 1865 ], "where": [ - 1854 + 1853 ], "__typename": [ 80 @@ -30440,25 +30432,25 @@ export default { }, "league_match_weeks": { "closes_at": [ - 4499 + 4498 ], "created_at": [ - 4499 + 4498 ], "default_match_at": [ - 4499 + 4498 ], "id": [ - 4999 + 4998 ], "league_season_id": [ - 4999 + 4998 ], "opens_at": [ - 4499 + 4498 ], "season": [ - 2026 + 2025 ], "week_number": [ 40 @@ -30469,10 +30461,10 @@ export default { }, "league_match_weeks_aggregate": { "aggregate": [ - 1882 + 1881 ], "nodes": [ - 1878 + 1877 ], "__typename": [ 80 @@ -30480,7 +30472,7 @@ export default { }, "league_match_weeks_aggregate_bool_exp": { "count": [ - 1881 + 1880 ], "__typename": [ 80 @@ -30488,13 +30480,13 @@ export default { }, "league_match_weeks_aggregate_bool_exp_count": { "arguments": [ - 1899 + 1898 ], "distinct": [ 5 ], "filter": [ - 1887 + 1886 ], "predicate": [ 41 @@ -30505,13 +30497,13 @@ export default { }, "league_match_weeks_aggregate_fields": { "avg": [ - 1885 + 1884 ], "count": [ 40, { "columns": [ - 1899, + 1898, "[league_match_weeks_select_column!]" ], "distinct": [ @@ -30520,31 +30512,31 @@ export default { } ], "max": [ - 1891 + 1890 ], "min": [ - 1893 + 1892 ], "stddev": [ - 1901 + 1900 ], "stddev_pop": [ - 1903 + 1902 ], "stddev_samp": [ - 1905 + 1904 ], "sum": [ - 1909 + 1908 ], "var_pop": [ - 1913 + 1912 ], "var_samp": [ - 1915 + 1914 ], "variance": [ - 1917 + 1916 ], "__typename": [ 80 @@ -30552,37 +30544,37 @@ export default { }, "league_match_weeks_aggregate_order_by": { "avg": [ - 1886 + 1885 ], "count": [ - 2952 + 2951 ], "max": [ - 1892 + 1891 ], "min": [ - 1894 + 1893 ], "stddev": [ - 1902 + 1901 ], "stddev_pop": [ - 1904 + 1903 ], "stddev_samp": [ - 1906 + 1905 ], "sum": [ - 1910 + 1909 ], "var_pop": [ - 1914 + 1913 ], "var_samp": [ - 1916 + 1915 ], "variance": [ - 1918 + 1917 ], "__typename": [ 80 @@ -30590,10 +30582,10 @@ export default { }, "league_match_weeks_arr_rel_insert_input": { "data": [ - 1890 + 1889 ], "on_conflict": [ - 1896 + 1895 ], "__typename": [ 80 @@ -30609,7 +30601,7 @@ export default { }, "league_match_weeks_avg_order_by": { "week_number": [ - 2952 + 2951 ], "__typename": [ 80 @@ -30617,34 +30609,34 @@ export default { }, "league_match_weeks_bool_exp": { "_and": [ - 1887 + 1886 ], "_not": [ - 1887 + 1886 ], "_or": [ - 1887 + 1886 ], "closes_at": [ - 4500 + 4499 ], "created_at": [ - 4500 + 4499 ], "default_match_at": [ - 4500 + 4499 ], "id": [ - 5001 + 5000 ], "league_season_id": [ - 5001 + 5000 ], "opens_at": [ - 4500 + 4499 ], "season": [ - 2031 + 2030 ], "week_number": [ 41 @@ -30664,25 +30656,25 @@ export default { }, "league_match_weeks_insert_input": { "closes_at": [ - 4499 + 4498 ], "created_at": [ - 4499 + 4498 ], "default_match_at": [ - 4499 + 4498 ], "id": [ - 4999 + 4998 ], "league_season_id": [ - 4999 + 4998 ], "opens_at": [ - 4499 + 4498 ], "season": [ - 2041 + 2040 ], "week_number": [ 40 @@ -30693,22 +30685,22 @@ export default { }, "league_match_weeks_max_fields": { "closes_at": [ - 4499 + 4498 ], "created_at": [ - 4499 + 4498 ], "default_match_at": [ - 4499 + 4498 ], "id": [ - 4999 + 4998 ], "league_season_id": [ - 4999 + 4998 ], "opens_at": [ - 4499 + 4498 ], "week_number": [ 40 @@ -30719,25 +30711,25 @@ export default { }, "league_match_weeks_max_order_by": { "closes_at": [ - 2952 + 2951 ], "created_at": [ - 2952 + 2951 ], "default_match_at": [ - 2952 + 2951 ], "id": [ - 2952 + 2951 ], "league_season_id": [ - 2952 + 2951 ], "opens_at": [ - 2952 + 2951 ], "week_number": [ - 2952 + 2951 ], "__typename": [ 80 @@ -30745,22 +30737,22 @@ export default { }, "league_match_weeks_min_fields": { "closes_at": [ - 4499 + 4498 ], "created_at": [ - 4499 + 4498 ], "default_match_at": [ - 4499 + 4498 ], "id": [ - 4999 + 4998 ], "league_season_id": [ - 4999 + 4998 ], "opens_at": [ - 4499 + 4498 ], "week_number": [ 40 @@ -30771,25 +30763,25 @@ export default { }, "league_match_weeks_min_order_by": { "closes_at": [ - 2952 + 2951 ], "created_at": [ - 2952 + 2951 ], "default_match_at": [ - 2952 + 2951 ], "id": [ - 2952 + 2951 ], "league_season_id": [ - 2952 + 2951 ], "opens_at": [ - 2952 + 2951 ], "week_number": [ - 2952 + 2951 ], "__typename": [ 80 @@ -30800,7 +30792,7 @@ export default { 40 ], "returning": [ - 1878 + 1877 ], "__typename": [ 80 @@ -30808,13 +30800,13 @@ export default { }, "league_match_weeks_on_conflict": { "constraint": [ - 1888 + 1887 ], "update_columns": [ - 1911 + 1910 ], "where": [ - 1887 + 1886 ], "__typename": [ 80 @@ -30822,28 +30814,28 @@ export default { }, "league_match_weeks_order_by": { "closes_at": [ - 2952 + 2951 ], "created_at": [ - 2952 + 2951 ], "default_match_at": [ - 2952 + 2951 ], "id": [ - 2952 + 2951 ], "league_season_id": [ - 2952 + 2951 ], "opens_at": [ - 2952 + 2951 ], "season": [ - 2043 + 2042 ], "week_number": [ - 2952 + 2951 ], "__typename": [ 80 @@ -30851,7 +30843,7 @@ export default { }, "league_match_weeks_pk_columns_input": { "id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -30860,22 +30852,22 @@ export default { "league_match_weeks_select_column": {}, "league_match_weeks_set_input": { "closes_at": [ - 4499 + 4498 ], "created_at": [ - 4499 + 4498 ], "default_match_at": [ - 4499 + 4498 ], "id": [ - 4999 + 4998 ], "league_season_id": [ - 4999 + 4998 ], "opens_at": [ - 4499 + 4498 ], "week_number": [ 40 @@ -30894,7 +30886,7 @@ export default { }, "league_match_weeks_stddev_order_by": { "week_number": [ - 2952 + 2951 ], "__typename": [ 80 @@ -30910,7 +30902,7 @@ export default { }, "league_match_weeks_stddev_pop_order_by": { "week_number": [ - 2952 + 2951 ], "__typename": [ 80 @@ -30926,7 +30918,7 @@ export default { }, "league_match_weeks_stddev_samp_order_by": { "week_number": [ - 2952 + 2951 ], "__typename": [ 80 @@ -30934,10 +30926,10 @@ export default { }, "league_match_weeks_stream_cursor_input": { "initial_value": [ - 1908 + 1907 ], "ordering": [ - 314 + 313 ], "__typename": [ 80 @@ -30945,22 +30937,22 @@ export default { }, "league_match_weeks_stream_cursor_value_input": { "closes_at": [ - 4499 + 4498 ], "created_at": [ - 4499 + 4498 ], "default_match_at": [ - 4499 + 4498 ], "id": [ - 4999 + 4998 ], "league_season_id": [ - 4999 + 4998 ], "opens_at": [ - 4499 + 4498 ], "week_number": [ 40 @@ -30979,7 +30971,7 @@ export default { }, "league_match_weeks_sum_order_by": { "week_number": [ - 2952 + 2951 ], "__typename": [ 80 @@ -30988,13 +30980,13 @@ export default { "league_match_weeks_update_column": {}, "league_match_weeks_updates": { "_inc": [ - 1889 + 1888 ], "_set": [ - 1900 + 1899 ], "where": [ - 1887 + 1886 ], "__typename": [ 80 @@ -31010,7 +31002,7 @@ export default { }, "league_match_weeks_var_pop_order_by": { "week_number": [ - 2952 + 2951 ], "__typename": [ 80 @@ -31026,7 +31018,7 @@ export default { }, "league_match_weeks_var_samp_order_by": { "week_number": [ - 2952 + 2951 ], "__typename": [ 80 @@ -31042,7 +31034,7 @@ export default { }, "league_match_weeks_variance_order_by": { "week_number": [ - 2952 + 2951 ], "__typename": [ 80 @@ -31050,40 +31042,40 @@ export default { }, "league_relegation_playoffs": { "created_at": [ - 4499 + 4498 ], "higher_division": [ - 1850 + 1849 ], "higher_division_id": [ - 4999 + 4998 ], "higher_slots": [ 40 ], "id": [ - 4999 + 4998 ], "league_season_id": [ - 4999 + 4998 ], "lower_division": [ - 1850 + 1849 ], "lower_division_id": [ - 4999 + 4998 ], "resolved_at": [ - 4499 + 4498 ], "season": [ - 2026 + 2025 ], "tournament": [ - 4935 + 4934 ], "tournament_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -31091,10 +31083,10 @@ export default { }, "league_relegation_playoffs_aggregate": { "aggregate": [ - 1923 + 1922 ], "nodes": [ - 1919 + 1918 ], "__typename": [ 80 @@ -31102,7 +31094,7 @@ export default { }, "league_relegation_playoffs_aggregate_bool_exp": { "count": [ - 1922 + 1921 ], "__typename": [ 80 @@ -31110,13 +31102,13 @@ export default { }, "league_relegation_playoffs_aggregate_bool_exp_count": { "arguments": [ - 1940 + 1939 ], "distinct": [ 5 ], "filter": [ - 1928 + 1927 ], "predicate": [ 41 @@ -31127,13 +31119,13 @@ export default { }, "league_relegation_playoffs_aggregate_fields": { "avg": [ - 1926 + 1925 ], "count": [ 40, { "columns": [ - 1940, + 1939, "[league_relegation_playoffs_select_column!]" ], "distinct": [ @@ -31141,6 +31133,44 @@ export default { ] } ], + "max": [ + 1931 + ], + "min": [ + 1933 + ], + "stddev": [ + 1941 + ], + "stddev_pop": [ + 1943 + ], + "stddev_samp": [ + 1945 + ], + "sum": [ + 1949 + ], + "var_pop": [ + 1953 + ], + "var_samp": [ + 1955 + ], + "variance": [ + 1957 + ], + "__typename": [ + 80 + ] + }, + "league_relegation_playoffs_aggregate_order_by": { + "avg": [ + 1926 + ], + "count": [ + 2951 + ], "max": [ 1932 ], @@ -31172,50 +31202,12 @@ export default { 80 ] }, - "league_relegation_playoffs_aggregate_order_by": { - "avg": [ - 1927 - ], - "count": [ - 2952 - ], - "max": [ - 1933 - ], - "min": [ - 1935 - ], - "stddev": [ - 1943 - ], - "stddev_pop": [ - 1945 - ], - "stddev_samp": [ - 1947 - ], - "sum": [ - 1951 - ], - "var_pop": [ - 1955 - ], - "var_samp": [ - 1957 - ], - "variance": [ - 1959 - ], - "__typename": [ - 80 - ] - }, "league_relegation_playoffs_arr_rel_insert_input": { "data": [ - 1931 + 1930 ], "on_conflict": [ - 1937 + 1936 ], "__typename": [ 80 @@ -31231,7 +31223,7 @@ export default { }, "league_relegation_playoffs_avg_order_by": { "higher_slots": [ - 2952 + 2951 ], "__typename": [ 80 @@ -31239,49 +31231,49 @@ export default { }, "league_relegation_playoffs_bool_exp": { "_and": [ - 1928 + 1927 ], "_not": [ - 1928 + 1927 ], "_or": [ - 1928 + 1927 ], "created_at": [ - 4500 + 4499 ], "higher_division": [ - 1854 + 1853 ], "higher_division_id": [ - 5001 + 5000 ], "higher_slots": [ 41 ], "id": [ - 5001 + 5000 ], "league_season_id": [ - 5001 + 5000 ], "lower_division": [ - 1854 + 1853 ], "lower_division_id": [ - 5001 + 5000 ], "resolved_at": [ - 4500 + 4499 ], "season": [ - 2031 + 2030 ], "tournament": [ - 4956 + 4955 ], "tournament_id": [ - 5001 + 5000 ], "__typename": [ 80 @@ -31298,40 +31290,40 @@ export default { }, "league_relegation_playoffs_insert_input": { "created_at": [ - 4499 + 4498 ], "higher_division": [ - 1861 + 1860 ], "higher_division_id": [ - 4999 + 4998 ], "higher_slots": [ 40 ], "id": [ - 4999 + 4998 ], "league_season_id": [ - 4999 + 4998 ], "lower_division": [ - 1861 + 1860 ], "lower_division_id": [ - 4999 + 4998 ], "resolved_at": [ - 4499 + 4498 ], "season": [ - 2041 + 2040 ], "tournament": [ - 4965 + 4964 ], "tournament_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -31339,28 +31331,28 @@ export default { }, "league_relegation_playoffs_max_fields": { "created_at": [ - 4499 + 4498 ], "higher_division_id": [ - 4999 + 4998 ], "higher_slots": [ 40 ], "id": [ - 4999 + 4998 ], "league_season_id": [ - 4999 + 4998 ], "lower_division_id": [ - 4999 + 4998 ], "resolved_at": [ - 4499 + 4498 ], "tournament_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -31368,28 +31360,28 @@ export default { }, "league_relegation_playoffs_max_order_by": { "created_at": [ - 2952 + 2951 ], "higher_division_id": [ - 2952 + 2951 ], "higher_slots": [ - 2952 + 2951 ], "id": [ - 2952 + 2951 ], "league_season_id": [ - 2952 + 2951 ], "lower_division_id": [ - 2952 + 2951 ], "resolved_at": [ - 2952 + 2951 ], "tournament_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -31397,28 +31389,28 @@ export default { }, "league_relegation_playoffs_min_fields": { "created_at": [ - 4499 + 4498 ], "higher_division_id": [ - 4999 + 4998 ], "higher_slots": [ 40 ], "id": [ - 4999 + 4998 ], "league_season_id": [ - 4999 + 4998 ], "lower_division_id": [ - 4999 + 4998 ], "resolved_at": [ - 4499 + 4498 ], "tournament_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -31426,28 +31418,28 @@ export default { }, "league_relegation_playoffs_min_order_by": { "created_at": [ - 2952 + 2951 ], "higher_division_id": [ - 2952 + 2951 ], "higher_slots": [ - 2952 + 2951 ], "id": [ - 2952 + 2951 ], "league_season_id": [ - 2952 + 2951 ], "lower_division_id": [ - 2952 + 2951 ], "resolved_at": [ - 2952 + 2951 ], "tournament_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -31458,7 +31450,7 @@ export default { 40 ], "returning": [ - 1919 + 1918 ], "__typename": [ 80 @@ -31466,13 +31458,13 @@ export default { }, "league_relegation_playoffs_on_conflict": { "constraint": [ - 1929 + 1928 ], "update_columns": [ - 1952 + 1951 ], "where": [ - 1928 + 1927 ], "__typename": [ 80 @@ -31480,40 +31472,40 @@ export default { }, "league_relegation_playoffs_order_by": { "created_at": [ - 2952 + 2951 ], "higher_division": [ - 1863 + 1862 ], "higher_division_id": [ - 2952 + 2951 ], "higher_slots": [ - 2952 + 2951 ], "id": [ - 2952 + 2951 ], "league_season_id": [ - 2952 + 2951 ], "lower_division": [ - 1863 + 1862 ], "lower_division_id": [ - 2952 + 2951 ], "resolved_at": [ - 2952 + 2951 ], "season": [ - 2043 + 2042 ], "tournament": [ - 4967 + 4966 ], "tournament_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -31521,7 +31513,7 @@ export default { }, "league_relegation_playoffs_pk_columns_input": { "id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -31530,28 +31522,28 @@ export default { "league_relegation_playoffs_select_column": {}, "league_relegation_playoffs_set_input": { "created_at": [ - 4499 + 4498 ], "higher_division_id": [ - 4999 + 4998 ], "higher_slots": [ 40 ], "id": [ - 4999 + 4998 ], "league_season_id": [ - 4999 + 4998 ], "lower_division_id": [ - 4999 + 4998 ], "resolved_at": [ - 4499 + 4498 ], "tournament_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -31567,7 +31559,7 @@ export default { }, "league_relegation_playoffs_stddev_order_by": { "higher_slots": [ - 2952 + 2951 ], "__typename": [ 80 @@ -31583,7 +31575,7 @@ export default { }, "league_relegation_playoffs_stddev_pop_order_by": { "higher_slots": [ - 2952 + 2951 ], "__typename": [ 80 @@ -31599,7 +31591,7 @@ export default { }, "league_relegation_playoffs_stddev_samp_order_by": { "higher_slots": [ - 2952 + 2951 ], "__typename": [ 80 @@ -31607,10 +31599,10 @@ export default { }, "league_relegation_playoffs_stream_cursor_input": { "initial_value": [ - 1949 + 1948 ], "ordering": [ - 314 + 313 ], "__typename": [ 80 @@ -31618,28 +31610,28 @@ export default { }, "league_relegation_playoffs_stream_cursor_value_input": { "created_at": [ - 4499 + 4498 ], "higher_division_id": [ - 4999 + 4998 ], "higher_slots": [ 40 ], "id": [ - 4999 + 4998 ], "league_season_id": [ - 4999 + 4998 ], "lower_division_id": [ - 4999 + 4998 ], "resolved_at": [ - 4499 + 4498 ], "tournament_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -31655,7 +31647,7 @@ export default { }, "league_relegation_playoffs_sum_order_by": { "higher_slots": [ - 2952 + 2951 ], "__typename": [ 80 @@ -31664,13 +31656,13 @@ export default { "league_relegation_playoffs_update_column": {}, "league_relegation_playoffs_updates": { "_inc": [ - 1930 + 1929 ], "_set": [ - 1941 + 1940 ], "where": [ - 1928 + 1927 ], "__typename": [ 80 @@ -31686,7 +31678,7 @@ export default { }, "league_relegation_playoffs_var_pop_order_by": { "higher_slots": [ - 2952 + 2951 ], "__typename": [ 80 @@ -31702,7 +31694,7 @@ export default { }, "league_relegation_playoffs_var_samp_order_by": { "higher_slots": [ - 2952 + 2951 ], "__typename": [ 80 @@ -31718,7 +31710,7 @@ export default { }, "league_relegation_playoffs_variance_order_by": { "higher_slots": [ - 2952 + 2951 ], "__typename": [ 80 @@ -31726,46 +31718,46 @@ export default { }, "league_scheduling_proposals": { "bracket": [ - 4543 + 4542 ], "created_at": [ - 4499 + 4498 ], "e_proposal_status": [ - 798 + 797 ], "id": [ - 4999 + 4998 ], "message": [ 80 ], "proposed_by": [ - 3910 + 3909 ], "proposed_by_league_team_season_id": [ - 4999 + 4998 ], "proposed_by_steam_id": [ - 258 + 257 ], "proposed_time": [ - 4499 + 4498 ], "responded_by": [ - 3910 + 3909 ], "responded_by_steam_id": [ - 258 + 257 ], "status": [ - 803 + 802 ], "team_season": [ - 2141 + 2140 ], "tournament_bracket_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -31773,10 +31765,10 @@ export default { }, "league_scheduling_proposals_aggregate": { "aggregate": [ - 1964 + 1963 ], "nodes": [ - 1960 + 1959 ], "__typename": [ 80 @@ -31784,7 +31776,7 @@ export default { }, "league_scheduling_proposals_aggregate_bool_exp": { "count": [ - 1963 + 1962 ], "__typename": [ 80 @@ -31792,13 +31784,13 @@ export default { }, "league_scheduling_proposals_aggregate_bool_exp_count": { "arguments": [ - 1981 + 1980 ], "distinct": [ 5 ], "filter": [ - 1969 + 1968 ], "predicate": [ 41 @@ -31809,13 +31801,13 @@ export default { }, "league_scheduling_proposals_aggregate_fields": { "avg": [ - 1967 + 1966 ], "count": [ 40, { "columns": [ - 1981, + 1980, "[league_scheduling_proposals_select_column!]" ], "distinct": [ @@ -31823,6 +31815,44 @@ export default { ] } ], + "max": [ + 1972 + ], + "min": [ + 1974 + ], + "stddev": [ + 1982 + ], + "stddev_pop": [ + 1984 + ], + "stddev_samp": [ + 1986 + ], + "sum": [ + 1990 + ], + "var_pop": [ + 1994 + ], + "var_samp": [ + 1996 + ], + "variance": [ + 1998 + ], + "__typename": [ + 80 + ] + }, + "league_scheduling_proposals_aggregate_order_by": { + "avg": [ + 1967 + ], + "count": [ + 2951 + ], "max": [ 1973 ], @@ -31854,50 +31884,12 @@ export default { 80 ] }, - "league_scheduling_proposals_aggregate_order_by": { - "avg": [ - 1968 - ], - "count": [ - 2952 - ], - "max": [ - 1974 - ], - "min": [ - 1976 - ], - "stddev": [ - 1984 - ], - "stddev_pop": [ - 1986 - ], - "stddev_samp": [ - 1988 - ], - "sum": [ - 1992 - ], - "var_pop": [ - 1996 - ], - "var_samp": [ - 1998 - ], - "variance": [ - 2000 - ], - "__typename": [ - 80 - ] - }, "league_scheduling_proposals_arr_rel_insert_input": { "data": [ - 1972 + 1971 ], "on_conflict": [ - 1978 + 1977 ], "__typename": [ 80 @@ -31916,10 +31908,10 @@ export default { }, "league_scheduling_proposals_avg_order_by": { "proposed_by_steam_id": [ - 2952 + 2951 ], "responded_by_steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -31927,55 +31919,55 @@ export default { }, "league_scheduling_proposals_bool_exp": { "_and": [ - 1969 + 1968 ], "_not": [ - 1969 + 1968 ], "_or": [ - 1969 + 1968 ], "bracket": [ - 4554 + 4553 ], "created_at": [ - 4500 + 4499 ], "e_proposal_status": [ - 801 + 800 ], "id": [ - 5001 + 5000 ], "message": [ 82 ], "proposed_by": [ - 3914 + 3913 ], "proposed_by_league_team_season_id": [ - 5001 + 5000 ], "proposed_by_steam_id": [ - 260 + 259 ], "proposed_time": [ - 4500 + 4499 ], "responded_by": [ - 3914 + 3913 ], "responded_by_steam_id": [ - 260 + 259 ], "status": [ - 804 + 803 ], "team_season": [ - 2150 + 2149 ], "tournament_bracket_id": [ - 5001 + 5000 ], "__typename": [ 80 @@ -31984,10 +31976,10 @@ export default { "league_scheduling_proposals_constraint": {}, "league_scheduling_proposals_inc_input": { "proposed_by_steam_id": [ - 258 + 257 ], "responded_by_steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -31995,46 +31987,46 @@ export default { }, "league_scheduling_proposals_insert_input": { "bracket": [ - 4563 + 4562 ], "created_at": [ - 4499 + 4498 ], "e_proposal_status": [ - 809 + 808 ], "id": [ - 4999 + 4998 ], "message": [ 80 ], "proposed_by": [ - 3921 + 3920 ], "proposed_by_league_team_season_id": [ - 4999 + 4998 ], "proposed_by_steam_id": [ - 258 + 257 ], "proposed_time": [ - 4499 + 4498 ], "responded_by": [ - 3921 + 3920 ], "responded_by_steam_id": [ - 258 + 257 ], "status": [ - 803 + 802 ], "team_season": [ - 2159 + 2158 ], "tournament_bracket_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -32042,28 +32034,28 @@ export default { }, "league_scheduling_proposals_max_fields": { "created_at": [ - 4499 + 4498 ], "id": [ - 4999 + 4998 ], "message": [ 80 ], "proposed_by_league_team_season_id": [ - 4999 + 4998 ], "proposed_by_steam_id": [ - 258 + 257 ], "proposed_time": [ - 4499 + 4498 ], "responded_by_steam_id": [ - 258 + 257 ], "tournament_bracket_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -32071,28 +32063,28 @@ export default { }, "league_scheduling_proposals_max_order_by": { "created_at": [ - 2952 + 2951 ], "id": [ - 2952 + 2951 ], "message": [ - 2952 + 2951 ], "proposed_by_league_team_season_id": [ - 2952 + 2951 ], "proposed_by_steam_id": [ - 2952 + 2951 ], "proposed_time": [ - 2952 + 2951 ], "responded_by_steam_id": [ - 2952 + 2951 ], "tournament_bracket_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -32100,28 +32092,28 @@ export default { }, "league_scheduling_proposals_min_fields": { "created_at": [ - 4499 + 4498 ], "id": [ - 4999 + 4998 ], "message": [ 80 ], "proposed_by_league_team_season_id": [ - 4999 + 4998 ], "proposed_by_steam_id": [ - 258 + 257 ], "proposed_time": [ - 4499 + 4498 ], "responded_by_steam_id": [ - 258 + 257 ], "tournament_bracket_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -32129,28 +32121,28 @@ export default { }, "league_scheduling_proposals_min_order_by": { "created_at": [ - 2952 + 2951 ], "id": [ - 2952 + 2951 ], "message": [ - 2952 + 2951 ], "proposed_by_league_team_season_id": [ - 2952 + 2951 ], "proposed_by_steam_id": [ - 2952 + 2951 ], "proposed_time": [ - 2952 + 2951 ], "responded_by_steam_id": [ - 2952 + 2951 ], "tournament_bracket_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -32161,7 +32153,7 @@ export default { 40 ], "returning": [ - 1960 + 1959 ], "__typename": [ 80 @@ -32169,13 +32161,13 @@ export default { }, "league_scheduling_proposals_on_conflict": { "constraint": [ - 1970 + 1969 ], "update_columns": [ - 1993 + 1992 ], "where": [ - 1969 + 1968 ], "__typename": [ 80 @@ -32183,46 +32175,46 @@ export default { }, "league_scheduling_proposals_order_by": { "bracket": [ - 4565 + 4564 ], "created_at": [ - 2952 + 2951 ], "e_proposal_status": [ - 811 + 810 ], "id": [ - 2952 + 2951 ], "message": [ - 2952 + 2951 ], "proposed_by": [ - 3923 + 3922 ], "proposed_by_league_team_season_id": [ - 2952 + 2951 ], "proposed_by_steam_id": [ - 2952 + 2951 ], "proposed_time": [ - 2952 + 2951 ], "responded_by": [ - 3923 + 3922 ], "responded_by_steam_id": [ - 2952 + 2951 ], "status": [ - 2952 + 2951 ], "team_season": [ - 2161 + 2160 ], "tournament_bracket_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -32230,7 +32222,7 @@ export default { }, "league_scheduling_proposals_pk_columns_input": { "id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -32239,31 +32231,31 @@ export default { "league_scheduling_proposals_select_column": {}, "league_scheduling_proposals_set_input": { "created_at": [ - 4499 + 4498 ], "id": [ - 4999 + 4998 ], "message": [ 80 ], "proposed_by_league_team_season_id": [ - 4999 + 4998 ], "proposed_by_steam_id": [ - 258 + 257 ], "proposed_time": [ - 4499 + 4498 ], "responded_by_steam_id": [ - 258 + 257 ], "status": [ - 803 + 802 ], "tournament_bracket_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -32282,10 +32274,10 @@ export default { }, "league_scheduling_proposals_stddev_order_by": { "proposed_by_steam_id": [ - 2952 + 2951 ], "responded_by_steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -32304,10 +32296,10 @@ export default { }, "league_scheduling_proposals_stddev_pop_order_by": { "proposed_by_steam_id": [ - 2952 + 2951 ], "responded_by_steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -32326,10 +32318,10 @@ export default { }, "league_scheduling_proposals_stddev_samp_order_by": { "proposed_by_steam_id": [ - 2952 + 2951 ], "responded_by_steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -32337,10 +32329,10 @@ export default { }, "league_scheduling_proposals_stream_cursor_input": { "initial_value": [ - 1990 + 1989 ], "ordering": [ - 314 + 313 ], "__typename": [ 80 @@ -32348,31 +32340,31 @@ export default { }, "league_scheduling_proposals_stream_cursor_value_input": { "created_at": [ - 4499 + 4498 ], "id": [ - 4999 + 4998 ], "message": [ 80 ], "proposed_by_league_team_season_id": [ - 4999 + 4998 ], "proposed_by_steam_id": [ - 258 + 257 ], "proposed_time": [ - 4499 + 4498 ], "responded_by_steam_id": [ - 258 + 257 ], "status": [ - 803 + 802 ], "tournament_bracket_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -32380,10 +32372,10 @@ export default { }, "league_scheduling_proposals_sum_fields": { "proposed_by_steam_id": [ - 258 + 257 ], "responded_by_steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -32391,10 +32383,10 @@ export default { }, "league_scheduling_proposals_sum_order_by": { "proposed_by_steam_id": [ - 2952 + 2951 ], "responded_by_steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -32403,13 +32395,13 @@ export default { "league_scheduling_proposals_update_column": {}, "league_scheduling_proposals_updates": { "_inc": [ - 1971 + 1970 ], "_set": [ - 1982 + 1981 ], "where": [ - 1969 + 1968 ], "__typename": [ 80 @@ -32428,10 +32420,10 @@ export default { }, "league_scheduling_proposals_var_pop_order_by": { "proposed_by_steam_id": [ - 2952 + 2951 ], "responded_by_steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -32450,10 +32442,10 @@ export default { }, "league_scheduling_proposals_var_samp_order_by": { "proposed_by_steam_id": [ - 2952 + 2951 ], "responded_by_steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -32472,10 +32464,10 @@ export default { }, "league_scheduling_proposals_variance_order_by": { "proposed_by_steam_id": [ - 2952 + 2951 ], "responded_by_steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -32483,28 +32475,28 @@ export default { }, "league_season_divisions": { "created_at": [ - 4499 + 4498 ], "division": [ - 1850 + 1849 ], "id": [ - 4999 + 4998 ], "league_division_id": [ - 4999 + 4998 ], "league_season_id": [ - 4999 + 4998 ], "season": [ - 2026 + 2025 ], "standings": [ - 5071, + 5070, { "distinct_on": [ - 5087, + 5086, "[v_league_division_standings_select_column!]" ], "limit": [ @@ -32514,19 +32506,19 @@ export default { 40 ], "order_by": [ - 5086, + 5085, "[v_league_division_standings_order_by!]" ], "where": [ - 5080 + 5079 ] } ], "standings_aggregate": [ - 5072, + 5071, { "distinct_on": [ - 5087, + 5086, "[v_league_division_standings_select_column!]" ], "limit": [ @@ -32536,19 +32528,19 @@ export default { 40 ], "order_by": [ - 5086, + 5085, "[v_league_division_standings_order_by!]" ], "where": [ - 5080 + 5079 ] } ], "tournament": [ - 4935 + 4934 ], "tournament_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -32556,10 +32548,10 @@ export default { }, "league_season_divisions_aggregate": { "aggregate": [ - 2005 + 2004 ], "nodes": [ - 2001 + 2000 ], "__typename": [ 80 @@ -32567,7 +32559,7 @@ export default { }, "league_season_divisions_aggregate_bool_exp": { "count": [ - 2004 + 2003 ], "__typename": [ 80 @@ -32575,13 +32567,13 @@ export default { }, "league_season_divisions_aggregate_bool_exp_count": { "arguments": [ - 2020 + 2019 ], "distinct": [ 5 ], "filter": [ - 2008 + 2007 ], "predicate": [ 41 @@ -32595,7 +32587,7 @@ export default { 40, { "columns": [ - 2020, + 2019, "[league_season_divisions_select_column!]" ], "distinct": [ @@ -32604,10 +32596,10 @@ export default { } ], "max": [ - 2011 + 2010 ], "min": [ - 2013 + 2012 ], "__typename": [ 80 @@ -32615,13 +32607,13 @@ export default { }, "league_season_divisions_aggregate_order_by": { "count": [ - 2952 + 2951 ], "max": [ - 2012 + 2011 ], "min": [ - 2014 + 2013 ], "__typename": [ 80 @@ -32629,10 +32621,10 @@ export default { }, "league_season_divisions_arr_rel_insert_input": { "data": [ - 2010 + 2009 ], "on_conflict": [ - 2017 + 2016 ], "__typename": [ 80 @@ -32640,43 +32632,43 @@ export default { }, "league_season_divisions_bool_exp": { "_and": [ - 2008 + 2007 ], "_not": [ - 2008 + 2007 ], "_or": [ - 2008 + 2007 ], "created_at": [ - 4500 + 4499 ], "division": [ - 1854 + 1853 ], "id": [ - 5001 + 5000 ], "league_division_id": [ - 5001 + 5000 ], "league_season_id": [ - 5001 + 5000 ], "season": [ - 2031 + 2030 ], "standings": [ - 5080 + 5079 ], "standings_aggregate": [ - 5073 + 5072 ], "tournament": [ - 4956 + 4955 ], "tournament_id": [ - 5001 + 5000 ], "__typename": [ 80 @@ -32685,31 +32677,31 @@ export default { "league_season_divisions_constraint": {}, "league_season_divisions_insert_input": { "created_at": [ - 4499 + 4498 ], "division": [ - 1861 + 1860 ], "id": [ - 4999 + 4998 ], "league_division_id": [ - 4999 + 4998 ], "league_season_id": [ - 4999 + 4998 ], "season": [ - 2041 + 2040 ], "standings": [ - 5077 + 5076 ], "tournament": [ - 4965 + 4964 ], "tournament_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -32717,19 +32709,19 @@ export default { }, "league_season_divisions_max_fields": { "created_at": [ - 4499 + 4498 ], "id": [ - 4999 + 4998 ], "league_division_id": [ - 4999 + 4998 ], "league_season_id": [ - 4999 + 4998 ], "tournament_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -32737,19 +32729,19 @@ export default { }, "league_season_divisions_max_order_by": { "created_at": [ - 2952 + 2951 ], "id": [ - 2952 + 2951 ], "league_division_id": [ - 2952 + 2951 ], "league_season_id": [ - 2952 + 2951 ], "tournament_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -32757,19 +32749,19 @@ export default { }, "league_season_divisions_min_fields": { "created_at": [ - 4499 + 4498 ], "id": [ - 4999 + 4998 ], "league_division_id": [ - 4999 + 4998 ], "league_season_id": [ - 4999 + 4998 ], "tournament_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -32777,19 +32769,19 @@ export default { }, "league_season_divisions_min_order_by": { "created_at": [ - 2952 + 2951 ], "id": [ - 2952 + 2951 ], "league_division_id": [ - 2952 + 2951 ], "league_season_id": [ - 2952 + 2951 ], "tournament_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -32800,7 +32792,7 @@ export default { 40 ], "returning": [ - 2001 + 2000 ], "__typename": [ 80 @@ -32808,10 +32800,10 @@ export default { }, "league_season_divisions_obj_rel_insert_input": { "data": [ - 2010 + 2009 ], "on_conflict": [ - 2017 + 2016 ], "__typename": [ 80 @@ -32819,13 +32811,13 @@ export default { }, "league_season_divisions_on_conflict": { "constraint": [ - 2009 + 2008 ], "update_columns": [ - 2024 + 2023 ], "where": [ - 2008 + 2007 ], "__typename": [ 80 @@ -32833,31 +32825,31 @@ export default { }, "league_season_divisions_order_by": { "created_at": [ - 2952 + 2951 ], "division": [ - 1863 + 1862 ], "id": [ - 2952 + 2951 ], "league_division_id": [ - 2952 + 2951 ], "league_season_id": [ - 2952 + 2951 ], "season": [ - 2043 + 2042 ], "standings_aggregate": [ - 5076 + 5075 ], "tournament": [ - 4967 + 4966 ], "tournament_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -32865,7 +32857,7 @@ export default { }, "league_season_divisions_pk_columns_input": { "id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -32874,19 +32866,19 @@ export default { "league_season_divisions_select_column": {}, "league_season_divisions_set_input": { "created_at": [ - 4499 + 4498 ], "id": [ - 4999 + 4998 ], "league_division_id": [ - 4999 + 4998 ], "league_season_id": [ - 4999 + 4998 ], "tournament_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -32894,10 +32886,10 @@ export default { }, "league_season_divisions_stream_cursor_input": { "initial_value": [ - 2023 + 2022 ], "ordering": [ - 314 + 313 ], "__typename": [ 80 @@ -32905,19 +32897,19 @@ export default { }, "league_season_divisions_stream_cursor_value_input": { "created_at": [ - 4499 + 4498 ], "id": [ - 4999 + 4998 ], "league_division_id": [ - 4999 + 4998 ], "league_season_id": [ - 4999 + 4998 ], "tournament_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -32926,10 +32918,10 @@ export default { "league_season_divisions_update_column": {}, "league_season_divisions_updates": { "_set": [ - 2021 + 2020 ], "where": [ - 2008 + 2007 ], "__typename": [ 80 @@ -32940,10 +32932,10 @@ export default { 5 ], "awards": [ - 189, + 188, { "distinct_on": [ - 210, + 209, "[award_recipients_select_column!]" ], "limit": [ @@ -32953,19 +32945,19 @@ export default { 40 ], "order_by": [ - 208, + 207, "[award_recipients_order_by!]" ], "where": [ - 198 + 197 ] } ], "awards_aggregate": [ - 190, + 189, { "distinct_on": [ - 210, + 209, "[award_recipients_select_column!]" ], "limit": [ @@ -32975,11 +32967,11 @@ export default { 40 ], "order_by": [ - 208, + 207, "[award_recipients_order_by!]" ], "where": [ - 198 + 197 ] } ], @@ -32987,10 +32979,10 @@ export default { 5 ], "created_at": [ - 4499 + 4498 ], "created_by_steam_id": [ - 258 + 257 ], "default_best_of": [ 40 @@ -33002,13 +32994,13 @@ export default { 40 ], "e_league_season_status": [ - 840 + 839 ], "games_per_week": [ 40 ], "id": [ - 4999 + 4998 ], "is_league_admin": [ 5 @@ -33017,13 +33009,13 @@ export default { 5 ], "match_options_id": [ - 4999 + 4998 ], "match_weeks": [ - 1878, + 1877, { "distinct_on": [ - 1899, + 1898, "[league_match_weeks_select_column!]" ], "limit": [ @@ -33033,19 +33025,19 @@ export default { 40 ], "order_by": [ - 1897, + 1896, "[league_match_weeks_order_by!]" ], "where": [ - 1887 + 1886 ] } ], "match_weeks_aggregate": [ - 1879, + 1878, { "distinct_on": [ - 1899, + 1898, "[league_match_weeks_select_column!]" ], "limit": [ @@ -33055,11 +33047,11 @@ export default { 40 ], "order_by": [ - 1897, + 1896, "[league_match_weeks_order_by!]" ], "where": [ - 1887 + 1886 ] } ], @@ -33073,10 +33065,10 @@ export default { 40 ], "movements": [ - 2059, + 2058, { "distinct_on": [ - 2080, + 2079, "[league_team_movements_select_column!]" ], "limit": [ @@ -33086,19 +33078,19 @@ export default { 40 ], "order_by": [ - 2078, + 2077, "[league_team_movements_order_by!]" ], "where": [ - 2068 + 2067 ] } ], "movements_aggregate": [ - 2060, + 2059, { "distinct_on": [ - 2080, + 2079, "[league_team_movements_select_column!]" ], "limit": [ @@ -33108,19 +33100,19 @@ export default { 40 ], "order_by": [ - 2078, + 2077, "[league_team_movements_order_by!]" ], "where": [ - 2068 + 2067 ] } ], "my_registration": [ - 2141, + 2140, { "distinct_on": [ - 2163, + 2162, "[league_team_seasons_select_column!]" ], "limit": [ @@ -33130,11 +33122,11 @@ export default { 40 ], "order_by": [ - 2161, + 2160, "[league_team_seasons_order_by!]" ], "where": [ - 2150 + 2149 ] } ], @@ -33142,13 +33134,13 @@ export default { 80 ], "options": [ - 2647 + 2646 ], "player_stats": [ - 5104, + 5103, { "distinct_on": [ - 5130, + 5129, "[v_league_season_player_stats_select_column!]" ], "limit": [ @@ -33158,19 +33150,19 @@ export default { 40 ], "order_by": [ - 5129, + 5128, "[v_league_season_player_stats_order_by!]" ], "where": [ - 5123 + 5122 ] } ], "player_stats_aggregate": [ - 5105, + 5104, { "distinct_on": [ - 5130, + 5129, "[v_league_season_player_stats_select_column!]" ], "limit": [ @@ -33180,11 +33172,11 @@ export default { 40 ], "order_by": [ - 5129, + 5128, "[v_league_season_player_stats_order_by!]" ], "where": [ - 5123 + 5122 ] } ], @@ -33192,7 +33184,7 @@ export default { 40 ], "playoff_round_best_of": [ - 1823, + 1822, { "path": [ 80 @@ -33203,7 +33195,7 @@ export default { 40 ], "playoff_stage_type": [ - 1314 + 1313 ], "playoff_third_place_match": [ 5 @@ -33212,7 +33204,7 @@ export default { 40 ], "regular_season_stage_type": [ - 1314 + 1313 ], "relegate_count": [ 40 @@ -33221,10 +33213,10 @@ export default { 40 ], "relegation_playoffs": [ - 1919, + 1918, { "distinct_on": [ - 1940, + 1939, "[league_relegation_playoffs_select_column!]" ], "limit": [ @@ -33234,19 +33226,19 @@ export default { 40 ], "order_by": [ - 1938, + 1937, "[league_relegation_playoffs_order_by!]" ], "where": [ - 1928 + 1927 ] } ], "relegation_playoffs_aggregate": [ - 1920, + 1919, { "distinct_on": [ - 1940, + 1939, "[league_relegation_playoffs_select_column!]" ], "limit": [ @@ -33256,11 +33248,11 @@ export default { 40 ], "order_by": [ - 1938, + 1937, "[league_relegation_playoffs_order_by!]" ], "where": [ - 1928 + 1927 ] } ], @@ -33268,13 +33260,13 @@ export default { 40 ], "roster_lock_at": [ - 4499 + 4498 ], "season_divisions": [ - 2001, + 2000, { "distinct_on": [ - 2020, + 2019, "[league_season_divisions_select_column!]" ], "limit": [ @@ -33284,19 +33276,19 @@ export default { 40 ], "order_by": [ - 2018, + 2017, "[league_season_divisions_order_by!]" ], "where": [ - 2008 + 2007 ] } ], "season_divisions_aggregate": [ - 2002, + 2001, { "distinct_on": [ - 2020, + 2019, "[league_season_divisions_select_column!]" ], "limit": [ @@ -33306,11 +33298,11 @@ export default { 40 ], "order_by": [ - 2018, + 2017, "[league_season_divisions_order_by!]" ], "where": [ - 2008 + 2007 ] } ], @@ -33318,16 +33310,16 @@ export default { 40 ], "signup_closes_at": [ - 4499 + 4498 ], "signup_opens_at": [ - 4499 + 4498 ], "standings": [ - 5071, + 5070, { "distinct_on": [ - 5087, + 5086, "[v_league_division_standings_select_column!]" ], "limit": [ @@ -33337,19 +33329,19 @@ export default { 40 ], "order_by": [ - 5086, + 5085, "[v_league_division_standings_order_by!]" ], "where": [ - 5080 + 5079 ] } ], "standings_aggregate": [ - 5072, + 5071, { "distinct_on": [ - 5087, + 5086, "[v_league_division_standings_select_column!]" ], "limit": [ @@ -33359,25 +33351,25 @@ export default { 40 ], "order_by": [ - 5086, + 5085, "[v_league_division_standings_order_by!]" ], "where": [ - 5080 + 5079 ] } ], "starts_at": [ - 4499 + 4498 ], "status": [ - 845 + 844 ], "team_seasons": [ - 2141, + 2140, { "distinct_on": [ - 2163, + 2162, "[league_team_seasons_select_column!]" ], "limit": [ @@ -33387,19 +33379,19 @@ export default { 40 ], "order_by": [ - 2161, + 2160, "[league_team_seasons_order_by!]" ], "where": [ - 2150 + 2149 ] } ], "team_seasons_aggregate": [ - 2142, + 2141, { "distinct_on": [ - 2163, + 2162, "[league_team_seasons_select_column!]" ], "limit": [ @@ -33409,16 +33401,16 @@ export default { 40 ], "order_by": [ - 2161, + 2160, "[league_team_seasons_order_by!]" ], "where": [ - 2150 + 2149 ] } ], "week_best_of": [ - 1823, + 1822, { "path": [ 80 @@ -33431,10 +33423,10 @@ export default { }, "league_seasons_aggregate": { "aggregate": [ - 2028 + 2027 ], "nodes": [ - 2026 + 2025 ], "__typename": [ 80 @@ -33442,13 +33434,13 @@ export default { }, "league_seasons_aggregate_fields": { "avg": [ - 2030 + 2029 ], "count": [ 40, { "columns": [ - 2046, + 2045, "[league_seasons_select_column!]" ], "distinct": [ @@ -33457,31 +33449,31 @@ export default { } ], "max": [ - 2038 + 2037 ], "min": [ - 2039 + 2038 ], "stddev": [ - 2048 + 2047 ], "stddev_pop": [ - 2049 + 2048 ], "stddev_samp": [ - 2050 + 2049 ], "sum": [ - 2053 + 2052 ], "var_pop": [ - 2056 + 2055 ], "var_samp": [ - 2057 + 2056 ], "variance": [ - 2058 + 2057 ], "__typename": [ 80 @@ -33489,10 +33481,10 @@ export default { }, "league_seasons_append_input": { "playoff_round_best_of": [ - 1823 + 1822 ], "week_best_of": [ - 1823 + 1822 ], "__typename": [ 80 @@ -33550,31 +33542,31 @@ export default { }, "league_seasons_bool_exp": { "_and": [ - 2031 + 2030 ], "_not": [ - 2031 + 2030 ], "_or": [ - 2031 + 2030 ], "auto_regular_season_format": [ 6 ], "awards": [ - 198 + 197 ], "awards_aggregate": [ - 191 + 190 ], "can_register": [ 6 ], "created_at": [ - 4500 + 4499 ], "created_by_steam_id": [ - 260 + 259 ], "default_best_of": [ 41 @@ -33586,13 +33578,13 @@ export default { 41 ], "e_league_season_status": [ - 843 + 842 ], "games_per_week": [ 41 ], "id": [ - 5001 + 5000 ], "is_league_admin": [ 6 @@ -33601,13 +33593,13 @@ export default { 6 ], "match_options_id": [ - 5001 + 5000 ], "match_weeks": [ - 1887 + 1886 ], "match_weeks_aggregate": [ - 1880 + 1879 ], "match_weeks_count": [ 41 @@ -33619,37 +33611,37 @@ export default { 41 ], "movements": [ - 2068 + 2067 ], "movements_aggregate": [ - 2061 + 2060 ], "my_registration": [ - 2150 + 2149 ], "name": [ 82 ], "options": [ - 2651 + 2650 ], "player_stats": [ - 5123 + 5122 ], "player_stats_aggregate": [ - 5106 + 5105 ], "playoff_best_of": [ 41 ], "playoff_round_best_of": [ - 1825 + 1824 ], "playoff_seats": [ 41 ], "playoff_stage_type": [ - 1315 + 1314 ], "playoff_third_place_match": [ 6 @@ -33658,7 +33650,7 @@ export default { 41 ], "regular_season_stage_type": [ - 1315 + 1314 ], "relegate_count": [ 41 @@ -33667,52 +33659,52 @@ export default { 41 ], "relegation_playoffs": [ - 1928 + 1927 ], "relegation_playoffs_aggregate": [ - 1921 + 1920 ], "relegation_up_count": [ 41 ], "roster_lock_at": [ - 4500 + 4499 ], "season_divisions": [ - 2008 + 2007 ], "season_divisions_aggregate": [ - 2003 + 2002 ], "season_number": [ 41 ], "signup_closes_at": [ - 4500 + 4499 ], "signup_opens_at": [ - 4500 + 4499 ], "standings": [ - 5080 + 5079 ], "standings_aggregate": [ - 5073 + 5072 ], "starts_at": [ - 4500 + 4499 ], "status": [ - 846 + 845 ], "team_seasons": [ - 2150 + 2149 ], "team_seasons_aggregate": [ - 2143 + 2142 ], "week_best_of": [ - 1825 + 1824 ], "__typename": [ 80 @@ -33754,7 +33746,7 @@ export default { }, "league_seasons_inc_input": { "created_by_steam_id": [ - 258 + 257 ], "default_best_of": [ 40 @@ -33807,13 +33799,13 @@ export default { 5 ], "awards": [ - 195 + 194 ], "created_at": [ - 4499 + 4498 ], "created_by_steam_id": [ - 258 + 257 ], "default_best_of": [ 40 @@ -33825,19 +33817,19 @@ export default { 40 ], "e_league_season_status": [ - 851 + 850 ], "games_per_week": [ 40 ], "id": [ - 4999 + 4998 ], "match_options_id": [ - 4999 + 4998 ], "match_weeks": [ - 1884 + 1883 ], "match_weeks_count": [ 40 @@ -33849,28 +33841,28 @@ export default { 40 ], "movements": [ - 2065 + 2064 ], "name": [ 80 ], "options": [ - 2658 + 2657 ], "player_stats": [ - 5120 + 5119 ], "playoff_best_of": [ 40 ], "playoff_round_best_of": [ - 1823 + 1822 ], "playoff_seats": [ 40 ], "playoff_stage_type": [ - 1314 + 1313 ], "playoff_third_place_match": [ 5 @@ -33879,7 +33871,7 @@ export default { 40 ], "regular_season_stage_type": [ - 1314 + 1313 ], "relegate_count": [ 40 @@ -33888,40 +33880,40 @@ export default { 40 ], "relegation_playoffs": [ - 1925 + 1924 ], "relegation_up_count": [ 40 ], "roster_lock_at": [ - 4499 + 4498 ], "season_divisions": [ - 2007 + 2006 ], "season_number": [ 40 ], "signup_closes_at": [ - 4499 + 4498 ], "signup_opens_at": [ - 4499 + 4498 ], "standings": [ - 5077 + 5076 ], "starts_at": [ - 4499 + 4498 ], "status": [ - 845 + 844 ], "team_seasons": [ - 2147 + 2146 ], "week_best_of": [ - 1823 + 1822 ], "__typename": [ 80 @@ -33929,10 +33921,10 @@ export default { }, "league_seasons_max_fields": { "created_at": [ - 4499 + 4498 ], "created_by_steam_id": [ - 258 + 257 ], "default_best_of": [ 40 @@ -33947,10 +33939,10 @@ export default { 40 ], "id": [ - 4999 + 4998 ], "match_options_id": [ - 4999 + 4998 ], "match_weeks_count": [ 40 @@ -33983,19 +33975,19 @@ export default { 40 ], "roster_lock_at": [ - 4499 + 4498 ], "season_number": [ 40 ], "signup_closes_at": [ - 4499 + 4498 ], "signup_opens_at": [ - 4499 + 4498 ], "starts_at": [ - 4499 + 4498 ], "__typename": [ 80 @@ -34003,10 +33995,10 @@ export default { }, "league_seasons_min_fields": { "created_at": [ - 4499 + 4498 ], "created_by_steam_id": [ - 258 + 257 ], "default_best_of": [ 40 @@ -34021,10 +34013,10 @@ export default { 40 ], "id": [ - 4999 + 4998 ], "match_options_id": [ - 4999 + 4998 ], "match_weeks_count": [ 40 @@ -34057,19 +34049,19 @@ export default { 40 ], "roster_lock_at": [ - 4499 + 4498 ], "season_number": [ 40 ], "signup_closes_at": [ - 4499 + 4498 ], "signup_opens_at": [ - 4499 + 4498 ], "starts_at": [ - 4499 + 4498 ], "__typename": [ 80 @@ -34080,7 +34072,7 @@ export default { 40 ], "returning": [ - 2026 + 2025 ], "__typename": [ 80 @@ -34088,10 +34080,10 @@ export default { }, "league_seasons_obj_rel_insert_input": { "data": [ - 2037 + 2036 ], "on_conflict": [ - 2042 + 2041 ], "__typename": [ 80 @@ -34099,13 +34091,13 @@ export default { }, "league_seasons_on_conflict": { "constraint": [ - 2032 + 2031 ], "update_columns": [ - 2054 + 2053 ], "where": [ - 2031 + 2030 ], "__typename": [ 80 @@ -34113,136 +34105,136 @@ export default { }, "league_seasons_order_by": { "auto_regular_season_format": [ - 2952 + 2951 ], "awards_aggregate": [ - 194 + 193 ], "can_register": [ - 2952 + 2951 ], "created_at": [ - 2952 + 2951 ], "created_by_steam_id": [ - 2952 + 2951 ], "default_best_of": [ - 2952 + 2951 ], "direct_promote_count": [ - 2952 + 2951 ], "direct_relegate_count": [ - 2952 + 2951 ], "e_league_season_status": [ - 853 + 852 ], "games_per_week": [ - 2952 + 2951 ], "id": [ - 2952 + 2951 ], "is_league_admin": [ - 2952 + 2951 ], "is_roster_locked": [ - 2952 + 2951 ], "match_options_id": [ - 2952 + 2951 ], "match_weeks_aggregate": [ - 1883 + 1882 ], "match_weeks_count": [ - 2952 + 2951 ], "max_roster_size": [ - 2952 + 2951 ], "min_roster_size": [ - 2952 + 2951 ], "movements_aggregate": [ - 2064 + 2063 ], "my_registration_aggregate": [ - 2146 + 2145 ], "name": [ - 2952 + 2951 ], "options": [ - 2660 + 2659 ], "player_stats_aggregate": [ - 5119 + 5118 ], "playoff_best_of": [ - 2952 + 2951 ], "playoff_round_best_of": [ - 2952 + 2951 ], "playoff_seats": [ - 2952 + 2951 ], "playoff_stage_type": [ - 2952 + 2951 ], "playoff_third_place_match": [ - 2952 + 2951 ], "promote_count": [ - 2952 + 2951 ], "regular_season_stage_type": [ - 2952 + 2951 ], "relegate_count": [ - 2952 + 2951 ], "relegation_down_count": [ - 2952 + 2951 ], "relegation_playoffs_aggregate": [ - 1924 + 1923 ], "relegation_up_count": [ - 2952 + 2951 ], "roster_lock_at": [ - 2952 + 2951 ], "season_divisions_aggregate": [ - 2006 + 2005 ], "season_number": [ - 2952 + 2951 ], "signup_closes_at": [ - 2952 + 2951 ], "signup_opens_at": [ - 2952 + 2951 ], "standings_aggregate": [ - 5076 + 5075 ], "starts_at": [ - 2952 + 2951 ], "status": [ - 2952 + 2951 ], "team_seasons_aggregate": [ - 2146 + 2145 ], "week_best_of": [ - 2952 + 2951 ], "__typename": [ 80 @@ -34250,7 +34242,7 @@ export default { }, "league_seasons_pk_columns_input": { "id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -34258,10 +34250,10 @@ export default { }, "league_seasons_prepend_input": { "playoff_round_best_of": [ - 1823 + 1822 ], "week_best_of": [ - 1823 + 1822 ], "__typename": [ 80 @@ -34273,10 +34265,10 @@ export default { 5 ], "created_at": [ - 4499 + 4498 ], "created_by_steam_id": [ - 258 + 257 ], "default_best_of": [ 40 @@ -34291,10 +34283,10 @@ export default { 40 ], "id": [ - 4999 + 4998 ], "match_options_id": [ - 4999 + 4998 ], "match_weeks_count": [ 40 @@ -34312,13 +34304,13 @@ export default { 40 ], "playoff_round_best_of": [ - 1823 + 1822 ], "playoff_seats": [ 40 ], "playoff_stage_type": [ - 1314 + 1313 ], "playoff_third_place_match": [ 5 @@ -34327,7 +34319,7 @@ export default { 40 ], "regular_season_stage_type": [ - 1314 + 1313 ], "relegate_count": [ 40 @@ -34339,25 +34331,25 @@ export default { 40 ], "roster_lock_at": [ - 4499 + 4498 ], "season_number": [ 40 ], "signup_closes_at": [ - 4499 + 4498 ], "signup_opens_at": [ - 4499 + 4498 ], "starts_at": [ - 4499 + 4498 ], "status": [ - 845 + 844 ], "week_best_of": [ - 1823 + 1822 ], "__typename": [ 80 @@ -34515,10 +34507,10 @@ export default { }, "league_seasons_stream_cursor_input": { "initial_value": [ - 2052 + 2051 ], "ordering": [ - 314 + 313 ], "__typename": [ 80 @@ -34529,10 +34521,10 @@ export default { 5 ], "created_at": [ - 4499 + 4498 ], "created_by_steam_id": [ - 258 + 257 ], "default_best_of": [ 40 @@ -34547,10 +34539,10 @@ export default { 40 ], "id": [ - 4999 + 4998 ], "match_options_id": [ - 4999 + 4998 ], "match_weeks_count": [ 40 @@ -34568,13 +34560,13 @@ export default { 40 ], "playoff_round_best_of": [ - 1823 + 1822 ], "playoff_seats": [ 40 ], "playoff_stage_type": [ - 1314 + 1313 ], "playoff_third_place_match": [ 5 @@ -34583,7 +34575,7 @@ export default { 40 ], "regular_season_stage_type": [ - 1314 + 1313 ], "relegate_count": [ 40 @@ -34595,25 +34587,25 @@ export default { 40 ], "roster_lock_at": [ - 4499 + 4498 ], "season_number": [ 40 ], "signup_closes_at": [ - 4499 + 4498 ], "signup_opens_at": [ - 4499 + 4498 ], "starts_at": [ - 4499 + 4498 ], "status": [ - 845 + 844 ], "week_best_of": [ - 1823 + 1822 ], "__typename": [ 80 @@ -34621,7 +34613,7 @@ export default { }, "league_seasons_sum_fields": { "created_by_steam_id": [ - 258 + 257 ], "default_best_of": [ 40 @@ -34672,28 +34664,28 @@ export default { "league_seasons_update_column": {}, "league_seasons_updates": { "_append": [ - 2029 + 2028 ], "_delete_at_path": [ - 2033 + 2032 ], "_delete_elem": [ - 2034 + 2033 ], "_delete_key": [ - 2035 + 2034 ], "_inc": [ - 2036 + 2035 ], "_prepend": [ - 2045 + 2044 ], "_set": [ - 2047 + 2046 ], "where": [ - 2031 + 2030 ], "__typename": [ 80 @@ -34851,58 +34843,58 @@ export default { }, "league_team_movements": { "approved_at": [ - 4499 + 4498 ], "approved_by": [ - 3910 + 3909 ], "approved_by_steam_id": [ - 258 + 257 ], "computed_to_division": [ - 1850 + 1849 ], "computed_to_division_id": [ - 4999 + 4998 ], "created_at": [ - 4499 + 4498 ], "e_movement_type": [ - 777 + 776 ], "final_rank": [ 40 ], "final_to_division": [ - 1850 + 1849 ], "final_to_division_id": [ - 4999 + 4998 ], "from_division": [ - 1850 + 1849 ], "from_division_id": [ - 4999 + 4998 ], "id": [ - 4999 + 4998 ], "league_season_id": [ - 4999 + 4998 ], "league_team": [ - 2183 + 2182 ], "league_team_id": [ - 4999 + 4998 ], "season": [ - 2026 + 2025 ], "type": [ - 782 + 781 ], "__typename": [ 80 @@ -34910,10 +34902,10 @@ export default { }, "league_team_movements_aggregate": { "aggregate": [ - 2063 + 2062 ], "nodes": [ - 2059 + 2058 ], "__typename": [ 80 @@ -34921,7 +34913,7 @@ export default { }, "league_team_movements_aggregate_bool_exp": { "count": [ - 2062 + 2061 ], "__typename": [ 80 @@ -34929,13 +34921,13 @@ export default { }, "league_team_movements_aggregate_bool_exp_count": { "arguments": [ - 2080 + 2079 ], "distinct": [ 5 ], "filter": [ - 2068 + 2067 ], "predicate": [ 41 @@ -34946,13 +34938,13 @@ export default { }, "league_team_movements_aggregate_fields": { "avg": [ - 2066 + 2065 ], "count": [ 40, { "columns": [ - 2080, + 2079, "[league_team_movements_select_column!]" ], "distinct": [ @@ -34961,31 +34953,31 @@ export default { } ], "max": [ - 2072 + 2071 ], "min": [ - 2074 + 2073 ], "stddev": [ - 2082 + 2081 ], "stddev_pop": [ - 2084 + 2083 ], "stddev_samp": [ - 2086 + 2085 ], "sum": [ - 2090 + 2089 ], "var_pop": [ - 2094 + 2093 ], "var_samp": [ - 2096 + 2095 ], "variance": [ - 2098 + 2097 ], "__typename": [ 80 @@ -34993,37 +34985,37 @@ export default { }, "league_team_movements_aggregate_order_by": { "avg": [ - 2067 + 2066 ], "count": [ - 2952 + 2951 ], "max": [ - 2073 + 2072 ], "min": [ - 2075 + 2074 ], "stddev": [ - 2083 + 2082 ], "stddev_pop": [ - 2085 + 2084 ], "stddev_samp": [ - 2087 + 2086 ], "sum": [ - 2091 + 2090 ], "var_pop": [ - 2095 + 2094 ], "var_samp": [ - 2097 + 2096 ], "variance": [ - 2099 + 2098 ], "__typename": [ 80 @@ -35031,10 +35023,10 @@ export default { }, "league_team_movements_arr_rel_insert_input": { "data": [ - 2071 + 2070 ], "on_conflict": [ - 2077 + 2076 ], "__typename": [ 80 @@ -35053,10 +35045,10 @@ export default { }, "league_team_movements_avg_order_by": { "approved_by_steam_id": [ - 2952 + 2951 ], "final_rank": [ - 2952 + 2951 ], "__typename": [ 80 @@ -35064,67 +35056,67 @@ export default { }, "league_team_movements_bool_exp": { "_and": [ - 2068 + 2067 ], "_not": [ - 2068 + 2067 ], "_or": [ - 2068 + 2067 ], "approved_at": [ - 4500 + 4499 ], "approved_by": [ - 3914 + 3913 ], "approved_by_steam_id": [ - 260 + 259 ], "computed_to_division": [ - 1854 + 1853 ], "computed_to_division_id": [ - 5001 + 5000 ], "created_at": [ - 4500 + 4499 ], "e_movement_type": [ - 780 + 779 ], "final_rank": [ 41 ], "final_to_division": [ - 1854 + 1853 ], "final_to_division_id": [ - 5001 + 5000 ], "from_division": [ - 1854 + 1853 ], "from_division_id": [ - 5001 + 5000 ], "id": [ - 5001 + 5000 ], "league_season_id": [ - 5001 + 5000 ], "league_team": [ - 2186 + 2185 ], "league_team_id": [ - 5001 + 5000 ], "season": [ - 2031 + 2030 ], "type": [ - 783 + 782 ], "__typename": [ 80 @@ -35133,7 +35125,7 @@ export default { "league_team_movements_constraint": {}, "league_team_movements_inc_input": { "approved_by_steam_id": [ - 258 + 257 ], "final_rank": [ 40 @@ -35144,58 +35136,58 @@ export default { }, "league_team_movements_insert_input": { "approved_at": [ - 4499 + 4498 ], "approved_by": [ - 3921 + 3920 ], "approved_by_steam_id": [ - 258 + 257 ], "computed_to_division": [ - 1861 + 1860 ], "computed_to_division_id": [ - 4999 + 4998 ], "created_at": [ - 4499 + 4498 ], "e_movement_type": [ - 788 + 787 ], "final_rank": [ 40 ], "final_to_division": [ - 1861 + 1860 ], "final_to_division_id": [ - 4999 + 4998 ], "from_division": [ - 1861 + 1860 ], "from_division_id": [ - 4999 + 4998 ], "id": [ - 4999 + 4998 ], "league_season_id": [ - 4999 + 4998 ], "league_team": [ - 2192 + 2191 ], "league_team_id": [ - 4999 + 4998 ], "season": [ - 2041 + 2040 ], "type": [ - 782 + 781 ], "__typename": [ 80 @@ -35203,34 +35195,34 @@ export default { }, "league_team_movements_max_fields": { "approved_at": [ - 4499 + 4498 ], "approved_by_steam_id": [ - 258 + 257 ], "computed_to_division_id": [ - 4999 + 4998 ], "created_at": [ - 4499 + 4498 ], "final_rank": [ 40 ], "final_to_division_id": [ - 4999 + 4998 ], "from_division_id": [ - 4999 + 4998 ], "id": [ - 4999 + 4998 ], "league_season_id": [ - 4999 + 4998 ], "league_team_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -35238,34 +35230,34 @@ export default { }, "league_team_movements_max_order_by": { "approved_at": [ - 2952 + 2951 ], "approved_by_steam_id": [ - 2952 + 2951 ], "computed_to_division_id": [ - 2952 + 2951 ], "created_at": [ - 2952 + 2951 ], "final_rank": [ - 2952 + 2951 ], "final_to_division_id": [ - 2952 + 2951 ], "from_division_id": [ - 2952 + 2951 ], "id": [ - 2952 + 2951 ], "league_season_id": [ - 2952 + 2951 ], "league_team_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -35273,34 +35265,34 @@ export default { }, "league_team_movements_min_fields": { "approved_at": [ - 4499 + 4498 ], "approved_by_steam_id": [ - 258 + 257 ], "computed_to_division_id": [ - 4999 + 4998 ], "created_at": [ - 4499 + 4498 ], "final_rank": [ 40 ], "final_to_division_id": [ - 4999 + 4998 ], "from_division_id": [ - 4999 + 4998 ], "id": [ - 4999 + 4998 ], "league_season_id": [ - 4999 + 4998 ], "league_team_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -35308,34 +35300,34 @@ export default { }, "league_team_movements_min_order_by": { "approved_at": [ - 2952 + 2951 ], "approved_by_steam_id": [ - 2952 + 2951 ], "computed_to_division_id": [ - 2952 + 2951 ], "created_at": [ - 2952 + 2951 ], "final_rank": [ - 2952 + 2951 ], "final_to_division_id": [ - 2952 + 2951 ], "from_division_id": [ - 2952 + 2951 ], "id": [ - 2952 + 2951 ], "league_season_id": [ - 2952 + 2951 ], "league_team_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -35346,7 +35338,7 @@ export default { 40 ], "returning": [ - 2059 + 2058 ], "__typename": [ 80 @@ -35354,13 +35346,13 @@ export default { }, "league_team_movements_on_conflict": { "constraint": [ - 2069 + 2068 ], "update_columns": [ - 2092 + 2091 ], "where": [ - 2068 + 2067 ], "__typename": [ 80 @@ -35368,58 +35360,58 @@ export default { }, "league_team_movements_order_by": { "approved_at": [ - 2952 + 2951 ], "approved_by": [ - 3923 + 3922 ], "approved_by_steam_id": [ - 2952 + 2951 ], "computed_to_division": [ - 1863 + 1862 ], "computed_to_division_id": [ - 2952 + 2951 ], "created_at": [ - 2952 + 2951 ], "e_movement_type": [ - 790 + 789 ], "final_rank": [ - 2952 + 2951 ], "final_to_division": [ - 1863 + 1862 ], "final_to_division_id": [ - 2952 + 2951 ], "from_division": [ - 1863 + 1862 ], "from_division_id": [ - 2952 + 2951 ], "id": [ - 2952 + 2951 ], "league_season_id": [ - 2952 + 2951 ], "league_team": [ - 2194 + 2193 ], "league_team_id": [ - 2952 + 2951 ], "season": [ - 2043 + 2042 ], "type": [ - 2952 + 2951 ], "__typename": [ 80 @@ -35427,7 +35419,7 @@ export default { }, "league_team_movements_pk_columns_input": { "id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -35436,37 +35428,37 @@ export default { "league_team_movements_select_column": {}, "league_team_movements_set_input": { "approved_at": [ - 4499 + 4498 ], "approved_by_steam_id": [ - 258 + 257 ], "computed_to_division_id": [ - 4999 + 4998 ], "created_at": [ - 4499 + 4498 ], "final_rank": [ 40 ], "final_to_division_id": [ - 4999 + 4998 ], "from_division_id": [ - 4999 + 4998 ], "id": [ - 4999 + 4998 ], "league_season_id": [ - 4999 + 4998 ], "league_team_id": [ - 4999 + 4998 ], "type": [ - 782 + 781 ], "__typename": [ 80 @@ -35485,10 +35477,10 @@ export default { }, "league_team_movements_stddev_order_by": { "approved_by_steam_id": [ - 2952 + 2951 ], "final_rank": [ - 2952 + 2951 ], "__typename": [ 80 @@ -35507,10 +35499,10 @@ export default { }, "league_team_movements_stddev_pop_order_by": { "approved_by_steam_id": [ - 2952 + 2951 ], "final_rank": [ - 2952 + 2951 ], "__typename": [ 80 @@ -35529,10 +35521,10 @@ export default { }, "league_team_movements_stddev_samp_order_by": { "approved_by_steam_id": [ - 2952 + 2951 ], "final_rank": [ - 2952 + 2951 ], "__typename": [ 80 @@ -35540,10 +35532,10 @@ export default { }, "league_team_movements_stream_cursor_input": { "initial_value": [ - 2089 + 2088 ], "ordering": [ - 314 + 313 ], "__typename": [ 80 @@ -35551,37 +35543,37 @@ export default { }, "league_team_movements_stream_cursor_value_input": { "approved_at": [ - 4499 + 4498 ], "approved_by_steam_id": [ - 258 + 257 ], "computed_to_division_id": [ - 4999 + 4998 ], "created_at": [ - 4499 + 4498 ], "final_rank": [ 40 ], "final_to_division_id": [ - 4999 + 4998 ], "from_division_id": [ - 4999 + 4998 ], "id": [ - 4999 + 4998 ], "league_season_id": [ - 4999 + 4998 ], "league_team_id": [ - 4999 + 4998 ], "type": [ - 782 + 781 ], "__typename": [ 80 @@ -35589,7 +35581,7 @@ export default { }, "league_team_movements_sum_fields": { "approved_by_steam_id": [ - 258 + 257 ], "final_rank": [ 40 @@ -35600,10 +35592,10 @@ export default { }, "league_team_movements_sum_order_by": { "approved_by_steam_id": [ - 2952 + 2951 ], "final_rank": [ - 2952 + 2951 ], "__typename": [ 80 @@ -35612,13 +35604,13 @@ export default { "league_team_movements_update_column": {}, "league_team_movements_updates": { "_inc": [ - 2070 + 2069 ], "_set": [ - 2081 + 2080 ], "where": [ - 2068 + 2067 ], "__typename": [ 80 @@ -35637,10 +35629,10 @@ export default { }, "league_team_movements_var_pop_order_by": { "approved_by_steam_id": [ - 2952 + 2951 ], "final_rank": [ - 2952 + 2951 ], "__typename": [ 80 @@ -35659,10 +35651,10 @@ export default { }, "league_team_movements_var_samp_order_by": { "approved_by_steam_id": [ - 2952 + 2951 ], "final_rank": [ - 2952 + 2951 ], "__typename": [ 80 @@ -35681,10 +35673,10 @@ export default { }, "league_team_movements_variance_order_by": { "approved_by_steam_id": [ - 2952 + 2951 ], "final_rank": [ - 2952 + 2951 ], "__typename": [ 80 @@ -35692,28 +35684,28 @@ export default { }, "league_team_rosters": { "added_at": [ - 4499 + 4498 ], "league_team_season_id": [ - 4999 + 4998 ], "player": [ - 3910 + 3909 ], "player_steam_id": [ - 258 + 257 ], "removed_at": [ - 4499 + 4498 ], "removed_reason": [ 80 ], "status": [ - 1253 + 1252 ], "team_season": [ - 2141 + 2140 ], "__typename": [ 80 @@ -35721,10 +35713,10 @@ export default { }, "league_team_rosters_aggregate": { "aggregate": [ - 2104 + 2103 ], "nodes": [ - 2100 + 2099 ], "__typename": [ 80 @@ -35732,7 +35724,7 @@ export default { }, "league_team_rosters_aggregate_bool_exp": { "count": [ - 2103 + 2102 ], "__typename": [ 80 @@ -35740,13 +35732,13 @@ export default { }, "league_team_rosters_aggregate_bool_exp_count": { "arguments": [ - 2121 + 2120 ], "distinct": [ 5 ], "filter": [ - 2109 + 2108 ], "predicate": [ 41 @@ -35757,13 +35749,13 @@ export default { }, "league_team_rosters_aggregate_fields": { "avg": [ - 2107 + 2106 ], "count": [ 40, { "columns": [ - 2121, + 2120, "[league_team_rosters_select_column!]" ], "distinct": [ @@ -35771,6 +35763,44 @@ export default { ] } ], + "max": [ + 2112 + ], + "min": [ + 2114 + ], + "stddev": [ + 2122 + ], + "stddev_pop": [ + 2124 + ], + "stddev_samp": [ + 2126 + ], + "sum": [ + 2130 + ], + "var_pop": [ + 2134 + ], + "var_samp": [ + 2136 + ], + "variance": [ + 2138 + ], + "__typename": [ + 80 + ] + }, + "league_team_rosters_aggregate_order_by": { + "avg": [ + 2107 + ], + "count": [ + 2951 + ], "max": [ 2113 ], @@ -35802,50 +35832,12 @@ export default { 80 ] }, - "league_team_rosters_aggregate_order_by": { - "avg": [ - 2108 - ], - "count": [ - 2952 - ], - "max": [ - 2114 - ], - "min": [ - 2116 - ], - "stddev": [ - 2124 - ], - "stddev_pop": [ - 2126 - ], - "stddev_samp": [ - 2128 - ], - "sum": [ - 2132 - ], - "var_pop": [ - 2136 - ], - "var_samp": [ - 2138 - ], - "variance": [ - 2140 - ], - "__typename": [ - 80 - ] - }, "league_team_rosters_arr_rel_insert_input": { "data": [ - 2112 + 2111 ], "on_conflict": [ - 2118 + 2117 ], "__typename": [ 80 @@ -35861,7 +35853,7 @@ export default { }, "league_team_rosters_avg_order_by": { "player_steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -35869,37 +35861,37 @@ export default { }, "league_team_rosters_bool_exp": { "_and": [ - 2109 + 2108 ], "_not": [ - 2109 + 2108 ], "_or": [ - 2109 + 2108 ], "added_at": [ - 4500 + 4499 ], "league_team_season_id": [ - 5001 + 5000 ], "player": [ - 3914 + 3913 ], "player_steam_id": [ - 260 + 259 ], "removed_at": [ - 4500 + 4499 ], "removed_reason": [ 82 ], "status": [ - 1254 + 1253 ], "team_season": [ - 2150 + 2149 ], "__typename": [ 80 @@ -35908,7 +35900,7 @@ export default { "league_team_rosters_constraint": {}, "league_team_rosters_inc_input": { "player_steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -35916,28 +35908,28 @@ export default { }, "league_team_rosters_insert_input": { "added_at": [ - 4499 + 4498 ], "league_team_season_id": [ - 4999 + 4998 ], "player": [ - 3921 + 3920 ], "player_steam_id": [ - 258 + 257 ], "removed_at": [ - 4499 + 4498 ], "removed_reason": [ 80 ], "status": [ - 1253 + 1252 ], "team_season": [ - 2159 + 2158 ], "__typename": [ 80 @@ -35945,16 +35937,16 @@ export default { }, "league_team_rosters_max_fields": { "added_at": [ - 4499 + 4498 ], "league_team_season_id": [ - 4999 + 4998 ], "player_steam_id": [ - 258 + 257 ], "removed_at": [ - 4499 + 4498 ], "removed_reason": [ 80 @@ -35965,19 +35957,19 @@ export default { }, "league_team_rosters_max_order_by": { "added_at": [ - 2952 + 2951 ], "league_team_season_id": [ - 2952 + 2951 ], "player_steam_id": [ - 2952 + 2951 ], "removed_at": [ - 2952 + 2951 ], "removed_reason": [ - 2952 + 2951 ], "__typename": [ 80 @@ -35985,16 +35977,16 @@ export default { }, "league_team_rosters_min_fields": { "added_at": [ - 4499 + 4498 ], "league_team_season_id": [ - 4999 + 4998 ], "player_steam_id": [ - 258 + 257 ], "removed_at": [ - 4499 + 4498 ], "removed_reason": [ 80 @@ -36005,19 +35997,19 @@ export default { }, "league_team_rosters_min_order_by": { "added_at": [ - 2952 + 2951 ], "league_team_season_id": [ - 2952 + 2951 ], "player_steam_id": [ - 2952 + 2951 ], "removed_at": [ - 2952 + 2951 ], "removed_reason": [ - 2952 + 2951 ], "__typename": [ 80 @@ -36028,7 +36020,7 @@ export default { 40 ], "returning": [ - 2100 + 2099 ], "__typename": [ 80 @@ -36036,13 +36028,13 @@ export default { }, "league_team_rosters_on_conflict": { "constraint": [ - 2110 + 2109 ], "update_columns": [ - 2133 + 2132 ], "where": [ - 2109 + 2108 ], "__typename": [ 80 @@ -36050,28 +36042,28 @@ export default { }, "league_team_rosters_order_by": { "added_at": [ - 2952 + 2951 ], "league_team_season_id": [ - 2952 + 2951 ], "player": [ - 3923 + 3922 ], "player_steam_id": [ - 2952 + 2951 ], "removed_at": [ - 2952 + 2951 ], "removed_reason": [ - 2952 + 2951 ], "status": [ - 2952 + 2951 ], "team_season": [ - 2161 + 2160 ], "__typename": [ 80 @@ -36079,10 +36071,10 @@ export default { }, "league_team_rosters_pk_columns_input": { "league_team_season_id": [ - 4999 + 4998 ], "player_steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -36091,22 +36083,22 @@ export default { "league_team_rosters_select_column": {}, "league_team_rosters_set_input": { "added_at": [ - 4499 + 4498 ], "league_team_season_id": [ - 4999 + 4998 ], "player_steam_id": [ - 258 + 257 ], "removed_at": [ - 4499 + 4498 ], "removed_reason": [ 80 ], "status": [ - 1253 + 1252 ], "__typename": [ 80 @@ -36122,7 +36114,7 @@ export default { }, "league_team_rosters_stddev_order_by": { "player_steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -36138,7 +36130,7 @@ export default { }, "league_team_rosters_stddev_pop_order_by": { "player_steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -36154,7 +36146,7 @@ export default { }, "league_team_rosters_stddev_samp_order_by": { "player_steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -36162,10 +36154,10 @@ export default { }, "league_team_rosters_stream_cursor_input": { "initial_value": [ - 2130 + 2129 ], "ordering": [ - 314 + 313 ], "__typename": [ 80 @@ -36173,22 +36165,22 @@ export default { }, "league_team_rosters_stream_cursor_value_input": { "added_at": [ - 4499 + 4498 ], "league_team_season_id": [ - 4999 + 4998 ], "player_steam_id": [ - 258 + 257 ], "removed_at": [ - 4499 + 4498 ], "removed_reason": [ 80 ], "status": [ - 1253 + 1252 ], "__typename": [ 80 @@ -36196,7 +36188,7 @@ export default { }, "league_team_rosters_sum_fields": { "player_steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -36204,7 +36196,7 @@ export default { }, "league_team_rosters_sum_order_by": { "player_steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -36213,13 +36205,13 @@ export default { "league_team_rosters_update_column": {}, "league_team_rosters_updates": { "_inc": [ - 2111 + 2110 ], "_set": [ - 2122 + 2121 ], "where": [ - 2109 + 2108 ], "__typename": [ 80 @@ -36235,7 +36227,7 @@ export default { }, "league_team_rosters_var_pop_order_by": { "player_steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -36251,7 +36243,7 @@ export default { }, "league_team_rosters_var_samp_order_by": { "player_steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -36267,7 +36259,7 @@ export default { }, "league_team_rosters_variance_order_by": { "player_steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -36275,55 +36267,55 @@ export default { }, "league_team_seasons": { "assigned_division": [ - 1850 + 1849 ], "assigned_division_id": [ - 4999 + 4998 ], "captain": [ - 3910 + 3909 ], "captain_steam_id": [ - 258 + 257 ], "created_at": [ - 4499 + 4498 ], "decline_reason": [ 80 ], "e_registration_status": [ - 819 + 818 ], "id": [ - 4999 + 4998 ], "league_season_id": [ - 4999 + 4998 ], "league_team": [ - 2183 + 2182 ], "league_team_id": [ - 4999 + 4998 ], "registered_by": [ - 3910 + 3909 ], "registered_by_steam_id": [ - 258 + 257 ], "requested_division": [ - 1850 + 1849 ], "requested_division_id": [ - 4999 + 4998 ], "roster": [ - 2100, + 2099, { "distinct_on": [ - 2121, + 2120, "[league_team_rosters_select_column!]" ], "limit": [ @@ -36333,19 +36325,19 @@ export default { 40 ], "order_by": [ - 2119, + 2118, "[league_team_rosters_order_by!]" ], "where": [ - 2109 + 2108 ] } ], "roster_aggregate": [ - 2101, + 2100, { "distinct_on": [ - 2121, + 2120, "[league_team_rosters_select_column!]" ], "limit": [ @@ -36355,28 +36347,28 @@ export default { 40 ], "order_by": [ - 2119, + 2118, "[league_team_rosters_order_by!]" ], "where": [ - 2109 + 2108 ] } ], "season": [ - 2026 + 2025 ], "seed": [ 40 ], "status": [ - 824 + 823 ], "tournament_team": [ - 4893 + 4892 ], "tournament_team_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -36384,10 +36376,10 @@ export default { }, "league_team_seasons_aggregate": { "aggregate": [ - 2145 + 2144 ], "nodes": [ - 2141 + 2140 ], "__typename": [ 80 @@ -36395,7 +36387,7 @@ export default { }, "league_team_seasons_aggregate_bool_exp": { "count": [ - 2144 + 2143 ], "__typename": [ 80 @@ -36403,13 +36395,13 @@ export default { }, "league_team_seasons_aggregate_bool_exp_count": { "arguments": [ - 2163 + 2162 ], "distinct": [ 5 ], "filter": [ - 2150 + 2149 ], "predicate": [ 41 @@ -36420,13 +36412,13 @@ export default { }, "league_team_seasons_aggregate_fields": { "avg": [ - 2148 + 2147 ], "count": [ 40, { "columns": [ - 2163, + 2162, "[league_team_seasons_select_column!]" ], "distinct": [ @@ -36435,31 +36427,31 @@ export default { } ], "max": [ - 2154 + 2153 ], "min": [ - 2156 + 2155 ], "stddev": [ - 2165 + 2164 ], "stddev_pop": [ - 2167 + 2166 ], "stddev_samp": [ - 2169 + 2168 ], "sum": [ - 2173 + 2172 ], "var_pop": [ - 2177 + 2176 ], "var_samp": [ - 2179 + 2178 ], "variance": [ - 2181 + 2180 ], "__typename": [ 80 @@ -36467,37 +36459,37 @@ export default { }, "league_team_seasons_aggregate_order_by": { "avg": [ - 2149 + 2148 ], "count": [ - 2952 + 2951 ], "max": [ - 2155 + 2154 ], "min": [ - 2157 + 2156 ], "stddev": [ - 2166 + 2165 ], "stddev_pop": [ - 2168 + 2167 ], "stddev_samp": [ - 2170 + 2169 ], "sum": [ - 2174 + 2173 ], "var_pop": [ - 2178 + 2177 ], "var_samp": [ - 2180 + 2179 ], "variance": [ - 2182 + 2181 ], "__typename": [ 80 @@ -36505,10 +36497,10 @@ export default { }, "league_team_seasons_arr_rel_insert_input": { "data": [ - 2153 + 2152 ], "on_conflict": [ - 2160 + 2159 ], "__typename": [ 80 @@ -36530,13 +36522,13 @@ export default { }, "league_team_seasons_avg_order_by": { "captain_steam_id": [ - 2952 + 2951 ], "registered_by_steam_id": [ - 2952 + 2951 ], "seed": [ - 2952 + 2951 ], "__typename": [ 80 @@ -36544,79 +36536,79 @@ export default { }, "league_team_seasons_bool_exp": { "_and": [ - 2150 + 2149 ], "_not": [ - 2150 + 2149 ], "_or": [ - 2150 + 2149 ], "assigned_division": [ - 1854 + 1853 ], "assigned_division_id": [ - 5001 + 5000 ], "captain": [ - 3914 + 3913 ], "captain_steam_id": [ - 260 + 259 ], "created_at": [ - 4500 + 4499 ], "decline_reason": [ 82 ], "e_registration_status": [ - 822 + 821 ], "id": [ - 5001 + 5000 ], "league_season_id": [ - 5001 + 5000 ], "league_team": [ - 2186 + 2185 ], "league_team_id": [ - 5001 + 5000 ], "registered_by": [ - 3914 + 3913 ], "registered_by_steam_id": [ - 260 + 259 ], "requested_division": [ - 1854 + 1853 ], "requested_division_id": [ - 5001 + 5000 ], "roster": [ - 2109 + 2108 ], "roster_aggregate": [ - 2102 + 2101 ], "season": [ - 2031 + 2030 ], "seed": [ 41 ], "status": [ - 825 + 824 ], "tournament_team": [ - 4902 + 4901 ], "tournament_team_id": [ - 5001 + 5000 ], "__typename": [ 80 @@ -36625,10 +36617,10 @@ export default { "league_team_seasons_constraint": {}, "league_team_seasons_inc_input": { "captain_steam_id": [ - 258 + 257 ], "registered_by_steam_id": [ - 258 + 257 ], "seed": [ 40 @@ -36639,67 +36631,67 @@ export default { }, "league_team_seasons_insert_input": { "assigned_division": [ - 1861 + 1860 ], "assigned_division_id": [ - 4999 + 4998 ], "captain": [ - 3921 + 3920 ], "captain_steam_id": [ - 258 + 257 ], "created_at": [ - 4499 + 4498 ], "decline_reason": [ 80 ], "e_registration_status": [ - 830 + 829 ], "id": [ - 4999 + 4998 ], "league_season_id": [ - 4999 + 4998 ], "league_team": [ - 2192 + 2191 ], "league_team_id": [ - 4999 + 4998 ], "registered_by": [ - 3921 + 3920 ], "registered_by_steam_id": [ - 258 + 257 ], "requested_division": [ - 1861 + 1860 ], "requested_division_id": [ - 4999 + 4998 ], "roster": [ - 2106 + 2105 ], "season": [ - 2041 + 2040 ], "seed": [ 40 ], "status": [ - 824 + 823 ], "tournament_team": [ - 4911 + 4910 ], "tournament_team_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -36707,37 +36699,37 @@ export default { }, "league_team_seasons_max_fields": { "assigned_division_id": [ - 4999 + 4998 ], "captain_steam_id": [ - 258 + 257 ], "created_at": [ - 4499 + 4498 ], "decline_reason": [ 80 ], "id": [ - 4999 + 4998 ], "league_season_id": [ - 4999 + 4998 ], "league_team_id": [ - 4999 + 4998 ], "registered_by_steam_id": [ - 258 + 257 ], "requested_division_id": [ - 4999 + 4998 ], "seed": [ 40 ], "tournament_team_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -36745,37 +36737,37 @@ export default { }, "league_team_seasons_max_order_by": { "assigned_division_id": [ - 2952 + 2951 ], "captain_steam_id": [ - 2952 + 2951 ], "created_at": [ - 2952 + 2951 ], "decline_reason": [ - 2952 + 2951 ], "id": [ - 2952 + 2951 ], "league_season_id": [ - 2952 + 2951 ], "league_team_id": [ - 2952 + 2951 ], "registered_by_steam_id": [ - 2952 + 2951 ], "requested_division_id": [ - 2952 + 2951 ], "seed": [ - 2952 + 2951 ], "tournament_team_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -36783,37 +36775,37 @@ export default { }, "league_team_seasons_min_fields": { "assigned_division_id": [ - 4999 + 4998 ], "captain_steam_id": [ - 258 + 257 ], "created_at": [ - 4499 + 4498 ], "decline_reason": [ 80 ], "id": [ - 4999 + 4998 ], "league_season_id": [ - 4999 + 4998 ], "league_team_id": [ - 4999 + 4998 ], "registered_by_steam_id": [ - 258 + 257 ], "requested_division_id": [ - 4999 + 4998 ], "seed": [ 40 ], "tournament_team_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -36821,37 +36813,37 @@ export default { }, "league_team_seasons_min_order_by": { "assigned_division_id": [ - 2952 + 2951 ], "captain_steam_id": [ - 2952 + 2951 ], "created_at": [ - 2952 + 2951 ], "decline_reason": [ - 2952 + 2951 ], "id": [ - 2952 + 2951 ], "league_season_id": [ - 2952 + 2951 ], "league_team_id": [ - 2952 + 2951 ], "registered_by_steam_id": [ - 2952 + 2951 ], "requested_division_id": [ - 2952 + 2951 ], "seed": [ - 2952 + 2951 ], "tournament_team_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -36862,7 +36854,7 @@ export default { 40 ], "returning": [ - 2141 + 2140 ], "__typename": [ 80 @@ -36870,10 +36862,10 @@ export default { }, "league_team_seasons_obj_rel_insert_input": { "data": [ - 2153 + 2152 ], "on_conflict": [ - 2160 + 2159 ], "__typename": [ 80 @@ -36881,13 +36873,13 @@ export default { }, "league_team_seasons_on_conflict": { "constraint": [ - 2151 + 2150 ], "update_columns": [ - 2175 + 2174 ], "where": [ - 2150 + 2149 ], "__typename": [ 80 @@ -36895,67 +36887,67 @@ export default { }, "league_team_seasons_order_by": { "assigned_division": [ - 1863 + 1862 ], "assigned_division_id": [ - 2952 + 2951 ], "captain": [ - 3923 + 3922 ], "captain_steam_id": [ - 2952 + 2951 ], "created_at": [ - 2952 + 2951 ], "decline_reason": [ - 2952 + 2951 ], "e_registration_status": [ - 832 + 831 ], "id": [ - 2952 + 2951 ], "league_season_id": [ - 2952 + 2951 ], "league_team": [ - 2194 + 2193 ], "league_team_id": [ - 2952 + 2951 ], "registered_by": [ - 3923 + 3922 ], "registered_by_steam_id": [ - 2952 + 2951 ], "requested_division": [ - 1863 + 1862 ], "requested_division_id": [ - 2952 + 2951 ], "roster_aggregate": [ - 2105 + 2104 ], "season": [ - 2043 + 2042 ], "seed": [ - 2952 + 2951 ], "status": [ - 2952 + 2951 ], "tournament_team": [ - 4913 + 4912 ], "tournament_team_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -36963,7 +36955,7 @@ export default { }, "league_team_seasons_pk_columns_input": { "id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -36972,40 +36964,40 @@ export default { "league_team_seasons_select_column": {}, "league_team_seasons_set_input": { "assigned_division_id": [ - 4999 + 4998 ], "captain_steam_id": [ - 258 + 257 ], "created_at": [ - 4499 + 4498 ], "decline_reason": [ 80 ], "id": [ - 4999 + 4998 ], "league_season_id": [ - 4999 + 4998 ], "league_team_id": [ - 4999 + 4998 ], "registered_by_steam_id": [ - 258 + 257 ], "requested_division_id": [ - 4999 + 4998 ], "seed": [ 40 ], "status": [ - 824 + 823 ], "tournament_team_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -37027,13 +37019,13 @@ export default { }, "league_team_seasons_stddev_order_by": { "captain_steam_id": [ - 2952 + 2951 ], "registered_by_steam_id": [ - 2952 + 2951 ], "seed": [ - 2952 + 2951 ], "__typename": [ 80 @@ -37055,13 +37047,13 @@ export default { }, "league_team_seasons_stddev_pop_order_by": { "captain_steam_id": [ - 2952 + 2951 ], "registered_by_steam_id": [ - 2952 + 2951 ], "seed": [ - 2952 + 2951 ], "__typename": [ 80 @@ -37083,13 +37075,13 @@ export default { }, "league_team_seasons_stddev_samp_order_by": { "captain_steam_id": [ - 2952 + 2951 ], "registered_by_steam_id": [ - 2952 + 2951 ], "seed": [ - 2952 + 2951 ], "__typename": [ 80 @@ -37097,10 +37089,10 @@ export default { }, "league_team_seasons_stream_cursor_input": { "initial_value": [ - 2172 + 2171 ], "ordering": [ - 314 + 313 ], "__typename": [ 80 @@ -37108,40 +37100,40 @@ export default { }, "league_team_seasons_stream_cursor_value_input": { "assigned_division_id": [ - 4999 + 4998 ], "captain_steam_id": [ - 258 + 257 ], "created_at": [ - 4499 + 4498 ], "decline_reason": [ 80 ], "id": [ - 4999 + 4998 ], "league_season_id": [ - 4999 + 4998 ], "league_team_id": [ - 4999 + 4998 ], "registered_by_steam_id": [ - 258 + 257 ], "requested_division_id": [ - 4999 + 4998 ], "seed": [ 40 ], "status": [ - 824 + 823 ], "tournament_team_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -37149,10 +37141,10 @@ export default { }, "league_team_seasons_sum_fields": { "captain_steam_id": [ - 258 + 257 ], "registered_by_steam_id": [ - 258 + 257 ], "seed": [ 40 @@ -37163,13 +37155,13 @@ export default { }, "league_team_seasons_sum_order_by": { "captain_steam_id": [ - 2952 + 2951 ], "registered_by_steam_id": [ - 2952 + 2951 ], "seed": [ - 2952 + 2951 ], "__typename": [ 80 @@ -37178,13 +37170,13 @@ export default { "league_team_seasons_update_column": {}, "league_team_seasons_updates": { "_inc": [ - 2152 + 2151 ], "_set": [ - 2164 + 2163 ], "where": [ - 2150 + 2149 ], "__typename": [ 80 @@ -37206,13 +37198,13 @@ export default { }, "league_team_seasons_var_pop_order_by": { "captain_steam_id": [ - 2952 + 2951 ], "registered_by_steam_id": [ - 2952 + 2951 ], "seed": [ - 2952 + 2951 ], "__typename": [ 80 @@ -37234,13 +37226,13 @@ export default { }, "league_team_seasons_var_samp_order_by": { "captain_steam_id": [ - 2952 + 2951 ], "registered_by_steam_id": [ - 2952 + 2951 ], "seed": [ - 2952 + 2951 ], "__typename": [ 80 @@ -37262,13 +37254,13 @@ export default { }, "league_team_seasons_variance_order_by": { "captain_steam_id": [ - 2952 + 2951 ], "registered_by_steam_id": [ - 2952 + 2951 ], "seed": [ - 2952 + 2951 ], "__typename": [ 80 @@ -37276,16 +37268,16 @@ export default { }, "league_teams": { "created_at": [ - 4499 + 4498 ], "id": [ - 4999 + 4998 ], "movements": [ - 2059, + 2058, { "distinct_on": [ - 2080, + 2079, "[league_team_movements_select_column!]" ], "limit": [ @@ -37295,19 +37287,19 @@ export default { 40 ], "order_by": [ - 2078, + 2077, "[league_team_movements_order_by!]" ], "where": [ - 2068 + 2067 ] } ], "movements_aggregate": [ - 2060, + 2059, { "distinct_on": [ - 2080, + 2079, "[league_team_movements_select_column!]" ], "limit": [ @@ -37317,25 +37309,25 @@ export default { 40 ], "order_by": [ - 2078, + 2077, "[league_team_movements_order_by!]" ], "where": [ - 2068 + 2067 ] } ], "team": [ - 4452 + 4451 ], "team_id": [ - 4999 + 4998 ], "team_seasons": [ - 2141, + 2140, { "distinct_on": [ - 2163, + 2162, "[league_team_seasons_select_column!]" ], "limit": [ @@ -37345,19 +37337,19 @@ export default { 40 ], "order_by": [ - 2161, + 2160, "[league_team_seasons_order_by!]" ], "where": [ - 2150 + 2149 ] } ], "team_seasons_aggregate": [ - 2142, + 2141, { "distinct_on": [ - 2163, + 2162, "[league_team_seasons_select_column!]" ], "limit": [ @@ -37367,11 +37359,11 @@ export default { 40 ], "order_by": [ - 2161, + 2160, "[league_team_seasons_order_by!]" ], "where": [ - 2150 + 2149 ] } ], @@ -37381,10 +37373,10 @@ export default { }, "league_teams_aggregate": { "aggregate": [ - 2185 + 2184 ], "nodes": [ - 2183 + 2182 ], "__typename": [ 80 @@ -37395,7 +37387,7 @@ export default { 40, { "columns": [ - 2196, + 2195, "[league_teams_select_column!]" ], "distinct": [ @@ -37404,10 +37396,10 @@ export default { } ], "max": [ - 2189 + 2188 ], "min": [ - 2190 + 2189 ], "__typename": [ 80 @@ -37415,37 +37407,37 @@ export default { }, "league_teams_bool_exp": { "_and": [ - 2186 + 2185 ], "_not": [ - 2186 + 2185 ], "_or": [ - 2186 + 2185 ], "created_at": [ - 4500 + 4499 ], "id": [ - 5001 + 5000 ], "movements": [ - 2068 + 2067 ], "movements_aggregate": [ - 2061 + 2060 ], "team": [ - 4463 + 4462 ], "team_id": [ - 5001 + 5000 ], "team_seasons": [ - 2150 + 2149 ], "team_seasons_aggregate": [ - 2143 + 2142 ], "__typename": [ 80 @@ -37454,22 +37446,22 @@ export default { "league_teams_constraint": {}, "league_teams_insert_input": { "created_at": [ - 4499 + 4498 ], "id": [ - 4999 + 4998 ], "movements": [ - 2065 + 2064 ], "team": [ - 4472 + 4471 ], "team_id": [ - 4999 + 4998 ], "team_seasons": [ - 2147 + 2146 ], "__typename": [ 80 @@ -37477,13 +37469,13 @@ export default { }, "league_teams_max_fields": { "created_at": [ - 4499 + 4498 ], "id": [ - 4999 + 4998 ], "team_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -37491,13 +37483,13 @@ export default { }, "league_teams_min_fields": { "created_at": [ - 4499 + 4498 ], "id": [ - 4999 + 4998 ], "team_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -37508,7 +37500,7 @@ export default { 40 ], "returning": [ - 2183 + 2182 ], "__typename": [ 80 @@ -37516,10 +37508,10 @@ export default { }, "league_teams_obj_rel_insert_input": { "data": [ - 2188 + 2187 ], "on_conflict": [ - 2193 + 2192 ], "__typename": [ 80 @@ -37527,13 +37519,13 @@ export default { }, "league_teams_on_conflict": { "constraint": [ - 2187 + 2186 ], "update_columns": [ - 2200 + 2199 ], "where": [ - 2186 + 2185 ], "__typename": [ 80 @@ -37541,22 +37533,22 @@ export default { }, "league_teams_order_by": { "created_at": [ - 2952 + 2951 ], "id": [ - 2952 + 2951 ], "movements_aggregate": [ - 2064 + 2063 ], "team": [ - 4474 + 4473 ], "team_id": [ - 2952 + 2951 ], "team_seasons_aggregate": [ - 2146 + 2145 ], "__typename": [ 80 @@ -37564,7 +37556,7 @@ export default { }, "league_teams_pk_columns_input": { "id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -37573,13 +37565,13 @@ export default { "league_teams_select_column": {}, "league_teams_set_input": { "created_at": [ - 4499 + 4498 ], "id": [ - 4999 + 4998 ], "team_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -37587,10 +37579,10 @@ export default { }, "league_teams_stream_cursor_input": { "initial_value": [ - 2199 + 2198 ], "ordering": [ - 314 + 313 ], "__typename": [ 80 @@ -37598,13 +37590,13 @@ export default { }, "league_teams_stream_cursor_value_input": { "created_at": [ - 4499 + 4498 ], "id": [ - 4999 + 4998 ], "team_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -37613,10 +37605,10 @@ export default { "league_teams_update_column": {}, "league_teams_updates": { "_set": [ - 2197 + 2196 ], "where": [ - 2186 + 2185 ], "__typename": [ 80 @@ -37624,22 +37616,22 @@ export default { }, "lobbies": { "access": [ - 866 + 865 ], "created_at": [ - 4499 + 4498 ], "e_lobby_access": [ - 861 + 860 ], "id": [ - 4999 + 4998 ], "players": [ - 2221, + 2220, { "distinct_on": [ - 2244, + 2243, "[lobby_players_select_column!]" ], "limit": [ @@ -37649,19 +37641,19 @@ export default { 40 ], "order_by": [ - 2242, + 2241, "[lobby_players_order_by!]" ], "where": [ - 2232 + 2231 ] } ], "players_aggregate": [ - 2222, + 2221, { "distinct_on": [ - 2244, + 2243, "[lobby_players_select_column!]" ], "limit": [ @@ -37671,11 +37663,11 @@ export default { 40 ], "order_by": [ - 2242, + 2241, "[lobby_players_order_by!]" ], "where": [ - 2232 + 2231 ] } ], @@ -37685,10 +37677,10 @@ export default { }, "lobbies_aggregate": { "aggregate": [ - 2204 + 2203 ], "nodes": [ - 2202 + 2201 ], "__typename": [ 80 @@ -37699,7 +37691,7 @@ export default { 40, { "columns": [ - 2215, + 2214, "[lobbies_select_column!]" ], "distinct": [ @@ -37708,10 +37700,10 @@ export default { } ], "max": [ - 2208 + 2207 ], "min": [ - 2209 + 2208 ], "__typename": [ 80 @@ -37719,31 +37711,31 @@ export default { }, "lobbies_bool_exp": { "_and": [ - 2205 + 2204 ], "_not": [ - 2205 + 2204 ], "_or": [ - 2205 + 2204 ], "access": [ - 867 + 866 ], "created_at": [ - 4500 + 4499 ], "e_lobby_access": [ - 864 + 863 ], "id": [ - 5001 + 5000 ], "players": [ - 2232 + 2231 ], "players_aggregate": [ - 2223 + 2222 ], "__typename": [ 80 @@ -37752,19 +37744,19 @@ export default { "lobbies_constraint": {}, "lobbies_insert_input": { "access": [ - 866 + 865 ], "created_at": [ - 4499 + 4498 ], "e_lobby_access": [ - 872 + 871 ], "id": [ - 4999 + 4998 ], "players": [ - 2229 + 2228 ], "__typename": [ 80 @@ -37772,10 +37764,10 @@ export default { }, "lobbies_max_fields": { "created_at": [ - 4499 + 4498 ], "id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -37783,10 +37775,10 @@ export default { }, "lobbies_min_fields": { "created_at": [ - 4499 + 4498 ], "id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -37797,7 +37789,7 @@ export default { 40 ], "returning": [ - 2202 + 2201 ], "__typename": [ 80 @@ -37805,10 +37797,10 @@ export default { }, "lobbies_obj_rel_insert_input": { "data": [ - 2207 + 2206 ], "on_conflict": [ - 2212 + 2211 ], "__typename": [ 80 @@ -37816,13 +37808,13 @@ export default { }, "lobbies_on_conflict": { "constraint": [ - 2206 + 2205 ], "update_columns": [ - 2219 + 2218 ], "where": [ - 2205 + 2204 ], "__typename": [ 80 @@ -37830,19 +37822,19 @@ export default { }, "lobbies_order_by": { "access": [ - 2952 + 2951 ], "created_at": [ - 2952 + 2951 ], "e_lobby_access": [ - 874 + 873 ], "id": [ - 2952 + 2951 ], "players_aggregate": [ - 2228 + 2227 ], "__typename": [ 80 @@ -37850,7 +37842,7 @@ export default { }, "lobbies_pk_columns_input": { "id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -37859,13 +37851,13 @@ export default { "lobbies_select_column": {}, "lobbies_set_input": { "access": [ - 866 + 865 ], "created_at": [ - 4499 + 4498 ], "id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -37873,10 +37865,10 @@ export default { }, "lobbies_stream_cursor_input": { "initial_value": [ - 2218 + 2217 ], "ordering": [ - 314 + 313 ], "__typename": [ 80 @@ -37884,13 +37876,13 @@ export default { }, "lobbies_stream_cursor_value_input": { "access": [ - 866 + 865 ], "created_at": [ - 4499 + 4498 ], "id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -37899,10 +37891,10 @@ export default { "lobbies_update_column": {}, "lobbies_updates": { "_set": [ - 2216 + 2215 ], "where": [ - 2205 + 2204 ], "__typename": [ 80 @@ -37913,22 +37905,22 @@ export default { 5 ], "invited_by_steam_id": [ - 258 + 257 ], "lobby": [ - 2202 + 2201 ], "lobby_id": [ - 4999 + 4998 ], "player": [ - 3910 + 3909 ], "status": [ - 887 + 886 ], "steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -37936,10 +37928,10 @@ export default { }, "lobby_players_aggregate": { "aggregate": [ - 2227 + 2226 ], "nodes": [ - 2221 + 2220 ], "__typename": [ 80 @@ -37947,13 +37939,13 @@ export default { }, "lobby_players_aggregate_bool_exp": { "bool_and": [ - 2224 + 2223 ], "bool_or": [ - 2225 + 2224 ], "count": [ - 2226 + 2225 ], "__typename": [ 80 @@ -37961,13 +37953,13 @@ export default { }, "lobby_players_aggregate_bool_exp_bool_and": { "arguments": [ - 2245 + 2244 ], "distinct": [ 5 ], "filter": [ - 2232 + 2231 ], "predicate": [ 6 @@ -37978,13 +37970,13 @@ export default { }, "lobby_players_aggregate_bool_exp_bool_or": { "arguments": [ - 2246 + 2245 ], "distinct": [ 5 ], "filter": [ - 2232 + 2231 ], "predicate": [ 6 @@ -37995,13 +37987,13 @@ export default { }, "lobby_players_aggregate_bool_exp_count": { "arguments": [ - 2244 + 2243 ], "distinct": [ 5 ], "filter": [ - 2232 + 2231 ], "predicate": [ 41 @@ -38012,13 +38004,13 @@ export default { }, "lobby_players_aggregate_fields": { "avg": [ - 2230 + 2229 ], "count": [ 40, { "columns": [ - 2244, + 2243, "[lobby_players_select_column!]" ], "distinct": [ @@ -38026,6 +38018,44 @@ export default { ] } ], + "max": [ + 2235 + ], + "min": [ + 2237 + ], + "stddev": [ + 2247 + ], + "stddev_pop": [ + 2249 + ], + "stddev_samp": [ + 2251 + ], + "sum": [ + 2255 + ], + "var_pop": [ + 2259 + ], + "var_samp": [ + 2261 + ], + "variance": [ + 2263 + ], + "__typename": [ + 80 + ] + }, + "lobby_players_aggregate_order_by": { + "avg": [ + 2230 + ], + "count": [ + 2951 + ], "max": [ 2236 ], @@ -38057,50 +38087,12 @@ export default { 80 ] }, - "lobby_players_aggregate_order_by": { - "avg": [ - 2231 - ], - "count": [ - 2952 - ], - "max": [ - 2237 - ], - "min": [ - 2239 - ], - "stddev": [ - 2249 - ], - "stddev_pop": [ - 2251 - ], - "stddev_samp": [ - 2253 - ], - "sum": [ - 2257 - ], - "var_pop": [ - 2261 - ], - "var_samp": [ - 2263 - ], - "variance": [ - 2265 - ], - "__typename": [ - 80 - ] - }, "lobby_players_arr_rel_insert_input": { "data": [ - 2235 + 2234 ], "on_conflict": [ - 2241 + 2240 ], "__typename": [ 80 @@ -38119,10 +38111,10 @@ export default { }, "lobby_players_avg_order_by": { "invited_by_steam_id": [ - 2952 + 2951 ], "steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -38130,34 +38122,34 @@ export default { }, "lobby_players_bool_exp": { "_and": [ - 2232 + 2231 ], "_not": [ - 2232 + 2231 ], "_or": [ - 2232 + 2231 ], "captain": [ 6 ], "invited_by_steam_id": [ - 260 + 259 ], "lobby": [ - 2205 + 2204 ], "lobby_id": [ - 5001 + 5000 ], "player": [ - 3914 + 3913 ], "status": [ - 888 + 887 ], "steam_id": [ - 260 + 259 ], "__typename": [ 80 @@ -38166,10 +38158,10 @@ export default { "lobby_players_constraint": {}, "lobby_players_inc_input": { "invited_by_steam_id": [ - 258 + 257 ], "steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -38180,22 +38172,22 @@ export default { 5 ], "invited_by_steam_id": [ - 258 + 257 ], "lobby": [ - 2211 + 2210 ], "lobby_id": [ - 4999 + 4998 ], "player": [ - 3921 + 3920 ], "status": [ - 887 + 886 ], "steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -38203,13 +38195,13 @@ export default { }, "lobby_players_max_fields": { "invited_by_steam_id": [ - 258 + 257 ], "lobby_id": [ - 4999 + 4998 ], "steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -38217,13 +38209,13 @@ export default { }, "lobby_players_max_order_by": { "invited_by_steam_id": [ - 2952 + 2951 ], "lobby_id": [ - 2952 + 2951 ], "steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -38231,13 +38223,13 @@ export default { }, "lobby_players_min_fields": { "invited_by_steam_id": [ - 258 + 257 ], "lobby_id": [ - 4999 + 4998 ], "steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -38245,13 +38237,13 @@ export default { }, "lobby_players_min_order_by": { "invited_by_steam_id": [ - 2952 + 2951 ], "lobby_id": [ - 2952 + 2951 ], "steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -38262,7 +38254,7 @@ export default { 40 ], "returning": [ - 2221 + 2220 ], "__typename": [ 80 @@ -38270,13 +38262,13 @@ export default { }, "lobby_players_on_conflict": { "constraint": [ - 2233 + 2232 ], "update_columns": [ - 2258 + 2257 ], "where": [ - 2232 + 2231 ], "__typename": [ 80 @@ -38284,25 +38276,25 @@ export default { }, "lobby_players_order_by": { "captain": [ - 2952 + 2951 ], "invited_by_steam_id": [ - 2952 + 2951 ], "lobby": [ - 2213 + 2212 ], "lobby_id": [ - 2952 + 2951 ], "player": [ - 3923 + 3922 ], "status": [ - 2952 + 2951 ], "steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -38310,10 +38302,10 @@ export default { }, "lobby_players_pk_columns_input": { "lobby_id": [ - 4999 + 4998 ], "steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -38327,16 +38319,16 @@ export default { 5 ], "invited_by_steam_id": [ - 258 + 257 ], "lobby_id": [ - 4999 + 4998 ], "status": [ - 887 + 886 ], "steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -38355,10 +38347,10 @@ export default { }, "lobby_players_stddev_order_by": { "invited_by_steam_id": [ - 2952 + 2951 ], "steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -38377,10 +38369,10 @@ export default { }, "lobby_players_stddev_pop_order_by": { "invited_by_steam_id": [ - 2952 + 2951 ], "steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -38399,10 +38391,10 @@ export default { }, "lobby_players_stddev_samp_order_by": { "invited_by_steam_id": [ - 2952 + 2951 ], "steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -38410,10 +38402,10 @@ export default { }, "lobby_players_stream_cursor_input": { "initial_value": [ - 2255 + 2254 ], "ordering": [ - 314 + 313 ], "__typename": [ 80 @@ -38424,16 +38416,16 @@ export default { 5 ], "invited_by_steam_id": [ - 258 + 257 ], "lobby_id": [ - 4999 + 4998 ], "status": [ - 887 + 886 ], "steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -38441,10 +38433,10 @@ export default { }, "lobby_players_sum_fields": { "invited_by_steam_id": [ - 258 + 257 ], "steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -38452,10 +38444,10 @@ export default { }, "lobby_players_sum_order_by": { "invited_by_steam_id": [ - 2952 + 2951 ], "steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -38464,13 +38456,13 @@ export default { "lobby_players_update_column": {}, "lobby_players_updates": { "_inc": [ - 2234 + 2233 ], "_set": [ - 2247 + 2246 ], "where": [ - 2232 + 2231 ], "__typename": [ 80 @@ -38489,10 +38481,10 @@ export default { }, "lobby_players_var_pop_order_by": { "invited_by_steam_id": [ - 2952 + 2951 ], "steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -38511,10 +38503,10 @@ export default { }, "lobby_players_var_samp_order_by": { "invited_by_steam_id": [ - 2952 + 2951 ], "steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -38533,10 +38525,10 @@ export default { }, "lobby_players_variance_order_by": { "invited_by_steam_id": [ - 2952 + 2951 ], "steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -38544,19 +38536,19 @@ export default { }, "map_pools": { "e_type": [ - 902 + 901 ], "enabled": [ 5 ], "id": [ - 4999 + 4998 ], "maps": [ - 5641, + 5640, { "distinct_on": [ - 5658, + 5657, "[v_pool_maps_select_column!]" ], "limit": [ @@ -38566,19 +38558,19 @@ export default { 40 ], "order_by": [ - 5657, + 5656, "[v_pool_maps_order_by!]" ], "where": [ - 5650 + 5649 ] } ], "maps_aggregate": [ - 5642, + 5641, { "distinct_on": [ - 5658, + 5657, "[v_pool_maps_select_column!]" ], "limit": [ @@ -38588,11 +38580,11 @@ export default { 40 ], "order_by": [ - 5657, + 5656, "[v_pool_maps_order_by!]" ], "where": [ - 5650 + 5649 ] } ], @@ -38600,7 +38592,7 @@ export default { 5 ], "type": [ - 907 + 906 ], "__typename": [ 80 @@ -38608,10 +38600,10 @@ export default { }, "map_pools_aggregate": { "aggregate": [ - 2268 + 2267 ], "nodes": [ - 2266 + 2265 ], "__typename": [ 80 @@ -38622,7 +38614,7 @@ export default { 40, { "columns": [ - 2279, + 2278, "[map_pools_select_column!]" ], "distinct": [ @@ -38631,10 +38623,10 @@ export default { } ], "max": [ - 2272 + 2271 ], "min": [ - 2273 + 2272 ], "__typename": [ 80 @@ -38642,34 +38634,34 @@ export default { }, "map_pools_bool_exp": { "_and": [ - 2269 + 2268 ], "_not": [ - 2269 + 2268 ], "_or": [ - 2269 + 2268 ], "e_type": [ - 905 + 904 ], "enabled": [ 6 ], "id": [ - 5001 + 5000 ], "maps": [ - 5650 + 5649 ], "maps_aggregate": [ - 5643 + 5642 ], "seed": [ 6 ], "type": [ - 908 + 907 ], "__typename": [ 80 @@ -38678,22 +38670,22 @@ export default { "map_pools_constraint": {}, "map_pools_insert_input": { "e_type": [ - 913 + 912 ], "enabled": [ 5 ], "id": [ - 4999 + 4998 ], "maps": [ - 5649 + 5648 ], "seed": [ 5 ], "type": [ - 907 + 906 ], "__typename": [ 80 @@ -38701,7 +38693,7 @@ export default { }, "map_pools_max_fields": { "id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -38709,7 +38701,7 @@ export default { }, "map_pools_min_fields": { "id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -38720,7 +38712,7 @@ export default { 40 ], "returning": [ - 2266 + 2265 ], "__typename": [ 80 @@ -38728,10 +38720,10 @@ export default { }, "map_pools_obj_rel_insert_input": { "data": [ - 2271 + 2270 ], "on_conflict": [ - 2276 + 2275 ], "__typename": [ 80 @@ -38739,13 +38731,13 @@ export default { }, "map_pools_on_conflict": { "constraint": [ - 2270 + 2269 ], "update_columns": [ - 2283 + 2282 ], "where": [ - 2269 + 2268 ], "__typename": [ 80 @@ -38753,22 +38745,22 @@ export default { }, "map_pools_order_by": { "e_type": [ - 915 + 914 ], "enabled": [ - 2952 + 2951 ], "id": [ - 2952 + 2951 ], "maps_aggregate": [ - 5648 + 5647 ], "seed": [ - 2952 + 2951 ], "type": [ - 2952 + 2951 ], "__typename": [ 80 @@ -38776,7 +38768,7 @@ export default { }, "map_pools_pk_columns_input": { "id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -38788,13 +38780,13 @@ export default { 5 ], "id": [ - 4999 + 4998 ], "seed": [ 5 ], "type": [ - 907 + 906 ], "__typename": [ 80 @@ -38802,10 +38794,10 @@ export default { }, "map_pools_stream_cursor_input": { "initial_value": [ - 2282 + 2281 ], "ordering": [ - 314 + 313 ], "__typename": [ 80 @@ -38816,13 +38808,13 @@ export default { 5 ], "id": [ - 4999 + 4998 ], "seed": [ 5 ], "type": [ - 907 + 906 ], "__typename": [ 80 @@ -38831,10 +38823,10 @@ export default { "map_pools_update_column": {}, "map_pools_updates": { "_set": [ - 2280 + 2279 ], "where": [ - 2269 + 2268 ], "__typename": [ 80 @@ -38845,22 +38837,22 @@ export default { 5 ], "e_match_type": [ - 1005 + 1004 ], "enabled": [ 5 ], "id": [ - 4999 + 4998 ], "label": [ 80 ], "match_maps": [ - 2605, + 2604, { "distinct_on": [ - 2627, + 2626, "[match_maps_select_column!]" ], "limit": [ @@ -38870,19 +38862,19 @@ export default { 40 ], "order_by": [ - 2625, + 2624, "[match_maps_order_by!]" ], "where": [ - 2614 + 2613 ] } ], "match_maps_aggregate": [ - 2606, + 2605, { "distinct_on": [ - 2627, + 2626, "[match_maps_select_column!]" ], "limit": [ @@ -38892,19 +38884,19 @@ export default { 40 ], "order_by": [ - 2625, + 2624, "[match_maps_order_by!]" ], "where": [ - 2614 + 2613 ] } ], "match_veto_picks": [ - 2581, + 2580, { "distinct_on": [ - 2599, + 2598, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -38914,19 +38906,19 @@ export default { 40 ], "order_by": [ - 2597, + 2596, "[match_map_veto_picks_order_by!]" ], "where": [ - 2588 + 2587 ] } ], "match_veto_picks_aggregate": [ - 2582, + 2581, { "distinct_on": [ - 2599, + 2598, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -38936,11 +38928,11 @@ export default { 40 ], "order_by": [ - 2597, + 2596, "[match_map_veto_picks_order_by!]" ], "where": [ - 2588 + 2587 ] } ], @@ -38954,7 +38946,7 @@ export default { 80 ], "type": [ - 1010 + 1009 ], "workshop_map_id": [ 80 @@ -38965,10 +38957,10 @@ export default { }, "maps_aggregate": { "aggregate": [ - 2291 + 2290 ], "nodes": [ - 2285 + 2284 ], "__typename": [ 80 @@ -38976,13 +38968,13 @@ export default { }, "maps_aggregate_bool_exp": { "bool_and": [ - 2288 + 2287 ], "bool_or": [ - 2289 + 2288 ], "count": [ - 2290 + 2289 ], "__typename": [ 80 @@ -38990,13 +38982,13 @@ export default { }, "maps_aggregate_bool_exp_bool_and": { "arguments": [ - 2307 + 2306 ], "distinct": [ 5 ], "filter": [ - 2294 + 2293 ], "predicate": [ 6 @@ -39007,13 +38999,13 @@ export default { }, "maps_aggregate_bool_exp_bool_or": { "arguments": [ - 2308 + 2307 ], "distinct": [ 5 ], "filter": [ - 2294 + 2293 ], "predicate": [ 6 @@ -39024,13 +39016,13 @@ export default { }, "maps_aggregate_bool_exp_count": { "arguments": [ - 2306 + 2305 ], "distinct": [ 5 ], "filter": [ - 2294 + 2293 ], "predicate": [ 41 @@ -39044,7 +39036,7 @@ export default { 40, { "columns": [ - 2306, + 2305, "[maps_select_column!]" ], "distinct": [ @@ -39053,10 +39045,10 @@ export default { } ], "max": [ - 2297 + 2296 ], "min": [ - 2299 + 2298 ], "__typename": [ 80 @@ -39064,13 +39056,13 @@ export default { }, "maps_aggregate_order_by": { "count": [ - 2952 + 2951 ], "max": [ - 2298 + 2297 ], "min": [ - 2300 + 2299 ], "__typename": [ 80 @@ -39078,10 +39070,10 @@ export default { }, "maps_arr_rel_insert_input": { "data": [ - 2296 + 2295 ], "on_conflict": [ - 2303 + 2302 ], "__typename": [ 80 @@ -39089,40 +39081,40 @@ export default { }, "maps_bool_exp": { "_and": [ - 2294 + 2293 ], "_not": [ - 2294 + 2293 ], "_or": [ - 2294 + 2293 ], "active_pool": [ 6 ], "e_match_type": [ - 1008 + 1007 ], "enabled": [ 6 ], "id": [ - 5001 + 5000 ], "label": [ 82 ], "match_maps": [ - 2614 + 2613 ], "match_maps_aggregate": [ - 2607 + 2606 ], "match_veto_picks": [ - 2588 + 2587 ], "match_veto_picks_aggregate": [ - 2583 + 2582 ], "name": [ 82 @@ -39134,7 +39126,7 @@ export default { 82 ], "type": [ - 1011 + 1010 ], "workshop_map_id": [ 82 @@ -39149,22 +39141,22 @@ export default { 5 ], "e_match_type": [ - 1016 + 1015 ], "enabled": [ 5 ], "id": [ - 4999 + 4998 ], "label": [ 80 ], "match_maps": [ - 2611 + 2610 ], "match_veto_picks": [ - 2587 + 2586 ], "name": [ 80 @@ -39176,7 +39168,7 @@ export default { 80 ], "type": [ - 1010 + 1009 ], "workshop_map_id": [ 80 @@ -39187,7 +39179,7 @@ export default { }, "maps_max_fields": { "id": [ - 4999 + 4998 ], "label": [ 80 @@ -39210,22 +39202,22 @@ export default { }, "maps_max_order_by": { "id": [ - 2952 + 2951 ], "label": [ - 2952 + 2951 ], "name": [ - 2952 + 2951 ], "patch": [ - 2952 + 2951 ], "poster": [ - 2952 + 2951 ], "workshop_map_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -39233,7 +39225,7 @@ export default { }, "maps_min_fields": { "id": [ - 4999 + 4998 ], "label": [ 80 @@ -39256,22 +39248,22 @@ export default { }, "maps_min_order_by": { "id": [ - 2952 + 2951 ], "label": [ - 2952 + 2951 ], "name": [ - 2952 + 2951 ], "patch": [ - 2952 + 2951 ], "poster": [ - 2952 + 2951 ], "workshop_map_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -39282,7 +39274,7 @@ export default { 40 ], "returning": [ - 2285 + 2284 ], "__typename": [ 80 @@ -39290,10 +39282,10 @@ export default { }, "maps_obj_rel_insert_input": { "data": [ - 2296 + 2295 ], "on_conflict": [ - 2303 + 2302 ], "__typename": [ 80 @@ -39301,13 +39293,13 @@ export default { }, "maps_on_conflict": { "constraint": [ - 2295 + 2294 ], "update_columns": [ - 2312 + 2311 ], "where": [ - 2294 + 2293 ], "__typename": [ 80 @@ -39315,40 +39307,40 @@ export default { }, "maps_order_by": { "active_pool": [ - 2952 + 2951 ], "e_match_type": [ - 1018 + 1017 ], "enabled": [ - 2952 + 2951 ], "id": [ - 2952 + 2951 ], "label": [ - 2952 + 2951 ], "match_maps_aggregate": [ - 2610 + 2609 ], "match_veto_picks_aggregate": [ - 2586 + 2585 ], "name": [ - 2952 + 2951 ], "patch": [ - 2952 + 2951 ], "poster": [ - 2952 + 2951 ], "type": [ - 2952 + 2951 ], "workshop_map_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -39356,7 +39348,7 @@ export default { }, "maps_pk_columns_input": { "id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -39373,7 +39365,7 @@ export default { 5 ], "id": [ - 4999 + 4998 ], "label": [ 80 @@ -39388,7 +39380,7 @@ export default { 80 ], "type": [ - 1010 + 1009 ], "workshop_map_id": [ 80 @@ -39399,10 +39391,10 @@ export default { }, "maps_stream_cursor_input": { "initial_value": [ - 2311 + 2310 ], "ordering": [ - 314 + 313 ], "__typename": [ 80 @@ -39416,7 +39408,7 @@ export default { 5 ], "id": [ - 4999 + 4998 ], "label": [ 80 @@ -39431,7 +39423,7 @@ export default { 80 ], "type": [ - 1010 + 1009 ], "workshop_map_id": [ 80 @@ -39443,10 +39435,10 @@ export default { "maps_update_column": {}, "maps_updates": { "_set": [ - 2309 + 2308 ], "where": [ - 2294 + 2293 ], "__typename": [ 80 @@ -39454,7 +39446,7 @@ export default { }, "match_clips": { "created_at": [ - 4499 + 4498 ], "download_url": [ 80 @@ -39466,28 +39458,28 @@ export default { 80 ], "id": [ - 4999 + 4998 ], "kills_count": [ 40 ], "match_map": [ - 2605 + 2604 ], "match_map_demo": [ - 2489 + 2488 ], "match_map_demo_id": [ - 4999 + 4998 ], "match_map_id": [ - 4999 + 4998 ], "render_jobs": [ - 263, + 262, { "distinct_on": [ - 291, + 290, "[clip_render_jobs_select_column!]" ], "limit": [ @@ -39497,19 +39489,19 @@ export default { 40 ], "order_by": [ - 288, + 287, "[clip_render_jobs_order_by!]" ], "where": [ - 275 + 274 ] } ], "render_jobs_aggregate": [ - 264, + 263, { "distinct_on": [ - 291, + 290, "[clip_render_jobs_select_column!]" ], "limit": [ @@ -39519,11 +39511,11 @@ export default { 40 ], "order_by": [ - 288, + 287, "[clip_render_jobs_order_by!]" ], "where": [ - 275 + 274 ] } ], @@ -39531,13 +39523,13 @@ export default { 40 ], "size": [ - 258 + 257 ], "target": [ - 3910 + 3909 ], "target_steam_id": [ - 258 + 257 ], "thumbnail_download_url": [ 80 @@ -39549,16 +39541,16 @@ export default { 80 ], "user": [ - 3910 + 3909 ], "user_steam_id": [ - 258 + 257 ], "views_count": [ 40 ], "visibility": [ - 928 + 927 ], "__typename": [ 80 @@ -39566,10 +39558,10 @@ export default { }, "match_clips_aggregate": { "aggregate": [ - 2318 + 2317 ], "nodes": [ - 2314 + 2313 ], "__typename": [ 80 @@ -39577,7 +39569,7 @@ export default { }, "match_clips_aggregate_bool_exp": { "count": [ - 2317 + 2316 ], "__typename": [ 80 @@ -39585,13 +39577,13 @@ export default { }, "match_clips_aggregate_bool_exp_count": { "arguments": [ - 2336 + 2335 ], "distinct": [ 5 ], "filter": [ - 2323 + 2322 ], "predicate": [ 41 @@ -39602,13 +39594,13 @@ export default { }, "match_clips_aggregate_fields": { "avg": [ - 2321 + 2320 ], "count": [ 40, { "columns": [ - 2336, + 2335, "[match_clips_select_column!]" ], "distinct": [ @@ -39617,31 +39609,31 @@ export default { } ], "max": [ - 2327 + 2326 ], "min": [ - 2329 + 2328 ], "stddev": [ - 2338 + 2337 ], "stddev_pop": [ - 2340 + 2339 ], "stddev_samp": [ - 2342 + 2341 ], "sum": [ - 2346 + 2345 ], "var_pop": [ - 2350 + 2349 ], "var_samp": [ - 2352 + 2351 ], "variance": [ - 2354 + 2353 ], "__typename": [ 80 @@ -39649,37 +39641,37 @@ export default { }, "match_clips_aggregate_order_by": { "avg": [ - 2322 + 2321 ], "count": [ - 2952 + 2951 ], "max": [ - 2328 + 2327 ], "min": [ - 2330 + 2329 ], "stddev": [ - 2339 + 2338 ], "stddev_pop": [ - 2341 + 2340 ], "stddev_samp": [ - 2343 + 2342 ], "sum": [ - 2347 + 2346 ], "var_pop": [ - 2351 + 2350 ], "var_samp": [ - 2353 + 2352 ], "variance": [ - 2355 + 2354 ], "__typename": [ 80 @@ -39687,10 +39679,10 @@ export default { }, "match_clips_arr_rel_insert_input": { "data": [ - 2326 + 2325 ], "on_conflict": [ - 2333 + 2332 ], "__typename": [ 80 @@ -39724,25 +39716,25 @@ export default { }, "match_clips_avg_order_by": { "duration_ms": [ - 2952 + 2951 ], "kills_count": [ - 2952 + 2951 ], "round": [ - 2952 + 2951 ], "size": [ - 2952 + 2951 ], "target_steam_id": [ - 2952 + 2951 ], "user_steam_id": [ - 2952 + 2951 ], "views_count": [ - 2952 + 2951 ], "__typename": [ 80 @@ -39750,16 +39742,16 @@ export default { }, "match_clips_bool_exp": { "_and": [ - 2323 + 2322 ], "_not": [ - 2323 + 2322 ], "_or": [ - 2323 + 2322 ], "created_at": [ - 4500 + 4499 ], "download_url": [ 82 @@ -39771,40 +39763,40 @@ export default { 82 ], "id": [ - 5001 + 5000 ], "kills_count": [ 41 ], "match_map": [ - 2614 + 2613 ], "match_map_demo": [ - 2501 + 2500 ], "match_map_demo_id": [ - 5001 + 5000 ], "match_map_id": [ - 5001 + 5000 ], "render_jobs": [ - 275 + 274 ], "render_jobs_aggregate": [ - 265 + 264 ], "round": [ 41 ], "size": [ - 260 + 259 ], "target": [ - 3914 + 3913 ], "target_steam_id": [ - 260 + 259 ], "thumbnail_download_url": [ 82 @@ -39816,16 +39808,16 @@ export default { 82 ], "user": [ - 3914 + 3913 ], "user_steam_id": [ - 260 + 259 ], "views_count": [ 41 ], "visibility": [ - 929 + 928 ], "__typename": [ 80 @@ -39843,13 +39835,13 @@ export default { 40 ], "size": [ - 258 + 257 ], "target_steam_id": [ - 258 + 257 ], "user_steam_id": [ - 258 + 257 ], "views_count": [ 40 @@ -39860,7 +39852,7 @@ export default { }, "match_clips_insert_input": { "created_at": [ - 4499 + 4498 ], "duration_ms": [ 40 @@ -39869,37 +39861,37 @@ export default { 80 ], "id": [ - 4999 + 4998 ], "kills_count": [ 40 ], "match_map": [ - 2623 + 2622 ], "match_map_demo": [ - 2513 + 2512 ], "match_map_demo_id": [ - 4999 + 4998 ], "match_map_id": [ - 4999 + 4998 ], "render_jobs": [ - 272 + 271 ], "round": [ 40 ], "size": [ - 258 + 257 ], "target": [ - 3921 + 3920 ], "target_steam_id": [ - 258 + 257 ], "thumbnail_url": [ 80 @@ -39908,16 +39900,16 @@ export default { 80 ], "user": [ - 3921 + 3920 ], "user_steam_id": [ - 258 + 257 ], "views_count": [ 40 ], "visibility": [ - 928 + 927 ], "__typename": [ 80 @@ -39925,7 +39917,7 @@ export default { }, "match_clips_max_fields": { "created_at": [ - 4499 + 4498 ], "download_url": [ 80 @@ -39937,25 +39929,25 @@ export default { 80 ], "id": [ - 4999 + 4998 ], "kills_count": [ 40 ], "match_map_demo_id": [ - 4999 + 4998 ], "match_map_id": [ - 4999 + 4998 ], "round": [ 40 ], "size": [ - 258 + 257 ], "target_steam_id": [ - 258 + 257 ], "thumbnail_download_url": [ 80 @@ -39967,7 +39959,7 @@ export default { 80 ], "user_steam_id": [ - 258 + 257 ], "views_count": [ 40 @@ -39978,46 +39970,46 @@ export default { }, "match_clips_max_order_by": { "created_at": [ - 2952 + 2951 ], "duration_ms": [ - 2952 + 2951 ], "file": [ - 2952 + 2951 ], "id": [ - 2952 + 2951 ], "kills_count": [ - 2952 + 2951 ], "match_map_demo_id": [ - 2952 + 2951 ], "match_map_id": [ - 2952 + 2951 ], "round": [ - 2952 + 2951 ], "size": [ - 2952 + 2951 ], "target_steam_id": [ - 2952 + 2951 ], "thumbnail_url": [ - 2952 + 2951 ], "title": [ - 2952 + 2951 ], "user_steam_id": [ - 2952 + 2951 ], "views_count": [ - 2952 + 2951 ], "__typename": [ 80 @@ -40025,7 +40017,7 @@ export default { }, "match_clips_min_fields": { "created_at": [ - 4499 + 4498 ], "download_url": [ 80 @@ -40037,25 +40029,25 @@ export default { 80 ], "id": [ - 4999 + 4998 ], "kills_count": [ 40 ], "match_map_demo_id": [ - 4999 + 4998 ], "match_map_id": [ - 4999 + 4998 ], "round": [ 40 ], "size": [ - 258 + 257 ], "target_steam_id": [ - 258 + 257 ], "thumbnail_download_url": [ 80 @@ -40067,7 +40059,7 @@ export default { 80 ], "user_steam_id": [ - 258 + 257 ], "views_count": [ 40 @@ -40078,46 +40070,46 @@ export default { }, "match_clips_min_order_by": { "created_at": [ - 2952 + 2951 ], "duration_ms": [ - 2952 + 2951 ], "file": [ - 2952 + 2951 ], "id": [ - 2952 + 2951 ], "kills_count": [ - 2952 + 2951 ], "match_map_demo_id": [ - 2952 + 2951 ], "match_map_id": [ - 2952 + 2951 ], "round": [ - 2952 + 2951 ], "size": [ - 2952 + 2951 ], "target_steam_id": [ - 2952 + 2951 ], "thumbnail_url": [ - 2952 + 2951 ], "title": [ - 2952 + 2951 ], "user_steam_id": [ - 2952 + 2951 ], "views_count": [ - 2952 + 2951 ], "__typename": [ 80 @@ -40128,7 +40120,7 @@ export default { 40 ], "returning": [ - 2314 + 2313 ], "__typename": [ 80 @@ -40136,10 +40128,10 @@ export default { }, "match_clips_obj_rel_insert_input": { "data": [ - 2326 + 2325 ], "on_conflict": [ - 2333 + 2332 ], "__typename": [ 80 @@ -40147,13 +40139,13 @@ export default { }, "match_clips_on_conflict": { "constraint": [ - 2324 + 2323 ], "update_columns": [ - 2348 + 2347 ], "where": [ - 2323 + 2322 ], "__typename": [ 80 @@ -40161,70 +40153,70 @@ export default { }, "match_clips_order_by": { "created_at": [ - 2952 + 2951 ], "download_url": [ - 2952 + 2951 ], "duration_ms": [ - 2952 + 2951 ], "file": [ - 2952 + 2951 ], "id": [ - 2952 + 2951 ], "kills_count": [ - 2952 + 2951 ], "match_map": [ - 2625 + 2624 ], "match_map_demo": [ - 2515 + 2514 ], "match_map_demo_id": [ - 2952 + 2951 ], "match_map_id": [ - 2952 + 2951 ], "render_jobs_aggregate": [ - 270 + 269 ], "round": [ - 2952 + 2951 ], "size": [ - 2952 + 2951 ], "target": [ - 3923 + 3922 ], "target_steam_id": [ - 2952 + 2951 ], "thumbnail_download_url": [ - 2952 + 2951 ], "thumbnail_url": [ - 2952 + 2951 ], "title": [ - 2952 + 2951 ], "user": [ - 3923 + 3922 ], "user_steam_id": [ - 2952 + 2951 ], "views_count": [ - 2952 + 2951 ], "visibility": [ - 2952 + 2951 ], "__typename": [ 80 @@ -40232,7 +40224,7 @@ export default { }, "match_clips_pk_columns_input": { "id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -40241,7 +40233,7 @@ export default { "match_clips_select_column": {}, "match_clips_set_input": { "created_at": [ - 4499 + 4498 ], "duration_ms": [ 40 @@ -40250,25 +40242,25 @@ export default { 80 ], "id": [ - 4999 + 4998 ], "kills_count": [ 40 ], "match_map_demo_id": [ - 4999 + 4998 ], "match_map_id": [ - 4999 + 4998 ], "round": [ 40 ], "size": [ - 258 + 257 ], "target_steam_id": [ - 258 + 257 ], "thumbnail_url": [ 80 @@ -40277,13 +40269,13 @@ export default { 80 ], "user_steam_id": [ - 258 + 257 ], "views_count": [ 40 ], "visibility": [ - 928 + 927 ], "__typename": [ 80 @@ -40317,25 +40309,25 @@ export default { }, "match_clips_stddev_order_by": { "duration_ms": [ - 2952 + 2951 ], "kills_count": [ - 2952 + 2951 ], "round": [ - 2952 + 2951 ], "size": [ - 2952 + 2951 ], "target_steam_id": [ - 2952 + 2951 ], "user_steam_id": [ - 2952 + 2951 ], "views_count": [ - 2952 + 2951 ], "__typename": [ 80 @@ -40369,25 +40361,25 @@ export default { }, "match_clips_stddev_pop_order_by": { "duration_ms": [ - 2952 + 2951 ], "kills_count": [ - 2952 + 2951 ], "round": [ - 2952 + 2951 ], "size": [ - 2952 + 2951 ], "target_steam_id": [ - 2952 + 2951 ], "user_steam_id": [ - 2952 + 2951 ], "views_count": [ - 2952 + 2951 ], "__typename": [ 80 @@ -40421,25 +40413,25 @@ export default { }, "match_clips_stddev_samp_order_by": { "duration_ms": [ - 2952 + 2951 ], "kills_count": [ - 2952 + 2951 ], "round": [ - 2952 + 2951 ], "size": [ - 2952 + 2951 ], "target_steam_id": [ - 2952 + 2951 ], "user_steam_id": [ - 2952 + 2951 ], "views_count": [ - 2952 + 2951 ], "__typename": [ 80 @@ -40447,10 +40439,10 @@ export default { }, "match_clips_stream_cursor_input": { "initial_value": [ - 2345 + 2344 ], "ordering": [ - 314 + 313 ], "__typename": [ 80 @@ -40458,7 +40450,7 @@ export default { }, "match_clips_stream_cursor_value_input": { "created_at": [ - 4499 + 4498 ], "duration_ms": [ 40 @@ -40467,25 +40459,25 @@ export default { 80 ], "id": [ - 4999 + 4998 ], "kills_count": [ 40 ], "match_map_demo_id": [ - 4999 + 4998 ], "match_map_id": [ - 4999 + 4998 ], "round": [ 40 ], "size": [ - 258 + 257 ], "target_steam_id": [ - 258 + 257 ], "thumbnail_url": [ 80 @@ -40494,13 +40486,13 @@ export default { 80 ], "user_steam_id": [ - 258 + 257 ], "views_count": [ 40 ], "visibility": [ - 928 + 927 ], "__typename": [ 80 @@ -40517,13 +40509,13 @@ export default { 40 ], "size": [ - 258 + 257 ], "target_steam_id": [ - 258 + 257 ], "user_steam_id": [ - 258 + 257 ], "views_count": [ 40 @@ -40534,25 +40526,25 @@ export default { }, "match_clips_sum_order_by": { "duration_ms": [ - 2952 + 2951 ], "kills_count": [ - 2952 + 2951 ], "round": [ - 2952 + 2951 ], "size": [ - 2952 + 2951 ], "target_steam_id": [ - 2952 + 2951 ], "user_steam_id": [ - 2952 + 2951 ], "views_count": [ - 2952 + 2951 ], "__typename": [ 80 @@ -40561,13 +40553,13 @@ export default { "match_clips_update_column": {}, "match_clips_updates": { "_inc": [ - 2325 + 2324 ], "_set": [ - 2337 + 2336 ], "where": [ - 2323 + 2322 ], "__typename": [ 80 @@ -40601,25 +40593,25 @@ export default { }, "match_clips_var_pop_order_by": { "duration_ms": [ - 2952 + 2951 ], "kills_count": [ - 2952 + 2951 ], "round": [ - 2952 + 2951 ], "size": [ - 2952 + 2951 ], "target_steam_id": [ - 2952 + 2951 ], "user_steam_id": [ - 2952 + 2951 ], "views_count": [ - 2952 + 2951 ], "__typename": [ 80 @@ -40653,25 +40645,25 @@ export default { }, "match_clips_var_samp_order_by": { "duration_ms": [ - 2952 + 2951 ], "kills_count": [ - 2952 + 2951 ], "round": [ - 2952 + 2951 ], "size": [ - 2952 + 2951 ], "target_steam_id": [ - 2952 + 2951 ], "user_steam_id": [ - 2952 + 2951 ], "views_count": [ - 2952 + 2951 ], "__typename": [ 80 @@ -40705,25 +40697,25 @@ export default { }, "match_clips_variance_order_by": { "duration_ms": [ - 2952 + 2951 ], "kills_count": [ - 2952 + 2951 ], "round": [ - 2952 + 2951 ], "size": [ - 2952 + 2951 ], "target_steam_id": [ - 2952 + 2951 ], "user_steam_id": [ - 2952 + 2951 ], "views_count": [ - 2952 + 2951 ], "__typename": [ 80 @@ -40731,52 +40723,52 @@ export default { }, "match_demo_sessions": { "created_at": [ - 4499 + 4498 ], "error_message": [ 80 ], "game_server_node": [ - 1699 + 1698 ], "game_server_node_id": [ 80 ], "id": [ - 4999 + 4998 ], "k8s_job_name": [ 80 ], "last_activity_at": [ - 4499 + 4498 ], "last_status_at": [ - 4499 + 4498 ], "match": [ - 2767 + 2766 ], "match_id": [ - 4999 + 4998 ], "match_map": [ - 2605 + 2604 ], "match_map_demo": [ - 2489 + 2488 ], "match_map_demo_id": [ - 4999 + 4998 ], "match_map_id": [ - 4999 + 4998 ], "status": [ 80 ], "status_history": [ - 1823, + 1822, { "path": [ 80 @@ -40787,10 +40779,10 @@ export default { 80 ], "watcher": [ - 3910 + 3909 ], "watcher_steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -40798,10 +40790,10 @@ export default { }, "match_demo_sessions_aggregate": { "aggregate": [ - 2360 + 2359 ], "nodes": [ - 2356 + 2355 ], "__typename": [ 80 @@ -40809,7 +40801,7 @@ export default { }, "match_demo_sessions_aggregate_bool_exp": { "count": [ - 2359 + 2358 ], "__typename": [ 80 @@ -40817,13 +40809,13 @@ export default { }, "match_demo_sessions_aggregate_bool_exp_count": { "arguments": [ - 2382 + 2381 ], "distinct": [ 5 ], "filter": [ - 2366 + 2365 ], "predicate": [ 41 @@ -40834,13 +40826,13 @@ export default { }, "match_demo_sessions_aggregate_fields": { "avg": [ - 2364 + 2363 ], "count": [ 40, { "columns": [ - 2382, + 2381, "[match_demo_sessions_select_column!]" ], "distinct": [ @@ -40849,31 +40841,31 @@ export default { } ], "max": [ - 2373 + 2372 ], "min": [ - 2375 + 2374 ], "stddev": [ - 2384 + 2383 ], "stddev_pop": [ - 2386 + 2385 ], "stddev_samp": [ - 2388 + 2387 ], "sum": [ - 2392 + 2391 ], "var_pop": [ - 2396 + 2395 ], "var_samp": [ - 2398 + 2397 ], "variance": [ - 2400 + 2399 ], "__typename": [ 80 @@ -40881,37 +40873,37 @@ export default { }, "match_demo_sessions_aggregate_order_by": { "avg": [ - 2365 + 2364 ], "count": [ - 2952 + 2951 ], "max": [ - 2374 + 2373 ], "min": [ - 2376 + 2375 ], "stddev": [ - 2385 + 2384 ], "stddev_pop": [ - 2387 + 2386 ], "stddev_samp": [ - 2389 + 2388 ], "sum": [ - 2393 + 2392 ], "var_pop": [ - 2397 + 2396 ], "var_samp": [ - 2399 + 2398 ], "variance": [ - 2401 + 2400 ], "__typename": [ 80 @@ -40919,7 +40911,7 @@ export default { }, "match_demo_sessions_append_input": { "status_history": [ - 1823 + 1822 ], "__typename": [ 80 @@ -40927,10 +40919,10 @@ export default { }, "match_demo_sessions_arr_rel_insert_input": { "data": [ - 2372 + 2371 ], "on_conflict": [ - 2378 + 2377 ], "__typename": [ 80 @@ -40946,7 +40938,7 @@ export default { }, "match_demo_sessions_avg_order_by": { "watcher_steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -40954,70 +40946,70 @@ export default { }, "match_demo_sessions_bool_exp": { "_and": [ - 2366 + 2365 ], "_not": [ - 2366 + 2365 ], "_or": [ - 2366 + 2365 ], "created_at": [ - 4500 + 4499 ], "error_message": [ 82 ], "game_server_node": [ - 1711 + 1710 ], "game_server_node_id": [ 82 ], "id": [ - 5001 + 5000 ], "k8s_job_name": [ 82 ], "last_activity_at": [ - 4500 + 4499 ], "last_status_at": [ - 4500 + 4499 ], "match": [ - 2776 + 2775 ], "match_id": [ - 5001 + 5000 ], "match_map": [ - 2614 + 2613 ], "match_map_demo": [ - 2501 + 2500 ], "match_map_demo_id": [ - 5001 + 5000 ], "match_map_id": [ - 5001 + 5000 ], "status": [ 82 ], "status_history": [ - 1825 + 1824 ], "stream_url": [ 82 ], "watcher": [ - 3914 + 3913 ], "watcher_steam_id": [ - 260 + 259 ], "__typename": [ 80 @@ -41050,7 +41042,7 @@ export default { }, "match_demo_sessions_inc_input": { "watcher_steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -41058,61 +41050,61 @@ export default { }, "match_demo_sessions_insert_input": { "created_at": [ - 4499 + 4498 ], "error_message": [ 80 ], "game_server_node": [ - 1723 + 1722 ], "game_server_node_id": [ 80 ], "id": [ - 4999 + 4998 ], "k8s_job_name": [ 80 ], "last_activity_at": [ - 4499 + 4498 ], "last_status_at": [ - 4499 + 4498 ], "match": [ - 2785 + 2784 ], "match_id": [ - 4999 + 4998 ], "match_map": [ - 2623 + 2622 ], "match_map_demo": [ - 2513 + 2512 ], "match_map_demo_id": [ - 4999 + 4998 ], "match_map_id": [ - 4999 + 4998 ], "status": [ 80 ], "status_history": [ - 1823 + 1822 ], "stream_url": [ 80 ], "watcher": [ - 3921 + 3920 ], "watcher_steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -41120,7 +41112,7 @@ export default { }, "match_demo_sessions_max_fields": { "created_at": [ - 4499 + 4498 ], "error_message": [ 80 @@ -41129,25 +41121,25 @@ export default { 80 ], "id": [ - 4999 + 4998 ], "k8s_job_name": [ 80 ], "last_activity_at": [ - 4499 + 4498 ], "last_status_at": [ - 4499 + 4498 ], "match_id": [ - 4999 + 4998 ], "match_map_demo_id": [ - 4999 + 4998 ], "match_map_id": [ - 4999 + 4998 ], "status": [ 80 @@ -41156,7 +41148,7 @@ export default { 80 ], "watcher_steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -41164,43 +41156,43 @@ export default { }, "match_demo_sessions_max_order_by": { "created_at": [ - 2952 + 2951 ], "error_message": [ - 2952 + 2951 ], "game_server_node_id": [ - 2952 + 2951 ], "id": [ - 2952 + 2951 ], "k8s_job_name": [ - 2952 + 2951 ], "last_activity_at": [ - 2952 + 2951 ], "last_status_at": [ - 2952 + 2951 ], "match_id": [ - 2952 + 2951 ], "match_map_demo_id": [ - 2952 + 2951 ], "match_map_id": [ - 2952 + 2951 ], "status": [ - 2952 + 2951 ], "stream_url": [ - 2952 + 2951 ], "watcher_steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -41208,7 +41200,7 @@ export default { }, "match_demo_sessions_min_fields": { "created_at": [ - 4499 + 4498 ], "error_message": [ 80 @@ -41217,25 +41209,25 @@ export default { 80 ], "id": [ - 4999 + 4998 ], "k8s_job_name": [ 80 ], "last_activity_at": [ - 4499 + 4498 ], "last_status_at": [ - 4499 + 4498 ], "match_id": [ - 4999 + 4998 ], "match_map_demo_id": [ - 4999 + 4998 ], "match_map_id": [ - 4999 + 4998 ], "status": [ 80 @@ -41244,7 +41236,7 @@ export default { 80 ], "watcher_steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -41252,43 +41244,43 @@ export default { }, "match_demo_sessions_min_order_by": { "created_at": [ - 2952 + 2951 ], "error_message": [ - 2952 + 2951 ], "game_server_node_id": [ - 2952 + 2951 ], "id": [ - 2952 + 2951 ], "k8s_job_name": [ - 2952 + 2951 ], "last_activity_at": [ - 2952 + 2951 ], "last_status_at": [ - 2952 + 2951 ], "match_id": [ - 2952 + 2951 ], "match_map_demo_id": [ - 2952 + 2951 ], "match_map_id": [ - 2952 + 2951 ], "status": [ - 2952 + 2951 ], "stream_url": [ - 2952 + 2951 ], "watcher_steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -41299,7 +41291,7 @@ export default { 40 ], "returning": [ - 2356 + 2355 ], "__typename": [ 80 @@ -41307,13 +41299,13 @@ export default { }, "match_demo_sessions_on_conflict": { "constraint": [ - 2367 + 2366 ], "update_columns": [ - 2394 + 2393 ], "where": [ - 2366 + 2365 ], "__typename": [ 80 @@ -41321,61 +41313,61 @@ export default { }, "match_demo_sessions_order_by": { "created_at": [ - 2952 + 2951 ], "error_message": [ - 2952 + 2951 ], "game_server_node": [ - 1725 + 1724 ], "game_server_node_id": [ - 2952 + 2951 ], "id": [ - 2952 + 2951 ], "k8s_job_name": [ - 2952 + 2951 ], "last_activity_at": [ - 2952 + 2951 ], "last_status_at": [ - 2952 + 2951 ], "match": [ - 2787 + 2786 ], "match_id": [ - 2952 + 2951 ], "match_map": [ - 2625 + 2624 ], "match_map_demo": [ - 2515 + 2514 ], "match_map_demo_id": [ - 2952 + 2951 ], "match_map_id": [ - 2952 + 2951 ], "status": [ - 2952 + 2951 ], "status_history": [ - 2952 + 2951 ], "stream_url": [ - 2952 + 2951 ], "watcher": [ - 3923 + 3922 ], "watcher_steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -41383,7 +41375,7 @@ export default { }, "match_demo_sessions_pk_columns_input": { "id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -41391,7 +41383,7 @@ export default { }, "match_demo_sessions_prepend_input": { "status_history": [ - 1823 + 1822 ], "__typename": [ 80 @@ -41400,7 +41392,7 @@ export default { "match_demo_sessions_select_column": {}, "match_demo_sessions_set_input": { "created_at": [ - 4499 + 4498 ], "error_message": [ 80 @@ -41409,37 +41401,37 @@ export default { 80 ], "id": [ - 4999 + 4998 ], "k8s_job_name": [ 80 ], "last_activity_at": [ - 4499 + 4498 ], "last_status_at": [ - 4499 + 4498 ], "match_id": [ - 4999 + 4998 ], "match_map_demo_id": [ - 4999 + 4998 ], "match_map_id": [ - 4999 + 4998 ], "status": [ 80 ], "status_history": [ - 1823 + 1822 ], "stream_url": [ 80 ], "watcher_steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -41455,7 +41447,7 @@ export default { }, "match_demo_sessions_stddev_order_by": { "watcher_steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -41471,7 +41463,7 @@ export default { }, "match_demo_sessions_stddev_pop_order_by": { "watcher_steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -41487,7 +41479,7 @@ export default { }, "match_demo_sessions_stddev_samp_order_by": { "watcher_steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -41495,10 +41487,10 @@ export default { }, "match_demo_sessions_stream_cursor_input": { "initial_value": [ - 2391 + 2390 ], "ordering": [ - 314 + 313 ], "__typename": [ 80 @@ -41506,7 +41498,7 @@ export default { }, "match_demo_sessions_stream_cursor_value_input": { "created_at": [ - 4499 + 4498 ], "error_message": [ 80 @@ -41515,37 +41507,37 @@ export default { 80 ], "id": [ - 4999 + 4998 ], "k8s_job_name": [ 80 ], "last_activity_at": [ - 4499 + 4498 ], "last_status_at": [ - 4499 + 4498 ], "match_id": [ - 4999 + 4998 ], "match_map_demo_id": [ - 4999 + 4998 ], "match_map_id": [ - 4999 + 4998 ], "status": [ 80 ], "status_history": [ - 1823 + 1822 ], "stream_url": [ 80 ], "watcher_steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -41553,7 +41545,7 @@ export default { }, "match_demo_sessions_sum_fields": { "watcher_steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -41561,7 +41553,7 @@ export default { }, "match_demo_sessions_sum_order_by": { "watcher_steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -41570,28 +41562,28 @@ export default { "match_demo_sessions_update_column": {}, "match_demo_sessions_updates": { "_append": [ - 2362 + 2361 ], "_delete_at_path": [ - 2368 + 2367 ], "_delete_elem": [ - 2369 + 2368 ], "_delete_key": [ - 2370 + 2369 ], "_inc": [ - 2371 + 2370 ], "_prepend": [ - 2381 + 2380 ], "_set": [ - 2383 + 2382 ], "where": [ - 2366 + 2365 ], "__typename": [ 80 @@ -41607,7 +41599,7 @@ export default { }, "match_demo_sessions_var_pop_order_by": { "watcher_steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -41623,7 +41615,7 @@ export default { }, "match_demo_sessions_var_samp_order_by": { "watcher_steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -41639,7 +41631,7 @@ export default { }, "match_demo_sessions_variance_order_by": { "watcher_steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -41656,22 +41648,22 @@ export default { 80 ], "id": [ - 4999 + 4998 ], "lineup": [ - 2447 + 2446 ], "match_lineup_id": [ - 4999 + 4998 ], "placeholder_name": [ 80 ], "player": [ - 3910 + 3909 ], "steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -41679,10 +41671,10 @@ export default { }, "match_lineup_players_aggregate": { "aggregate": [ - 2408 + 2407 ], "nodes": [ - 2402 + 2401 ], "__typename": [ 80 @@ -41690,13 +41682,13 @@ export default { }, "match_lineup_players_aggregate_bool_exp": { "bool_and": [ - 2405 + 2404 ], "bool_or": [ - 2406 + 2405 ], "count": [ - 2407 + 2406 ], "__typename": [ 80 @@ -41704,13 +41696,13 @@ export default { }, "match_lineup_players_aggregate_bool_exp_bool_and": { "arguments": [ - 2426 + 2425 ], "distinct": [ 5 ], "filter": [ - 2413 + 2412 ], "predicate": [ 6 @@ -41721,13 +41713,13 @@ export default { }, "match_lineup_players_aggregate_bool_exp_bool_or": { "arguments": [ - 2427 + 2426 ], "distinct": [ 5 ], "filter": [ - 2413 + 2412 ], "predicate": [ 6 @@ -41738,13 +41730,13 @@ export default { }, "match_lineup_players_aggregate_bool_exp_count": { "arguments": [ - 2425 + 2424 ], "distinct": [ 5 ], "filter": [ - 2413 + 2412 ], "predicate": [ 41 @@ -41755,13 +41747,13 @@ export default { }, "match_lineup_players_aggregate_fields": { "avg": [ - 2411 + 2410 ], "count": [ 40, { "columns": [ - 2425, + 2424, "[match_lineup_players_select_column!]" ], "distinct": [ @@ -41769,6 +41761,44 @@ export default { ] } ], + "max": [ + 2416 + ], + "min": [ + 2418 + ], + "stddev": [ + 2428 + ], + "stddev_pop": [ + 2430 + ], + "stddev_samp": [ + 2432 + ], + "sum": [ + 2436 + ], + "var_pop": [ + 2440 + ], + "var_samp": [ + 2442 + ], + "variance": [ + 2444 + ], + "__typename": [ + 80 + ] + }, + "match_lineup_players_aggregate_order_by": { + "avg": [ + 2411 + ], + "count": [ + 2951 + ], "max": [ 2417 ], @@ -41800,50 +41830,12 @@ export default { 80 ] }, - "match_lineup_players_aggregate_order_by": { - "avg": [ - 2412 - ], - "count": [ - 2952 - ], - "max": [ - 2418 - ], - "min": [ - 2420 - ], - "stddev": [ - 2430 - ], - "stddev_pop": [ - 2432 - ], - "stddev_samp": [ - 2434 - ], - "sum": [ - 2438 - ], - "var_pop": [ - 2442 - ], - "var_samp": [ - 2444 - ], - "variance": [ - 2446 - ], - "__typename": [ - 80 - ] - }, "match_lineup_players_arr_rel_insert_input": { "data": [ - 2416 + 2415 ], "on_conflict": [ - 2422 + 2421 ], "__typename": [ 80 @@ -41859,7 +41851,7 @@ export default { }, "match_lineup_players_avg_order_by": { "steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -41867,13 +41859,13 @@ export default { }, "match_lineup_players_bool_exp": { "_and": [ - 2413 + 2412 ], "_not": [ - 2413 + 2412 ], "_or": [ - 2413 + 2412 ], "captain": [ 6 @@ -41885,22 +41877,22 @@ export default { 82 ], "id": [ - 5001 + 5000 ], "lineup": [ - 2456 + 2455 ], "match_lineup_id": [ - 5001 + 5000 ], "placeholder_name": [ 82 ], "player": [ - 3914 + 3913 ], "steam_id": [ - 260 + 259 ], "__typename": [ 80 @@ -41909,7 +41901,7 @@ export default { "match_lineup_players_constraint": {}, "match_lineup_players_inc_input": { "steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -41926,22 +41918,22 @@ export default { 80 ], "id": [ - 4999 + 4998 ], "lineup": [ - 2465 + 2464 ], "match_lineup_id": [ - 4999 + 4998 ], "placeholder_name": [ 80 ], "player": [ - 3921 + 3920 ], "steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -41952,16 +41944,16 @@ export default { 80 ], "id": [ - 4999 + 4998 ], "match_lineup_id": [ - 4999 + 4998 ], "placeholder_name": [ 80 ], "steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -41969,19 +41961,19 @@ export default { }, "match_lineup_players_max_order_by": { "discord_id": [ - 2952 + 2951 ], "id": [ - 2952 + 2951 ], "match_lineup_id": [ - 2952 + 2951 ], "placeholder_name": [ - 2952 + 2951 ], "steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -41992,16 +41984,16 @@ export default { 80 ], "id": [ - 4999 + 4998 ], "match_lineup_id": [ - 4999 + 4998 ], "placeholder_name": [ 80 ], "steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -42009,19 +42001,19 @@ export default { }, "match_lineup_players_min_order_by": { "discord_id": [ - 2952 + 2951 ], "id": [ - 2952 + 2951 ], "match_lineup_id": [ - 2952 + 2951 ], "placeholder_name": [ - 2952 + 2951 ], "steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -42032,7 +42024,7 @@ export default { 40 ], "returning": [ - 2402 + 2401 ], "__typename": [ 80 @@ -42040,13 +42032,13 @@ export default { }, "match_lineup_players_on_conflict": { "constraint": [ - 2414 + 2413 ], "update_columns": [ - 2439 + 2438 ], "where": [ - 2413 + 2412 ], "__typename": [ 80 @@ -42054,31 +42046,31 @@ export default { }, "match_lineup_players_order_by": { "captain": [ - 2952 + 2951 ], "checked_in": [ - 2952 + 2951 ], "discord_id": [ - 2952 + 2951 ], "id": [ - 2952 + 2951 ], "lineup": [ - 2467 + 2466 ], "match_lineup_id": [ - 2952 + 2951 ], "placeholder_name": [ - 2952 + 2951 ], "player": [ - 3923 + 3922 ], "steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -42086,7 +42078,7 @@ export default { }, "match_lineup_players_pk_columns_input": { "id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -42106,16 +42098,16 @@ export default { 80 ], "id": [ - 4999 + 4998 ], "match_lineup_id": [ - 4999 + 4998 ], "placeholder_name": [ 80 ], "steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -42131,7 +42123,7 @@ export default { }, "match_lineup_players_stddev_order_by": { "steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -42147,7 +42139,7 @@ export default { }, "match_lineup_players_stddev_pop_order_by": { "steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -42163,7 +42155,7 @@ export default { }, "match_lineup_players_stddev_samp_order_by": { "steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -42171,10 +42163,10 @@ export default { }, "match_lineup_players_stream_cursor_input": { "initial_value": [ - 2436 + 2435 ], "ordering": [ - 314 + 313 ], "__typename": [ 80 @@ -42191,16 +42183,16 @@ export default { 80 ], "id": [ - 4999 + 4998 ], "match_lineup_id": [ - 4999 + 4998 ], "placeholder_name": [ 80 ], "steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -42208,7 +42200,7 @@ export default { }, "match_lineup_players_sum_fields": { "steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -42216,7 +42208,7 @@ export default { }, "match_lineup_players_sum_order_by": { "steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -42225,13 +42217,13 @@ export default { "match_lineup_players_update_column": {}, "match_lineup_players_updates": { "_inc": [ - 2415 + 2414 ], "_set": [ - 2428 + 2427 ], "where": [ - 2413 + 2412 ], "__typename": [ 80 @@ -42247,7 +42239,7 @@ export default { }, "match_lineup_players_var_pop_order_by": { "steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -42263,7 +42255,7 @@ export default { }, "match_lineup_players_var_samp_order_by": { "steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -42279,7 +42271,7 @@ export default { }, "match_lineup_players_variance_order_by": { "steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -42296,16 +42288,16 @@ export default { 5 ], "captain": [ - 5155 + 5154 ], "coach": [ - 3910 + 3909 ], "coach_steam_id": [ - 258 + 257 ], "id": [ - 4999 + 4998 ], "is_on_lineup": [ 5 @@ -42320,10 +42312,10 @@ export default { 5 ], "lineup_players": [ - 2402, + 2401, { "distinct_on": [ - 2425, + 2424, "[match_lineup_players_select_column!]" ], "limit": [ @@ -42333,19 +42325,19 @@ export default { 40 ], "order_by": [ - 2423, + 2422, "[match_lineup_players_order_by!]" ], "where": [ - 2413 + 2412 ] } ], "lineup_players_aggregate": [ - 2403, + 2402, { "distinct_on": [ - 2425, + 2424, "[match_lineup_players_select_column!]" ], "limit": [ @@ -42355,25 +42347,25 @@ export default { 40 ], "order_by": [ - 2423, + 2422, "[match_lineup_players_order_by!]" ], "where": [ - 2413 + 2412 ] } ], "match": [ - 2767 + 2766 ], "match_id": [ - 4999 + 4998 ], "match_veto_picks": [ - 2581, + 2580, { "distinct_on": [ - 2599, + 2598, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -42383,19 +42375,19 @@ export default { 40 ], "order_by": [ - 2597, + 2596, "[match_map_veto_picks_order_by!]" ], "where": [ - 2588 + 2587 ] } ], "match_veto_picks_aggregate": [ - 2582, + 2581, { "distinct_on": [ - 2599, + 2598, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -42405,11 +42397,11 @@ export default { 40 ], "order_by": [ - 2597, + 2596, "[match_map_veto_picks_order_by!]" ], "where": [ - 2588 + 2587 ] } ], @@ -42417,10 +42409,10 @@ export default { 80 ], "team": [ - 4452 + 4451 ], "team_id": [ - 4999 + 4998 ], "team_name": [ 80 @@ -42431,10 +42423,10 @@ export default { }, "match_lineups_aggregate": { "aggregate": [ - 2451 + 2450 ], "nodes": [ - 2447 + 2446 ], "__typename": [ 80 @@ -42442,7 +42434,7 @@ export default { }, "match_lineups_aggregate_bool_exp": { "count": [ - 2450 + 2449 ], "__typename": [ 80 @@ -42450,13 +42442,13 @@ export default { }, "match_lineups_aggregate_bool_exp_count": { "arguments": [ - 2469 + 2468 ], "distinct": [ 5 ], "filter": [ - 2456 + 2455 ], "predicate": [ 41 @@ -42467,13 +42459,13 @@ export default { }, "match_lineups_aggregate_fields": { "avg": [ - 2454 + 2453 ], "count": [ 40, { "columns": [ - 2469, + 2468, "[match_lineups_select_column!]" ], "distinct": [ @@ -42482,31 +42474,31 @@ export default { } ], "max": [ - 2460 + 2459 ], "min": [ - 2462 + 2461 ], "stddev": [ - 2471 + 2470 ], "stddev_pop": [ - 2473 + 2472 ], "stddev_samp": [ - 2475 + 2474 ], "sum": [ - 2479 + 2478 ], "var_pop": [ - 2483 + 2482 ], "var_samp": [ - 2485 + 2484 ], "variance": [ - 2487 + 2486 ], "__typename": [ 80 @@ -42514,37 +42506,37 @@ export default { }, "match_lineups_aggregate_order_by": { "avg": [ - 2455 + 2454 ], "count": [ - 2952 + 2951 ], "max": [ - 2461 + 2460 ], "min": [ - 2463 + 2462 ], "stddev": [ - 2472 + 2471 ], "stddev_pop": [ - 2474 + 2473 ], "stddev_samp": [ - 2476 + 2475 ], "sum": [ - 2480 + 2479 ], "var_pop": [ - 2484 + 2483 ], "var_samp": [ - 2486 + 2485 ], "variance": [ - 2488 + 2487 ], "__typename": [ 80 @@ -42552,10 +42544,10 @@ export default { }, "match_lineups_arr_rel_insert_input": { "data": [ - 2459 + 2458 ], "on_conflict": [ - 2466 + 2465 ], "__typename": [ 80 @@ -42571,7 +42563,7 @@ export default { }, "match_lineups_avg_order_by": { "coach_steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -42579,13 +42571,13 @@ export default { }, "match_lineups_bool_exp": { "_and": [ - 2456 + 2455 ], "_not": [ - 2456 + 2455 ], "_or": [ - 2456 + 2455 ], "can_pick_map_veto": [ 6 @@ -42597,16 +42589,16 @@ export default { 6 ], "captain": [ - 5159 + 5158 ], "coach": [ - 3914 + 3913 ], "coach_steam_id": [ - 260 + 259 ], "id": [ - 5001 + 5000 ], "is_on_lineup": [ 6 @@ -42621,31 +42613,31 @@ export default { 6 ], "lineup_players": [ - 2413 + 2412 ], "lineup_players_aggregate": [ - 2404 + 2403 ], "match": [ - 2776 + 2775 ], "match_id": [ - 5001 + 5000 ], "match_veto_picks": [ - 2588 + 2587 ], "match_veto_picks_aggregate": [ - 2583 + 2582 ], "name": [ 82 ], "team": [ - 4463 + 4462 ], "team_id": [ - 5001 + 5000 ], "team_name": [ 82 @@ -42657,7 +42649,7 @@ export default { "match_lineups_constraint": {}, "match_lineups_inc_input": { "coach_steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -42665,34 +42657,34 @@ export default { }, "match_lineups_insert_input": { "captain": [ - 5165 + 5164 ], "coach": [ - 3921 + 3920 ], "coach_steam_id": [ - 258 + 257 ], "id": [ - 4999 + 4998 ], "lineup_players": [ - 2410 + 2409 ], "match": [ - 2785 + 2784 ], "match_id": [ - 4999 + 4998 ], "match_veto_picks": [ - 2587 + 2586 ], "team": [ - 4472 + 4471 ], "team_id": [ - 4999 + 4998 ], "team_name": [ 80 @@ -42703,19 +42695,19 @@ export default { }, "match_lineups_max_fields": { "coach_steam_id": [ - 258 + 257 ], "id": [ - 4999 + 4998 ], "match_id": [ - 4999 + 4998 ], "name": [ 80 ], "team_id": [ - 4999 + 4998 ], "team_name": [ 80 @@ -42726,19 +42718,19 @@ export default { }, "match_lineups_max_order_by": { "coach_steam_id": [ - 2952 + 2951 ], "id": [ - 2952 + 2951 ], "match_id": [ - 2952 + 2951 ], "team_id": [ - 2952 + 2951 ], "team_name": [ - 2952 + 2951 ], "__typename": [ 80 @@ -42746,19 +42738,19 @@ export default { }, "match_lineups_min_fields": { "coach_steam_id": [ - 258 + 257 ], "id": [ - 4999 + 4998 ], "match_id": [ - 4999 + 4998 ], "name": [ 80 ], "team_id": [ - 4999 + 4998 ], "team_name": [ 80 @@ -42769,19 +42761,19 @@ export default { }, "match_lineups_min_order_by": { "coach_steam_id": [ - 2952 + 2951 ], "id": [ - 2952 + 2951 ], "match_id": [ - 2952 + 2951 ], "team_id": [ - 2952 + 2951 ], "team_name": [ - 2952 + 2951 ], "__typename": [ 80 @@ -42792,7 +42784,7 @@ export default { 40 ], "returning": [ - 2447 + 2446 ], "__typename": [ 80 @@ -42800,10 +42792,10 @@ export default { }, "match_lineups_obj_rel_insert_input": { "data": [ - 2459 + 2458 ], "on_conflict": [ - 2466 + 2465 ], "__typename": [ 80 @@ -42811,13 +42803,13 @@ export default { }, "match_lineups_on_conflict": { "constraint": [ - 2457 + 2456 ], "update_columns": [ - 2481 + 2480 ], "where": [ - 2456 + 2455 ], "__typename": [ 80 @@ -42825,61 +42817,61 @@ export default { }, "match_lineups_order_by": { "can_pick_map_veto": [ - 2952 + 2951 ], "can_pick_region_veto": [ - 2952 + 2951 ], "can_update_lineup": [ - 2952 + 2951 ], "captain": [ - 5166 + 5165 ], "coach": [ - 3923 + 3922 ], "coach_steam_id": [ - 2952 + 2951 ], "id": [ - 2952 + 2951 ], "is_on_lineup": [ - 2952 + 2951 ], "is_picking_map_veto": [ - 2952 + 2951 ], "is_picking_region_veto": [ - 2952 + 2951 ], "is_ready": [ - 2952 + 2951 ], "lineup_players_aggregate": [ - 2409 + 2408 ], "match": [ - 2787 + 2786 ], "match_id": [ - 2952 + 2951 ], "match_veto_picks_aggregate": [ - 2586 + 2585 ], "name": [ - 2952 + 2951 ], "team": [ - 4474 + 4473 ], "team_id": [ - 2952 + 2951 ], "team_name": [ - 2952 + 2951 ], "__typename": [ 80 @@ -42887,7 +42879,7 @@ export default { }, "match_lineups_pk_columns_input": { "id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -42896,16 +42888,16 @@ export default { "match_lineups_select_column": {}, "match_lineups_set_input": { "coach_steam_id": [ - 258 + 257 ], "id": [ - 4999 + 4998 ], "match_id": [ - 4999 + 4998 ], "team_id": [ - 4999 + 4998 ], "team_name": [ 80 @@ -42924,7 +42916,7 @@ export default { }, "match_lineups_stddev_order_by": { "coach_steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -42940,7 +42932,7 @@ export default { }, "match_lineups_stddev_pop_order_by": { "coach_steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -42956,7 +42948,7 @@ export default { }, "match_lineups_stddev_samp_order_by": { "coach_steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -42964,10 +42956,10 @@ export default { }, "match_lineups_stream_cursor_input": { "initial_value": [ - 2478 + 2477 ], "ordering": [ - 314 + 313 ], "__typename": [ 80 @@ -42975,16 +42967,16 @@ export default { }, "match_lineups_stream_cursor_value_input": { "coach_steam_id": [ - 258 + 257 ], "id": [ - 4999 + 4998 ], "match_id": [ - 4999 + 4998 ], "team_id": [ - 4999 + 4998 ], "team_name": [ 80 @@ -42995,7 +42987,7 @@ export default { }, "match_lineups_sum_fields": { "coach_steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -43003,7 +42995,7 @@ export default { }, "match_lineups_sum_order_by": { "coach_steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -43012,13 +43004,13 @@ export default { "match_lineups_update_column": {}, "match_lineups_updates": { "_inc": [ - 2458 + 2457 ], "_set": [ - 2470 + 2469 ], "where": [ - 2456 + 2455 ], "__typename": [ 80 @@ -43034,7 +43026,7 @@ export default { }, "match_lineups_var_pop_order_by": { "coach_steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -43050,7 +43042,7 @@ export default { }, "match_lineups_var_samp_order_by": { "coach_steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -43066,7 +43058,7 @@ export default { }, "match_lineups_variance_order_by": { "coach_steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -43074,7 +43066,7 @@ export default { }, "match_map_demos": { "bombs": [ - 1823, + 1822, { "path": [ 80 @@ -43082,10 +43074,10 @@ export default { } ], "clip_render_jobs": [ - 263, + 262, { "distinct_on": [ - 291, + 290, "[clip_render_jobs_select_column!]" ], "limit": [ @@ -43095,19 +43087,19 @@ export default { 40 ], "order_by": [ - 288, + 287, "[clip_render_jobs_order_by!]" ], "where": [ - 275 + 274 ] } ], "clip_render_jobs_aggregate": [ - 264, + 263, { "distinct_on": [ - 291, + 290, "[clip_render_jobs_select_column!]" ], "limit": [ @@ -43117,25 +43109,25 @@ export default { 40 ], "order_by": [ - 288, + 287, "[clip_render_jobs_order_by!]" ], "where": [ - 275 + 274 ] } ], "created_at": [ - 4499 + 4498 ], "cs2_build": [ 80 ], "demo_sessions": [ - 2356, + 2355, { "distinct_on": [ - 2382, + 2381, "[match_demo_sessions_select_column!]" ], "limit": [ @@ -43145,19 +43137,19 @@ export default { 40 ], "order_by": [ - 2379, + 2378, "[match_demo_sessions_order_by!]" ], "where": [ - 2366 + 2365 ] } ], "demo_sessions_aggregate": [ - 2357, + 2356, { "distinct_on": [ - 2382, + 2381, "[match_demo_sessions_select_column!]" ], "limit": [ @@ -43167,11 +43159,11 @@ export default { 40 ], "order_by": [ - 2379, + 2378, "[match_demo_sessions_order_by!]" ], "where": [ - 2366 + 2365 ] } ], @@ -43188,10 +43180,10 @@ export default { 5 ], "id": [ - 4999 + 4998 ], "kills": [ - 1823, + 1822, { "path": [ 80 @@ -43202,13 +43194,13 @@ export default { 80 ], "match": [ - 2767 + 2766 ], "match_clips": [ - 2314, + 2313, { "distinct_on": [ - 2336, + 2335, "[match_clips_select_column!]" ], "limit": [ @@ -43218,19 +43210,19 @@ export default { 40 ], "order_by": [ - 2334, + 2333, "[match_clips_order_by!]" ], "where": [ - 2323 + 2322 ] } ], "match_clips_aggregate": [ - 2315, + 2314, { "distinct_on": [ - 2336, + 2335, "[match_clips_select_column!]" ], "limit": [ @@ -43240,25 +43232,25 @@ export default { 40 ], "order_by": [ - 2334, + 2333, "[match_clips_order_by!]" ], "where": [ - 2323 + 2322 ] } ], "match_id": [ - 4999 + 4998 ], "match_map": [ - 2605 + 2604 ], "match_map_id": [ - 4999 + 4998 ], "metadata_parsed_at": [ - 4499 + 4498 ], "playback_file": [ 80 @@ -43270,7 +43262,7 @@ export default { 80 ], "players": [ - 1823, + 1822, { "path": [ 80 @@ -43278,7 +43270,7 @@ export default { } ], "round_ticks": [ - 1823, + 1822, { "path": [ 80 @@ -43303,10 +43295,10 @@ export default { }, "match_map_demos_aggregate": { "aggregate": [ - 2495 + 2494 ], "nodes": [ - 2489 + 2488 ], "__typename": [ 80 @@ -43314,13 +43306,13 @@ export default { }, "match_map_demos_aggregate_bool_exp": { "bool_and": [ - 2492 + 2491 ], "bool_or": [ - 2493 + 2492 ], "count": [ - 2494 + 2493 ], "__typename": [ 80 @@ -43328,13 +43320,13 @@ export default { }, "match_map_demos_aggregate_bool_exp_bool_and": { "arguments": [ - 2519 + 2518 ], "distinct": [ 5 ], "filter": [ - 2501 + 2500 ], "predicate": [ 6 @@ -43345,13 +43337,13 @@ export default { }, "match_map_demos_aggregate_bool_exp_bool_or": { "arguments": [ - 2520 + 2519 ], "distinct": [ 5 ], "filter": [ - 2501 + 2500 ], "predicate": [ 6 @@ -43362,13 +43354,13 @@ export default { }, "match_map_demos_aggregate_bool_exp_count": { "arguments": [ - 2518 + 2517 ], "distinct": [ 5 ], "filter": [ - 2501 + 2500 ], "predicate": [ 41 @@ -43379,13 +43371,13 @@ export default { }, "match_map_demos_aggregate_fields": { "avg": [ - 2499 + 2498 ], "count": [ 40, { "columns": [ - 2518, + 2517, "[match_map_demos_select_column!]" ], "distinct": [ @@ -43394,31 +43386,31 @@ export default { } ], "max": [ - 2508 + 2507 ], "min": [ - 2510 + 2509 ], "stddev": [ - 2522 + 2521 ], "stddev_pop": [ - 2524 + 2523 ], "stddev_samp": [ - 2526 + 2525 ], "sum": [ - 2530 + 2529 ], "var_pop": [ - 2534 + 2533 ], "var_samp": [ - 2536 + 2535 ], "variance": [ - 2538 + 2537 ], "__typename": [ 80 @@ -43426,37 +43418,37 @@ export default { }, "match_map_demos_aggregate_order_by": { "avg": [ - 2500 + 2499 ], "count": [ - 2952 + 2951 ], "max": [ - 2509 + 2508 ], "min": [ - 2511 + 2510 ], "stddev": [ - 2523 + 2522 ], "stddev_pop": [ - 2525 + 2524 ], "stddev_samp": [ - 2527 + 2526 ], "sum": [ - 2531 + 2530 ], "var_pop": [ - 2535 + 2534 ], "var_samp": [ - 2537 + 2536 ], "variance": [ - 2539 + 2538 ], "__typename": [ 80 @@ -43464,16 +43456,16 @@ export default { }, "match_map_demos_append_input": { "bombs": [ - 1823 + 1822 ], "kills": [ - 1823 + 1822 ], "players": [ - 1823 + 1822 ], "round_ticks": [ - 1823 + 1822 ], "__typename": [ 80 @@ -43481,10 +43473,10 @@ export default { }, "match_map_demos_arr_rel_insert_input": { "data": [ - 2507 + 2506 ], "on_conflict": [ - 2514 + 2513 ], "__typename": [ 80 @@ -43512,19 +43504,19 @@ export default { }, "match_map_demos_avg_order_by": { "duration_seconds": [ - 2952 + 2951 ], "playback_size": [ - 2952 + 2951 ], "size": [ - 2952 + 2951 ], "tick_rate": [ - 2952 + 2951 ], "total_ticks": [ - 2952 + 2951 ], "__typename": [ 80 @@ -43532,34 +43524,34 @@ export default { }, "match_map_demos_bool_exp": { "_and": [ - 2501 + 2500 ], "_not": [ - 2501 + 2500 ], "_or": [ - 2501 + 2500 ], "bombs": [ - 1825 + 1824 ], "clip_render_jobs": [ - 275 + 274 ], "clip_render_jobs_aggregate": [ - 265 + 264 ], "created_at": [ - 4500 + 4499 ], "cs2_build": [ 82 ], "demo_sessions": [ - 2366 + 2365 ], "demo_sessions_aggregate": [ - 2358 + 2357 ], "download_url": [ 82 @@ -43574,34 +43566,34 @@ export default { 6 ], "id": [ - 5001 + 5000 ], "kills": [ - 1825 + 1824 ], "map_name": [ 82 ], "match": [ - 2776 + 2775 ], "match_clips": [ - 2323 + 2322 ], "match_clips_aggregate": [ - 2316 + 2315 ], "match_id": [ - 5001 + 5000 ], "match_map": [ - 2614 + 2613 ], "match_map_id": [ - 5001 + 5000 ], "metadata_parsed_at": [ - 4500 + 4499 ], "playback_file": [ 82 @@ -43613,10 +43605,10 @@ export default { 82 ], "players": [ - 1825 + 1824 ], "round_ticks": [ - 1825 + 1824 ], "size": [ 41 @@ -43705,19 +43697,19 @@ export default { }, "match_map_demos_insert_input": { "bombs": [ - 1823 + 1822 ], "clip_render_jobs": [ - 272 + 271 ], "created_at": [ - 4499 + 4498 ], "cs2_build": [ 80 ], "demo_sessions": [ - 2363 + 2362 ], "file": [ 80 @@ -43726,31 +43718,31 @@ export default { 5 ], "id": [ - 4999 + 4998 ], "kills": [ - 1823 + 1822 ], "map_name": [ 80 ], "match": [ - 2785 + 2784 ], "match_clips": [ - 2320 + 2319 ], "match_id": [ - 4999 + 4998 ], "match_map": [ - 2623 + 2622 ], "match_map_id": [ - 4999 + 4998 ], "metadata_parsed_at": [ - 4499 + 4498 ], "playback_file": [ 80 @@ -43759,10 +43751,10 @@ export default { 40 ], "players": [ - 1823 + 1822 ], "round_ticks": [ - 1823 + 1822 ], "size": [ 40 @@ -43782,7 +43774,7 @@ export default { }, "match_map_demos_max_fields": { "created_at": [ - 4499 + 4498 ], "cs2_build": [ 80 @@ -43797,19 +43789,19 @@ export default { 80 ], "id": [ - 4999 + 4998 ], "map_name": [ 80 ], "match_id": [ - 4999 + 4998 ], "match_map_id": [ - 4999 + 4998 ], "metadata_parsed_at": [ - 4499 + 4498 ], "playback_file": [ 80 @@ -43838,49 +43830,49 @@ export default { }, "match_map_demos_max_order_by": { "created_at": [ - 2952 + 2951 ], "cs2_build": [ - 2952 + 2951 ], "duration_seconds": [ - 2952 + 2951 ], "file": [ - 2952 + 2951 ], "id": [ - 2952 + 2951 ], "map_name": [ - 2952 + 2951 ], "match_id": [ - 2952 + 2951 ], "match_map_id": [ - 2952 + 2951 ], "metadata_parsed_at": [ - 2952 + 2951 ], "playback_file": [ - 2952 + 2951 ], "playback_size": [ - 2952 + 2951 ], "size": [ - 2952 + 2951 ], "tick_rate": [ - 2952 + 2951 ], "total_ticks": [ - 2952 + 2951 ], "workshop_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -43888,7 +43880,7 @@ export default { }, "match_map_demos_min_fields": { "created_at": [ - 4499 + 4498 ], "cs2_build": [ 80 @@ -43903,19 +43895,19 @@ export default { 80 ], "id": [ - 4999 + 4998 ], "map_name": [ 80 ], "match_id": [ - 4999 + 4998 ], "match_map_id": [ - 4999 + 4998 ], "metadata_parsed_at": [ - 4499 + 4498 ], "playback_file": [ 80 @@ -43944,49 +43936,49 @@ export default { }, "match_map_demos_min_order_by": { "created_at": [ - 2952 + 2951 ], "cs2_build": [ - 2952 + 2951 ], "duration_seconds": [ - 2952 + 2951 ], "file": [ - 2952 + 2951 ], "id": [ - 2952 + 2951 ], "map_name": [ - 2952 + 2951 ], "match_id": [ - 2952 + 2951 ], "match_map_id": [ - 2952 + 2951 ], "metadata_parsed_at": [ - 2952 + 2951 ], "playback_file": [ - 2952 + 2951 ], "playback_size": [ - 2952 + 2951 ], "size": [ - 2952 + 2951 ], "tick_rate": [ - 2952 + 2951 ], "total_ticks": [ - 2952 + 2951 ], "workshop_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -43997,7 +43989,7 @@ export default { 40 ], "returning": [ - 2489 + 2488 ], "__typename": [ 80 @@ -44005,10 +43997,10 @@ export default { }, "match_map_demos_obj_rel_insert_input": { "data": [ - 2507 + 2506 ], "on_conflict": [ - 2514 + 2513 ], "__typename": [ 80 @@ -44016,13 +44008,13 @@ export default { }, "match_map_demos_on_conflict": { "constraint": [ - 2502 + 2501 ], "update_columns": [ - 2532 + 2531 ], "where": [ - 2501 + 2500 ], "__typename": [ 80 @@ -44030,85 +44022,85 @@ export default { }, "match_map_demos_order_by": { "bombs": [ - 2952 + 2951 ], "clip_render_jobs_aggregate": [ - 270 + 269 ], "created_at": [ - 2952 + 2951 ], "cs2_build": [ - 2952 + 2951 ], "demo_sessions_aggregate": [ - 2361 + 2360 ], "download_url": [ - 2952 + 2951 ], "duration_seconds": [ - 2952 + 2951 ], "file": [ - 2952 + 2951 ], "geometry_validated": [ - 2952 + 2951 ], "id": [ - 2952 + 2951 ], "kills": [ - 2952 + 2951 ], "map_name": [ - 2952 + 2951 ], "match": [ - 2787 + 2786 ], "match_clips_aggregate": [ - 2319 + 2318 ], "match_id": [ - 2952 + 2951 ], "match_map": [ - 2625 + 2624 ], "match_map_id": [ - 2952 + 2951 ], "metadata_parsed_at": [ - 2952 + 2951 ], "playback_file": [ - 2952 + 2951 ], "playback_size": [ - 2952 + 2951 ], "playback_url": [ - 2952 + 2951 ], "players": [ - 2952 + 2951 ], "round_ticks": [ - 2952 + 2951 ], "size": [ - 2952 + 2951 ], "tick_rate": [ - 2952 + 2951 ], "total_ticks": [ - 2952 + 2951 ], "workshop_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -44116,7 +44108,7 @@ export default { }, "match_map_demos_pk_columns_input": { "id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -44124,16 +44116,16 @@ export default { }, "match_map_demos_prepend_input": { "bombs": [ - 1823 + 1822 ], "kills": [ - 1823 + 1822 ], "players": [ - 1823 + 1822 ], "round_ticks": [ - 1823 + 1822 ], "__typename": [ 80 @@ -44144,10 +44136,10 @@ export default { "match_map_demos_select_column_match_map_demos_aggregate_bool_exp_bool_or_arguments_columns": {}, "match_map_demos_set_input": { "bombs": [ - 1823 + 1822 ], "created_at": [ - 4499 + 4498 ], "cs2_build": [ 80 @@ -44159,22 +44151,22 @@ export default { 5 ], "id": [ - 4999 + 4998 ], "kills": [ - 1823 + 1822 ], "map_name": [ 80 ], "match_id": [ - 4999 + 4998 ], "match_map_id": [ - 4999 + 4998 ], "metadata_parsed_at": [ - 4499 + 4498 ], "playback_file": [ 80 @@ -44183,10 +44175,10 @@ export default { 40 ], "players": [ - 1823 + 1822 ], "round_ticks": [ - 1823 + 1822 ], "size": [ 40 @@ -44226,19 +44218,19 @@ export default { }, "match_map_demos_stddev_order_by": { "duration_seconds": [ - 2952 + 2951 ], "playback_size": [ - 2952 + 2951 ], "size": [ - 2952 + 2951 ], "tick_rate": [ - 2952 + 2951 ], "total_ticks": [ - 2952 + 2951 ], "__typename": [ 80 @@ -44266,19 +44258,19 @@ export default { }, "match_map_demos_stddev_pop_order_by": { "duration_seconds": [ - 2952 + 2951 ], "playback_size": [ - 2952 + 2951 ], "size": [ - 2952 + 2951 ], "tick_rate": [ - 2952 + 2951 ], "total_ticks": [ - 2952 + 2951 ], "__typename": [ 80 @@ -44306,19 +44298,19 @@ export default { }, "match_map_demos_stddev_samp_order_by": { "duration_seconds": [ - 2952 + 2951 ], "playback_size": [ - 2952 + 2951 ], "size": [ - 2952 + 2951 ], "tick_rate": [ - 2952 + 2951 ], "total_ticks": [ - 2952 + 2951 ], "__typename": [ 80 @@ -44326,10 +44318,10 @@ export default { }, "match_map_demos_stream_cursor_input": { "initial_value": [ - 2529 + 2528 ], "ordering": [ - 314 + 313 ], "__typename": [ 80 @@ -44337,10 +44329,10 @@ export default { }, "match_map_demos_stream_cursor_value_input": { "bombs": [ - 1823 + 1822 ], "created_at": [ - 4499 + 4498 ], "cs2_build": [ 80 @@ -44355,22 +44347,22 @@ export default { 5 ], "id": [ - 4999 + 4998 ], "kills": [ - 1823 + 1822 ], "map_name": [ 80 ], "match_id": [ - 4999 + 4998 ], "match_map_id": [ - 4999 + 4998 ], "metadata_parsed_at": [ - 4499 + 4498 ], "playback_file": [ 80 @@ -44379,10 +44371,10 @@ export default { 40 ], "players": [ - 1823 + 1822 ], "round_ticks": [ - 1823 + 1822 ], "size": [ 40 @@ -44422,19 +44414,19 @@ export default { }, "match_map_demos_sum_order_by": { "duration_seconds": [ - 2952 + 2951 ], "playback_size": [ - 2952 + 2951 ], "size": [ - 2952 + 2951 ], "tick_rate": [ - 2952 + 2951 ], "total_ticks": [ - 2952 + 2951 ], "__typename": [ 80 @@ -44443,28 +44435,28 @@ export default { "match_map_demos_update_column": {}, "match_map_demos_updates": { "_append": [ - 2497 + 2496 ], "_delete_at_path": [ - 2503 + 2502 ], "_delete_elem": [ - 2504 + 2503 ], "_delete_key": [ - 2505 + 2504 ], "_inc": [ - 2506 + 2505 ], "_prepend": [ - 2517 + 2516 ], "_set": [ - 2521 + 2520 ], "where": [ - 2501 + 2500 ], "__typename": [ 80 @@ -44492,19 +44484,19 @@ export default { }, "match_map_demos_var_pop_order_by": { "duration_seconds": [ - 2952 + 2951 ], "playback_size": [ - 2952 + 2951 ], "size": [ - 2952 + 2951 ], "tick_rate": [ - 2952 + 2951 ], "total_ticks": [ - 2952 + 2951 ], "__typename": [ 80 @@ -44532,19 +44524,19 @@ export default { }, "match_map_demos_var_samp_order_by": { "duration_seconds": [ - 2952 + 2951 ], "playback_size": [ - 2952 + 2951 ], "size": [ - 2952 + 2951 ], "tick_rate": [ - 2952 + 2951 ], "total_ticks": [ - 2952 + 2951 ], "__typename": [ 80 @@ -44572,19 +44564,19 @@ export default { }, "match_map_demos_variance_order_by": { "duration_seconds": [ - 2952 + 2951 ], "playback_size": [ - 2952 + 2951 ], "size": [ - 2952 + 2951 ], "tick_rate": [ - 2952 + 2951 ], "total_ticks": [ - 2952 + 2951 ], "__typename": [ 80 @@ -44592,10 +44584,10 @@ export default { }, "match_map_rounds": { "assists": [ - 3090, + 3089, { "distinct_on": [ - 3113, + 3112, "[player_assists_select_column!]" ], "limit": [ @@ -44605,19 +44597,19 @@ export default { 40 ], "order_by": [ - 3111, + 3110, "[player_assists_order_by!]" ], "where": [ - 3101 + 3100 ] } ], "assists_aggregate": [ - 3091, + 3090, { "distinct_on": [ - 3113, + 3112, "[player_assists_select_column!]" ], "limit": [ @@ -44627,11 +44619,11 @@ export default { 40 ], "order_by": [ - 3111, + 3110, "[player_assists_order_by!]" ], "where": [ - 3101 + 3100 ] } ], @@ -44639,22 +44631,22 @@ export default { 80 ], "created_at": [ - 4499 + 4498 ], "deleted_at": [ - 4499 + 4498 ], "has_backup_file": [ 5 ], "id": [ - 4999 + 4998 ], "kills": [ - 3307, + 3306, { "distinct_on": [ - 3371, + 3370, "[player_kills_select_column!]" ], "limit": [ @@ -44664,19 +44656,19 @@ export default { 40 ], "order_by": [ - 3369, + 3368, "[player_kills_order_by!]" ], "where": [ - 3318 + 3317 ] } ], "kills_aggregate": [ - 3308, + 3307, { "distinct_on": [ - 3371, + 3370, "[player_kills_select_column!]" ], "limit": [ @@ -44686,11 +44678,11 @@ export default { 40 ], "order_by": [ - 3369, + 3368, "[player_kills_order_by!]" ], "where": [ - 3318 + 3317 ] } ], @@ -44701,7 +44693,7 @@ export default { 40 ], "lineup_1_side": [ - 1192 + 1191 ], "lineup_1_timeouts_available": [ 40 @@ -44713,25 +44705,25 @@ export default { 40 ], "lineup_2_side": [ - 1192 + 1191 ], "lineup_2_timeouts_available": [ 40 ], "match_map": [ - 2605 + 2604 ], "match_map_id": [ - 4999 + 4998 ], "round": [ 40 ], "time": [ - 4499 + 4498 ], "winning_reason": [ - 1396 + 1395 ], "winning_side": [ 80 @@ -44742,10 +44734,10 @@ export default { }, "match_map_rounds_aggregate": { "aggregate": [ - 2544 + 2543 ], "nodes": [ - 2540 + 2539 ], "__typename": [ 80 @@ -44753,7 +44745,7 @@ export default { }, "match_map_rounds_aggregate_bool_exp": { "count": [ - 2543 + 2542 ], "__typename": [ 80 @@ -44761,13 +44753,13 @@ export default { }, "match_map_rounds_aggregate_bool_exp_count": { "arguments": [ - 2561 + 2560 ], "distinct": [ 5 ], "filter": [ - 2549 + 2548 ], "predicate": [ 41 @@ -44778,13 +44770,13 @@ export default { }, "match_map_rounds_aggregate_fields": { "avg": [ - 2547 + 2546 ], "count": [ 40, { "columns": [ - 2561, + 2560, "[match_map_rounds_select_column!]" ], "distinct": [ @@ -44793,31 +44785,31 @@ export default { } ], "max": [ - 2553 + 2552 ], "min": [ - 2555 + 2554 ], "stddev": [ - 2563 + 2562 ], "stddev_pop": [ - 2565 + 2564 ], "stddev_samp": [ - 2567 + 2566 ], "sum": [ - 2571 + 2570 ], "var_pop": [ - 2575 + 2574 ], "var_samp": [ - 2577 + 2576 ], "variance": [ - 2579 + 2578 ], "__typename": [ 80 @@ -44825,37 +44817,37 @@ export default { }, "match_map_rounds_aggregate_order_by": { "avg": [ - 2548 + 2547 ], "count": [ - 2952 + 2951 ], "max": [ - 2554 + 2553 ], "min": [ - 2556 + 2555 ], "stddev": [ - 2564 + 2563 ], "stddev_pop": [ - 2566 + 2565 ], "stddev_samp": [ - 2568 + 2567 ], "sum": [ - 2572 + 2571 ], "var_pop": [ - 2576 + 2575 ], "var_samp": [ - 2578 + 2577 ], "variance": [ - 2580 + 2579 ], "__typename": [ 80 @@ -44863,10 +44855,10 @@ export default { }, "match_map_rounds_arr_rel_insert_input": { "data": [ - 2552 + 2551 ], "on_conflict": [ - 2558 + 2557 ], "__typename": [ 80 @@ -44900,25 +44892,25 @@ export default { }, "match_map_rounds_avg_order_by": { "lineup_1_money": [ - 2952 + 2951 ], "lineup_1_score": [ - 2952 + 2951 ], "lineup_1_timeouts_available": [ - 2952 + 2951 ], "lineup_2_money": [ - 2952 + 2951 ], "lineup_2_score": [ - 2952 + 2951 ], "lineup_2_timeouts_available": [ - 2952 + 2951 ], "round": [ - 2952 + 2951 ], "__typename": [ 80 @@ -44926,40 +44918,40 @@ export default { }, "match_map_rounds_bool_exp": { "_and": [ - 2549 + 2548 ], "_not": [ - 2549 + 2548 ], "_or": [ - 2549 + 2548 ], "assists": [ - 3101 + 3100 ], "assists_aggregate": [ - 3092 + 3091 ], "backup_file": [ 82 ], "created_at": [ - 4500 + 4499 ], "deleted_at": [ - 4500 + 4499 ], "has_backup_file": [ 6 ], "id": [ - 5001 + 5000 ], "kills": [ - 3318 + 3317 ], "kills_aggregate": [ - 3309 + 3308 ], "lineup_1_money": [ 41 @@ -44968,7 +44960,7 @@ export default { 41 ], "lineup_1_side": [ - 1193 + 1192 ], "lineup_1_timeouts_available": [ 41 @@ -44980,25 +44972,25 @@ export default { 41 ], "lineup_2_side": [ - 1193 + 1192 ], "lineup_2_timeouts_available": [ 41 ], "match_map": [ - 2614 + 2613 ], "match_map_id": [ - 5001 + 5000 ], "round": [ 41 ], "time": [ - 4500 + 4499 ], "winning_reason": [ - 1397 + 1396 ], "winning_side": [ 82 @@ -45036,22 +45028,22 @@ export default { }, "match_map_rounds_insert_input": { "assists": [ - 3098 + 3097 ], "backup_file": [ 80 ], "created_at": [ - 4499 + 4498 ], "deleted_at": [ - 4499 + 4498 ], "id": [ - 4999 + 4998 ], "kills": [ - 3315 + 3314 ], "lineup_1_money": [ 40 @@ -45060,7 +45052,7 @@ export default { 40 ], "lineup_1_side": [ - 1192 + 1191 ], "lineup_1_timeouts_available": [ 40 @@ -45072,25 +45064,25 @@ export default { 40 ], "lineup_2_side": [ - 1192 + 1191 ], "lineup_2_timeouts_available": [ 40 ], "match_map": [ - 2623 + 2622 ], "match_map_id": [ - 4999 + 4998 ], "round": [ 40 ], "time": [ - 4499 + 4498 ], "winning_reason": [ - 1396 + 1395 ], "winning_side": [ 80 @@ -45104,13 +45096,13 @@ export default { 80 ], "created_at": [ - 4499 + 4498 ], "deleted_at": [ - 4499 + 4498 ], "id": [ - 4999 + 4998 ], "lineup_1_money": [ 40 @@ -45131,13 +45123,13 @@ export default { 40 ], "match_map_id": [ - 4999 + 4998 ], "round": [ 40 ], "time": [ - 4499 + 4498 ], "winning_side": [ 80 @@ -45148,46 +45140,46 @@ export default { }, "match_map_rounds_max_order_by": { "backup_file": [ - 2952 + 2951 ], "created_at": [ - 2952 + 2951 ], "deleted_at": [ - 2952 + 2951 ], "id": [ - 2952 + 2951 ], "lineup_1_money": [ - 2952 + 2951 ], "lineup_1_score": [ - 2952 + 2951 ], "lineup_1_timeouts_available": [ - 2952 + 2951 ], "lineup_2_money": [ - 2952 + 2951 ], "lineup_2_score": [ - 2952 + 2951 ], "lineup_2_timeouts_available": [ - 2952 + 2951 ], "match_map_id": [ - 2952 + 2951 ], "round": [ - 2952 + 2951 ], "time": [ - 2952 + 2951 ], "winning_side": [ - 2952 + 2951 ], "__typename": [ 80 @@ -45198,13 +45190,13 @@ export default { 80 ], "created_at": [ - 4499 + 4498 ], "deleted_at": [ - 4499 + 4498 ], "id": [ - 4999 + 4998 ], "lineup_1_money": [ 40 @@ -45225,13 +45217,13 @@ export default { 40 ], "match_map_id": [ - 4999 + 4998 ], "round": [ 40 ], "time": [ - 4499 + 4498 ], "winning_side": [ 80 @@ -45242,46 +45234,46 @@ export default { }, "match_map_rounds_min_order_by": { "backup_file": [ - 2952 + 2951 ], "created_at": [ - 2952 + 2951 ], "deleted_at": [ - 2952 + 2951 ], "id": [ - 2952 + 2951 ], "lineup_1_money": [ - 2952 + 2951 ], "lineup_1_score": [ - 2952 + 2951 ], "lineup_1_timeouts_available": [ - 2952 + 2951 ], "lineup_2_money": [ - 2952 + 2951 ], "lineup_2_score": [ - 2952 + 2951 ], "lineup_2_timeouts_available": [ - 2952 + 2951 ], "match_map_id": [ - 2952 + 2951 ], "round": [ - 2952 + 2951 ], "time": [ - 2952 + 2951 ], "winning_side": [ - 2952 + 2951 ], "__typename": [ 80 @@ -45292,7 +45284,7 @@ export default { 40 ], "returning": [ - 2540 + 2539 ], "__typename": [ 80 @@ -45300,13 +45292,13 @@ export default { }, "match_map_rounds_on_conflict": { "constraint": [ - 2550 + 2549 ], "update_columns": [ - 2573 + 2572 ], "where": [ - 2549 + 2548 ], "__typename": [ 80 @@ -45314,67 +45306,67 @@ export default { }, "match_map_rounds_order_by": { "assists_aggregate": [ - 3097 + 3096 ], "backup_file": [ - 2952 + 2951 ], "created_at": [ - 2952 + 2951 ], "deleted_at": [ - 2952 + 2951 ], "has_backup_file": [ - 2952 + 2951 ], "id": [ - 2952 + 2951 ], "kills_aggregate": [ - 3314 + 3313 ], "lineup_1_money": [ - 2952 + 2951 ], "lineup_1_score": [ - 2952 + 2951 ], "lineup_1_side": [ - 2952 + 2951 ], "lineup_1_timeouts_available": [ - 2952 + 2951 ], "lineup_2_money": [ - 2952 + 2951 ], "lineup_2_score": [ - 2952 + 2951 ], "lineup_2_side": [ - 2952 + 2951 ], "lineup_2_timeouts_available": [ - 2952 + 2951 ], "match_map": [ - 2625 + 2624 ], "match_map_id": [ - 2952 + 2951 ], "round": [ - 2952 + 2951 ], "time": [ - 2952 + 2951 ], "winning_reason": [ - 2952 + 2951 ], "winning_side": [ - 2952 + 2951 ], "__typename": [ 80 @@ -45382,7 +45374,7 @@ export default { }, "match_map_rounds_pk_columns_input": { "id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -45394,13 +45386,13 @@ export default { 80 ], "created_at": [ - 4499 + 4498 ], "deleted_at": [ - 4499 + 4498 ], "id": [ - 4999 + 4998 ], "lineup_1_money": [ 40 @@ -45409,7 +45401,7 @@ export default { 40 ], "lineup_1_side": [ - 1192 + 1191 ], "lineup_1_timeouts_available": [ 40 @@ -45421,22 +45413,22 @@ export default { 40 ], "lineup_2_side": [ - 1192 + 1191 ], "lineup_2_timeouts_available": [ 40 ], "match_map_id": [ - 4999 + 4998 ], "round": [ 40 ], "time": [ - 4499 + 4498 ], "winning_reason": [ - 1396 + 1395 ], "winning_side": [ 80 @@ -45473,25 +45465,25 @@ export default { }, "match_map_rounds_stddev_order_by": { "lineup_1_money": [ - 2952 + 2951 ], "lineup_1_score": [ - 2952 + 2951 ], "lineup_1_timeouts_available": [ - 2952 + 2951 ], "lineup_2_money": [ - 2952 + 2951 ], "lineup_2_score": [ - 2952 + 2951 ], "lineup_2_timeouts_available": [ - 2952 + 2951 ], "round": [ - 2952 + 2951 ], "__typename": [ 80 @@ -45525,25 +45517,25 @@ export default { }, "match_map_rounds_stddev_pop_order_by": { "lineup_1_money": [ - 2952 + 2951 ], "lineup_1_score": [ - 2952 + 2951 ], "lineup_1_timeouts_available": [ - 2952 + 2951 ], "lineup_2_money": [ - 2952 + 2951 ], "lineup_2_score": [ - 2952 + 2951 ], "lineup_2_timeouts_available": [ - 2952 + 2951 ], "round": [ - 2952 + 2951 ], "__typename": [ 80 @@ -45577,25 +45569,25 @@ export default { }, "match_map_rounds_stddev_samp_order_by": { "lineup_1_money": [ - 2952 + 2951 ], "lineup_1_score": [ - 2952 + 2951 ], "lineup_1_timeouts_available": [ - 2952 + 2951 ], "lineup_2_money": [ - 2952 + 2951 ], "lineup_2_score": [ - 2952 + 2951 ], "lineup_2_timeouts_available": [ - 2952 + 2951 ], "round": [ - 2952 + 2951 ], "__typename": [ 80 @@ -45603,10 +45595,10 @@ export default { }, "match_map_rounds_stream_cursor_input": { "initial_value": [ - 2570 + 2569 ], "ordering": [ - 314 + 313 ], "__typename": [ 80 @@ -45617,13 +45609,13 @@ export default { 80 ], "created_at": [ - 4499 + 4498 ], "deleted_at": [ - 4499 + 4498 ], "id": [ - 4999 + 4998 ], "lineup_1_money": [ 40 @@ -45632,7 +45624,7 @@ export default { 40 ], "lineup_1_side": [ - 1192 + 1191 ], "lineup_1_timeouts_available": [ 40 @@ -45644,22 +45636,22 @@ export default { 40 ], "lineup_2_side": [ - 1192 + 1191 ], "lineup_2_timeouts_available": [ 40 ], "match_map_id": [ - 4999 + 4998 ], "round": [ 40 ], "time": [ - 4499 + 4498 ], "winning_reason": [ - 1396 + 1395 ], "winning_side": [ 80 @@ -45696,25 +45688,25 @@ export default { }, "match_map_rounds_sum_order_by": { "lineup_1_money": [ - 2952 + 2951 ], "lineup_1_score": [ - 2952 + 2951 ], "lineup_1_timeouts_available": [ - 2952 + 2951 ], "lineup_2_money": [ - 2952 + 2951 ], "lineup_2_score": [ - 2952 + 2951 ], "lineup_2_timeouts_available": [ - 2952 + 2951 ], "round": [ - 2952 + 2951 ], "__typename": [ 80 @@ -45723,13 +45715,13 @@ export default { "match_map_rounds_update_column": {}, "match_map_rounds_updates": { "_inc": [ - 2551 + 2550 ], "_set": [ - 2562 + 2561 ], "where": [ - 2549 + 2548 ], "__typename": [ 80 @@ -45763,25 +45755,25 @@ export default { }, "match_map_rounds_var_pop_order_by": { "lineup_1_money": [ - 2952 + 2951 ], "lineup_1_score": [ - 2952 + 2951 ], "lineup_1_timeouts_available": [ - 2952 + 2951 ], "lineup_2_money": [ - 2952 + 2951 ], "lineup_2_score": [ - 2952 + 2951 ], "lineup_2_timeouts_available": [ - 2952 + 2951 ], "round": [ - 2952 + 2951 ], "__typename": [ 80 @@ -45815,25 +45807,25 @@ export default { }, "match_map_rounds_var_samp_order_by": { "lineup_1_money": [ - 2952 + 2951 ], "lineup_1_score": [ - 2952 + 2951 ], "lineup_1_timeouts_available": [ - 2952 + 2951 ], "lineup_2_money": [ - 2952 + 2951 ], "lineup_2_score": [ - 2952 + 2951 ], "lineup_2_timeouts_available": [ - 2952 + 2951 ], "round": [ - 2952 + 2951 ], "__typename": [ 80 @@ -45867,25 +45859,25 @@ export default { }, "match_map_rounds_variance_order_by": { "lineup_1_money": [ - 2952 + 2951 ], "lineup_1_score": [ - 2952 + 2951 ], "lineup_1_timeouts_available": [ - 2952 + 2951 ], "lineup_2_money": [ - 2952 + 2951 ], "lineup_2_score": [ - 2952 + 2951 ], "lineup_2_timeouts_available": [ - 2952 + 2951 ], "round": [ - 2952 + 2951 ], "__typename": [ 80 @@ -45893,34 +45885,34 @@ export default { }, "match_map_veto_picks": { "created_at": [ - 4499 + 4498 ], "id": [ - 4999 + 4998 ], "map": [ - 2285 + 2284 ], "map_id": [ - 4999 + 4998 ], "match": [ - 2767 + 2766 ], "match_id": [ - 4999 + 4998 ], "match_lineup": [ - 2447 + 2446 ], "match_lineup_id": [ - 4999 + 4998 ], "side": [ 80 ], "type": [ - 1376 + 1375 ], "__typename": [ 80 @@ -45928,10 +45920,10 @@ export default { }, "match_map_veto_picks_aggregate": { "aggregate": [ - 2585 + 2584 ], "nodes": [ - 2581 + 2580 ], "__typename": [ 80 @@ -45939,7 +45931,7 @@ export default { }, "match_map_veto_picks_aggregate_bool_exp": { "count": [ - 2584 + 2583 ], "__typename": [ 80 @@ -45947,13 +45939,13 @@ export default { }, "match_map_veto_picks_aggregate_bool_exp_count": { "arguments": [ - 2599 + 2598 ], "distinct": [ 5 ], "filter": [ - 2588 + 2587 ], "predicate": [ 41 @@ -45967,7 +45959,7 @@ export default { 40, { "columns": [ - 2599, + 2598, "[match_map_veto_picks_select_column!]" ], "distinct": [ @@ -45976,10 +45968,10 @@ export default { } ], "max": [ - 2591 + 2590 ], "min": [ - 2593 + 2592 ], "__typename": [ 80 @@ -45987,13 +45979,13 @@ export default { }, "match_map_veto_picks_aggregate_order_by": { "count": [ - 2952 + 2951 ], "max": [ - 2592 + 2591 ], "min": [ - 2594 + 2593 ], "__typename": [ 80 @@ -46001,10 +45993,10 @@ export default { }, "match_map_veto_picks_arr_rel_insert_input": { "data": [ - 2590 + 2589 ], "on_conflict": [ - 2596 + 2595 ], "__typename": [ 80 @@ -46012,43 +46004,43 @@ export default { }, "match_map_veto_picks_bool_exp": { "_and": [ - 2588 + 2587 ], "_not": [ - 2588 + 2587 ], "_or": [ - 2588 + 2587 ], "created_at": [ - 4500 + 4499 ], "id": [ - 5001 + 5000 ], "map": [ - 2294 + 2293 ], "map_id": [ - 5001 + 5000 ], "match": [ - 2776 + 2775 ], "match_id": [ - 5001 + 5000 ], "match_lineup": [ - 2456 + 2455 ], "match_lineup_id": [ - 5001 + 5000 ], "side": [ 82 ], "type": [ - 1377 + 1376 ], "__typename": [ 80 @@ -46057,34 +46049,34 @@ export default { "match_map_veto_picks_constraint": {}, "match_map_veto_picks_insert_input": { "created_at": [ - 4499 + 4498 ], "id": [ - 4999 + 4998 ], "map": [ - 2302 + 2301 ], "map_id": [ - 4999 + 4998 ], "match": [ - 2785 + 2784 ], "match_id": [ - 4999 + 4998 ], "match_lineup": [ - 2465 + 2464 ], "match_lineup_id": [ - 4999 + 4998 ], "side": [ 80 ], "type": [ - 1376 + 1375 ], "__typename": [ 80 @@ -46092,19 +46084,19 @@ export default { }, "match_map_veto_picks_max_fields": { "created_at": [ - 4499 + 4498 ], "id": [ - 4999 + 4998 ], "map_id": [ - 4999 + 4998 ], "match_id": [ - 4999 + 4998 ], "match_lineup_id": [ - 4999 + 4998 ], "side": [ 80 @@ -46115,22 +46107,22 @@ export default { }, "match_map_veto_picks_max_order_by": { "created_at": [ - 2952 + 2951 ], "id": [ - 2952 + 2951 ], "map_id": [ - 2952 + 2951 ], "match_id": [ - 2952 + 2951 ], "match_lineup_id": [ - 2952 + 2951 ], "side": [ - 2952 + 2951 ], "__typename": [ 80 @@ -46138,19 +46130,19 @@ export default { }, "match_map_veto_picks_min_fields": { "created_at": [ - 4499 + 4498 ], "id": [ - 4999 + 4998 ], "map_id": [ - 4999 + 4998 ], "match_id": [ - 4999 + 4998 ], "match_lineup_id": [ - 4999 + 4998 ], "side": [ 80 @@ -46161,22 +46153,22 @@ export default { }, "match_map_veto_picks_min_order_by": { "created_at": [ - 2952 + 2951 ], "id": [ - 2952 + 2951 ], "map_id": [ - 2952 + 2951 ], "match_id": [ - 2952 + 2951 ], "match_lineup_id": [ - 2952 + 2951 ], "side": [ - 2952 + 2951 ], "__typename": [ 80 @@ -46187,7 +46179,7 @@ export default { 40 ], "returning": [ - 2581 + 2580 ], "__typename": [ 80 @@ -46195,13 +46187,13 @@ export default { }, "match_map_veto_picks_on_conflict": { "constraint": [ - 2589 + 2588 ], "update_columns": [ - 2603 + 2602 ], "where": [ - 2588 + 2587 ], "__typename": [ 80 @@ -46209,34 +46201,34 @@ export default { }, "match_map_veto_picks_order_by": { "created_at": [ - 2952 + 2951 ], "id": [ - 2952 + 2951 ], "map": [ - 2304 + 2303 ], "map_id": [ - 2952 + 2951 ], "match": [ - 2787 + 2786 ], "match_id": [ - 2952 + 2951 ], "match_lineup": [ - 2467 + 2466 ], "match_lineup_id": [ - 2952 + 2951 ], "side": [ - 2952 + 2951 ], "type": [ - 2952 + 2951 ], "__typename": [ 80 @@ -46244,7 +46236,7 @@ export default { }, "match_map_veto_picks_pk_columns_input": { "id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -46253,25 +46245,25 @@ export default { "match_map_veto_picks_select_column": {}, "match_map_veto_picks_set_input": { "created_at": [ - 4499 + 4498 ], "id": [ - 4999 + 4998 ], "map_id": [ - 4999 + 4998 ], "match_id": [ - 4999 + 4998 ], "match_lineup_id": [ - 4999 + 4998 ], "side": [ 80 ], "type": [ - 1376 + 1375 ], "__typename": [ 80 @@ -46279,10 +46271,10 @@ export default { }, "match_map_veto_picks_stream_cursor_input": { "initial_value": [ - 2602 + 2601 ], "ordering": [ - 314 + 313 ], "__typename": [ 80 @@ -46290,25 +46282,25 @@ export default { }, "match_map_veto_picks_stream_cursor_value_input": { "created_at": [ - 4499 + 4498 ], "id": [ - 4999 + 4998 ], "map_id": [ - 4999 + 4998 ], "match_id": [ - 4999 + 4998 ], "match_lineup_id": [ - 4999 + 4998 ], "side": [ 80 ], "type": [ - 1376 + 1375 ], "__typename": [ 80 @@ -46317,10 +46309,10 @@ export default { "match_map_veto_picks_update_column": {}, "match_map_veto_picks_updates": { "_set": [ - 2600 + 2599 ], "where": [ - 2588 + 2587 ], "__typename": [ 80 @@ -46331,13 +46323,13 @@ export default { 40 ], "created_at": [ - 4499 + 4498 ], "demos": [ - 2489, + 2488, { "distinct_on": [ - 2518, + 2517, "[match_map_demos_select_column!]" ], "limit": [ @@ -46347,19 +46339,19 @@ export default { 40 ], "order_by": [ - 2515, + 2514, "[match_map_demos_order_by!]" ], "where": [ - 2501 + 2500 ] } ], "demos_aggregate": [ - 2490, + 2489, { "distinct_on": [ - 2518, + 2517, "[match_map_demos_select_column!]" ], "limit": [ @@ -46369,11 +46361,11 @@ export default { 40 ], "order_by": [ - 2515, + 2514, "[match_map_demos_order_by!]" ], "where": [ - 2501 + 2500 ] } ], @@ -46384,16 +46376,16 @@ export default { 40 ], "e_match_map_status": [ - 943 + 942 ], "ended_at": [ - 4499 + 4498 ], "flashes": [ - 3262, + 3261, { "distinct_on": [ - 3285, + 3284, "[player_flashes_select_column!]" ], "limit": [ @@ -46403,19 +46395,19 @@ export default { 40 ], "order_by": [ - 3283, + 3282, "[player_flashes_order_by!]" ], "where": [ - 3273 + 3272 ] } ], "flashes_aggregate": [ - 3263, + 3262, { "distinct_on": [ - 3285, + 3284, "[player_flashes_select_column!]" ], "limit": [ @@ -46425,28 +46417,28 @@ export default { 40 ], "order_by": [ - 3283, + 3282, "[player_flashes_order_by!]" ], "where": [ - 3273 + 3272 ] } ], "id": [ - 4999 + 4998 ], "is_current_map": [ 5 ], "latest_clip_at": [ - 4499 + 4498 ], "lineup_1_score": [ 40 ], "lineup_1_side": [ - 1192 + 1191 ], "lineup_1_timeouts_available": [ 40 @@ -46455,25 +46447,25 @@ export default { 40 ], "lineup_2_side": [ - 1192 + 1191 ], "lineup_2_timeouts_available": [ 40 ], "map": [ - 2285 + 2284 ], "map_id": [ - 4999 + 4998 ], "match": [ - 2767 + 2766 ], "match_clips": [ - 2314, + 2313, { "distinct_on": [ - 2336, + 2335, "[match_clips_select_column!]" ], "limit": [ @@ -46483,19 +46475,19 @@ export default { 40 ], "order_by": [ - 2334, + 2333, "[match_clips_order_by!]" ], "where": [ - 2323 + 2322 ] } ], "match_clips_aggregate": [ - 2315, + 2314, { "distinct_on": [ - 2336, + 2335, "[match_clips_select_column!]" ], "limit": [ @@ -46505,22 +46497,22 @@ export default { 40 ], "order_by": [ - 2334, + 2333, "[match_clips_order_by!]" ], "where": [ - 2323 + 2322 ] } ], "match_id": [ - 4999 + 4998 ], "objectives": [ - 3508, + 3507, { "distinct_on": [ - 3529, + 3528, "[player_objectives_select_column!]" ], "limit": [ @@ -46530,19 +46522,19 @@ export default { 40 ], "order_by": [ - 3527, + 3526, "[player_objectives_order_by!]" ], "where": [ - 3517 + 3516 ] } ], "objectives_aggregate": [ - 3509, + 3508, { "distinct_on": [ - 3529, + 3528, "[player_objectives_select_column!]" ], "limit": [ @@ -46552,11 +46544,11 @@ export default { 40 ], "order_by": [ - 3527, + 3526, "[player_objectives_order_by!]" ], "where": [ - 3517 + 3516 ] } ], @@ -46564,10 +46556,10 @@ export default { 40 ], "player_assists": [ - 3090, + 3089, { "distinct_on": [ - 3113, + 3112, "[player_assists_select_column!]" ], "limit": [ @@ -46577,19 +46569,19 @@ export default { 40 ], "order_by": [ - 3111, + 3110, "[player_assists_order_by!]" ], "where": [ - 3101 + 3100 ] } ], "player_assists_aggregate": [ - 3091, + 3090, { "distinct_on": [ - 3113, + 3112, "[player_assists_select_column!]" ], "limit": [ @@ -46599,19 +46591,19 @@ export default { 40 ], "order_by": [ - 3111, + 3110, "[player_assists_order_by!]" ], "where": [ - 3101 + 3100 ] } ], "player_damages": [ - 3153, + 3152, { "distinct_on": [ - 3174, + 3173, "[player_damages_select_column!]" ], "limit": [ @@ -46621,19 +46613,19 @@ export default { 40 ], "order_by": [ - 3172, + 3171, "[player_damages_order_by!]" ], "where": [ - 3162 + 3161 ] } ], "player_damages_aggregate": [ - 3154, + 3153, { "distinct_on": [ - 3174, + 3173, "[player_damages_select_column!]" ], "limit": [ @@ -46643,19 +46635,19 @@ export default { 40 ], "order_by": [ - 3172, + 3171, "[player_damages_order_by!]" ], "where": [ - 3162 + 3161 ] } ], "player_kills": [ - 3307, + 3306, { "distinct_on": [ - 3371, + 3370, "[player_kills_select_column!]" ], "limit": [ @@ -46665,19 +46657,19 @@ export default { 40 ], "order_by": [ - 3369, + 3368, "[player_kills_order_by!]" ], "where": [ - 3318 + 3317 ] } ], "player_kills_aggregate": [ - 3308, + 3307, { "distinct_on": [ - 3371, + 3370, "[player_kills_select_column!]" ], "limit": [ @@ -46687,19 +46679,19 @@ export default { 40 ], "order_by": [ - 3369, + 3368, "[player_kills_order_by!]" ], "where": [ - 3318 + 3317 ] } ], "player_unused_utilities": [ - 3795, + 3794, { "distinct_on": [ - 3816, + 3815, "[player_unused_utility_select_column!]" ], "limit": [ @@ -46709,19 +46701,19 @@ export default { 40 ], "order_by": [ - 3814, + 3813, "[player_unused_utility_order_by!]" ], "where": [ - 3804 + 3803 ] } ], "player_unused_utilities_aggregate": [ - 3796, + 3795, { "distinct_on": [ - 3816, + 3815, "[player_unused_utility_select_column!]" ], "limit": [ @@ -46731,11 +46723,11 @@ export default { 40 ], "order_by": [ - 3814, + 3813, "[player_unused_utility_order_by!]" ], "where": [ - 3804 + 3803 ] } ], @@ -46743,13 +46735,13 @@ export default { 40 ], "public_latest_clip_at": [ - 4499 + 4498 ], "rounds": [ - 2540, + 2539, { "distinct_on": [ - 2561, + 2560, "[match_map_rounds_select_column!]" ], "limit": [ @@ -46759,19 +46751,19 @@ export default { 40 ], "order_by": [ - 2559, + 2558, "[match_map_rounds_order_by!]" ], "where": [ - 2549 + 2548 ] } ], "rounds_aggregate": [ - 2541, + 2540, { "distinct_on": [ - 2561, + 2560, "[match_map_rounds_select_column!]" ], "limit": [ @@ -46781,25 +46773,25 @@ export default { 40 ], "order_by": [ - 2559, + 2558, "[match_map_rounds_order_by!]" ], "where": [ - 2549 + 2548 ] } ], "started_at": [ - 4499 + 4498 ], "status": [ - 948 + 947 ], "utility": [ - 3836, + 3835, { "distinct_on": [ - 3857, + 3856, "[player_utility_select_column!]" ], "limit": [ @@ -46809,19 +46801,19 @@ export default { 40 ], "order_by": [ - 3855, + 3854, "[player_utility_order_by!]" ], "where": [ - 3845 + 3844 ] } ], "utility_aggregate": [ - 3837, + 3836, { "distinct_on": [ - 3857, + 3856, "[player_utility_select_column!]" ], "limit": [ @@ -46831,19 +46823,19 @@ export default { 40 ], "order_by": [ - 3855, + 3854, "[player_utility_order_by!]" ], "where": [ - 3845 + 3844 ] } ], "vetos": [ - 2581, + 2580, { "distinct_on": [ - 2599, + 2598, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -46853,19 +46845,19 @@ export default { 40 ], "order_by": [ - 2597, + 2596, "[match_map_veto_picks_order_by!]" ], "where": [ - 2588 + 2587 ] } ], "vetos_aggregate": [ - 2582, + 2581, { "distinct_on": [ - 2599, + 2598, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -46875,16 +46867,16 @@ export default { 40 ], "order_by": [ - 2597, + 2596, "[match_map_veto_picks_order_by!]" ], "where": [ - 2588 + 2587 ] } ], "winning_lineup_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -46892,10 +46884,10 @@ export default { }, "match_maps_aggregate": { "aggregate": [ - 2609 + 2608 ], "nodes": [ - 2605 + 2604 ], "__typename": [ 80 @@ -46903,7 +46895,7 @@ export default { }, "match_maps_aggregate_bool_exp": { "count": [ - 2608 + 2607 ], "__typename": [ 80 @@ -46911,13 +46903,13 @@ export default { }, "match_maps_aggregate_bool_exp_count": { "arguments": [ - 2627 + 2626 ], "distinct": [ 5 ], "filter": [ - 2614 + 2613 ], "predicate": [ 41 @@ -46928,13 +46920,13 @@ export default { }, "match_maps_aggregate_fields": { "avg": [ - 2612 + 2611 ], "count": [ 40, { "columns": [ - 2627, + 2626, "[match_maps_select_column!]" ], "distinct": [ @@ -46942,6 +46934,44 @@ export default { ] } ], + "max": [ + 2617 + ], + "min": [ + 2619 + ], + "stddev": [ + 2628 + ], + "stddev_pop": [ + 2630 + ], + "stddev_samp": [ + 2632 + ], + "sum": [ + 2636 + ], + "var_pop": [ + 2640 + ], + "var_samp": [ + 2642 + ], + "variance": [ + 2644 + ], + "__typename": [ + 80 + ] + }, + "match_maps_aggregate_order_by": { + "avg": [ + 2612 + ], + "count": [ + 2951 + ], "max": [ 2618 ], @@ -46973,50 +47003,12 @@ export default { 80 ] }, - "match_maps_aggregate_order_by": { - "avg": [ - 2613 - ], - "count": [ - 2952 - ], - "max": [ - 2619 - ], - "min": [ - 2621 - ], - "stddev": [ - 2630 - ], - "stddev_pop": [ - 2632 - ], - "stddev_samp": [ - 2634 - ], - "sum": [ - 2638 - ], - "var_pop": [ - 2642 - ], - "var_samp": [ - 2644 - ], - "variance": [ - 2646 - ], - "__typename": [ - 80 - ] - }, "match_maps_arr_rel_insert_input": { "data": [ - 2617 + 2616 ], "on_conflict": [ - 2624 + 2623 ], "__typename": [ 80 @@ -47053,19 +47045,19 @@ export default { }, "match_maps_avg_order_by": { "clips_count": [ - 2952 + 2951 ], "lineup_1_timeouts_available": [ - 2952 + 2951 ], "lineup_2_timeouts_available": [ - 2952 + 2951 ], "order": [ - 2952 + 2951 ], "public_clips_count": [ - 2952 + 2951 ], "__typename": [ 80 @@ -47073,25 +47065,25 @@ export default { }, "match_maps_bool_exp": { "_and": [ - 2614 + 2613 ], "_not": [ - 2614 + 2613 ], "_or": [ - 2614 + 2613 ], "clips_count": [ 41 ], "created_at": [ - 4500 + 4499 ], "demos": [ - 2501 + 2500 ], "demos_aggregate": [ - 2491 + 2490 ], "demos_download_url": [ 82 @@ -47100,31 +47092,31 @@ export default { 41 ], "e_match_map_status": [ - 946 + 945 ], "ended_at": [ - 4500 + 4499 ], "flashes": [ - 3273 + 3272 ], "flashes_aggregate": [ - 3264 + 3263 ], "id": [ - 5001 + 5000 ], "is_current_map": [ 6 ], "latest_clip_at": [ - 4500 + 4499 ], "lineup_1_score": [ 41 ], "lineup_1_side": [ - 1193 + 1192 ], "lineup_1_timeouts_available": [ 41 @@ -47133,94 +47125,94 @@ export default { 41 ], "lineup_2_side": [ - 1193 + 1192 ], "lineup_2_timeouts_available": [ 41 ], "map": [ - 2294 + 2293 ], "map_id": [ - 5001 + 5000 ], "match": [ - 2776 + 2775 ], "match_clips": [ - 2323 + 2322 ], "match_clips_aggregate": [ - 2316 + 2315 ], "match_id": [ - 5001 + 5000 ], "objectives": [ - 3517 + 3516 ], "objectives_aggregate": [ - 3510 + 3509 ], "order": [ 41 ], "player_assists": [ - 3101 + 3100 ], "player_assists_aggregate": [ - 3092 + 3091 ], "player_damages": [ - 3162 + 3161 ], "player_damages_aggregate": [ - 3155 + 3154 ], "player_kills": [ - 3318 + 3317 ], "player_kills_aggregate": [ - 3309 + 3308 ], "player_unused_utilities": [ - 3804 + 3803 ], "player_unused_utilities_aggregate": [ - 3797 + 3796 ], "public_clips_count": [ 41 ], "public_latest_clip_at": [ - 4500 + 4499 ], "rounds": [ - 2549 + 2548 ], "rounds_aggregate": [ - 2542 + 2541 ], "started_at": [ - 4500 + 4499 ], "status": [ - 949 + 948 ], "utility": [ - 3845 + 3844 ], "utility_aggregate": [ - 3838 + 3837 ], "vetos": [ - 2588 + 2587 ], "vetos_aggregate": [ - 2583 + 2582 ], "winning_lineup_id": [ - 5001 + 5000 ], "__typename": [ 80 @@ -47252,94 +47244,94 @@ export default { 40 ], "created_at": [ - 4499 + 4498 ], "demos": [ - 2498 + 2497 ], "e_match_map_status": [ - 954 + 953 ], "ended_at": [ - 4499 + 4498 ], "flashes": [ - 3270 + 3269 ], "id": [ - 4999 + 4998 ], "latest_clip_at": [ - 4499 + 4498 ], "lineup_1_side": [ - 1192 + 1191 ], "lineup_1_timeouts_available": [ 40 ], "lineup_2_side": [ - 1192 + 1191 ], "lineup_2_timeouts_available": [ 40 ], "map": [ - 2302 + 2301 ], "map_id": [ - 4999 + 4998 ], "match": [ - 2785 + 2784 ], "match_clips": [ - 2320 + 2319 ], "match_id": [ - 4999 + 4998 ], "objectives": [ - 3514 + 3513 ], "order": [ 40 ], "player_assists": [ - 3098 + 3097 ], "player_damages": [ - 3159 + 3158 ], "player_kills": [ - 3315 + 3314 ], "player_unused_utilities": [ - 3801 + 3800 ], "public_clips_count": [ 40 ], "public_latest_clip_at": [ - 4499 + 4498 ], "rounds": [ - 2546 + 2545 ], "started_at": [ - 4499 + 4498 ], "status": [ - 948 + 947 ], "utility": [ - 3842 + 3841 ], "vetos": [ - 2587 + 2586 ], "winning_lineup_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -47350,7 +47342,7 @@ export default { 40 ], "created_at": [ - 4499 + 4498 ], "demos_download_url": [ 80 @@ -47359,13 +47351,13 @@ export default { 40 ], "ended_at": [ - 4499 + 4498 ], "id": [ - 4999 + 4998 ], "latest_clip_at": [ - 4499 + 4498 ], "lineup_1_score": [ 40 @@ -47380,10 +47372,10 @@ export default { 40 ], "map_id": [ - 4999 + 4998 ], "match_id": [ - 4999 + 4998 ], "order": [ 40 @@ -47392,13 +47384,13 @@ export default { 40 ], "public_latest_clip_at": [ - 4499 + 4498 ], "started_at": [ - 4499 + 4498 ], "winning_lineup_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -47406,46 +47398,46 @@ export default { }, "match_maps_max_order_by": { "clips_count": [ - 2952 + 2951 ], "created_at": [ - 2952 + 2951 ], "ended_at": [ - 2952 + 2951 ], "id": [ - 2952 + 2951 ], "latest_clip_at": [ - 2952 + 2951 ], "lineup_1_timeouts_available": [ - 2952 + 2951 ], "lineup_2_timeouts_available": [ - 2952 + 2951 ], "map_id": [ - 2952 + 2951 ], "match_id": [ - 2952 + 2951 ], "order": [ - 2952 + 2951 ], "public_clips_count": [ - 2952 + 2951 ], "public_latest_clip_at": [ - 2952 + 2951 ], "started_at": [ - 2952 + 2951 ], "winning_lineup_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -47456,7 +47448,7 @@ export default { 40 ], "created_at": [ - 4499 + 4498 ], "demos_download_url": [ 80 @@ -47465,13 +47457,13 @@ export default { 40 ], "ended_at": [ - 4499 + 4498 ], "id": [ - 4999 + 4998 ], "latest_clip_at": [ - 4499 + 4498 ], "lineup_1_score": [ 40 @@ -47486,10 +47478,10 @@ export default { 40 ], "map_id": [ - 4999 + 4998 ], "match_id": [ - 4999 + 4998 ], "order": [ 40 @@ -47498,13 +47490,13 @@ export default { 40 ], "public_latest_clip_at": [ - 4499 + 4498 ], "started_at": [ - 4499 + 4498 ], "winning_lineup_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -47512,46 +47504,46 @@ export default { }, "match_maps_min_order_by": { "clips_count": [ - 2952 + 2951 ], "created_at": [ - 2952 + 2951 ], "ended_at": [ - 2952 + 2951 ], "id": [ - 2952 + 2951 ], "latest_clip_at": [ - 2952 + 2951 ], "lineup_1_timeouts_available": [ - 2952 + 2951 ], "lineup_2_timeouts_available": [ - 2952 + 2951 ], "map_id": [ - 2952 + 2951 ], "match_id": [ - 2952 + 2951 ], "order": [ - 2952 + 2951 ], "public_clips_count": [ - 2952 + 2951 ], "public_latest_clip_at": [ - 2952 + 2951 ], "started_at": [ - 2952 + 2951 ], "winning_lineup_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -47562,7 +47554,7 @@ export default { 40 ], "returning": [ - 2605 + 2604 ], "__typename": [ 80 @@ -47570,10 +47562,10 @@ export default { }, "match_maps_obj_rel_insert_input": { "data": [ - 2617 + 2616 ], "on_conflict": [ - 2624 + 2623 ], "__typename": [ 80 @@ -47581,13 +47573,13 @@ export default { }, "match_maps_on_conflict": { "constraint": [ - 2615 + 2614 ], "update_columns": [ - 2639 + 2638 ], "where": [ - 2614 + 2613 ], "__typename": [ 80 @@ -47595,112 +47587,112 @@ export default { }, "match_maps_order_by": { "clips_count": [ - 2952 + 2951 ], "created_at": [ - 2952 + 2951 ], "demos_aggregate": [ - 2496 + 2495 ], "demos_download_url": [ - 2952 + 2951 ], "demos_total_size": [ - 2952 + 2951 ], "e_match_map_status": [ - 956 + 955 ], "ended_at": [ - 2952 + 2951 ], "flashes_aggregate": [ - 3269 + 3268 ], "id": [ - 2952 + 2951 ], "is_current_map": [ - 2952 + 2951 ], "latest_clip_at": [ - 2952 + 2951 ], "lineup_1_score": [ - 2952 + 2951 ], "lineup_1_side": [ - 2952 + 2951 ], "lineup_1_timeouts_available": [ - 2952 + 2951 ], "lineup_2_score": [ - 2952 + 2951 ], "lineup_2_side": [ - 2952 + 2951 ], "lineup_2_timeouts_available": [ - 2952 + 2951 ], "map": [ - 2304 + 2303 ], "map_id": [ - 2952 + 2951 ], "match": [ - 2787 + 2786 ], "match_clips_aggregate": [ - 2319 + 2318 ], "match_id": [ - 2952 + 2951 ], "objectives_aggregate": [ - 3513 + 3512 ], "order": [ - 2952 + 2951 ], "player_assists_aggregate": [ - 3097 + 3096 ], "player_damages_aggregate": [ - 3158 + 3157 ], "player_kills_aggregate": [ - 3314 + 3313 ], "player_unused_utilities_aggregate": [ - 3800 + 3799 ], "public_clips_count": [ - 2952 + 2951 ], "public_latest_clip_at": [ - 2952 + 2951 ], "rounds_aggregate": [ - 2545 + 2544 ], "started_at": [ - 2952 + 2951 ], "status": [ - 2952 + 2951 ], "utility_aggregate": [ - 3841 + 3840 ], "vetos_aggregate": [ - 2586 + 2585 ], "winning_lineup_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -47708,7 +47700,7 @@ export default { }, "match_maps_pk_columns_input": { "id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -47720,34 +47712,34 @@ export default { 40 ], "created_at": [ - 4499 + 4498 ], "ended_at": [ - 4499 + 4498 ], "id": [ - 4999 + 4998 ], "latest_clip_at": [ - 4499 + 4498 ], "lineup_1_side": [ - 1192 + 1191 ], "lineup_1_timeouts_available": [ 40 ], "lineup_2_side": [ - 1192 + 1191 ], "lineup_2_timeouts_available": [ 40 ], "map_id": [ - 4999 + 4998 ], "match_id": [ - 4999 + 4998 ], "order": [ 40 @@ -47756,16 +47748,16 @@ export default { 40 ], "public_latest_clip_at": [ - 4499 + 4498 ], "started_at": [ - 4499 + 4498 ], "status": [ - 948 + 947 ], "winning_lineup_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -47802,19 +47794,19 @@ export default { }, "match_maps_stddev_order_by": { "clips_count": [ - 2952 + 2951 ], "lineup_1_timeouts_available": [ - 2952 + 2951 ], "lineup_2_timeouts_available": [ - 2952 + 2951 ], "order": [ - 2952 + 2951 ], "public_clips_count": [ - 2952 + 2951 ], "__typename": [ 80 @@ -47851,19 +47843,19 @@ export default { }, "match_maps_stddev_pop_order_by": { "clips_count": [ - 2952 + 2951 ], "lineup_1_timeouts_available": [ - 2952 + 2951 ], "lineup_2_timeouts_available": [ - 2952 + 2951 ], "order": [ - 2952 + 2951 ], "public_clips_count": [ - 2952 + 2951 ], "__typename": [ 80 @@ -47900,19 +47892,19 @@ export default { }, "match_maps_stddev_samp_order_by": { "clips_count": [ - 2952 + 2951 ], "lineup_1_timeouts_available": [ - 2952 + 2951 ], "lineup_2_timeouts_available": [ - 2952 + 2951 ], "order": [ - 2952 + 2951 ], "public_clips_count": [ - 2952 + 2951 ], "__typename": [ 80 @@ -47920,10 +47912,10 @@ export default { }, "match_maps_stream_cursor_input": { "initial_value": [ - 2636 + 2635 ], "ordering": [ - 314 + 313 ], "__typename": [ 80 @@ -47934,34 +47926,34 @@ export default { 40 ], "created_at": [ - 4499 + 4498 ], "ended_at": [ - 4499 + 4498 ], "id": [ - 4999 + 4998 ], "latest_clip_at": [ - 4499 + 4498 ], "lineup_1_side": [ - 1192 + 1191 ], "lineup_1_timeouts_available": [ 40 ], "lineup_2_side": [ - 1192 + 1191 ], "lineup_2_timeouts_available": [ 40 ], "map_id": [ - 4999 + 4998 ], "match_id": [ - 4999 + 4998 ], "order": [ 40 @@ -47970,16 +47962,16 @@ export default { 40 ], "public_latest_clip_at": [ - 4499 + 4498 ], "started_at": [ - 4499 + 4498 ], "status": [ - 948 + 947 ], "winning_lineup_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -48016,19 +48008,19 @@ export default { }, "match_maps_sum_order_by": { "clips_count": [ - 2952 + 2951 ], "lineup_1_timeouts_available": [ - 2952 + 2951 ], "lineup_2_timeouts_available": [ - 2952 + 2951 ], "order": [ - 2952 + 2951 ], "public_clips_count": [ - 2952 + 2951 ], "__typename": [ 80 @@ -48037,13 +48029,13 @@ export default { "match_maps_update_column": {}, "match_maps_updates": { "_inc": [ - 2616 + 2615 ], "_set": [ - 2628 + 2627 ], "where": [ - 2614 + 2613 ], "__typename": [ 80 @@ -48080,19 +48072,19 @@ export default { }, "match_maps_var_pop_order_by": { "clips_count": [ - 2952 + 2951 ], "lineup_1_timeouts_available": [ - 2952 + 2951 ], "lineup_2_timeouts_available": [ - 2952 + 2951 ], "order": [ - 2952 + 2951 ], "public_clips_count": [ - 2952 + 2951 ], "__typename": [ 80 @@ -48129,19 +48121,19 @@ export default { }, "match_maps_var_samp_order_by": { "clips_count": [ - 2952 + 2951 ], "lineup_1_timeouts_available": [ - 2952 + 2951 ], "lineup_2_timeouts_available": [ - 2952 + 2951 ], "order": [ - 2952 + 2951 ], "public_clips_count": [ - 2952 + 2951 ], "__typename": [ 80 @@ -48178,19 +48170,19 @@ export default { }, "match_maps_variance_order_by": { "clips_count": [ - 2952 + 2951 ], "lineup_1_timeouts_available": [ - 2952 + 2951 ], "lineup_2_timeouts_available": [ - 2952 + 2951 ], "order": [ - 2952 + 2951 ], "public_clips_count": [ - 2952 + 2951 ], "__typename": [ 80 @@ -48207,7 +48199,7 @@ export default { 40 ], "check_in_setting": [ - 555 + 554 ], "coaches": [ 5 @@ -48222,7 +48214,7 @@ export default { 5 ], "id": [ - 4999 + 4998 ], "invite_code": [ 80 @@ -48234,22 +48226,22 @@ export default { 40 ], "map_pool": [ - 2266 + 2265 ], "map_pool_id": [ - 4999 + 4998 ], "map_veto": [ 5 ], "match_mode": [ - 969 + 968 ], "matches": [ - 2767, + 2766, { "distinct_on": [ - 2789, + 2788, "[matches_select_column!]" ], "limit": [ @@ -48259,19 +48251,19 @@ export default { 40 ], "order_by": [ - 2787, + 2786, "[matches_order_by!]" ], "where": [ - 2776 + 2775 ] } ], "matches_aggregate": [ - 2768, + 2767, { "distinct_on": [ - 2789, + 2788, "[matches_select_column!]" ], "limit": [ @@ -48281,11 +48273,11 @@ export default { 40 ], "order_by": [ - 2787, + 2786, "[matches_order_by!]" ], "where": [ - 2776 + 2775 ] } ], @@ -48302,7 +48294,7 @@ export default { 5 ], "ready_setting": [ - 1111 + 1110 ], "region_veto": [ 5 @@ -48314,25 +48306,25 @@ export default { 40 ], "tech_timeout_setting": [ - 1273 + 1272 ], "timeout_setting": [ - 1273 + 1272 ], "tournament": [ - 4935 + 4934 ], "tournament_bracket": [ - 4543 + 4542 ], "tournament_stage": [ - 4760 + 4759 ], "tv_delay": [ 40 ], "type": [ - 1010 + 1009 ], "__typename": [ 80 @@ -48340,10 +48332,10 @@ export default { }, "match_options_aggregate": { "aggregate": [ - 2649 + 2648 ], "nodes": [ - 2647 + 2646 ], "__typename": [ 80 @@ -48351,13 +48343,13 @@ export default { }, "match_options_aggregate_fields": { "avg": [ - 2650 + 2649 ], "count": [ 40, { "columns": [ - 2662, + 2661, "[match_options_select_column!]" ], "distinct": [ @@ -48366,31 +48358,31 @@ export default { } ], "max": [ - 2655 + 2654 ], "min": [ - 2656 + 2655 ], "stddev": [ - 2664 + 2663 ], "stddev_pop": [ - 2665 + 2664 ], "stddev_samp": [ - 2666 + 2665 ], "sum": [ - 2669 + 2668 ], "var_pop": [ - 2672 + 2671 ], "var_samp": [ - 2673 + 2672 ], "variance": [ - 2674 + 2673 ], "__typename": [ 80 @@ -48424,13 +48416,13 @@ export default { }, "match_options_bool_exp": { "_and": [ - 2651 + 2650 ], "_not": [ - 2651 + 2650 ], "_or": [ - 2651 + 2650 ], "auto_cancel_duration": [ 41 @@ -48442,7 +48434,7 @@ export default { 41 ], "check_in_setting": [ - 556 + 555 ], "coaches": [ 6 @@ -48457,7 +48449,7 @@ export default { 6 ], "id": [ - 5001 + 5000 ], "invite_code": [ 82 @@ -48469,22 +48461,22 @@ export default { 41 ], "map_pool": [ - 2269 + 2268 ], "map_pool_id": [ - 5001 + 5000 ], "map_veto": [ 6 ], "match_mode": [ - 970 + 969 ], "matches": [ - 2776 + 2775 ], "matches_aggregate": [ - 2769 + 2768 ], "mr": [ 41 @@ -48499,7 +48491,7 @@ export default { 6 ], "ready_setting": [ - 1112 + 1111 ], "region_veto": [ 6 @@ -48511,25 +48503,25 @@ export default { 41 ], "tech_timeout_setting": [ - 1274 + 1273 ], "timeout_setting": [ - 1274 + 1273 ], "tournament": [ - 4956 + 4955 ], "tournament_bracket": [ - 4554 + 4553 ], "tournament_stage": [ - 4772 + 4771 ], "tv_delay": [ 41 ], "type": [ - 1011 + 1010 ], "__typename": [ 80 @@ -48573,7 +48565,7 @@ export default { 40 ], "check_in_setting": [ - 555 + 554 ], "coaches": [ 5 @@ -48585,7 +48577,7 @@ export default { 5 ], "id": [ - 4999 + 4998 ], "invite_code": [ 80 @@ -48597,19 +48589,19 @@ export default { 40 ], "map_pool": [ - 2275 + 2274 ], "map_pool_id": [ - 4999 + 4998 ], "map_veto": [ 5 ], "match_mode": [ - 969 + 968 ], "matches": [ - 2773 + 2772 ], "mr": [ 40 @@ -48624,7 +48616,7 @@ export default { 5 ], "ready_setting": [ - 1111 + 1110 ], "region_veto": [ 5 @@ -48636,25 +48628,25 @@ export default { 40 ], "tech_timeout_setting": [ - 1273 + 1272 ], "timeout_setting": [ - 1273 + 1272 ], "tournament": [ - 4965 + 4964 ], "tournament_bracket": [ - 4563 + 4562 ], "tournament_stage": [ - 4784 + 4783 ], "tv_delay": [ 40 ], "type": [ - 1010 + 1009 ], "__typename": [ 80 @@ -48668,7 +48660,7 @@ export default { 40 ], "id": [ - 4999 + 4998 ], "invite_code": [ 80 @@ -48677,7 +48669,7 @@ export default { 40 ], "map_pool_id": [ - 4999 + 4998 ], "mr": [ 40 @@ -48706,7 +48698,7 @@ export default { 40 ], "id": [ - 4999 + 4998 ], "invite_code": [ 80 @@ -48715,7 +48707,7 @@ export default { 40 ], "map_pool_id": [ - 4999 + 4998 ], "mr": [ 40 @@ -48741,7 +48733,7 @@ export default { 40 ], "returning": [ - 2647 + 2646 ], "__typename": [ 80 @@ -48749,10 +48741,10 @@ export default { }, "match_options_obj_rel_insert_input": { "data": [ - 2654 + 2653 ], "on_conflict": [ - 2659 + 2658 ], "__typename": [ 80 @@ -48760,13 +48752,13 @@ export default { }, "match_options_on_conflict": { "constraint": [ - 2652 + 2651 ], "update_columns": [ - 2670 + 2669 ], "where": [ - 2651 + 2650 ], "__typename": [ 80 @@ -48774,100 +48766,100 @@ export default { }, "match_options_order_by": { "auto_cancel_duration": [ - 2952 + 2951 ], "auto_cancellation": [ - 2952 + 2951 ], "best_of": [ - 2952 + 2951 ], "check_in_setting": [ - 2952 + 2951 ], "coaches": [ - 2952 + 2951 ], "default_models": [ - 2952 + 2951 ], "halftime_pausematch": [ - 2952 + 2951 ], "has_active_matches": [ - 2952 + 2951 ], "id": [ - 2952 + 2951 ], "invite_code": [ - 2952 + 2951 ], "knife_round": [ - 2952 + 2951 ], "live_match_timeout": [ - 2952 + 2951 ], "map_pool": [ - 2277 + 2276 ], "map_pool_id": [ - 2952 + 2951 ], "map_veto": [ - 2952 + 2951 ], "match_mode": [ - 2952 + 2951 ], "matches_aggregate": [ - 2772 + 2771 ], "mr": [ - 2952 + 2951 ], "number_of_substitutes": [ - 2952 + 2951 ], "overtime": [ - 2952 + 2951 ], "prefer_dedicated_server": [ - 2952 + 2951 ], "ready_setting": [ - 2952 + 2951 ], "region_veto": [ - 2952 + 2951 ], "regions": [ - 2952 + 2951 ], "round_restart_delay": [ - 2952 + 2951 ], "tech_timeout_setting": [ - 2952 + 2951 ], "timeout_setting": [ - 2952 + 2951 ], "tournament": [ - 4967 + 4966 ], "tournament_bracket": [ - 4565 + 4564 ], "tournament_stage": [ - 4786 + 4785 ], "tv_delay": [ - 2952 + 2951 ], "type": [ - 2952 + 2951 ], "__typename": [ 80 @@ -48875,7 +48867,7 @@ export default { }, "match_options_pk_columns_input": { "id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -48893,7 +48885,7 @@ export default { 40 ], "check_in_setting": [ - 555 + 554 ], "coaches": [ 5 @@ -48905,7 +48897,7 @@ export default { 5 ], "id": [ - 4999 + 4998 ], "invite_code": [ 80 @@ -48917,13 +48909,13 @@ export default { 40 ], "map_pool_id": [ - 4999 + 4998 ], "map_veto": [ 5 ], "match_mode": [ - 969 + 968 ], "mr": [ 40 @@ -48938,7 +48930,7 @@ export default { 5 ], "ready_setting": [ - 1111 + 1110 ], "region_veto": [ 5 @@ -48950,16 +48942,16 @@ export default { 40 ], "tech_timeout_setting": [ - 1273 + 1272 ], "timeout_setting": [ - 1273 + 1272 ], "tv_delay": [ 40 ], "type": [ - 1010 + 1009 ], "__typename": [ 80 @@ -49045,10 +49037,10 @@ export default { }, "match_options_stream_cursor_input": { "initial_value": [ - 2668 + 2667 ], "ordering": [ - 314 + 313 ], "__typename": [ 80 @@ -49065,7 +49057,7 @@ export default { 40 ], "check_in_setting": [ - 555 + 554 ], "coaches": [ 5 @@ -49077,7 +49069,7 @@ export default { 5 ], "id": [ - 4999 + 4998 ], "invite_code": [ 80 @@ -49089,13 +49081,13 @@ export default { 40 ], "map_pool_id": [ - 4999 + 4998 ], "map_veto": [ 5 ], "match_mode": [ - 969 + 968 ], "mr": [ 40 @@ -49110,7 +49102,7 @@ export default { 5 ], "ready_setting": [ - 1111 + 1110 ], "region_veto": [ 5 @@ -49122,16 +49114,16 @@ export default { 40 ], "tech_timeout_setting": [ - 1273 + 1272 ], "timeout_setting": [ - 1273 + 1272 ], "tv_delay": [ 40 ], "type": [ - 1010 + 1009 ], "__typename": [ 80 @@ -49166,13 +49158,13 @@ export default { "match_options_update_column": {}, "match_options_updates": { "_inc": [ - 2653 + 2652 ], "_set": [ - 2663 + 2662 ], "where": [ - 2651 + 2650 ], "__typename": [ 80 @@ -49258,28 +49250,28 @@ export default { }, "match_region_veto_picks": { "created_at": [ - 4499 + 4498 ], "id": [ - 4999 + 4998 ], "match": [ - 2767 + 2766 ], "match_id": [ - 4999 + 4998 ], "match_lineup": [ - 2447 + 2446 ], "match_lineup_id": [ - 4999 + 4998 ], "region": [ 80 ], "type": [ - 1376 + 1375 ], "__typename": [ 80 @@ -49287,10 +49279,10 @@ export default { }, "match_region_veto_picks_aggregate": { "aggregate": [ - 2679 + 2678 ], "nodes": [ - 2675 + 2674 ], "__typename": [ 80 @@ -49298,7 +49290,7 @@ export default { }, "match_region_veto_picks_aggregate_bool_exp": { "count": [ - 2678 + 2677 ], "__typename": [ 80 @@ -49306,13 +49298,13 @@ export default { }, "match_region_veto_picks_aggregate_bool_exp_count": { "arguments": [ - 2693 + 2692 ], "distinct": [ 5 ], "filter": [ - 2682 + 2681 ], "predicate": [ 41 @@ -49326,7 +49318,7 @@ export default { 40, { "columns": [ - 2693, + 2692, "[match_region_veto_picks_select_column!]" ], "distinct": [ @@ -49335,10 +49327,10 @@ export default { } ], "max": [ - 2685 + 2684 ], "min": [ - 2687 + 2686 ], "__typename": [ 80 @@ -49346,13 +49338,13 @@ export default { }, "match_region_veto_picks_aggregate_order_by": { "count": [ - 2952 + 2951 ], "max": [ - 2686 + 2685 ], "min": [ - 2688 + 2687 ], "__typename": [ 80 @@ -49360,10 +49352,10 @@ export default { }, "match_region_veto_picks_arr_rel_insert_input": { "data": [ - 2684 + 2683 ], "on_conflict": [ - 2690 + 2689 ], "__typename": [ 80 @@ -49371,37 +49363,37 @@ export default { }, "match_region_veto_picks_bool_exp": { "_and": [ - 2682 + 2681 ], "_not": [ - 2682 + 2681 ], "_or": [ - 2682 + 2681 ], "created_at": [ - 4500 + 4499 ], "id": [ - 5001 + 5000 ], "match": [ - 2776 + 2775 ], "match_id": [ - 5001 + 5000 ], "match_lineup": [ - 2456 + 2455 ], "match_lineup_id": [ - 5001 + 5000 ], "region": [ 82 ], "type": [ - 1377 + 1376 ], "__typename": [ 80 @@ -49410,28 +49402,28 @@ export default { "match_region_veto_picks_constraint": {}, "match_region_veto_picks_insert_input": { "created_at": [ - 4499 + 4498 ], "id": [ - 4999 + 4998 ], "match": [ - 2785 + 2784 ], "match_id": [ - 4999 + 4998 ], "match_lineup": [ - 2465 + 2464 ], "match_lineup_id": [ - 4999 + 4998 ], "region": [ 80 ], "type": [ - 1376 + 1375 ], "__typename": [ 80 @@ -49439,16 +49431,16 @@ export default { }, "match_region_veto_picks_max_fields": { "created_at": [ - 4499 + 4498 ], "id": [ - 4999 + 4998 ], "match_id": [ - 4999 + 4998 ], "match_lineup_id": [ - 4999 + 4998 ], "region": [ 80 @@ -49459,19 +49451,19 @@ export default { }, "match_region_veto_picks_max_order_by": { "created_at": [ - 2952 + 2951 ], "id": [ - 2952 + 2951 ], "match_id": [ - 2952 + 2951 ], "match_lineup_id": [ - 2952 + 2951 ], "region": [ - 2952 + 2951 ], "__typename": [ 80 @@ -49479,16 +49471,16 @@ export default { }, "match_region_veto_picks_min_fields": { "created_at": [ - 4499 + 4498 ], "id": [ - 4999 + 4998 ], "match_id": [ - 4999 + 4998 ], "match_lineup_id": [ - 4999 + 4998 ], "region": [ 80 @@ -49499,19 +49491,19 @@ export default { }, "match_region_veto_picks_min_order_by": { "created_at": [ - 2952 + 2951 ], "id": [ - 2952 + 2951 ], "match_id": [ - 2952 + 2951 ], "match_lineup_id": [ - 2952 + 2951 ], "region": [ - 2952 + 2951 ], "__typename": [ 80 @@ -49522,7 +49514,7 @@ export default { 40 ], "returning": [ - 2675 + 2674 ], "__typename": [ 80 @@ -49530,13 +49522,13 @@ export default { }, "match_region_veto_picks_on_conflict": { "constraint": [ - 2683 + 2682 ], "update_columns": [ - 2697 + 2696 ], "where": [ - 2682 + 2681 ], "__typename": [ 80 @@ -49544,28 +49536,28 @@ export default { }, "match_region_veto_picks_order_by": { "created_at": [ - 2952 + 2951 ], "id": [ - 2952 + 2951 ], "match": [ - 2787 + 2786 ], "match_id": [ - 2952 + 2951 ], "match_lineup": [ - 2467 + 2466 ], "match_lineup_id": [ - 2952 + 2951 ], "region": [ - 2952 + 2951 ], "type": [ - 2952 + 2951 ], "__typename": [ 80 @@ -49573,7 +49565,7 @@ export default { }, "match_region_veto_picks_pk_columns_input": { "id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -49582,22 +49574,22 @@ export default { "match_region_veto_picks_select_column": {}, "match_region_veto_picks_set_input": { "created_at": [ - 4499 + 4498 ], "id": [ - 4999 + 4998 ], "match_id": [ - 4999 + 4998 ], "match_lineup_id": [ - 4999 + 4998 ], "region": [ 80 ], "type": [ - 1376 + 1375 ], "__typename": [ 80 @@ -49605,10 +49597,10 @@ export default { }, "match_region_veto_picks_stream_cursor_input": { "initial_value": [ - 2696 + 2695 ], "ordering": [ - 314 + 313 ], "__typename": [ 80 @@ -49616,22 +49608,22 @@ export default { }, "match_region_veto_picks_stream_cursor_value_input": { "created_at": [ - 4499 + 4498 ], "id": [ - 4999 + 4998 ], "match_id": [ - 4999 + 4998 ], "match_lineup_id": [ - 4999 + 4998 ], "region": [ 80 ], "type": [ - 1376 + 1375 ], "__typename": [ 80 @@ -49640,10 +49632,10 @@ export default { "match_region_veto_picks_update_column": {}, "match_region_veto_picks_updates": { "_set": [ - 2694 + 2693 ], "where": [ - 2682 + 2681 ], "__typename": [ 80 @@ -49657,13 +49649,13 @@ export default { 80 ], "game_server_node": [ - 1699 + 1698 ], "game_server_node_id": [ 80 ], "id": [ - 4999 + 4998 ], "is_game_streamer": [ 5 @@ -49675,16 +49667,16 @@ export default { 80 ], "last_status_at": [ - 4499 + 4498 ], "link": [ 80 ], "match": [ - 2767 + 2766 ], "match_id": [ - 4999 + 4998 ], "mode": [ 80 @@ -49696,7 +49688,7 @@ export default { 80 ], "status_history": [ - 1823, + 1822, { "path": [ 80 @@ -49715,10 +49707,10 @@ export default { }, "match_streams_aggregate": { "aggregate": [ - 2705 + 2704 ], "nodes": [ - 2699 + 2698 ], "__typename": [ 80 @@ -49726,13 +49718,13 @@ export default { }, "match_streams_aggregate_bool_exp": { "bool_and": [ - 2702 + 2701 ], "bool_or": [ - 2703 + 2702 ], "count": [ - 2704 + 2703 ], "__typename": [ 80 @@ -49740,13 +49732,13 @@ export default { }, "match_streams_aggregate_bool_exp_bool_and": { "arguments": [ - 2728 + 2727 ], "distinct": [ 5 ], "filter": [ - 2711 + 2710 ], "predicate": [ 6 @@ -49757,13 +49749,13 @@ export default { }, "match_streams_aggregate_bool_exp_bool_or": { "arguments": [ - 2729 + 2728 ], "distinct": [ 5 ], "filter": [ - 2711 + 2710 ], "predicate": [ 6 @@ -49774,13 +49766,13 @@ export default { }, "match_streams_aggregate_bool_exp_count": { "arguments": [ - 2727 + 2726 ], "distinct": [ 5 ], "filter": [ - 2711 + 2710 ], "predicate": [ 41 @@ -49791,13 +49783,13 @@ export default { }, "match_streams_aggregate_fields": { "avg": [ - 2709 + 2708 ], "count": [ 40, { "columns": [ - 2727, + 2726, "[match_streams_select_column!]" ], "distinct": [ @@ -49806,31 +49798,31 @@ export default { } ], "max": [ - 2718 + 2717 ], "min": [ - 2720 + 2719 ], "stddev": [ - 2731 + 2730 ], "stddev_pop": [ - 2733 + 2732 ], "stddev_samp": [ - 2735 + 2734 ], "sum": [ - 2739 + 2738 ], "var_pop": [ - 2743 + 2742 ], "var_samp": [ - 2745 + 2744 ], "variance": [ - 2747 + 2746 ], "__typename": [ 80 @@ -49838,37 +49830,37 @@ export default { }, "match_streams_aggregate_order_by": { "avg": [ - 2710 + 2709 ], "count": [ - 2952 + 2951 ], "max": [ - 2719 + 2718 ], "min": [ - 2721 + 2720 ], "stddev": [ - 2732 + 2731 ], "stddev_pop": [ - 2734 + 2733 ], "stddev_samp": [ - 2736 + 2735 ], "sum": [ - 2740 + 2739 ], "var_pop": [ - 2744 + 2743 ], "var_samp": [ - 2746 + 2745 ], "variance": [ - 2748 + 2747 ], "__typename": [ 80 @@ -49876,7 +49868,7 @@ export default { }, "match_streams_append_input": { "status_history": [ - 1823 + 1822 ], "__typename": [ 80 @@ -49884,10 +49876,10 @@ export default { }, "match_streams_arr_rel_insert_input": { "data": [ - 2717 + 2716 ], "on_conflict": [ - 2723 + 2722 ], "__typename": [ 80 @@ -49903,7 +49895,7 @@ export default { }, "match_streams_avg_order_by": { "priority": [ - 2952 + 2951 ], "__typename": [ 80 @@ -49911,13 +49903,13 @@ export default { }, "match_streams_bool_exp": { "_and": [ - 2711 + 2710 ], "_not": [ - 2711 + 2710 ], "_or": [ - 2711 + 2710 ], "autodirector": [ 6 @@ -49926,13 +49918,13 @@ export default { 82 ], "game_server_node": [ - 1711 + 1710 ], "game_server_node_id": [ 82 ], "id": [ - 5001 + 5000 ], "is_game_streamer": [ 6 @@ -49944,16 +49936,16 @@ export default { 82 ], "last_status_at": [ - 4500 + 4499 ], "link": [ 82 ], "match": [ - 2776 + 2775 ], "match_id": [ - 5001 + 5000 ], "mode": [ 82 @@ -49965,7 +49957,7 @@ export default { 82 ], "status_history": [ - 1825 + 1824 ], "stream_url": [ 82 @@ -50018,13 +50010,13 @@ export default { 80 ], "game_server_node": [ - 1723 + 1722 ], "game_server_node_id": [ 80 ], "id": [ - 4999 + 4998 ], "is_game_streamer": [ 5 @@ -50036,16 +50028,16 @@ export default { 80 ], "last_status_at": [ - 4499 + 4498 ], "link": [ 80 ], "match": [ - 2785 + 2784 ], "match_id": [ - 4999 + 4998 ], "mode": [ 80 @@ -50057,7 +50049,7 @@ export default { 80 ], "status_history": [ - 1823 + 1822 ], "stream_url": [ 80 @@ -50077,19 +50069,19 @@ export default { 80 ], "id": [ - 4999 + 4998 ], "k8s_service_name": [ 80 ], "last_status_at": [ - 4499 + 4498 ], "link": [ 80 ], "match_id": [ - 4999 + 4998 ], "mode": [ 80 @@ -50112,40 +50104,40 @@ export default { }, "match_streams_max_order_by": { "error_message": [ - 2952 + 2951 ], "game_server_node_id": [ - 2952 + 2951 ], "id": [ - 2952 + 2951 ], "k8s_service_name": [ - 2952 + 2951 ], "last_status_at": [ - 2952 + 2951 ], "link": [ - 2952 + 2951 ], "match_id": [ - 2952 + 2951 ], "mode": [ - 2952 + 2951 ], "priority": [ - 2952 + 2951 ], "status": [ - 2952 + 2951 ], "stream_url": [ - 2952 + 2951 ], "title": [ - 2952 + 2951 ], "__typename": [ 80 @@ -50159,19 +50151,19 @@ export default { 80 ], "id": [ - 4999 + 4998 ], "k8s_service_name": [ 80 ], "last_status_at": [ - 4499 + 4498 ], "link": [ 80 ], "match_id": [ - 4999 + 4998 ], "mode": [ 80 @@ -50194,40 +50186,40 @@ export default { }, "match_streams_min_order_by": { "error_message": [ - 2952 + 2951 ], "game_server_node_id": [ - 2952 + 2951 ], "id": [ - 2952 + 2951 ], "k8s_service_name": [ - 2952 + 2951 ], "last_status_at": [ - 2952 + 2951 ], "link": [ - 2952 + 2951 ], "match_id": [ - 2952 + 2951 ], "mode": [ - 2952 + 2951 ], "priority": [ - 2952 + 2951 ], "status": [ - 2952 + 2951 ], "stream_url": [ - 2952 + 2951 ], "title": [ - 2952 + 2951 ], "__typename": [ 80 @@ -50238,7 +50230,7 @@ export default { 40 ], "returning": [ - 2699 + 2698 ], "__typename": [ 80 @@ -50246,13 +50238,13 @@ export default { }, "match_streams_on_conflict": { "constraint": [ - 2712 + 2711 ], "update_columns": [ - 2741 + 2740 ], "where": [ - 2711 + 2710 ], "__typename": [ 80 @@ -50260,58 +50252,58 @@ export default { }, "match_streams_order_by": { "autodirector": [ - 2952 + 2951 ], "error_message": [ - 2952 + 2951 ], "game_server_node": [ - 1725 + 1724 ], "game_server_node_id": [ - 2952 + 2951 ], "id": [ - 2952 + 2951 ], "is_game_streamer": [ - 2952 + 2951 ], "is_live": [ - 2952 + 2951 ], "k8s_service_name": [ - 2952 + 2951 ], "last_status_at": [ - 2952 + 2951 ], "link": [ - 2952 + 2951 ], "match": [ - 2787 + 2786 ], "match_id": [ - 2952 + 2951 ], "mode": [ - 2952 + 2951 ], "priority": [ - 2952 + 2951 ], "status": [ - 2952 + 2951 ], "status_history": [ - 2952 + 2951 ], "stream_url": [ - 2952 + 2951 ], "title": [ - 2952 + 2951 ], "__typename": [ 80 @@ -50319,7 +50311,7 @@ export default { }, "match_streams_pk_columns_input": { "id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -50327,7 +50319,7 @@ export default { }, "match_streams_prepend_input": { "status_history": [ - 1823 + 1822 ], "__typename": [ 80 @@ -50347,7 +50339,7 @@ export default { 80 ], "id": [ - 4999 + 4998 ], "is_game_streamer": [ 5 @@ -50359,13 +50351,13 @@ export default { 80 ], "last_status_at": [ - 4499 + 4498 ], "link": [ 80 ], "match_id": [ - 4999 + 4998 ], "mode": [ 80 @@ -50377,7 +50369,7 @@ export default { 80 ], "status_history": [ - 1823 + 1822 ], "stream_url": [ 80 @@ -50399,7 +50391,7 @@ export default { }, "match_streams_stddev_order_by": { "priority": [ - 2952 + 2951 ], "__typename": [ 80 @@ -50415,7 +50407,7 @@ export default { }, "match_streams_stddev_pop_order_by": { "priority": [ - 2952 + 2951 ], "__typename": [ 80 @@ -50431,7 +50423,7 @@ export default { }, "match_streams_stddev_samp_order_by": { "priority": [ - 2952 + 2951 ], "__typename": [ 80 @@ -50439,10 +50431,10 @@ export default { }, "match_streams_stream_cursor_input": { "initial_value": [ - 2738 + 2737 ], "ordering": [ - 314 + 313 ], "__typename": [ 80 @@ -50459,7 +50451,7 @@ export default { 80 ], "id": [ - 4999 + 4998 ], "is_game_streamer": [ 5 @@ -50471,13 +50463,13 @@ export default { 80 ], "last_status_at": [ - 4499 + 4498 ], "link": [ 80 ], "match_id": [ - 4999 + 4998 ], "mode": [ 80 @@ -50489,7 +50481,7 @@ export default { 80 ], "status_history": [ - 1823 + 1822 ], "stream_url": [ 80 @@ -50511,7 +50503,7 @@ export default { }, "match_streams_sum_order_by": { "priority": [ - 2952 + 2951 ], "__typename": [ 80 @@ -50520,28 +50512,28 @@ export default { "match_streams_update_column": {}, "match_streams_updates": { "_append": [ - 2707 + 2706 ], "_delete_at_path": [ - 2713 + 2712 ], "_delete_elem": [ - 2714 + 2713 ], "_delete_key": [ - 2715 + 2714 ], "_inc": [ - 2716 + 2715 ], "_prepend": [ - 2726 + 2725 ], "_set": [ - 2730 + 2729 ], "where": [ - 2711 + 2710 ], "__typename": [ 80 @@ -50557,7 +50549,7 @@ export default { }, "match_streams_var_pop_order_by": { "priority": [ - 2952 + 2951 ], "__typename": [ 80 @@ -50573,7 +50565,7 @@ export default { }, "match_streams_var_samp_order_by": { "priority": [ - 2952 + 2951 ], "__typename": [ 80 @@ -50589,7 +50581,7 @@ export default { }, "match_streams_variance_order_by": { "priority": [ - 2952 + 2951 ], "__typename": [ 80 @@ -50600,7 +50592,7 @@ export default { 80 ], "type": [ - 741 + 740 ], "__typename": [ 80 @@ -50608,10 +50600,10 @@ export default { }, "match_type_cfgs_aggregate": { "aggregate": [ - 2751 + 2750 ], "nodes": [ - 2749 + 2748 ], "__typename": [ 80 @@ -50622,7 +50614,7 @@ export default { 40, { "columns": [ - 2761, + 2760, "[match_type_cfgs_select_column!]" ], "distinct": [ @@ -50631,10 +50623,10 @@ export default { } ], "max": [ - 2755 + 2754 ], "min": [ - 2756 + 2755 ], "__typename": [ 80 @@ -50642,19 +50634,19 @@ export default { }, "match_type_cfgs_bool_exp": { "_and": [ - 2752 + 2751 ], "_not": [ - 2752 + 2751 ], "_or": [ - 2752 + 2751 ], "cfg": [ 82 ], "type": [ - 742 + 741 ], "__typename": [ 80 @@ -50666,7 +50658,7 @@ export default { 80 ], "type": [ - 741 + 740 ], "__typename": [ 80 @@ -50693,7 +50685,7 @@ export default { 40 ], "returning": [ - 2749 + 2748 ], "__typename": [ 80 @@ -50701,13 +50693,13 @@ export default { }, "match_type_cfgs_on_conflict": { "constraint": [ - 2753 + 2752 ], "update_columns": [ - 2765 + 2764 ], "where": [ - 2752 + 2751 ], "__typename": [ 80 @@ -50715,10 +50707,10 @@ export default { }, "match_type_cfgs_order_by": { "cfg": [ - 2952 + 2951 ], "type": [ - 2952 + 2951 ], "__typename": [ 80 @@ -50726,7 +50718,7 @@ export default { }, "match_type_cfgs_pk_columns_input": { "type": [ - 741 + 740 ], "__typename": [ 80 @@ -50738,7 +50730,7 @@ export default { 80 ], "type": [ - 741 + 740 ], "__typename": [ 80 @@ -50746,10 +50738,10 @@ export default { }, "match_type_cfgs_stream_cursor_input": { "initial_value": [ - 2764 + 2763 ], "ordering": [ - 314 + 313 ], "__typename": [ 80 @@ -50760,7 +50752,7 @@ export default { 80 ], "type": [ - 741 + 740 ], "__typename": [ 80 @@ -50769,10 +50761,10 @@ export default { "match_type_cfgs_update_column": {}, "match_type_cfgs_updates": { "_set": [ - 2762 + 2761 ], "where": [ - 2752 + 2751 ], "__typename": [ 80 @@ -50804,13 +50796,13 @@ export default { 5 ], "cancels_at": [ - 4499 + 4498 ], "clutches": [ - 5179, + 5178, { "distinct_on": [ - 5195, + 5194, "[v_match_clutches_select_column!]" ], "limit": [ @@ -50820,19 +50812,19 @@ export default { 40 ], "order_by": [ - 5194, + 5193, "[v_match_clutches_order_by!]" ], "where": [ - 5188 + 5187 ] } ], "clutches_aggregate": [ - 5180, + 5179, { "distinct_on": [ - 5195, + 5194, "[v_match_clutches_select_column!]" ], "limit": [ @@ -50842,11 +50834,11 @@ export default { 40 ], "order_by": [ - 5194, + 5193, "[v_match_clutches_order_by!]" ], "where": [ - 5188 + 5187 ] } ], @@ -50857,16 +50849,16 @@ export default { 80 ], "created_at": [ - 4499 + 4498 ], "current_match_map_id": [ - 4999 + 4998 ], "demos": [ - 2489, + 2488, { "distinct_on": [ - 2518, + 2517, "[match_map_demos_select_column!]" ], "limit": [ @@ -50876,19 +50868,19 @@ export default { 40 ], "order_by": [ - 2515, + 2514, "[match_map_demos_order_by!]" ], "where": [ - 2501 + 2500 ] } ], "demos_aggregate": [ - 2490, + 2489, { "distinct_on": [ - 2518, + 2517, "[match_map_demos_select_column!]" ], "limit": [ @@ -50898,19 +50890,19 @@ export default { 40 ], "order_by": [ - 2515, + 2514, "[match_map_demos_order_by!]" ], "where": [ - 2501 + 2500 ] } ], "draft_games": [ - 464, + 463, { "distinct_on": [ - 488, + 487, "[draft_games_select_column!]" ], "limit": [ @@ -50920,19 +50912,19 @@ export default { 40 ], "order_by": [ - 486, + 485, "[draft_games_order_by!]" ], "where": [ - 475 + 474 ] } ], "draft_games_aggregate": [ - 465, + 464, { "distinct_on": [ - 488, + 487, "[draft_games_select_column!]" ], "limit": [ @@ -50942,28 +50934,28 @@ export default { 40 ], "order_by": [ - 486, + 485, "[draft_games_order_by!]" ], "where": [ - 475 + 474 ] } ], "e_match_status": [ - 984 + 983 ], "e_region": [ - 3997 + 3996 ], "effective_at": [ - 4499 + 4498 ], "elo_changes": [ - 5376, + 5375, { "distinct_on": [ - 5402, + 5401, "[v_player_elo_select_column!]" ], "limit": [ @@ -50973,19 +50965,19 @@ export default { 40 ], "order_by": [ - 5401, + 5400, "[v_player_elo_order_by!]" ], "where": [ - 5395 + 5394 ] } ], "elo_changes_aggregate": [ - 5377, + 5376, { "distinct_on": [ - 5402, + 5401, "[v_player_elo_select_column!]" ], "limit": [ @@ -50995,22 +50987,22 @@ export default { 40 ], "order_by": [ - 5401, + 5400, "[v_player_elo_order_by!]" ], "where": [ - 5395 + 5394 ] } ], "ended_at": [ - 4499 + 4498 ], "external_id": [ 80 ], "id": [ - 4999 + 4998 ], "invite_code": [ 80 @@ -51043,19 +51035,19 @@ export default { 80 ], "lineup_1": [ - 2447 + 2446 ], "lineup_1_id": [ - 4999 + 4998 ], "lineup_2": [ - 2447 + 2446 ], "lineup_2_id": [ - 4999 + 4998 ], "lineup_counts": [ - 1821, + 1820, { "path": [ 80 @@ -51063,13 +51055,13 @@ export default { } ], "map_veto_picking_lineup_id": [ - 4999 + 4998 ], "map_veto_picks": [ - 2581, + 2580, { "distinct_on": [ - 2599, + 2598, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -51079,19 +51071,19 @@ export default { 40 ], "order_by": [ - 2597, + 2596, "[match_map_veto_picks_order_by!]" ], "where": [ - 2588 + 2587 ] } ], "map_veto_picks_aggregate": [ - 2582, + 2581, { "distinct_on": [ - 2599, + 2598, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -51101,11 +51093,11 @@ export default { 40 ], "order_by": [ - 2597, + 2596, "[match_map_veto_picks_order_by!]" ], "where": [ - 2588 + 2587 ] } ], @@ -51113,10 +51105,10 @@ export default { 80 ], "match_maps": [ - 2605, + 2604, { "distinct_on": [ - 2627, + 2626, "[match_maps_select_column!]" ], "limit": [ @@ -51126,19 +51118,19 @@ export default { 40 ], "order_by": [ - 2625, + 2624, "[match_maps_order_by!]" ], "where": [ - 2614 + 2613 ] } ], "match_maps_aggregate": [ - 2606, + 2605, { "distinct_on": [ - 2627, + 2626, "[match_maps_select_column!]" ], "limit": [ @@ -51148,16 +51140,16 @@ export default { 40 ], "order_by": [ - 2625, + 2624, "[match_maps_order_by!]" ], "where": [ - 2614 + 2613 ] } ], "match_options_id": [ - 4999 + 4998 ], "max_players_per_lineup": [ 40 @@ -51166,10 +51158,10 @@ export default { 40 ], "opening_duels": [ - 5307, + 5306, { "distinct_on": [ - 5323, + 5322, "[v_match_player_opening_duels_select_column!]" ], "limit": [ @@ -51179,19 +51171,19 @@ export default { 40 ], "order_by": [ - 5322, + 5321, "[v_match_player_opening_duels_order_by!]" ], "where": [ - 5316 + 5315 ] } ], "opening_duels_aggregate": [ - 5308, + 5307, { "distinct_on": [ - 5323, + 5322, "[v_match_player_opening_duels_select_column!]" ], "limit": [ @@ -51201,31 +51193,31 @@ export default { 40 ], "order_by": [ - 5322, + 5321, "[v_match_player_opening_duels_order_by!]" ], "where": [ - 5316 + 5315 ] } ], "options": [ - 2647 + 2646 ], "organizer": [ - 3910 + 3909 ], "organizer_steam_id": [ - 258 + 257 ], "password": [ 80 ], "player_assists": [ - 3090, + 3089, { "distinct_on": [ - 3113, + 3112, "[player_assists_select_column!]" ], "limit": [ @@ -51235,19 +51227,19 @@ export default { 40 ], "order_by": [ - 3111, + 3110, "[player_assists_order_by!]" ], "where": [ - 3101 + 3100 ] } ], "player_assists_aggregate": [ - 3091, + 3090, { "distinct_on": [ - 3113, + 3112, "[player_assists_select_column!]" ], "limit": [ @@ -51257,19 +51249,19 @@ export default { 40 ], "order_by": [ - 3111, + 3110, "[player_assists_order_by!]" ], "where": [ - 3101 + 3100 ] } ], "player_damages": [ - 3153, + 3152, { "distinct_on": [ - 3174, + 3173, "[player_damages_select_column!]" ], "limit": [ @@ -51279,19 +51271,19 @@ export default { 40 ], "order_by": [ - 3172, + 3171, "[player_damages_order_by!]" ], "where": [ - 3162 + 3161 ] } ], "player_damages_aggregate": [ - 3154, + 3153, { "distinct_on": [ - 3174, + 3173, "[player_damages_select_column!]" ], "limit": [ @@ -51301,19 +51293,19 @@ export default { 40 ], "order_by": [ - 3172, + 3171, "[player_damages_order_by!]" ], "where": [ - 3162 + 3161 ] } ], "player_flashes": [ - 3262, + 3261, { "distinct_on": [ - 3285, + 3284, "[player_flashes_select_column!]" ], "limit": [ @@ -51323,19 +51315,19 @@ export default { 40 ], "order_by": [ - 3283, + 3282, "[player_flashes_order_by!]" ], "where": [ - 3273 + 3272 ] } ], "player_flashes_aggregate": [ - 3263, + 3262, { "distinct_on": [ - 3285, + 3284, "[player_flashes_select_column!]" ], "limit": [ @@ -51345,19 +51337,19 @@ export default { 40 ], "order_by": [ - 3283, + 3282, "[player_flashes_order_by!]" ], "where": [ - 3273 + 3272 ] } ], "player_kills": [ - 3307, + 3306, { "distinct_on": [ - 3371, + 3370, "[player_kills_select_column!]" ], "limit": [ @@ -51367,19 +51359,19 @@ export default { 40 ], "order_by": [ - 3369, + 3368, "[player_kills_order_by!]" ], "where": [ - 3318 + 3317 ] } ], "player_kills_aggregate": [ - 3308, + 3307, { "distinct_on": [ - 3371, + 3370, "[player_kills_select_column!]" ], "limit": [ @@ -51389,19 +51381,19 @@ export default { 40 ], "order_by": [ - 3369, + 3368, "[player_kills_order_by!]" ], "where": [ - 3318 + 3317 ] } ], "player_objectives": [ - 3508, + 3507, { "distinct_on": [ - 3529, + 3528, "[player_objectives_select_column!]" ], "limit": [ @@ -51411,19 +51403,19 @@ export default { 40 ], "order_by": [ - 3527, + 3526, "[player_objectives_order_by!]" ], "where": [ - 3517 + 3516 ] } ], "player_objectives_aggregate": [ - 3509, + 3508, { "distinct_on": [ - 3529, + 3528, "[player_objectives_select_column!]" ], "limit": [ @@ -51433,19 +51425,19 @@ export default { 40 ], "order_by": [ - 3527, + 3526, "[player_objectives_order_by!]" ], "where": [ - 3517 + 3516 ] } ], "player_unused_utilities": [ - 3795, + 3794, { "distinct_on": [ - 3816, + 3815, "[player_unused_utility_select_column!]" ], "limit": [ @@ -51455,19 +51447,19 @@ export default { 40 ], "order_by": [ - 3814, + 3813, "[player_unused_utility_order_by!]" ], "where": [ - 3804 + 3803 ] } ], "player_unused_utilities_aggregate": [ - 3796, + 3795, { "distinct_on": [ - 3816, + 3815, "[player_unused_utility_select_column!]" ], "limit": [ @@ -51477,19 +51469,19 @@ export default { 40 ], "order_by": [ - 3814, + 3813, "[player_unused_utility_order_by!]" ], "where": [ - 3804 + 3803 ] } ], "player_utility": [ - 3836, + 3835, { "distinct_on": [ - 3857, + 3856, "[player_utility_select_column!]" ], "limit": [ @@ -51499,19 +51491,19 @@ export default { 40 ], "order_by": [ - 3855, + 3854, "[player_utility_order_by!]" ], "where": [ - 3845 + 3844 ] } ], "player_utility_aggregate": [ - 3837, + 3836, { "distinct_on": [ - 3857, + 3856, "[player_utility_select_column!]" ], "limit": [ @@ -51521,11 +51513,11 @@ export default { 40 ], "order_by": [ - 3855, + 3854, "[player_utility_order_by!]" ], "where": [ - 3845 + 3844 ] } ], @@ -51533,13 +51525,13 @@ export default { 80 ], "region_veto_picking_lineup_id": [ - 4999 + 4998 ], "region_veto_picks": [ - 2675, + 2674, { "distinct_on": [ - 2693, + 2692, "[match_region_veto_picks_select_column!]" ], "limit": [ @@ -51549,19 +51541,19 @@ export default { 40 ], "order_by": [ - 2691, + 2690, "[match_region_veto_picks_order_by!]" ], "where": [ - 2682 + 2681 ] } ], "region_veto_picks_aggregate": [ - 2676, + 2675, { "distinct_on": [ - 2693, + 2692, "[match_region_veto_picks_select_column!]" ], "limit": [ @@ -51571,11 +51563,11 @@ export default { 40 ], "order_by": [ - 2691, + 2690, "[match_region_veto_picks_order_by!]" ], "where": [ - 2682 + 2681 ] } ], @@ -51583,16 +51575,16 @@ export default { 5 ], "scheduled_at": [ - 4499 + 4498 ], "server": [ - 4024 + 4023 ], "server_error": [ 80 ], "server_id": [ - 4999 + 4998 ], "server_plugin_runtime": [ 80 @@ -51607,16 +51599,16 @@ export default { 80 ], "started_at": [ - 4499 + 4498 ], "status": [ - 989 + 988 ], "streams": [ - 2699, + 2698, { "distinct_on": [ - 2727, + 2726, "[match_streams_select_column!]" ], "limit": [ @@ -51626,19 +51618,19 @@ export default { 40 ], "order_by": [ - 2724, + 2723, "[match_streams_order_by!]" ], "where": [ - 2711 + 2710 ] } ], "streams_aggregate": [ - 2700, + 2699, { "distinct_on": [ - 2727, + 2726, "[match_streams_select_column!]" ], "limit": [ @@ -51648,19 +51640,19 @@ export default { 40 ], "order_by": [ - 2724, + 2723, "[match_streams_order_by!]" ], "where": [ - 2711 + 2710 ] } ], "teams": [ - 4452, + 4451, { "distinct_on": [ - 4476, + 4475, "[teams_select_column!]" ], "limit": [ @@ -51670,19 +51662,19 @@ export default { 40 ], "order_by": [ - 4474, + 4473, "[teams_order_by!]" ], "where": [ - 4463 + 4462 ] } ], "tournament_brackets": [ - 4543, + 4542, { "distinct_on": [ - 4567, + 4566, "[tournament_brackets_select_column!]" ], "limit": [ @@ -51692,19 +51684,19 @@ export default { 40 ], "order_by": [ - 4565, + 4564, "[tournament_brackets_order_by!]" ], "where": [ - 4554 + 4553 ] } ], "tournament_brackets_aggregate": [ - 4544, + 4543, { "distinct_on": [ - 4567, + 4566, "[tournament_brackets_select_column!]" ], "limit": [ @@ -51714,11 +51706,11 @@ export default { 40 ], "order_by": [ - 4565, + 4564, "[tournament_brackets_order_by!]" ], "where": [ - 4554 + 4553 ] } ], @@ -51726,10 +51718,10 @@ export default { 80 ], "winner": [ - 2447 + 2446 ], "winning_lineup_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -51737,10 +51729,10 @@ export default { }, "matches_aggregate": { "aggregate": [ - 2771 + 2770 ], "nodes": [ - 2767 + 2766 ], "__typename": [ 80 @@ -51748,7 +51740,7 @@ export default { }, "matches_aggregate_bool_exp": { "count": [ - 2770 + 2769 ], "__typename": [ 80 @@ -51756,13 +51748,13 @@ export default { }, "matches_aggregate_bool_exp_count": { "arguments": [ - 2789 + 2788 ], "distinct": [ 5 ], "filter": [ - 2776 + 2775 ], "predicate": [ 41 @@ -51773,13 +51765,13 @@ export default { }, "matches_aggregate_fields": { "avg": [ - 2774 + 2773 ], "count": [ 40, { "columns": [ - 2789, + 2788, "[matches_select_column!]" ], "distinct": [ @@ -51787,6 +51779,44 @@ export default { ] } ], + "max": [ + 2779 + ], + "min": [ + 2781 + ], + "stddev": [ + 2790 + ], + "stddev_pop": [ + 2792 + ], + "stddev_samp": [ + 2794 + ], + "sum": [ + 2798 + ], + "var_pop": [ + 2802 + ], + "var_samp": [ + 2804 + ], + "variance": [ + 2806 + ], + "__typename": [ + 80 + ] + }, + "matches_aggregate_order_by": { + "avg": [ + 2774 + ], + "count": [ + 2951 + ], "max": [ 2780 ], @@ -51818,50 +51848,12 @@ export default { 80 ] }, - "matches_aggregate_order_by": { - "avg": [ - 2775 - ], - "count": [ - 2952 - ], - "max": [ - 2781 - ], - "min": [ - 2783 - ], - "stddev": [ - 2792 - ], - "stddev_pop": [ - 2794 - ], - "stddev_samp": [ - 2796 - ], - "sum": [ - 2800 - ], - "var_pop": [ - 2804 - ], - "var_samp": [ - 2806 - ], - "variance": [ - 2808 - ], - "__typename": [ - 80 - ] - }, "matches_arr_rel_insert_input": { "data": [ - 2779 + 2778 ], "on_conflict": [ - 2786 + 2785 ], "__typename": [ 80 @@ -51883,7 +51875,7 @@ export default { }, "matches_avg_order_by": { "organizer_steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -51891,13 +51883,13 @@ export default { }, "matches_bool_exp": { "_and": [ - 2776 + 2775 ], "_not": [ - 2776 + 2775 ], "_or": [ - 2776 + 2775 ], "can_assign_server": [ 6 @@ -51924,13 +51916,13 @@ export default { 6 ], "cancels_at": [ - 4500 + 4499 ], "clutches": [ - 5188 + 5187 ], "clutches_aggregate": [ - 5181 + 5180 ], "connection_link": [ 82 @@ -51939,46 +51931,46 @@ export default { 82 ], "created_at": [ - 4500 + 4499 ], "current_match_map_id": [ - 5001 + 5000 ], "demos": [ - 2501 + 2500 ], "demos_aggregate": [ - 2491 + 2490 ], "draft_games": [ - 475 + 474 ], "draft_games_aggregate": [ - 466 + 465 ], "e_match_status": [ - 987 + 986 ], "e_region": [ - 4001 + 4000 ], "effective_at": [ - 4500 + 4499 ], "elo_changes": [ - 5395 + 5394 ], "elo_changes_aggregate": [ - 5378 + 5377 ], "ended_at": [ - 4500 + 4499 ], "external_id": [ 82 ], "id": [ - 5001 + 5000 ], "invite_code": [ 82 @@ -52011,40 +52003,40 @@ export default { 82 ], "lineup_1": [ - 2456 + 2455 ], "lineup_1_id": [ - 5001 + 5000 ], "lineup_2": [ - 2456 + 2455 ], "lineup_2_id": [ - 5001 + 5000 ], "lineup_counts": [ - 1822 + 1821 ], "map_veto_picking_lineup_id": [ - 5001 + 5000 ], "map_veto_picks": [ - 2588 + 2587 ], "map_veto_picks_aggregate": [ - 2583 + 2582 ], "map_veto_type": [ 82 ], "match_maps": [ - 2614 + 2613 ], "match_maps_aggregate": [ - 2607 + 2606 ], "match_options_id": [ - 5001 + 5000 ], "max_players_per_lineup": [ 41 @@ -52053,91 +52045,91 @@ export default { 41 ], "opening_duels": [ - 5316 + 5315 ], "opening_duels_aggregate": [ - 5309 + 5308 ], "options": [ - 2651 + 2650 ], "organizer": [ - 3914 + 3913 ], "organizer_steam_id": [ - 260 + 259 ], "password": [ 82 ], "player_assists": [ - 3101 + 3100 ], "player_assists_aggregate": [ - 3092 + 3091 ], "player_damages": [ - 3162 + 3161 ], "player_damages_aggregate": [ - 3155 + 3154 ], "player_flashes": [ - 3273 + 3272 ], "player_flashes_aggregate": [ - 3264 + 3263 ], "player_kills": [ - 3318 + 3317 ], "player_kills_aggregate": [ - 3309 + 3308 ], "player_objectives": [ - 3517 + 3516 ], "player_objectives_aggregate": [ - 3510 + 3509 ], "player_unused_utilities": [ - 3804 + 3803 ], "player_unused_utilities_aggregate": [ - 3797 + 3796 ], "player_utility": [ - 3845 + 3844 ], "player_utility_aggregate": [ - 3838 + 3837 ], "region": [ 82 ], "region_veto_picking_lineup_id": [ - 5001 + 5000 ], "region_veto_picks": [ - 2682 + 2681 ], "region_veto_picks_aggregate": [ - 2677 + 2676 ], "requested_organizer": [ 6 ], "scheduled_at": [ - 4500 + 4499 ], "server": [ - 4035 + 4034 ], "server_error": [ 82 ], "server_id": [ - 5001 + 5000 ], "server_plugin_runtime": [ 82 @@ -52152,34 +52144,34 @@ export default { 82 ], "started_at": [ - 4500 + 4499 ], "status": [ - 990 + 989 ], "streams": [ - 2711 + 2710 ], "streams_aggregate": [ - 2701 + 2700 ], "teams": [ - 4463 + 4462 ], "tournament_brackets": [ - 4554 + 4553 ], "tournament_brackets_aggregate": [ - 4545 + 4544 ], "tv_connection_string": [ 82 ], "winner": [ - 2456 + 2455 ], "winning_lineup_id": [ - 5001 + 5000 ], "__typename": [ 80 @@ -52188,7 +52180,7 @@ export default { "matches_constraint": {}, "matches_inc_input": { "organizer_steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -52196,136 +52188,136 @@ export default { }, "matches_insert_input": { "cancels_at": [ - 4499 + 4498 ], "clutches": [ - 5185 + 5184 ], "created_at": [ - 4499 + 4498 ], "demos": [ - 2498 + 2497 ], "draft_games": [ - 472 + 471 ], "e_match_status": [ - 995 + 994 ], "e_region": [ - 4007 + 4006 ], "elo_changes": [ - 5392 + 5391 ], "ended_at": [ - 4499 + 4498 ], "external_id": [ 80 ], "id": [ - 4999 + 4998 ], "label": [ 80 ], "lineup_1": [ - 2465 + 2464 ], "lineup_1_id": [ - 4999 + 4998 ], "lineup_2": [ - 2465 + 2464 ], "lineup_2_id": [ - 4999 + 4998 ], "map_veto_picks": [ - 2587 + 2586 ], "match_maps": [ - 2611 + 2610 ], "match_options_id": [ - 4999 + 4998 ], "opening_duels": [ - 5313 + 5312 ], "options": [ - 2658 + 2657 ], "organizer": [ - 3921 + 3920 ], "organizer_steam_id": [ - 258 + 257 ], "password": [ 80 ], "player_assists": [ - 3098 + 3097 ], "player_damages": [ - 3159 + 3158 ], "player_flashes": [ - 3270 + 3269 ], "player_kills": [ - 3315 + 3314 ], "player_objectives": [ - 3514 + 3513 ], "player_unused_utilities": [ - 3801 + 3800 ], "player_utility": [ - 3842 + 3841 ], "region": [ 80 ], "region_veto_picks": [ - 2681 + 2680 ], "scheduled_at": [ - 4499 + 4498 ], "server": [ - 4044 + 4043 ], "server_error": [ 80 ], "server_id": [ - 4999 + 4998 ], "source": [ 80 ], "started_at": [ - 4499 + 4498 ], "status": [ - 989 + 988 ], "streams": [ - 2708 + 2707 ], "tournament_brackets": [ - 4551 + 4550 ], "winner": [ - 2465 + 2464 ], "winning_lineup_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -52333,7 +52325,7 @@ export default { }, "matches_max_fields": { "cancels_at": [ - 4499 + 4498 ], "connection_link": [ 80 @@ -52342,22 +52334,22 @@ export default { 80 ], "created_at": [ - 4499 + 4498 ], "current_match_map_id": [ - 4999 + 4998 ], "effective_at": [ - 4499 + 4498 ], "ended_at": [ - 4499 + 4498 ], "external_id": [ 80 ], "id": [ - 4999 + 4998 ], "invite_code": [ 80 @@ -52366,19 +52358,19 @@ export default { 80 ], "lineup_1_id": [ - 4999 + 4998 ], "lineup_2_id": [ - 4999 + 4998 ], "map_veto_picking_lineup_id": [ - 4999 + 4998 ], "map_veto_type": [ 80 ], "match_options_id": [ - 4999 + 4998 ], "max_players_per_lineup": [ 40 @@ -52387,7 +52379,7 @@ export default { 40 ], "organizer_steam_id": [ - 258 + 257 ], "password": [ 80 @@ -52396,16 +52388,16 @@ export default { 80 ], "region_veto_picking_lineup_id": [ - 4999 + 4998 ], "scheduled_at": [ - 4499 + 4498 ], "server_error": [ 80 ], "server_id": [ - 4999 + 4998 ], "server_plugin_runtime": [ 80 @@ -52420,13 +52412,13 @@ export default { 80 ], "started_at": [ - 4499 + 4498 ], "tv_connection_string": [ 80 ], "winning_lineup_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -52434,61 +52426,61 @@ export default { }, "matches_max_order_by": { "cancels_at": [ - 2952 + 2951 ], "created_at": [ - 2952 + 2951 ], "effective_at": [ - 2952 + 2951 ], "ended_at": [ - 2952 + 2951 ], "external_id": [ - 2952 + 2951 ], "id": [ - 2952 + 2951 ], "label": [ - 2952 + 2951 ], "lineup_1_id": [ - 2952 + 2951 ], "lineup_2_id": [ - 2952 + 2951 ], "match_options_id": [ - 2952 + 2951 ], "organizer_steam_id": [ - 2952 + 2951 ], "password": [ - 2952 + 2951 ], "region": [ - 2952 + 2951 ], "scheduled_at": [ - 2952 + 2951 ], "server_error": [ - 2952 + 2951 ], "server_id": [ - 2952 + 2951 ], "source": [ - 2952 + 2951 ], "started_at": [ - 2952 + 2951 ], "winning_lineup_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -52496,7 +52488,7 @@ export default { }, "matches_min_fields": { "cancels_at": [ - 4499 + 4498 ], "connection_link": [ 80 @@ -52505,22 +52497,22 @@ export default { 80 ], "created_at": [ - 4499 + 4498 ], "current_match_map_id": [ - 4999 + 4998 ], "effective_at": [ - 4499 + 4498 ], "ended_at": [ - 4499 + 4498 ], "external_id": [ 80 ], "id": [ - 4999 + 4998 ], "invite_code": [ 80 @@ -52529,19 +52521,19 @@ export default { 80 ], "lineup_1_id": [ - 4999 + 4998 ], "lineup_2_id": [ - 4999 + 4998 ], "map_veto_picking_lineup_id": [ - 4999 + 4998 ], "map_veto_type": [ 80 ], "match_options_id": [ - 4999 + 4998 ], "max_players_per_lineup": [ 40 @@ -52550,7 +52542,7 @@ export default { 40 ], "organizer_steam_id": [ - 258 + 257 ], "password": [ 80 @@ -52559,16 +52551,16 @@ export default { 80 ], "region_veto_picking_lineup_id": [ - 4999 + 4998 ], "scheduled_at": [ - 4499 + 4498 ], "server_error": [ 80 ], "server_id": [ - 4999 + 4998 ], "server_plugin_runtime": [ 80 @@ -52583,13 +52575,13 @@ export default { 80 ], "started_at": [ - 4499 + 4498 ], "tv_connection_string": [ 80 ], "winning_lineup_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -52597,61 +52589,61 @@ export default { }, "matches_min_order_by": { "cancels_at": [ - 2952 + 2951 ], "created_at": [ - 2952 + 2951 ], "effective_at": [ - 2952 + 2951 ], "ended_at": [ - 2952 + 2951 ], "external_id": [ - 2952 + 2951 ], "id": [ - 2952 + 2951 ], "label": [ - 2952 + 2951 ], "lineup_1_id": [ - 2952 + 2951 ], "lineup_2_id": [ - 2952 + 2951 ], "match_options_id": [ - 2952 + 2951 ], "organizer_steam_id": [ - 2952 + 2951 ], "password": [ - 2952 + 2951 ], "region": [ - 2952 + 2951 ], "scheduled_at": [ - 2952 + 2951 ], "server_error": [ - 2952 + 2951 ], "server_id": [ - 2952 + 2951 ], "source": [ - 2952 + 2951 ], "started_at": [ - 2952 + 2951 ], "winning_lineup_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -52662,7 +52654,7 @@ export default { 40 ], "returning": [ - 2767 + 2766 ], "__typename": [ 80 @@ -52670,10 +52662,10 @@ export default { }, "matches_obj_rel_insert_input": { "data": [ - 2779 + 2778 ], "on_conflict": [ - 2786 + 2785 ], "__typename": [ 80 @@ -52681,13 +52673,13 @@ export default { }, "matches_on_conflict": { "constraint": [ - 2777 + 2776 ], "update_columns": [ - 2801 + 2800 ], "where": [ - 2776 + 2775 ], "__typename": [ 80 @@ -52695,235 +52687,235 @@ export default { }, "matches_order_by": { "can_assign_server": [ - 2952 + 2951 ], "can_cancel": [ - 2952 + 2951 ], "can_check_in": [ - 2952 + 2951 ], "can_reassign_winner": [ - 2952 + 2951 ], "can_schedule": [ - 2952 + 2951 ], "can_start": [ - 2952 + 2951 ], "can_stream_live": [ - 2952 + 2951 ], "can_stream_tv": [ - 2952 + 2951 ], "cancels_at": [ - 2952 + 2951 ], "clutches_aggregate": [ - 5184 + 5183 ], "connection_link": [ - 2952 + 2951 ], "connection_string": [ - 2952 + 2951 ], "created_at": [ - 2952 + 2951 ], "current_match_map_id": [ - 2952 + 2951 ], "demos_aggregate": [ - 2496 + 2495 ], "draft_games_aggregate": [ - 471 + 470 ], "e_match_status": [ - 997 + 996 ], "e_region": [ - 4009 + 4008 ], "effective_at": [ - 2952 + 2951 ], "elo_changes_aggregate": [ - 5391 + 5390 ], "ended_at": [ - 2952 + 2951 ], "external_id": [ - 2952 + 2951 ], "id": [ - 2952 + 2951 ], "invite_code": [ - 2952 + 2951 ], "is_captain": [ - 2952 + 2951 ], "is_coach": [ - 2952 + 2951 ], "is_friend_in_match_lineup": [ - 2952 + 2951 ], "is_in_lineup": [ - 2952 + 2951 ], "is_match_server_available": [ - 2952 + 2951 ], "is_organizer": [ - 2952 + 2951 ], "is_server_online": [ - 2952 + 2951 ], "is_tournament_match": [ - 2952 + 2951 ], "label": [ - 2952 + 2951 ], "lineup_1": [ - 2467 + 2466 ], "lineup_1_id": [ - 2952 + 2951 ], "lineup_2": [ - 2467 + 2466 ], "lineup_2_id": [ - 2952 + 2951 ], "lineup_counts": [ - 2952 + 2951 ], "map_veto_picking_lineup_id": [ - 2952 + 2951 ], "map_veto_picks_aggregate": [ - 2586 + 2585 ], "map_veto_type": [ - 2952 + 2951 ], "match_maps_aggregate": [ - 2610 + 2609 ], "match_options_id": [ - 2952 + 2951 ], "max_players_per_lineup": [ - 2952 + 2951 ], "min_players_per_lineup": [ - 2952 + 2951 ], "opening_duels_aggregate": [ - 5312 + 5311 ], "options": [ - 2660 + 2659 ], "organizer": [ - 3923 + 3922 ], "organizer_steam_id": [ - 2952 + 2951 ], "password": [ - 2952 + 2951 ], "player_assists_aggregate": [ - 3097 + 3096 ], "player_damages_aggregate": [ - 3158 + 3157 ], "player_flashes_aggregate": [ - 3269 + 3268 ], "player_kills_aggregate": [ - 3314 + 3313 ], "player_objectives_aggregate": [ - 3513 + 3512 ], "player_unused_utilities_aggregate": [ - 3800 + 3799 ], "player_utility_aggregate": [ - 3841 + 3840 ], "region": [ - 2952 + 2951 ], "region_veto_picking_lineup_id": [ - 2952 + 2951 ], "region_veto_picks_aggregate": [ - 2680 + 2679 ], "requested_organizer": [ - 2952 + 2951 ], "scheduled_at": [ - 2952 + 2951 ], "server": [ - 4046 + 4045 ], "server_error": [ - 2952 + 2951 ], "server_id": [ - 2952 + 2951 ], "server_plugin_runtime": [ - 2952 + 2951 ], "server_region": [ - 2952 + 2951 ], "server_type": [ - 2952 + 2951 ], "source": [ - 2952 + 2951 ], "started_at": [ - 2952 + 2951 ], "status": [ - 2952 + 2951 ], "streams_aggregate": [ - 2706 + 2705 ], "teams_aggregate": [ - 4459 + 4458 ], "tournament_brackets_aggregate": [ - 4550 + 4549 ], "tv_connection_string": [ - 2952 + 2951 ], "winner": [ - 2467 + 2466 ], "winning_lineup_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -52931,7 +52923,7 @@ export default { }, "matches_pk_columns_input": { "id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -52940,34 +52932,34 @@ export default { "matches_select_column": {}, "matches_set_input": { "cancels_at": [ - 4499 + 4498 ], "created_at": [ - 4499 + 4498 ], "ended_at": [ - 4499 + 4498 ], "external_id": [ 80 ], "id": [ - 4999 + 4998 ], "label": [ 80 ], "lineup_1_id": [ - 4999 + 4998 ], "lineup_2_id": [ - 4999 + 4998 ], "match_options_id": [ - 4999 + 4998 ], "organizer_steam_id": [ - 258 + 257 ], "password": [ 80 @@ -52976,25 +52968,25 @@ export default { 80 ], "scheduled_at": [ - 4499 + 4498 ], "server_error": [ 80 ], "server_id": [ - 4999 + 4998 ], "source": [ 80 ], "started_at": [ - 4499 + 4498 ], "status": [ - 989 + 988 ], "winning_lineup_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -53016,7 +53008,7 @@ export default { }, "matches_stddev_order_by": { "organizer_steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -53038,7 +53030,7 @@ export default { }, "matches_stddev_pop_order_by": { "organizer_steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -53060,7 +53052,7 @@ export default { }, "matches_stddev_samp_order_by": { "organizer_steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -53068,10 +53060,10 @@ export default { }, "matches_stream_cursor_input": { "initial_value": [ - 2798 + 2797 ], "ordering": [ - 314 + 313 ], "__typename": [ 80 @@ -53079,37 +53071,37 @@ export default { }, "matches_stream_cursor_value_input": { "cancels_at": [ - 4499 + 4498 ], "created_at": [ - 4499 + 4498 ], "effective_at": [ - 4499 + 4498 ], "ended_at": [ - 4499 + 4498 ], "external_id": [ 80 ], "id": [ - 4999 + 4998 ], "label": [ 80 ], "lineup_1_id": [ - 4999 + 4998 ], "lineup_2_id": [ - 4999 + 4998 ], "match_options_id": [ - 4999 + 4998 ], "organizer_steam_id": [ - 258 + 257 ], "password": [ 80 @@ -53118,25 +53110,25 @@ export default { 80 ], "scheduled_at": [ - 4499 + 4498 ], "server_error": [ 80 ], "server_id": [ - 4999 + 4998 ], "source": [ 80 ], "started_at": [ - 4499 + 4498 ], "status": [ - 989 + 988 ], "winning_lineup_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -53150,7 +53142,7 @@ export default { 40 ], "organizer_steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -53158,7 +53150,7 @@ export default { }, "matches_sum_order_by": { "organizer_steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -53167,13 +53159,13 @@ export default { "matches_update_column": {}, "matches_updates": { "_inc": [ - 2778 + 2777 ], "_set": [ - 2790 + 2789 ], "where": [ - 2776 + 2775 ], "__typename": [ 80 @@ -53195,7 +53187,7 @@ export default { }, "matches_var_pop_order_by": { "organizer_steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -53217,7 +53209,7 @@ export default { }, "matches_var_samp_order_by": { "organizer_steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -53239,7 +53231,7 @@ export default { }, "matches_variance_order_by": { "organizer_steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -53258,10 +53250,10 @@ export default { }, "migration_hashes_hashes_aggregate": { "aggregate": [ - 2811 + 2810 ], "nodes": [ - 2809 + 2808 ], "__typename": [ 80 @@ -53272,7 +53264,7 @@ export default { 40, { "columns": [ - 2821, + 2820, "[migration_hashes_hashes_select_column!]" ], "distinct": [ @@ -53281,10 +53273,10 @@ export default { } ], "max": [ - 2815 + 2814 ], "min": [ - 2816 + 2815 ], "__typename": [ 80 @@ -53292,13 +53284,13 @@ export default { }, "migration_hashes_hashes_bool_exp": { "_and": [ - 2812 + 2811 ], "_not": [ - 2812 + 2811 ], "_or": [ - 2812 + 2811 ], "hash": [ 82 @@ -53349,7 +53341,7 @@ export default { 40 ], "returning": [ - 2809 + 2808 ], "__typename": [ 80 @@ -53357,13 +53349,13 @@ export default { }, "migration_hashes_hashes_on_conflict": { "constraint": [ - 2813 + 2812 ], "update_columns": [ - 2825 + 2824 ], "where": [ - 2812 + 2811 ], "__typename": [ 80 @@ -53371,10 +53363,10 @@ export default { }, "migration_hashes_hashes_order_by": { "hash": [ - 2952 + 2951 ], "name": [ - 2952 + 2951 ], "__typename": [ 80 @@ -53402,10 +53394,10 @@ export default { }, "migration_hashes_hashes_stream_cursor_input": { "initial_value": [ - 2824 + 2823 ], "ordering": [ - 314 + 313 ], "__typename": [ 80 @@ -53425,10 +53417,10 @@ export default { "migration_hashes_hashes_update_column": {}, "migration_hashes_hashes_updates": { "_set": [ - 2822 + 2821 ], "where": [ - 2812 + 2811 ], "__typename": [ 80 @@ -53442,7 +53434,7 @@ export default { 80 ], "created_at": [ - 4499 + 4498 ], "custom_avatar_url": [ 80 @@ -53454,7 +53446,7 @@ export default { 80 ], "elo": [ - 1823, + 1822, { "path": [ 80 @@ -53474,25 +53466,25 @@ export default { 40 ], "faceit_updated_at": [ - 4499 + 4498 ], "faceit_url": [ 80 ], "friend_steam_id": [ - 258 + 257 ], "game_ban_count": [ 40 ], "invited_by_steam_id": [ - 258 + 257 ], "language": [ 80 ], "last_presence_state": [ - 1823, + 1822, { "path": [ 80 @@ -53500,10 +53492,10 @@ export default { } ], "last_read_news_at": [ - 4499 + 4498 ], "last_sign_in_at": [ - 4499 + 4498 ], "name": [ 80 @@ -53512,16 +53504,16 @@ export default { 5 ], "player": [ - 3910 + 3909 ], "premier_rank": [ 40 ], "premier_rank_updated_at": [ - 4499 + 4498 ], "presence_updated_at": [ - 4499 + 4498 ], "profile_url": [ 80 @@ -53539,10 +53531,10 @@ export default { 80 ], "steam_bans_checked_at": [ - 4499 + 4498 ], "steam_id": [ - 258 + 257 ], "vac_ban_count": [ 40 @@ -53556,10 +53548,10 @@ export default { }, "my_friends_aggregate": { "aggregate": [ - 2833 + 2832 ], "nodes": [ - 2827 + 2826 ], "__typename": [ 80 @@ -53567,13 +53559,13 @@ export default { }, "my_friends_aggregate_bool_exp": { "bool_and": [ - 2830 + 2829 ], "bool_or": [ - 2831 + 2830 ], "count": [ - 2832 + 2831 ], "__typename": [ 80 @@ -53581,13 +53573,13 @@ export default { }, "my_friends_aggregate_bool_exp_bool_and": { "arguments": [ - 2853 + 2852 ], "distinct": [ 5 ], "filter": [ - 2839 + 2838 ], "predicate": [ 6 @@ -53598,13 +53590,13 @@ export default { }, "my_friends_aggregate_bool_exp_bool_or": { "arguments": [ - 2854 + 2853 ], "distinct": [ 5 ], "filter": [ - 2839 + 2838 ], "predicate": [ 6 @@ -53615,13 +53607,13 @@ export default { }, "my_friends_aggregate_bool_exp_count": { "arguments": [ - 2852 + 2851 ], "distinct": [ 5 ], "filter": [ - 2839 + 2838 ], "predicate": [ 41 @@ -53632,13 +53624,13 @@ export default { }, "my_friends_aggregate_fields": { "avg": [ - 2837 + 2836 ], "count": [ 40, { "columns": [ - 2852, + 2851, "[my_friends_select_column!]" ], "distinct": [ @@ -53647,31 +53639,31 @@ export default { } ], "max": [ - 2845 + 2844 ], "min": [ - 2847 + 2846 ], "stddev": [ - 2856 + 2855 ], "stddev_pop": [ - 2858 + 2857 ], "stddev_samp": [ - 2860 + 2859 ], "sum": [ - 2864 + 2863 ], "var_pop": [ - 2867 + 2866 ], "var_samp": [ - 2869 + 2868 ], "variance": [ - 2871 + 2870 ], "__typename": [ 80 @@ -53679,37 +53671,37 @@ export default { }, "my_friends_aggregate_order_by": { "avg": [ - 2838 + 2837 ], "count": [ - 2952 + 2951 ], "max": [ - 2846 + 2845 ], "min": [ - 2848 + 2847 ], "stddev": [ - 2857 + 2856 ], "stddev_pop": [ - 2859 + 2858 ], "stddev_samp": [ - 2861 + 2860 ], "sum": [ - 2865 + 2864 ], "var_pop": [ - 2868 + 2867 ], "var_samp": [ - 2870 + 2869 ], "variance": [ - 2872 + 2871 ], "__typename": [ 80 @@ -53717,10 +53709,10 @@ export default { }, "my_friends_append_input": { "elo": [ - 1823 + 1822 ], "last_presence_state": [ - 1823 + 1822 ], "__typename": [ 80 @@ -53728,7 +53720,7 @@ export default { }, "my_friends_arr_rel_insert_input": { "data": [ - 2844 + 2843 ], "__typename": [ 80 @@ -53768,31 +53760,31 @@ export default { }, "my_friends_avg_order_by": { "days_since_last_ban": [ - 2952 + 2951 ], "faceit_elo": [ - 2952 + 2951 ], "faceit_skill_level": [ - 2952 + 2951 ], "friend_steam_id": [ - 2952 + 2951 ], "game_ban_count": [ - 2952 + 2951 ], "invited_by_steam_id": [ - 2952 + 2951 ], "premier_rank": [ - 2952 + 2951 ], "steam_id": [ - 2952 + 2951 ], "vac_ban_count": [ - 2952 + 2951 ], "__typename": [ 80 @@ -53800,13 +53792,13 @@ export default { }, "my_friends_bool_exp": { "_and": [ - 2839 + 2838 ], "_not": [ - 2839 + 2838 ], "_or": [ - 2839 + 2838 ], "avatar_url": [ 82 @@ -53815,7 +53807,7 @@ export default { 82 ], "created_at": [ - 4500 + 4499 ], "custom_avatar_url": [ 82 @@ -53827,7 +53819,7 @@ export default { 82 ], "elo": [ - 1825 + 1824 ], "faceit_elo": [ 41 @@ -53842,31 +53834,31 @@ export default { 41 ], "faceit_updated_at": [ - 4500 + 4499 ], "faceit_url": [ 82 ], "friend_steam_id": [ - 260 + 259 ], "game_ban_count": [ 41 ], "invited_by_steam_id": [ - 260 + 259 ], "language": [ 82 ], "last_presence_state": [ - 1825 + 1824 ], "last_read_news_at": [ - 4500 + 4499 ], "last_sign_in_at": [ - 4500 + 4499 ], "name": [ 82 @@ -53875,16 +53867,16 @@ export default { 6 ], "player": [ - 3914 + 3913 ], "premier_rank": [ 41 ], "premier_rank_updated_at": [ - 4500 + 4499 ], "presence_updated_at": [ - 4500 + 4499 ], "profile_url": [ 82 @@ -53902,10 +53894,10 @@ export default { 82 ], "steam_bans_checked_at": [ - 4500 + 4499 ], "steam_id": [ - 260 + 259 ], "vac_ban_count": [ 41 @@ -53961,19 +53953,19 @@ export default { 40 ], "friend_steam_id": [ - 258 + 257 ], "game_ban_count": [ 40 ], "invited_by_steam_id": [ - 258 + 257 ], "premier_rank": [ 40 ], "steam_id": [ - 258 + 257 ], "vac_ban_count": [ 40 @@ -53990,7 +53982,7 @@ export default { 80 ], "created_at": [ - 4499 + 4498 ], "custom_avatar_url": [ 80 @@ -54002,7 +53994,7 @@ export default { 80 ], "elo": [ - 1823 + 1822 ], "faceit_elo": [ 40 @@ -54017,31 +54009,31 @@ export default { 40 ], "faceit_updated_at": [ - 4499 + 4498 ], "faceit_url": [ 80 ], "friend_steam_id": [ - 258 + 257 ], "game_ban_count": [ 40 ], "invited_by_steam_id": [ - 258 + 257 ], "language": [ 80 ], "last_presence_state": [ - 1823 + 1822 ], "last_read_news_at": [ - 4499 + 4498 ], "last_sign_in_at": [ - 4499 + 4498 ], "name": [ 80 @@ -54050,16 +54042,16 @@ export default { 5 ], "player": [ - 3921 + 3920 ], "premier_rank": [ 40 ], "premier_rank_updated_at": [ - 4499 + 4498 ], "presence_updated_at": [ - 4499 + 4498 ], "profile_url": [ 80 @@ -54077,10 +54069,10 @@ export default { 80 ], "steam_bans_checked_at": [ - 4499 + 4498 ], "steam_id": [ - 258 + 257 ], "vac_ban_count": [ 40 @@ -54100,7 +54092,7 @@ export default { 80 ], "created_at": [ - 4499 + 4498 ], "custom_avatar_url": [ 80 @@ -54124,28 +54116,28 @@ export default { 40 ], "faceit_updated_at": [ - 4499 + 4498 ], "faceit_url": [ 80 ], "friend_steam_id": [ - 258 + 257 ], "game_ban_count": [ 40 ], "invited_by_steam_id": [ - 258 + 257 ], "language": [ 80 ], "last_read_news_at": [ - 4499 + 4498 ], "last_sign_in_at": [ - 4499 + 4498 ], "name": [ 80 @@ -54154,10 +54146,10 @@ export default { 40 ], "premier_rank_updated_at": [ - 4499 + 4498 ], "presence_updated_at": [ - 4499 + 4498 ], "profile_url": [ 80 @@ -54172,10 +54164,10 @@ export default { 80 ], "steam_bans_checked_at": [ - 4499 + 4498 ], "steam_id": [ - 258 + 257 ], "vac_ban_count": [ 40 @@ -54186,91 +54178,91 @@ export default { }, "my_friends_max_order_by": { "avatar_url": [ - 2952 + 2951 ], "country": [ - 2952 + 2951 ], "created_at": [ - 2952 + 2951 ], "custom_avatar_url": [ - 2952 + 2951 ], "days_since_last_ban": [ - 2952 + 2951 ], "discord_id": [ - 2952 + 2951 ], "faceit_elo": [ - 2952 + 2951 ], "faceit_nickname": [ - 2952 + 2951 ], "faceit_player_id": [ - 2952 + 2951 ], "faceit_skill_level": [ - 2952 + 2951 ], "faceit_updated_at": [ - 2952 + 2951 ], "faceit_url": [ - 2952 + 2951 ], "friend_steam_id": [ - 2952 + 2951 ], "game_ban_count": [ - 2952 + 2951 ], "invited_by_steam_id": [ - 2952 + 2951 ], "language": [ - 2952 + 2951 ], "last_read_news_at": [ - 2952 + 2951 ], "last_sign_in_at": [ - 2952 + 2951 ], "name": [ - 2952 + 2951 ], "premier_rank": [ - 2952 + 2951 ], "premier_rank_updated_at": [ - 2952 + 2951 ], "presence_updated_at": [ - 2952 + 2951 ], "profile_url": [ - 2952 + 2951 ], "role": [ - 2952 + 2951 ], "roster_image_url": [ - 2952 + 2951 ], "status": [ - 2952 + 2951 ], "steam_bans_checked_at": [ - 2952 + 2951 ], "steam_id": [ - 2952 + 2951 ], "vac_ban_count": [ - 2952 + 2951 ], "__typename": [ 80 @@ -54284,7 +54276,7 @@ export default { 80 ], "created_at": [ - 4499 + 4498 ], "custom_avatar_url": [ 80 @@ -54308,28 +54300,28 @@ export default { 40 ], "faceit_updated_at": [ - 4499 + 4498 ], "faceit_url": [ 80 ], "friend_steam_id": [ - 258 + 257 ], "game_ban_count": [ 40 ], "invited_by_steam_id": [ - 258 + 257 ], "language": [ 80 ], "last_read_news_at": [ - 4499 + 4498 ], "last_sign_in_at": [ - 4499 + 4498 ], "name": [ 80 @@ -54338,10 +54330,10 @@ export default { 40 ], "premier_rank_updated_at": [ - 4499 + 4498 ], "presence_updated_at": [ - 4499 + 4498 ], "profile_url": [ 80 @@ -54356,10 +54348,10 @@ export default { 80 ], "steam_bans_checked_at": [ - 4499 + 4498 ], "steam_id": [ - 258 + 257 ], "vac_ban_count": [ 40 @@ -54370,91 +54362,91 @@ export default { }, "my_friends_min_order_by": { "avatar_url": [ - 2952 + 2951 ], "country": [ - 2952 + 2951 ], "created_at": [ - 2952 + 2951 ], "custom_avatar_url": [ - 2952 + 2951 ], "days_since_last_ban": [ - 2952 + 2951 ], "discord_id": [ - 2952 + 2951 ], "faceit_elo": [ - 2952 + 2951 ], "faceit_nickname": [ - 2952 + 2951 ], "faceit_player_id": [ - 2952 + 2951 ], "faceit_skill_level": [ - 2952 + 2951 ], "faceit_updated_at": [ - 2952 + 2951 ], "faceit_url": [ - 2952 + 2951 ], "friend_steam_id": [ - 2952 + 2951 ], "game_ban_count": [ - 2952 + 2951 ], "invited_by_steam_id": [ - 2952 + 2951 ], "language": [ - 2952 + 2951 ], "last_read_news_at": [ - 2952 + 2951 ], "last_sign_in_at": [ - 2952 + 2951 ], "name": [ - 2952 + 2951 ], "premier_rank": [ - 2952 + 2951 ], "premier_rank_updated_at": [ - 2952 + 2951 ], "presence_updated_at": [ - 2952 + 2951 ], "profile_url": [ - 2952 + 2951 ], "role": [ - 2952 + 2951 ], "roster_image_url": [ - 2952 + 2951 ], "status": [ - 2952 + 2951 ], "steam_bans_checked_at": [ - 2952 + 2951 ], "steam_id": [ - 2952 + 2951 ], "vac_ban_count": [ - 2952 + 2951 ], "__typename": [ 80 @@ -54465,7 +54457,7 @@ export default { 40 ], "returning": [ - 2827 + 2826 ], "__typename": [ 80 @@ -54473,109 +54465,109 @@ export default { }, "my_friends_order_by": { "avatar_url": [ - 2952 + 2951 ], "country": [ - 2952 + 2951 ], "created_at": [ - 2952 + 2951 ], "custom_avatar_url": [ - 2952 + 2951 ], "days_since_last_ban": [ - 2952 + 2951 ], "discord_id": [ - 2952 + 2951 ], "elo": [ - 2952 + 2951 ], "faceit_elo": [ - 2952 + 2951 ], "faceit_nickname": [ - 2952 + 2951 ], "faceit_player_id": [ - 2952 + 2951 ], "faceit_skill_level": [ - 2952 + 2951 ], "faceit_updated_at": [ - 2952 + 2951 ], "faceit_url": [ - 2952 + 2951 ], "friend_steam_id": [ - 2952 + 2951 ], "game_ban_count": [ - 2952 + 2951 ], "invited_by_steam_id": [ - 2952 + 2951 ], "language": [ - 2952 + 2951 ], "last_presence_state": [ - 2952 + 2951 ], "last_read_news_at": [ - 2952 + 2951 ], "last_sign_in_at": [ - 2952 + 2951 ], "name": [ - 2952 + 2951 ], "name_registered": [ - 2952 + 2951 ], "player": [ - 3923 + 3922 ], "premier_rank": [ - 2952 + 2951 ], "premier_rank_updated_at": [ - 2952 + 2951 ], "presence_updated_at": [ - 2952 + 2951 ], "profile_url": [ - 2952 + 2951 ], "role": [ - 2952 + 2951 ], "roster_image_url": [ - 2952 + 2951 ], "show_match_ready_modal": [ - 2952 + 2951 ], "status": [ - 2952 + 2951 ], "steam_bans_checked_at": [ - 2952 + 2951 ], "steam_id": [ - 2952 + 2951 ], "vac_ban_count": [ - 2952 + 2951 ], "vac_banned": [ - 2952 + 2951 ], "__typename": [ 80 @@ -54583,10 +54575,10 @@ export default { }, "my_friends_prepend_input": { "elo": [ - 1823 + 1822 ], "last_presence_state": [ - 1823 + 1822 ], "__typename": [ 80 @@ -54603,7 +54595,7 @@ export default { 80 ], "created_at": [ - 4499 + 4498 ], "custom_avatar_url": [ 80 @@ -54615,7 +54607,7 @@ export default { 80 ], "elo": [ - 1823 + 1822 ], "faceit_elo": [ 40 @@ -54630,31 +54622,31 @@ export default { 40 ], "faceit_updated_at": [ - 4499 + 4498 ], "faceit_url": [ 80 ], "friend_steam_id": [ - 258 + 257 ], "game_ban_count": [ 40 ], "invited_by_steam_id": [ - 258 + 257 ], "language": [ 80 ], "last_presence_state": [ - 1823 + 1822 ], "last_read_news_at": [ - 4499 + 4498 ], "last_sign_in_at": [ - 4499 + 4498 ], "name": [ 80 @@ -54666,10 +54658,10 @@ export default { 40 ], "premier_rank_updated_at": [ - 4499 + 4498 ], "presence_updated_at": [ - 4499 + 4498 ], "profile_url": [ 80 @@ -54687,10 +54679,10 @@ export default { 80 ], "steam_bans_checked_at": [ - 4499 + 4498 ], "steam_id": [ - 258 + 257 ], "vac_ban_count": [ 40 @@ -54736,31 +54728,31 @@ export default { }, "my_friends_stddev_order_by": { "days_since_last_ban": [ - 2952 + 2951 ], "faceit_elo": [ - 2952 + 2951 ], "faceit_skill_level": [ - 2952 + 2951 ], "friend_steam_id": [ - 2952 + 2951 ], "game_ban_count": [ - 2952 + 2951 ], "invited_by_steam_id": [ - 2952 + 2951 ], "premier_rank": [ - 2952 + 2951 ], "steam_id": [ - 2952 + 2951 ], "vac_ban_count": [ - 2952 + 2951 ], "__typename": [ 80 @@ -54800,31 +54792,31 @@ export default { }, "my_friends_stddev_pop_order_by": { "days_since_last_ban": [ - 2952 + 2951 ], "faceit_elo": [ - 2952 + 2951 ], "faceit_skill_level": [ - 2952 + 2951 ], "friend_steam_id": [ - 2952 + 2951 ], "game_ban_count": [ - 2952 + 2951 ], "invited_by_steam_id": [ - 2952 + 2951 ], "premier_rank": [ - 2952 + 2951 ], "steam_id": [ - 2952 + 2951 ], "vac_ban_count": [ - 2952 + 2951 ], "__typename": [ 80 @@ -54864,31 +54856,31 @@ export default { }, "my_friends_stddev_samp_order_by": { "days_since_last_ban": [ - 2952 + 2951 ], "faceit_elo": [ - 2952 + 2951 ], "faceit_skill_level": [ - 2952 + 2951 ], "friend_steam_id": [ - 2952 + 2951 ], "game_ban_count": [ - 2952 + 2951 ], "invited_by_steam_id": [ - 2952 + 2951 ], "premier_rank": [ - 2952 + 2951 ], "steam_id": [ - 2952 + 2951 ], "vac_ban_count": [ - 2952 + 2951 ], "__typename": [ 80 @@ -54896,10 +54888,10 @@ export default { }, "my_friends_stream_cursor_input": { "initial_value": [ - 2863 + 2862 ], "ordering": [ - 314 + 313 ], "__typename": [ 80 @@ -54913,7 +54905,7 @@ export default { 80 ], "created_at": [ - 4499 + 4498 ], "custom_avatar_url": [ 80 @@ -54925,7 +54917,7 @@ export default { 80 ], "elo": [ - 1823 + 1822 ], "faceit_elo": [ 40 @@ -54940,31 +54932,31 @@ export default { 40 ], "faceit_updated_at": [ - 4499 + 4498 ], "faceit_url": [ 80 ], "friend_steam_id": [ - 258 + 257 ], "game_ban_count": [ 40 ], "invited_by_steam_id": [ - 258 + 257 ], "language": [ 80 ], "last_presence_state": [ - 1823 + 1822 ], "last_read_news_at": [ - 4499 + 4498 ], "last_sign_in_at": [ - 4499 + 4498 ], "name": [ 80 @@ -54976,10 +54968,10 @@ export default { 40 ], "premier_rank_updated_at": [ - 4499 + 4498 ], "presence_updated_at": [ - 4499 + 4498 ], "profile_url": [ 80 @@ -54997,10 +54989,10 @@ export default { 80 ], "steam_bans_checked_at": [ - 4499 + 4498 ], "steam_id": [ - 258 + 257 ], "vac_ban_count": [ 40 @@ -55023,19 +55015,19 @@ export default { 40 ], "friend_steam_id": [ - 258 + 257 ], "game_ban_count": [ 40 ], "invited_by_steam_id": [ - 258 + 257 ], "premier_rank": [ 40 ], "steam_id": [ - 258 + 257 ], "vac_ban_count": [ 40 @@ -55046,31 +55038,31 @@ export default { }, "my_friends_sum_order_by": { "days_since_last_ban": [ - 2952 + 2951 ], "faceit_elo": [ - 2952 + 2951 ], "faceit_skill_level": [ - 2952 + 2951 ], "friend_steam_id": [ - 2952 + 2951 ], "game_ban_count": [ - 2952 + 2951 ], "invited_by_steam_id": [ - 2952 + 2951 ], "premier_rank": [ - 2952 + 2951 ], "steam_id": [ - 2952 + 2951 ], "vac_ban_count": [ - 2952 + 2951 ], "__typename": [ 80 @@ -55078,28 +55070,28 @@ export default { }, "my_friends_updates": { "_append": [ - 2835 + 2834 ], "_delete_at_path": [ - 2840 + 2839 ], "_delete_elem": [ - 2841 + 2840 ], "_delete_key": [ - 2842 + 2841 ], "_inc": [ - 2843 + 2842 ], "_prepend": [ - 2851 + 2850 ], "_set": [ - 2855 + 2854 ], "where": [ - 2839 + 2838 ], "__typename": [ 80 @@ -55139,31 +55131,31 @@ export default { }, "my_friends_var_pop_order_by": { "days_since_last_ban": [ - 2952 + 2951 ], "faceit_elo": [ - 2952 + 2951 ], "faceit_skill_level": [ - 2952 + 2951 ], "friend_steam_id": [ - 2952 + 2951 ], "game_ban_count": [ - 2952 + 2951 ], "invited_by_steam_id": [ - 2952 + 2951 ], "premier_rank": [ - 2952 + 2951 ], "steam_id": [ - 2952 + 2951 ], "vac_ban_count": [ - 2952 + 2951 ], "__typename": [ 80 @@ -55203,31 +55195,31 @@ export default { }, "my_friends_var_samp_order_by": { "days_since_last_ban": [ - 2952 + 2951 ], "faceit_elo": [ - 2952 + 2951 ], "faceit_skill_level": [ - 2952 + 2951 ], "friend_steam_id": [ - 2952 + 2951 ], "game_ban_count": [ - 2952 + 2951 ], "invited_by_steam_id": [ - 2952 + 2951 ], "premier_rank": [ - 2952 + 2951 ], "steam_id": [ - 2952 + 2951 ], "vac_ban_count": [ - 2952 + 2951 ], "__typename": [ 80 @@ -55267,31 +55259,31 @@ export default { }, "my_friends_variance_order_by": { "days_since_last_ban": [ - 2952 + 2951 ], "faceit_elo": [ - 2952 + 2951 ], "faceit_skill_level": [ - 2952 + 2951 ], "friend_steam_id": [ - 2952 + 2951 ], "game_ban_count": [ - 2952 + 2951 ], "invited_by_steam_id": [ - 2952 + 2951 ], "premier_rank": [ - 2952 + 2951 ], "steam_id": [ - 2952 + 2951 ], "vac_ban_count": [ - 2952 + 2951 ], "__typename": [ 80 @@ -55299,10 +55291,10 @@ export default { }, "news_articles": { "author": [ - 3910 + 3909 ], "author_steam_id": [ - 258 + 257 ], "content_markdown": [ 80 @@ -55311,13 +55303,13 @@ export default { 80 ], "created_at": [ - 4499 + 4498 ], "id": [ - 4999 + 4998 ], "published_at": [ - 4499 + 4498 ], "slug": [ 80 @@ -55332,10 +55324,10 @@ export default { 80 ], "updated_at": [ - 4499 + 4498 ], "view_count": [ - 258 + 257 ], "__typename": [ 80 @@ -55343,10 +55335,10 @@ export default { }, "news_articles_aggregate": { "aggregate": [ - 2875 + 2874 ], "nodes": [ - 2873 + 2872 ], "__typename": [ 80 @@ -55354,13 +55346,13 @@ export default { }, "news_articles_aggregate_fields": { "avg": [ - 2876 + 2875 ], "count": [ 40, { "columns": [ - 2887, + 2886, "[news_articles_select_column!]" ], "distinct": [ @@ -55369,31 +55361,31 @@ export default { } ], "max": [ - 2881 + 2880 ], "min": [ - 2882 + 2881 ], "stddev": [ - 2889 + 2888 ], "stddev_pop": [ - 2890 + 2889 ], "stddev_samp": [ - 2891 + 2890 ], "sum": [ - 2894 + 2893 ], "var_pop": [ - 2897 + 2896 ], "var_samp": [ - 2898 + 2897 ], "variance": [ - 2899 + 2898 ], "__typename": [ 80 @@ -55412,19 +55404,19 @@ export default { }, "news_articles_bool_exp": { "_and": [ - 2877 + 2876 ], "_not": [ - 2877 + 2876 ], "_or": [ - 2877 + 2876 ], "author": [ - 3914 + 3913 ], "author_steam_id": [ - 260 + 259 ], "content_markdown": [ 82 @@ -55433,13 +55425,13 @@ export default { 82 ], "created_at": [ - 4500 + 4499 ], "id": [ - 5001 + 5000 ], "published_at": [ - 4500 + 4499 ], "slug": [ 82 @@ -55454,10 +55446,10 @@ export default { 82 ], "updated_at": [ - 4500 + 4499 ], "view_count": [ - 260 + 259 ], "__typename": [ 80 @@ -55466,10 +55458,10 @@ export default { "news_articles_constraint": {}, "news_articles_inc_input": { "author_steam_id": [ - 258 + 257 ], "view_count": [ - 258 + 257 ], "__typename": [ 80 @@ -55477,10 +55469,10 @@ export default { }, "news_articles_insert_input": { "author": [ - 3921 + 3920 ], "author_steam_id": [ - 258 + 257 ], "content_markdown": [ 80 @@ -55489,13 +55481,13 @@ export default { 80 ], "created_at": [ - 4499 + 4498 ], "id": [ - 4999 + 4998 ], "published_at": [ - 4499 + 4498 ], "slug": [ 80 @@ -55510,10 +55502,10 @@ export default { 80 ], "updated_at": [ - 4499 + 4498 ], "view_count": [ - 258 + 257 ], "__typename": [ 80 @@ -55521,7 +55513,7 @@ export default { }, "news_articles_max_fields": { "author_steam_id": [ - 258 + 257 ], "content_markdown": [ 80 @@ -55530,13 +55522,13 @@ export default { 80 ], "created_at": [ - 4499 + 4498 ], "id": [ - 4999 + 4998 ], "published_at": [ - 4499 + 4498 ], "slug": [ 80 @@ -55551,10 +55543,10 @@ export default { 80 ], "updated_at": [ - 4499 + 4498 ], "view_count": [ - 258 + 257 ], "__typename": [ 80 @@ -55562,7 +55554,7 @@ export default { }, "news_articles_min_fields": { "author_steam_id": [ - 258 + 257 ], "content_markdown": [ 80 @@ -55571,13 +55563,13 @@ export default { 80 ], "created_at": [ - 4499 + 4498 ], "id": [ - 4999 + 4998 ], "published_at": [ - 4499 + 4498 ], "slug": [ 80 @@ -55592,10 +55584,10 @@ export default { 80 ], "updated_at": [ - 4499 + 4498 ], "view_count": [ - 258 + 257 ], "__typename": [ 80 @@ -55606,7 +55598,7 @@ export default { 40 ], "returning": [ - 2873 + 2872 ], "__typename": [ 80 @@ -55614,13 +55606,13 @@ export default { }, "news_articles_on_conflict": { "constraint": [ - 2878 + 2877 ], "update_columns": [ - 2895 + 2894 ], "where": [ - 2877 + 2876 ], "__typename": [ 80 @@ -55628,43 +55620,43 @@ export default { }, "news_articles_order_by": { "author": [ - 3923 + 3922 ], "author_steam_id": [ - 2952 + 2951 ], "content_markdown": [ - 2952 + 2951 ], "cover_image_url": [ - 2952 + 2951 ], "created_at": [ - 2952 + 2951 ], "id": [ - 2952 + 2951 ], "published_at": [ - 2952 + 2951 ], "slug": [ - 2952 + 2951 ], "status": [ - 2952 + 2951 ], "teaser": [ - 2952 + 2951 ], "title": [ - 2952 + 2951 ], "updated_at": [ - 2952 + 2951 ], "view_count": [ - 2952 + 2951 ], "__typename": [ 80 @@ -55672,7 +55664,7 @@ export default { }, "news_articles_pk_columns_input": { "id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -55681,7 +55673,7 @@ export default { "news_articles_select_column": {}, "news_articles_set_input": { "author_steam_id": [ - 258 + 257 ], "content_markdown": [ 80 @@ -55690,13 +55682,13 @@ export default { 80 ], "created_at": [ - 4499 + 4498 ], "id": [ - 4999 + 4998 ], "published_at": [ - 4499 + 4498 ], "slug": [ 80 @@ -55711,10 +55703,10 @@ export default { 80 ], "updated_at": [ - 4499 + 4498 ], "view_count": [ - 258 + 257 ], "__typename": [ 80 @@ -55755,10 +55747,10 @@ export default { }, "news_articles_stream_cursor_input": { "initial_value": [ - 2893 + 2892 ], "ordering": [ - 314 + 313 ], "__typename": [ 80 @@ -55766,7 +55758,7 @@ export default { }, "news_articles_stream_cursor_value_input": { "author_steam_id": [ - 258 + 257 ], "content_markdown": [ 80 @@ -55775,13 +55767,13 @@ export default { 80 ], "created_at": [ - 4499 + 4498 ], "id": [ - 4999 + 4998 ], "published_at": [ - 4499 + 4498 ], "slug": [ 80 @@ -55796,10 +55788,10 @@ export default { 80 ], "updated_at": [ - 4499 + 4498 ], "view_count": [ - 258 + 257 ], "__typename": [ 80 @@ -55807,10 +55799,10 @@ export default { }, "news_articles_sum_fields": { "author_steam_id": [ - 258 + 257 ], "view_count": [ - 258 + 257 ], "__typename": [ 80 @@ -55819,13 +55811,13 @@ export default { "news_articles_update_column": {}, "news_articles_updates": { "_inc": [ - 2879 + 2878 ], "_set": [ - 2888 + 2887 ], "where": [ - 2877 + 2876 ], "__typename": [ 80 @@ -55866,7 +55858,7 @@ export default { }, "notifications": { "actions": [ - 1823, + 1822, { "path": [ 80 @@ -55874,19 +55866,19 @@ export default { } ], "created_at": [ - 4499 + 4498 ], "deletable": [ 5 ], "deleted_at": [ - 4499 + 4498 ], "entity_id": [ 80 ], "id": [ - 4999 + 4998 ], "is_read": [ 5 @@ -55895,19 +55887,19 @@ export default { 80 ], "player": [ - 3910 + 3909 ], "role": [ - 1071 + 1070 ], "steam_id": [ - 258 + 257 ], "title": [ 80 ], "type": [ - 1031 + 1030 ], "__typename": [ 80 @@ -55915,10 +55907,10 @@ export default { }, "notifications_aggregate": { "aggregate": [ - 2906 + 2905 ], "nodes": [ - 2900 + 2899 ], "__typename": [ 80 @@ -55926,13 +55918,13 @@ export default { }, "notifications_aggregate_bool_exp": { "bool_and": [ - 2903 + 2902 ], "bool_or": [ - 2904 + 2903 ], "count": [ - 2905 + 2904 ], "__typename": [ 80 @@ -55940,13 +55932,13 @@ export default { }, "notifications_aggregate_bool_exp_bool_and": { "arguments": [ - 2929 + 2928 ], "distinct": [ 5 ], "filter": [ - 2912 + 2911 ], "predicate": [ 6 @@ -55957,13 +55949,13 @@ export default { }, "notifications_aggregate_bool_exp_bool_or": { "arguments": [ - 2930 + 2929 ], "distinct": [ 5 ], "filter": [ - 2912 + 2911 ], "predicate": [ 6 @@ -55974,13 +55966,13 @@ export default { }, "notifications_aggregate_bool_exp_count": { "arguments": [ - 2928 + 2927 ], "distinct": [ 5 ], "filter": [ - 2912 + 2911 ], "predicate": [ 41 @@ -55991,13 +55983,13 @@ export default { }, "notifications_aggregate_fields": { "avg": [ - 2910 + 2909 ], "count": [ 40, { "columns": [ - 2928, + 2927, "[notifications_select_column!]" ], "distinct": [ @@ -56005,6 +55997,44 @@ export default { ] } ], + "max": [ + 2918 + ], + "min": [ + 2920 + ], + "stddev": [ + 2931 + ], + "stddev_pop": [ + 2933 + ], + "stddev_samp": [ + 2935 + ], + "sum": [ + 2939 + ], + "var_pop": [ + 2943 + ], + "var_samp": [ + 2945 + ], + "variance": [ + 2947 + ], + "__typename": [ + 80 + ] + }, + "notifications_aggregate_order_by": { + "avg": [ + 2910 + ], + "count": [ + 2951 + ], "max": [ 2919 ], @@ -56036,47 +56066,9 @@ export default { 80 ] }, - "notifications_aggregate_order_by": { - "avg": [ - 2911 - ], - "count": [ - 2952 - ], - "max": [ - 2920 - ], - "min": [ - 2922 - ], - "stddev": [ - 2933 - ], - "stddev_pop": [ - 2935 - ], - "stddev_samp": [ - 2937 - ], - "sum": [ - 2941 - ], - "var_pop": [ - 2945 - ], - "var_samp": [ - 2947 - ], - "variance": [ - 2949 - ], - "__typename": [ - 80 - ] - }, "notifications_append_input": { "actions": [ - 1823 + 1822 ], "__typename": [ 80 @@ -56084,10 +56076,10 @@ export default { }, "notifications_arr_rel_insert_input": { "data": [ - 2918 + 2917 ], "on_conflict": [ - 2924 + 2923 ], "__typename": [ 80 @@ -56103,7 +56095,7 @@ export default { }, "notifications_avg_order_by": { "steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -56111,31 +56103,31 @@ export default { }, "notifications_bool_exp": { "_and": [ - 2912 + 2911 ], "_not": [ - 2912 + 2911 ], "_or": [ - 2912 + 2911 ], "actions": [ - 1825 + 1824 ], "created_at": [ - 4500 + 4499 ], "deletable": [ 6 ], "deleted_at": [ - 4500 + 4499 ], "entity_id": [ 82 ], "id": [ - 5001 + 5000 ], "is_read": [ 6 @@ -56144,19 +56136,19 @@ export default { 82 ], "player": [ - 3914 + 3913 ], "role": [ - 1072 + 1071 ], "steam_id": [ - 260 + 259 ], "title": [ 82 ], "type": [ - 1032 + 1031 ], "__typename": [ 80 @@ -56189,7 +56181,7 @@ export default { }, "notifications_inc_input": { "steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -56197,22 +56189,22 @@ export default { }, "notifications_insert_input": { "actions": [ - 1823 + 1822 ], "created_at": [ - 4499 + 4498 ], "deletable": [ 5 ], "deleted_at": [ - 4499 + 4498 ], "entity_id": [ 80 ], "id": [ - 4999 + 4998 ], "is_read": [ 5 @@ -56221,19 +56213,19 @@ export default { 80 ], "player": [ - 3921 + 3920 ], "role": [ - 1071 + 1070 ], "steam_id": [ - 258 + 257 ], "title": [ 80 ], "type": [ - 1031 + 1030 ], "__typename": [ 80 @@ -56241,22 +56233,22 @@ export default { }, "notifications_max_fields": { "created_at": [ - 4499 + 4498 ], "deleted_at": [ - 4499 + 4498 ], "entity_id": [ 80 ], "id": [ - 4999 + 4998 ], "message": [ 80 ], "steam_id": [ - 258 + 257 ], "title": [ 80 @@ -56267,25 +56259,25 @@ export default { }, "notifications_max_order_by": { "created_at": [ - 2952 + 2951 ], "deleted_at": [ - 2952 + 2951 ], "entity_id": [ - 2952 + 2951 ], "id": [ - 2952 + 2951 ], "message": [ - 2952 + 2951 ], "steam_id": [ - 2952 + 2951 ], "title": [ - 2952 + 2951 ], "__typename": [ 80 @@ -56293,22 +56285,22 @@ export default { }, "notifications_min_fields": { "created_at": [ - 4499 + 4498 ], "deleted_at": [ - 4499 + 4498 ], "entity_id": [ 80 ], "id": [ - 4999 + 4998 ], "message": [ 80 ], "steam_id": [ - 258 + 257 ], "title": [ 80 @@ -56319,25 +56311,25 @@ export default { }, "notifications_min_order_by": { "created_at": [ - 2952 + 2951 ], "deleted_at": [ - 2952 + 2951 ], "entity_id": [ - 2952 + 2951 ], "id": [ - 2952 + 2951 ], "message": [ - 2952 + 2951 ], "steam_id": [ - 2952 + 2951 ], "title": [ - 2952 + 2951 ], "__typename": [ 80 @@ -56348,7 +56340,7 @@ export default { 40 ], "returning": [ - 2900 + 2899 ], "__typename": [ 80 @@ -56356,13 +56348,13 @@ export default { }, "notifications_on_conflict": { "constraint": [ - 2913 + 2912 ], "update_columns": [ - 2942 + 2941 ], "where": [ - 2912 + 2911 ], "__typename": [ 80 @@ -56370,43 +56362,43 @@ export default { }, "notifications_order_by": { "actions": [ - 2952 + 2951 ], "created_at": [ - 2952 + 2951 ], "deletable": [ - 2952 + 2951 ], "deleted_at": [ - 2952 + 2951 ], "entity_id": [ - 2952 + 2951 ], "id": [ - 2952 + 2951 ], "is_read": [ - 2952 + 2951 ], "message": [ - 2952 + 2951 ], "player": [ - 3923 + 3922 ], "role": [ - 2952 + 2951 ], "steam_id": [ - 2952 + 2951 ], "title": [ - 2952 + 2951 ], "type": [ - 2952 + 2951 ], "__typename": [ 80 @@ -56414,7 +56406,7 @@ export default { }, "notifications_pk_columns_input": { "id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -56422,7 +56414,7 @@ export default { }, "notifications_prepend_input": { "actions": [ - 1823 + 1822 ], "__typename": [ 80 @@ -56433,22 +56425,22 @@ export default { "notifications_select_column_notifications_aggregate_bool_exp_bool_or_arguments_columns": {}, "notifications_set_input": { "actions": [ - 1823 + 1822 ], "created_at": [ - 4499 + 4498 ], "deletable": [ 5 ], "deleted_at": [ - 4499 + 4498 ], "entity_id": [ 80 ], "id": [ - 4999 + 4998 ], "is_read": [ 5 @@ -56457,16 +56449,16 @@ export default { 80 ], "role": [ - 1071 + 1070 ], "steam_id": [ - 258 + 257 ], "title": [ 80 ], "type": [ - 1031 + 1030 ], "__typename": [ 80 @@ -56482,7 +56474,7 @@ export default { }, "notifications_stddev_order_by": { "steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -56498,7 +56490,7 @@ export default { }, "notifications_stddev_pop_order_by": { "steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -56514,7 +56506,7 @@ export default { }, "notifications_stddev_samp_order_by": { "steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -56522,10 +56514,10 @@ export default { }, "notifications_stream_cursor_input": { "initial_value": [ - 2939 + 2938 ], "ordering": [ - 314 + 313 ], "__typename": [ 80 @@ -56533,22 +56525,22 @@ export default { }, "notifications_stream_cursor_value_input": { "actions": [ - 1823 + 1822 ], "created_at": [ - 4499 + 4498 ], "deletable": [ 5 ], "deleted_at": [ - 4499 + 4498 ], "entity_id": [ 80 ], "id": [ - 4999 + 4998 ], "is_read": [ 5 @@ -56557,16 +56549,16 @@ export default { 80 ], "role": [ - 1071 + 1070 ], "steam_id": [ - 258 + 257 ], "title": [ 80 ], "type": [ - 1031 + 1030 ], "__typename": [ 80 @@ -56574,7 +56566,7 @@ export default { }, "notifications_sum_fields": { "steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -56582,7 +56574,7 @@ export default { }, "notifications_sum_order_by": { "steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -56591,28 +56583,28 @@ export default { "notifications_update_column": {}, "notifications_updates": { "_append": [ - 2908 + 2907 ], "_delete_at_path": [ - 2914 + 2913 ], "_delete_elem": [ - 2915 + 2914 ], "_delete_key": [ - 2916 + 2915 ], "_inc": [ - 2917 + 2916 ], "_prepend": [ - 2927 + 2926 ], "_set": [ - 2931 + 2930 ], "where": [ - 2912 + 2911 ], "__typename": [ 80 @@ -56628,7 +56620,7 @@ export default { }, "notifications_var_pop_order_by": { "steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -56644,7 +56636,7 @@ export default { }, "notifications_var_samp_order_by": { "steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -56660,7 +56652,7 @@ export default { }, "notifications_variance_order_by": { "steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -56669,31 +56661,31 @@ export default { "numeric": {}, "numeric_comparison_exp": { "_eq": [ - 2950 + 2949 ], "_gt": [ - 2950 + 2949 ], "_gte": [ - 2950 + 2949 ], "_in": [ - 2950 + 2949 ], "_is_null": [ 5 ], "_lt": [ - 2950 + 2949 ], "_lte": [ - 2950 + 2949 ], "_neq": [ - 2950 + 2949 ], "_nin": [ - 2950 + 2949 ], "__typename": [ 80 @@ -56702,19 +56694,19 @@ export default { "order_by": {}, "pending_match_import_players": { "created_at": [ - 4499 + 4498 ], "pending_match_import": [ - 2994 + 2993 ], "player": [ - 3910 + 3909 ], "steam_id": [ - 258 + 257 ], "valve_match_id": [ - 2950 + 2949 ], "__typename": [ 80 @@ -56722,10 +56714,10 @@ export default { }, "pending_match_import_players_aggregate": { "aggregate": [ - 2957 + 2956 ], "nodes": [ - 2953 + 2952 ], "__typename": [ 80 @@ -56733,7 +56725,7 @@ export default { }, "pending_match_import_players_aggregate_bool_exp": { "count": [ - 2956 + 2955 ], "__typename": [ 80 @@ -56741,13 +56733,13 @@ export default { }, "pending_match_import_players_aggregate_bool_exp_count": { "arguments": [ - 2974 + 2973 ], "distinct": [ 5 ], "filter": [ - 2962 + 2961 ], "predicate": [ 41 @@ -56758,13 +56750,13 @@ export default { }, "pending_match_import_players_aggregate_fields": { "avg": [ - 2960 + 2959 ], "count": [ 40, { "columns": [ - 2974, + 2973, "[pending_match_import_players_select_column!]" ], "distinct": [ @@ -56772,6 +56764,44 @@ export default { ] } ], + "max": [ + 2965 + ], + "min": [ + 2967 + ], + "stddev": [ + 2975 + ], + "stddev_pop": [ + 2977 + ], + "stddev_samp": [ + 2979 + ], + "sum": [ + 2983 + ], + "var_pop": [ + 2987 + ], + "var_samp": [ + 2989 + ], + "variance": [ + 2991 + ], + "__typename": [ + 80 + ] + }, + "pending_match_import_players_aggregate_order_by": { + "avg": [ + 2960 + ], + "count": [ + 2951 + ], "max": [ 2966 ], @@ -56803,50 +56833,12 @@ export default { 80 ] }, - "pending_match_import_players_aggregate_order_by": { - "avg": [ - 2961 - ], - "count": [ - 2952 - ], - "max": [ - 2967 - ], - "min": [ - 2969 - ], - "stddev": [ - 2977 - ], - "stddev_pop": [ - 2979 - ], - "stddev_samp": [ - 2981 - ], - "sum": [ - 2985 - ], - "var_pop": [ - 2989 - ], - "var_samp": [ - 2991 - ], - "variance": [ - 2993 - ], - "__typename": [ - 80 - ] - }, "pending_match_import_players_arr_rel_insert_input": { "data": [ - 2965 + 2964 ], "on_conflict": [ - 2971 + 2970 ], "__typename": [ 80 @@ -56865,10 +56857,10 @@ export default { }, "pending_match_import_players_avg_order_by": { "steam_id": [ - 2952 + 2951 ], "valve_match_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -56876,28 +56868,28 @@ export default { }, "pending_match_import_players_bool_exp": { "_and": [ - 2962 + 2961 ], "_not": [ - 2962 + 2961 ], "_or": [ - 2962 + 2961 ], "created_at": [ - 4500 + 4499 ], "pending_match_import": [ - 2998 + 2997 ], "player": [ - 3914 + 3913 ], "steam_id": [ - 260 + 259 ], "valve_match_id": [ - 2951 + 2950 ], "__typename": [ 80 @@ -56906,10 +56898,10 @@ export default { "pending_match_import_players_constraint": {}, "pending_match_import_players_inc_input": { "steam_id": [ - 258 + 257 ], "valve_match_id": [ - 2950 + 2949 ], "__typename": [ 80 @@ -56917,19 +56909,19 @@ export default { }, "pending_match_import_players_insert_input": { "created_at": [ - 4499 + 4498 ], "pending_match_import": [ - 3005 + 3004 ], "player": [ - 3921 + 3920 ], "steam_id": [ - 258 + 257 ], "valve_match_id": [ - 2950 + 2949 ], "__typename": [ 80 @@ -56937,13 +56929,13 @@ export default { }, "pending_match_import_players_max_fields": { "created_at": [ - 4499 + 4498 ], "steam_id": [ - 258 + 257 ], "valve_match_id": [ - 2950 + 2949 ], "__typename": [ 80 @@ -56951,13 +56943,13 @@ export default { }, "pending_match_import_players_max_order_by": { "created_at": [ - 2952 + 2951 ], "steam_id": [ - 2952 + 2951 ], "valve_match_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -56965,13 +56957,13 @@ export default { }, "pending_match_import_players_min_fields": { "created_at": [ - 4499 + 4498 ], "steam_id": [ - 258 + 257 ], "valve_match_id": [ - 2950 + 2949 ], "__typename": [ 80 @@ -56979,13 +56971,13 @@ export default { }, "pending_match_import_players_min_order_by": { "created_at": [ - 2952 + 2951 ], "steam_id": [ - 2952 + 2951 ], "valve_match_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -56996,7 +56988,7 @@ export default { 40 ], "returning": [ - 2953 + 2952 ], "__typename": [ 80 @@ -57004,13 +56996,13 @@ export default { }, "pending_match_import_players_on_conflict": { "constraint": [ - 2963 + 2962 ], "update_columns": [ - 2986 + 2985 ], "where": [ - 2962 + 2961 ], "__typename": [ 80 @@ -57018,19 +57010,19 @@ export default { }, "pending_match_import_players_order_by": { "created_at": [ - 2952 + 2951 ], "pending_match_import": [ - 3007 + 3006 ], "player": [ - 3923 + 3922 ], "steam_id": [ - 2952 + 2951 ], "valve_match_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -57038,10 +57030,10 @@ export default { }, "pending_match_import_players_pk_columns_input": { "steam_id": [ - 258 + 257 ], "valve_match_id": [ - 2950 + 2949 ], "__typename": [ 80 @@ -57050,13 +57042,13 @@ export default { "pending_match_import_players_select_column": {}, "pending_match_import_players_set_input": { "created_at": [ - 4499 + 4498 ], "steam_id": [ - 258 + 257 ], "valve_match_id": [ - 2950 + 2949 ], "__typename": [ 80 @@ -57075,10 +57067,10 @@ export default { }, "pending_match_import_players_stddev_order_by": { "steam_id": [ - 2952 + 2951 ], "valve_match_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -57097,10 +57089,10 @@ export default { }, "pending_match_import_players_stddev_pop_order_by": { "steam_id": [ - 2952 + 2951 ], "valve_match_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -57119,10 +57111,10 @@ export default { }, "pending_match_import_players_stddev_samp_order_by": { "steam_id": [ - 2952 + 2951 ], "valve_match_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -57130,10 +57122,10 @@ export default { }, "pending_match_import_players_stream_cursor_input": { "initial_value": [ - 2983 + 2982 ], "ordering": [ - 314 + 313 ], "__typename": [ 80 @@ -57141,13 +57133,13 @@ export default { }, "pending_match_import_players_stream_cursor_value_input": { "created_at": [ - 4499 + 4498 ], "steam_id": [ - 258 + 257 ], "valve_match_id": [ - 2950 + 2949 ], "__typename": [ 80 @@ -57155,10 +57147,10 @@ export default { }, "pending_match_import_players_sum_fields": { "steam_id": [ - 258 + 257 ], "valve_match_id": [ - 2950 + 2949 ], "__typename": [ 80 @@ -57166,10 +57158,10 @@ export default { }, "pending_match_import_players_sum_order_by": { "steam_id": [ - 2952 + 2951 ], "valve_match_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -57178,13 +57170,13 @@ export default { "pending_match_import_players_update_column": {}, "pending_match_import_players_updates": { "_inc": [ - 2964 + 2963 ], "_set": [ - 2975 + 2974 ], "where": [ - 2962 + 2961 ], "__typename": [ 80 @@ -57203,10 +57195,10 @@ export default { }, "pending_match_import_players_var_pop_order_by": { "steam_id": [ - 2952 + 2951 ], "valve_match_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -57225,10 +57217,10 @@ export default { }, "pending_match_import_players_var_samp_order_by": { "steam_id": [ - 2952 + 2951 ], "valve_match_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -57247,10 +57239,10 @@ export default { }, "pending_match_import_players_variance_order_by": { "steam_id": [ - 2952 + 2951 ], "valve_match_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -57258,7 +57250,7 @@ export default { }, "pending_match_imports": { "created_at": [ - 4499 + 4498 ], "demo_url": [ 80 @@ -57270,13 +57262,13 @@ export default { 80 ], "match_start_time": [ - 4499 + 4498 ], "players": [ - 2953, + 2952, { "distinct_on": [ - 2974, + 2973, "[pending_match_import_players_select_column!]" ], "limit": [ @@ -57286,19 +57278,19 @@ export default { 40 ], "order_by": [ - 2972, + 2971, "[pending_match_import_players_order_by!]" ], "where": [ - 2962 + 2961 ] } ], "players_aggregate": [ - 2954, + 2953, { "distinct_on": [ - 2974, + 2973, "[pending_match_import_players_select_column!]" ], "limit": [ @@ -57308,11 +57300,11 @@ export default { 40 ], "order_by": [ - 2972, + 2971, "[pending_match_import_players_order_by!]" ], "where": [ - 2962 + 2961 ] } ], @@ -57323,10 +57315,10 @@ export default { 80 ], "updated_at": [ - 4499 + 4498 ], "valve_match_id": [ - 2950 + 2949 ], "__typename": [ 80 @@ -57334,10 +57326,10 @@ export default { }, "pending_match_imports_aggregate": { "aggregate": [ - 2996 + 2995 ], "nodes": [ - 2994 + 2993 ], "__typename": [ 80 @@ -57345,13 +57337,13 @@ export default { }, "pending_match_imports_aggregate_fields": { "avg": [ - 2997 + 2996 ], "count": [ 40, { "columns": [ - 3009, + 3008, "[pending_match_imports_select_column!]" ], "distinct": [ @@ -57360,31 +57352,31 @@ export default { } ], "max": [ - 3002 + 3001 ], "min": [ - 3003 + 3002 ], "stddev": [ - 3011 + 3010 ], "stddev_pop": [ - 3012 + 3011 ], "stddev_samp": [ - 3013 + 3012 ], "sum": [ - 3016 + 3015 ], "var_pop": [ - 3019 + 3018 ], "var_samp": [ - 3020 + 3019 ], "variance": [ - 3021 + 3020 ], "__typename": [ 80 @@ -57400,16 +57392,16 @@ export default { }, "pending_match_imports_bool_exp": { "_and": [ - 2998 + 2997 ], "_not": [ - 2998 + 2997 ], "_or": [ - 2998 + 2997 ], "created_at": [ - 4500 + 4499 ], "demo_url": [ 82 @@ -57421,13 +57413,13 @@ export default { 82 ], "match_start_time": [ - 4500 + 4499 ], "players": [ - 2962 + 2961 ], "players_aggregate": [ - 2955 + 2954 ], "share_code": [ 82 @@ -57436,10 +57428,10 @@ export default { 82 ], "updated_at": [ - 4500 + 4499 ], "valve_match_id": [ - 2951 + 2950 ], "__typename": [ 80 @@ -57448,7 +57440,7 @@ export default { "pending_match_imports_constraint": {}, "pending_match_imports_inc_input": { "valve_match_id": [ - 2950 + 2949 ], "__typename": [ 80 @@ -57456,7 +57448,7 @@ export default { }, "pending_match_imports_insert_input": { "created_at": [ - 4499 + 4498 ], "demo_url": [ 80 @@ -57468,10 +57460,10 @@ export default { 80 ], "match_start_time": [ - 4499 + 4498 ], "players": [ - 2959 + 2958 ], "share_code": [ 80 @@ -57480,10 +57472,10 @@ export default { 80 ], "updated_at": [ - 4499 + 4498 ], "valve_match_id": [ - 2950 + 2949 ], "__typename": [ 80 @@ -57491,7 +57483,7 @@ export default { }, "pending_match_imports_max_fields": { "created_at": [ - 4499 + 4498 ], "demo_url": [ 80 @@ -57503,7 +57495,7 @@ export default { 80 ], "match_start_time": [ - 4499 + 4498 ], "share_code": [ 80 @@ -57512,10 +57504,10 @@ export default { 80 ], "updated_at": [ - 4499 + 4498 ], "valve_match_id": [ - 2950 + 2949 ], "__typename": [ 80 @@ -57523,7 +57515,7 @@ export default { }, "pending_match_imports_min_fields": { "created_at": [ - 4499 + 4498 ], "demo_url": [ 80 @@ -57535,7 +57527,7 @@ export default { 80 ], "match_start_time": [ - 4499 + 4498 ], "share_code": [ 80 @@ -57544,10 +57536,10 @@ export default { 80 ], "updated_at": [ - 4499 + 4498 ], "valve_match_id": [ - 2950 + 2949 ], "__typename": [ 80 @@ -57558,7 +57550,7 @@ export default { 40 ], "returning": [ - 2994 + 2993 ], "__typename": [ 80 @@ -57566,10 +57558,10 @@ export default { }, "pending_match_imports_obj_rel_insert_input": { "data": [ - 3001 + 3000 ], "on_conflict": [ - 3006 + 3005 ], "__typename": [ 80 @@ -57577,13 +57569,13 @@ export default { }, "pending_match_imports_on_conflict": { "constraint": [ - 2999 + 2998 ], "update_columns": [ - 3017 + 3016 ], "where": [ - 2998 + 2997 ], "__typename": [ 80 @@ -57591,34 +57583,34 @@ export default { }, "pending_match_imports_order_by": { "created_at": [ - 2952 + 2951 ], "demo_url": [ - 2952 + 2951 ], "error": [ - 2952 + 2951 ], "map_name": [ - 2952 + 2951 ], "match_start_time": [ - 2952 + 2951 ], "players_aggregate": [ - 2958 + 2957 ], "share_code": [ - 2952 + 2951 ], "status": [ - 2952 + 2951 ], "updated_at": [ - 2952 + 2951 ], "valve_match_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -57626,7 +57618,7 @@ export default { }, "pending_match_imports_pk_columns_input": { "valve_match_id": [ - 2950 + 2949 ], "__typename": [ 80 @@ -57635,7 +57627,7 @@ export default { "pending_match_imports_select_column": {}, "pending_match_imports_set_input": { "created_at": [ - 4499 + 4498 ], "demo_url": [ 80 @@ -57647,7 +57639,7 @@ export default { 80 ], "match_start_time": [ - 4499 + 4498 ], "share_code": [ 80 @@ -57656,10 +57648,10 @@ export default { 80 ], "updated_at": [ - 4499 + 4498 ], "valve_match_id": [ - 2950 + 2949 ], "__typename": [ 80 @@ -57691,10 +57683,10 @@ export default { }, "pending_match_imports_stream_cursor_input": { "initial_value": [ - 3015 + 3014 ], "ordering": [ - 314 + 313 ], "__typename": [ 80 @@ -57702,7 +57694,7 @@ export default { }, "pending_match_imports_stream_cursor_value_input": { "created_at": [ - 4499 + 4498 ], "demo_url": [ 80 @@ -57714,7 +57706,7 @@ export default { 80 ], "match_start_time": [ - 4499 + 4498 ], "share_code": [ 80 @@ -57723,10 +57715,10 @@ export default { 80 ], "updated_at": [ - 4499 + 4498 ], "valve_match_id": [ - 2950 + 2949 ], "__typename": [ 80 @@ -57734,7 +57726,7 @@ export default { }, "pending_match_imports_sum_fields": { "valve_match_id": [ - 2950 + 2949 ], "__typename": [ 80 @@ -57743,13 +57735,13 @@ export default { "pending_match_imports_update_column": {}, "pending_match_imports_updates": { "_inc": [ - 3000 + 2999 ], "_set": [ - 3010 + 3009 ], "where": [ - 2998 + 2997 ], "__typename": [ 80 @@ -57781,10 +57773,10 @@ export default { }, "player_aim_stats_demo": { "attacker": [ - 3910 + 3909 ], "attacker_steam_id": [ - 258 + 257 ], "counter_strafe_eligible_shots": [ 40 @@ -57796,7 +57788,7 @@ export default { 40 ], "crosshair_angle_sum_deg": [ - 2950 + 2949 ], "first_bullet_hits": [ 40 @@ -57814,16 +57806,16 @@ export default { 40 ], "match": [ - 2767 + 2766 ], "match_id": [ - 4999 + 4998 ], "match_map": [ - 2605 + 2604 ], "match_map_id": [ - 4999 + 4998 ], "non_awp_hits": [ 40 @@ -57844,7 +57836,7 @@ export default { 40 ], "time_to_damage_sum_s": [ - 2950 + 2949 ], "total_engagement_frames": [ 40 @@ -57855,10 +57847,10 @@ export default { }, "player_aim_stats_demo_aggregate": { "aggregate": [ - 3024 + 3023 ], "nodes": [ - 3022 + 3021 ], "__typename": [ 80 @@ -57866,13 +57858,13 @@ export default { }, "player_aim_stats_demo_aggregate_fields": { "avg": [ - 3025 + 3024 ], "count": [ 40, { "columns": [ - 3036, + 3035, "[player_aim_stats_demo_select_column!]" ], "distinct": [ @@ -57881,31 +57873,31 @@ export default { } ], "max": [ - 3030 + 3029 ], "min": [ - 3031 + 3030 ], "stddev": [ - 3038 + 3037 ], "stddev_pop": [ - 3039 + 3038 ], "stddev_samp": [ - 3040 + 3039 ], "sum": [ - 3043 + 3042 ], "var_pop": [ - 3046 + 3045 ], "var_samp": [ - 3047 + 3046 ], "variance": [ - 3048 + 3047 ], "__typename": [ 80 @@ -57972,19 +57964,19 @@ export default { }, "player_aim_stats_demo_bool_exp": { "_and": [ - 3026 + 3025 ], "_not": [ - 3026 + 3025 ], "_or": [ - 3026 + 3025 ], "attacker": [ - 3914 + 3913 ], "attacker_steam_id": [ - 260 + 259 ], "counter_strafe_eligible_shots": [ 41 @@ -57996,7 +57988,7 @@ export default { 41 ], "crosshair_angle_sum_deg": [ - 2951 + 2950 ], "first_bullet_hits": [ 41 @@ -58014,16 +58006,16 @@ export default { 41 ], "match": [ - 2776 + 2775 ], "match_id": [ - 5001 + 5000 ], "match_map": [ - 2614 + 2613 ], "match_map_id": [ - 5001 + 5000 ], "non_awp_hits": [ 41 @@ -58044,7 +58036,7 @@ export default { 41 ], "time_to_damage_sum_s": [ - 2951 + 2950 ], "total_engagement_frames": [ 41 @@ -58056,7 +58048,7 @@ export default { "player_aim_stats_demo_constraint": {}, "player_aim_stats_demo_inc_input": { "attacker_steam_id": [ - 258 + 257 ], "counter_strafe_eligible_shots": [ 40 @@ -58068,7 +58060,7 @@ export default { 40 ], "crosshair_angle_sum_deg": [ - 2950 + 2949 ], "first_bullet_hits": [ 40 @@ -58104,7 +58096,7 @@ export default { 40 ], "time_to_damage_sum_s": [ - 2950 + 2949 ], "total_engagement_frames": [ 40 @@ -58115,10 +58107,10 @@ export default { }, "player_aim_stats_demo_insert_input": { "attacker": [ - 3921 + 3920 ], "attacker_steam_id": [ - 258 + 257 ], "counter_strafe_eligible_shots": [ 40 @@ -58130,7 +58122,7 @@ export default { 40 ], "crosshair_angle_sum_deg": [ - 2950 + 2949 ], "first_bullet_hits": [ 40 @@ -58148,16 +58140,16 @@ export default { 40 ], "match": [ - 2785 + 2784 ], "match_id": [ - 4999 + 4998 ], "match_map": [ - 2623 + 2622 ], "match_map_id": [ - 4999 + 4998 ], "non_awp_hits": [ 40 @@ -58178,7 +58170,7 @@ export default { 40 ], "time_to_damage_sum_s": [ - 2950 + 2949 ], "total_engagement_frames": [ 40 @@ -58189,7 +58181,7 @@ export default { }, "player_aim_stats_demo_max_fields": { "attacker_steam_id": [ - 258 + 257 ], "counter_strafe_eligible_shots": [ 40 @@ -58201,7 +58193,7 @@ export default { 40 ], "crosshair_angle_sum_deg": [ - 2950 + 2949 ], "first_bullet_hits": [ 40 @@ -58219,10 +58211,10 @@ export default { 40 ], "match_id": [ - 4999 + 4998 ], "match_map_id": [ - 4999 + 4998 ], "non_awp_hits": [ 40 @@ -58243,7 +58235,7 @@ export default { 40 ], "time_to_damage_sum_s": [ - 2950 + 2949 ], "total_engagement_frames": [ 40 @@ -58254,7 +58246,7 @@ export default { }, "player_aim_stats_demo_min_fields": { "attacker_steam_id": [ - 258 + 257 ], "counter_strafe_eligible_shots": [ 40 @@ -58266,7 +58258,7 @@ export default { 40 ], "crosshair_angle_sum_deg": [ - 2950 + 2949 ], "first_bullet_hits": [ 40 @@ -58284,10 +58276,10 @@ export default { 40 ], "match_id": [ - 4999 + 4998 ], "match_map_id": [ - 4999 + 4998 ], "non_awp_hits": [ 40 @@ -58308,7 +58300,7 @@ export default { 40 ], "time_to_damage_sum_s": [ - 2950 + 2949 ], "total_engagement_frames": [ 40 @@ -58322,7 +58314,7 @@ export default { 40 ], "returning": [ - 3022 + 3021 ], "__typename": [ 80 @@ -58330,13 +58322,13 @@ export default { }, "player_aim_stats_demo_on_conflict": { "constraint": [ - 3027 + 3026 ], "update_columns": [ - 3044 + 3043 ], "where": [ - 3026 + 3025 ], "__typename": [ 80 @@ -58344,73 +58336,73 @@ export default { }, "player_aim_stats_demo_order_by": { "attacker": [ - 3923 + 3922 ], "attacker_steam_id": [ - 2952 + 2951 ], "counter_strafe_eligible_shots": [ - 2952 + 2951 ], "counter_strafed_shots": [ - 2952 + 2951 ], "crosshair_angle_count": [ - 2952 + 2951 ], "crosshair_angle_sum_deg": [ - 2952 + 2951 ], "first_bullet_hits": [ - 2952 + 2951 ], "first_bullet_shots": [ - 2952 + 2951 ], "headshot_hits": [ - 2952 + 2951 ], "hits": [ - 2952 + 2951 ], "hits_at_spotted": [ - 2952 + 2951 ], "match": [ - 2787 + 2786 ], "match_id": [ - 2952 + 2951 ], "match_map": [ - 2625 + 2624 ], "match_map_id": [ - 2952 + 2951 ], "non_awp_hits": [ - 2952 + 2951 ], "on_target_frames": [ - 2952 + 2951 ], "shots_at_spotted": [ - 2952 + 2951 ], "spray_hits": [ - 2952 + 2951 ], "spray_shots": [ - 2952 + 2951 ], "time_to_damage_count": [ - 2952 + 2951 ], "time_to_damage_sum_s": [ - 2952 + 2951 ], "total_engagement_frames": [ - 2952 + 2951 ], "__typename": [ 80 @@ -58418,10 +58410,10 @@ export default { }, "player_aim_stats_demo_pk_columns_input": { "attacker_steam_id": [ - 258 + 257 ], "match_map_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -58430,7 +58422,7 @@ export default { "player_aim_stats_demo_select_column": {}, "player_aim_stats_demo_set_input": { "attacker_steam_id": [ - 258 + 257 ], "counter_strafe_eligible_shots": [ 40 @@ -58442,7 +58434,7 @@ export default { 40 ], "crosshair_angle_sum_deg": [ - 2950 + 2949 ], "first_bullet_hits": [ 40 @@ -58460,10 +58452,10 @@ export default { 40 ], "match_id": [ - 4999 + 4998 ], "match_map_id": [ - 4999 + 4998 ], "non_awp_hits": [ 40 @@ -58484,7 +58476,7 @@ export default { 40 ], "time_to_damage_sum_s": [ - 2950 + 2949 ], "total_engagement_frames": [ 40 @@ -58672,10 +58664,10 @@ export default { }, "player_aim_stats_demo_stream_cursor_input": { "initial_value": [ - 3042 + 3041 ], "ordering": [ - 314 + 313 ], "__typename": [ 80 @@ -58683,7 +58675,7 @@ export default { }, "player_aim_stats_demo_stream_cursor_value_input": { "attacker_steam_id": [ - 258 + 257 ], "counter_strafe_eligible_shots": [ 40 @@ -58695,7 +58687,7 @@ export default { 40 ], "crosshair_angle_sum_deg": [ - 2950 + 2949 ], "first_bullet_hits": [ 40 @@ -58713,10 +58705,10 @@ export default { 40 ], "match_id": [ - 4999 + 4998 ], "match_map_id": [ - 4999 + 4998 ], "non_awp_hits": [ 40 @@ -58737,7 +58729,7 @@ export default { 40 ], "time_to_damage_sum_s": [ - 2950 + 2949 ], "total_engagement_frames": [ 40 @@ -58748,7 +58740,7 @@ export default { }, "player_aim_stats_demo_sum_fields": { "attacker_steam_id": [ - 258 + 257 ], "counter_strafe_eligible_shots": [ 40 @@ -58760,7 +58752,7 @@ export default { 40 ], "crosshair_angle_sum_deg": [ - 2950 + 2949 ], "first_bullet_hits": [ 40 @@ -58796,7 +58788,7 @@ export default { 40 ], "time_to_damage_sum_s": [ - 2950 + 2949 ], "total_engagement_frames": [ 40 @@ -58808,13 +58800,13 @@ export default { "player_aim_stats_demo_update_column": {}, "player_aim_stats_demo_updates": { "_inc": [ - 3028 + 3027 ], "_set": [ - 3037 + 3036 ], "where": [ - 3026 + 3025 ], "__typename": [ 80 @@ -59011,19 +59003,19 @@ export default { 40 ], "match": [ - 2767 + 2766 ], "match_id": [ - 4999 + 4998 ], "match_map": [ - 2605 + 2604 ], "match_map_id": [ - 4999 + 4998 ], "player": [ - 3910 + 3909 ], "shots": [ 40 @@ -59032,7 +59024,7 @@ export default { 40 ], "steam_id": [ - 258 + 257 ], "weapon_class": [ 80 @@ -59043,10 +59035,10 @@ export default { }, "player_aim_weapon_stats_aggregate": { "aggregate": [ - 3053 + 3052 ], "nodes": [ - 3049 + 3048 ], "__typename": [ 80 @@ -59054,7 +59046,7 @@ export default { }, "player_aim_weapon_stats_aggregate_bool_exp": { "count": [ - 3052 + 3051 ], "__typename": [ 80 @@ -59062,13 +59054,13 @@ export default { }, "player_aim_weapon_stats_aggregate_bool_exp_count": { "arguments": [ - 3070 + 3069 ], "distinct": [ 5 ], "filter": [ - 3058 + 3057 ], "predicate": [ 41 @@ -59079,13 +59071,13 @@ export default { }, "player_aim_weapon_stats_aggregate_fields": { "avg": [ - 3056 + 3055 ], "count": [ 40, { "columns": [ - 3070, + 3069, "[player_aim_weapon_stats_select_column!]" ], "distinct": [ @@ -59094,31 +59086,31 @@ export default { } ], "max": [ - 3062 + 3061 ], "min": [ - 3064 + 3063 ], "stddev": [ - 3072 + 3071 ], "stddev_pop": [ - 3074 + 3073 ], "stddev_samp": [ - 3076 + 3075 ], "sum": [ - 3080 + 3079 ], "var_pop": [ - 3084 + 3083 ], "var_samp": [ - 3086 + 3085 ], "variance": [ - 3088 + 3087 ], "__typename": [ 80 @@ -59126,37 +59118,37 @@ export default { }, "player_aim_weapon_stats_aggregate_order_by": { "avg": [ - 3057 + 3056 ], "count": [ - 2952 + 2951 ], "max": [ - 3063 + 3062 ], "min": [ - 3065 + 3064 ], "stddev": [ - 3073 + 3072 ], "stddev_pop": [ - 3075 + 3074 ], "stddev_samp": [ - 3077 + 3076 ], "sum": [ - 3081 + 3080 ], "var_pop": [ - 3085 + 3084 ], "var_samp": [ - 3087 + 3086 ], "variance": [ - 3089 + 3088 ], "__typename": [ 80 @@ -59164,10 +59156,10 @@ export default { }, "player_aim_weapon_stats_arr_rel_insert_input": { "data": [ - 3061 + 3060 ], "on_conflict": [ - 3067 + 3066 ], "__typename": [ 80 @@ -59201,25 +59193,25 @@ export default { }, "player_aim_weapon_stats_avg_order_by": { "first_bullet_hits": [ - 2952 + 2951 ], "first_bullet_shots": [ - 2952 + 2951 ], "hits": [ - 2952 + 2951 ], "hits_spotted": [ - 2952 + 2951 ], "shots": [ - 2952 + 2951 ], "shots_spotted": [ - 2952 + 2951 ], "steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -59227,13 +59219,13 @@ export default { }, "player_aim_weapon_stats_bool_exp": { "_and": [ - 3058 + 3057 ], "_not": [ - 3058 + 3057 ], "_or": [ - 3058 + 3057 ], "first_bullet_hits": [ 41 @@ -59248,19 +59240,19 @@ export default { 41 ], "match": [ - 2776 + 2775 ], "match_id": [ - 5001 + 5000 ], "match_map": [ - 2614 + 2613 ], "match_map_id": [ - 5001 + 5000 ], "player": [ - 3914 + 3913 ], "shots": [ 41 @@ -59269,7 +59261,7 @@ export default { 41 ], "steam_id": [ - 260 + 259 ], "weapon_class": [ 82 @@ -59299,7 +59291,7 @@ export default { 40 ], "steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -59319,19 +59311,19 @@ export default { 40 ], "match": [ - 2785 + 2784 ], "match_id": [ - 4999 + 4998 ], "match_map": [ - 2623 + 2622 ], "match_map_id": [ - 4999 + 4998 ], "player": [ - 3921 + 3920 ], "shots": [ 40 @@ -59340,7 +59332,7 @@ export default { 40 ], "steam_id": [ - 258 + 257 ], "weapon_class": [ 80 @@ -59363,10 +59355,10 @@ export default { 40 ], "match_id": [ - 4999 + 4998 ], "match_map_id": [ - 4999 + 4998 ], "shots": [ 40 @@ -59375,7 +59367,7 @@ export default { 40 ], "steam_id": [ - 258 + 257 ], "weapon_class": [ 80 @@ -59386,34 +59378,34 @@ export default { }, "player_aim_weapon_stats_max_order_by": { "first_bullet_hits": [ - 2952 + 2951 ], "first_bullet_shots": [ - 2952 + 2951 ], "hits": [ - 2952 + 2951 ], "hits_spotted": [ - 2952 + 2951 ], "match_id": [ - 2952 + 2951 ], "match_map_id": [ - 2952 + 2951 ], "shots": [ - 2952 + 2951 ], "shots_spotted": [ - 2952 + 2951 ], "steam_id": [ - 2952 + 2951 ], "weapon_class": [ - 2952 + 2951 ], "__typename": [ 80 @@ -59433,10 +59425,10 @@ export default { 40 ], "match_id": [ - 4999 + 4998 ], "match_map_id": [ - 4999 + 4998 ], "shots": [ 40 @@ -59445,7 +59437,7 @@ export default { 40 ], "steam_id": [ - 258 + 257 ], "weapon_class": [ 80 @@ -59456,34 +59448,34 @@ export default { }, "player_aim_weapon_stats_min_order_by": { "first_bullet_hits": [ - 2952 + 2951 ], "first_bullet_shots": [ - 2952 + 2951 ], "hits": [ - 2952 + 2951 ], "hits_spotted": [ - 2952 + 2951 ], "match_id": [ - 2952 + 2951 ], "match_map_id": [ - 2952 + 2951 ], "shots": [ - 2952 + 2951 ], "shots_spotted": [ - 2952 + 2951 ], "steam_id": [ - 2952 + 2951 ], "weapon_class": [ - 2952 + 2951 ], "__typename": [ 80 @@ -59494,7 +59486,7 @@ export default { 40 ], "returning": [ - 3049 + 3048 ], "__typename": [ 80 @@ -59502,13 +59494,13 @@ export default { }, "player_aim_weapon_stats_on_conflict": { "constraint": [ - 3059 + 3058 ], "update_columns": [ - 3082 + 3081 ], "where": [ - 3058 + 3057 ], "__typename": [ 80 @@ -59516,43 +59508,43 @@ export default { }, "player_aim_weapon_stats_order_by": { "first_bullet_hits": [ - 2952 + 2951 ], "first_bullet_shots": [ - 2952 + 2951 ], "hits": [ - 2952 + 2951 ], "hits_spotted": [ - 2952 + 2951 ], "match": [ - 2787 + 2786 ], "match_id": [ - 2952 + 2951 ], "match_map": [ - 2625 + 2624 ], "match_map_id": [ - 2952 + 2951 ], "player": [ - 3923 + 3922 ], "shots": [ - 2952 + 2951 ], "shots_spotted": [ - 2952 + 2951 ], "steam_id": [ - 2952 + 2951 ], "weapon_class": [ - 2952 + 2951 ], "__typename": [ 80 @@ -59560,10 +59552,10 @@ export default { }, "player_aim_weapon_stats_pk_columns_input": { "match_map_id": [ - 4999 + 4998 ], "steam_id": [ - 258 + 257 ], "weapon_class": [ 80 @@ -59587,10 +59579,10 @@ export default { 40 ], "match_id": [ - 4999 + 4998 ], "match_map_id": [ - 4999 + 4998 ], "shots": [ 40 @@ -59599,7 +59591,7 @@ export default { 40 ], "steam_id": [ - 258 + 257 ], "weapon_class": [ 80 @@ -59636,25 +59628,25 @@ export default { }, "player_aim_weapon_stats_stddev_order_by": { "first_bullet_hits": [ - 2952 + 2951 ], "first_bullet_shots": [ - 2952 + 2951 ], "hits": [ - 2952 + 2951 ], "hits_spotted": [ - 2952 + 2951 ], "shots": [ - 2952 + 2951 ], "shots_spotted": [ - 2952 + 2951 ], "steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -59688,25 +59680,25 @@ export default { }, "player_aim_weapon_stats_stddev_pop_order_by": { "first_bullet_hits": [ - 2952 + 2951 ], "first_bullet_shots": [ - 2952 + 2951 ], "hits": [ - 2952 + 2951 ], "hits_spotted": [ - 2952 + 2951 ], "shots": [ - 2952 + 2951 ], "shots_spotted": [ - 2952 + 2951 ], "steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -59740,25 +59732,25 @@ export default { }, "player_aim_weapon_stats_stddev_samp_order_by": { "first_bullet_hits": [ - 2952 + 2951 ], "first_bullet_shots": [ - 2952 + 2951 ], "hits": [ - 2952 + 2951 ], "hits_spotted": [ - 2952 + 2951 ], "shots": [ - 2952 + 2951 ], "shots_spotted": [ - 2952 + 2951 ], "steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -59766,10 +59758,10 @@ export default { }, "player_aim_weapon_stats_stream_cursor_input": { "initial_value": [ - 3079 + 3078 ], "ordering": [ - 314 + 313 ], "__typename": [ 80 @@ -59789,10 +59781,10 @@ export default { 40 ], "match_id": [ - 4999 + 4998 ], "match_map_id": [ - 4999 + 4998 ], "shots": [ 40 @@ -59801,7 +59793,7 @@ export default { 40 ], "steam_id": [ - 258 + 257 ], "weapon_class": [ 80 @@ -59830,7 +59822,7 @@ export default { 40 ], "steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -59838,25 +59830,25 @@ export default { }, "player_aim_weapon_stats_sum_order_by": { "first_bullet_hits": [ - 2952 + 2951 ], "first_bullet_shots": [ - 2952 + 2951 ], "hits": [ - 2952 + 2951 ], "hits_spotted": [ - 2952 + 2951 ], "shots": [ - 2952 + 2951 ], "shots_spotted": [ - 2952 + 2951 ], "steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -59865,13 +59857,13 @@ export default { "player_aim_weapon_stats_update_column": {}, "player_aim_weapon_stats_updates": { "_inc": [ - 3060 + 3059 ], "_set": [ - 3071 + 3070 ], "where": [ - 3058 + 3057 ], "__typename": [ 80 @@ -59905,25 +59897,25 @@ export default { }, "player_aim_weapon_stats_var_pop_order_by": { "first_bullet_hits": [ - 2952 + 2951 ], "first_bullet_shots": [ - 2952 + 2951 ], "hits": [ - 2952 + 2951 ], "hits_spotted": [ - 2952 + 2951 ], "shots": [ - 2952 + 2951 ], "shots_spotted": [ - 2952 + 2951 ], "steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -59957,25 +59949,25 @@ export default { }, "player_aim_weapon_stats_var_samp_order_by": { "first_bullet_hits": [ - 2952 + 2951 ], "first_bullet_shots": [ - 2952 + 2951 ], "hits": [ - 2952 + 2951 ], "hits_spotted": [ - 2952 + 2951 ], "shots": [ - 2952 + 2951 ], "shots_spotted": [ - 2952 + 2951 ], "steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -60009,25 +60001,25 @@ export default { }, "player_aim_weapon_stats_variance_order_by": { "first_bullet_hits": [ - 2952 + 2951 ], "first_bullet_shots": [ - 2952 + 2951 ], "hits": [ - 2952 + 2951 ], "hits_spotted": [ - 2952 + 2951 ], "shots": [ - 2952 + 2951 ], "shots_spotted": [ - 2952 + 2951 ], "steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -60035,22 +60027,22 @@ export default { }, "player_assists": { "attacked_player": [ - 3910 + 3909 ], "attacked_steam_id": [ - 258 + 257 ], "attacked_team": [ 80 ], "attacker_steam_id": [ - 258 + 257 ], "attacker_team": [ 80 ], "deleted_at": [ - 4499 + 4498 ], "flash": [ 5 @@ -60059,25 +60051,25 @@ export default { 5 ], "match": [ - 2767 + 2766 ], "match_id": [ - 4999 + 4998 ], "match_map": [ - 2605 + 2604 ], "match_map_id": [ - 4999 + 4998 ], "player": [ - 3910 + 3909 ], "round": [ 40 ], "time": [ - 4499 + 4498 ], "__typename": [ 80 @@ -60085,10 +60077,10 @@ export default { }, "player_assists_aggregate": { "aggregate": [ - 3096 + 3095 ], "nodes": [ - 3090 + 3089 ], "__typename": [ 80 @@ -60096,13 +60088,13 @@ export default { }, "player_assists_aggregate_bool_exp": { "bool_and": [ - 3093 + 3092 ], "bool_or": [ - 3094 + 3093 ], "count": [ - 3095 + 3094 ], "__typename": [ 80 @@ -60110,13 +60102,13 @@ export default { }, "player_assists_aggregate_bool_exp_bool_and": { "arguments": [ - 3114 + 3113 ], "distinct": [ 5 ], "filter": [ - 3101 + 3100 ], "predicate": [ 6 @@ -60127,13 +60119,13 @@ export default { }, "player_assists_aggregate_bool_exp_bool_or": { "arguments": [ - 3115 + 3114 ], "distinct": [ 5 ], "filter": [ - 3101 + 3100 ], "predicate": [ 6 @@ -60144,13 +60136,13 @@ export default { }, "player_assists_aggregate_bool_exp_count": { "arguments": [ - 3113 + 3112 ], "distinct": [ 5 ], "filter": [ - 3101 + 3100 ], "predicate": [ 41 @@ -60161,13 +60153,13 @@ export default { }, "player_assists_aggregate_fields": { "avg": [ - 3099 + 3098 ], "count": [ 40, { "columns": [ - 3113, + 3112, "[player_assists_select_column!]" ], "distinct": [ @@ -60175,6 +60167,44 @@ export default { ] } ], + "max": [ + 3104 + ], + "min": [ + 3106 + ], + "stddev": [ + 3116 + ], + "stddev_pop": [ + 3118 + ], + "stddev_samp": [ + 3120 + ], + "sum": [ + 3124 + ], + "var_pop": [ + 3128 + ], + "var_samp": [ + 3130 + ], + "variance": [ + 3132 + ], + "__typename": [ + 80 + ] + }, + "player_assists_aggregate_order_by": { + "avg": [ + 3099 + ], + "count": [ + 2951 + ], "max": [ 3105 ], @@ -60206,50 +60236,12 @@ export default { 80 ] }, - "player_assists_aggregate_order_by": { - "avg": [ - 3100 - ], - "count": [ - 2952 - ], - "max": [ - 3106 - ], - "min": [ - 3108 - ], - "stddev": [ - 3118 - ], - "stddev_pop": [ - 3120 - ], - "stddev_samp": [ - 3122 - ], - "sum": [ - 3126 - ], - "var_pop": [ - 3130 - ], - "var_samp": [ - 3132 - ], - "variance": [ - 3134 - ], - "__typename": [ - 80 - ] - }, "player_assists_arr_rel_insert_input": { "data": [ - 3104 + 3103 ], "on_conflict": [ - 3110 + 3109 ], "__typename": [ 80 @@ -60271,13 +60263,13 @@ export default { }, "player_assists_avg_order_by": { "attacked_steam_id": [ - 2952 + 2951 ], "attacker_steam_id": [ - 2952 + 2951 ], "round": [ - 2952 + 2951 ], "__typename": [ 80 @@ -60285,31 +60277,31 @@ export default { }, "player_assists_bool_exp": { "_and": [ - 3101 + 3100 ], "_not": [ - 3101 + 3100 ], "_or": [ - 3101 + 3100 ], "attacked_player": [ - 3914 + 3913 ], "attacked_steam_id": [ - 260 + 259 ], "attacked_team": [ 82 ], "attacker_steam_id": [ - 260 + 259 ], "attacker_team": [ 82 ], "deleted_at": [ - 4500 + 4499 ], "flash": [ 6 @@ -60318,25 +60310,25 @@ export default { 6 ], "match": [ - 2776 + 2775 ], "match_id": [ - 5001 + 5000 ], "match_map": [ - 2614 + 2613 ], "match_map_id": [ - 5001 + 5000 ], "player": [ - 3914 + 3913 ], "round": [ 41 ], "time": [ - 4500 + 4499 ], "__typename": [ 80 @@ -60345,10 +60337,10 @@ export default { "player_assists_constraint": {}, "player_assists_inc_input": { "attacked_steam_id": [ - 258 + 257 ], "attacker_steam_id": [ - 258 + 257 ], "round": [ 40 @@ -60359,46 +60351,46 @@ export default { }, "player_assists_insert_input": { "attacked_player": [ - 3921 + 3920 ], "attacked_steam_id": [ - 258 + 257 ], "attacked_team": [ 80 ], "attacker_steam_id": [ - 258 + 257 ], "attacker_team": [ 80 ], "deleted_at": [ - 4499 + 4498 ], "flash": [ 5 ], "match": [ - 2785 + 2784 ], "match_id": [ - 4999 + 4998 ], "match_map": [ - 2623 + 2622 ], "match_map_id": [ - 4999 + 4998 ], "player": [ - 3921 + 3920 ], "round": [ 40 ], "time": [ - 4499 + 4498 ], "__typename": [ 80 @@ -60406,31 +60398,31 @@ export default { }, "player_assists_max_fields": { "attacked_steam_id": [ - 258 + 257 ], "attacked_team": [ 80 ], "attacker_steam_id": [ - 258 + 257 ], "attacker_team": [ 80 ], "deleted_at": [ - 4499 + 4498 ], "match_id": [ - 4999 + 4998 ], "match_map_id": [ - 4999 + 4998 ], "round": [ 40 ], "time": [ - 4499 + 4498 ], "__typename": [ 80 @@ -60438,31 +60430,31 @@ export default { }, "player_assists_max_order_by": { "attacked_steam_id": [ - 2952 + 2951 ], "attacked_team": [ - 2952 + 2951 ], "attacker_steam_id": [ - 2952 + 2951 ], "attacker_team": [ - 2952 + 2951 ], "deleted_at": [ - 2952 + 2951 ], "match_id": [ - 2952 + 2951 ], "match_map_id": [ - 2952 + 2951 ], "round": [ - 2952 + 2951 ], "time": [ - 2952 + 2951 ], "__typename": [ 80 @@ -60470,31 +60462,31 @@ export default { }, "player_assists_min_fields": { "attacked_steam_id": [ - 258 + 257 ], "attacked_team": [ 80 ], "attacker_steam_id": [ - 258 + 257 ], "attacker_team": [ 80 ], "deleted_at": [ - 4499 + 4498 ], "match_id": [ - 4999 + 4998 ], "match_map_id": [ - 4999 + 4998 ], "round": [ 40 ], "time": [ - 4499 + 4498 ], "__typename": [ 80 @@ -60502,31 +60494,31 @@ export default { }, "player_assists_min_order_by": { "attacked_steam_id": [ - 2952 + 2951 ], "attacked_team": [ - 2952 + 2951 ], "attacker_steam_id": [ - 2952 + 2951 ], "attacker_team": [ - 2952 + 2951 ], "deleted_at": [ - 2952 + 2951 ], "match_id": [ - 2952 + 2951 ], "match_map_id": [ - 2952 + 2951 ], "round": [ - 2952 + 2951 ], "time": [ - 2952 + 2951 ], "__typename": [ 80 @@ -60537,7 +60529,7 @@ export default { 40 ], "returning": [ - 3090 + 3089 ], "__typename": [ 80 @@ -60545,13 +60537,13 @@ export default { }, "player_assists_on_conflict": { "constraint": [ - 3102 + 3101 ], "update_columns": [ - 3127 + 3126 ], "where": [ - 3101 + 3100 ], "__typename": [ 80 @@ -60559,49 +60551,49 @@ export default { }, "player_assists_order_by": { "attacked_player": [ - 3923 + 3922 ], "attacked_steam_id": [ - 2952 + 2951 ], "attacked_team": [ - 2952 + 2951 ], "attacker_steam_id": [ - 2952 + 2951 ], "attacker_team": [ - 2952 + 2951 ], "deleted_at": [ - 2952 + 2951 ], "flash": [ - 2952 + 2951 ], "is_team_assist": [ - 2952 + 2951 ], "match": [ - 2787 + 2786 ], "match_id": [ - 2952 + 2951 ], "match_map": [ - 2625 + 2624 ], "match_map_id": [ - 2952 + 2951 ], "player": [ - 3923 + 3922 ], "round": [ - 2952 + 2951 ], "time": [ - 2952 + 2951 ], "__typename": [ 80 @@ -60609,16 +60601,16 @@ export default { }, "player_assists_pk_columns_input": { "attacked_steam_id": [ - 258 + 257 ], "attacker_steam_id": [ - 258 + 257 ], "match_map_id": [ - 4999 + 4998 ], "time": [ - 4499 + 4498 ], "__typename": [ 80 @@ -60629,34 +60621,34 @@ export default { "player_assists_select_column_player_assists_aggregate_bool_exp_bool_or_arguments_columns": {}, "player_assists_set_input": { "attacked_steam_id": [ - 258 + 257 ], "attacked_team": [ 80 ], "attacker_steam_id": [ - 258 + 257 ], "attacker_team": [ 80 ], "deleted_at": [ - 4499 + 4498 ], "flash": [ 5 ], "match_id": [ - 4999 + 4998 ], "match_map_id": [ - 4999 + 4998 ], "round": [ 40 ], "time": [ - 4499 + 4498 ], "__typename": [ 80 @@ -60678,13 +60670,13 @@ export default { }, "player_assists_stddev_order_by": { "attacked_steam_id": [ - 2952 + 2951 ], "attacker_steam_id": [ - 2952 + 2951 ], "round": [ - 2952 + 2951 ], "__typename": [ 80 @@ -60706,13 +60698,13 @@ export default { }, "player_assists_stddev_pop_order_by": { "attacked_steam_id": [ - 2952 + 2951 ], "attacker_steam_id": [ - 2952 + 2951 ], "round": [ - 2952 + 2951 ], "__typename": [ 80 @@ -60734,13 +60726,13 @@ export default { }, "player_assists_stddev_samp_order_by": { "attacked_steam_id": [ - 2952 + 2951 ], "attacker_steam_id": [ - 2952 + 2951 ], "round": [ - 2952 + 2951 ], "__typename": [ 80 @@ -60748,10 +60740,10 @@ export default { }, "player_assists_stream_cursor_input": { "initial_value": [ - 3124 + 3123 ], "ordering": [ - 314 + 313 ], "__typename": [ 80 @@ -60759,34 +60751,34 @@ export default { }, "player_assists_stream_cursor_value_input": { "attacked_steam_id": [ - 258 + 257 ], "attacked_team": [ 80 ], "attacker_steam_id": [ - 258 + 257 ], "attacker_team": [ 80 ], "deleted_at": [ - 4499 + 4498 ], "flash": [ 5 ], "match_id": [ - 4999 + 4998 ], "match_map_id": [ - 4999 + 4998 ], "round": [ 40 ], "time": [ - 4499 + 4498 ], "__typename": [ 80 @@ -60794,10 +60786,10 @@ export default { }, "player_assists_sum_fields": { "attacked_steam_id": [ - 258 + 257 ], "attacker_steam_id": [ - 258 + 257 ], "round": [ 40 @@ -60808,13 +60800,13 @@ export default { }, "player_assists_sum_order_by": { "attacked_steam_id": [ - 2952 + 2951 ], "attacker_steam_id": [ - 2952 + 2951 ], "round": [ - 2952 + 2951 ], "__typename": [ 80 @@ -60823,13 +60815,13 @@ export default { "player_assists_update_column": {}, "player_assists_updates": { "_inc": [ - 3103 + 3102 ], "_set": [ - 3116 + 3115 ], "where": [ - 3101 + 3100 ], "__typename": [ 80 @@ -60851,13 +60843,13 @@ export default { }, "player_assists_var_pop_order_by": { "attacked_steam_id": [ - 2952 + 2951 ], "attacker_steam_id": [ - 2952 + 2951 ], "round": [ - 2952 + 2951 ], "__typename": [ 80 @@ -60879,13 +60871,13 @@ export default { }, "player_assists_var_samp_order_by": { "attacked_steam_id": [ - 2952 + 2951 ], "attacker_steam_id": [ - 2952 + 2951 ], "round": [ - 2952 + 2951 ], "__typename": [ 80 @@ -60907,13 +60899,13 @@ export default { }, "player_assists_variance_order_by": { "attacked_steam_id": [ - 2952 + 2951 ], "attacker_steam_id": [ - 2952 + 2951 ], "round": [ - 2952 + 2951 ], "__typename": [ 80 @@ -60921,28 +60913,28 @@ export default { }, "player_career_stats_v": { "accuracy": [ - 2950 + 2949 ], "accuracy_spotted": [ - 2950 + 2949 ], "counter_strafe_pct": [ - 2950 + 2949 ], "crosshair_deg": [ - 2950 + 2949 ], "enemy_blind_pr": [ - 2950 + 2949 ], "flash_assists_pr": [ - 2950 + 2949 ], "hs_pct": [ - 2950 + 2949 ], "kast_pct": [ - 2950 + 2949 ], "maps": [ 40 @@ -60954,19 +60946,19 @@ export default { 40 ], "steam_id": [ - 258 + 257 ], "survival_pct": [ - 2950 + 2949 ], "time_to_damage_s": [ - 2950 + 2949 ], "traded_death_pct": [ - 2950 + 2949 ], "util_efficiency": [ - 2950 + 2949 ], "__typename": [ 80 @@ -60974,10 +60966,10 @@ export default { }, "player_career_stats_v_aggregate": { "aggregate": [ - 3137 + 3136 ], "nodes": [ - 3135 + 3134 ], "__typename": [ 80 @@ -60985,13 +60977,13 @@ export default { }, "player_career_stats_v_aggregate_fields": { "avg": [ - 3138 + 3137 ], "count": [ 40, { "columns": [ - 3143, + 3142, "[player_career_stats_v_select_column!]" ], "distinct": [ @@ -61000,31 +60992,31 @@ export default { } ], "max": [ - 3140 + 3139 ], "min": [ - 3141 + 3140 ], "stddev": [ - 3144 + 3143 ], "stddev_pop": [ - 3145 + 3144 ], "stddev_samp": [ - 3146 + 3145 ], "sum": [ - 3149 + 3148 ], "var_pop": [ - 3150 + 3149 ], "var_samp": [ - 3151 + 3150 ], "variance": [ - 3152 + 3151 ], "__typename": [ 80 @@ -61085,37 +61077,37 @@ export default { }, "player_career_stats_v_bool_exp": { "_and": [ - 3139 + 3138 ], "_not": [ - 3139 + 3138 ], "_or": [ - 3139 + 3138 ], "accuracy": [ - 2951 + 2950 ], "accuracy_spotted": [ - 2951 + 2950 ], "counter_strafe_pct": [ - 2951 + 2950 ], "crosshair_deg": [ - 2951 + 2950 ], "enemy_blind_pr": [ - 2951 + 2950 ], "flash_assists_pr": [ - 2951 + 2950 ], "hs_pct": [ - 2951 + 2950 ], "kast_pct": [ - 2951 + 2950 ], "maps": [ 41 @@ -61127,19 +61119,19 @@ export default { 41 ], "steam_id": [ - 260 + 259 ], "survival_pct": [ - 2951 + 2950 ], "time_to_damage_s": [ - 2951 + 2950 ], "traded_death_pct": [ - 2951 + 2950 ], "util_efficiency": [ - 2951 + 2950 ], "__typename": [ 80 @@ -61147,28 +61139,28 @@ export default { }, "player_career_stats_v_max_fields": { "accuracy": [ - 2950 + 2949 ], "accuracy_spotted": [ - 2950 + 2949 ], "counter_strafe_pct": [ - 2950 + 2949 ], "crosshair_deg": [ - 2950 + 2949 ], "enemy_blind_pr": [ - 2950 + 2949 ], "flash_assists_pr": [ - 2950 + 2949 ], "hs_pct": [ - 2950 + 2949 ], "kast_pct": [ - 2950 + 2949 ], "maps": [ 40 @@ -61180,19 +61172,19 @@ export default { 40 ], "steam_id": [ - 258 + 257 ], "survival_pct": [ - 2950 + 2949 ], "time_to_damage_s": [ - 2950 + 2949 ], "traded_death_pct": [ - 2950 + 2949 ], "util_efficiency": [ - 2950 + 2949 ], "__typename": [ 80 @@ -61200,28 +61192,28 @@ export default { }, "player_career_stats_v_min_fields": { "accuracy": [ - 2950 + 2949 ], "accuracy_spotted": [ - 2950 + 2949 ], "counter_strafe_pct": [ - 2950 + 2949 ], "crosshair_deg": [ - 2950 + 2949 ], "enemy_blind_pr": [ - 2950 + 2949 ], "flash_assists_pr": [ - 2950 + 2949 ], "hs_pct": [ - 2950 + 2949 ], "kast_pct": [ - 2950 + 2949 ], "maps": [ 40 @@ -61233,19 +61225,19 @@ export default { 40 ], "steam_id": [ - 258 + 257 ], "survival_pct": [ - 2950 + 2949 ], "time_to_damage_s": [ - 2950 + 2949 ], "traded_death_pct": [ - 2950 + 2949 ], "util_efficiency": [ - 2950 + 2949 ], "__typename": [ 80 @@ -61253,52 +61245,52 @@ export default { }, "player_career_stats_v_order_by": { "accuracy": [ - 2952 + 2951 ], "accuracy_spotted": [ - 2952 + 2951 ], "counter_strafe_pct": [ - 2952 + 2951 ], "crosshair_deg": [ - 2952 + 2951 ], "enemy_blind_pr": [ - 2952 + 2951 ], "flash_assists_pr": [ - 2952 + 2951 ], "hs_pct": [ - 2952 + 2951 ], "kast_pct": [ - 2952 + 2951 ], "maps": [ - 2952 + 2951 ], "premier_rank": [ - 2952 + 2951 ], "rounds": [ - 2952 + 2951 ], "steam_id": [ - 2952 + 2951 ], "survival_pct": [ - 2952 + 2951 ], "time_to_damage_s": [ - 2952 + 2951 ], "traded_death_pct": [ - 2952 + 2951 ], "util_efficiency": [ - 2952 + 2951 ], "__typename": [ 80 @@ -61466,10 +61458,10 @@ export default { }, "player_career_stats_v_stream_cursor_input": { "initial_value": [ - 3148 + 3147 ], "ordering": [ - 314 + 313 ], "__typename": [ 80 @@ -61477,28 +61469,28 @@ export default { }, "player_career_stats_v_stream_cursor_value_input": { "accuracy": [ - 2950 + 2949 ], "accuracy_spotted": [ - 2950 + 2949 ], "counter_strafe_pct": [ - 2950 + 2949 ], "crosshair_deg": [ - 2950 + 2949 ], "enemy_blind_pr": [ - 2950 + 2949 ], "flash_assists_pr": [ - 2950 + 2949 ], "hs_pct": [ - 2950 + 2949 ], "kast_pct": [ - 2950 + 2949 ], "maps": [ 40 @@ -61510,19 +61502,19 @@ export default { 40 ], "steam_id": [ - 258 + 257 ], "survival_pct": [ - 2950 + 2949 ], "time_to_damage_s": [ - 2950 + 2949 ], "traded_death_pct": [ - 2950 + 2949 ], "util_efficiency": [ - 2950 + 2949 ], "__typename": [ 80 @@ -61530,28 +61522,28 @@ export default { }, "player_career_stats_v_sum_fields": { "accuracy": [ - 2950 + 2949 ], "accuracy_spotted": [ - 2950 + 2949 ], "counter_strafe_pct": [ - 2950 + 2949 ], "crosshair_deg": [ - 2950 + 2949 ], "enemy_blind_pr": [ - 2950 + 2949 ], "flash_assists_pr": [ - 2950 + 2949 ], "hs_pct": [ - 2950 + 2949 ], "kast_pct": [ - 2950 + 2949 ], "maps": [ 40 @@ -61563,19 +61555,19 @@ export default { 40 ], "steam_id": [ - 258 + 257 ], "survival_pct": [ - 2950 + 2949 ], "time_to_damage_s": [ - 2950 + 2949 ], "traded_death_pct": [ - 2950 + 2949 ], "util_efficiency": [ - 2950 + 2949 ], "__typename": [ 80 @@ -61751,10 +61743,10 @@ export default { 80 ], "attacked_player": [ - 3910 + 3909 ], "attacked_steam_id": [ - 258 + 257 ], "attacked_team": [ 80 @@ -61766,7 +61758,7 @@ export default { 80 ], "attacker_steam_id": [ - 258 + 257 ], "attacker_team": [ 80 @@ -61778,7 +61770,7 @@ export default { 40 ], "deleted_at": [ - 4499 + 4498 ], "health": [ 40 @@ -61787,31 +61779,31 @@ export default { 80 ], "id": [ - 4999 + 4998 ], "match": [ - 2767 + 2766 ], "match_id": [ - 4999 + 4998 ], "match_map": [ - 2605 + 2604 ], "match_map_id": [ - 4999 + 4998 ], "player": [ - 3910 + 3909 ], "round": [ - 2950 + 2949 ], "team_damage": [ 5 ], "time": [ - 4499 + 4498 ], "with": [ 80 @@ -61822,10 +61814,10 @@ export default { }, "player_damages_aggregate": { "aggregate": [ - 3157 + 3156 ], "nodes": [ - 3153 + 3152 ], "__typename": [ 80 @@ -61833,7 +61825,7 @@ export default { }, "player_damages_aggregate_bool_exp": { "count": [ - 3156 + 3155 ], "__typename": [ 80 @@ -61841,13 +61833,13 @@ export default { }, "player_damages_aggregate_bool_exp_count": { "arguments": [ - 3174 + 3173 ], "distinct": [ 5 ], "filter": [ - 3162 + 3161 ], "predicate": [ 41 @@ -61858,13 +61850,13 @@ export default { }, "player_damages_aggregate_fields": { "avg": [ - 3160 + 3159 ], "count": [ 40, { "columns": [ - 3174, + 3173, "[player_damages_select_column!]" ], "distinct": [ @@ -61872,6 +61864,44 @@ export default { ] } ], + "max": [ + 3165 + ], + "min": [ + 3167 + ], + "stddev": [ + 3175 + ], + "stddev_pop": [ + 3177 + ], + "stddev_samp": [ + 3179 + ], + "sum": [ + 3183 + ], + "var_pop": [ + 3187 + ], + "var_samp": [ + 3189 + ], + "variance": [ + 3191 + ], + "__typename": [ + 80 + ] + }, + "player_damages_aggregate_order_by": { + "avg": [ + 3160 + ], + "count": [ + 2951 + ], "max": [ 3166 ], @@ -61903,50 +61933,12 @@ export default { 80 ] }, - "player_damages_aggregate_order_by": { - "avg": [ - 3161 - ], - "count": [ - 2952 - ], - "max": [ - 3167 - ], - "min": [ - 3169 - ], - "stddev": [ - 3177 - ], - "stddev_pop": [ - 3179 - ], - "stddev_samp": [ - 3181 - ], - "sum": [ - 3185 - ], - "var_pop": [ - 3189 - ], - "var_samp": [ - 3191 - ], - "variance": [ - 3193 - ], - "__typename": [ - 80 - ] - }, "player_damages_arr_rel_insert_input": { "data": [ - 3165 + 3164 ], "on_conflict": [ - 3171 + 3170 ], "__typename": [ 80 @@ -61980,25 +61972,25 @@ export default { }, "player_damages_avg_order_by": { "armor": [ - 2952 + 2951 ], "attacked_steam_id": [ - 2952 + 2951 ], "attacker_steam_id": [ - 2952 + 2951 ], "damage": [ - 2952 + 2951 ], "damage_armor": [ - 2952 + 2951 ], "health": [ - 2952 + 2951 ], "round": [ - 2952 + 2951 ], "__typename": [ 80 @@ -62006,13 +61998,13 @@ export default { }, "player_damages_bool_exp": { "_and": [ - 3162 + 3161 ], "_not": [ - 3162 + 3161 ], "_or": [ - 3162 + 3161 ], "armor": [ 41 @@ -62024,10 +62016,10 @@ export default { 82 ], "attacked_player": [ - 3914 + 3913 ], "attacked_steam_id": [ - 260 + 259 ], "attacked_team": [ 82 @@ -62039,7 +62031,7 @@ export default { 82 ], "attacker_steam_id": [ - 260 + 259 ], "attacker_team": [ 82 @@ -62051,7 +62043,7 @@ export default { 41 ], "deleted_at": [ - 4500 + 4499 ], "health": [ 41 @@ -62060,31 +62052,31 @@ export default { 82 ], "id": [ - 5001 + 5000 ], "match": [ - 2776 + 2775 ], "match_id": [ - 5001 + 5000 ], "match_map": [ - 2614 + 2613 ], "match_map_id": [ - 5001 + 5000 ], "player": [ - 3914 + 3913 ], "round": [ - 2951 + 2950 ], "team_damage": [ 6 ], "time": [ - 4500 + 4499 ], "with": [ 82 @@ -62099,10 +62091,10 @@ export default { 40 ], "attacked_steam_id": [ - 258 + 257 ], "attacker_steam_id": [ - 258 + 257 ], "damage": [ 40 @@ -62114,7 +62106,7 @@ export default { 40 ], "round": [ - 2950 + 2949 ], "__typename": [ 80 @@ -62131,10 +62123,10 @@ export default { 80 ], "attacked_player": [ - 3921 + 3920 ], "attacked_steam_id": [ - 258 + 257 ], "attacked_team": [ 80 @@ -62146,7 +62138,7 @@ export default { 80 ], "attacker_steam_id": [ - 258 + 257 ], "attacker_team": [ 80 @@ -62158,7 +62150,7 @@ export default { 40 ], "deleted_at": [ - 4499 + 4498 ], "health": [ 40 @@ -62167,28 +62159,28 @@ export default { 80 ], "id": [ - 4999 + 4998 ], "match": [ - 2785 + 2784 ], "match_id": [ - 4999 + 4998 ], "match_map": [ - 2623 + 2622 ], "match_map_id": [ - 4999 + 4998 ], "player": [ - 3921 + 3920 ], "round": [ - 2950 + 2949 ], "time": [ - 4499 + 4498 ], "with": [ 80 @@ -62208,7 +62200,7 @@ export default { 80 ], "attacked_steam_id": [ - 258 + 257 ], "attacked_team": [ 80 @@ -62220,7 +62212,7 @@ export default { 80 ], "attacker_steam_id": [ - 258 + 257 ], "attacker_team": [ 80 @@ -62232,7 +62224,7 @@ export default { 40 ], "deleted_at": [ - 4499 + 4498 ], "health": [ 40 @@ -62241,19 +62233,19 @@ export default { 80 ], "id": [ - 4999 + 4998 ], "match_id": [ - 4999 + 4998 ], "match_map_id": [ - 4999 + 4998 ], "round": [ - 2950 + 2949 ], "time": [ - 4499 + 4498 ], "with": [ 80 @@ -62264,64 +62256,64 @@ export default { }, "player_damages_max_order_by": { "armor": [ - 2952 + 2951 ], "attacked_location": [ - 2952 + 2951 ], "attacked_location_coordinates": [ - 2952 + 2951 ], "attacked_steam_id": [ - 2952 + 2951 ], "attacked_team": [ - 2952 + 2951 ], "attacker_location": [ - 2952 + 2951 ], "attacker_location_coordinates": [ - 2952 + 2951 ], "attacker_steam_id": [ - 2952 + 2951 ], "attacker_team": [ - 2952 + 2951 ], "damage": [ - 2952 + 2951 ], "damage_armor": [ - 2952 + 2951 ], "deleted_at": [ - 2952 + 2951 ], "health": [ - 2952 + 2951 ], "hitgroup": [ - 2952 + 2951 ], "id": [ - 2952 + 2951 ], "match_id": [ - 2952 + 2951 ], "match_map_id": [ - 2952 + 2951 ], "round": [ - 2952 + 2951 ], "time": [ - 2952 + 2951 ], "with": [ - 2952 + 2951 ], "__typename": [ 80 @@ -62338,7 +62330,7 @@ export default { 80 ], "attacked_steam_id": [ - 258 + 257 ], "attacked_team": [ 80 @@ -62350,7 +62342,7 @@ export default { 80 ], "attacker_steam_id": [ - 258 + 257 ], "attacker_team": [ 80 @@ -62362,7 +62354,7 @@ export default { 40 ], "deleted_at": [ - 4499 + 4498 ], "health": [ 40 @@ -62371,19 +62363,19 @@ export default { 80 ], "id": [ - 4999 + 4998 ], "match_id": [ - 4999 + 4998 ], "match_map_id": [ - 4999 + 4998 ], "round": [ - 2950 + 2949 ], "time": [ - 4499 + 4498 ], "with": [ 80 @@ -62394,64 +62386,64 @@ export default { }, "player_damages_min_order_by": { "armor": [ - 2952 + 2951 ], "attacked_location": [ - 2952 + 2951 ], "attacked_location_coordinates": [ - 2952 + 2951 ], "attacked_steam_id": [ - 2952 + 2951 ], "attacked_team": [ - 2952 + 2951 ], "attacker_location": [ - 2952 + 2951 ], "attacker_location_coordinates": [ - 2952 + 2951 ], "attacker_steam_id": [ - 2952 + 2951 ], "attacker_team": [ - 2952 + 2951 ], "damage": [ - 2952 + 2951 ], "damage_armor": [ - 2952 + 2951 ], "deleted_at": [ - 2952 + 2951 ], "health": [ - 2952 + 2951 ], "hitgroup": [ - 2952 + 2951 ], "id": [ - 2952 + 2951 ], "match_id": [ - 2952 + 2951 ], "match_map_id": [ - 2952 + 2951 ], "round": [ - 2952 + 2951 ], "time": [ - 2952 + 2951 ], "with": [ - 2952 + 2951 ], "__typename": [ 80 @@ -62462,7 +62454,7 @@ export default { 40 ], "returning": [ - 3153 + 3152 ], "__typename": [ 80 @@ -62470,13 +62462,13 @@ export default { }, "player_damages_on_conflict": { "constraint": [ - 3163 + 3162 ], "update_columns": [ - 3186 + 3185 ], "where": [ - 3162 + 3161 ], "__typename": [ 80 @@ -62484,79 +62476,79 @@ export default { }, "player_damages_order_by": { "armor": [ - 2952 + 2951 ], "attacked_location": [ - 2952 + 2951 ], "attacked_location_coordinates": [ - 2952 + 2951 ], "attacked_player": [ - 3923 + 3922 ], "attacked_steam_id": [ - 2952 + 2951 ], "attacked_team": [ - 2952 + 2951 ], "attacker_location": [ - 2952 + 2951 ], "attacker_location_coordinates": [ - 2952 + 2951 ], "attacker_steam_id": [ - 2952 + 2951 ], "attacker_team": [ - 2952 + 2951 ], "damage": [ - 2952 + 2951 ], "damage_armor": [ - 2952 + 2951 ], "deleted_at": [ - 2952 + 2951 ], "health": [ - 2952 + 2951 ], "hitgroup": [ - 2952 + 2951 ], "id": [ - 2952 + 2951 ], "match": [ - 2787 + 2786 ], "match_id": [ - 2952 + 2951 ], "match_map": [ - 2625 + 2624 ], "match_map_id": [ - 2952 + 2951 ], "player": [ - 3923 + 3922 ], "round": [ - 2952 + 2951 ], "team_damage": [ - 2952 + 2951 ], "time": [ - 2952 + 2951 ], "with": [ - 2952 + 2951 ], "__typename": [ 80 @@ -62564,13 +62556,13 @@ export default { }, "player_damages_pk_columns_input": { "id": [ - 4999 + 4998 ], "match_map_id": [ - 4999 + 4998 ], "time": [ - 4499 + 4498 ], "__typename": [ 80 @@ -62588,7 +62580,7 @@ export default { 80 ], "attacked_steam_id": [ - 258 + 257 ], "attacked_team": [ 80 @@ -62600,7 +62592,7 @@ export default { 80 ], "attacker_steam_id": [ - 258 + 257 ], "attacker_team": [ 80 @@ -62612,7 +62604,7 @@ export default { 40 ], "deleted_at": [ - 4499 + 4498 ], "health": [ 40 @@ -62621,19 +62613,19 @@ export default { 80 ], "id": [ - 4999 + 4998 ], "match_id": [ - 4999 + 4998 ], "match_map_id": [ - 4999 + 4998 ], "round": [ - 2950 + 2949 ], "time": [ - 4499 + 4498 ], "with": [ 80 @@ -62670,25 +62662,25 @@ export default { }, "player_damages_stddev_order_by": { "armor": [ - 2952 + 2951 ], "attacked_steam_id": [ - 2952 + 2951 ], "attacker_steam_id": [ - 2952 + 2951 ], "damage": [ - 2952 + 2951 ], "damage_armor": [ - 2952 + 2951 ], "health": [ - 2952 + 2951 ], "round": [ - 2952 + 2951 ], "__typename": [ 80 @@ -62722,25 +62714,25 @@ export default { }, "player_damages_stddev_pop_order_by": { "armor": [ - 2952 + 2951 ], "attacked_steam_id": [ - 2952 + 2951 ], "attacker_steam_id": [ - 2952 + 2951 ], "damage": [ - 2952 + 2951 ], "damage_armor": [ - 2952 + 2951 ], "health": [ - 2952 + 2951 ], "round": [ - 2952 + 2951 ], "__typename": [ 80 @@ -62774,25 +62766,25 @@ export default { }, "player_damages_stddev_samp_order_by": { "armor": [ - 2952 + 2951 ], "attacked_steam_id": [ - 2952 + 2951 ], "attacker_steam_id": [ - 2952 + 2951 ], "damage": [ - 2952 + 2951 ], "damage_armor": [ - 2952 + 2951 ], "health": [ - 2952 + 2951 ], "round": [ - 2952 + 2951 ], "__typename": [ 80 @@ -62800,10 +62792,10 @@ export default { }, "player_damages_stream_cursor_input": { "initial_value": [ - 3183 + 3182 ], "ordering": [ - 314 + 313 ], "__typename": [ 80 @@ -62820,7 +62812,7 @@ export default { 80 ], "attacked_steam_id": [ - 258 + 257 ], "attacked_team": [ 80 @@ -62832,7 +62824,7 @@ export default { 80 ], "attacker_steam_id": [ - 258 + 257 ], "attacker_team": [ 80 @@ -62844,7 +62836,7 @@ export default { 40 ], "deleted_at": [ - 4499 + 4498 ], "health": [ 40 @@ -62853,19 +62845,19 @@ export default { 80 ], "id": [ - 4999 + 4998 ], "match_id": [ - 4999 + 4998 ], "match_map_id": [ - 4999 + 4998 ], "round": [ - 2950 + 2949 ], "time": [ - 4499 + 4498 ], "with": [ 80 @@ -62879,10 +62871,10 @@ export default { 40 ], "attacked_steam_id": [ - 258 + 257 ], "attacker_steam_id": [ - 258 + 257 ], "damage": [ 40 @@ -62894,7 +62886,7 @@ export default { 40 ], "round": [ - 2950 + 2949 ], "__typename": [ 80 @@ -62902,25 +62894,25 @@ export default { }, "player_damages_sum_order_by": { "armor": [ - 2952 + 2951 ], "attacked_steam_id": [ - 2952 + 2951 ], "attacker_steam_id": [ - 2952 + 2951 ], "damage": [ - 2952 + 2951 ], "damage_armor": [ - 2952 + 2951 ], "health": [ - 2952 + 2951 ], "round": [ - 2952 + 2951 ], "__typename": [ 80 @@ -62929,13 +62921,13 @@ export default { "player_damages_update_column": {}, "player_damages_updates": { "_inc": [ - 3164 + 3163 ], "_set": [ - 3175 + 3174 ], "where": [ - 3162 + 3161 ], "__typename": [ 80 @@ -62969,25 +62961,25 @@ export default { }, "player_damages_var_pop_order_by": { "armor": [ - 2952 + 2951 ], "attacked_steam_id": [ - 2952 + 2951 ], "attacker_steam_id": [ - 2952 + 2951 ], "damage": [ - 2952 + 2951 ], "damage_armor": [ - 2952 + 2951 ], "health": [ - 2952 + 2951 ], "round": [ - 2952 + 2951 ], "__typename": [ 80 @@ -63021,25 +63013,25 @@ export default { }, "player_damages_var_samp_order_by": { "armor": [ - 2952 + 2951 ], "attacked_steam_id": [ - 2952 + 2951 ], "attacker_steam_id": [ - 2952 + 2951 ], "damage": [ - 2952 + 2951 ], "damage_armor": [ - 2952 + 2951 ], "health": [ - 2952 + 2951 ], "round": [ - 2952 + 2951 ], "__typename": [ 80 @@ -63073,25 +63065,25 @@ export default { }, "player_damages_variance_order_by": { "armor": [ - 2952 + 2951 ], "attacked_steam_id": [ - 2952 + 2951 ], "attacker_steam_id": [ - 2952 + 2951 ], "damage": [ - 2952 + 2951 ], "damage_armor": [ - 2952 + 2951 ], "health": [ - 2952 + 2951 ], "round": [ - 2952 + 2951 ], "__typename": [ 80 @@ -63099,40 +63091,40 @@ export default { }, "player_elo": { "actual_score": [ - 1670 + 1669 ], "assists": [ 40 ], "change": [ - 2950 + 2949 ], "created_at": [ - 4499 + 4498 ], "current": [ - 2950 + 2949 ], "damage": [ 40 ], "damage_percent": [ - 1670 + 1669 ], "deaths": [ 40 ], "expected_score": [ - 1670 + 1669 ], "impact": [ - 2950 + 2949 ], "k_factor": [ 40 ], "kda": [ - 1670 + 1669 ], "kills": [ 40 @@ -63144,40 +63136,40 @@ export default { 40 ], "match": [ - 2767 + 2766 ], "match_id": [ - 4999 + 4998 ], "opponent_team_elo_avg": [ - 1670 + 1669 ], "performance_multiplier": [ - 1670 + 1669 ], "player": [ - 3910 + 3909 ], "player_team_elo_avg": [ - 1670 + 1669 ], "season": [ - 3969 + 3968 ], "season_id": [ - 4999 + 4998 ], "series_multiplier": [ 40 ], "steam_id": [ - 258 + 257 ], "team_avg_kda": [ - 1670 + 1669 ], "type": [ - 1010 + 1009 ], "__typename": [ 80 @@ -63185,10 +63177,10 @@ export default { }, "player_elo_aggregate": { "aggregate": [ - 3196 + 3195 ], "nodes": [ - 3194 + 3193 ], "__typename": [ 80 @@ -63196,13 +63188,13 @@ export default { }, "player_elo_aggregate_fields": { "avg": [ - 3197 + 3196 ], "count": [ 40, { "columns": [ - 3208, + 3207, "[player_elo_select_column!]" ], "distinct": [ @@ -63211,31 +63203,31 @@ export default { } ], "max": [ - 3202 + 3201 ], "min": [ - 3203 + 3202 ], "stddev": [ - 3210 + 3209 ], "stddev_pop": [ - 3211 + 3210 ], "stddev_samp": [ - 3212 + 3211 ], "sum": [ - 3215 + 3214 ], "var_pop": [ - 3218 + 3217 ], "var_samp": [ - 3219 + 3218 ], "variance": [ - 3220 + 3219 ], "__typename": [ 80 @@ -63308,49 +63300,49 @@ export default { }, "player_elo_bool_exp": { "_and": [ - 3198 + 3197 ], "_not": [ - 3198 + 3197 ], "_or": [ - 3198 + 3197 ], "actual_score": [ - 1671 + 1670 ], "assists": [ 41 ], "change": [ - 2951 + 2950 ], "created_at": [ - 4500 + 4499 ], "current": [ - 2951 + 2950 ], "damage": [ 41 ], "damage_percent": [ - 1671 + 1670 ], "deaths": [ 41 ], "expected_score": [ - 1671 + 1670 ], "impact": [ - 2951 + 2950 ], "k_factor": [ 41 ], "kda": [ - 1671 + 1670 ], "kills": [ 41 @@ -63362,40 +63354,40 @@ export default { 41 ], "match": [ - 2776 + 2775 ], "match_id": [ - 5001 + 5000 ], "opponent_team_elo_avg": [ - 1671 + 1670 ], "performance_multiplier": [ - 1671 + 1670 ], "player": [ - 3914 + 3913 ], "player_team_elo_avg": [ - 1671 + 1670 ], "season": [ - 3973 + 3972 ], "season_id": [ - 5001 + 5000 ], "series_multiplier": [ 41 ], "steam_id": [ - 260 + 259 ], "team_avg_kda": [ - 1671 + 1670 ], "type": [ - 1011 + 1010 ], "__typename": [ 80 @@ -63404,37 +63396,37 @@ export default { "player_elo_constraint": {}, "player_elo_inc_input": { "actual_score": [ - 1670 + 1669 ], "assists": [ 40 ], "change": [ - 2950 + 2949 ], "current": [ - 2950 + 2949 ], "damage": [ 40 ], "damage_percent": [ - 1670 + 1669 ], "deaths": [ 40 ], "expected_score": [ - 1670 + 1669 ], "impact": [ - 2950 + 2949 ], "k_factor": [ 40 ], "kda": [ - 1670 + 1669 ], "kills": [ 40 @@ -63446,22 +63438,22 @@ export default { 40 ], "opponent_team_elo_avg": [ - 1670 + 1669 ], "performance_multiplier": [ - 1670 + 1669 ], "player_team_elo_avg": [ - 1670 + 1669 ], "series_multiplier": [ 40 ], "steam_id": [ - 258 + 257 ], "team_avg_kda": [ - 1670 + 1669 ], "__typename": [ 80 @@ -63469,40 +63461,40 @@ export default { }, "player_elo_insert_input": { "actual_score": [ - 1670 + 1669 ], "assists": [ 40 ], "change": [ - 2950 + 2949 ], "created_at": [ - 4499 + 4498 ], "current": [ - 2950 + 2949 ], "damage": [ 40 ], "damage_percent": [ - 1670 + 1669 ], "deaths": [ 40 ], "expected_score": [ - 1670 + 1669 ], "impact": [ - 2950 + 2949 ], "k_factor": [ 40 ], "kda": [ - 1670 + 1669 ], "kills": [ 40 @@ -63514,40 +63506,40 @@ export default { 40 ], "match": [ - 2785 + 2784 ], "match_id": [ - 4999 + 4998 ], "opponent_team_elo_avg": [ - 1670 + 1669 ], "performance_multiplier": [ - 1670 + 1669 ], "player": [ - 3921 + 3920 ], "player_team_elo_avg": [ - 1670 + 1669 ], "season": [ - 3980 + 3979 ], "season_id": [ - 4999 + 4998 ], "series_multiplier": [ 40 ], "steam_id": [ - 258 + 257 ], "team_avg_kda": [ - 1670 + 1669 ], "type": [ - 1010 + 1009 ], "__typename": [ 80 @@ -63555,40 +63547,40 @@ export default { }, "player_elo_max_fields": { "actual_score": [ - 1670 + 1669 ], "assists": [ 40 ], "change": [ - 2950 + 2949 ], "created_at": [ - 4499 + 4498 ], "current": [ - 2950 + 2949 ], "damage": [ 40 ], "damage_percent": [ - 1670 + 1669 ], "deaths": [ 40 ], "expected_score": [ - 1670 + 1669 ], "impact": [ - 2950 + 2949 ], "k_factor": [ 40 ], "kda": [ - 1670 + 1669 ], "kills": [ 40 @@ -63600,28 +63592,28 @@ export default { 40 ], "match_id": [ - 4999 + 4998 ], "opponent_team_elo_avg": [ - 1670 + 1669 ], "performance_multiplier": [ - 1670 + 1669 ], "player_team_elo_avg": [ - 1670 + 1669 ], "season_id": [ - 4999 + 4998 ], "series_multiplier": [ 40 ], "steam_id": [ - 258 + 257 ], "team_avg_kda": [ - 1670 + 1669 ], "__typename": [ 80 @@ -63629,40 +63621,40 @@ export default { }, "player_elo_min_fields": { "actual_score": [ - 1670 + 1669 ], "assists": [ 40 ], "change": [ - 2950 + 2949 ], "created_at": [ - 4499 + 4498 ], "current": [ - 2950 + 2949 ], "damage": [ 40 ], "damage_percent": [ - 1670 + 1669 ], "deaths": [ 40 ], "expected_score": [ - 1670 + 1669 ], "impact": [ - 2950 + 2949 ], "k_factor": [ 40 ], "kda": [ - 1670 + 1669 ], "kills": [ 40 @@ -63674,28 +63666,28 @@ export default { 40 ], "match_id": [ - 4999 + 4998 ], "opponent_team_elo_avg": [ - 1670 + 1669 ], "performance_multiplier": [ - 1670 + 1669 ], "player_team_elo_avg": [ - 1670 + 1669 ], "season_id": [ - 4999 + 4998 ], "series_multiplier": [ 40 ], "steam_id": [ - 258 + 257 ], "team_avg_kda": [ - 1670 + 1669 ], "__typename": [ 80 @@ -63706,7 +63698,7 @@ export default { 40 ], "returning": [ - 3194 + 3193 ], "__typename": [ 80 @@ -63714,13 +63706,13 @@ export default { }, "player_elo_on_conflict": { "constraint": [ - 3199 + 3198 ], "update_columns": [ - 3216 + 3215 ], "where": [ - 3198 + 3197 ], "__typename": [ 80 @@ -63728,85 +63720,85 @@ export default { }, "player_elo_order_by": { "actual_score": [ - 2952 + 2951 ], "assists": [ - 2952 + 2951 ], "change": [ - 2952 + 2951 ], "created_at": [ - 2952 + 2951 ], "current": [ - 2952 + 2951 ], "damage": [ - 2952 + 2951 ], "damage_percent": [ - 2952 + 2951 ], "deaths": [ - 2952 + 2951 ], "expected_score": [ - 2952 + 2951 ], "impact": [ - 2952 + 2951 ], "k_factor": [ - 2952 + 2951 ], "kda": [ - 2952 + 2951 ], "kills": [ - 2952 + 2951 ], "map_losses": [ - 2952 + 2951 ], "map_wins": [ - 2952 + 2951 ], "match": [ - 2787 + 2786 ], "match_id": [ - 2952 + 2951 ], "opponent_team_elo_avg": [ - 2952 + 2951 ], "performance_multiplier": [ - 2952 + 2951 ], "player": [ - 3923 + 3922 ], "player_team_elo_avg": [ - 2952 + 2951 ], "season": [ - 3982 + 3981 ], "season_id": [ - 2952 + 2951 ], "series_multiplier": [ - 2952 + 2951 ], "steam_id": [ - 2952 + 2951 ], "team_avg_kda": [ - 2952 + 2951 ], "type": [ - 2952 + 2951 ], "__typename": [ 80 @@ -63814,13 +63806,13 @@ export default { }, "player_elo_pk_columns_input": { "match_id": [ - 4999 + 4998 ], "steam_id": [ - 258 + 257 ], "type": [ - 1010 + 1009 ], "__typename": [ 80 @@ -63829,40 +63821,40 @@ export default { "player_elo_select_column": {}, "player_elo_set_input": { "actual_score": [ - 1670 + 1669 ], "assists": [ 40 ], "change": [ - 2950 + 2949 ], "created_at": [ - 4499 + 4498 ], "current": [ - 2950 + 2949 ], "damage": [ 40 ], "damage_percent": [ - 1670 + 1669 ], "deaths": [ 40 ], "expected_score": [ - 1670 + 1669 ], "impact": [ - 2950 + 2949 ], "k_factor": [ 40 ], "kda": [ - 1670 + 1669 ], "kills": [ 40 @@ -63874,31 +63866,31 @@ export default { 40 ], "match_id": [ - 4999 + 4998 ], "opponent_team_elo_avg": [ - 1670 + 1669 ], "performance_multiplier": [ - 1670 + 1669 ], "player_team_elo_avg": [ - 1670 + 1669 ], "season_id": [ - 4999 + 4998 ], "series_multiplier": [ 40 ], "steam_id": [ - 258 + 257 ], "team_avg_kda": [ - 1670 + 1669 ], "type": [ - 1010 + 1009 ], "__typename": [ 80 @@ -64101,10 +64093,10 @@ export default { }, "player_elo_stream_cursor_input": { "initial_value": [ - 3214 + 3213 ], "ordering": [ - 314 + 313 ], "__typename": [ 80 @@ -64112,40 +64104,40 @@ export default { }, "player_elo_stream_cursor_value_input": { "actual_score": [ - 1670 + 1669 ], "assists": [ 40 ], "change": [ - 2950 + 2949 ], "created_at": [ - 4499 + 4498 ], "current": [ - 2950 + 2949 ], "damage": [ 40 ], "damage_percent": [ - 1670 + 1669 ], "deaths": [ 40 ], "expected_score": [ - 1670 + 1669 ], "impact": [ - 2950 + 2949 ], "k_factor": [ 40 ], "kda": [ - 1670 + 1669 ], "kills": [ 40 @@ -64157,31 +64149,31 @@ export default { 40 ], "match_id": [ - 4999 + 4998 ], "opponent_team_elo_avg": [ - 1670 + 1669 ], "performance_multiplier": [ - 1670 + 1669 ], "player_team_elo_avg": [ - 1670 + 1669 ], "season_id": [ - 4999 + 4998 ], "series_multiplier": [ 40 ], "steam_id": [ - 258 + 257 ], "team_avg_kda": [ - 1670 + 1669 ], "type": [ - 1010 + 1009 ], "__typename": [ 80 @@ -64189,37 +64181,37 @@ export default { }, "player_elo_sum_fields": { "actual_score": [ - 1670 + 1669 ], "assists": [ 40 ], "change": [ - 2950 + 2949 ], "current": [ - 2950 + 2949 ], "damage": [ 40 ], "damage_percent": [ - 1670 + 1669 ], "deaths": [ 40 ], "expected_score": [ - 1670 + 1669 ], "impact": [ - 2950 + 2949 ], "k_factor": [ 40 ], "kda": [ - 1670 + 1669 ], "kills": [ 40 @@ -64231,22 +64223,22 @@ export default { 40 ], "opponent_team_elo_avg": [ - 1670 + 1669 ], "performance_multiplier": [ - 1670 + 1669 ], "player_team_elo_avg": [ - 1670 + 1669 ], "series_multiplier": [ 40 ], "steam_id": [ - 258 + 257 ], "team_avg_kda": [ - 1670 + 1669 ], "__typename": [ 80 @@ -64255,13 +64247,13 @@ export default { "player_elo_update_column": {}, "player_elo_updates": { "_inc": [ - 3200 + 3199 ], "_set": [ - 3209 + 3208 ], "where": [ - 3198 + 3197 ], "__typename": [ 80 @@ -64467,19 +64459,19 @@ export default { 40 ], "id": [ - 4999 + 4998 ], "match": [ - 2767 + 2766 ], "match_id": [ - 4999 + 4998 ], "observed_at": [ - 4499 + 4498 ], "player": [ - 3910 + 3909 ], "previous_rank": [ 40 @@ -64488,7 +64480,7 @@ export default { 40 ], "steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -64496,10 +64488,10 @@ export default { }, "player_faceit_rank_history_aggregate": { "aggregate": [ - 3225 + 3224 ], "nodes": [ - 3221 + 3220 ], "__typename": [ 80 @@ -64507,7 +64499,7 @@ export default { }, "player_faceit_rank_history_aggregate_bool_exp": { "count": [ - 3224 + 3223 ], "__typename": [ 80 @@ -64515,13 +64507,13 @@ export default { }, "player_faceit_rank_history_aggregate_bool_exp_count": { "arguments": [ - 3242 + 3241 ], "distinct": [ 5 ], "filter": [ - 3230 + 3229 ], "predicate": [ 41 @@ -64532,13 +64524,13 @@ export default { }, "player_faceit_rank_history_aggregate_fields": { "avg": [ - 3228 + 3227 ], "count": [ 40, { "columns": [ - 3242, + 3241, "[player_faceit_rank_history_select_column!]" ], "distinct": [ @@ -64547,31 +64539,31 @@ export default { } ], "max": [ - 3234 + 3233 ], "min": [ - 3236 + 3235 ], "stddev": [ - 3244 + 3243 ], "stddev_pop": [ - 3246 + 3245 ], "stddev_samp": [ - 3248 + 3247 ], "sum": [ - 3252 + 3251 ], "var_pop": [ - 3256 + 3255 ], "var_samp": [ - 3258 + 3257 ], "variance": [ - 3260 + 3259 ], "__typename": [ 80 @@ -64579,37 +64571,37 @@ export default { }, "player_faceit_rank_history_aggregate_order_by": { "avg": [ - 3229 + 3228 ], "count": [ - 2952 + 2951 ], "max": [ - 3235 + 3234 ], "min": [ - 3237 + 3236 ], "stddev": [ - 3245 + 3244 ], "stddev_pop": [ - 3247 + 3246 ], "stddev_samp": [ - 3249 + 3248 ], "sum": [ - 3253 + 3252 ], "var_pop": [ - 3257 + 3256 ], "var_samp": [ - 3259 + 3258 ], "variance": [ - 3261 + 3260 ], "__typename": [ 80 @@ -64617,10 +64609,10 @@ export default { }, "player_faceit_rank_history_arr_rel_insert_input": { "data": [ - 3233 + 3232 ], "on_conflict": [ - 3239 + 3238 ], "__typename": [ 80 @@ -64645,16 +64637,16 @@ export default { }, "player_faceit_rank_history_avg_order_by": { "elo": [ - 2952 + 2951 ], "previous_rank": [ - 2952 + 2951 ], "skill_level": [ - 2952 + 2951 ], "steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -64662,31 +64654,31 @@ export default { }, "player_faceit_rank_history_bool_exp": { "_and": [ - 3230 + 3229 ], "_not": [ - 3230 + 3229 ], "_or": [ - 3230 + 3229 ], "elo": [ 41 ], "id": [ - 5001 + 5000 ], "match": [ - 2776 + 2775 ], "match_id": [ - 5001 + 5000 ], "observed_at": [ - 4500 + 4499 ], "player": [ - 3914 + 3913 ], "previous_rank": [ 41 @@ -64695,7 +64687,7 @@ export default { 41 ], "steam_id": [ - 260 + 259 ], "__typename": [ 80 @@ -64713,7 +64705,7 @@ export default { 40 ], "steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -64724,19 +64716,19 @@ export default { 40 ], "id": [ - 4999 + 4998 ], "match": [ - 2785 + 2784 ], "match_id": [ - 4999 + 4998 ], "observed_at": [ - 4499 + 4498 ], "player": [ - 3921 + 3920 ], "previous_rank": [ 40 @@ -64745,7 +64737,7 @@ export default { 40 ], "steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -64756,13 +64748,13 @@ export default { 40 ], "id": [ - 4999 + 4998 ], "match_id": [ - 4999 + 4998 ], "observed_at": [ - 4499 + 4498 ], "previous_rank": [ 40 @@ -64771,7 +64763,7 @@ export default { 40 ], "steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -64779,25 +64771,25 @@ export default { }, "player_faceit_rank_history_max_order_by": { "elo": [ - 2952 + 2951 ], "id": [ - 2952 + 2951 ], "match_id": [ - 2952 + 2951 ], "observed_at": [ - 2952 + 2951 ], "previous_rank": [ - 2952 + 2951 ], "skill_level": [ - 2952 + 2951 ], "steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -64808,13 +64800,13 @@ export default { 40 ], "id": [ - 4999 + 4998 ], "match_id": [ - 4999 + 4998 ], "observed_at": [ - 4499 + 4498 ], "previous_rank": [ 40 @@ -64823,7 +64815,7 @@ export default { 40 ], "steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -64831,25 +64823,25 @@ export default { }, "player_faceit_rank_history_min_order_by": { "elo": [ - 2952 + 2951 ], "id": [ - 2952 + 2951 ], "match_id": [ - 2952 + 2951 ], "observed_at": [ - 2952 + 2951 ], "previous_rank": [ - 2952 + 2951 ], "skill_level": [ - 2952 + 2951 ], "steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -64860,7 +64852,7 @@ export default { 40 ], "returning": [ - 3221 + 3220 ], "__typename": [ 80 @@ -64868,13 +64860,13 @@ export default { }, "player_faceit_rank_history_on_conflict": { "constraint": [ - 3231 + 3230 ], "update_columns": [ - 3254 + 3253 ], "where": [ - 3230 + 3229 ], "__typename": [ 80 @@ -64882,31 +64874,31 @@ export default { }, "player_faceit_rank_history_order_by": { "elo": [ - 2952 + 2951 ], "id": [ - 2952 + 2951 ], "match": [ - 2787 + 2786 ], "match_id": [ - 2952 + 2951 ], "observed_at": [ - 2952 + 2951 ], "player": [ - 3923 + 3922 ], "previous_rank": [ - 2952 + 2951 ], "skill_level": [ - 2952 + 2951 ], "steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -64914,7 +64906,7 @@ export default { }, "player_faceit_rank_history_pk_columns_input": { "id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -64926,13 +64918,13 @@ export default { 40 ], "id": [ - 4999 + 4998 ], "match_id": [ - 4999 + 4998 ], "observed_at": [ - 4499 + 4498 ], "previous_rank": [ 40 @@ -64941,7 +64933,7 @@ export default { 40 ], "steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -64966,16 +64958,16 @@ export default { }, "player_faceit_rank_history_stddev_order_by": { "elo": [ - 2952 + 2951 ], "previous_rank": [ - 2952 + 2951 ], "skill_level": [ - 2952 + 2951 ], "steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -65000,16 +64992,16 @@ export default { }, "player_faceit_rank_history_stddev_pop_order_by": { "elo": [ - 2952 + 2951 ], "previous_rank": [ - 2952 + 2951 ], "skill_level": [ - 2952 + 2951 ], "steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -65034,16 +65026,16 @@ export default { }, "player_faceit_rank_history_stddev_samp_order_by": { "elo": [ - 2952 + 2951 ], "previous_rank": [ - 2952 + 2951 ], "skill_level": [ - 2952 + 2951 ], "steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -65051,10 +65043,10 @@ export default { }, "player_faceit_rank_history_stream_cursor_input": { "initial_value": [ - 3251 + 3250 ], "ordering": [ - 314 + 313 ], "__typename": [ 80 @@ -65065,13 +65057,13 @@ export default { 40 ], "id": [ - 4999 + 4998 ], "match_id": [ - 4999 + 4998 ], "observed_at": [ - 4499 + 4498 ], "previous_rank": [ 40 @@ -65080,7 +65072,7 @@ export default { 40 ], "steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -65097,7 +65089,7 @@ export default { 40 ], "steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -65105,16 +65097,16 @@ export default { }, "player_faceit_rank_history_sum_order_by": { "elo": [ - 2952 + 2951 ], "previous_rank": [ - 2952 + 2951 ], "skill_level": [ - 2952 + 2951 ], "steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -65123,13 +65115,13 @@ export default { "player_faceit_rank_history_update_column": {}, "player_faceit_rank_history_updates": { "_inc": [ - 3232 + 3231 ], "_set": [ - 3243 + 3242 ], "where": [ - 3230 + 3229 ], "__typename": [ 80 @@ -65154,16 +65146,16 @@ export default { }, "player_faceit_rank_history_var_pop_order_by": { "elo": [ - 2952 + 2951 ], "previous_rank": [ - 2952 + 2951 ], "skill_level": [ - 2952 + 2951 ], "steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -65188,16 +65180,16 @@ export default { }, "player_faceit_rank_history_var_samp_order_by": { "elo": [ - 2952 + 2951 ], "previous_rank": [ - 2952 + 2951 ], "skill_level": [ - 2952 + 2951 ], "steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -65222,16 +65214,16 @@ export default { }, "player_faceit_rank_history_variance_order_by": { "elo": [ - 2952 + 2951 ], "previous_rank": [ - 2952 + 2951 ], "skill_level": [ - 2952 + 2951 ], "steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -65239,31 +65231,31 @@ export default { }, "player_flashes": { "attacked_steam_id": [ - 258 + 257 ], "attacker_steam_id": [ - 258 + 257 ], "blinded": [ - 3910 + 3909 ], "deleted_at": [ - 4499 + 4498 ], "duration": [ - 2950 + 2949 ], "match": [ - 2767 + 2766 ], "match_id": [ - 4999 + 4998 ], "match_map": [ - 2605 + 2604 ], "match_map_id": [ - 4999 + 4998 ], "round": [ 40 @@ -65272,10 +65264,10 @@ export default { 5 ], "thrown_by": [ - 3910 + 3909 ], "time": [ - 4499 + 4498 ], "__typename": [ 80 @@ -65283,10 +65275,10 @@ export default { }, "player_flashes_aggregate": { "aggregate": [ - 3268 + 3267 ], "nodes": [ - 3262 + 3261 ], "__typename": [ 80 @@ -65294,13 +65286,13 @@ export default { }, "player_flashes_aggregate_bool_exp": { "bool_and": [ - 3265 + 3264 ], "bool_or": [ - 3266 + 3265 ], "count": [ - 3267 + 3266 ], "__typename": [ 80 @@ -65308,13 +65300,13 @@ export default { }, "player_flashes_aggregate_bool_exp_bool_and": { "arguments": [ - 3286 + 3285 ], "distinct": [ 5 ], "filter": [ - 3273 + 3272 ], "predicate": [ 6 @@ -65325,13 +65317,13 @@ export default { }, "player_flashes_aggregate_bool_exp_bool_or": { "arguments": [ - 3287 + 3286 ], "distinct": [ 5 ], "filter": [ - 3273 + 3272 ], "predicate": [ 6 @@ -65342,13 +65334,13 @@ export default { }, "player_flashes_aggregate_bool_exp_count": { "arguments": [ - 3285 + 3284 ], "distinct": [ 5 ], "filter": [ - 3273 + 3272 ], "predicate": [ 41 @@ -65359,13 +65351,13 @@ export default { }, "player_flashes_aggregate_fields": { "avg": [ - 3271 + 3270 ], "count": [ 40, { "columns": [ - 3285, + 3284, "[player_flashes_select_column!]" ], "distinct": [ @@ -65374,31 +65366,31 @@ export default { } ], "max": [ - 3277 + 3276 ], "min": [ - 3279 + 3278 ], "stddev": [ - 3289 + 3288 ], "stddev_pop": [ - 3291 + 3290 ], "stddev_samp": [ - 3293 + 3292 ], "sum": [ - 3297 + 3296 ], "var_pop": [ - 3301 + 3300 ], "var_samp": [ - 3303 + 3302 ], "variance": [ - 3305 + 3304 ], "__typename": [ 80 @@ -65406,37 +65398,37 @@ export default { }, "player_flashes_aggregate_order_by": { "avg": [ - 3272 + 3271 ], "count": [ - 2952 + 2951 ], "max": [ - 3278 + 3277 ], "min": [ - 3280 + 3279 ], "stddev": [ - 3290 + 3289 ], "stddev_pop": [ - 3292 + 3291 ], "stddev_samp": [ - 3294 + 3293 ], "sum": [ - 3298 + 3297 ], "var_pop": [ - 3302 + 3301 ], "var_samp": [ - 3304 + 3303 ], "variance": [ - 3306 + 3305 ], "__typename": [ 80 @@ -65444,10 +65436,10 @@ export default { }, "player_flashes_arr_rel_insert_input": { "data": [ - 3276 + 3275 ], "on_conflict": [ - 3282 + 3281 ], "__typename": [ 80 @@ -65472,16 +65464,16 @@ export default { }, "player_flashes_avg_order_by": { "attacked_steam_id": [ - 2952 + 2951 ], "attacker_steam_id": [ - 2952 + 2951 ], "duration": [ - 2952 + 2951 ], "round": [ - 2952 + 2951 ], "__typename": [ 80 @@ -65489,40 +65481,40 @@ export default { }, "player_flashes_bool_exp": { "_and": [ - 3273 + 3272 ], "_not": [ - 3273 + 3272 ], "_or": [ - 3273 + 3272 ], "attacked_steam_id": [ - 260 + 259 ], "attacker_steam_id": [ - 260 + 259 ], "blinded": [ - 3914 + 3913 ], "deleted_at": [ - 4500 + 4499 ], "duration": [ - 2951 + 2950 ], "match": [ - 2776 + 2775 ], "match_id": [ - 5001 + 5000 ], "match_map": [ - 2614 + 2613 ], "match_map_id": [ - 5001 + 5000 ], "round": [ 41 @@ -65531,10 +65523,10 @@ export default { 6 ], "thrown_by": [ - 3914 + 3913 ], "time": [ - 4500 + 4499 ], "__typename": [ 80 @@ -65543,13 +65535,13 @@ export default { "player_flashes_constraint": {}, "player_flashes_inc_input": { "attacked_steam_id": [ - 258 + 257 ], "attacker_steam_id": [ - 258 + 257 ], "duration": [ - 2950 + 2949 ], "round": [ 40 @@ -65560,31 +65552,31 @@ export default { }, "player_flashes_insert_input": { "attacked_steam_id": [ - 258 + 257 ], "attacker_steam_id": [ - 258 + 257 ], "blinded": [ - 3921 + 3920 ], "deleted_at": [ - 4499 + 4498 ], "duration": [ - 2950 + 2949 ], "match": [ - 2785 + 2784 ], "match_id": [ - 4999 + 4998 ], "match_map": [ - 2623 + 2622 ], "match_map_id": [ - 4999 + 4998 ], "round": [ 40 @@ -65593,10 +65585,10 @@ export default { 5 ], "thrown_by": [ - 3921 + 3920 ], "time": [ - 4499 + 4498 ], "__typename": [ 80 @@ -65604,28 +65596,28 @@ export default { }, "player_flashes_max_fields": { "attacked_steam_id": [ - 258 + 257 ], "attacker_steam_id": [ - 258 + 257 ], "deleted_at": [ - 4499 + 4498 ], "duration": [ - 2950 + 2949 ], "match_id": [ - 4999 + 4998 ], "match_map_id": [ - 4999 + 4998 ], "round": [ 40 ], "time": [ - 4499 + 4498 ], "__typename": [ 80 @@ -65633,28 +65625,28 @@ export default { }, "player_flashes_max_order_by": { "attacked_steam_id": [ - 2952 + 2951 ], "attacker_steam_id": [ - 2952 + 2951 ], "deleted_at": [ - 2952 + 2951 ], "duration": [ - 2952 + 2951 ], "match_id": [ - 2952 + 2951 ], "match_map_id": [ - 2952 + 2951 ], "round": [ - 2952 + 2951 ], "time": [ - 2952 + 2951 ], "__typename": [ 80 @@ -65662,28 +65654,28 @@ export default { }, "player_flashes_min_fields": { "attacked_steam_id": [ - 258 + 257 ], "attacker_steam_id": [ - 258 + 257 ], "deleted_at": [ - 4499 + 4498 ], "duration": [ - 2950 + 2949 ], "match_id": [ - 4999 + 4998 ], "match_map_id": [ - 4999 + 4998 ], "round": [ 40 ], "time": [ - 4499 + 4498 ], "__typename": [ 80 @@ -65691,28 +65683,28 @@ export default { }, "player_flashes_min_order_by": { "attacked_steam_id": [ - 2952 + 2951 ], "attacker_steam_id": [ - 2952 + 2951 ], "deleted_at": [ - 2952 + 2951 ], "duration": [ - 2952 + 2951 ], "match_id": [ - 2952 + 2951 ], "match_map_id": [ - 2952 + 2951 ], "round": [ - 2952 + 2951 ], "time": [ - 2952 + 2951 ], "__typename": [ 80 @@ -65723,7 +65715,7 @@ export default { 40 ], "returning": [ - 3262 + 3261 ], "__typename": [ 80 @@ -65731,13 +65723,13 @@ export default { }, "player_flashes_on_conflict": { "constraint": [ - 3274 + 3273 ], "update_columns": [ - 3299 + 3298 ], "where": [ - 3273 + 3272 ], "__typename": [ 80 @@ -65745,43 +65737,43 @@ export default { }, "player_flashes_order_by": { "attacked_steam_id": [ - 2952 + 2951 ], "attacker_steam_id": [ - 2952 + 2951 ], "blinded": [ - 3923 + 3922 ], "deleted_at": [ - 2952 + 2951 ], "duration": [ - 2952 + 2951 ], "match": [ - 2787 + 2786 ], "match_id": [ - 2952 + 2951 ], "match_map": [ - 2625 + 2624 ], "match_map_id": [ - 2952 + 2951 ], "round": [ - 2952 + 2951 ], "team_flash": [ - 2952 + 2951 ], "thrown_by": [ - 3923 + 3922 ], "time": [ - 2952 + 2951 ], "__typename": [ 80 @@ -65789,16 +65781,16 @@ export default { }, "player_flashes_pk_columns_input": { "attacked_steam_id": [ - 258 + 257 ], "attacker_steam_id": [ - 258 + 257 ], "match_map_id": [ - 4999 + 4998 ], "time": [ - 4499 + 4498 ], "__typename": [ 80 @@ -65809,22 +65801,22 @@ export default { "player_flashes_select_column_player_flashes_aggregate_bool_exp_bool_or_arguments_columns": {}, "player_flashes_set_input": { "attacked_steam_id": [ - 258 + 257 ], "attacker_steam_id": [ - 258 + 257 ], "deleted_at": [ - 4499 + 4498 ], "duration": [ - 2950 + 2949 ], "match_id": [ - 4999 + 4998 ], "match_map_id": [ - 4999 + 4998 ], "round": [ 40 @@ -65833,7 +65825,7 @@ export default { 5 ], "time": [ - 4499 + 4498 ], "__typename": [ 80 @@ -65858,16 +65850,16 @@ export default { }, "player_flashes_stddev_order_by": { "attacked_steam_id": [ - 2952 + 2951 ], "attacker_steam_id": [ - 2952 + 2951 ], "duration": [ - 2952 + 2951 ], "round": [ - 2952 + 2951 ], "__typename": [ 80 @@ -65892,16 +65884,16 @@ export default { }, "player_flashes_stddev_pop_order_by": { "attacked_steam_id": [ - 2952 + 2951 ], "attacker_steam_id": [ - 2952 + 2951 ], "duration": [ - 2952 + 2951 ], "round": [ - 2952 + 2951 ], "__typename": [ 80 @@ -65926,16 +65918,16 @@ export default { }, "player_flashes_stddev_samp_order_by": { "attacked_steam_id": [ - 2952 + 2951 ], "attacker_steam_id": [ - 2952 + 2951 ], "duration": [ - 2952 + 2951 ], "round": [ - 2952 + 2951 ], "__typename": [ 80 @@ -65943,10 +65935,10 @@ export default { }, "player_flashes_stream_cursor_input": { "initial_value": [ - 3296 + 3295 ], "ordering": [ - 314 + 313 ], "__typename": [ 80 @@ -65954,22 +65946,22 @@ export default { }, "player_flashes_stream_cursor_value_input": { "attacked_steam_id": [ - 258 + 257 ], "attacker_steam_id": [ - 258 + 257 ], "deleted_at": [ - 4499 + 4498 ], "duration": [ - 2950 + 2949 ], "match_id": [ - 4999 + 4998 ], "match_map_id": [ - 4999 + 4998 ], "round": [ 40 @@ -65978,7 +65970,7 @@ export default { 5 ], "time": [ - 4499 + 4498 ], "__typename": [ 80 @@ -65986,13 +65978,13 @@ export default { }, "player_flashes_sum_fields": { "attacked_steam_id": [ - 258 + 257 ], "attacker_steam_id": [ - 258 + 257 ], "duration": [ - 2950 + 2949 ], "round": [ 40 @@ -66003,16 +65995,16 @@ export default { }, "player_flashes_sum_order_by": { "attacked_steam_id": [ - 2952 + 2951 ], "attacker_steam_id": [ - 2952 + 2951 ], "duration": [ - 2952 + 2951 ], "round": [ - 2952 + 2951 ], "__typename": [ 80 @@ -66021,13 +66013,13 @@ export default { "player_flashes_update_column": {}, "player_flashes_updates": { "_inc": [ - 3275 + 3274 ], "_set": [ - 3288 + 3287 ], "where": [ - 3273 + 3272 ], "__typename": [ 80 @@ -66052,16 +66044,16 @@ export default { }, "player_flashes_var_pop_order_by": { "attacked_steam_id": [ - 2952 + 2951 ], "attacker_steam_id": [ - 2952 + 2951 ], "duration": [ - 2952 + 2951 ], "round": [ - 2952 + 2951 ], "__typename": [ 80 @@ -66086,16 +66078,16 @@ export default { }, "player_flashes_var_samp_order_by": { "attacked_steam_id": [ - 2952 + 2951 ], "attacker_steam_id": [ - 2952 + 2951 ], "duration": [ - 2952 + 2951 ], "round": [ - 2952 + 2951 ], "__typename": [ 80 @@ -66120,16 +66112,16 @@ export default { }, "player_flashes_variance_order_by": { "attacked_steam_id": [ - 2952 + 2951 ], "attacker_steam_id": [ - 2952 + 2951 ], "duration": [ - 2952 + 2951 ], "round": [ - 2952 + 2951 ], "__typename": [ 80 @@ -66146,10 +66138,10 @@ export default { 80 ], "attacked_player": [ - 3910 + 3909 ], "attacked_steam_id": [ - 258 + 257 ], "attacked_team": [ 80 @@ -66161,7 +66153,7 @@ export default { 80 ], "attacker_steam_id": [ - 258 + 257 ], "attacker_team": [ 80 @@ -66170,7 +66162,7 @@ export default { 5 ], "deleted_at": [ - 4499 + 4498 ], "headshot": [ 5 @@ -66185,22 +66177,22 @@ export default { 5 ], "match": [ - 2767 + 2766 ], "match_id": [ - 4999 + 4998 ], "match_map": [ - 2605 + 2604 ], "match_map_id": [ - 4999 + 4998 ], "no_scope": [ 5 ], "player": [ - 3910 + 3909 ], "round": [ 40 @@ -66215,7 +66207,7 @@ export default { 5 ], "time": [ - 4499 + 4498 ], "with": [ 80 @@ -66226,10 +66218,10 @@ export default { }, "player_kills_aggregate": { "aggregate": [ - 3313 + 3312 ], "nodes": [ - 3307 + 3306 ], "__typename": [ 80 @@ -66237,13 +66229,13 @@ export default { }, "player_kills_aggregate_bool_exp": { "bool_and": [ - 3310 + 3309 ], "bool_or": [ - 3311 + 3310 ], "count": [ - 3312 + 3311 ], "__typename": [ 80 @@ -66251,13 +66243,13 @@ export default { }, "player_kills_aggregate_bool_exp_bool_and": { "arguments": [ - 3372 + 3371 ], "distinct": [ 5 ], "filter": [ - 3318 + 3317 ], "predicate": [ 6 @@ -66268,13 +66260,13 @@ export default { }, "player_kills_aggregate_bool_exp_bool_or": { "arguments": [ - 3373 + 3372 ], "distinct": [ 5 ], "filter": [ - 3318 + 3317 ], "predicate": [ 6 @@ -66285,13 +66277,13 @@ export default { }, "player_kills_aggregate_bool_exp_count": { "arguments": [ - 3371 + 3370 ], "distinct": [ 5 ], "filter": [ - 3318 + 3317 ], "predicate": [ 41 @@ -66302,13 +66294,13 @@ export default { }, "player_kills_aggregate_fields": { "avg": [ - 3316 + 3315 ], "count": [ 40, { "columns": [ - 3371, + 3370, "[player_kills_select_column!]" ], "distinct": [ @@ -66317,31 +66309,31 @@ export default { } ], "max": [ - 3363 + 3362 ], "min": [ - 3365 + 3364 ], "stddev": [ - 3375 + 3374 ], "stddev_pop": [ - 3377 + 3376 ], "stddev_samp": [ - 3379 + 3378 ], "sum": [ - 3383 + 3382 ], "var_pop": [ - 3387 + 3386 ], "var_samp": [ - 3389 + 3388 ], "variance": [ - 3391 + 3390 ], "__typename": [ 80 @@ -66349,37 +66341,37 @@ export default { }, "player_kills_aggregate_order_by": { "avg": [ - 3317 + 3316 ], "count": [ - 2952 + 2951 ], "max": [ - 3364 + 3363 ], "min": [ - 3366 + 3365 ], "stddev": [ - 3376 + 3375 ], "stddev_pop": [ - 3378 + 3377 ], "stddev_samp": [ - 3380 + 3379 ], "sum": [ - 3384 + 3383 ], "var_pop": [ - 3388 + 3387 ], "var_samp": [ - 3390 + 3389 ], "variance": [ - 3392 + 3391 ], "__typename": [ 80 @@ -66387,10 +66379,10 @@ export default { }, "player_kills_arr_rel_insert_input": { "data": [ - 3362 + 3361 ], "on_conflict": [ - 3368 + 3367 ], "__typename": [ 80 @@ -66412,13 +66404,13 @@ export default { }, "player_kills_avg_order_by": { "attacked_steam_id": [ - 2952 + 2951 ], "attacker_steam_id": [ - 2952 + 2951 ], "round": [ - 2952 + 2951 ], "__typename": [ 80 @@ -66426,13 +66418,13 @@ export default { }, "player_kills_bool_exp": { "_and": [ - 3318 + 3317 ], "_not": [ - 3318 + 3317 ], "_or": [ - 3318 + 3317 ], "assisted": [ 6 @@ -66444,10 +66436,10 @@ export default { 82 ], "attacked_player": [ - 3914 + 3913 ], "attacked_steam_id": [ - 260 + 259 ], "attacked_team": [ 82 @@ -66459,7 +66451,7 @@ export default { 82 ], "attacker_steam_id": [ - 260 + 259 ], "attacker_team": [ 82 @@ -66468,7 +66460,7 @@ export default { 6 ], "deleted_at": [ - 4500 + 4499 ], "headshot": [ 6 @@ -66483,22 +66475,22 @@ export default { 6 ], "match": [ - 2776 + 2775 ], "match_id": [ - 5001 + 5000 ], "match_map": [ - 2614 + 2613 ], "match_map_id": [ - 5001 + 5000 ], "no_scope": [ 6 ], "player": [ - 3914 + 3913 ], "round": [ 41 @@ -66513,7 +66505,7 @@ export default { 6 ], "time": [ - 4500 + 4499 ], "with": [ 82 @@ -66524,13 +66516,13 @@ export default { }, "player_kills_by_weapon": { "kill_count": [ - 258 + 257 ], "player": [ - 3910 + 3909 ], "player_steam_id": [ - 258 + 257 ], "with": [ 80 @@ -66541,10 +66533,10 @@ export default { }, "player_kills_by_weapon_aggregate": { "aggregate": [ - 3323 + 3322 ], "nodes": [ - 3319 + 3318 ], "__typename": [ 80 @@ -66552,7 +66544,7 @@ export default { }, "player_kills_by_weapon_aggregate_bool_exp": { "count": [ - 3322 + 3321 ], "__typename": [ 80 @@ -66560,13 +66552,13 @@ export default { }, "player_kills_by_weapon_aggregate_bool_exp_count": { "arguments": [ - 3340 + 3339 ], "distinct": [ 5 ], "filter": [ - 3328 + 3327 ], "predicate": [ 41 @@ -66577,13 +66569,13 @@ export default { }, "player_kills_by_weapon_aggregate_fields": { "avg": [ - 3326 + 3325 ], "count": [ 40, { "columns": [ - 3340, + 3339, "[player_kills_by_weapon_select_column!]" ], "distinct": [ @@ -66592,31 +66584,31 @@ export default { } ], "max": [ - 3332 + 3331 ], "min": [ - 3334 + 3333 ], "stddev": [ - 3342 + 3341 ], "stddev_pop": [ - 3344 + 3343 ], "stddev_samp": [ - 3346 + 3345 ], "sum": [ - 3350 + 3349 ], "var_pop": [ - 3354 + 3353 ], "var_samp": [ - 3356 + 3355 ], "variance": [ - 3358 + 3357 ], "__typename": [ 80 @@ -66624,37 +66616,37 @@ export default { }, "player_kills_by_weapon_aggregate_order_by": { "avg": [ - 3327 + 3326 ], "count": [ - 2952 + 2951 ], "max": [ - 3333 + 3332 ], "min": [ - 3335 + 3334 ], "stddev": [ - 3343 + 3342 ], "stddev_pop": [ - 3345 + 3344 ], "stddev_samp": [ - 3347 + 3346 ], "sum": [ - 3351 + 3350 ], "var_pop": [ - 3355 + 3354 ], "var_samp": [ - 3357 + 3356 ], "variance": [ - 3359 + 3358 ], "__typename": [ 80 @@ -66662,10 +66654,10 @@ export default { }, "player_kills_by_weapon_arr_rel_insert_input": { "data": [ - 3331 + 3330 ], "on_conflict": [ - 3337 + 3336 ], "__typename": [ 80 @@ -66684,10 +66676,10 @@ export default { }, "player_kills_by_weapon_avg_order_by": { "kill_count": [ - 2952 + 2951 ], "player_steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -66695,22 +66687,22 @@ export default { }, "player_kills_by_weapon_bool_exp": { "_and": [ - 3328 + 3327 ], "_not": [ - 3328 + 3327 ], "_or": [ - 3328 + 3327 ], "kill_count": [ - 260 + 259 ], "player": [ - 3914 + 3913 ], "player_steam_id": [ - 260 + 259 ], "with": [ 82 @@ -66722,10 +66714,10 @@ export default { "player_kills_by_weapon_constraint": {}, "player_kills_by_weapon_inc_input": { "kill_count": [ - 258 + 257 ], "player_steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -66733,13 +66725,13 @@ export default { }, "player_kills_by_weapon_insert_input": { "kill_count": [ - 258 + 257 ], "player": [ - 3921 + 3920 ], "player_steam_id": [ - 258 + 257 ], "with": [ 80 @@ -66750,10 +66742,10 @@ export default { }, "player_kills_by_weapon_max_fields": { "kill_count": [ - 258 + 257 ], "player_steam_id": [ - 258 + 257 ], "with": [ 80 @@ -66764,13 +66756,13 @@ export default { }, "player_kills_by_weapon_max_order_by": { "kill_count": [ - 2952 + 2951 ], "player_steam_id": [ - 2952 + 2951 ], "with": [ - 2952 + 2951 ], "__typename": [ 80 @@ -66778,10 +66770,10 @@ export default { }, "player_kills_by_weapon_min_fields": { "kill_count": [ - 258 + 257 ], "player_steam_id": [ - 258 + 257 ], "with": [ 80 @@ -66792,13 +66784,13 @@ export default { }, "player_kills_by_weapon_min_order_by": { "kill_count": [ - 2952 + 2951 ], "player_steam_id": [ - 2952 + 2951 ], "with": [ - 2952 + 2951 ], "__typename": [ 80 @@ -66809,7 +66801,7 @@ export default { 40 ], "returning": [ - 3319 + 3318 ], "__typename": [ 80 @@ -66817,13 +66809,13 @@ export default { }, "player_kills_by_weapon_on_conflict": { "constraint": [ - 3329 + 3328 ], "update_columns": [ - 3352 + 3351 ], "where": [ - 3328 + 3327 ], "__typename": [ 80 @@ -66831,16 +66823,16 @@ export default { }, "player_kills_by_weapon_order_by": { "kill_count": [ - 2952 + 2951 ], "player": [ - 3923 + 3922 ], "player_steam_id": [ - 2952 + 2951 ], "with": [ - 2952 + 2951 ], "__typename": [ 80 @@ -66848,7 +66840,7 @@ export default { }, "player_kills_by_weapon_pk_columns_input": { "player_steam_id": [ - 258 + 257 ], "with": [ 80 @@ -66860,10 +66852,10 @@ export default { "player_kills_by_weapon_select_column": {}, "player_kills_by_weapon_set_input": { "kill_count": [ - 258 + 257 ], "player_steam_id": [ - 258 + 257 ], "with": [ 80 @@ -66885,10 +66877,10 @@ export default { }, "player_kills_by_weapon_stddev_order_by": { "kill_count": [ - 2952 + 2951 ], "player_steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -66907,10 +66899,10 @@ export default { }, "player_kills_by_weapon_stddev_pop_order_by": { "kill_count": [ - 2952 + 2951 ], "player_steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -66929,10 +66921,10 @@ export default { }, "player_kills_by_weapon_stddev_samp_order_by": { "kill_count": [ - 2952 + 2951 ], "player_steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -66940,10 +66932,10 @@ export default { }, "player_kills_by_weapon_stream_cursor_input": { "initial_value": [ - 3349 + 3348 ], "ordering": [ - 314 + 313 ], "__typename": [ 80 @@ -66951,10 +66943,10 @@ export default { }, "player_kills_by_weapon_stream_cursor_value_input": { "kill_count": [ - 258 + 257 ], "player_steam_id": [ - 258 + 257 ], "with": [ 80 @@ -66965,10 +66957,10 @@ export default { }, "player_kills_by_weapon_sum_fields": { "kill_count": [ - 258 + 257 ], "player_steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -66976,10 +66968,10 @@ export default { }, "player_kills_by_weapon_sum_order_by": { "kill_count": [ - 2952 + 2951 ], "player_steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -66988,13 +66980,13 @@ export default { "player_kills_by_weapon_update_column": {}, "player_kills_by_weapon_updates": { "_inc": [ - 3330 + 3329 ], "_set": [ - 3341 + 3340 ], "where": [ - 3328 + 3327 ], "__typename": [ 80 @@ -67013,10 +67005,10 @@ export default { }, "player_kills_by_weapon_var_pop_order_by": { "kill_count": [ - 2952 + 2951 ], "player_steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -67035,10 +67027,10 @@ export default { }, "player_kills_by_weapon_var_samp_order_by": { "kill_count": [ - 2952 + 2951 ], "player_steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -67057,10 +67049,10 @@ export default { }, "player_kills_by_weapon_variance_order_by": { "kill_count": [ - 2952 + 2951 ], "player_steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -67069,10 +67061,10 @@ export default { "player_kills_constraint": {}, "player_kills_inc_input": { "attacked_steam_id": [ - 258 + 257 ], "attacker_steam_id": [ - 258 + 257 ], "round": [ 40 @@ -67092,10 +67084,10 @@ export default { 80 ], "attacked_player": [ - 3921 + 3920 ], "attacked_steam_id": [ - 258 + 257 ], "attacked_team": [ 80 @@ -67107,7 +67099,7 @@ export default { 80 ], "attacker_steam_id": [ - 258 + 257 ], "attacker_team": [ 80 @@ -67116,7 +67108,7 @@ export default { 5 ], "deleted_at": [ - 4499 + 4498 ], "headshot": [ 5 @@ -67128,22 +67120,22 @@ export default { 5 ], "match": [ - 2785 + 2784 ], "match_id": [ - 4999 + 4998 ], "match_map": [ - 2623 + 2622 ], "match_map_id": [ - 4999 + 4998 ], "no_scope": [ 5 ], "player": [ - 3921 + 3920 ], "round": [ 40 @@ -67155,7 +67147,7 @@ export default { 5 ], "time": [ - 4499 + 4498 ], "with": [ 80 @@ -67172,7 +67164,7 @@ export default { 80 ], "attacked_steam_id": [ - 258 + 257 ], "attacked_team": [ 80 @@ -67184,28 +67176,28 @@ export default { 80 ], "attacker_steam_id": [ - 258 + 257 ], "attacker_team": [ 80 ], "deleted_at": [ - 4499 + 4498 ], "hitgroup": [ 80 ], "match_id": [ - 4999 + 4998 ], "match_map_id": [ - 4999 + 4998 ], "round": [ 40 ], "time": [ - 4499 + 4498 ], "with": [ 80 @@ -67216,49 +67208,49 @@ export default { }, "player_kills_max_order_by": { "attacked_location": [ - 2952 + 2951 ], "attacked_location_coordinates": [ - 2952 + 2951 ], "attacked_steam_id": [ - 2952 + 2951 ], "attacked_team": [ - 2952 + 2951 ], "attacker_location": [ - 2952 + 2951 ], "attacker_location_coordinates": [ - 2952 + 2951 ], "attacker_steam_id": [ - 2952 + 2951 ], "attacker_team": [ - 2952 + 2951 ], "deleted_at": [ - 2952 + 2951 ], "hitgroup": [ - 2952 + 2951 ], "match_id": [ - 2952 + 2951 ], "match_map_id": [ - 2952 + 2951 ], "round": [ - 2952 + 2951 ], "time": [ - 2952 + 2951 ], "with": [ - 2952 + 2951 ], "__typename": [ 80 @@ -67272,7 +67264,7 @@ export default { 80 ], "attacked_steam_id": [ - 258 + 257 ], "attacked_team": [ 80 @@ -67284,28 +67276,28 @@ export default { 80 ], "attacker_steam_id": [ - 258 + 257 ], "attacker_team": [ 80 ], "deleted_at": [ - 4499 + 4498 ], "hitgroup": [ 80 ], "match_id": [ - 4999 + 4998 ], "match_map_id": [ - 4999 + 4998 ], "round": [ 40 ], "time": [ - 4499 + 4498 ], "with": [ 80 @@ -67316,49 +67308,49 @@ export default { }, "player_kills_min_order_by": { "attacked_location": [ - 2952 + 2951 ], "attacked_location_coordinates": [ - 2952 + 2951 ], "attacked_steam_id": [ - 2952 + 2951 ], "attacked_team": [ - 2952 + 2951 ], "attacker_location": [ - 2952 + 2951 ], "attacker_location_coordinates": [ - 2952 + 2951 ], "attacker_steam_id": [ - 2952 + 2951 ], "attacker_team": [ - 2952 + 2951 ], "deleted_at": [ - 2952 + 2951 ], "hitgroup": [ - 2952 + 2951 ], "match_id": [ - 2952 + 2951 ], "match_map_id": [ - 2952 + 2951 ], "round": [ - 2952 + 2951 ], "time": [ - 2952 + 2951 ], "with": [ - 2952 + 2951 ], "__typename": [ 80 @@ -67369,7 +67361,7 @@ export default { 40 ], "returning": [ - 3307 + 3306 ], "__typename": [ 80 @@ -67377,13 +67369,13 @@ export default { }, "player_kills_on_conflict": { "constraint": [ - 3360 + 3359 ], "update_columns": [ - 3385 + 3384 ], "where": [ - 3318 + 3317 ], "__typename": [ 80 @@ -67391,88 +67383,88 @@ export default { }, "player_kills_order_by": { "assisted": [ - 2952 + 2951 ], "attacked_location": [ - 2952 + 2951 ], "attacked_location_coordinates": [ - 2952 + 2951 ], "attacked_player": [ - 3923 + 3922 ], "attacked_steam_id": [ - 2952 + 2951 ], "attacked_team": [ - 2952 + 2951 ], "attacker_location": [ - 2952 + 2951 ], "attacker_location_coordinates": [ - 2952 + 2951 ], "attacker_steam_id": [ - 2952 + 2951 ], "attacker_team": [ - 2952 + 2951 ], "blinded": [ - 2952 + 2951 ], "deleted_at": [ - 2952 + 2951 ], "headshot": [ - 2952 + 2951 ], "hitgroup": [ - 2952 + 2951 ], "in_air": [ - 2952 + 2951 ], "is_suicide": [ - 2952 + 2951 ], "match": [ - 2787 + 2786 ], "match_id": [ - 2952 + 2951 ], "match_map": [ - 2625 + 2624 ], "match_map_id": [ - 2952 + 2951 ], "no_scope": [ - 2952 + 2951 ], "player": [ - 3923 + 3922 ], "round": [ - 2952 + 2951 ], "team_kill": [ - 2952 + 2951 ], "thru_smoke": [ - 2952 + 2951 ], "thru_wall": [ - 2952 + 2951 ], "time": [ - 2952 + 2951 ], "with": [ - 2952 + 2951 ], "__typename": [ 80 @@ -67480,16 +67472,16 @@ export default { }, "player_kills_pk_columns_input": { "attacked_steam_id": [ - 258 + 257 ], "attacker_steam_id": [ - 258 + 257 ], "match_map_id": [ - 4999 + 4998 ], "time": [ - 4499 + 4498 ], "__typename": [ 80 @@ -67509,7 +67501,7 @@ export default { 80 ], "attacked_steam_id": [ - 258 + 257 ], "attacked_team": [ 80 @@ -67521,7 +67513,7 @@ export default { 80 ], "attacker_steam_id": [ - 258 + 257 ], "attacker_team": [ 80 @@ -67530,7 +67522,7 @@ export default { 5 ], "deleted_at": [ - 4499 + 4498 ], "headshot": [ 5 @@ -67542,10 +67534,10 @@ export default { 5 ], "match_id": [ - 4999 + 4998 ], "match_map_id": [ - 4999 + 4998 ], "no_scope": [ 5 @@ -67560,7 +67552,7 @@ export default { 5 ], "time": [ - 4499 + 4498 ], "with": [ 80 @@ -67585,13 +67577,13 @@ export default { }, "player_kills_stddev_order_by": { "attacked_steam_id": [ - 2952 + 2951 ], "attacker_steam_id": [ - 2952 + 2951 ], "round": [ - 2952 + 2951 ], "__typename": [ 80 @@ -67613,13 +67605,13 @@ export default { }, "player_kills_stddev_pop_order_by": { "attacked_steam_id": [ - 2952 + 2951 ], "attacker_steam_id": [ - 2952 + 2951 ], "round": [ - 2952 + 2951 ], "__typename": [ 80 @@ -67641,13 +67633,13 @@ export default { }, "player_kills_stddev_samp_order_by": { "attacked_steam_id": [ - 2952 + 2951 ], "attacker_steam_id": [ - 2952 + 2951 ], "round": [ - 2952 + 2951 ], "__typename": [ 80 @@ -67655,10 +67647,10 @@ export default { }, "player_kills_stream_cursor_input": { "initial_value": [ - 3382 + 3381 ], "ordering": [ - 314 + 313 ], "__typename": [ 80 @@ -67675,7 +67667,7 @@ export default { 80 ], "attacked_steam_id": [ - 258 + 257 ], "attacked_team": [ 80 @@ -67687,7 +67679,7 @@ export default { 80 ], "attacker_steam_id": [ - 258 + 257 ], "attacker_team": [ 80 @@ -67696,7 +67688,7 @@ export default { 5 ], "deleted_at": [ - 4499 + 4498 ], "headshot": [ 5 @@ -67708,10 +67700,10 @@ export default { 5 ], "match_id": [ - 4999 + 4998 ], "match_map_id": [ - 4999 + 4998 ], "no_scope": [ 5 @@ -67726,7 +67718,7 @@ export default { 5 ], "time": [ - 4499 + 4498 ], "with": [ 80 @@ -67737,10 +67729,10 @@ export default { }, "player_kills_sum_fields": { "attacked_steam_id": [ - 258 + 257 ], "attacker_steam_id": [ - 258 + 257 ], "round": [ 40 @@ -67751,13 +67743,13 @@ export default { }, "player_kills_sum_order_by": { "attacked_steam_id": [ - 2952 + 2951 ], "attacker_steam_id": [ - 2952 + 2951 ], "round": [ - 2952 + 2951 ], "__typename": [ 80 @@ -67766,13 +67758,13 @@ export default { "player_kills_update_column": {}, "player_kills_updates": { "_inc": [ - 3361 + 3360 ], "_set": [ - 3374 + 3373 ], "where": [ - 3318 + 3317 ], "__typename": [ 80 @@ -67794,13 +67786,13 @@ export default { }, "player_kills_var_pop_order_by": { "attacked_steam_id": [ - 2952 + 2951 ], "attacker_steam_id": [ - 2952 + 2951 ], "round": [ - 2952 + 2951 ], "__typename": [ 80 @@ -67822,13 +67814,13 @@ export default { }, "player_kills_var_samp_order_by": { "attacked_steam_id": [ - 2952 + 2951 ], "attacker_steam_id": [ - 2952 + 2951 ], "round": [ - 2952 + 2951 ], "__typename": [ 80 @@ -67850,13 +67842,13 @@ export default { }, "player_kills_variance_order_by": { "attacked_steam_id": [ - 2952 + 2951 ], "attacker_steam_id": [ - 2952 + 2951 ], "round": [ - 2952 + 2951 ], "__typename": [ 80 @@ -67873,7 +67865,7 @@ export default { 40 ], "value": [ - 1670 + 1669 ], "__typename": [ 80 @@ -67881,10 +67873,10 @@ export default { }, "player_leaderboard_rank_aggregate": { "aggregate": [ - 3395 + 3394 ], "nodes": [ - 3393 + 3392 ], "__typename": [ 80 @@ -67892,13 +67884,13 @@ export default { }, "player_leaderboard_rank_aggregate_fields": { "avg": [ - 3396 + 3395 ], "count": [ 40, { "columns": [ - 3404, + 3403, "[player_leaderboard_rank_select_column!]" ], "distinct": [ @@ -67907,31 +67899,31 @@ export default { } ], "max": [ - 3400 + 3399 ], "min": [ - 3401 + 3400 ], "stddev": [ - 3406 + 3405 ], "stddev_pop": [ - 3407 + 3406 ], "stddev_samp": [ - 3408 + 3407 ], "sum": [ - 3411 + 3410 ], "var_pop": [ - 3413 + 3412 ], "var_samp": [ - 3414 + 3413 ], "variance": [ - 3415 + 3414 ], "__typename": [ 80 @@ -67953,13 +67945,13 @@ export default { }, "player_leaderboard_rank_bool_exp": { "_and": [ - 3397 + 3396 ], "_not": [ - 3397 + 3396 ], "_or": [ - 3397 + 3396 ], "player_steam_id": [ 82 @@ -67971,7 +67963,7 @@ export default { 41 ], "value": [ - 1671 + 1670 ], "__typename": [ 80 @@ -67985,7 +67977,7 @@ export default { 40 ], "value": [ - 1670 + 1669 ], "__typename": [ 80 @@ -68002,7 +67994,7 @@ export default { 40 ], "value": [ - 1670 + 1669 ], "__typename": [ 80 @@ -68019,7 +68011,7 @@ export default { 40 ], "value": [ - 1670 + 1669 ], "__typename": [ 80 @@ -68036,7 +68028,7 @@ export default { 40 ], "value": [ - 1670 + 1669 ], "__typename": [ 80 @@ -68047,7 +68039,7 @@ export default { 40 ], "returning": [ - 3393 + 3392 ], "__typename": [ 80 @@ -68055,16 +68047,16 @@ export default { }, "player_leaderboard_rank_order_by": { "player_steam_id": [ - 2952 + 2951 ], "rank": [ - 2952 + 2951 ], "total": [ - 2952 + 2951 ], "value": [ - 2952 + 2951 ], "__typename": [ 80 @@ -68082,7 +68074,7 @@ export default { 40 ], "value": [ - 1670 + 1669 ], "__typename": [ 80 @@ -68132,10 +68124,10 @@ export default { }, "player_leaderboard_rank_stream_cursor_input": { "initial_value": [ - 3410 + 3409 ], "ordering": [ - 314 + 313 ], "__typename": [ 80 @@ -68152,7 +68144,7 @@ export default { 40 ], "value": [ - 1670 + 1669 ], "__typename": [ 80 @@ -68166,7 +68158,7 @@ export default { 40 ], "value": [ - 1670 + 1669 ], "__typename": [ 80 @@ -68174,13 +68166,13 @@ export default { }, "player_leaderboard_rank_updates": { "_inc": [ - 3398 + 3397 ], "_set": [ - 3405 + 3404 ], "where": [ - 3397 + 3396 ], "__typename": [ 80 @@ -68248,7 +68240,7 @@ export default { 40 ], "crosshair_angle_sum_deg": [ - 2950 + 2949 ], "damage": [ 40 @@ -68290,7 +68282,7 @@ export default { 40 ], "flash_duration_sum": [ - 2950 + 2949 ], "flashes_thrown": [ 40 @@ -68344,16 +68336,16 @@ export default { 40 ], "match": [ - 2767 + 2766 ], "match_id": [ - 4999 + 4998 ], "match_map": [ - 2605 + 2604 ], "match_map_id": [ - 4999 + 4998 ], "molotov_damage": [ 40 @@ -68368,7 +68360,7 @@ export default { 40 ], "player": [ - 3910 + 3909 ], "rounds_ct": [ 40 @@ -68401,7 +68393,7 @@ export default { 40 ], "steam_id": [ - 258 + 257 ], "team_damage": [ 40 @@ -68416,7 +68408,7 @@ export default { 40 ], "time_to_damage_sum_s": [ - 2950 + 2949 ], "total_engagement_frames": [ 40 @@ -68446,7 +68438,7 @@ export default { 40 ], "updated_at": [ - 4499 + 4498 ], "util_on_death_count": [ 40 @@ -68466,10 +68458,10 @@ export default { }, "player_match_map_stats_aggregate": { "aggregate": [ - 3420 + 3419 ], "nodes": [ - 3416 + 3415 ], "__typename": [ 80 @@ -68477,7 +68469,7 @@ export default { }, "player_match_map_stats_aggregate_bool_exp": { "count": [ - 3419 + 3418 ], "__typename": [ 80 @@ -68485,13 +68477,13 @@ export default { }, "player_match_map_stats_aggregate_bool_exp_count": { "arguments": [ - 3437 + 3436 ], "distinct": [ 5 ], "filter": [ - 3425 + 3424 ], "predicate": [ 41 @@ -68502,13 +68494,13 @@ export default { }, "player_match_map_stats_aggregate_fields": { "avg": [ - 3423 + 3422 ], "count": [ 40, { "columns": [ - 3437, + 3436, "[player_match_map_stats_select_column!]" ], "distinct": [ @@ -68517,31 +68509,31 @@ export default { } ], "max": [ - 3429 + 3428 ], "min": [ - 3431 + 3430 ], "stddev": [ - 3439 + 3438 ], "stddev_pop": [ - 3441 + 3440 ], "stddev_samp": [ - 3443 + 3442 ], "sum": [ - 3447 + 3446 ], "var_pop": [ - 3451 + 3450 ], "var_samp": [ - 3453 + 3452 ], "variance": [ - 3455 + 3454 ], "__typename": [ 80 @@ -68549,37 +68541,37 @@ export default { }, "player_match_map_stats_aggregate_order_by": { "avg": [ - 3424 + 3423 ], "count": [ - 2952 + 2951 ], "max": [ - 3430 + 3429 ], "min": [ - 3432 + 3431 ], "stddev": [ - 3440 + 3439 ], "stddev_pop": [ - 3442 + 3441 ], "stddev_samp": [ - 3444 + 3443 ], "sum": [ - 3448 + 3447 ], "var_pop": [ - 3452 + 3451 ], "var_samp": [ - 3454 + 3453 ], "variance": [ - 3456 + 3455 ], "__typename": [ 80 @@ -68587,10 +68579,10 @@ export default { }, "player_match_map_stats_arr_rel_insert_input": { "data": [ - 3428 + 3427 ], "on_conflict": [ - 3434 + 3433 ], "__typename": [ 80 @@ -68816,217 +68808,217 @@ export default { }, "player_match_map_stats_avg_order_by": { "assists": [ - 2952 + 2951 ], "assists_ct": [ - 2952 + 2951 ], "assists_t": [ - 2952 + 2951 ], "counter_strafe_eligible_shots": [ - 2952 + 2951 ], "counter_strafed_shots": [ - 2952 + 2951 ], "crosshair_angle_count": [ - 2952 + 2951 ], "crosshair_angle_sum_deg": [ - 2952 + 2951 ], "damage": [ - 2952 + 2951 ], "damage_ct": [ - 2952 + 2951 ], "damage_t": [ - 2952 + 2951 ], "deaths": [ - 2952 + 2951 ], "deaths_ct": [ - 2952 + 2951 ], "deaths_t": [ - 2952 + 2951 ], "decoy_throws": [ - 2952 + 2951 ], "enemies_flashed": [ - 2952 + 2951 ], "first_bullet_hits": [ - 2952 + 2951 ], "first_bullet_shots": [ - 2952 + 2951 ], "five_kill_rounds": [ - 2952 + 2951 ], "flash_assists": [ - 2952 + 2951 ], "flash_duration_count": [ - 2952 + 2951 ], "flash_duration_sum": [ - 2952 + 2951 ], "flashes_thrown": [ - 2952 + 2951 ], "four_kill_rounds": [ - 2952 + 2951 ], "he_damage": [ - 2952 + 2951 ], "he_team_damage": [ - 2952 + 2951 ], "he_throws": [ - 2952 + 2951 ], "headshot_hits": [ - 2952 + 2951 ], "hits": [ - 2952 + 2951 ], "hits_at_spotted": [ - 2952 + 2951 ], "hs_kills": [ - 2952 + 2951 ], "hs_kills_ct": [ - 2952 + 2951 ], "hs_kills_t": [ - 2952 + 2951 ], "kast_rounds": [ - 2952 + 2951 ], "kast_total_rounds": [ - 2952 + 2951 ], "kills": [ - 2952 + 2951 ], "kills_ct": [ - 2952 + 2951 ], "kills_t": [ - 2952 + 2951 ], "knife_kills": [ - 2952 + 2951 ], "molotov_damage": [ - 2952 + 2951 ], "molotov_throws": [ - 2952 + 2951 ], "non_awp_hits": [ - 2952 + 2951 ], "on_target_frames": [ - 2952 + 2951 ], "rounds_ct": [ - 2952 + 2951 ], "rounds_played": [ - 2952 + 2951 ], "rounds_t": [ - 2952 + 2951 ], "shots_at_spotted": [ - 2952 + 2951 ], "shots_fired": [ - 2952 + 2951 ], "smoke_throws": [ - 2952 + 2951 ], "spotted_count": [ - 2952 + 2951 ], "spotted_with_damage_count": [ - 2952 + 2951 ], "spray_hits": [ - 2952 + 2951 ], "spray_shots": [ - 2952 + 2951 ], "steam_id": [ - 2952 + 2951 ], "team_damage": [ - 2952 + 2951 ], "team_flashed": [ - 2952 + 2951 ], "three_kill_rounds": [ - 2952 + 2951 ], "time_to_damage_count": [ - 2952 + 2951 ], "time_to_damage_sum_s": [ - 2952 + 2951 ], "total_engagement_frames": [ - 2952 + 2951 ], "trade_kill_attempts": [ - 2952 + 2951 ], "trade_kill_opportunities": [ - 2952 + 2951 ], "trade_kill_successes": [ - 2952 + 2951 ], "traded_death_attempts": [ - 2952 + 2951 ], "traded_death_opportunities": [ - 2952 + 2951 ], "traded_death_successes": [ - 2952 + 2951 ], "two_kill_rounds": [ - 2952 + 2951 ], "unused_utility_value": [ - 2952 + 2951 ], "util_on_death_count": [ - 2952 + 2951 ], "util_on_death_sum": [ - 2952 + 2951 ], "wasted_magazine_shots": [ - 2952 + 2951 ], "zeus_kills": [ - 2952 + 2951 ], "__typename": [ 80 @@ -69034,13 +69026,13 @@ export default { }, "player_match_map_stats_bool_exp": { "_and": [ - 3425 + 3424 ], "_not": [ - 3425 + 3424 ], "_or": [ - 3425 + 3424 ], "assists": [ 41 @@ -69061,7 +69053,7 @@ export default { 41 ], "crosshair_angle_sum_deg": [ - 2951 + 2950 ], "damage": [ 41 @@ -69103,7 +69095,7 @@ export default { 41 ], "flash_duration_sum": [ - 2951 + 2950 ], "flashes_thrown": [ 41 @@ -69157,16 +69149,16 @@ export default { 41 ], "match": [ - 2776 + 2775 ], "match_id": [ - 5001 + 5000 ], "match_map": [ - 2614 + 2613 ], "match_map_id": [ - 5001 + 5000 ], "molotov_damage": [ 41 @@ -69181,7 +69173,7 @@ export default { 41 ], "player": [ - 3914 + 3913 ], "rounds_ct": [ 41 @@ -69214,7 +69206,7 @@ export default { 41 ], "steam_id": [ - 260 + 259 ], "team_damage": [ 41 @@ -69229,7 +69221,7 @@ export default { 41 ], "time_to_damage_sum_s": [ - 2951 + 2950 ], "total_engagement_frames": [ 41 @@ -69259,7 +69251,7 @@ export default { 41 ], "updated_at": [ - 4500 + 4499 ], "util_on_death_count": [ 41 @@ -69298,7 +69290,7 @@ export default { 40 ], "crosshair_angle_sum_deg": [ - 2950 + 2949 ], "damage": [ 40 @@ -69340,7 +69332,7 @@ export default { 40 ], "flash_duration_sum": [ - 2950 + 2949 ], "flashes_thrown": [ 40 @@ -69436,7 +69428,7 @@ export default { 40 ], "steam_id": [ - 258 + 257 ], "team_damage": [ 40 @@ -69451,7 +69443,7 @@ export default { 40 ], "time_to_damage_sum_s": [ - 2950 + 2949 ], "total_engagement_frames": [ 40 @@ -69516,7 +69508,7 @@ export default { 40 ], "crosshair_angle_sum_deg": [ - 2950 + 2949 ], "damage": [ 40 @@ -69558,7 +69550,7 @@ export default { 40 ], "flash_duration_sum": [ - 2950 + 2949 ], "flashes_thrown": [ 40 @@ -69612,16 +69604,16 @@ export default { 40 ], "match": [ - 2785 + 2784 ], "match_id": [ - 4999 + 4998 ], "match_map": [ - 2623 + 2622 ], "match_map_id": [ - 4999 + 4998 ], "molotov_damage": [ 40 @@ -69636,7 +69628,7 @@ export default { 40 ], "player": [ - 3921 + 3920 ], "rounds_ct": [ 40 @@ -69669,7 +69661,7 @@ export default { 40 ], "steam_id": [ - 258 + 257 ], "team_damage": [ 40 @@ -69684,7 +69676,7 @@ export default { 40 ], "time_to_damage_sum_s": [ - 2950 + 2949 ], "total_engagement_frames": [ 40 @@ -69714,7 +69706,7 @@ export default { 40 ], "updated_at": [ - 4499 + 4498 ], "util_on_death_count": [ 40 @@ -69752,7 +69744,7 @@ export default { 40 ], "crosshair_angle_sum_deg": [ - 2950 + 2949 ], "damage": [ 40 @@ -69794,7 +69786,7 @@ export default { 40 ], "flash_duration_sum": [ - 2950 + 2949 ], "flashes_thrown": [ 40 @@ -69848,10 +69840,10 @@ export default { 40 ], "match_id": [ - 4999 + 4998 ], "match_map_id": [ - 4999 + 4998 ], "molotov_damage": [ 40 @@ -69896,7 +69888,7 @@ export default { 40 ], "steam_id": [ - 258 + 257 ], "team_damage": [ 40 @@ -69911,7 +69903,7 @@ export default { 40 ], "time_to_damage_sum_s": [ - 2950 + 2949 ], "total_engagement_frames": [ 40 @@ -69941,7 +69933,7 @@ export default { 40 ], "updated_at": [ - 4499 + 4498 ], "util_on_death_count": [ 40 @@ -69961,226 +69953,226 @@ export default { }, "player_match_map_stats_max_order_by": { "assists": [ - 2952 + 2951 ], "assists_ct": [ - 2952 + 2951 ], "assists_t": [ - 2952 + 2951 ], "counter_strafe_eligible_shots": [ - 2952 + 2951 ], "counter_strafed_shots": [ - 2952 + 2951 ], "crosshair_angle_count": [ - 2952 + 2951 ], "crosshair_angle_sum_deg": [ - 2952 + 2951 ], "damage": [ - 2952 + 2951 ], "damage_ct": [ - 2952 + 2951 ], "damage_t": [ - 2952 + 2951 ], "deaths": [ - 2952 + 2951 ], "deaths_ct": [ - 2952 + 2951 ], "deaths_t": [ - 2952 + 2951 ], "decoy_throws": [ - 2952 + 2951 ], "enemies_flashed": [ - 2952 + 2951 ], "first_bullet_hits": [ - 2952 + 2951 ], "first_bullet_shots": [ - 2952 + 2951 ], "five_kill_rounds": [ - 2952 + 2951 ], "flash_assists": [ - 2952 + 2951 ], "flash_duration_count": [ - 2952 + 2951 ], "flash_duration_sum": [ - 2952 + 2951 ], "flashes_thrown": [ - 2952 + 2951 ], "four_kill_rounds": [ - 2952 + 2951 ], "he_damage": [ - 2952 + 2951 ], "he_team_damage": [ - 2952 + 2951 ], "he_throws": [ - 2952 + 2951 ], "headshot_hits": [ - 2952 + 2951 ], "hits": [ - 2952 + 2951 ], "hits_at_spotted": [ - 2952 + 2951 ], "hs_kills": [ - 2952 + 2951 ], "hs_kills_ct": [ - 2952 + 2951 ], "hs_kills_t": [ - 2952 + 2951 ], "kast_rounds": [ - 2952 + 2951 ], "kast_total_rounds": [ - 2952 + 2951 ], "kills": [ - 2952 + 2951 ], "kills_ct": [ - 2952 + 2951 ], "kills_t": [ - 2952 + 2951 ], "knife_kills": [ - 2952 + 2951 ], "match_id": [ - 2952 + 2951 ], "match_map_id": [ - 2952 + 2951 ], "molotov_damage": [ - 2952 + 2951 ], "molotov_throws": [ - 2952 + 2951 ], "non_awp_hits": [ - 2952 + 2951 ], "on_target_frames": [ - 2952 + 2951 ], "rounds_ct": [ - 2952 + 2951 ], "rounds_played": [ - 2952 + 2951 ], "rounds_t": [ - 2952 + 2951 ], "shots_at_spotted": [ - 2952 + 2951 ], "shots_fired": [ - 2952 + 2951 ], "smoke_throws": [ - 2952 + 2951 ], "spotted_count": [ - 2952 + 2951 ], "spotted_with_damage_count": [ - 2952 + 2951 ], "spray_hits": [ - 2952 + 2951 ], "spray_shots": [ - 2952 + 2951 ], "steam_id": [ - 2952 + 2951 ], "team_damage": [ - 2952 + 2951 ], "team_flashed": [ - 2952 + 2951 ], "three_kill_rounds": [ - 2952 + 2951 ], "time_to_damage_count": [ - 2952 + 2951 ], "time_to_damage_sum_s": [ - 2952 + 2951 ], "total_engagement_frames": [ - 2952 + 2951 ], "trade_kill_attempts": [ - 2952 + 2951 ], "trade_kill_opportunities": [ - 2952 + 2951 ], "trade_kill_successes": [ - 2952 + 2951 ], "traded_death_attempts": [ - 2952 + 2951 ], "traded_death_opportunities": [ - 2952 + 2951 ], "traded_death_successes": [ - 2952 + 2951 ], "two_kill_rounds": [ - 2952 + 2951 ], "unused_utility_value": [ - 2952 + 2951 ], "updated_at": [ - 2952 + 2951 ], "util_on_death_count": [ - 2952 + 2951 ], "util_on_death_sum": [ - 2952 + 2951 ], "wasted_magazine_shots": [ - 2952 + 2951 ], "zeus_kills": [ - 2952 + 2951 ], "__typename": [ 80 @@ -70206,7 +70198,7 @@ export default { 40 ], "crosshair_angle_sum_deg": [ - 2950 + 2949 ], "damage": [ 40 @@ -70248,7 +70240,7 @@ export default { 40 ], "flash_duration_sum": [ - 2950 + 2949 ], "flashes_thrown": [ 40 @@ -70302,10 +70294,10 @@ export default { 40 ], "match_id": [ - 4999 + 4998 ], "match_map_id": [ - 4999 + 4998 ], "molotov_damage": [ 40 @@ -70350,7 +70342,7 @@ export default { 40 ], "steam_id": [ - 258 + 257 ], "team_damage": [ 40 @@ -70365,7 +70357,7 @@ export default { 40 ], "time_to_damage_sum_s": [ - 2950 + 2949 ], "total_engagement_frames": [ 40 @@ -70395,7 +70387,7 @@ export default { 40 ], "updated_at": [ - 4499 + 4498 ], "util_on_death_count": [ 40 @@ -70415,226 +70407,226 @@ export default { }, "player_match_map_stats_min_order_by": { "assists": [ - 2952 + 2951 ], "assists_ct": [ - 2952 + 2951 ], "assists_t": [ - 2952 + 2951 ], "counter_strafe_eligible_shots": [ - 2952 + 2951 ], "counter_strafed_shots": [ - 2952 + 2951 ], "crosshair_angle_count": [ - 2952 + 2951 ], "crosshair_angle_sum_deg": [ - 2952 + 2951 ], "damage": [ - 2952 + 2951 ], "damage_ct": [ - 2952 + 2951 ], "damage_t": [ - 2952 + 2951 ], "deaths": [ - 2952 + 2951 ], "deaths_ct": [ - 2952 + 2951 ], "deaths_t": [ - 2952 + 2951 ], "decoy_throws": [ - 2952 + 2951 ], "enemies_flashed": [ - 2952 + 2951 ], "first_bullet_hits": [ - 2952 + 2951 ], "first_bullet_shots": [ - 2952 + 2951 ], "five_kill_rounds": [ - 2952 + 2951 ], "flash_assists": [ - 2952 + 2951 ], "flash_duration_count": [ - 2952 + 2951 ], "flash_duration_sum": [ - 2952 + 2951 ], "flashes_thrown": [ - 2952 + 2951 ], "four_kill_rounds": [ - 2952 + 2951 ], "he_damage": [ - 2952 + 2951 ], "he_team_damage": [ - 2952 + 2951 ], "he_throws": [ - 2952 + 2951 ], "headshot_hits": [ - 2952 + 2951 ], "hits": [ - 2952 + 2951 ], "hits_at_spotted": [ - 2952 + 2951 ], "hs_kills": [ - 2952 + 2951 ], "hs_kills_ct": [ - 2952 + 2951 ], "hs_kills_t": [ - 2952 + 2951 ], "kast_rounds": [ - 2952 + 2951 ], "kast_total_rounds": [ - 2952 + 2951 ], "kills": [ - 2952 + 2951 ], "kills_ct": [ - 2952 + 2951 ], "kills_t": [ - 2952 + 2951 ], "knife_kills": [ - 2952 + 2951 ], "match_id": [ - 2952 + 2951 ], "match_map_id": [ - 2952 + 2951 ], "molotov_damage": [ - 2952 + 2951 ], "molotov_throws": [ - 2952 + 2951 ], "non_awp_hits": [ - 2952 + 2951 ], "on_target_frames": [ - 2952 + 2951 ], "rounds_ct": [ - 2952 + 2951 ], "rounds_played": [ - 2952 + 2951 ], "rounds_t": [ - 2952 + 2951 ], "shots_at_spotted": [ - 2952 + 2951 ], "shots_fired": [ - 2952 + 2951 ], "smoke_throws": [ - 2952 + 2951 ], "spotted_count": [ - 2952 + 2951 ], "spotted_with_damage_count": [ - 2952 + 2951 ], "spray_hits": [ - 2952 + 2951 ], "spray_shots": [ - 2952 + 2951 ], "steam_id": [ - 2952 + 2951 ], "team_damage": [ - 2952 + 2951 ], "team_flashed": [ - 2952 + 2951 ], "three_kill_rounds": [ - 2952 + 2951 ], "time_to_damage_count": [ - 2952 + 2951 ], "time_to_damage_sum_s": [ - 2952 + 2951 ], "total_engagement_frames": [ - 2952 + 2951 ], "trade_kill_attempts": [ - 2952 + 2951 ], "trade_kill_opportunities": [ - 2952 + 2951 ], "trade_kill_successes": [ - 2952 + 2951 ], "traded_death_attempts": [ - 2952 + 2951 ], "traded_death_opportunities": [ - 2952 + 2951 ], "traded_death_successes": [ - 2952 + 2951 ], "two_kill_rounds": [ - 2952 + 2951 ], "unused_utility_value": [ - 2952 + 2951 ], "updated_at": [ - 2952 + 2951 ], "util_on_death_count": [ - 2952 + 2951 ], "util_on_death_sum": [ - 2952 + 2951 ], "wasted_magazine_shots": [ - 2952 + 2951 ], "zeus_kills": [ - 2952 + 2951 ], "__typename": [ 80 @@ -70645,7 +70637,7 @@ export default { 40 ], "returning": [ - 3416 + 3415 ], "__typename": [ 80 @@ -70653,13 +70645,13 @@ export default { }, "player_match_map_stats_on_conflict": { "constraint": [ - 3426 + 3425 ], "update_columns": [ - 3449 + 3448 ], "where": [ - 3425 + 3424 ], "__typename": [ 80 @@ -70667,235 +70659,235 @@ export default { }, "player_match_map_stats_order_by": { "assists": [ - 2952 + 2951 ], "assists_ct": [ - 2952 + 2951 ], "assists_t": [ - 2952 + 2951 ], "counter_strafe_eligible_shots": [ - 2952 + 2951 ], "counter_strafed_shots": [ - 2952 + 2951 ], "crosshair_angle_count": [ - 2952 + 2951 ], "crosshair_angle_sum_deg": [ - 2952 + 2951 ], "damage": [ - 2952 + 2951 ], "damage_ct": [ - 2952 + 2951 ], "damage_t": [ - 2952 + 2951 ], "deaths": [ - 2952 + 2951 ], "deaths_ct": [ - 2952 + 2951 ], "deaths_t": [ - 2952 + 2951 ], "decoy_throws": [ - 2952 + 2951 ], "enemies_flashed": [ - 2952 + 2951 ], "first_bullet_hits": [ - 2952 + 2951 ], "first_bullet_shots": [ - 2952 + 2951 ], "five_kill_rounds": [ - 2952 + 2951 ], "flash_assists": [ - 2952 + 2951 ], "flash_duration_count": [ - 2952 + 2951 ], "flash_duration_sum": [ - 2952 + 2951 ], "flashes_thrown": [ - 2952 + 2951 ], "four_kill_rounds": [ - 2952 + 2951 ], "he_damage": [ - 2952 + 2951 ], "he_team_damage": [ - 2952 + 2951 ], "he_throws": [ - 2952 + 2951 ], "headshot_hits": [ - 2952 + 2951 ], "hits": [ - 2952 + 2951 ], "hits_at_spotted": [ - 2952 + 2951 ], "hs_kills": [ - 2952 + 2951 ], "hs_kills_ct": [ - 2952 + 2951 ], "hs_kills_t": [ - 2952 + 2951 ], "kast_rounds": [ - 2952 + 2951 ], "kast_total_rounds": [ - 2952 + 2951 ], "kills": [ - 2952 + 2951 ], "kills_ct": [ - 2952 + 2951 ], "kills_t": [ - 2952 + 2951 ], "knife_kills": [ - 2952 + 2951 ], "match": [ - 2787 + 2786 ], "match_id": [ - 2952 + 2951 ], "match_map": [ - 2625 + 2624 ], "match_map_id": [ - 2952 + 2951 ], "molotov_damage": [ - 2952 + 2951 ], "molotov_throws": [ - 2952 + 2951 ], "non_awp_hits": [ - 2952 + 2951 ], "on_target_frames": [ - 2952 + 2951 ], "player": [ - 3923 + 3922 ], "rounds_ct": [ - 2952 + 2951 ], "rounds_played": [ - 2952 + 2951 ], "rounds_t": [ - 2952 + 2951 ], "shots_at_spotted": [ - 2952 + 2951 ], "shots_fired": [ - 2952 + 2951 ], "smoke_throws": [ - 2952 + 2951 ], "spotted_count": [ - 2952 + 2951 ], "spotted_with_damage_count": [ - 2952 + 2951 ], "spray_hits": [ - 2952 + 2951 ], "spray_shots": [ - 2952 + 2951 ], "steam_id": [ - 2952 + 2951 ], "team_damage": [ - 2952 + 2951 ], "team_flashed": [ - 2952 + 2951 ], "three_kill_rounds": [ - 2952 + 2951 ], "time_to_damage_count": [ - 2952 + 2951 ], "time_to_damage_sum_s": [ - 2952 + 2951 ], "total_engagement_frames": [ - 2952 + 2951 ], "trade_kill_attempts": [ - 2952 + 2951 ], "trade_kill_opportunities": [ - 2952 + 2951 ], "trade_kill_successes": [ - 2952 + 2951 ], "traded_death_attempts": [ - 2952 + 2951 ], "traded_death_opportunities": [ - 2952 + 2951 ], "traded_death_successes": [ - 2952 + 2951 ], "two_kill_rounds": [ - 2952 + 2951 ], "unused_utility_value": [ - 2952 + 2951 ], "updated_at": [ - 2952 + 2951 ], "util_on_death_count": [ - 2952 + 2951 ], "util_on_death_sum": [ - 2952 + 2951 ], "wasted_magazine_shots": [ - 2952 + 2951 ], "zeus_kills": [ - 2952 + 2951 ], "__typename": [ 80 @@ -70903,10 +70895,10 @@ export default { }, "player_match_map_stats_pk_columns_input": { "match_map_id": [ - 4999 + 4998 ], "steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -70933,7 +70925,7 @@ export default { 40 ], "crosshair_angle_sum_deg": [ - 2950 + 2949 ], "damage": [ 40 @@ -70975,7 +70967,7 @@ export default { 40 ], "flash_duration_sum": [ - 2950 + 2949 ], "flashes_thrown": [ 40 @@ -71029,10 +71021,10 @@ export default { 40 ], "match_id": [ - 4999 + 4998 ], "match_map_id": [ - 4999 + 4998 ], "molotov_damage": [ 40 @@ -71077,7 +71069,7 @@ export default { 40 ], "steam_id": [ - 258 + 257 ], "team_damage": [ 40 @@ -71092,7 +71084,7 @@ export default { 40 ], "time_to_damage_sum_s": [ - 2950 + 2949 ], "total_engagement_frames": [ 40 @@ -71122,7 +71114,7 @@ export default { 40 ], "updated_at": [ - 4499 + 4498 ], "util_on_death_count": [ 40 @@ -71360,217 +71352,217 @@ export default { }, "player_match_map_stats_stddev_order_by": { "assists": [ - 2952 + 2951 ], "assists_ct": [ - 2952 + 2951 ], "assists_t": [ - 2952 + 2951 ], "counter_strafe_eligible_shots": [ - 2952 + 2951 ], "counter_strafed_shots": [ - 2952 + 2951 ], "crosshair_angle_count": [ - 2952 + 2951 ], "crosshair_angle_sum_deg": [ - 2952 + 2951 ], "damage": [ - 2952 + 2951 ], "damage_ct": [ - 2952 + 2951 ], "damage_t": [ - 2952 + 2951 ], "deaths": [ - 2952 + 2951 ], "deaths_ct": [ - 2952 + 2951 ], "deaths_t": [ - 2952 + 2951 ], "decoy_throws": [ - 2952 + 2951 ], "enemies_flashed": [ - 2952 + 2951 ], "first_bullet_hits": [ - 2952 + 2951 ], "first_bullet_shots": [ - 2952 + 2951 ], "five_kill_rounds": [ - 2952 + 2951 ], "flash_assists": [ - 2952 + 2951 ], "flash_duration_count": [ - 2952 + 2951 ], "flash_duration_sum": [ - 2952 + 2951 ], "flashes_thrown": [ - 2952 + 2951 ], "four_kill_rounds": [ - 2952 + 2951 ], "he_damage": [ - 2952 + 2951 ], "he_team_damage": [ - 2952 + 2951 ], "he_throws": [ - 2952 + 2951 ], "headshot_hits": [ - 2952 + 2951 ], "hits": [ - 2952 + 2951 ], "hits_at_spotted": [ - 2952 + 2951 ], "hs_kills": [ - 2952 + 2951 ], "hs_kills_ct": [ - 2952 + 2951 ], "hs_kills_t": [ - 2952 + 2951 ], "kast_rounds": [ - 2952 + 2951 ], "kast_total_rounds": [ - 2952 + 2951 ], "kills": [ - 2952 + 2951 ], "kills_ct": [ - 2952 + 2951 ], "kills_t": [ - 2952 + 2951 ], "knife_kills": [ - 2952 + 2951 ], "molotov_damage": [ - 2952 + 2951 ], "molotov_throws": [ - 2952 + 2951 ], "non_awp_hits": [ - 2952 + 2951 ], "on_target_frames": [ - 2952 + 2951 ], "rounds_ct": [ - 2952 + 2951 ], "rounds_played": [ - 2952 + 2951 ], "rounds_t": [ - 2952 + 2951 ], "shots_at_spotted": [ - 2952 + 2951 ], "shots_fired": [ - 2952 + 2951 ], "smoke_throws": [ - 2952 + 2951 ], "spotted_count": [ - 2952 + 2951 ], "spotted_with_damage_count": [ - 2952 + 2951 ], "spray_hits": [ - 2952 + 2951 ], "spray_shots": [ - 2952 + 2951 ], "steam_id": [ - 2952 + 2951 ], "team_damage": [ - 2952 + 2951 ], "team_flashed": [ - 2952 + 2951 ], "three_kill_rounds": [ - 2952 + 2951 ], "time_to_damage_count": [ - 2952 + 2951 ], "time_to_damage_sum_s": [ - 2952 + 2951 ], "total_engagement_frames": [ - 2952 + 2951 ], "trade_kill_attempts": [ - 2952 + 2951 ], "trade_kill_opportunities": [ - 2952 + 2951 ], "trade_kill_successes": [ - 2952 + 2951 ], "traded_death_attempts": [ - 2952 + 2951 ], "traded_death_opportunities": [ - 2952 + 2951 ], "traded_death_successes": [ - 2952 + 2951 ], "two_kill_rounds": [ - 2952 + 2951 ], "unused_utility_value": [ - 2952 + 2951 ], "util_on_death_count": [ - 2952 + 2951 ], "util_on_death_sum": [ - 2952 + 2951 ], "wasted_magazine_shots": [ - 2952 + 2951 ], "zeus_kills": [ - 2952 + 2951 ], "__typename": [ 80 @@ -71796,217 +71788,217 @@ export default { }, "player_match_map_stats_stddev_pop_order_by": { "assists": [ - 2952 + 2951 ], "assists_ct": [ - 2952 + 2951 ], "assists_t": [ - 2952 + 2951 ], "counter_strafe_eligible_shots": [ - 2952 + 2951 ], "counter_strafed_shots": [ - 2952 + 2951 ], "crosshair_angle_count": [ - 2952 + 2951 ], "crosshair_angle_sum_deg": [ - 2952 + 2951 ], "damage": [ - 2952 + 2951 ], "damage_ct": [ - 2952 + 2951 ], "damage_t": [ - 2952 + 2951 ], "deaths": [ - 2952 + 2951 ], "deaths_ct": [ - 2952 + 2951 ], "deaths_t": [ - 2952 + 2951 ], "decoy_throws": [ - 2952 + 2951 ], "enemies_flashed": [ - 2952 + 2951 ], "first_bullet_hits": [ - 2952 + 2951 ], "first_bullet_shots": [ - 2952 + 2951 ], "five_kill_rounds": [ - 2952 + 2951 ], "flash_assists": [ - 2952 + 2951 ], "flash_duration_count": [ - 2952 + 2951 ], "flash_duration_sum": [ - 2952 + 2951 ], "flashes_thrown": [ - 2952 + 2951 ], "four_kill_rounds": [ - 2952 + 2951 ], "he_damage": [ - 2952 + 2951 ], "he_team_damage": [ - 2952 + 2951 ], "he_throws": [ - 2952 + 2951 ], "headshot_hits": [ - 2952 + 2951 ], "hits": [ - 2952 + 2951 ], "hits_at_spotted": [ - 2952 + 2951 ], "hs_kills": [ - 2952 + 2951 ], "hs_kills_ct": [ - 2952 + 2951 ], "hs_kills_t": [ - 2952 + 2951 ], "kast_rounds": [ - 2952 + 2951 ], "kast_total_rounds": [ - 2952 + 2951 ], "kills": [ - 2952 + 2951 ], "kills_ct": [ - 2952 + 2951 ], "kills_t": [ - 2952 + 2951 ], "knife_kills": [ - 2952 + 2951 ], "molotov_damage": [ - 2952 + 2951 ], "molotov_throws": [ - 2952 + 2951 ], "non_awp_hits": [ - 2952 + 2951 ], "on_target_frames": [ - 2952 + 2951 ], "rounds_ct": [ - 2952 + 2951 ], "rounds_played": [ - 2952 + 2951 ], "rounds_t": [ - 2952 + 2951 ], "shots_at_spotted": [ - 2952 + 2951 ], "shots_fired": [ - 2952 + 2951 ], "smoke_throws": [ - 2952 + 2951 ], "spotted_count": [ - 2952 + 2951 ], "spotted_with_damage_count": [ - 2952 + 2951 ], "spray_hits": [ - 2952 + 2951 ], "spray_shots": [ - 2952 + 2951 ], "steam_id": [ - 2952 + 2951 ], "team_damage": [ - 2952 + 2951 ], "team_flashed": [ - 2952 + 2951 ], "three_kill_rounds": [ - 2952 + 2951 ], "time_to_damage_count": [ - 2952 + 2951 ], "time_to_damage_sum_s": [ - 2952 + 2951 ], "total_engagement_frames": [ - 2952 + 2951 ], "trade_kill_attempts": [ - 2952 + 2951 ], "trade_kill_opportunities": [ - 2952 + 2951 ], "trade_kill_successes": [ - 2952 + 2951 ], "traded_death_attempts": [ - 2952 + 2951 ], "traded_death_opportunities": [ - 2952 + 2951 ], "traded_death_successes": [ - 2952 + 2951 ], "two_kill_rounds": [ - 2952 + 2951 ], "unused_utility_value": [ - 2952 + 2951 ], "util_on_death_count": [ - 2952 + 2951 ], "util_on_death_sum": [ - 2952 + 2951 ], "wasted_magazine_shots": [ - 2952 + 2951 ], "zeus_kills": [ - 2952 + 2951 ], "__typename": [ 80 @@ -72232,217 +72224,217 @@ export default { }, "player_match_map_stats_stddev_samp_order_by": { "assists": [ - 2952 + 2951 ], "assists_ct": [ - 2952 + 2951 ], "assists_t": [ - 2952 + 2951 ], "counter_strafe_eligible_shots": [ - 2952 + 2951 ], "counter_strafed_shots": [ - 2952 + 2951 ], "crosshair_angle_count": [ - 2952 + 2951 ], "crosshair_angle_sum_deg": [ - 2952 + 2951 ], "damage": [ - 2952 + 2951 ], "damage_ct": [ - 2952 + 2951 ], "damage_t": [ - 2952 + 2951 ], "deaths": [ - 2952 + 2951 ], "deaths_ct": [ - 2952 + 2951 ], "deaths_t": [ - 2952 + 2951 ], "decoy_throws": [ - 2952 + 2951 ], "enemies_flashed": [ - 2952 + 2951 ], "first_bullet_hits": [ - 2952 + 2951 ], "first_bullet_shots": [ - 2952 + 2951 ], "five_kill_rounds": [ - 2952 + 2951 ], "flash_assists": [ - 2952 + 2951 ], "flash_duration_count": [ - 2952 + 2951 ], "flash_duration_sum": [ - 2952 + 2951 ], "flashes_thrown": [ - 2952 + 2951 ], "four_kill_rounds": [ - 2952 + 2951 ], "he_damage": [ - 2952 + 2951 ], "he_team_damage": [ - 2952 + 2951 ], "he_throws": [ - 2952 + 2951 ], "headshot_hits": [ - 2952 + 2951 ], "hits": [ - 2952 + 2951 ], "hits_at_spotted": [ - 2952 + 2951 ], "hs_kills": [ - 2952 + 2951 ], "hs_kills_ct": [ - 2952 + 2951 ], "hs_kills_t": [ - 2952 + 2951 ], "kast_rounds": [ - 2952 + 2951 ], "kast_total_rounds": [ - 2952 + 2951 ], "kills": [ - 2952 + 2951 ], "kills_ct": [ - 2952 + 2951 ], "kills_t": [ - 2952 + 2951 ], "knife_kills": [ - 2952 + 2951 ], "molotov_damage": [ - 2952 + 2951 ], "molotov_throws": [ - 2952 + 2951 ], "non_awp_hits": [ - 2952 + 2951 ], "on_target_frames": [ - 2952 + 2951 ], "rounds_ct": [ - 2952 + 2951 ], "rounds_played": [ - 2952 + 2951 ], "rounds_t": [ - 2952 + 2951 ], "shots_at_spotted": [ - 2952 + 2951 ], "shots_fired": [ - 2952 + 2951 ], "smoke_throws": [ - 2952 + 2951 ], "spotted_count": [ - 2952 + 2951 ], "spotted_with_damage_count": [ - 2952 + 2951 ], "spray_hits": [ - 2952 + 2951 ], "spray_shots": [ - 2952 + 2951 ], "steam_id": [ - 2952 + 2951 ], "team_damage": [ - 2952 + 2951 ], "team_flashed": [ - 2952 + 2951 ], "three_kill_rounds": [ - 2952 + 2951 ], "time_to_damage_count": [ - 2952 + 2951 ], "time_to_damage_sum_s": [ - 2952 + 2951 ], "total_engagement_frames": [ - 2952 + 2951 ], "trade_kill_attempts": [ - 2952 + 2951 ], "trade_kill_opportunities": [ - 2952 + 2951 ], "trade_kill_successes": [ - 2952 + 2951 ], "traded_death_attempts": [ - 2952 + 2951 ], "traded_death_opportunities": [ - 2952 + 2951 ], "traded_death_successes": [ - 2952 + 2951 ], "two_kill_rounds": [ - 2952 + 2951 ], "unused_utility_value": [ - 2952 + 2951 ], "util_on_death_count": [ - 2952 + 2951 ], "util_on_death_sum": [ - 2952 + 2951 ], "wasted_magazine_shots": [ - 2952 + 2951 ], "zeus_kills": [ - 2952 + 2951 ], "__typename": [ 80 @@ -72450,10 +72442,10 @@ export default { }, "player_match_map_stats_stream_cursor_input": { "initial_value": [ - 3446 + 3445 ], "ordering": [ - 314 + 313 ], "__typename": [ 80 @@ -72479,7 +72471,7 @@ export default { 40 ], "crosshair_angle_sum_deg": [ - 2950 + 2949 ], "damage": [ 40 @@ -72521,7 +72513,7 @@ export default { 40 ], "flash_duration_sum": [ - 2950 + 2949 ], "flashes_thrown": [ 40 @@ -72575,10 +72567,10 @@ export default { 40 ], "match_id": [ - 4999 + 4998 ], "match_map_id": [ - 4999 + 4998 ], "molotov_damage": [ 40 @@ -72623,7 +72615,7 @@ export default { 40 ], "steam_id": [ - 258 + 257 ], "team_damage": [ 40 @@ -72638,7 +72630,7 @@ export default { 40 ], "time_to_damage_sum_s": [ - 2950 + 2949 ], "total_engagement_frames": [ 40 @@ -72668,7 +72660,7 @@ export default { 40 ], "updated_at": [ - 4499 + 4498 ], "util_on_death_count": [ 40 @@ -72706,7 +72698,7 @@ export default { 40 ], "crosshair_angle_sum_deg": [ - 2950 + 2949 ], "damage": [ 40 @@ -72748,7 +72740,7 @@ export default { 40 ], "flash_duration_sum": [ - 2950 + 2949 ], "flashes_thrown": [ 40 @@ -72844,7 +72836,7 @@ export default { 40 ], "steam_id": [ - 258 + 257 ], "team_damage": [ 40 @@ -72859,7 +72851,7 @@ export default { 40 ], "time_to_damage_sum_s": [ - 2950 + 2949 ], "total_engagement_frames": [ 40 @@ -72906,217 +72898,217 @@ export default { }, "player_match_map_stats_sum_order_by": { "assists": [ - 2952 + 2951 ], "assists_ct": [ - 2952 + 2951 ], "assists_t": [ - 2952 + 2951 ], "counter_strafe_eligible_shots": [ - 2952 + 2951 ], "counter_strafed_shots": [ - 2952 + 2951 ], "crosshair_angle_count": [ - 2952 + 2951 ], "crosshair_angle_sum_deg": [ - 2952 + 2951 ], "damage": [ - 2952 + 2951 ], "damage_ct": [ - 2952 + 2951 ], "damage_t": [ - 2952 + 2951 ], "deaths": [ - 2952 + 2951 ], "deaths_ct": [ - 2952 + 2951 ], "deaths_t": [ - 2952 + 2951 ], "decoy_throws": [ - 2952 + 2951 ], "enemies_flashed": [ - 2952 + 2951 ], "first_bullet_hits": [ - 2952 + 2951 ], "first_bullet_shots": [ - 2952 + 2951 ], "five_kill_rounds": [ - 2952 + 2951 ], "flash_assists": [ - 2952 + 2951 ], "flash_duration_count": [ - 2952 + 2951 ], "flash_duration_sum": [ - 2952 + 2951 ], "flashes_thrown": [ - 2952 + 2951 ], "four_kill_rounds": [ - 2952 + 2951 ], "he_damage": [ - 2952 + 2951 ], "he_team_damage": [ - 2952 + 2951 ], "he_throws": [ - 2952 + 2951 ], "headshot_hits": [ - 2952 + 2951 ], "hits": [ - 2952 + 2951 ], "hits_at_spotted": [ - 2952 + 2951 ], "hs_kills": [ - 2952 + 2951 ], "hs_kills_ct": [ - 2952 + 2951 ], "hs_kills_t": [ - 2952 + 2951 ], "kast_rounds": [ - 2952 + 2951 ], "kast_total_rounds": [ - 2952 + 2951 ], "kills": [ - 2952 + 2951 ], "kills_ct": [ - 2952 + 2951 ], "kills_t": [ - 2952 + 2951 ], "knife_kills": [ - 2952 + 2951 ], "molotov_damage": [ - 2952 + 2951 ], "molotov_throws": [ - 2952 + 2951 ], "non_awp_hits": [ - 2952 + 2951 ], "on_target_frames": [ - 2952 + 2951 ], "rounds_ct": [ - 2952 + 2951 ], "rounds_played": [ - 2952 + 2951 ], "rounds_t": [ - 2952 + 2951 ], "shots_at_spotted": [ - 2952 + 2951 ], "shots_fired": [ - 2952 + 2951 ], "smoke_throws": [ - 2952 + 2951 ], "spotted_count": [ - 2952 + 2951 ], "spotted_with_damage_count": [ - 2952 + 2951 ], "spray_hits": [ - 2952 + 2951 ], "spray_shots": [ - 2952 + 2951 ], "steam_id": [ - 2952 + 2951 ], "team_damage": [ - 2952 + 2951 ], "team_flashed": [ - 2952 + 2951 ], "three_kill_rounds": [ - 2952 + 2951 ], "time_to_damage_count": [ - 2952 + 2951 ], "time_to_damage_sum_s": [ - 2952 + 2951 ], "total_engagement_frames": [ - 2952 + 2951 ], "trade_kill_attempts": [ - 2952 + 2951 ], "trade_kill_opportunities": [ - 2952 + 2951 ], "trade_kill_successes": [ - 2952 + 2951 ], "traded_death_attempts": [ - 2952 + 2951 ], "traded_death_opportunities": [ - 2952 + 2951 ], "traded_death_successes": [ - 2952 + 2951 ], "two_kill_rounds": [ - 2952 + 2951 ], "unused_utility_value": [ - 2952 + 2951 ], "util_on_death_count": [ - 2952 + 2951 ], "util_on_death_sum": [ - 2952 + 2951 ], "wasted_magazine_shots": [ - 2952 + 2951 ], "zeus_kills": [ - 2952 + 2951 ], "__typename": [ 80 @@ -73125,13 +73117,13 @@ export default { "player_match_map_stats_update_column": {}, "player_match_map_stats_updates": { "_inc": [ - 3427 + 3426 ], "_set": [ - 3438 + 3437 ], "where": [ - 3425 + 3424 ], "__typename": [ 80 @@ -73357,217 +73349,217 @@ export default { }, "player_match_map_stats_var_pop_order_by": { "assists": [ - 2952 + 2951 ], "assists_ct": [ - 2952 + 2951 ], "assists_t": [ - 2952 + 2951 ], "counter_strafe_eligible_shots": [ - 2952 + 2951 ], "counter_strafed_shots": [ - 2952 + 2951 ], "crosshair_angle_count": [ - 2952 + 2951 ], "crosshair_angle_sum_deg": [ - 2952 + 2951 ], "damage": [ - 2952 + 2951 ], "damage_ct": [ - 2952 + 2951 ], "damage_t": [ - 2952 + 2951 ], "deaths": [ - 2952 + 2951 ], "deaths_ct": [ - 2952 + 2951 ], "deaths_t": [ - 2952 + 2951 ], "decoy_throws": [ - 2952 + 2951 ], "enemies_flashed": [ - 2952 + 2951 ], "first_bullet_hits": [ - 2952 + 2951 ], "first_bullet_shots": [ - 2952 + 2951 ], "five_kill_rounds": [ - 2952 + 2951 ], "flash_assists": [ - 2952 + 2951 ], "flash_duration_count": [ - 2952 + 2951 ], "flash_duration_sum": [ - 2952 + 2951 ], "flashes_thrown": [ - 2952 + 2951 ], "four_kill_rounds": [ - 2952 + 2951 ], "he_damage": [ - 2952 + 2951 ], "he_team_damage": [ - 2952 + 2951 ], "he_throws": [ - 2952 + 2951 ], "headshot_hits": [ - 2952 + 2951 ], "hits": [ - 2952 + 2951 ], "hits_at_spotted": [ - 2952 + 2951 ], "hs_kills": [ - 2952 + 2951 ], "hs_kills_ct": [ - 2952 + 2951 ], "hs_kills_t": [ - 2952 + 2951 ], "kast_rounds": [ - 2952 + 2951 ], "kast_total_rounds": [ - 2952 + 2951 ], "kills": [ - 2952 + 2951 ], "kills_ct": [ - 2952 + 2951 ], "kills_t": [ - 2952 + 2951 ], "knife_kills": [ - 2952 + 2951 ], "molotov_damage": [ - 2952 + 2951 ], "molotov_throws": [ - 2952 + 2951 ], "non_awp_hits": [ - 2952 + 2951 ], "on_target_frames": [ - 2952 + 2951 ], "rounds_ct": [ - 2952 + 2951 ], "rounds_played": [ - 2952 + 2951 ], "rounds_t": [ - 2952 + 2951 ], "shots_at_spotted": [ - 2952 + 2951 ], "shots_fired": [ - 2952 + 2951 ], "smoke_throws": [ - 2952 + 2951 ], "spotted_count": [ - 2952 + 2951 ], "spotted_with_damage_count": [ - 2952 + 2951 ], "spray_hits": [ - 2952 + 2951 ], "spray_shots": [ - 2952 + 2951 ], "steam_id": [ - 2952 + 2951 ], "team_damage": [ - 2952 + 2951 ], "team_flashed": [ - 2952 + 2951 ], "three_kill_rounds": [ - 2952 + 2951 ], "time_to_damage_count": [ - 2952 + 2951 ], "time_to_damage_sum_s": [ - 2952 + 2951 ], "total_engagement_frames": [ - 2952 + 2951 ], "trade_kill_attempts": [ - 2952 + 2951 ], "trade_kill_opportunities": [ - 2952 + 2951 ], "trade_kill_successes": [ - 2952 + 2951 ], "traded_death_attempts": [ - 2952 + 2951 ], "traded_death_opportunities": [ - 2952 + 2951 ], "traded_death_successes": [ - 2952 + 2951 ], "two_kill_rounds": [ - 2952 + 2951 ], "unused_utility_value": [ - 2952 + 2951 ], "util_on_death_count": [ - 2952 + 2951 ], "util_on_death_sum": [ - 2952 + 2951 ], "wasted_magazine_shots": [ - 2952 + 2951 ], "zeus_kills": [ - 2952 + 2951 ], "__typename": [ 80 @@ -73793,217 +73785,217 @@ export default { }, "player_match_map_stats_var_samp_order_by": { "assists": [ - 2952 + 2951 ], "assists_ct": [ - 2952 + 2951 ], "assists_t": [ - 2952 + 2951 ], "counter_strafe_eligible_shots": [ - 2952 + 2951 ], "counter_strafed_shots": [ - 2952 + 2951 ], "crosshair_angle_count": [ - 2952 + 2951 ], "crosshair_angle_sum_deg": [ - 2952 + 2951 ], "damage": [ - 2952 + 2951 ], "damage_ct": [ - 2952 + 2951 ], "damage_t": [ - 2952 + 2951 ], "deaths": [ - 2952 + 2951 ], "deaths_ct": [ - 2952 + 2951 ], "deaths_t": [ - 2952 + 2951 ], "decoy_throws": [ - 2952 + 2951 ], "enemies_flashed": [ - 2952 + 2951 ], "first_bullet_hits": [ - 2952 + 2951 ], "first_bullet_shots": [ - 2952 + 2951 ], "five_kill_rounds": [ - 2952 + 2951 ], "flash_assists": [ - 2952 + 2951 ], "flash_duration_count": [ - 2952 + 2951 ], "flash_duration_sum": [ - 2952 + 2951 ], "flashes_thrown": [ - 2952 + 2951 ], "four_kill_rounds": [ - 2952 + 2951 ], "he_damage": [ - 2952 + 2951 ], "he_team_damage": [ - 2952 + 2951 ], "he_throws": [ - 2952 + 2951 ], "headshot_hits": [ - 2952 + 2951 ], "hits": [ - 2952 + 2951 ], "hits_at_spotted": [ - 2952 + 2951 ], "hs_kills": [ - 2952 + 2951 ], "hs_kills_ct": [ - 2952 + 2951 ], "hs_kills_t": [ - 2952 + 2951 ], "kast_rounds": [ - 2952 + 2951 ], "kast_total_rounds": [ - 2952 + 2951 ], "kills": [ - 2952 + 2951 ], "kills_ct": [ - 2952 + 2951 ], "kills_t": [ - 2952 + 2951 ], "knife_kills": [ - 2952 + 2951 ], "molotov_damage": [ - 2952 + 2951 ], "molotov_throws": [ - 2952 + 2951 ], "non_awp_hits": [ - 2952 + 2951 ], "on_target_frames": [ - 2952 + 2951 ], "rounds_ct": [ - 2952 + 2951 ], "rounds_played": [ - 2952 + 2951 ], "rounds_t": [ - 2952 + 2951 ], "shots_at_spotted": [ - 2952 + 2951 ], "shots_fired": [ - 2952 + 2951 ], "smoke_throws": [ - 2952 + 2951 ], "spotted_count": [ - 2952 + 2951 ], "spotted_with_damage_count": [ - 2952 + 2951 ], "spray_hits": [ - 2952 + 2951 ], "spray_shots": [ - 2952 + 2951 ], "steam_id": [ - 2952 + 2951 ], "team_damage": [ - 2952 + 2951 ], "team_flashed": [ - 2952 + 2951 ], "three_kill_rounds": [ - 2952 + 2951 ], "time_to_damage_count": [ - 2952 + 2951 ], "time_to_damage_sum_s": [ - 2952 + 2951 ], "total_engagement_frames": [ - 2952 + 2951 ], "trade_kill_attempts": [ - 2952 + 2951 ], "trade_kill_opportunities": [ - 2952 + 2951 ], "trade_kill_successes": [ - 2952 + 2951 ], "traded_death_attempts": [ - 2952 + 2951 ], "traded_death_opportunities": [ - 2952 + 2951 ], "traded_death_successes": [ - 2952 + 2951 ], "two_kill_rounds": [ - 2952 + 2951 ], "unused_utility_value": [ - 2952 + 2951 ], "util_on_death_count": [ - 2952 + 2951 ], "util_on_death_sum": [ - 2952 + 2951 ], "wasted_magazine_shots": [ - 2952 + 2951 ], "zeus_kills": [ - 2952 + 2951 ], "__typename": [ 80 @@ -74229,217 +74221,217 @@ export default { }, "player_match_map_stats_variance_order_by": { "assists": [ - 2952 + 2951 ], "assists_ct": [ - 2952 + 2951 ], "assists_t": [ - 2952 + 2951 ], "counter_strafe_eligible_shots": [ - 2952 + 2951 ], "counter_strafed_shots": [ - 2952 + 2951 ], "crosshair_angle_count": [ - 2952 + 2951 ], "crosshair_angle_sum_deg": [ - 2952 + 2951 ], "damage": [ - 2952 + 2951 ], "damage_ct": [ - 2952 + 2951 ], "damage_t": [ - 2952 + 2951 ], "deaths": [ - 2952 + 2951 ], "deaths_ct": [ - 2952 + 2951 ], "deaths_t": [ - 2952 + 2951 ], "decoy_throws": [ - 2952 + 2951 ], "enemies_flashed": [ - 2952 + 2951 ], "first_bullet_hits": [ - 2952 + 2951 ], "first_bullet_shots": [ - 2952 + 2951 ], "five_kill_rounds": [ - 2952 + 2951 ], "flash_assists": [ - 2952 + 2951 ], "flash_duration_count": [ - 2952 + 2951 ], "flash_duration_sum": [ - 2952 + 2951 ], "flashes_thrown": [ - 2952 + 2951 ], "four_kill_rounds": [ - 2952 + 2951 ], "he_damage": [ - 2952 + 2951 ], "he_team_damage": [ - 2952 + 2951 ], "he_throws": [ - 2952 + 2951 ], "headshot_hits": [ - 2952 + 2951 ], "hits": [ - 2952 + 2951 ], "hits_at_spotted": [ - 2952 + 2951 ], "hs_kills": [ - 2952 + 2951 ], "hs_kills_ct": [ - 2952 + 2951 ], "hs_kills_t": [ - 2952 + 2951 ], "kast_rounds": [ - 2952 + 2951 ], "kast_total_rounds": [ - 2952 + 2951 ], "kills": [ - 2952 + 2951 ], "kills_ct": [ - 2952 + 2951 ], "kills_t": [ - 2952 + 2951 ], "knife_kills": [ - 2952 + 2951 ], "molotov_damage": [ - 2952 + 2951 ], "molotov_throws": [ - 2952 + 2951 ], "non_awp_hits": [ - 2952 + 2951 ], "on_target_frames": [ - 2952 + 2951 ], "rounds_ct": [ - 2952 + 2951 ], "rounds_played": [ - 2952 + 2951 ], "rounds_t": [ - 2952 + 2951 ], "shots_at_spotted": [ - 2952 + 2951 ], "shots_fired": [ - 2952 + 2951 ], "smoke_throws": [ - 2952 + 2951 ], "spotted_count": [ - 2952 + 2951 ], "spotted_with_damage_count": [ - 2952 + 2951 ], "spray_hits": [ - 2952 + 2951 ], "spray_shots": [ - 2952 + 2951 ], "steam_id": [ - 2952 + 2951 ], "team_damage": [ - 2952 + 2951 ], "team_flashed": [ - 2952 + 2951 ], "three_kill_rounds": [ - 2952 + 2951 ], "time_to_damage_count": [ - 2952 + 2951 ], "time_to_damage_sum_s": [ - 2952 + 2951 ], "total_engagement_frames": [ - 2952 + 2951 ], "trade_kill_attempts": [ - 2952 + 2951 ], "trade_kill_opportunities": [ - 2952 + 2951 ], "trade_kill_successes": [ - 2952 + 2951 ], "traded_death_attempts": [ - 2952 + 2951 ], "traded_death_opportunities": [ - 2952 + 2951 ], "traded_death_successes": [ - 2952 + 2951 ], "two_kill_rounds": [ - 2952 + 2951 ], "unused_utility_value": [ - 2952 + 2951 ], "util_on_death_count": [ - 2952 + 2951 ], "util_on_death_sum": [ - 2952 + 2951 ], "wasted_magazine_shots": [ - 2952 + 2951 ], "zeus_kills": [ - 2952 + 2951 ], "__typename": [ 80 @@ -74447,40 +74439,40 @@ export default { }, "player_match_performance_v": { "accuracy": [ - 2950 + 2949 ], "accuracy_spotted": [ - 2950 + 2949 ], "aim_rating": [ - 1670 + 1669 ], "counter_strafe_pct": [ - 2950 + 2949 ], "enemy_blind_pr": [ - 2950 + 2949 ], "flash_assists_pr": [ - 2950 + 2949 ], "hs_pct": [ - 2950 + 2949 ], "kast_pct": [ - 2950 + 2949 ], "match_id": [ - 4999 + 4998 ], "overall_rating": [ - 1670 + 1669 ], "played_at": [ - 4499 + 4498 ], "positioning_rating": [ - 1670 + 1669 ], "rounds": [ 40 @@ -74489,19 +74481,19 @@ export default { 80 ], "steam_id": [ - 258 + 257 ], "survival_pct": [ - 2950 + 2949 ], "traded_death_pct": [ - 2950 + 2949 ], "util_efficiency": [ - 2950 + 2949 ], "utility_rating": [ - 1670 + 1669 ], "__typename": [ 80 @@ -74509,10 +74501,10 @@ export default { }, "player_match_performance_v_aggregate": { "aggregate": [ - 3459 + 3458 ], "nodes": [ - 3457 + 3456 ], "__typename": [ 80 @@ -74520,13 +74512,13 @@ export default { }, "player_match_performance_v_aggregate_fields": { "avg": [ - 3460 + 3459 ], "count": [ 40, { "columns": [ - 3465, + 3464, "[player_match_performance_v_select_column!]" ], "distinct": [ @@ -74535,31 +74527,31 @@ export default { } ], "max": [ - 3462 + 3461 ], "min": [ - 3463 + 3462 ], "stddev": [ - 3466 + 3465 ], "stddev_pop": [ - 3467 + 3466 ], "stddev_samp": [ - 3468 + 3467 ], "sum": [ - 3471 + 3470 ], "var_pop": [ - 3472 + 3471 ], "var_samp": [ - 3473 + 3472 ], "variance": [ - 3474 + 3473 ], "__typename": [ 80 @@ -74620,49 +74612,49 @@ export default { }, "player_match_performance_v_bool_exp": { "_and": [ - 3461 + 3460 ], "_not": [ - 3461 + 3460 ], "_or": [ - 3461 + 3460 ], "accuracy": [ - 2951 + 2950 ], "accuracy_spotted": [ - 2951 + 2950 ], "aim_rating": [ - 1671 + 1670 ], "counter_strafe_pct": [ - 2951 + 2950 ], "enemy_blind_pr": [ - 2951 + 2950 ], "flash_assists_pr": [ - 2951 + 2950 ], "hs_pct": [ - 2951 + 2950 ], "kast_pct": [ - 2951 + 2950 ], "match_id": [ - 5001 + 5000 ], "overall_rating": [ - 1671 + 1670 ], "played_at": [ - 4500 + 4499 ], "positioning_rating": [ - 1671 + 1670 ], "rounds": [ 41 @@ -74671,19 +74663,19 @@ export default { 82 ], "steam_id": [ - 260 + 259 ], "survival_pct": [ - 2951 + 2950 ], "traded_death_pct": [ - 2951 + 2950 ], "util_efficiency": [ - 2951 + 2950 ], "utility_rating": [ - 1671 + 1670 ], "__typename": [ 80 @@ -74691,40 +74683,40 @@ export default { }, "player_match_performance_v_max_fields": { "accuracy": [ - 2950 + 2949 ], "accuracy_spotted": [ - 2950 + 2949 ], "aim_rating": [ - 1670 + 1669 ], "counter_strafe_pct": [ - 2950 + 2949 ], "enemy_blind_pr": [ - 2950 + 2949 ], "flash_assists_pr": [ - 2950 + 2949 ], "hs_pct": [ - 2950 + 2949 ], "kast_pct": [ - 2950 + 2949 ], "match_id": [ - 4999 + 4998 ], "overall_rating": [ - 1670 + 1669 ], "played_at": [ - 4499 + 4498 ], "positioning_rating": [ - 1670 + 1669 ], "rounds": [ 40 @@ -74733,19 +74725,19 @@ export default { 80 ], "steam_id": [ - 258 + 257 ], "survival_pct": [ - 2950 + 2949 ], "traded_death_pct": [ - 2950 + 2949 ], "util_efficiency": [ - 2950 + 2949 ], "utility_rating": [ - 1670 + 1669 ], "__typename": [ 80 @@ -74753,40 +74745,40 @@ export default { }, "player_match_performance_v_min_fields": { "accuracy": [ - 2950 + 2949 ], "accuracy_spotted": [ - 2950 + 2949 ], "aim_rating": [ - 1670 + 1669 ], "counter_strafe_pct": [ - 2950 + 2949 ], "enemy_blind_pr": [ - 2950 + 2949 ], "flash_assists_pr": [ - 2950 + 2949 ], "hs_pct": [ - 2950 + 2949 ], "kast_pct": [ - 2950 + 2949 ], "match_id": [ - 4999 + 4998 ], "overall_rating": [ - 1670 + 1669 ], "played_at": [ - 4499 + 4498 ], "positioning_rating": [ - 1670 + 1669 ], "rounds": [ 40 @@ -74795,19 +74787,19 @@ export default { 80 ], "steam_id": [ - 258 + 257 ], "survival_pct": [ - 2950 + 2949 ], "traded_death_pct": [ - 2950 + 2949 ], "util_efficiency": [ - 2950 + 2949 ], "utility_rating": [ - 1670 + 1669 ], "__typename": [ 80 @@ -74815,61 +74807,61 @@ export default { }, "player_match_performance_v_order_by": { "accuracy": [ - 2952 + 2951 ], "accuracy_spotted": [ - 2952 + 2951 ], "aim_rating": [ - 2952 + 2951 ], "counter_strafe_pct": [ - 2952 + 2951 ], "enemy_blind_pr": [ - 2952 + 2951 ], "flash_assists_pr": [ - 2952 + 2951 ], "hs_pct": [ - 2952 + 2951 ], "kast_pct": [ - 2952 + 2951 ], "match_id": [ - 2952 + 2951 ], "overall_rating": [ - 2952 + 2951 ], "played_at": [ - 2952 + 2951 ], "positioning_rating": [ - 2952 + 2951 ], "rounds": [ - 2952 + 2951 ], "source": [ - 2952 + 2951 ], "steam_id": [ - 2952 + 2951 ], "survival_pct": [ - 2952 + 2951 ], "traded_death_pct": [ - 2952 + 2951 ], "util_efficiency": [ - 2952 + 2951 ], "utility_rating": [ - 2952 + 2951 ], "__typename": [ 80 @@ -75037,10 +75029,10 @@ export default { }, "player_match_performance_v_stream_cursor_input": { "initial_value": [ - 3470 + 3469 ], "ordering": [ - 314 + 313 ], "__typename": [ 80 @@ -75048,40 +75040,40 @@ export default { }, "player_match_performance_v_stream_cursor_value_input": { "accuracy": [ - 2950 + 2949 ], "accuracy_spotted": [ - 2950 + 2949 ], "aim_rating": [ - 1670 + 1669 ], "counter_strafe_pct": [ - 2950 + 2949 ], "enemy_blind_pr": [ - 2950 + 2949 ], "flash_assists_pr": [ - 2950 + 2949 ], "hs_pct": [ - 2950 + 2949 ], "kast_pct": [ - 2950 + 2949 ], "match_id": [ - 4999 + 4998 ], "overall_rating": [ - 1670 + 1669 ], "played_at": [ - 4499 + 4498 ], "positioning_rating": [ - 1670 + 1669 ], "rounds": [ 40 @@ -75090,19 +75082,19 @@ export default { 80 ], "steam_id": [ - 258 + 257 ], "survival_pct": [ - 2950 + 2949 ], "traded_death_pct": [ - 2950 + 2949 ], "util_efficiency": [ - 2950 + 2949 ], "utility_rating": [ - 1670 + 1669 ], "__typename": [ 80 @@ -75110,52 +75102,52 @@ export default { }, "player_match_performance_v_sum_fields": { "accuracy": [ - 2950 + 2949 ], "accuracy_spotted": [ - 2950 + 2949 ], "aim_rating": [ - 1670 + 1669 ], "counter_strafe_pct": [ - 2950 + 2949 ], "enemy_blind_pr": [ - 2950 + 2949 ], "flash_assists_pr": [ - 2950 + 2949 ], "hs_pct": [ - 2950 + 2949 ], "kast_pct": [ - 2950 + 2949 ], "overall_rating": [ - 1670 + 1669 ], "positioning_rating": [ - 1670 + 1669 ], "rounds": [ 40 ], "steam_id": [ - 258 + 257 ], "survival_pct": [ - 2950 + 2949 ], "traded_death_pct": [ - 2950 + 2949 ], "util_efficiency": [ - 2950 + 2949 ], "utility_rating": [ - 1670 + 1669 ], "__typename": [ 80 @@ -75331,13 +75323,13 @@ export default { 40 ], "avg_crosshair_angle_deg": [ - 2950 + 2949 ], "avg_flash_duration": [ - 2950 + 2949 ], "avg_time_to_damage_s": [ - 2950 + 2949 ], "counter_strafe_eligible_shots": [ 40 @@ -75427,7 +75419,7 @@ export default { 40 ], "match_id": [ - 4999 + 4998 ], "molotov_damage": [ 40 @@ -75472,7 +75464,7 @@ export default { 40 ], "steam_id": [ - 258 + 257 ], "team_damage": [ 40 @@ -75511,7 +75503,7 @@ export default { 40 ], "utility_on_death": [ - 2950 + 2949 ], "wasted_magazine_shots": [ 40 @@ -75525,10 +75517,10 @@ export default { }, "player_match_stats_v_aggregate": { "aggregate": [ - 3479 + 3478 ], "nodes": [ - 3475 + 3474 ], "__typename": [ 80 @@ -75536,7 +75528,7 @@ export default { }, "player_match_stats_v_aggregate_bool_exp": { "count": [ - 3478 + 3477 ], "__typename": [ 80 @@ -75544,13 +75536,13 @@ export default { }, "player_match_stats_v_aggregate_bool_exp_count": { "arguments": [ - 3491 + 3490 ], "distinct": [ 5 ], "filter": [ - 3484 + 3483 ], "predicate": [ 41 @@ -75561,13 +75553,13 @@ export default { }, "player_match_stats_v_aggregate_fields": { "avg": [ - 3482 + 3481 ], "count": [ 40, { "columns": [ - 3491, + 3490, "[player_match_stats_v_select_column!]" ], "distinct": [ @@ -75576,31 +75568,31 @@ export default { } ], "max": [ - 3486 + 3485 ], "min": [ - 3488 + 3487 ], "stddev": [ - 3492 + 3491 ], "stddev_pop": [ - 3494 + 3493 ], "stddev_samp": [ - 3496 + 3495 ], "sum": [ - 3500 + 3499 ], "var_pop": [ - 3502 + 3501 ], "var_samp": [ - 3504 + 3503 ], "variance": [ - 3506 + 3505 ], "__typename": [ 80 @@ -75608,37 +75600,37 @@ export default { }, "player_match_stats_v_aggregate_order_by": { "avg": [ - 3483 + 3482 ], "count": [ - 2952 + 2951 ], "max": [ - 3487 + 3486 ], "min": [ - 3489 + 3488 ], "stddev": [ - 3493 + 3492 ], "stddev_pop": [ - 3495 + 3494 ], "stddev_samp": [ - 3497 + 3496 ], "sum": [ - 3501 + 3500 ], "var_pop": [ - 3503 + 3502 ], "var_samp": [ - 3505 + 3504 ], "variance": [ - 3507 + 3506 ], "__typename": [ 80 @@ -75646,7 +75638,7 @@ export default { }, "player_match_stats_v_arr_rel_insert_input": { "data": [ - 3485 + 3484 ], "__typename": [ 80 @@ -75854,199 +75846,199 @@ export default { }, "player_match_stats_v_avg_order_by": { "assists": [ - 2952 + 2951 ], "assists_ct": [ - 2952 + 2951 ], "assists_t": [ - 2952 + 2951 ], "avg_crosshair_angle_deg": [ - 2952 + 2951 ], "avg_flash_duration": [ - 2952 + 2951 ], "avg_time_to_damage_s": [ - 2952 + 2951 ], "counter_strafe_eligible_shots": [ - 2952 + 2951 ], "counter_strafed_shots": [ - 2952 + 2951 ], "damage": [ - 2952 + 2951 ], "damage_ct": [ - 2952 + 2951 ], "damage_t": [ - 2952 + 2951 ], "deaths": [ - 2952 + 2951 ], "deaths_ct": [ - 2952 + 2951 ], "deaths_t": [ - 2952 + 2951 ], "decoy_throws": [ - 2952 + 2951 ], "enemies_flashed": [ - 2952 + 2951 ], "first_bullet_hits": [ - 2952 + 2951 ], "first_bullet_shots": [ - 2952 + 2951 ], "five_kill_rounds": [ - 2952 + 2951 ], "flash_assists": [ - 2952 + 2951 ], "flashes_thrown": [ - 2952 + 2951 ], "four_kill_rounds": [ - 2952 + 2951 ], "he_damage": [ - 2952 + 2951 ], "he_team_damage": [ - 2952 + 2951 ], "he_throws": [ - 2952 + 2951 ], "headshot_hits": [ - 2952 + 2951 ], "hits": [ - 2952 + 2951 ], "hits_at_spotted": [ - 2952 + 2951 ], "hs_kills": [ - 2952 + 2951 ], "hs_kills_ct": [ - 2952 + 2951 ], "hs_kills_t": [ - 2952 + 2951 ], "kills": [ - 2952 + 2951 ], "kills_ct": [ - 2952 + 2951 ], "kills_t": [ - 2952 + 2951 ], "knife_kills": [ - 2952 + 2951 ], "molotov_damage": [ - 2952 + 2951 ], "molotov_throws": [ - 2952 + 2951 ], "non_awp_hits": [ - 2952 + 2951 ], "on_target_frames": [ - 2952 + 2951 ], "rounds_ct": [ - 2952 + 2951 ], "rounds_played": [ - 2952 + 2951 ], "rounds_t": [ - 2952 + 2951 ], "shots_at_spotted": [ - 2952 + 2951 ], "shots_fired": [ - 2952 + 2951 ], "smoke_throws": [ - 2952 + 2951 ], "spotted_count": [ - 2952 + 2951 ], "spotted_with_damage_count": [ - 2952 + 2951 ], "spray_hits": [ - 2952 + 2951 ], "spray_shots": [ - 2952 + 2951 ], "steam_id": [ - 2952 + 2951 ], "team_damage": [ - 2952 + 2951 ], "team_flashed": [ - 2952 + 2951 ], "three_kill_rounds": [ - 2952 + 2951 ], "total_engagement_frames": [ - 2952 + 2951 ], "trade_kill_attempts": [ - 2952 + 2951 ], "trade_kill_opportunities": [ - 2952 + 2951 ], "trade_kill_successes": [ - 2952 + 2951 ], "traded_death_attempts": [ - 2952 + 2951 ], "traded_death_opportunities": [ - 2952 + 2951 ], "traded_death_successes": [ - 2952 + 2951 ], "two_kill_rounds": [ - 2952 + 2951 ], "unused_utility_value": [ - 2952 + 2951 ], "utility_on_death": [ - 2952 + 2951 ], "wasted_magazine_shots": [ - 2952 + 2951 ], "zeus_kills": [ - 2952 + 2951 ], "__typename": [ 80 @@ -76054,13 +76046,13 @@ export default { }, "player_match_stats_v_bool_exp": { "_and": [ - 3484 + 3483 ], "_not": [ - 3484 + 3483 ], "_or": [ - 3484 + 3483 ], "assists": [ 41 @@ -76072,13 +76064,13 @@ export default { 41 ], "avg_crosshair_angle_deg": [ - 2951 + 2950 ], "avg_flash_duration": [ - 2951 + 2950 ], "avg_time_to_damage_s": [ - 2951 + 2950 ], "counter_strafe_eligible_shots": [ 41 @@ -76168,7 +76160,7 @@ export default { 41 ], "match_id": [ - 5001 + 5000 ], "molotov_damage": [ 41 @@ -76213,7 +76205,7 @@ export default { 41 ], "steam_id": [ - 260 + 259 ], "team_damage": [ 41 @@ -76252,7 +76244,7 @@ export default { 41 ], "utility_on_death": [ - 2951 + 2950 ], "wasted_magazine_shots": [ 41 @@ -76275,13 +76267,13 @@ export default { 40 ], "avg_crosshair_angle_deg": [ - 2950 + 2949 ], "avg_flash_duration": [ - 2950 + 2949 ], "avg_time_to_damage_s": [ - 2950 + 2949 ], "counter_strafe_eligible_shots": [ 40 @@ -76371,7 +76363,7 @@ export default { 40 ], "match_id": [ - 4999 + 4998 ], "molotov_damage": [ 40 @@ -76416,7 +76408,7 @@ export default { 40 ], "steam_id": [ - 258 + 257 ], "team_damage": [ 40 @@ -76455,7 +76447,7 @@ export default { 40 ], "utility_on_death": [ - 2950 + 2949 ], "wasted_magazine_shots": [ 40 @@ -76478,13 +76470,13 @@ export default { 40 ], "avg_crosshair_angle_deg": [ - 2950 + 2949 ], "avg_flash_duration": [ - 2950 + 2949 ], "avg_time_to_damage_s": [ - 2950 + 2949 ], "counter_strafe_eligible_shots": [ 40 @@ -76574,7 +76566,7 @@ export default { 40 ], "match_id": [ - 4999 + 4998 ], "molotov_damage": [ 40 @@ -76619,7 +76611,7 @@ export default { 40 ], "steam_id": [ - 258 + 257 ], "team_damage": [ 40 @@ -76658,7 +76650,7 @@ export default { 40 ], "utility_on_death": [ - 2950 + 2949 ], "wasted_magazine_shots": [ 40 @@ -76672,202 +76664,202 @@ export default { }, "player_match_stats_v_max_order_by": { "assists": [ - 2952 + 2951 ], "assists_ct": [ - 2952 + 2951 ], "assists_t": [ - 2952 + 2951 ], "avg_crosshair_angle_deg": [ - 2952 + 2951 ], "avg_flash_duration": [ - 2952 + 2951 ], "avg_time_to_damage_s": [ - 2952 + 2951 ], "counter_strafe_eligible_shots": [ - 2952 + 2951 ], "counter_strafed_shots": [ - 2952 + 2951 ], "damage": [ - 2952 + 2951 ], "damage_ct": [ - 2952 + 2951 ], "damage_t": [ - 2952 + 2951 ], "deaths": [ - 2952 + 2951 ], "deaths_ct": [ - 2952 + 2951 ], "deaths_t": [ - 2952 + 2951 ], "decoy_throws": [ - 2952 + 2951 ], "enemies_flashed": [ - 2952 + 2951 ], "first_bullet_hits": [ - 2952 + 2951 ], "first_bullet_shots": [ - 2952 + 2951 ], "five_kill_rounds": [ - 2952 + 2951 ], "flash_assists": [ - 2952 + 2951 ], "flashes_thrown": [ - 2952 + 2951 ], "four_kill_rounds": [ - 2952 + 2951 ], "he_damage": [ - 2952 + 2951 ], "he_team_damage": [ - 2952 + 2951 ], "he_throws": [ - 2952 + 2951 ], "headshot_hits": [ - 2952 + 2951 ], "hits": [ - 2952 + 2951 ], "hits_at_spotted": [ - 2952 + 2951 ], "hs_kills": [ - 2952 + 2951 ], "hs_kills_ct": [ - 2952 + 2951 ], "hs_kills_t": [ - 2952 + 2951 ], "kills": [ - 2952 + 2951 ], "kills_ct": [ - 2952 + 2951 ], "kills_t": [ - 2952 + 2951 ], "knife_kills": [ - 2952 + 2951 ], "match_id": [ - 2952 + 2951 ], "molotov_damage": [ - 2952 + 2951 ], "molotov_throws": [ - 2952 + 2951 ], "non_awp_hits": [ - 2952 + 2951 ], "on_target_frames": [ - 2952 + 2951 ], "rounds_ct": [ - 2952 + 2951 ], "rounds_played": [ - 2952 + 2951 ], "rounds_t": [ - 2952 + 2951 ], "shots_at_spotted": [ - 2952 + 2951 ], "shots_fired": [ - 2952 + 2951 ], "smoke_throws": [ - 2952 + 2951 ], "spotted_count": [ - 2952 + 2951 ], "spotted_with_damage_count": [ - 2952 + 2951 ], "spray_hits": [ - 2952 + 2951 ], "spray_shots": [ - 2952 + 2951 ], "steam_id": [ - 2952 + 2951 ], "team_damage": [ - 2952 + 2951 ], "team_flashed": [ - 2952 + 2951 ], "three_kill_rounds": [ - 2952 + 2951 ], "total_engagement_frames": [ - 2952 + 2951 ], "trade_kill_attempts": [ - 2952 + 2951 ], "trade_kill_opportunities": [ - 2952 + 2951 ], "trade_kill_successes": [ - 2952 + 2951 ], "traded_death_attempts": [ - 2952 + 2951 ], "traded_death_opportunities": [ - 2952 + 2951 ], "traded_death_successes": [ - 2952 + 2951 ], "two_kill_rounds": [ - 2952 + 2951 ], "unused_utility_value": [ - 2952 + 2951 ], "utility_on_death": [ - 2952 + 2951 ], "wasted_magazine_shots": [ - 2952 + 2951 ], "zeus_kills": [ - 2952 + 2951 ], "__typename": [ 80 @@ -76884,13 +76876,13 @@ export default { 40 ], "avg_crosshair_angle_deg": [ - 2950 + 2949 ], "avg_flash_duration": [ - 2950 + 2949 ], "avg_time_to_damage_s": [ - 2950 + 2949 ], "counter_strafe_eligible_shots": [ 40 @@ -76980,7 +76972,7 @@ export default { 40 ], "match_id": [ - 4999 + 4998 ], "molotov_damage": [ 40 @@ -77025,7 +77017,7 @@ export default { 40 ], "steam_id": [ - 258 + 257 ], "team_damage": [ 40 @@ -77064,7 +77056,7 @@ export default { 40 ], "utility_on_death": [ - 2950 + 2949 ], "wasted_magazine_shots": [ 40 @@ -77078,202 +77070,202 @@ export default { }, "player_match_stats_v_min_order_by": { "assists": [ - 2952 + 2951 ], "assists_ct": [ - 2952 + 2951 ], "assists_t": [ - 2952 + 2951 ], "avg_crosshair_angle_deg": [ - 2952 + 2951 ], "avg_flash_duration": [ - 2952 + 2951 ], "avg_time_to_damage_s": [ - 2952 + 2951 ], "counter_strafe_eligible_shots": [ - 2952 + 2951 ], "counter_strafed_shots": [ - 2952 + 2951 ], "damage": [ - 2952 + 2951 ], "damage_ct": [ - 2952 + 2951 ], "damage_t": [ - 2952 + 2951 ], "deaths": [ - 2952 + 2951 ], "deaths_ct": [ - 2952 + 2951 ], "deaths_t": [ - 2952 + 2951 ], "decoy_throws": [ - 2952 + 2951 ], "enemies_flashed": [ - 2952 + 2951 ], "first_bullet_hits": [ - 2952 + 2951 ], "first_bullet_shots": [ - 2952 + 2951 ], "five_kill_rounds": [ - 2952 + 2951 ], "flash_assists": [ - 2952 + 2951 ], "flashes_thrown": [ - 2952 + 2951 ], "four_kill_rounds": [ - 2952 + 2951 ], "he_damage": [ - 2952 + 2951 ], "he_team_damage": [ - 2952 + 2951 ], "he_throws": [ - 2952 + 2951 ], "headshot_hits": [ - 2952 + 2951 ], "hits": [ - 2952 + 2951 ], "hits_at_spotted": [ - 2952 + 2951 ], "hs_kills": [ - 2952 + 2951 ], "hs_kills_ct": [ - 2952 + 2951 ], "hs_kills_t": [ - 2952 + 2951 ], "kills": [ - 2952 + 2951 ], "kills_ct": [ - 2952 + 2951 ], "kills_t": [ - 2952 + 2951 ], "knife_kills": [ - 2952 + 2951 ], "match_id": [ - 2952 + 2951 ], "molotov_damage": [ - 2952 + 2951 ], "molotov_throws": [ - 2952 + 2951 ], "non_awp_hits": [ - 2952 + 2951 ], "on_target_frames": [ - 2952 + 2951 ], "rounds_ct": [ - 2952 + 2951 ], "rounds_played": [ - 2952 + 2951 ], "rounds_t": [ - 2952 + 2951 ], "shots_at_spotted": [ - 2952 + 2951 ], "shots_fired": [ - 2952 + 2951 ], "smoke_throws": [ - 2952 + 2951 ], "spotted_count": [ - 2952 + 2951 ], "spotted_with_damage_count": [ - 2952 + 2951 ], "spray_hits": [ - 2952 + 2951 ], "spray_shots": [ - 2952 + 2951 ], "steam_id": [ - 2952 + 2951 ], "team_damage": [ - 2952 + 2951 ], "team_flashed": [ - 2952 + 2951 ], "three_kill_rounds": [ - 2952 + 2951 ], "total_engagement_frames": [ - 2952 + 2951 ], "trade_kill_attempts": [ - 2952 + 2951 ], "trade_kill_opportunities": [ - 2952 + 2951 ], "trade_kill_successes": [ - 2952 + 2951 ], "traded_death_attempts": [ - 2952 + 2951 ], "traded_death_opportunities": [ - 2952 + 2951 ], "traded_death_successes": [ - 2952 + 2951 ], "two_kill_rounds": [ - 2952 + 2951 ], "unused_utility_value": [ - 2952 + 2951 ], "utility_on_death": [ - 2952 + 2951 ], "wasted_magazine_shots": [ - 2952 + 2951 ], "zeus_kills": [ - 2952 + 2951 ], "__typename": [ 80 @@ -77281,202 +77273,202 @@ export default { }, "player_match_stats_v_order_by": { "assists": [ - 2952 + 2951 ], "assists_ct": [ - 2952 + 2951 ], "assists_t": [ - 2952 + 2951 ], "avg_crosshair_angle_deg": [ - 2952 + 2951 ], "avg_flash_duration": [ - 2952 + 2951 ], "avg_time_to_damage_s": [ - 2952 + 2951 ], "counter_strafe_eligible_shots": [ - 2952 + 2951 ], "counter_strafed_shots": [ - 2952 + 2951 ], "damage": [ - 2952 + 2951 ], "damage_ct": [ - 2952 + 2951 ], "damage_t": [ - 2952 + 2951 ], "deaths": [ - 2952 + 2951 ], "deaths_ct": [ - 2952 + 2951 ], "deaths_t": [ - 2952 + 2951 ], "decoy_throws": [ - 2952 + 2951 ], "enemies_flashed": [ - 2952 + 2951 ], "first_bullet_hits": [ - 2952 + 2951 ], "first_bullet_shots": [ - 2952 + 2951 ], "five_kill_rounds": [ - 2952 + 2951 ], "flash_assists": [ - 2952 + 2951 ], "flashes_thrown": [ - 2952 + 2951 ], "four_kill_rounds": [ - 2952 + 2951 ], "he_damage": [ - 2952 + 2951 ], "he_team_damage": [ - 2952 + 2951 ], "he_throws": [ - 2952 + 2951 ], "headshot_hits": [ - 2952 + 2951 ], "hits": [ - 2952 + 2951 ], "hits_at_spotted": [ - 2952 + 2951 ], "hs_kills": [ - 2952 + 2951 ], "hs_kills_ct": [ - 2952 + 2951 ], "hs_kills_t": [ - 2952 + 2951 ], "kills": [ - 2952 + 2951 ], "kills_ct": [ - 2952 + 2951 ], "kills_t": [ - 2952 + 2951 ], "knife_kills": [ - 2952 + 2951 ], "match_id": [ - 2952 + 2951 ], "molotov_damage": [ - 2952 + 2951 ], "molotov_throws": [ - 2952 + 2951 ], "non_awp_hits": [ - 2952 + 2951 ], "on_target_frames": [ - 2952 + 2951 ], "rounds_ct": [ - 2952 + 2951 ], "rounds_played": [ - 2952 + 2951 ], "rounds_t": [ - 2952 + 2951 ], "shots_at_spotted": [ - 2952 + 2951 ], "shots_fired": [ - 2952 + 2951 ], "smoke_throws": [ - 2952 + 2951 ], "spotted_count": [ - 2952 + 2951 ], "spotted_with_damage_count": [ - 2952 + 2951 ], "spray_hits": [ - 2952 + 2951 ], "spray_shots": [ - 2952 + 2951 ], "steam_id": [ - 2952 + 2951 ], "team_damage": [ - 2952 + 2951 ], "team_flashed": [ - 2952 + 2951 ], "three_kill_rounds": [ - 2952 + 2951 ], "total_engagement_frames": [ - 2952 + 2951 ], "trade_kill_attempts": [ - 2952 + 2951 ], "trade_kill_opportunities": [ - 2952 + 2951 ], "trade_kill_successes": [ - 2952 + 2951 ], "traded_death_attempts": [ - 2952 + 2951 ], "traded_death_opportunities": [ - 2952 + 2951 ], "traded_death_successes": [ - 2952 + 2951 ], "two_kill_rounds": [ - 2952 + 2951 ], "unused_utility_value": [ - 2952 + 2951 ], "utility_on_death": [ - 2952 + 2951 ], "wasted_magazine_shots": [ - 2952 + 2951 ], "zeus_kills": [ - 2952 + 2951 ], "__typename": [ 80 @@ -77685,199 +77677,199 @@ export default { }, "player_match_stats_v_stddev_order_by": { "assists": [ - 2952 + 2951 ], "assists_ct": [ - 2952 + 2951 ], "assists_t": [ - 2952 + 2951 ], "avg_crosshair_angle_deg": [ - 2952 + 2951 ], "avg_flash_duration": [ - 2952 + 2951 ], "avg_time_to_damage_s": [ - 2952 + 2951 ], "counter_strafe_eligible_shots": [ - 2952 + 2951 ], "counter_strafed_shots": [ - 2952 + 2951 ], "damage": [ - 2952 + 2951 ], "damage_ct": [ - 2952 + 2951 ], "damage_t": [ - 2952 + 2951 ], "deaths": [ - 2952 + 2951 ], "deaths_ct": [ - 2952 + 2951 ], "deaths_t": [ - 2952 + 2951 ], "decoy_throws": [ - 2952 + 2951 ], "enemies_flashed": [ - 2952 + 2951 ], "first_bullet_hits": [ - 2952 + 2951 ], "first_bullet_shots": [ - 2952 + 2951 ], "five_kill_rounds": [ - 2952 + 2951 ], "flash_assists": [ - 2952 + 2951 ], "flashes_thrown": [ - 2952 + 2951 ], "four_kill_rounds": [ - 2952 + 2951 ], "he_damage": [ - 2952 + 2951 ], "he_team_damage": [ - 2952 + 2951 ], "he_throws": [ - 2952 + 2951 ], "headshot_hits": [ - 2952 + 2951 ], "hits": [ - 2952 + 2951 ], "hits_at_spotted": [ - 2952 + 2951 ], "hs_kills": [ - 2952 + 2951 ], "hs_kills_ct": [ - 2952 + 2951 ], "hs_kills_t": [ - 2952 + 2951 ], "kills": [ - 2952 + 2951 ], "kills_ct": [ - 2952 + 2951 ], "kills_t": [ - 2952 + 2951 ], "knife_kills": [ - 2952 + 2951 ], "molotov_damage": [ - 2952 + 2951 ], "molotov_throws": [ - 2952 + 2951 ], "non_awp_hits": [ - 2952 + 2951 ], "on_target_frames": [ - 2952 + 2951 ], "rounds_ct": [ - 2952 + 2951 ], "rounds_played": [ - 2952 + 2951 ], "rounds_t": [ - 2952 + 2951 ], "shots_at_spotted": [ - 2952 + 2951 ], "shots_fired": [ - 2952 + 2951 ], "smoke_throws": [ - 2952 + 2951 ], "spotted_count": [ - 2952 + 2951 ], "spotted_with_damage_count": [ - 2952 + 2951 ], "spray_hits": [ - 2952 + 2951 ], "spray_shots": [ - 2952 + 2951 ], "steam_id": [ - 2952 + 2951 ], "team_damage": [ - 2952 + 2951 ], "team_flashed": [ - 2952 + 2951 ], "three_kill_rounds": [ - 2952 + 2951 ], "total_engagement_frames": [ - 2952 + 2951 ], "trade_kill_attempts": [ - 2952 + 2951 ], "trade_kill_opportunities": [ - 2952 + 2951 ], "trade_kill_successes": [ - 2952 + 2951 ], "traded_death_attempts": [ - 2952 + 2951 ], "traded_death_opportunities": [ - 2952 + 2951 ], "traded_death_successes": [ - 2952 + 2951 ], "two_kill_rounds": [ - 2952 + 2951 ], "unused_utility_value": [ - 2952 + 2951 ], "utility_on_death": [ - 2952 + 2951 ], "wasted_magazine_shots": [ - 2952 + 2951 ], "zeus_kills": [ - 2952 + 2951 ], "__typename": [ 80 @@ -78085,199 +78077,199 @@ export default { }, "player_match_stats_v_stddev_pop_order_by": { "assists": [ - 2952 + 2951 ], "assists_ct": [ - 2952 + 2951 ], "assists_t": [ - 2952 + 2951 ], "avg_crosshair_angle_deg": [ - 2952 + 2951 ], "avg_flash_duration": [ - 2952 + 2951 ], "avg_time_to_damage_s": [ - 2952 + 2951 ], "counter_strafe_eligible_shots": [ - 2952 + 2951 ], "counter_strafed_shots": [ - 2952 + 2951 ], "damage": [ - 2952 + 2951 ], "damage_ct": [ - 2952 + 2951 ], "damage_t": [ - 2952 + 2951 ], "deaths": [ - 2952 + 2951 ], "deaths_ct": [ - 2952 + 2951 ], "deaths_t": [ - 2952 + 2951 ], "decoy_throws": [ - 2952 + 2951 ], "enemies_flashed": [ - 2952 + 2951 ], "first_bullet_hits": [ - 2952 + 2951 ], "first_bullet_shots": [ - 2952 + 2951 ], "five_kill_rounds": [ - 2952 + 2951 ], "flash_assists": [ - 2952 + 2951 ], "flashes_thrown": [ - 2952 + 2951 ], "four_kill_rounds": [ - 2952 + 2951 ], "he_damage": [ - 2952 + 2951 ], "he_team_damage": [ - 2952 + 2951 ], "he_throws": [ - 2952 + 2951 ], "headshot_hits": [ - 2952 + 2951 ], "hits": [ - 2952 + 2951 ], "hits_at_spotted": [ - 2952 + 2951 ], "hs_kills": [ - 2952 + 2951 ], "hs_kills_ct": [ - 2952 + 2951 ], "hs_kills_t": [ - 2952 + 2951 ], "kills": [ - 2952 + 2951 ], "kills_ct": [ - 2952 + 2951 ], "kills_t": [ - 2952 + 2951 ], "knife_kills": [ - 2952 + 2951 ], "molotov_damage": [ - 2952 + 2951 ], "molotov_throws": [ - 2952 + 2951 ], "non_awp_hits": [ - 2952 + 2951 ], "on_target_frames": [ - 2952 + 2951 ], "rounds_ct": [ - 2952 + 2951 ], "rounds_played": [ - 2952 + 2951 ], "rounds_t": [ - 2952 + 2951 ], "shots_at_spotted": [ - 2952 + 2951 ], "shots_fired": [ - 2952 + 2951 ], "smoke_throws": [ - 2952 + 2951 ], "spotted_count": [ - 2952 + 2951 ], "spotted_with_damage_count": [ - 2952 + 2951 ], "spray_hits": [ - 2952 + 2951 ], "spray_shots": [ - 2952 + 2951 ], "steam_id": [ - 2952 + 2951 ], "team_damage": [ - 2952 + 2951 ], "team_flashed": [ - 2952 + 2951 ], "three_kill_rounds": [ - 2952 + 2951 ], "total_engagement_frames": [ - 2952 + 2951 ], "trade_kill_attempts": [ - 2952 + 2951 ], "trade_kill_opportunities": [ - 2952 + 2951 ], "trade_kill_successes": [ - 2952 + 2951 ], "traded_death_attempts": [ - 2952 + 2951 ], "traded_death_opportunities": [ - 2952 + 2951 ], "traded_death_successes": [ - 2952 + 2951 ], "two_kill_rounds": [ - 2952 + 2951 ], "unused_utility_value": [ - 2952 + 2951 ], "utility_on_death": [ - 2952 + 2951 ], "wasted_magazine_shots": [ - 2952 + 2951 ], "zeus_kills": [ - 2952 + 2951 ], "__typename": [ 80 @@ -78485,199 +78477,199 @@ export default { }, "player_match_stats_v_stddev_samp_order_by": { "assists": [ - 2952 + 2951 ], "assists_ct": [ - 2952 + 2951 ], "assists_t": [ - 2952 + 2951 ], "avg_crosshair_angle_deg": [ - 2952 + 2951 ], "avg_flash_duration": [ - 2952 + 2951 ], "avg_time_to_damage_s": [ - 2952 + 2951 ], "counter_strafe_eligible_shots": [ - 2952 + 2951 ], "counter_strafed_shots": [ - 2952 + 2951 ], "damage": [ - 2952 + 2951 ], "damage_ct": [ - 2952 + 2951 ], "damage_t": [ - 2952 + 2951 ], "deaths": [ - 2952 + 2951 ], "deaths_ct": [ - 2952 + 2951 ], "deaths_t": [ - 2952 + 2951 ], "decoy_throws": [ - 2952 + 2951 ], "enemies_flashed": [ - 2952 + 2951 ], "first_bullet_hits": [ - 2952 + 2951 ], "first_bullet_shots": [ - 2952 + 2951 ], "five_kill_rounds": [ - 2952 + 2951 ], "flash_assists": [ - 2952 + 2951 ], "flashes_thrown": [ - 2952 + 2951 ], "four_kill_rounds": [ - 2952 + 2951 ], "he_damage": [ - 2952 + 2951 ], "he_team_damage": [ - 2952 + 2951 ], "he_throws": [ - 2952 + 2951 ], "headshot_hits": [ - 2952 + 2951 ], "hits": [ - 2952 + 2951 ], "hits_at_spotted": [ - 2952 + 2951 ], "hs_kills": [ - 2952 + 2951 ], "hs_kills_ct": [ - 2952 + 2951 ], "hs_kills_t": [ - 2952 + 2951 ], "kills": [ - 2952 + 2951 ], "kills_ct": [ - 2952 + 2951 ], "kills_t": [ - 2952 + 2951 ], "knife_kills": [ - 2952 + 2951 ], "molotov_damage": [ - 2952 + 2951 ], "molotov_throws": [ - 2952 + 2951 ], "non_awp_hits": [ - 2952 + 2951 ], "on_target_frames": [ - 2952 + 2951 ], "rounds_ct": [ - 2952 + 2951 ], "rounds_played": [ - 2952 + 2951 ], "rounds_t": [ - 2952 + 2951 ], "shots_at_spotted": [ - 2952 + 2951 ], "shots_fired": [ - 2952 + 2951 ], "smoke_throws": [ - 2952 + 2951 ], "spotted_count": [ - 2952 + 2951 ], "spotted_with_damage_count": [ - 2952 + 2951 ], "spray_hits": [ - 2952 + 2951 ], "spray_shots": [ - 2952 + 2951 ], "steam_id": [ - 2952 + 2951 ], "team_damage": [ - 2952 + 2951 ], "team_flashed": [ - 2952 + 2951 ], "three_kill_rounds": [ - 2952 + 2951 ], "total_engagement_frames": [ - 2952 + 2951 ], "trade_kill_attempts": [ - 2952 + 2951 ], "trade_kill_opportunities": [ - 2952 + 2951 ], "trade_kill_successes": [ - 2952 + 2951 ], "traded_death_attempts": [ - 2952 + 2951 ], "traded_death_opportunities": [ - 2952 + 2951 ], "traded_death_successes": [ - 2952 + 2951 ], "two_kill_rounds": [ - 2952 + 2951 ], "unused_utility_value": [ - 2952 + 2951 ], "utility_on_death": [ - 2952 + 2951 ], "wasted_magazine_shots": [ - 2952 + 2951 ], "zeus_kills": [ - 2952 + 2951 ], "__typename": [ 80 @@ -78685,10 +78677,10 @@ export default { }, "player_match_stats_v_stream_cursor_input": { "initial_value": [ - 3499 + 3498 ], "ordering": [ - 314 + 313 ], "__typename": [ 80 @@ -78705,13 +78697,13 @@ export default { 40 ], "avg_crosshair_angle_deg": [ - 2950 + 2949 ], "avg_flash_duration": [ - 2950 + 2949 ], "avg_time_to_damage_s": [ - 2950 + 2949 ], "counter_strafe_eligible_shots": [ 40 @@ -78801,7 +78793,7 @@ export default { 40 ], "match_id": [ - 4999 + 4998 ], "molotov_damage": [ 40 @@ -78846,7 +78838,7 @@ export default { 40 ], "steam_id": [ - 258 + 257 ], "team_damage": [ 40 @@ -78885,7 +78877,7 @@ export default { 40 ], "utility_on_death": [ - 2950 + 2949 ], "wasted_magazine_shots": [ 40 @@ -78908,13 +78900,13 @@ export default { 40 ], "avg_crosshair_angle_deg": [ - 2950 + 2949 ], "avg_flash_duration": [ - 2950 + 2949 ], "avg_time_to_damage_s": [ - 2950 + 2949 ], "counter_strafe_eligible_shots": [ 40 @@ -79046,7 +79038,7 @@ export default { 40 ], "steam_id": [ - 258 + 257 ], "team_damage": [ 40 @@ -79085,7 +79077,7 @@ export default { 40 ], "utility_on_death": [ - 2950 + 2949 ], "wasted_magazine_shots": [ 40 @@ -79099,199 +79091,199 @@ export default { }, "player_match_stats_v_sum_order_by": { "assists": [ - 2952 + 2951 ], "assists_ct": [ - 2952 + 2951 ], "assists_t": [ - 2952 + 2951 ], "avg_crosshair_angle_deg": [ - 2952 + 2951 ], "avg_flash_duration": [ - 2952 + 2951 ], "avg_time_to_damage_s": [ - 2952 + 2951 ], "counter_strafe_eligible_shots": [ - 2952 + 2951 ], "counter_strafed_shots": [ - 2952 + 2951 ], "damage": [ - 2952 + 2951 ], "damage_ct": [ - 2952 + 2951 ], "damage_t": [ - 2952 + 2951 ], "deaths": [ - 2952 + 2951 ], "deaths_ct": [ - 2952 + 2951 ], "deaths_t": [ - 2952 + 2951 ], "decoy_throws": [ - 2952 + 2951 ], "enemies_flashed": [ - 2952 + 2951 ], "first_bullet_hits": [ - 2952 + 2951 ], "first_bullet_shots": [ - 2952 + 2951 ], "five_kill_rounds": [ - 2952 + 2951 ], "flash_assists": [ - 2952 + 2951 ], "flashes_thrown": [ - 2952 + 2951 ], "four_kill_rounds": [ - 2952 + 2951 ], "he_damage": [ - 2952 + 2951 ], "he_team_damage": [ - 2952 + 2951 ], "he_throws": [ - 2952 + 2951 ], "headshot_hits": [ - 2952 + 2951 ], "hits": [ - 2952 + 2951 ], "hits_at_spotted": [ - 2952 + 2951 ], "hs_kills": [ - 2952 + 2951 ], "hs_kills_ct": [ - 2952 + 2951 ], "hs_kills_t": [ - 2952 + 2951 ], "kills": [ - 2952 + 2951 ], "kills_ct": [ - 2952 + 2951 ], "kills_t": [ - 2952 + 2951 ], "knife_kills": [ - 2952 + 2951 ], "molotov_damage": [ - 2952 + 2951 ], "molotov_throws": [ - 2952 + 2951 ], "non_awp_hits": [ - 2952 + 2951 ], "on_target_frames": [ - 2952 + 2951 ], "rounds_ct": [ - 2952 + 2951 ], "rounds_played": [ - 2952 + 2951 ], "rounds_t": [ - 2952 + 2951 ], "shots_at_spotted": [ - 2952 + 2951 ], "shots_fired": [ - 2952 + 2951 ], "smoke_throws": [ - 2952 + 2951 ], "spotted_count": [ - 2952 + 2951 ], "spotted_with_damage_count": [ - 2952 + 2951 ], "spray_hits": [ - 2952 + 2951 ], "spray_shots": [ - 2952 + 2951 ], "steam_id": [ - 2952 + 2951 ], "team_damage": [ - 2952 + 2951 ], "team_flashed": [ - 2952 + 2951 ], "three_kill_rounds": [ - 2952 + 2951 ], "total_engagement_frames": [ - 2952 + 2951 ], "trade_kill_attempts": [ - 2952 + 2951 ], "trade_kill_opportunities": [ - 2952 + 2951 ], "trade_kill_successes": [ - 2952 + 2951 ], "traded_death_attempts": [ - 2952 + 2951 ], "traded_death_opportunities": [ - 2952 + 2951 ], "traded_death_successes": [ - 2952 + 2951 ], "two_kill_rounds": [ - 2952 + 2951 ], "unused_utility_value": [ - 2952 + 2951 ], "utility_on_death": [ - 2952 + 2951 ], "wasted_magazine_shots": [ - 2952 + 2951 ], "zeus_kills": [ - 2952 + 2951 ], "__typename": [ 80 @@ -79499,199 +79491,199 @@ export default { }, "player_match_stats_v_var_pop_order_by": { "assists": [ - 2952 + 2951 ], "assists_ct": [ - 2952 + 2951 ], "assists_t": [ - 2952 + 2951 ], "avg_crosshair_angle_deg": [ - 2952 + 2951 ], "avg_flash_duration": [ - 2952 + 2951 ], "avg_time_to_damage_s": [ - 2952 + 2951 ], "counter_strafe_eligible_shots": [ - 2952 + 2951 ], "counter_strafed_shots": [ - 2952 + 2951 ], "damage": [ - 2952 + 2951 ], "damage_ct": [ - 2952 + 2951 ], "damage_t": [ - 2952 + 2951 ], "deaths": [ - 2952 + 2951 ], "deaths_ct": [ - 2952 + 2951 ], "deaths_t": [ - 2952 + 2951 ], "decoy_throws": [ - 2952 + 2951 ], "enemies_flashed": [ - 2952 + 2951 ], "first_bullet_hits": [ - 2952 + 2951 ], "first_bullet_shots": [ - 2952 + 2951 ], "five_kill_rounds": [ - 2952 + 2951 ], "flash_assists": [ - 2952 + 2951 ], "flashes_thrown": [ - 2952 + 2951 ], "four_kill_rounds": [ - 2952 + 2951 ], "he_damage": [ - 2952 + 2951 ], "he_team_damage": [ - 2952 + 2951 ], "he_throws": [ - 2952 + 2951 ], "headshot_hits": [ - 2952 + 2951 ], "hits": [ - 2952 + 2951 ], "hits_at_spotted": [ - 2952 + 2951 ], "hs_kills": [ - 2952 + 2951 ], "hs_kills_ct": [ - 2952 + 2951 ], "hs_kills_t": [ - 2952 + 2951 ], "kills": [ - 2952 + 2951 ], "kills_ct": [ - 2952 + 2951 ], "kills_t": [ - 2952 + 2951 ], "knife_kills": [ - 2952 + 2951 ], "molotov_damage": [ - 2952 + 2951 ], "molotov_throws": [ - 2952 + 2951 ], "non_awp_hits": [ - 2952 + 2951 ], "on_target_frames": [ - 2952 + 2951 ], "rounds_ct": [ - 2952 + 2951 ], "rounds_played": [ - 2952 + 2951 ], "rounds_t": [ - 2952 + 2951 ], "shots_at_spotted": [ - 2952 + 2951 ], "shots_fired": [ - 2952 + 2951 ], "smoke_throws": [ - 2952 + 2951 ], "spotted_count": [ - 2952 + 2951 ], "spotted_with_damage_count": [ - 2952 + 2951 ], "spray_hits": [ - 2952 + 2951 ], "spray_shots": [ - 2952 + 2951 ], "steam_id": [ - 2952 + 2951 ], "team_damage": [ - 2952 + 2951 ], "team_flashed": [ - 2952 + 2951 ], "three_kill_rounds": [ - 2952 + 2951 ], "total_engagement_frames": [ - 2952 + 2951 ], "trade_kill_attempts": [ - 2952 + 2951 ], "trade_kill_opportunities": [ - 2952 + 2951 ], "trade_kill_successes": [ - 2952 + 2951 ], "traded_death_attempts": [ - 2952 + 2951 ], "traded_death_opportunities": [ - 2952 + 2951 ], "traded_death_successes": [ - 2952 + 2951 ], "two_kill_rounds": [ - 2952 + 2951 ], "unused_utility_value": [ - 2952 + 2951 ], "utility_on_death": [ - 2952 + 2951 ], "wasted_magazine_shots": [ - 2952 + 2951 ], "zeus_kills": [ - 2952 + 2951 ], "__typename": [ 80 @@ -79899,199 +79891,199 @@ export default { }, "player_match_stats_v_var_samp_order_by": { "assists": [ - 2952 + 2951 ], "assists_ct": [ - 2952 + 2951 ], "assists_t": [ - 2952 + 2951 ], "avg_crosshair_angle_deg": [ - 2952 + 2951 ], "avg_flash_duration": [ - 2952 + 2951 ], "avg_time_to_damage_s": [ - 2952 + 2951 ], "counter_strafe_eligible_shots": [ - 2952 + 2951 ], "counter_strafed_shots": [ - 2952 + 2951 ], "damage": [ - 2952 + 2951 ], "damage_ct": [ - 2952 + 2951 ], "damage_t": [ - 2952 + 2951 ], "deaths": [ - 2952 + 2951 ], "deaths_ct": [ - 2952 + 2951 ], "deaths_t": [ - 2952 + 2951 ], "decoy_throws": [ - 2952 + 2951 ], "enemies_flashed": [ - 2952 + 2951 ], "first_bullet_hits": [ - 2952 + 2951 ], "first_bullet_shots": [ - 2952 + 2951 ], "five_kill_rounds": [ - 2952 + 2951 ], "flash_assists": [ - 2952 + 2951 ], "flashes_thrown": [ - 2952 + 2951 ], "four_kill_rounds": [ - 2952 + 2951 ], "he_damage": [ - 2952 + 2951 ], "he_team_damage": [ - 2952 + 2951 ], "he_throws": [ - 2952 + 2951 ], "headshot_hits": [ - 2952 + 2951 ], "hits": [ - 2952 + 2951 ], "hits_at_spotted": [ - 2952 + 2951 ], "hs_kills": [ - 2952 + 2951 ], "hs_kills_ct": [ - 2952 + 2951 ], "hs_kills_t": [ - 2952 + 2951 ], "kills": [ - 2952 + 2951 ], "kills_ct": [ - 2952 + 2951 ], "kills_t": [ - 2952 + 2951 ], "knife_kills": [ - 2952 + 2951 ], "molotov_damage": [ - 2952 + 2951 ], "molotov_throws": [ - 2952 + 2951 ], "non_awp_hits": [ - 2952 + 2951 ], "on_target_frames": [ - 2952 + 2951 ], "rounds_ct": [ - 2952 + 2951 ], "rounds_played": [ - 2952 + 2951 ], "rounds_t": [ - 2952 + 2951 ], "shots_at_spotted": [ - 2952 + 2951 ], "shots_fired": [ - 2952 + 2951 ], "smoke_throws": [ - 2952 + 2951 ], "spotted_count": [ - 2952 + 2951 ], "spotted_with_damage_count": [ - 2952 + 2951 ], "spray_hits": [ - 2952 + 2951 ], "spray_shots": [ - 2952 + 2951 ], "steam_id": [ - 2952 + 2951 ], "team_damage": [ - 2952 + 2951 ], "team_flashed": [ - 2952 + 2951 ], "three_kill_rounds": [ - 2952 + 2951 ], "total_engagement_frames": [ - 2952 + 2951 ], "trade_kill_attempts": [ - 2952 + 2951 ], "trade_kill_opportunities": [ - 2952 + 2951 ], "trade_kill_successes": [ - 2952 + 2951 ], "traded_death_attempts": [ - 2952 + 2951 ], "traded_death_opportunities": [ - 2952 + 2951 ], "traded_death_successes": [ - 2952 + 2951 ], "two_kill_rounds": [ - 2952 + 2951 ], "unused_utility_value": [ - 2952 + 2951 ], "utility_on_death": [ - 2952 + 2951 ], "wasted_magazine_shots": [ - 2952 + 2951 ], "zeus_kills": [ - 2952 + 2951 ], "__typename": [ 80 @@ -80299,199 +80291,199 @@ export default { }, "player_match_stats_v_variance_order_by": { "assists": [ - 2952 + 2951 ], "assists_ct": [ - 2952 + 2951 ], "assists_t": [ - 2952 + 2951 ], "avg_crosshair_angle_deg": [ - 2952 + 2951 ], "avg_flash_duration": [ - 2952 + 2951 ], "avg_time_to_damage_s": [ - 2952 + 2951 ], "counter_strafe_eligible_shots": [ - 2952 + 2951 ], "counter_strafed_shots": [ - 2952 + 2951 ], "damage": [ - 2952 + 2951 ], "damage_ct": [ - 2952 + 2951 ], "damage_t": [ - 2952 + 2951 ], "deaths": [ - 2952 + 2951 ], "deaths_ct": [ - 2952 + 2951 ], "deaths_t": [ - 2952 + 2951 ], "decoy_throws": [ - 2952 + 2951 ], "enemies_flashed": [ - 2952 + 2951 ], "first_bullet_hits": [ - 2952 + 2951 ], "first_bullet_shots": [ - 2952 + 2951 ], "five_kill_rounds": [ - 2952 + 2951 ], "flash_assists": [ - 2952 + 2951 ], "flashes_thrown": [ - 2952 + 2951 ], "four_kill_rounds": [ - 2952 + 2951 ], "he_damage": [ - 2952 + 2951 ], "he_team_damage": [ - 2952 + 2951 ], "he_throws": [ - 2952 + 2951 ], "headshot_hits": [ - 2952 + 2951 ], "hits": [ - 2952 + 2951 ], "hits_at_spotted": [ - 2952 + 2951 ], "hs_kills": [ - 2952 + 2951 ], "hs_kills_ct": [ - 2952 + 2951 ], "hs_kills_t": [ - 2952 + 2951 ], "kills": [ - 2952 + 2951 ], "kills_ct": [ - 2952 + 2951 ], "kills_t": [ - 2952 + 2951 ], "knife_kills": [ - 2952 + 2951 ], "molotov_damage": [ - 2952 + 2951 ], "molotov_throws": [ - 2952 + 2951 ], "non_awp_hits": [ - 2952 + 2951 ], "on_target_frames": [ - 2952 + 2951 ], "rounds_ct": [ - 2952 + 2951 ], "rounds_played": [ - 2952 + 2951 ], "rounds_t": [ - 2952 + 2951 ], "shots_at_spotted": [ - 2952 + 2951 ], "shots_fired": [ - 2952 + 2951 ], "smoke_throws": [ - 2952 + 2951 ], "spotted_count": [ - 2952 + 2951 ], "spotted_with_damage_count": [ - 2952 + 2951 ], "spray_hits": [ - 2952 + 2951 ], "spray_shots": [ - 2952 + 2951 ], "steam_id": [ - 2952 + 2951 ], "team_damage": [ - 2952 + 2951 ], "team_flashed": [ - 2952 + 2951 ], "three_kill_rounds": [ - 2952 + 2951 ], "total_engagement_frames": [ - 2952 + 2951 ], "trade_kill_attempts": [ - 2952 + 2951 ], "trade_kill_opportunities": [ - 2952 + 2951 ], "trade_kill_successes": [ - 2952 + 2951 ], "traded_death_attempts": [ - 2952 + 2951 ], "traded_death_opportunities": [ - 2952 + 2951 ], "traded_death_successes": [ - 2952 + 2951 ], "two_kill_rounds": [ - 2952 + 2951 ], "unused_utility_value": [ - 2952 + 2951 ], "utility_on_death": [ - 2952 + 2951 ], "wasted_magazine_shots": [ - 2952 + 2951 ], "zeus_kills": [ - 2952 + 2951 ], "__typename": [ 80 @@ -80499,34 +80491,34 @@ export default { }, "player_objectives": { "deleted_at": [ - 4499 + 4498 ], "match": [ - 2767 + 2766 ], "match_id": [ - 4999 + 4998 ], "match_map": [ - 2605 + 2604 ], "match_map_id": [ - 4999 + 4998 ], "player": [ - 3910 + 3909 ], "player_steam_id": [ - 258 + 257 ], "round": [ 40 ], "time": [ - 4499 + 4498 ], "type": [ - 1051 + 1050 ], "__typename": [ 80 @@ -80534,10 +80526,10 @@ export default { }, "player_objectives_aggregate": { "aggregate": [ - 3512 + 3511 ], "nodes": [ - 3508 + 3507 ], "__typename": [ 80 @@ -80545,7 +80537,7 @@ export default { }, "player_objectives_aggregate_bool_exp": { "count": [ - 3511 + 3510 ], "__typename": [ 80 @@ -80553,13 +80545,13 @@ export default { }, "player_objectives_aggregate_bool_exp_count": { "arguments": [ - 3529 + 3528 ], "distinct": [ 5 ], "filter": [ - 3517 + 3516 ], "predicate": [ 41 @@ -80570,13 +80562,13 @@ export default { }, "player_objectives_aggregate_fields": { "avg": [ - 3515 + 3514 ], "count": [ 40, { "columns": [ - 3529, + 3528, "[player_objectives_select_column!]" ], "distinct": [ @@ -80585,31 +80577,31 @@ export default { } ], "max": [ - 3521 + 3520 ], "min": [ - 3523 + 3522 ], "stddev": [ - 3531 + 3530 ], "stddev_pop": [ - 3533 + 3532 ], "stddev_samp": [ - 3535 + 3534 ], "sum": [ - 3539 + 3538 ], "var_pop": [ - 3543 + 3542 ], "var_samp": [ - 3545 + 3544 ], "variance": [ - 3547 + 3546 ], "__typename": [ 80 @@ -80617,37 +80609,37 @@ export default { }, "player_objectives_aggregate_order_by": { "avg": [ - 3516 + 3515 ], "count": [ - 2952 + 2951 ], "max": [ - 3522 + 3521 ], "min": [ - 3524 + 3523 ], "stddev": [ - 3532 + 3531 ], "stddev_pop": [ - 3534 + 3533 ], "stddev_samp": [ - 3536 + 3535 ], "sum": [ - 3540 + 3539 ], "var_pop": [ - 3544 + 3543 ], "var_samp": [ - 3546 + 3545 ], "variance": [ - 3548 + 3547 ], "__typename": [ 80 @@ -80655,10 +80647,10 @@ export default { }, "player_objectives_arr_rel_insert_input": { "data": [ - 3520 + 3519 ], "on_conflict": [ - 3526 + 3525 ], "__typename": [ 80 @@ -80677,10 +80669,10 @@ export default { }, "player_objectives_avg_order_by": { "player_steam_id": [ - 2952 + 2951 ], "round": [ - 2952 + 2951 ], "__typename": [ 80 @@ -80688,43 +80680,43 @@ export default { }, "player_objectives_bool_exp": { "_and": [ - 3517 + 3516 ], "_not": [ - 3517 + 3516 ], "_or": [ - 3517 + 3516 ], "deleted_at": [ - 4500 + 4499 ], "match": [ - 2776 + 2775 ], "match_id": [ - 5001 + 5000 ], "match_map": [ - 2614 + 2613 ], "match_map_id": [ - 5001 + 5000 ], "player": [ - 3914 + 3913 ], "player_steam_id": [ - 260 + 259 ], "round": [ 41 ], "time": [ - 4500 + 4499 ], "type": [ - 1052 + 1051 ], "__typename": [ 80 @@ -80733,7 +80725,7 @@ export default { "player_objectives_constraint": {}, "player_objectives_inc_input": { "player_steam_id": [ - 258 + 257 ], "round": [ 40 @@ -80744,34 +80736,34 @@ export default { }, "player_objectives_insert_input": { "deleted_at": [ - 4499 + 4498 ], "match": [ - 2785 + 2784 ], "match_id": [ - 4999 + 4998 ], "match_map": [ - 2623 + 2622 ], "match_map_id": [ - 4999 + 4998 ], "player": [ - 3921 + 3920 ], "player_steam_id": [ - 258 + 257 ], "round": [ 40 ], "time": [ - 4499 + 4498 ], "type": [ - 1051 + 1050 ], "__typename": [ 80 @@ -80779,22 +80771,22 @@ export default { }, "player_objectives_max_fields": { "deleted_at": [ - 4499 + 4498 ], "match_id": [ - 4999 + 4998 ], "match_map_id": [ - 4999 + 4998 ], "player_steam_id": [ - 258 + 257 ], "round": [ 40 ], "time": [ - 4499 + 4498 ], "__typename": [ 80 @@ -80802,22 +80794,22 @@ export default { }, "player_objectives_max_order_by": { "deleted_at": [ - 2952 + 2951 ], "match_id": [ - 2952 + 2951 ], "match_map_id": [ - 2952 + 2951 ], "player_steam_id": [ - 2952 + 2951 ], "round": [ - 2952 + 2951 ], "time": [ - 2952 + 2951 ], "__typename": [ 80 @@ -80825,22 +80817,22 @@ export default { }, "player_objectives_min_fields": { "deleted_at": [ - 4499 + 4498 ], "match_id": [ - 4999 + 4998 ], "match_map_id": [ - 4999 + 4998 ], "player_steam_id": [ - 258 + 257 ], "round": [ 40 ], "time": [ - 4499 + 4498 ], "__typename": [ 80 @@ -80848,22 +80840,22 @@ export default { }, "player_objectives_min_order_by": { "deleted_at": [ - 2952 + 2951 ], "match_id": [ - 2952 + 2951 ], "match_map_id": [ - 2952 + 2951 ], "player_steam_id": [ - 2952 + 2951 ], "round": [ - 2952 + 2951 ], "time": [ - 2952 + 2951 ], "__typename": [ 80 @@ -80874,7 +80866,7 @@ export default { 40 ], "returning": [ - 3508 + 3507 ], "__typename": [ 80 @@ -80882,13 +80874,13 @@ export default { }, "player_objectives_on_conflict": { "constraint": [ - 3518 + 3517 ], "update_columns": [ - 3541 + 3540 ], "where": [ - 3517 + 3516 ], "__typename": [ 80 @@ -80896,34 +80888,34 @@ export default { }, "player_objectives_order_by": { "deleted_at": [ - 2952 + 2951 ], "match": [ - 2787 + 2786 ], "match_id": [ - 2952 + 2951 ], "match_map": [ - 2625 + 2624 ], "match_map_id": [ - 2952 + 2951 ], "player": [ - 3923 + 3922 ], "player_steam_id": [ - 2952 + 2951 ], "round": [ - 2952 + 2951 ], "time": [ - 2952 + 2951 ], "type": [ - 2952 + 2951 ], "__typename": [ 80 @@ -80931,13 +80923,13 @@ export default { }, "player_objectives_pk_columns_input": { "match_map_id": [ - 4999 + 4998 ], "player_steam_id": [ - 258 + 257 ], "time": [ - 4499 + 4498 ], "__typename": [ 80 @@ -80946,25 +80938,25 @@ export default { "player_objectives_select_column": {}, "player_objectives_set_input": { "deleted_at": [ - 4499 + 4498 ], "match_id": [ - 4999 + 4998 ], "match_map_id": [ - 4999 + 4998 ], "player_steam_id": [ - 258 + 257 ], "round": [ 40 ], "time": [ - 4499 + 4498 ], "type": [ - 1051 + 1050 ], "__typename": [ 80 @@ -80983,10 +80975,10 @@ export default { }, "player_objectives_stddev_order_by": { "player_steam_id": [ - 2952 + 2951 ], "round": [ - 2952 + 2951 ], "__typename": [ 80 @@ -81005,10 +80997,10 @@ export default { }, "player_objectives_stddev_pop_order_by": { "player_steam_id": [ - 2952 + 2951 ], "round": [ - 2952 + 2951 ], "__typename": [ 80 @@ -81027,10 +81019,10 @@ export default { }, "player_objectives_stddev_samp_order_by": { "player_steam_id": [ - 2952 + 2951 ], "round": [ - 2952 + 2951 ], "__typename": [ 80 @@ -81038,10 +81030,10 @@ export default { }, "player_objectives_stream_cursor_input": { "initial_value": [ - 3538 + 3537 ], "ordering": [ - 314 + 313 ], "__typename": [ 80 @@ -81049,25 +81041,25 @@ export default { }, "player_objectives_stream_cursor_value_input": { "deleted_at": [ - 4499 + 4498 ], "match_id": [ - 4999 + 4998 ], "match_map_id": [ - 4999 + 4998 ], "player_steam_id": [ - 258 + 257 ], "round": [ 40 ], "time": [ - 4499 + 4498 ], "type": [ - 1051 + 1050 ], "__typename": [ 80 @@ -81075,7 +81067,7 @@ export default { }, "player_objectives_sum_fields": { "player_steam_id": [ - 258 + 257 ], "round": [ 40 @@ -81086,10 +81078,10 @@ export default { }, "player_objectives_sum_order_by": { "player_steam_id": [ - 2952 + 2951 ], "round": [ - 2952 + 2951 ], "__typename": [ 80 @@ -81098,13 +81090,13 @@ export default { "player_objectives_update_column": {}, "player_objectives_updates": { "_inc": [ - 3519 + 3518 ], "_set": [ - 3530 + 3529 ], "where": [ - 3517 + 3516 ], "__typename": [ 80 @@ -81123,10 +81115,10 @@ export default { }, "player_objectives_var_pop_order_by": { "player_steam_id": [ - 2952 + 2951 ], "round": [ - 2952 + 2951 ], "__typename": [ 80 @@ -81145,10 +81137,10 @@ export default { }, "player_objectives_var_samp_order_by": { "player_steam_id": [ - 2952 + 2951 ], "round": [ - 2952 + 2951 ], "__typename": [ 80 @@ -81167,10 +81159,10 @@ export default { }, "player_objectives_variance_order_by": { "player_steam_id": [ - 2952 + 2951 ], "round": [ - 2952 + 2951 ], "__typename": [ 80 @@ -81178,46 +81170,46 @@ export default { }, "player_performance_v": { "accuracy_score": [ - 1670 + 1669 ], "aim_goal": [ - 1670 + 1669 ], "aim_rating": [ - 1670 + 1669 ], "band": [ 40 ], "band_sample": [ - 258 + 257 ], "blind_score": [ - 1670 + 1669 ], "counter_strafe_score": [ - 1670 + 1669 ], "crosshair_score": [ - 1670 + 1669 ], "flash_assists_score": [ - 1670 + 1669 ], "hs_score": [ - 1670 + 1669 ], "kast_score": [ - 1670 + 1669 ], "maps": [ 40 ], "positioning_goal": [ - 1670 + 1669 ], "positioning_rating": [ - 1670 + 1669 ], "premier_rank": [ 40 @@ -81226,28 +81218,28 @@ export default { 40 ], "spotted_score": [ - 1670 + 1669 ], "steam_id": [ - 258 + 257 ], "survival_score": [ - 1670 + 1669 ], "traded_score": [ - 1670 + 1669 ], "ttd_score": [ - 1670 + 1669 ], "util_eff_score": [ - 1670 + 1669 ], "utility_goal": [ - 1670 + 1669 ], "utility_rating": [ - 1670 + 1669 ], "__typename": [ 80 @@ -81255,10 +81247,10 @@ export default { }, "player_performance_v_aggregate": { "aggregate": [ - 3551 + 3550 ], "nodes": [ - 3549 + 3548 ], "__typename": [ 80 @@ -81266,13 +81258,13 @@ export default { }, "player_performance_v_aggregate_fields": { "avg": [ - 3552 + 3551 ], "count": [ 40, { "columns": [ - 3557, + 3556, "[player_performance_v_select_column!]" ], "distinct": [ @@ -81281,31 +81273,31 @@ export default { } ], "max": [ - 3554 + 3553 ], "min": [ - 3555 + 3554 ], "stddev": [ - 3558 + 3557 ], "stddev_pop": [ - 3559 + 3558 ], "stddev_samp": [ - 3560 + 3559 ], "sum": [ - 3563 + 3562 ], "var_pop": [ - 3564 + 3563 ], "var_samp": [ - 3565 + 3564 ], "variance": [ - 3566 + 3565 ], "__typename": [ 80 @@ -81390,55 +81382,55 @@ export default { }, "player_performance_v_bool_exp": { "_and": [ - 3553 + 3552 ], "_not": [ - 3553 + 3552 ], "_or": [ - 3553 + 3552 ], "accuracy_score": [ - 1671 + 1670 ], "aim_goal": [ - 1671 + 1670 ], "aim_rating": [ - 1671 + 1670 ], "band": [ 41 ], "band_sample": [ - 260 + 259 ], "blind_score": [ - 1671 + 1670 ], "counter_strafe_score": [ - 1671 + 1670 ], "crosshair_score": [ - 1671 + 1670 ], "flash_assists_score": [ - 1671 + 1670 ], "hs_score": [ - 1671 + 1670 ], "kast_score": [ - 1671 + 1670 ], "maps": [ 41 ], "positioning_goal": [ - 1671 + 1670 ], "positioning_rating": [ - 1671 + 1670 ], "premier_rank": [ 41 @@ -81447,28 +81439,28 @@ export default { 41 ], "spotted_score": [ - 1671 + 1670 ], "steam_id": [ - 260 + 259 ], "survival_score": [ - 1671 + 1670 ], "traded_score": [ - 1671 + 1670 ], "ttd_score": [ - 1671 + 1670 ], "util_eff_score": [ - 1671 + 1670 ], "utility_goal": [ - 1671 + 1670 ], "utility_rating": [ - 1671 + 1670 ], "__typename": [ 80 @@ -81476,46 +81468,46 @@ export default { }, "player_performance_v_max_fields": { "accuracy_score": [ - 1670 + 1669 ], "aim_goal": [ - 1670 + 1669 ], "aim_rating": [ - 1670 + 1669 ], "band": [ 40 ], "band_sample": [ - 258 + 257 ], "blind_score": [ - 1670 + 1669 ], "counter_strafe_score": [ - 1670 + 1669 ], "crosshair_score": [ - 1670 + 1669 ], "flash_assists_score": [ - 1670 + 1669 ], "hs_score": [ - 1670 + 1669 ], "kast_score": [ - 1670 + 1669 ], "maps": [ 40 ], "positioning_goal": [ - 1670 + 1669 ], "positioning_rating": [ - 1670 + 1669 ], "premier_rank": [ 40 @@ -81524,28 +81516,28 @@ export default { 40 ], "spotted_score": [ - 1670 + 1669 ], "steam_id": [ - 258 + 257 ], "survival_score": [ - 1670 + 1669 ], "traded_score": [ - 1670 + 1669 ], "ttd_score": [ - 1670 + 1669 ], "util_eff_score": [ - 1670 + 1669 ], "utility_goal": [ - 1670 + 1669 ], "utility_rating": [ - 1670 + 1669 ], "__typename": [ 80 @@ -81553,46 +81545,46 @@ export default { }, "player_performance_v_min_fields": { "accuracy_score": [ - 1670 + 1669 ], "aim_goal": [ - 1670 + 1669 ], "aim_rating": [ - 1670 + 1669 ], "band": [ 40 ], "band_sample": [ - 258 + 257 ], "blind_score": [ - 1670 + 1669 ], "counter_strafe_score": [ - 1670 + 1669 ], "crosshair_score": [ - 1670 + 1669 ], "flash_assists_score": [ - 1670 + 1669 ], "hs_score": [ - 1670 + 1669 ], "kast_score": [ - 1670 + 1669 ], "maps": [ 40 ], "positioning_goal": [ - 1670 + 1669 ], "positioning_rating": [ - 1670 + 1669 ], "premier_rank": [ 40 @@ -81601,28 +81593,28 @@ export default { 40 ], "spotted_score": [ - 1670 + 1669 ], "steam_id": [ - 258 + 257 ], "survival_score": [ - 1670 + 1669 ], "traded_score": [ - 1670 + 1669 ], "ttd_score": [ - 1670 + 1669 ], "util_eff_score": [ - 1670 + 1669 ], "utility_goal": [ - 1670 + 1669 ], "utility_rating": [ - 1670 + 1669 ], "__typename": [ 80 @@ -81630,76 +81622,76 @@ export default { }, "player_performance_v_order_by": { "accuracy_score": [ - 2952 + 2951 ], "aim_goal": [ - 2952 + 2951 ], "aim_rating": [ - 2952 + 2951 ], "band": [ - 2952 + 2951 ], "band_sample": [ - 2952 + 2951 ], "blind_score": [ - 2952 + 2951 ], "counter_strafe_score": [ - 2952 + 2951 ], "crosshair_score": [ - 2952 + 2951 ], "flash_assists_score": [ - 2952 + 2951 ], "hs_score": [ - 2952 + 2951 ], "kast_score": [ - 2952 + 2951 ], "maps": [ - 2952 + 2951 ], "positioning_goal": [ - 2952 + 2951 ], "positioning_rating": [ - 2952 + 2951 ], "premier_rank": [ - 2952 + 2951 ], "rounds": [ - 2952 + 2951 ], "spotted_score": [ - 2952 + 2951 ], "steam_id": [ - 2952 + 2951 ], "survival_score": [ - 2952 + 2951 ], "traded_score": [ - 2952 + 2951 ], "ttd_score": [ - 2952 + 2951 ], "util_eff_score": [ - 2952 + 2951 ], "utility_goal": [ - 2952 + 2951 ], "utility_rating": [ - 2952 + 2951 ], "__typename": [ 80 @@ -81939,10 +81931,10 @@ export default { }, "player_performance_v_stream_cursor_input": { "initial_value": [ - 3562 + 3561 ], "ordering": [ - 314 + 313 ], "__typename": [ 80 @@ -81950,46 +81942,46 @@ export default { }, "player_performance_v_stream_cursor_value_input": { "accuracy_score": [ - 1670 + 1669 ], "aim_goal": [ - 1670 + 1669 ], "aim_rating": [ - 1670 + 1669 ], "band": [ 40 ], "band_sample": [ - 258 + 257 ], "blind_score": [ - 1670 + 1669 ], "counter_strafe_score": [ - 1670 + 1669 ], "crosshair_score": [ - 1670 + 1669 ], "flash_assists_score": [ - 1670 + 1669 ], "hs_score": [ - 1670 + 1669 ], "kast_score": [ - 1670 + 1669 ], "maps": [ 40 ], "positioning_goal": [ - 1670 + 1669 ], "positioning_rating": [ - 1670 + 1669 ], "premier_rank": [ 40 @@ -81998,28 +81990,28 @@ export default { 40 ], "spotted_score": [ - 1670 + 1669 ], "steam_id": [ - 258 + 257 ], "survival_score": [ - 1670 + 1669 ], "traded_score": [ - 1670 + 1669 ], "ttd_score": [ - 1670 + 1669 ], "util_eff_score": [ - 1670 + 1669 ], "utility_goal": [ - 1670 + 1669 ], "utility_rating": [ - 1670 + 1669 ], "__typename": [ 80 @@ -82027,46 +82019,46 @@ export default { }, "player_performance_v_sum_fields": { "accuracy_score": [ - 1670 + 1669 ], "aim_goal": [ - 1670 + 1669 ], "aim_rating": [ - 1670 + 1669 ], "band": [ 40 ], "band_sample": [ - 258 + 257 ], "blind_score": [ - 1670 + 1669 ], "counter_strafe_score": [ - 1670 + 1669 ], "crosshair_score": [ - 1670 + 1669 ], "flash_assists_score": [ - 1670 + 1669 ], "hs_score": [ - 1670 + 1669 ], "kast_score": [ - 1670 + 1669 ], "maps": [ 40 ], "positioning_goal": [ - 1670 + 1669 ], "positioning_rating": [ - 1670 + 1669 ], "premier_rank": [ 40 @@ -82075,28 +82067,28 @@ export default { 40 ], "spotted_score": [ - 1670 + 1669 ], "steam_id": [ - 258 + 257 ], "survival_score": [ - 1670 + 1669 ], "traded_score": [ - 1670 + 1669 ], "ttd_score": [ - 1670 + 1669 ], "util_eff_score": [ - 1670 + 1669 ], "utility_goal": [ - 1670 + 1669 ], "utility_rating": [ - 1670 + 1669 ], "__typename": [ 80 @@ -82335,25 +82327,25 @@ export default { }, "player_premier_rank_history": { "id": [ - 4999 + 4998 ], "map": [ - 2285 + 2284 ], "map_id": [ - 4999 + 4998 ], "match": [ - 2767 + 2766 ], "match_id": [ - 4999 + 4998 ], "observed_at": [ - 4499 + 4498 ], "player": [ - 3910 + 3909 ], "previous_rank": [ 40 @@ -82365,7 +82357,7 @@ export default { 40 ], "steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -82373,10 +82365,10 @@ export default { }, "player_premier_rank_history_aggregate": { "aggregate": [ - 3571 + 3570 ], "nodes": [ - 3567 + 3566 ], "__typename": [ 80 @@ -82384,7 +82376,7 @@ export default { }, "player_premier_rank_history_aggregate_bool_exp": { "count": [ - 3570 + 3569 ], "__typename": [ 80 @@ -82392,13 +82384,13 @@ export default { }, "player_premier_rank_history_aggregate_bool_exp_count": { "arguments": [ - 3588 + 3587 ], "distinct": [ 5 ], "filter": [ - 3576 + 3575 ], "predicate": [ 41 @@ -82409,13 +82401,13 @@ export default { }, "player_premier_rank_history_aggregate_fields": { "avg": [ - 3574 + 3573 ], "count": [ 40, { "columns": [ - 3588, + 3587, "[player_premier_rank_history_select_column!]" ], "distinct": [ @@ -82423,6 +82415,44 @@ export default { ] } ], + "max": [ + 3579 + ], + "min": [ + 3581 + ], + "stddev": [ + 3589 + ], + "stddev_pop": [ + 3591 + ], + "stddev_samp": [ + 3593 + ], + "sum": [ + 3597 + ], + "var_pop": [ + 3601 + ], + "var_samp": [ + 3603 + ], + "variance": [ + 3605 + ], + "__typename": [ + 80 + ] + }, + "player_premier_rank_history_aggregate_order_by": { + "avg": [ + 3574 + ], + "count": [ + 2951 + ], "max": [ 3580 ], @@ -82454,50 +82484,12 @@ export default { 80 ] }, - "player_premier_rank_history_aggregate_order_by": { - "avg": [ - 3575 - ], - "count": [ - 2952 - ], - "max": [ - 3581 - ], - "min": [ - 3583 - ], - "stddev": [ - 3591 - ], - "stddev_pop": [ - 3593 - ], - "stddev_samp": [ - 3595 - ], - "sum": [ - 3599 - ], - "var_pop": [ - 3603 - ], - "var_samp": [ - 3605 - ], - "variance": [ - 3607 - ], - "__typename": [ - 80 - ] - }, "player_premier_rank_history_arr_rel_insert_input": { "data": [ - 3579 + 3578 ], "on_conflict": [ - 3585 + 3584 ], "__typename": [ 80 @@ -82522,16 +82514,16 @@ export default { }, "player_premier_rank_history_avg_order_by": { "previous_rank": [ - 2952 + 2951 ], "rank": [ - 2952 + 2951 ], "rank_type": [ - 2952 + 2951 ], "steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -82539,34 +82531,34 @@ export default { }, "player_premier_rank_history_bool_exp": { "_and": [ - 3576 + 3575 ], "_not": [ - 3576 + 3575 ], "_or": [ - 3576 + 3575 ], "id": [ - 5001 + 5000 ], "map": [ - 2294 + 2293 ], "map_id": [ - 5001 + 5000 ], "match": [ - 2776 + 2775 ], "match_id": [ - 5001 + 5000 ], "observed_at": [ - 4500 + 4499 ], "player": [ - 3914 + 3913 ], "previous_rank": [ 41 @@ -82578,7 +82570,7 @@ export default { 41 ], "steam_id": [ - 260 + 259 ], "__typename": [ 80 @@ -82596,7 +82588,7 @@ export default { 40 ], "steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -82604,25 +82596,25 @@ export default { }, "player_premier_rank_history_insert_input": { "id": [ - 4999 + 4998 ], "map": [ - 2302 + 2301 ], "map_id": [ - 4999 + 4998 ], "match": [ - 2785 + 2784 ], "match_id": [ - 4999 + 4998 ], "observed_at": [ - 4499 + 4498 ], "player": [ - 3921 + 3920 ], "previous_rank": [ 40 @@ -82634,7 +82626,7 @@ export default { 40 ], "steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -82642,16 +82634,16 @@ export default { }, "player_premier_rank_history_max_fields": { "id": [ - 4999 + 4998 ], "map_id": [ - 4999 + 4998 ], "match_id": [ - 4999 + 4998 ], "observed_at": [ - 4499 + 4498 ], "previous_rank": [ 40 @@ -82663,7 +82655,7 @@ export default { 40 ], "steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -82671,28 +82663,28 @@ export default { }, "player_premier_rank_history_max_order_by": { "id": [ - 2952 + 2951 ], "map_id": [ - 2952 + 2951 ], "match_id": [ - 2952 + 2951 ], "observed_at": [ - 2952 + 2951 ], "previous_rank": [ - 2952 + 2951 ], "rank": [ - 2952 + 2951 ], "rank_type": [ - 2952 + 2951 ], "steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -82700,16 +82692,16 @@ export default { }, "player_premier_rank_history_min_fields": { "id": [ - 4999 + 4998 ], "map_id": [ - 4999 + 4998 ], "match_id": [ - 4999 + 4998 ], "observed_at": [ - 4499 + 4498 ], "previous_rank": [ 40 @@ -82721,7 +82713,7 @@ export default { 40 ], "steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -82729,28 +82721,28 @@ export default { }, "player_premier_rank_history_min_order_by": { "id": [ - 2952 + 2951 ], "map_id": [ - 2952 + 2951 ], "match_id": [ - 2952 + 2951 ], "observed_at": [ - 2952 + 2951 ], "previous_rank": [ - 2952 + 2951 ], "rank": [ - 2952 + 2951 ], "rank_type": [ - 2952 + 2951 ], "steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -82761,7 +82753,7 @@ export default { 40 ], "returning": [ - 3567 + 3566 ], "__typename": [ 80 @@ -82769,13 +82761,13 @@ export default { }, "player_premier_rank_history_on_conflict": { "constraint": [ - 3577 + 3576 ], "update_columns": [ - 3600 + 3599 ], "where": [ - 3576 + 3575 ], "__typename": [ 80 @@ -82783,37 +82775,37 @@ export default { }, "player_premier_rank_history_order_by": { "id": [ - 2952 + 2951 ], "map": [ - 2304 + 2303 ], "map_id": [ - 2952 + 2951 ], "match": [ - 2787 + 2786 ], "match_id": [ - 2952 + 2951 ], "observed_at": [ - 2952 + 2951 ], "player": [ - 3923 + 3922 ], "previous_rank": [ - 2952 + 2951 ], "rank": [ - 2952 + 2951 ], "rank_type": [ - 2952 + 2951 ], "steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -82821,7 +82813,7 @@ export default { }, "player_premier_rank_history_pk_columns_input": { "id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -82830,16 +82822,16 @@ export default { "player_premier_rank_history_select_column": {}, "player_premier_rank_history_set_input": { "id": [ - 4999 + 4998 ], "map_id": [ - 4999 + 4998 ], "match_id": [ - 4999 + 4998 ], "observed_at": [ - 4499 + 4498 ], "previous_rank": [ 40 @@ -82851,7 +82843,7 @@ export default { 40 ], "steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -82876,16 +82868,16 @@ export default { }, "player_premier_rank_history_stddev_order_by": { "previous_rank": [ - 2952 + 2951 ], "rank": [ - 2952 + 2951 ], "rank_type": [ - 2952 + 2951 ], "steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -82910,16 +82902,16 @@ export default { }, "player_premier_rank_history_stddev_pop_order_by": { "previous_rank": [ - 2952 + 2951 ], "rank": [ - 2952 + 2951 ], "rank_type": [ - 2952 + 2951 ], "steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -82944,16 +82936,16 @@ export default { }, "player_premier_rank_history_stddev_samp_order_by": { "previous_rank": [ - 2952 + 2951 ], "rank": [ - 2952 + 2951 ], "rank_type": [ - 2952 + 2951 ], "steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -82961,10 +82953,10 @@ export default { }, "player_premier_rank_history_stream_cursor_input": { "initial_value": [ - 3597 + 3596 ], "ordering": [ - 314 + 313 ], "__typename": [ 80 @@ -82972,16 +82964,16 @@ export default { }, "player_premier_rank_history_stream_cursor_value_input": { "id": [ - 4999 + 4998 ], "map_id": [ - 4999 + 4998 ], "match_id": [ - 4999 + 4998 ], "observed_at": [ - 4499 + 4498 ], "previous_rank": [ 40 @@ -82993,7 +82985,7 @@ export default { 40 ], "steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -83010,7 +83002,7 @@ export default { 40 ], "steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -83018,16 +83010,16 @@ export default { }, "player_premier_rank_history_sum_order_by": { "previous_rank": [ - 2952 + 2951 ], "rank": [ - 2952 + 2951 ], "rank_type": [ - 2952 + 2951 ], "steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -83036,13 +83028,13 @@ export default { "player_premier_rank_history_update_column": {}, "player_premier_rank_history_updates": { "_inc": [ - 3578 + 3577 ], "_set": [ - 3589 + 3588 ], "where": [ - 3576 + 3575 ], "__typename": [ 80 @@ -83067,16 +83059,16 @@ export default { }, "player_premier_rank_history_var_pop_order_by": { "previous_rank": [ - 2952 + 2951 ], "rank": [ - 2952 + 2951 ], "rank_type": [ - 2952 + 2951 ], "steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -83101,16 +83093,16 @@ export default { }, "player_premier_rank_history_var_samp_order_by": { "previous_rank": [ - 2952 + 2951 ], "rank": [ - 2952 + 2951 ], "rank_type": [ - 2952 + 2951 ], "steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -83135,16 +83127,16 @@ export default { }, "player_premier_rank_history_variance_order_by": { "previous_rank": [ - 2952 + 2951 ], "rank": [ - 2952 + 2951 ], "rank_type": [ - 2952 + 2951 ], "steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -83152,37 +83144,37 @@ export default { }, "player_sanctions": { "created_at": [ - 4499 + 4498 ], "deleted_at": [ - 4499 + 4498 ], "e_sanction_type": [ - 1126 + 1125 ], "id": [ - 4999 + 4998 ], "player": [ - 3910 + 3909 ], "player_steam_id": [ - 258 + 257 ], "reason": [ 80 ], "remove_sanction_date": [ - 4499 + 4498 ], "sanctioned_by": [ - 3910 + 3909 ], "sanctioned_by_steam_id": [ - 258 + 257 ], "type": [ - 1131 + 1130 ], "__typename": [ 80 @@ -83190,10 +83182,10 @@ export default { }, "player_sanctions_aggregate": { "aggregate": [ - 3612 + 3611 ], "nodes": [ - 3608 + 3607 ], "__typename": [ 80 @@ -83201,7 +83193,7 @@ export default { }, "player_sanctions_aggregate_bool_exp": { "count": [ - 3611 + 3610 ], "__typename": [ 80 @@ -83209,13 +83201,13 @@ export default { }, "player_sanctions_aggregate_bool_exp_count": { "arguments": [ - 3629 + 3628 ], "distinct": [ 5 ], "filter": [ - 3617 + 3616 ], "predicate": [ 41 @@ -83226,13 +83218,13 @@ export default { }, "player_sanctions_aggregate_fields": { "avg": [ - 3615 + 3614 ], "count": [ 40, { "columns": [ - 3629, + 3628, "[player_sanctions_select_column!]" ], "distinct": [ @@ -83240,6 +83232,44 @@ export default { ] } ], + "max": [ + 3620 + ], + "min": [ + 3622 + ], + "stddev": [ + 3630 + ], + "stddev_pop": [ + 3632 + ], + "stddev_samp": [ + 3634 + ], + "sum": [ + 3638 + ], + "var_pop": [ + 3642 + ], + "var_samp": [ + 3644 + ], + "variance": [ + 3646 + ], + "__typename": [ + 80 + ] + }, + "player_sanctions_aggregate_order_by": { + "avg": [ + 3615 + ], + "count": [ + 2951 + ], "max": [ 3621 ], @@ -83271,50 +83301,12 @@ export default { 80 ] }, - "player_sanctions_aggregate_order_by": { - "avg": [ - 3616 - ], - "count": [ - 2952 - ], - "max": [ - 3622 - ], - "min": [ - 3624 - ], - "stddev": [ - 3632 - ], - "stddev_pop": [ - 3634 - ], - "stddev_samp": [ - 3636 - ], - "sum": [ - 3640 - ], - "var_pop": [ - 3644 - ], - "var_samp": [ - 3646 - ], - "variance": [ - 3648 - ], - "__typename": [ - 80 - ] - }, "player_sanctions_arr_rel_insert_input": { "data": [ - 3620 + 3619 ], "on_conflict": [ - 3626 + 3625 ], "__typename": [ 80 @@ -83333,10 +83325,10 @@ export default { }, "player_sanctions_avg_order_by": { "player_steam_id": [ - 2952 + 2951 ], "sanctioned_by_steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -83344,46 +83336,46 @@ export default { }, "player_sanctions_bool_exp": { "_and": [ - 3617 + 3616 ], "_not": [ - 3617 + 3616 ], "_or": [ - 3617 + 3616 ], "created_at": [ - 4500 + 4499 ], "deleted_at": [ - 4500 + 4499 ], "e_sanction_type": [ - 1129 + 1128 ], "id": [ - 5001 + 5000 ], "player": [ - 3914 + 3913 ], "player_steam_id": [ - 260 + 259 ], "reason": [ 82 ], "remove_sanction_date": [ - 4500 + 4499 ], "sanctioned_by": [ - 3914 + 3913 ], "sanctioned_by_steam_id": [ - 260 + 259 ], "type": [ - 1132 + 1131 ], "__typename": [ 80 @@ -83392,10 +83384,10 @@ export default { "player_sanctions_constraint": {}, "player_sanctions_inc_input": { "player_steam_id": [ - 258 + 257 ], "sanctioned_by_steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -83403,37 +83395,37 @@ export default { }, "player_sanctions_insert_input": { "created_at": [ - 4499 + 4498 ], "deleted_at": [ - 4499 + 4498 ], "e_sanction_type": [ - 1137 + 1136 ], "id": [ - 4999 + 4998 ], "player": [ - 3921 + 3920 ], "player_steam_id": [ - 258 + 257 ], "reason": [ 80 ], "remove_sanction_date": [ - 4499 + 4498 ], "sanctioned_by": [ - 3921 + 3920 ], "sanctioned_by_steam_id": [ - 258 + 257 ], "type": [ - 1131 + 1130 ], "__typename": [ 80 @@ -83441,25 +83433,25 @@ export default { }, "player_sanctions_max_fields": { "created_at": [ - 4499 + 4498 ], "deleted_at": [ - 4499 + 4498 ], "id": [ - 4999 + 4998 ], "player_steam_id": [ - 258 + 257 ], "reason": [ 80 ], "remove_sanction_date": [ - 4499 + 4498 ], "sanctioned_by_steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -83467,25 +83459,25 @@ export default { }, "player_sanctions_max_order_by": { "created_at": [ - 2952 + 2951 ], "deleted_at": [ - 2952 + 2951 ], "id": [ - 2952 + 2951 ], "player_steam_id": [ - 2952 + 2951 ], "reason": [ - 2952 + 2951 ], "remove_sanction_date": [ - 2952 + 2951 ], "sanctioned_by_steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -83493,25 +83485,25 @@ export default { }, "player_sanctions_min_fields": { "created_at": [ - 4499 + 4498 ], "deleted_at": [ - 4499 + 4498 ], "id": [ - 4999 + 4998 ], "player_steam_id": [ - 258 + 257 ], "reason": [ 80 ], "remove_sanction_date": [ - 4499 + 4498 ], "sanctioned_by_steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -83519,25 +83511,25 @@ export default { }, "player_sanctions_min_order_by": { "created_at": [ - 2952 + 2951 ], "deleted_at": [ - 2952 + 2951 ], "id": [ - 2952 + 2951 ], "player_steam_id": [ - 2952 + 2951 ], "reason": [ - 2952 + 2951 ], "remove_sanction_date": [ - 2952 + 2951 ], "sanctioned_by_steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -83548,7 +83540,7 @@ export default { 40 ], "returning": [ - 3608 + 3607 ], "__typename": [ 80 @@ -83556,13 +83548,13 @@ export default { }, "player_sanctions_on_conflict": { "constraint": [ - 3618 + 3617 ], "update_columns": [ - 3641 + 3640 ], "where": [ - 3617 + 3616 ], "__typename": [ 80 @@ -83570,37 +83562,37 @@ export default { }, "player_sanctions_order_by": { "created_at": [ - 2952 + 2951 ], "deleted_at": [ - 2952 + 2951 ], "e_sanction_type": [ - 1139 + 1138 ], "id": [ - 2952 + 2951 ], "player": [ - 3923 + 3922 ], "player_steam_id": [ - 2952 + 2951 ], "reason": [ - 2952 + 2951 ], "remove_sanction_date": [ - 2952 + 2951 ], "sanctioned_by": [ - 3923 + 3922 ], "sanctioned_by_steam_id": [ - 2952 + 2951 ], "type": [ - 2952 + 2951 ], "__typename": [ 80 @@ -83608,10 +83600,10 @@ export default { }, "player_sanctions_pk_columns_input": { "created_at": [ - 4499 + 4498 ], "id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -83620,28 +83612,28 @@ export default { "player_sanctions_select_column": {}, "player_sanctions_set_input": { "created_at": [ - 4499 + 4498 ], "deleted_at": [ - 4499 + 4498 ], "id": [ - 4999 + 4998 ], "player_steam_id": [ - 258 + 257 ], "reason": [ 80 ], "remove_sanction_date": [ - 4499 + 4498 ], "sanctioned_by_steam_id": [ - 258 + 257 ], "type": [ - 1131 + 1130 ], "__typename": [ 80 @@ -83660,10 +83652,10 @@ export default { }, "player_sanctions_stddev_order_by": { "player_steam_id": [ - 2952 + 2951 ], "sanctioned_by_steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -83682,10 +83674,10 @@ export default { }, "player_sanctions_stddev_pop_order_by": { "player_steam_id": [ - 2952 + 2951 ], "sanctioned_by_steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -83704,10 +83696,10 @@ export default { }, "player_sanctions_stddev_samp_order_by": { "player_steam_id": [ - 2952 + 2951 ], "sanctioned_by_steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -83715,10 +83707,10 @@ export default { }, "player_sanctions_stream_cursor_input": { "initial_value": [ - 3638 + 3637 ], "ordering": [ - 314 + 313 ], "__typename": [ 80 @@ -83726,28 +83718,28 @@ export default { }, "player_sanctions_stream_cursor_value_input": { "created_at": [ - 4499 + 4498 ], "deleted_at": [ - 4499 + 4498 ], "id": [ - 4999 + 4998 ], "player_steam_id": [ - 258 + 257 ], "reason": [ 80 ], "remove_sanction_date": [ - 4499 + 4498 ], "sanctioned_by_steam_id": [ - 258 + 257 ], "type": [ - 1131 + 1130 ], "__typename": [ 80 @@ -83755,10 +83747,10 @@ export default { }, "player_sanctions_sum_fields": { "player_steam_id": [ - 258 + 257 ], "sanctioned_by_steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -83766,10 +83758,10 @@ export default { }, "player_sanctions_sum_order_by": { "player_steam_id": [ - 2952 + 2951 ], "sanctioned_by_steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -83778,13 +83770,13 @@ export default { "player_sanctions_update_column": {}, "player_sanctions_updates": { "_inc": [ - 3619 + 3618 ], "_set": [ - 3630 + 3629 ], "where": [ - 3617 + 3616 ], "__typename": [ 80 @@ -83803,10 +83795,10 @@ export default { }, "player_sanctions_var_pop_order_by": { "player_steam_id": [ - 2952 + 2951 ], "sanctioned_by_steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -83825,10 +83817,10 @@ export default { }, "player_sanctions_var_samp_order_by": { "player_steam_id": [ - 2952 + 2951 ], "sanctioned_by_steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -83847,10 +83839,10 @@ export default { }, "player_sanctions_variance_order_by": { "player_steam_id": [ - 2952 + 2951 ], "sanctioned_by_steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -83858,31 +83850,31 @@ export default { }, "player_season_stats": { "assists": [ - 258 + 257 ], "deaths": [ - 258 + 257 ], "headshot_percentage": [ - 1670 + 1669 ], "headshots": [ - 258 + 257 ], "kills": [ - 258 + 257 ], "player": [ - 3910 + 3909 ], "player_steam_id": [ - 258 + 257 ], "season": [ - 3969 + 3968 ], "season_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -83890,10 +83882,10 @@ export default { }, "player_season_stats_aggregate": { "aggregate": [ - 3663 + 3662 ], "nodes": [ - 3649 + 3648 ], "__typename": [ 80 @@ -83901,31 +83893,31 @@ export default { }, "player_season_stats_aggregate_bool_exp": { "avg": [ - 3652 + 3651 ], "corr": [ - 3653 + 3652 ], "count": [ - 3655 + 3654 ], "covar_samp": [ - 3656 + 3655 ], "max": [ - 3658 + 3657 ], "min": [ - 3659 + 3658 ], "stddev_samp": [ - 3660 + 3659 ], "sum": [ - 3661 + 3660 ], "var_samp": [ - 3662 + 3661 ], "__typename": [ 80 @@ -83933,16 +83925,16 @@ export default { }, "player_season_stats_aggregate_bool_exp_avg": { "arguments": [ - 3681 + 3680 ], "distinct": [ 5 ], "filter": [ - 3668 + 3667 ], "predicate": [ - 1671 + 1670 ], "__typename": [ 80 @@ -83950,16 +83942,16 @@ export default { }, "player_season_stats_aggregate_bool_exp_corr": { "arguments": [ - 3654 + 3653 ], "distinct": [ 5 ], "filter": [ - 3668 + 3667 ], "predicate": [ - 1671 + 1670 ], "__typename": [ 80 @@ -83967,10 +83959,10 @@ export default { }, "player_season_stats_aggregate_bool_exp_corr_arguments": { "X": [ - 3682 + 3681 ], "Y": [ - 3682 + 3681 ], "__typename": [ 80 @@ -83978,13 +83970,13 @@ export default { }, "player_season_stats_aggregate_bool_exp_count": { "arguments": [ - 3680 + 3679 ], "distinct": [ 5 ], "filter": [ - 3668 + 3667 ], "predicate": [ 41 @@ -83995,16 +83987,16 @@ export default { }, "player_season_stats_aggregate_bool_exp_covar_samp": { "arguments": [ - 3657 + 3656 ], "distinct": [ 5 ], "filter": [ - 3668 + 3667 ], "predicate": [ - 1671 + 1670 ], "__typename": [ 80 @@ -84012,10 +84004,10 @@ export default { }, "player_season_stats_aggregate_bool_exp_covar_samp_arguments": { "X": [ - 3683 + 3682 ], "Y": [ - 3683 + 3682 ], "__typename": [ 80 @@ -84023,16 +84015,16 @@ export default { }, "player_season_stats_aggregate_bool_exp_max": { "arguments": [ - 3684 + 3683 ], "distinct": [ 5 ], "filter": [ - 3668 + 3667 ], "predicate": [ - 1671 + 1670 ], "__typename": [ 80 @@ -84040,16 +84032,16 @@ export default { }, "player_season_stats_aggregate_bool_exp_min": { "arguments": [ - 3685 + 3684 ], "distinct": [ 5 ], "filter": [ - 3668 + 3667 ], "predicate": [ - 1671 + 1670 ], "__typename": [ 80 @@ -84057,16 +84049,16 @@ export default { }, "player_season_stats_aggregate_bool_exp_stddev_samp": { "arguments": [ - 3686 + 3685 ], "distinct": [ 5 ], "filter": [ - 3668 + 3667 ], "predicate": [ - 1671 + 1670 ], "__typename": [ 80 @@ -84074,16 +84066,16 @@ export default { }, "player_season_stats_aggregate_bool_exp_sum": { "arguments": [ - 3687 + 3686 ], "distinct": [ 5 ], "filter": [ - 3668 + 3667 ], "predicate": [ - 1671 + 1670 ], "__typename": [ 80 @@ -84091,16 +84083,16 @@ export default { }, "player_season_stats_aggregate_bool_exp_var_samp": { "arguments": [ - 3688 + 3687 ], "distinct": [ 5 ], "filter": [ - 3668 + 3667 ], "predicate": [ - 1671 + 1670 ], "__typename": [ 80 @@ -84108,13 +84100,13 @@ export default { }, "player_season_stats_aggregate_fields": { "avg": [ - 3666 + 3665 ], "count": [ 40, { "columns": [ - 3680, + 3679, "[player_season_stats_select_column!]" ], "distinct": [ @@ -84122,6 +84114,44 @@ export default { ] } ], + "max": [ + 3671 + ], + "min": [ + 3673 + ], + "stddev": [ + 3689 + ], + "stddev_pop": [ + 3691 + ], + "stddev_samp": [ + 3693 + ], + "sum": [ + 3697 + ], + "var_pop": [ + 3701 + ], + "var_samp": [ + 3703 + ], + "variance": [ + 3705 + ], + "__typename": [ + 80 + ] + }, + "player_season_stats_aggregate_order_by": { + "avg": [ + 3666 + ], + "count": [ + 2951 + ], "max": [ 3672 ], @@ -84153,50 +84183,12 @@ export default { 80 ] }, - "player_season_stats_aggregate_order_by": { - "avg": [ - 3667 - ], - "count": [ - 2952 - ], - "max": [ - 3673 - ], - "min": [ - 3675 - ], - "stddev": [ - 3691 - ], - "stddev_pop": [ - 3693 - ], - "stddev_samp": [ - 3695 - ], - "sum": [ - 3699 - ], - "var_pop": [ - 3703 - ], - "var_samp": [ - 3705 - ], - "variance": [ - 3707 - ], - "__typename": [ - 80 - ] - }, "player_season_stats_arr_rel_insert_input": { "data": [ - 3671 + 3670 ], "on_conflict": [ - 3677 + 3676 ], "__typename": [ 80 @@ -84227,22 +84219,22 @@ export default { }, "player_season_stats_avg_order_by": { "assists": [ - 2952 + 2951 ], "deaths": [ - 2952 + 2951 ], "headshot_percentage": [ - 2952 + 2951 ], "headshots": [ - 2952 + 2951 ], "kills": [ - 2952 + 2951 ], "player_steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -84250,40 +84242,40 @@ export default { }, "player_season_stats_bool_exp": { "_and": [ - 3668 + 3667 ], "_not": [ - 3668 + 3667 ], "_or": [ - 3668 + 3667 ], "assists": [ - 260 + 259 ], "deaths": [ - 260 + 259 ], "headshot_percentage": [ - 1671 + 1670 ], "headshots": [ - 260 + 259 ], "kills": [ - 260 + 259 ], "player": [ - 3914 + 3913 ], "player_steam_id": [ - 260 + 259 ], "season": [ - 3973 + 3972 ], "season_id": [ - 5001 + 5000 ], "__typename": [ 80 @@ -84292,22 +84284,22 @@ export default { "player_season_stats_constraint": {}, "player_season_stats_inc_input": { "assists": [ - 258 + 257 ], "deaths": [ - 258 + 257 ], "headshot_percentage": [ - 1670 + 1669 ], "headshots": [ - 258 + 257 ], "kills": [ - 258 + 257 ], "player_steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -84315,31 +84307,31 @@ export default { }, "player_season_stats_insert_input": { "assists": [ - 258 + 257 ], "deaths": [ - 258 + 257 ], "headshot_percentage": [ - 1670 + 1669 ], "headshots": [ - 258 + 257 ], "kills": [ - 258 + 257 ], "player": [ - 3921 + 3920 ], "player_steam_id": [ - 258 + 257 ], "season": [ - 3980 + 3979 ], "season_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -84347,25 +84339,25 @@ export default { }, "player_season_stats_max_fields": { "assists": [ - 258 + 257 ], "deaths": [ - 258 + 257 ], "headshot_percentage": [ - 1670 + 1669 ], "headshots": [ - 258 + 257 ], "kills": [ - 258 + 257 ], "player_steam_id": [ - 258 + 257 ], "season_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -84373,25 +84365,25 @@ export default { }, "player_season_stats_max_order_by": { "assists": [ - 2952 + 2951 ], "deaths": [ - 2952 + 2951 ], "headshot_percentage": [ - 2952 + 2951 ], "headshots": [ - 2952 + 2951 ], "kills": [ - 2952 + 2951 ], "player_steam_id": [ - 2952 + 2951 ], "season_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -84399,25 +84391,25 @@ export default { }, "player_season_stats_min_fields": { "assists": [ - 258 + 257 ], "deaths": [ - 258 + 257 ], "headshot_percentage": [ - 1670 + 1669 ], "headshots": [ - 258 + 257 ], "kills": [ - 258 + 257 ], "player_steam_id": [ - 258 + 257 ], "season_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -84425,25 +84417,25 @@ export default { }, "player_season_stats_min_order_by": { "assists": [ - 2952 + 2951 ], "deaths": [ - 2952 + 2951 ], "headshot_percentage": [ - 2952 + 2951 ], "headshots": [ - 2952 + 2951 ], "kills": [ - 2952 + 2951 ], "player_steam_id": [ - 2952 + 2951 ], "season_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -84454,7 +84446,7 @@ export default { 40 ], "returning": [ - 3649 + 3648 ], "__typename": [ 80 @@ -84462,13 +84454,13 @@ export default { }, "player_season_stats_on_conflict": { "constraint": [ - 3669 + 3668 ], "update_columns": [ - 3700 + 3699 ], "where": [ - 3668 + 3667 ], "__typename": [ 80 @@ -84476,31 +84468,31 @@ export default { }, "player_season_stats_order_by": { "assists": [ - 2952 + 2951 ], "deaths": [ - 2952 + 2951 ], "headshot_percentage": [ - 2952 + 2951 ], "headshots": [ - 2952 + 2951 ], "kills": [ - 2952 + 2951 ], "player": [ - 3923 + 3922 ], "player_steam_id": [ - 2952 + 2951 ], "season": [ - 3982 + 3981 ], "season_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -84508,10 +84500,10 @@ export default { }, "player_season_stats_pk_columns_input": { "player_steam_id": [ - 258 + 257 ], "season_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -84528,25 +84520,25 @@ export default { "player_season_stats_select_column_player_season_stats_aggregate_bool_exp_var_samp_arguments_columns": {}, "player_season_stats_set_input": { "assists": [ - 258 + 257 ], "deaths": [ - 258 + 257 ], "headshot_percentage": [ - 1670 + 1669 ], "headshots": [ - 258 + 257 ], "kills": [ - 258 + 257 ], "player_steam_id": [ - 258 + 257 ], "season_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -84577,22 +84569,22 @@ export default { }, "player_season_stats_stddev_order_by": { "assists": [ - 2952 + 2951 ], "deaths": [ - 2952 + 2951 ], "headshot_percentage": [ - 2952 + 2951 ], "headshots": [ - 2952 + 2951 ], "kills": [ - 2952 + 2951 ], "player_steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -84623,22 +84615,22 @@ export default { }, "player_season_stats_stddev_pop_order_by": { "assists": [ - 2952 + 2951 ], "deaths": [ - 2952 + 2951 ], "headshot_percentage": [ - 2952 + 2951 ], "headshots": [ - 2952 + 2951 ], "kills": [ - 2952 + 2951 ], "player_steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -84669,22 +84661,22 @@ export default { }, "player_season_stats_stddev_samp_order_by": { "assists": [ - 2952 + 2951 ], "deaths": [ - 2952 + 2951 ], "headshot_percentage": [ - 2952 + 2951 ], "headshots": [ - 2952 + 2951 ], "kills": [ - 2952 + 2951 ], "player_steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -84692,10 +84684,10 @@ export default { }, "player_season_stats_stream_cursor_input": { "initial_value": [ - 3697 + 3696 ], "ordering": [ - 314 + 313 ], "__typename": [ 80 @@ -84703,25 +84695,25 @@ export default { }, "player_season_stats_stream_cursor_value_input": { "assists": [ - 258 + 257 ], "deaths": [ - 258 + 257 ], "headshot_percentage": [ - 1670 + 1669 ], "headshots": [ - 258 + 257 ], "kills": [ - 258 + 257 ], "player_steam_id": [ - 258 + 257 ], "season_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -84729,22 +84721,22 @@ export default { }, "player_season_stats_sum_fields": { "assists": [ - 258 + 257 ], "deaths": [ - 258 + 257 ], "headshot_percentage": [ - 1670 + 1669 ], "headshots": [ - 258 + 257 ], "kills": [ - 258 + 257 ], "player_steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -84752,22 +84744,22 @@ export default { }, "player_season_stats_sum_order_by": { "assists": [ - 2952 + 2951 ], "deaths": [ - 2952 + 2951 ], "headshot_percentage": [ - 2952 + 2951 ], "headshots": [ - 2952 + 2951 ], "kills": [ - 2952 + 2951 ], "player_steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -84776,13 +84768,13 @@ export default { "player_season_stats_update_column": {}, "player_season_stats_updates": { "_inc": [ - 3670 + 3669 ], "_set": [ - 3689 + 3688 ], "where": [ - 3668 + 3667 ], "__typename": [ 80 @@ -84813,22 +84805,22 @@ export default { }, "player_season_stats_var_pop_order_by": { "assists": [ - 2952 + 2951 ], "deaths": [ - 2952 + 2951 ], "headshot_percentage": [ - 2952 + 2951 ], "headshots": [ - 2952 + 2951 ], "kills": [ - 2952 + 2951 ], "player_steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -84859,22 +84851,22 @@ export default { }, "player_season_stats_var_samp_order_by": { "assists": [ - 2952 + 2951 ], "deaths": [ - 2952 + 2951 ], "headshot_percentage": [ - 2952 + 2951 ], "headshots": [ - 2952 + 2951 ], "kills": [ - 2952 + 2951 ], "player_steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -84905,22 +84897,22 @@ export default { }, "player_season_stats_variance_order_by": { "assists": [ - 2952 + 2951 ], "deaths": [ - 2952 + 2951 ], "headshot_percentage": [ - 2952 + 2951 ], "headshots": [ - 2952 + 2951 ], "kills": [ - 2952 + 2951 ], "player_steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -84928,25 +84920,25 @@ export default { }, "player_stats": { "assists": [ - 258 + 257 ], "deaths": [ - 258 + 257 ], "headshot_percentage": [ - 1670 + 1669 ], "headshots": [ - 258 + 257 ], "kills": [ - 258 + 257 ], "player": [ - 3910 + 3909 ], "player_steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -84954,10 +84946,10 @@ export default { }, "player_stats_aggregate": { "aggregate": [ - 3710 + 3709 ], "nodes": [ - 3708 + 3707 ], "__typename": [ 80 @@ -84965,13 +84957,13 @@ export default { }, "player_stats_aggregate_fields": { "avg": [ - 3711 + 3710 ], "count": [ 40, { "columns": [ - 3723, + 3722, "[player_stats_select_column!]" ], "distinct": [ @@ -84980,31 +84972,31 @@ export default { } ], "max": [ - 3716 + 3715 ], "min": [ - 3717 + 3716 ], "stddev": [ - 3725 + 3724 ], "stddev_pop": [ - 3726 + 3725 ], "stddev_samp": [ - 3727 + 3726 ], "sum": [ - 3730 + 3729 ], "var_pop": [ - 3733 + 3732 ], "var_samp": [ - 3734 + 3733 ], "variance": [ - 3735 + 3734 ], "__typename": [ 80 @@ -85035,34 +85027,34 @@ export default { }, "player_stats_bool_exp": { "_and": [ - 3712 + 3711 ], "_not": [ - 3712 + 3711 ], "_or": [ - 3712 + 3711 ], "assists": [ - 260 + 259 ], "deaths": [ - 260 + 259 ], "headshot_percentage": [ - 1671 + 1670 ], "headshots": [ - 260 + 259 ], "kills": [ - 260 + 259 ], "player": [ - 3914 + 3913 ], "player_steam_id": [ - 260 + 259 ], "__typename": [ 80 @@ -85071,22 +85063,22 @@ export default { "player_stats_constraint": {}, "player_stats_inc_input": { "assists": [ - 258 + 257 ], "deaths": [ - 258 + 257 ], "headshot_percentage": [ - 1670 + 1669 ], "headshots": [ - 258 + 257 ], "kills": [ - 258 + 257 ], "player_steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -85094,25 +85086,25 @@ export default { }, "player_stats_insert_input": { "assists": [ - 258 + 257 ], "deaths": [ - 258 + 257 ], "headshot_percentage": [ - 1670 + 1669 ], "headshots": [ - 258 + 257 ], "kills": [ - 258 + 257 ], "player": [ - 3921 + 3920 ], "player_steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -85120,22 +85112,22 @@ export default { }, "player_stats_max_fields": { "assists": [ - 258 + 257 ], "deaths": [ - 258 + 257 ], "headshot_percentage": [ - 1670 + 1669 ], "headshots": [ - 258 + 257 ], "kills": [ - 258 + 257 ], "player_steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -85143,22 +85135,22 @@ export default { }, "player_stats_min_fields": { "assists": [ - 258 + 257 ], "deaths": [ - 258 + 257 ], "headshot_percentage": [ - 1670 + 1669 ], "headshots": [ - 258 + 257 ], "kills": [ - 258 + 257 ], "player_steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -85169,7 +85161,7 @@ export default { 40 ], "returning": [ - 3708 + 3707 ], "__typename": [ 80 @@ -85177,10 +85169,10 @@ export default { }, "player_stats_obj_rel_insert_input": { "data": [ - 3715 + 3714 ], "on_conflict": [ - 3720 + 3719 ], "__typename": [ 80 @@ -85188,13 +85180,13 @@ export default { }, "player_stats_on_conflict": { "constraint": [ - 3713 + 3712 ], "update_columns": [ - 3731 + 3730 ], "where": [ - 3712 + 3711 ], "__typename": [ 80 @@ -85202,25 +85194,25 @@ export default { }, "player_stats_order_by": { "assists": [ - 2952 + 2951 ], "deaths": [ - 2952 + 2951 ], "headshot_percentage": [ - 2952 + 2951 ], "headshots": [ - 2952 + 2951 ], "kills": [ - 2952 + 2951 ], "player": [ - 3923 + 3922 ], "player_steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -85228,7 +85220,7 @@ export default { }, "player_stats_pk_columns_input": { "player_steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -85237,22 +85229,22 @@ export default { "player_stats_select_column": {}, "player_stats_set_input": { "assists": [ - 258 + 257 ], "deaths": [ - 258 + 257 ], "headshot_percentage": [ - 1670 + 1669 ], "headshots": [ - 258 + 257 ], "kills": [ - 258 + 257 ], "player_steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -85329,10 +85321,10 @@ export default { }, "player_stats_stream_cursor_input": { "initial_value": [ - 3729 + 3728 ], "ordering": [ - 314 + 313 ], "__typename": [ 80 @@ -85340,22 +85332,22 @@ export default { }, "player_stats_stream_cursor_value_input": { "assists": [ - 258 + 257 ], "deaths": [ - 258 + 257 ], "headshot_percentage": [ - 1670 + 1669 ], "headshots": [ - 258 + 257 ], "kills": [ - 258 + 257 ], "player_steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -85363,22 +85355,22 @@ export default { }, "player_stats_sum_fields": { "assists": [ - 258 + 257 ], "deaths": [ - 258 + 257 ], "headshot_percentage": [ - 1670 + 1669 ], "headshots": [ - 258 + 257 ], "kills": [ - 258 + 257 ], "player_steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -85387,13 +85379,13 @@ export default { "player_stats_update_column": {}, "player_stats_updates": { "_inc": [ - 3714 + 3713 ], "_set": [ - 3724 + 3723 ], "where": [ - 3712 + 3711 ], "__typename": [ 80 @@ -85470,19 +85462,19 @@ export default { }, "player_steam_bot_friend": { "bot_steam_account_id": [ - 4999 + 4998 ], "bot_steamid64": [ - 258 + 257 ], "created_at": [ - 4499 + 4498 ], "friended_at": [ - 4499 + 4498 ], "last_presence_state": [ - 1823, + 1822, { "path": [ 80 @@ -85490,16 +85482,16 @@ export default { } ], "player": [ - 3910 + 3909 ], "status": [ 80 ], "steam_id": [ - 258 + 257 ], "updated_at": [ - 4499 + 4498 ], "__typename": [ 80 @@ -85507,10 +85499,10 @@ export default { }, "player_steam_bot_friend_aggregate": { "aggregate": [ - 3738 + 3737 ], "nodes": [ - 3736 + 3735 ], "__typename": [ 80 @@ -85518,13 +85510,13 @@ export default { }, "player_steam_bot_friend_aggregate_fields": { "avg": [ - 3740 + 3739 ], "count": [ 40, { "columns": [ - 3755, + 3754, "[player_steam_bot_friend_select_column!]" ], "distinct": [ @@ -85533,31 +85525,31 @@ export default { } ], "max": [ - 3748 + 3747 ], "min": [ - 3749 + 3748 ], "stddev": [ - 3757 + 3756 ], "stddev_pop": [ - 3758 + 3757 ], "stddev_samp": [ - 3759 + 3758 ], "sum": [ - 3762 + 3761 ], "var_pop": [ - 3765 + 3764 ], "var_samp": [ - 3766 + 3765 ], "variance": [ - 3767 + 3766 ], "__typename": [ 80 @@ -85565,7 +85557,7 @@ export default { }, "player_steam_bot_friend_append_input": { "last_presence_state": [ - 1823 + 1822 ], "__typename": [ 80 @@ -85584,40 +85576,40 @@ export default { }, "player_steam_bot_friend_bool_exp": { "_and": [ - 3741 + 3740 ], "_not": [ - 3741 + 3740 ], "_or": [ - 3741 + 3740 ], "bot_steam_account_id": [ - 5001 + 5000 ], "bot_steamid64": [ - 260 + 259 ], "created_at": [ - 4500 + 4499 ], "friended_at": [ - 4500 + 4499 ], "last_presence_state": [ - 1825 + 1824 ], "player": [ - 3914 + 3913 ], "status": [ 82 ], "steam_id": [ - 260 + 259 ], "updated_at": [ - 4500 + 4499 ], "__typename": [ 80 @@ -85650,10 +85642,10 @@ export default { }, "player_steam_bot_friend_inc_input": { "bot_steamid64": [ - 258 + 257 ], "steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -85661,31 +85653,31 @@ export default { }, "player_steam_bot_friend_insert_input": { "bot_steam_account_id": [ - 4999 + 4998 ], "bot_steamid64": [ - 258 + 257 ], "created_at": [ - 4499 + 4498 ], "friended_at": [ - 4499 + 4498 ], "last_presence_state": [ - 1823 + 1822 ], "player": [ - 3921 + 3920 ], "status": [ 80 ], "steam_id": [ - 258 + 257 ], "updated_at": [ - 4499 + 4498 ], "__typename": [ 80 @@ -85693,25 +85685,25 @@ export default { }, "player_steam_bot_friend_max_fields": { "bot_steam_account_id": [ - 4999 + 4998 ], "bot_steamid64": [ - 258 + 257 ], "created_at": [ - 4499 + 4498 ], "friended_at": [ - 4499 + 4498 ], "status": [ 80 ], "steam_id": [ - 258 + 257 ], "updated_at": [ - 4499 + 4498 ], "__typename": [ 80 @@ -85719,25 +85711,25 @@ export default { }, "player_steam_bot_friend_min_fields": { "bot_steam_account_id": [ - 4999 + 4998 ], "bot_steamid64": [ - 258 + 257 ], "created_at": [ - 4499 + 4498 ], "friended_at": [ - 4499 + 4498 ], "status": [ 80 ], "steam_id": [ - 258 + 257 ], "updated_at": [ - 4499 + 4498 ], "__typename": [ 80 @@ -85748,7 +85740,7 @@ export default { 40 ], "returning": [ - 3736 + 3735 ], "__typename": [ 80 @@ -85756,13 +85748,13 @@ export default { }, "player_steam_bot_friend_on_conflict": { "constraint": [ - 3742 + 3741 ], "update_columns": [ - 3763 + 3762 ], "where": [ - 3741 + 3740 ], "__typename": [ 80 @@ -85770,31 +85762,31 @@ export default { }, "player_steam_bot_friend_order_by": { "bot_steam_account_id": [ - 2952 + 2951 ], "bot_steamid64": [ - 2952 + 2951 ], "created_at": [ - 2952 + 2951 ], "friended_at": [ - 2952 + 2951 ], "last_presence_state": [ - 2952 + 2951 ], "player": [ - 3923 + 3922 ], "status": [ - 2952 + 2951 ], "steam_id": [ - 2952 + 2951 ], "updated_at": [ - 2952 + 2951 ], "__typename": [ 80 @@ -85802,7 +85794,7 @@ export default { }, "player_steam_bot_friend_pk_columns_input": { "steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -85810,7 +85802,7 @@ export default { }, "player_steam_bot_friend_prepend_input": { "last_presence_state": [ - 1823 + 1822 ], "__typename": [ 80 @@ -85819,28 +85811,28 @@ export default { "player_steam_bot_friend_select_column": {}, "player_steam_bot_friend_set_input": { "bot_steam_account_id": [ - 4999 + 4998 ], "bot_steamid64": [ - 258 + 257 ], "created_at": [ - 4499 + 4498 ], "friended_at": [ - 4499 + 4498 ], "last_presence_state": [ - 1823 + 1822 ], "status": [ 80 ], "steam_id": [ - 258 + 257 ], "updated_at": [ - 4499 + 4498 ], "__typename": [ 80 @@ -85881,10 +85873,10 @@ export default { }, "player_steam_bot_friend_stream_cursor_input": { "initial_value": [ - 3761 + 3760 ], "ordering": [ - 314 + 313 ], "__typename": [ 80 @@ -85892,28 +85884,28 @@ export default { }, "player_steam_bot_friend_stream_cursor_value_input": { "bot_steam_account_id": [ - 4999 + 4998 ], "bot_steamid64": [ - 258 + 257 ], "created_at": [ - 4499 + 4498 ], "friended_at": [ - 4499 + 4498 ], "last_presence_state": [ - 1823 + 1822 ], "status": [ 80 ], "steam_id": [ - 258 + 257 ], "updated_at": [ - 4499 + 4498 ], "__typename": [ 80 @@ -85921,10 +85913,10 @@ export default { }, "player_steam_bot_friend_sum_fields": { "bot_steamid64": [ - 258 + 257 ], "steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -85933,28 +85925,28 @@ export default { "player_steam_bot_friend_update_column": {}, "player_steam_bot_friend_updates": { "_append": [ - 3739 + 3738 ], "_delete_at_path": [ - 3743 + 3742 ], "_delete_elem": [ - 3744 + 3743 ], "_delete_key": [ - 3745 + 3744 ], "_inc": [ - 3746 + 3745 ], "_prepend": [ - 3754 + 3753 ], "_set": [ - 3756 + 3755 ], "where": [ - 3741 + 3740 ], "__typename": [ 80 @@ -85998,7 +85990,7 @@ export default { 80 ], "created_at": [ - 4499 + 4498 ], "last_error": [ 80 @@ -86007,16 +85999,16 @@ export default { 80 ], "last_polled_at": [ - 4499 + 4498 ], "player": [ - 3910 + 3909 ], "steam_id": [ - 258 + 257 ], "updated_at": [ - 4499 + 4498 ], "__typename": [ 80 @@ -86024,10 +86016,10 @@ export default { }, "player_steam_match_auth_aggregate": { "aggregate": [ - 3770 + 3769 ], "nodes": [ - 3768 + 3767 ], "__typename": [ 80 @@ -86035,13 +86027,13 @@ export default { }, "player_steam_match_auth_aggregate_fields": { "avg": [ - 3771 + 3770 ], "count": [ 40, { "columns": [ - 3782, + 3781, "[player_steam_match_auth_select_column!]" ], "distinct": [ @@ -86050,31 +86042,31 @@ export default { } ], "max": [ - 3776 + 3775 ], "min": [ - 3777 + 3776 ], "stddev": [ - 3784 + 3783 ], "stddev_pop": [ - 3785 + 3784 ], "stddev_samp": [ - 3786 + 3785 ], "sum": [ - 3789 + 3788 ], "var_pop": [ - 3792 + 3791 ], "var_samp": [ - 3793 + 3792 ], "variance": [ - 3794 + 3793 ], "__typename": [ 80 @@ -86090,19 +86082,19 @@ export default { }, "player_steam_match_auth_bool_exp": { "_and": [ - 3772 + 3771 ], "_not": [ - 3772 + 3771 ], "_or": [ - 3772 + 3771 ], "auth_code": [ 82 ], "created_at": [ - 4500 + 4499 ], "last_error": [ 82 @@ -86111,16 +86103,16 @@ export default { 82 ], "last_polled_at": [ - 4500 + 4499 ], "player": [ - 3914 + 3913 ], "steam_id": [ - 260 + 259 ], "updated_at": [ - 4500 + 4499 ], "__typename": [ 80 @@ -86129,7 +86121,7 @@ export default { "player_steam_match_auth_constraint": {}, "player_steam_match_auth_inc_input": { "steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -86140,7 +86132,7 @@ export default { 80 ], "created_at": [ - 4499 + 4498 ], "last_error": [ 80 @@ -86149,16 +86141,16 @@ export default { 80 ], "last_polled_at": [ - 4499 + 4498 ], "player": [ - 3921 + 3920 ], "steam_id": [ - 258 + 257 ], "updated_at": [ - 4499 + 4498 ], "__typename": [ 80 @@ -86169,7 +86161,7 @@ export default { 80 ], "created_at": [ - 4499 + 4498 ], "last_error": [ 80 @@ -86178,13 +86170,13 @@ export default { 80 ], "last_polled_at": [ - 4499 + 4498 ], "steam_id": [ - 258 + 257 ], "updated_at": [ - 4499 + 4498 ], "__typename": [ 80 @@ -86195,7 +86187,7 @@ export default { 80 ], "created_at": [ - 4499 + 4498 ], "last_error": [ 80 @@ -86204,13 +86196,13 @@ export default { 80 ], "last_polled_at": [ - 4499 + 4498 ], "steam_id": [ - 258 + 257 ], "updated_at": [ - 4499 + 4498 ], "__typename": [ 80 @@ -86221,7 +86213,7 @@ export default { 40 ], "returning": [ - 3768 + 3767 ], "__typename": [ 80 @@ -86229,13 +86221,13 @@ export default { }, "player_steam_match_auth_on_conflict": { "constraint": [ - 3773 + 3772 ], "update_columns": [ - 3790 + 3789 ], "where": [ - 3772 + 3771 ], "__typename": [ 80 @@ -86243,28 +86235,28 @@ export default { }, "player_steam_match_auth_order_by": { "auth_code": [ - 2952 + 2951 ], "created_at": [ - 2952 + 2951 ], "last_error": [ - 2952 + 2951 ], "last_known_share_code": [ - 2952 + 2951 ], "last_polled_at": [ - 2952 + 2951 ], "player": [ - 3923 + 3922 ], "steam_id": [ - 2952 + 2951 ], "updated_at": [ - 2952 + 2951 ], "__typename": [ 80 @@ -86272,7 +86264,7 @@ export default { }, "player_steam_match_auth_pk_columns_input": { "steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -86284,7 +86276,7 @@ export default { 80 ], "created_at": [ - 4499 + 4498 ], "last_error": [ 80 @@ -86293,13 +86285,13 @@ export default { 80 ], "last_polled_at": [ - 4499 + 4498 ], "steam_id": [ - 258 + 257 ], "updated_at": [ - 4499 + 4498 ], "__typename": [ 80 @@ -86331,10 +86323,10 @@ export default { }, "player_steam_match_auth_stream_cursor_input": { "initial_value": [ - 3788 + 3787 ], "ordering": [ - 314 + 313 ], "__typename": [ 80 @@ -86345,7 +86337,7 @@ export default { 80 ], "created_at": [ - 4499 + 4498 ], "last_error": [ 80 @@ -86354,13 +86346,13 @@ export default { 80 ], "last_polled_at": [ - 4499 + 4498 ], "steam_id": [ - 258 + 257 ], "updated_at": [ - 4499 + 4498 ], "__typename": [ 80 @@ -86368,7 +86360,7 @@ export default { }, "player_steam_match_auth_sum_fields": { "steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -86377,13 +86369,13 @@ export default { "player_steam_match_auth_update_column": {}, "player_steam_match_auth_updates": { "_inc": [ - 3774 + 3773 ], "_set": [ - 3783 + 3782 ], "where": [ - 3772 + 3771 ], "__typename": [ 80 @@ -86415,25 +86407,25 @@ export default { }, "player_unused_utility": { "deleted_at": [ - 4499 + 4498 ], "match": [ - 2767 + 2766 ], "match_id": [ - 4999 + 4998 ], "match_map": [ - 2605 + 2604 ], "match_map_id": [ - 4999 + 4998 ], "player": [ - 3910 + 3909 ], "player_steam_id": [ - 258 + 257 ], "round": [ 40 @@ -86447,10 +86439,10 @@ export default { }, "player_unused_utility_aggregate": { "aggregate": [ - 3799 + 3798 ], "nodes": [ - 3795 + 3794 ], "__typename": [ 80 @@ -86458,7 +86450,7 @@ export default { }, "player_unused_utility_aggregate_bool_exp": { "count": [ - 3798 + 3797 ], "__typename": [ 80 @@ -86466,13 +86458,13 @@ export default { }, "player_unused_utility_aggregate_bool_exp_count": { "arguments": [ - 3816 + 3815 ], "distinct": [ 5 ], "filter": [ - 3804 + 3803 ], "predicate": [ 41 @@ -86483,13 +86475,13 @@ export default { }, "player_unused_utility_aggregate_fields": { "avg": [ - 3802 + 3801 ], "count": [ 40, { "columns": [ - 3816, + 3815, "[player_unused_utility_select_column!]" ], "distinct": [ @@ -86497,6 +86489,44 @@ export default { ] } ], + "max": [ + 3807 + ], + "min": [ + 3809 + ], + "stddev": [ + 3817 + ], + "stddev_pop": [ + 3819 + ], + "stddev_samp": [ + 3821 + ], + "sum": [ + 3825 + ], + "var_pop": [ + 3829 + ], + "var_samp": [ + 3831 + ], + "variance": [ + 3833 + ], + "__typename": [ + 80 + ] + }, + "player_unused_utility_aggregate_order_by": { + "avg": [ + 3802 + ], + "count": [ + 2951 + ], "max": [ 3808 ], @@ -86528,50 +86558,12 @@ export default { 80 ] }, - "player_unused_utility_aggregate_order_by": { - "avg": [ - 3803 - ], - "count": [ - 2952 - ], - "max": [ - 3809 - ], - "min": [ - 3811 - ], - "stddev": [ - 3819 - ], - "stddev_pop": [ - 3821 - ], - "stddev_samp": [ - 3823 - ], - "sum": [ - 3827 - ], - "var_pop": [ - 3831 - ], - "var_samp": [ - 3833 - ], - "variance": [ - 3835 - ], - "__typename": [ - 80 - ] - }, "player_unused_utility_arr_rel_insert_input": { "data": [ - 3807 + 3806 ], "on_conflict": [ - 3813 + 3812 ], "__typename": [ 80 @@ -86593,13 +86585,13 @@ export default { }, "player_unused_utility_avg_order_by": { "player_steam_id": [ - 2952 + 2951 ], "round": [ - 2952 + 2951 ], "unused": [ - 2952 + 2951 ], "__typename": [ 80 @@ -86607,34 +86599,34 @@ export default { }, "player_unused_utility_bool_exp": { "_and": [ - 3804 + 3803 ], "_not": [ - 3804 + 3803 ], "_or": [ - 3804 + 3803 ], "deleted_at": [ - 4500 + 4499 ], "match": [ - 2776 + 2775 ], "match_id": [ - 5001 + 5000 ], "match_map": [ - 2614 + 2613 ], "match_map_id": [ - 5001 + 5000 ], "player": [ - 3914 + 3913 ], "player_steam_id": [ - 260 + 259 ], "round": [ 41 @@ -86649,7 +86641,7 @@ export default { "player_unused_utility_constraint": {}, "player_unused_utility_inc_input": { "player_steam_id": [ - 258 + 257 ], "round": [ 40 @@ -86663,25 +86655,25 @@ export default { }, "player_unused_utility_insert_input": { "deleted_at": [ - 4499 + 4498 ], "match": [ - 2785 + 2784 ], "match_id": [ - 4999 + 4998 ], "match_map": [ - 2623 + 2622 ], "match_map_id": [ - 4999 + 4998 ], "player": [ - 3921 + 3920 ], "player_steam_id": [ - 258 + 257 ], "round": [ 40 @@ -86695,16 +86687,16 @@ export default { }, "player_unused_utility_max_fields": { "deleted_at": [ - 4499 + 4498 ], "match_id": [ - 4999 + 4998 ], "match_map_id": [ - 4999 + 4998 ], "player_steam_id": [ - 258 + 257 ], "round": [ 40 @@ -86718,22 +86710,22 @@ export default { }, "player_unused_utility_max_order_by": { "deleted_at": [ - 2952 + 2951 ], "match_id": [ - 2952 + 2951 ], "match_map_id": [ - 2952 + 2951 ], "player_steam_id": [ - 2952 + 2951 ], "round": [ - 2952 + 2951 ], "unused": [ - 2952 + 2951 ], "__typename": [ 80 @@ -86741,16 +86733,16 @@ export default { }, "player_unused_utility_min_fields": { "deleted_at": [ - 4499 + 4498 ], "match_id": [ - 4999 + 4998 ], "match_map_id": [ - 4999 + 4998 ], "player_steam_id": [ - 258 + 257 ], "round": [ 40 @@ -86764,22 +86756,22 @@ export default { }, "player_unused_utility_min_order_by": { "deleted_at": [ - 2952 + 2951 ], "match_id": [ - 2952 + 2951 ], "match_map_id": [ - 2952 + 2951 ], "player_steam_id": [ - 2952 + 2951 ], "round": [ - 2952 + 2951 ], "unused": [ - 2952 + 2951 ], "__typename": [ 80 @@ -86790,7 +86782,7 @@ export default { 40 ], "returning": [ - 3795 + 3794 ], "__typename": [ 80 @@ -86798,13 +86790,13 @@ export default { }, "player_unused_utility_on_conflict": { "constraint": [ - 3805 + 3804 ], "update_columns": [ - 3828 + 3827 ], "where": [ - 3804 + 3803 ], "__typename": [ 80 @@ -86812,31 +86804,31 @@ export default { }, "player_unused_utility_order_by": { "deleted_at": [ - 2952 + 2951 ], "match": [ - 2787 + 2786 ], "match_id": [ - 2952 + 2951 ], "match_map": [ - 2625 + 2624 ], "match_map_id": [ - 2952 + 2951 ], "player": [ - 3923 + 3922 ], "player_steam_id": [ - 2952 + 2951 ], "round": [ - 2952 + 2951 ], "unused": [ - 2952 + 2951 ], "__typename": [ 80 @@ -86844,10 +86836,10 @@ export default { }, "player_unused_utility_pk_columns_input": { "match_map_id": [ - 4999 + 4998 ], "player_steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -86856,16 +86848,16 @@ export default { "player_unused_utility_select_column": {}, "player_unused_utility_set_input": { "deleted_at": [ - 4499 + 4498 ], "match_id": [ - 4999 + 4998 ], "match_map_id": [ - 4999 + 4998 ], "player_steam_id": [ - 258 + 257 ], "round": [ 40 @@ -86893,13 +86885,13 @@ export default { }, "player_unused_utility_stddev_order_by": { "player_steam_id": [ - 2952 + 2951 ], "round": [ - 2952 + 2951 ], "unused": [ - 2952 + 2951 ], "__typename": [ 80 @@ -86921,13 +86913,13 @@ export default { }, "player_unused_utility_stddev_pop_order_by": { "player_steam_id": [ - 2952 + 2951 ], "round": [ - 2952 + 2951 ], "unused": [ - 2952 + 2951 ], "__typename": [ 80 @@ -86949,13 +86941,13 @@ export default { }, "player_unused_utility_stddev_samp_order_by": { "player_steam_id": [ - 2952 + 2951 ], "round": [ - 2952 + 2951 ], "unused": [ - 2952 + 2951 ], "__typename": [ 80 @@ -86963,10 +86955,10 @@ export default { }, "player_unused_utility_stream_cursor_input": { "initial_value": [ - 3825 + 3824 ], "ordering": [ - 314 + 313 ], "__typename": [ 80 @@ -86974,16 +86966,16 @@ export default { }, "player_unused_utility_stream_cursor_value_input": { "deleted_at": [ - 4499 + 4498 ], "match_id": [ - 4999 + 4998 ], "match_map_id": [ - 4999 + 4998 ], "player_steam_id": [ - 258 + 257 ], "round": [ 40 @@ -86997,7 +86989,7 @@ export default { }, "player_unused_utility_sum_fields": { "player_steam_id": [ - 258 + 257 ], "round": [ 40 @@ -87011,13 +87003,13 @@ export default { }, "player_unused_utility_sum_order_by": { "player_steam_id": [ - 2952 + 2951 ], "round": [ - 2952 + 2951 ], "unused": [ - 2952 + 2951 ], "__typename": [ 80 @@ -87026,13 +87018,13 @@ export default { "player_unused_utility_update_column": {}, "player_unused_utility_updates": { "_inc": [ - 3806 + 3805 ], "_set": [ - 3817 + 3816 ], "where": [ - 3804 + 3803 ], "__typename": [ 80 @@ -87054,13 +87046,13 @@ export default { }, "player_unused_utility_var_pop_order_by": { "player_steam_id": [ - 2952 + 2951 ], "round": [ - 2952 + 2951 ], "unused": [ - 2952 + 2951 ], "__typename": [ 80 @@ -87082,13 +87074,13 @@ export default { }, "player_unused_utility_var_samp_order_by": { "player_steam_id": [ - 2952 + 2951 ], "round": [ - 2952 + 2951 ], "unused": [ - 2952 + 2951 ], "__typename": [ 80 @@ -87110,13 +87102,13 @@ export default { }, "player_unused_utility_variance_order_by": { "player_steam_id": [ - 2952 + 2951 ], "round": [ - 2952 + 2951 ], "unused": [ - 2952 + 2951 ], "__typename": [ 80 @@ -87127,34 +87119,34 @@ export default { 80 ], "attacker_steam_id": [ - 258 + 257 ], "deleted_at": [ - 4499 + 4498 ], "match": [ - 2767 + 2766 ], "match_id": [ - 4999 + 4998 ], "match_map": [ - 2605 + 2604 ], "match_map_id": [ - 4999 + 4998 ], "player": [ - 3910 + 3909 ], "round": [ 40 ], "time": [ - 4499 + 4498 ], "type": [ - 1356 + 1355 ], "__typename": [ 80 @@ -87162,10 +87154,10 @@ export default { }, "player_utility_aggregate": { "aggregate": [ - 3840 + 3839 ], "nodes": [ - 3836 + 3835 ], "__typename": [ 80 @@ -87173,7 +87165,7 @@ export default { }, "player_utility_aggregate_bool_exp": { "count": [ - 3839 + 3838 ], "__typename": [ 80 @@ -87181,13 +87173,13 @@ export default { }, "player_utility_aggregate_bool_exp_count": { "arguments": [ - 3857 + 3856 ], "distinct": [ 5 ], "filter": [ - 3845 + 3844 ], "predicate": [ 41 @@ -87198,13 +87190,13 @@ export default { }, "player_utility_aggregate_fields": { "avg": [ - 3843 + 3842 ], "count": [ 40, { "columns": [ - 3857, + 3856, "[player_utility_select_column!]" ], "distinct": [ @@ -87212,6 +87204,44 @@ export default { ] } ], + "max": [ + 3848 + ], + "min": [ + 3850 + ], + "stddev": [ + 3858 + ], + "stddev_pop": [ + 3860 + ], + "stddev_samp": [ + 3862 + ], + "sum": [ + 3866 + ], + "var_pop": [ + 3870 + ], + "var_samp": [ + 3872 + ], + "variance": [ + 3874 + ], + "__typename": [ + 80 + ] + }, + "player_utility_aggregate_order_by": { + "avg": [ + 3843 + ], + "count": [ + 2951 + ], "max": [ 3849 ], @@ -87243,50 +87273,12 @@ export default { 80 ] }, - "player_utility_aggregate_order_by": { - "avg": [ - 3844 - ], - "count": [ - 2952 - ], - "max": [ - 3850 - ], - "min": [ - 3852 - ], - "stddev": [ - 3860 - ], - "stddev_pop": [ - 3862 - ], - "stddev_samp": [ - 3864 - ], - "sum": [ - 3868 - ], - "var_pop": [ - 3872 - ], - "var_samp": [ - 3874 - ], - "variance": [ - 3876 - ], - "__typename": [ - 80 - ] - }, "player_utility_arr_rel_insert_input": { "data": [ - 3848 + 3847 ], "on_conflict": [ - 3854 + 3853 ], "__typename": [ 80 @@ -87305,10 +87297,10 @@ export default { }, "player_utility_avg_order_by": { "attacker_steam_id": [ - 2952 + 2951 ], "round": [ - 2952 + 2951 ], "__typename": [ 80 @@ -87316,46 +87308,46 @@ export default { }, "player_utility_bool_exp": { "_and": [ - 3845 + 3844 ], "_not": [ - 3845 + 3844 ], "_or": [ - 3845 + 3844 ], "attacker_location_coordinates": [ 82 ], "attacker_steam_id": [ - 260 + 259 ], "deleted_at": [ - 4500 + 4499 ], "match": [ - 2776 + 2775 ], "match_id": [ - 5001 + 5000 ], "match_map": [ - 2614 + 2613 ], "match_map_id": [ - 5001 + 5000 ], "player": [ - 3914 + 3913 ], "round": [ 41 ], "time": [ - 4500 + 4499 ], "type": [ - 1357 + 1356 ], "__typename": [ 80 @@ -87364,7 +87356,7 @@ export default { "player_utility_constraint": {}, "player_utility_inc_input": { "attacker_steam_id": [ - 258 + 257 ], "round": [ 40 @@ -87378,34 +87370,34 @@ export default { 80 ], "attacker_steam_id": [ - 258 + 257 ], "deleted_at": [ - 4499 + 4498 ], "match": [ - 2785 + 2784 ], "match_id": [ - 4999 + 4998 ], "match_map": [ - 2623 + 2622 ], "match_map_id": [ - 4999 + 4998 ], "player": [ - 3921 + 3920 ], "round": [ 40 ], "time": [ - 4499 + 4498 ], "type": [ - 1356 + 1355 ], "__typename": [ 80 @@ -87416,22 +87408,22 @@ export default { 80 ], "attacker_steam_id": [ - 258 + 257 ], "deleted_at": [ - 4499 + 4498 ], "match_id": [ - 4999 + 4998 ], "match_map_id": [ - 4999 + 4998 ], "round": [ 40 ], "time": [ - 4499 + 4498 ], "__typename": [ 80 @@ -87439,25 +87431,25 @@ export default { }, "player_utility_max_order_by": { "attacker_location_coordinates": [ - 2952 + 2951 ], "attacker_steam_id": [ - 2952 + 2951 ], "deleted_at": [ - 2952 + 2951 ], "match_id": [ - 2952 + 2951 ], "match_map_id": [ - 2952 + 2951 ], "round": [ - 2952 + 2951 ], "time": [ - 2952 + 2951 ], "__typename": [ 80 @@ -87468,22 +87460,22 @@ export default { 80 ], "attacker_steam_id": [ - 258 + 257 ], "deleted_at": [ - 4499 + 4498 ], "match_id": [ - 4999 + 4998 ], "match_map_id": [ - 4999 + 4998 ], "round": [ 40 ], "time": [ - 4499 + 4498 ], "__typename": [ 80 @@ -87491,25 +87483,25 @@ export default { }, "player_utility_min_order_by": { "attacker_location_coordinates": [ - 2952 + 2951 ], "attacker_steam_id": [ - 2952 + 2951 ], "deleted_at": [ - 2952 + 2951 ], "match_id": [ - 2952 + 2951 ], "match_map_id": [ - 2952 + 2951 ], "round": [ - 2952 + 2951 ], "time": [ - 2952 + 2951 ], "__typename": [ 80 @@ -87520,7 +87512,7 @@ export default { 40 ], "returning": [ - 3836 + 3835 ], "__typename": [ 80 @@ -87528,13 +87520,13 @@ export default { }, "player_utility_on_conflict": { "constraint": [ - 3846 + 3845 ], "update_columns": [ - 3869 + 3868 ], "where": [ - 3845 + 3844 ], "__typename": [ 80 @@ -87542,37 +87534,37 @@ export default { }, "player_utility_order_by": { "attacker_location_coordinates": [ - 2952 + 2951 ], "attacker_steam_id": [ - 2952 + 2951 ], "deleted_at": [ - 2952 + 2951 ], "match": [ - 2787 + 2786 ], "match_id": [ - 2952 + 2951 ], "match_map": [ - 2625 + 2624 ], "match_map_id": [ - 2952 + 2951 ], "player": [ - 3923 + 3922 ], "round": [ - 2952 + 2951 ], "time": [ - 2952 + 2951 ], "type": [ - 2952 + 2951 ], "__typename": [ 80 @@ -87580,13 +87572,13 @@ export default { }, "player_utility_pk_columns_input": { "attacker_steam_id": [ - 258 + 257 ], "match_map_id": [ - 4999 + 4998 ], "time": [ - 4499 + 4498 ], "__typename": [ 80 @@ -87598,25 +87590,25 @@ export default { 80 ], "attacker_steam_id": [ - 258 + 257 ], "deleted_at": [ - 4499 + 4498 ], "match_id": [ - 4999 + 4998 ], "match_map_id": [ - 4999 + 4998 ], "round": [ 40 ], "time": [ - 4499 + 4498 ], "type": [ - 1356 + 1355 ], "__typename": [ 80 @@ -87635,10 +87627,10 @@ export default { }, "player_utility_stddev_order_by": { "attacker_steam_id": [ - 2952 + 2951 ], "round": [ - 2952 + 2951 ], "__typename": [ 80 @@ -87657,10 +87649,10 @@ export default { }, "player_utility_stddev_pop_order_by": { "attacker_steam_id": [ - 2952 + 2951 ], "round": [ - 2952 + 2951 ], "__typename": [ 80 @@ -87679,10 +87671,10 @@ export default { }, "player_utility_stddev_samp_order_by": { "attacker_steam_id": [ - 2952 + 2951 ], "round": [ - 2952 + 2951 ], "__typename": [ 80 @@ -87690,10 +87682,10 @@ export default { }, "player_utility_stream_cursor_input": { "initial_value": [ - 3866 + 3865 ], "ordering": [ - 314 + 313 ], "__typename": [ 80 @@ -87704,25 +87696,25 @@ export default { 80 ], "attacker_steam_id": [ - 258 + 257 ], "deleted_at": [ - 4499 + 4498 ], "match_id": [ - 4999 + 4998 ], "match_map_id": [ - 4999 + 4998 ], "round": [ 40 ], "time": [ - 4499 + 4498 ], "type": [ - 1356 + 1355 ], "__typename": [ 80 @@ -87730,7 +87722,7 @@ export default { }, "player_utility_sum_fields": { "attacker_steam_id": [ - 258 + 257 ], "round": [ 40 @@ -87741,10 +87733,10 @@ export default { }, "player_utility_sum_order_by": { "attacker_steam_id": [ - 2952 + 2951 ], "round": [ - 2952 + 2951 ], "__typename": [ 80 @@ -87753,13 +87745,13 @@ export default { "player_utility_update_column": {}, "player_utility_updates": { "_inc": [ - 3847 + 3846 ], "_set": [ - 3858 + 3857 ], "where": [ - 3845 + 3844 ], "__typename": [ 80 @@ -87778,10 +87770,10 @@ export default { }, "player_utility_var_pop_order_by": { "attacker_steam_id": [ - 2952 + 2951 ], "round": [ - 2952 + 2951 ], "__typename": [ 80 @@ -87800,10 +87792,10 @@ export default { }, "player_utility_var_samp_order_by": { "attacker_steam_id": [ - 2952 + 2951 ], "round": [ - 2952 + 2951 ], "__typename": [ 80 @@ -87822,10 +87814,10 @@ export default { }, "player_utility_variance_order_by": { "attacker_steam_id": [ - 2952 + 2951 ], "round": [ - 2952 + 2951 ], "__typename": [ 80 @@ -87845,7 +87837,7 @@ export default { 40 ], "match_id": [ - 4999 + 4998 ], "shots": [ 40 @@ -87854,7 +87846,7 @@ export default { 40 ], "steam_id": [ - 258 + 257 ], "weapon_class": [ 80 @@ -87865,10 +87857,10 @@ export default { }, "player_weapon_stats_v_aggregate": { "aggregate": [ - 3881 + 3880 ], "nodes": [ - 3877 + 3876 ], "__typename": [ 80 @@ -87876,7 +87868,7 @@ export default { }, "player_weapon_stats_v_aggregate_bool_exp": { "count": [ - 3880 + 3879 ], "__typename": [ 80 @@ -87884,13 +87876,13 @@ export default { }, "player_weapon_stats_v_aggregate_bool_exp_count": { "arguments": [ - 3893 + 3892 ], "distinct": [ 5 ], "filter": [ - 3886 + 3885 ], "predicate": [ 41 @@ -87901,13 +87893,13 @@ export default { }, "player_weapon_stats_v_aggregate_fields": { "avg": [ - 3884 + 3883 ], "count": [ 40, { "columns": [ - 3893, + 3892, "[player_weapon_stats_v_select_column!]" ], "distinct": [ @@ -87915,6 +87907,44 @@ export default { ] } ], + "max": [ + 3887 + ], + "min": [ + 3889 + ], + "stddev": [ + 3893 + ], + "stddev_pop": [ + 3895 + ], + "stddev_samp": [ + 3897 + ], + "sum": [ + 3901 + ], + "var_pop": [ + 3903 + ], + "var_samp": [ + 3905 + ], + "variance": [ + 3907 + ], + "__typename": [ + 80 + ] + }, + "player_weapon_stats_v_aggregate_order_by": { + "avg": [ + 3884 + ], + "count": [ + 2951 + ], "max": [ 3888 ], @@ -87946,47 +87976,9 @@ export default { 80 ] }, - "player_weapon_stats_v_aggregate_order_by": { - "avg": [ - 3885 - ], - "count": [ - 2952 - ], - "max": [ - 3889 - ], - "min": [ - 3891 - ], - "stddev": [ - 3895 - ], - "stddev_pop": [ - 3897 - ], - "stddev_samp": [ - 3899 - ], - "sum": [ - 3903 - ], - "var_pop": [ - 3905 - ], - "var_samp": [ - 3907 - ], - "variance": [ - 3909 - ], - "__typename": [ - 80 - ] - }, "player_weapon_stats_v_arr_rel_insert_input": { "data": [ - 3887 + 3886 ], "__typename": [ 80 @@ -88020,25 +88012,25 @@ export default { }, "player_weapon_stats_v_avg_order_by": { "first_bullet_hits": [ - 2952 + 2951 ], "first_bullet_shots": [ - 2952 + 2951 ], "hits": [ - 2952 + 2951 ], "hits_spotted": [ - 2952 + 2951 ], "shots": [ - 2952 + 2951 ], "shots_spotted": [ - 2952 + 2951 ], "steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -88046,13 +88038,13 @@ export default { }, "player_weapon_stats_v_bool_exp": { "_and": [ - 3886 + 3885 ], "_not": [ - 3886 + 3885 ], "_or": [ - 3886 + 3885 ], "first_bullet_hits": [ 41 @@ -88067,7 +88059,7 @@ export default { 41 ], "match_id": [ - 5001 + 5000 ], "shots": [ 41 @@ -88076,7 +88068,7 @@ export default { 41 ], "steam_id": [ - 260 + 259 ], "weapon_class": [ 82 @@ -88099,7 +88091,7 @@ export default { 40 ], "match_id": [ - 4999 + 4998 ], "shots": [ 40 @@ -88108,7 +88100,7 @@ export default { 40 ], "steam_id": [ - 258 + 257 ], "weapon_class": [ 80 @@ -88131,7 +88123,7 @@ export default { 40 ], "match_id": [ - 4999 + 4998 ], "shots": [ 40 @@ -88140,7 +88132,7 @@ export default { 40 ], "steam_id": [ - 258 + 257 ], "weapon_class": [ 80 @@ -88151,31 +88143,31 @@ export default { }, "player_weapon_stats_v_max_order_by": { "first_bullet_hits": [ - 2952 + 2951 ], "first_bullet_shots": [ - 2952 + 2951 ], "hits": [ - 2952 + 2951 ], "hits_spotted": [ - 2952 + 2951 ], "match_id": [ - 2952 + 2951 ], "shots": [ - 2952 + 2951 ], "shots_spotted": [ - 2952 + 2951 ], "steam_id": [ - 2952 + 2951 ], "weapon_class": [ - 2952 + 2951 ], "__typename": [ 80 @@ -88195,7 +88187,7 @@ export default { 40 ], "match_id": [ - 4999 + 4998 ], "shots": [ 40 @@ -88204,7 +88196,7 @@ export default { 40 ], "steam_id": [ - 258 + 257 ], "weapon_class": [ 80 @@ -88215,31 +88207,31 @@ export default { }, "player_weapon_stats_v_min_order_by": { "first_bullet_hits": [ - 2952 + 2951 ], "first_bullet_shots": [ - 2952 + 2951 ], "hits": [ - 2952 + 2951 ], "hits_spotted": [ - 2952 + 2951 ], "match_id": [ - 2952 + 2951 ], "shots": [ - 2952 + 2951 ], "shots_spotted": [ - 2952 + 2951 ], "steam_id": [ - 2952 + 2951 ], "weapon_class": [ - 2952 + 2951 ], "__typename": [ 80 @@ -88247,31 +88239,31 @@ export default { }, "player_weapon_stats_v_order_by": { "first_bullet_hits": [ - 2952 + 2951 ], "first_bullet_shots": [ - 2952 + 2951 ], "hits": [ - 2952 + 2951 ], "hits_spotted": [ - 2952 + 2951 ], "match_id": [ - 2952 + 2951 ], "shots": [ - 2952 + 2951 ], "shots_spotted": [ - 2952 + 2951 ], "steam_id": [ - 2952 + 2951 ], "weapon_class": [ - 2952 + 2951 ], "__typename": [ 80 @@ -88306,25 +88298,25 @@ export default { }, "player_weapon_stats_v_stddev_order_by": { "first_bullet_hits": [ - 2952 + 2951 ], "first_bullet_shots": [ - 2952 + 2951 ], "hits": [ - 2952 + 2951 ], "hits_spotted": [ - 2952 + 2951 ], "shots": [ - 2952 + 2951 ], "shots_spotted": [ - 2952 + 2951 ], "steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -88358,25 +88350,25 @@ export default { }, "player_weapon_stats_v_stddev_pop_order_by": { "first_bullet_hits": [ - 2952 + 2951 ], "first_bullet_shots": [ - 2952 + 2951 ], "hits": [ - 2952 + 2951 ], "hits_spotted": [ - 2952 + 2951 ], "shots": [ - 2952 + 2951 ], "shots_spotted": [ - 2952 + 2951 ], "steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -88410,25 +88402,25 @@ export default { }, "player_weapon_stats_v_stddev_samp_order_by": { "first_bullet_hits": [ - 2952 + 2951 ], "first_bullet_shots": [ - 2952 + 2951 ], "hits": [ - 2952 + 2951 ], "hits_spotted": [ - 2952 + 2951 ], "shots": [ - 2952 + 2951 ], "shots_spotted": [ - 2952 + 2951 ], "steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -88436,10 +88428,10 @@ export default { }, "player_weapon_stats_v_stream_cursor_input": { "initial_value": [ - 3901 + 3900 ], "ordering": [ - 314 + 313 ], "__typename": [ 80 @@ -88459,7 +88451,7 @@ export default { 40 ], "match_id": [ - 4999 + 4998 ], "shots": [ 40 @@ -88468,7 +88460,7 @@ export default { 40 ], "steam_id": [ - 258 + 257 ], "weapon_class": [ 80 @@ -88497,7 +88489,7 @@ export default { 40 ], "steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -88505,25 +88497,25 @@ export default { }, "player_weapon_stats_v_sum_order_by": { "first_bullet_hits": [ - 2952 + 2951 ], "first_bullet_shots": [ - 2952 + 2951 ], "hits": [ - 2952 + 2951 ], "hits_spotted": [ - 2952 + 2951 ], "shots": [ - 2952 + 2951 ], "shots_spotted": [ - 2952 + 2951 ], "steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -88557,25 +88549,25 @@ export default { }, "player_weapon_stats_v_var_pop_order_by": { "first_bullet_hits": [ - 2952 + 2951 ], "first_bullet_shots": [ - 2952 + 2951 ], "hits": [ - 2952 + 2951 ], "hits_spotted": [ - 2952 + 2951 ], "shots": [ - 2952 + 2951 ], "shots_spotted": [ - 2952 + 2951 ], "steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -88609,25 +88601,25 @@ export default { }, "player_weapon_stats_v_var_samp_order_by": { "first_bullet_hits": [ - 2952 + 2951 ], "first_bullet_shots": [ - 2952 + 2951 ], "hits": [ - 2952 + 2951 ], "hits_spotted": [ - 2952 + 2951 ], "shots": [ - 2952 + 2951 ], "shots_spotted": [ - 2952 + 2951 ], "steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -88661,25 +88653,25 @@ export default { }, "player_weapon_stats_v_variance_order_by": { "first_bullet_hits": [ - 2952 + 2951 ], "first_bullet_shots": [ - 2952 + 2951 ], "hits": [ - 2952 + 2951 ], "hits_spotted": [ - 2952 + 2951 ], "shots": [ - 2952 + 2951 ], "shots_spotted": [ - 2952 + 2951 ], "steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -88687,10 +88679,10 @@ export default { }, "players": { "abandoned_matches": [ - 120, + 119, { "distinct_on": [ - 141, + 140, "[abandoned_matches_select_column!]" ], "limit": [ @@ -88700,19 +88692,19 @@ export default { 40 ], "order_by": [ - 139, + 138, "[abandoned_matches_order_by!]" ], "where": [ - 129 + 128 ] } ], "abandoned_matches_aggregate": [ - 121, + 120, { "distinct_on": [ - 141, + 140, "[abandoned_matches_select_column!]" ], "limit": [ @@ -88722,19 +88714,19 @@ export default { 40 ], "order_by": [ - 139, + 138, "[abandoned_matches_order_by!]" ], "where": [ - 129 + 128 ] } ], "aim_weapon_stats": [ - 3049, + 3048, { "distinct_on": [ - 3070, + 3069, "[player_aim_weapon_stats_select_column!]" ], "limit": [ @@ -88744,19 +88736,19 @@ export default { 40 ], "order_by": [ - 3068, + 3067, "[player_aim_weapon_stats_order_by!]" ], "where": [ - 3058 + 3057 ] } ], "aim_weapon_stats_aggregate": [ - 3050, + 3049, { "distinct_on": [ - 3070, + 3069, "[player_aim_weapon_stats_select_column!]" ], "limit": [ @@ -88766,19 +88758,19 @@ export default { 40 ], "order_by": [ - 3068, + 3067, "[player_aim_weapon_stats_order_by!]" ], "where": [ - 3058 + 3057 ] } ], "assists": [ - 3090, + 3089, { "distinct_on": [ - 3113, + 3112, "[player_assists_select_column!]" ], "limit": [ @@ -88788,19 +88780,19 @@ export default { 40 ], "order_by": [ - 3111, + 3110, "[player_assists_order_by!]" ], "where": [ - 3101 + 3100 ] } ], "assists_aggregate": [ - 3091, + 3090, { "distinct_on": [ - 3113, + 3112, "[player_assists_select_column!]" ], "limit": [ @@ -88810,19 +88802,19 @@ export default { 40 ], "order_by": [ - 3111, + 3110, "[player_assists_order_by!]" ], "where": [ - 3101 + 3100 ] } ], "assited_by_players": [ - 3090, + 3089, { "distinct_on": [ - 3113, + 3112, "[player_assists_select_column!]" ], "limit": [ @@ -88832,19 +88824,19 @@ export default { 40 ], "order_by": [ - 3111, + 3110, "[player_assists_order_by!]" ], "where": [ - 3101 + 3100 ] } ], "assited_by_players_aggregate": [ - 3091, + 3090, { "distinct_on": [ - 3113, + 3112, "[player_assists_select_column!]" ], "limit": [ @@ -88854,11 +88846,11 @@ export default { 40 ], "order_by": [ - 3111, + 3110, "[player_assists_order_by!]" ], "where": [ - 3101 + 3100 ] } ], @@ -88866,10 +88858,10 @@ export default { 80 ], "awards": [ - 189, + 188, { "distinct_on": [ - 210, + 209, "[award_recipients_select_column!]" ], "limit": [ @@ -88879,19 +88871,19 @@ export default { 40 ], "order_by": [ - 208, + 207, "[award_recipients_order_by!]" ], "where": [ - 198 + 197 ] } ], "awards_aggregate": [ - 190, + 189, { "distinct_on": [ - 210, + 209, "[award_recipients_select_column!]" ], "limit": [ @@ -88901,19 +88893,19 @@ export default { 40 ], "order_by": [ - 208, + 207, "[award_recipients_order_by!]" ], "where": [ - 198 + 197 ] } ], "coach_lineups": [ - 2447, + 2446, { "distinct_on": [ - 2469, + 2468, "[match_lineups_select_column!]" ], "limit": [ @@ -88923,19 +88915,19 @@ export default { 40 ], "order_by": [ - 2467, + 2466, "[match_lineups_order_by!]" ], "where": [ - 2456 + 2455 ] } ], "coach_lineups_aggregate": [ - 2448, + 2447, { "distinct_on": [ - 2469, + 2468, "[match_lineups_select_column!]" ], "limit": [ @@ -88945,11 +88937,11 @@ export default { 40 ], "order_by": [ - 2467, + 2466, "[match_lineups_order_by!]" ], "where": [ - 2456 + 2455 ] } ], @@ -88957,19 +88949,19 @@ export default { 80 ], "created_at": [ - 4499 + 4498 ], "current_lobby_id": [ - 4999 + 4998 ], "custom_avatar_url": [ 80 ], "damage_dealt": [ - 3153, + 3152, { "distinct_on": [ - 3174, + 3173, "[player_damages_select_column!]" ], "limit": [ @@ -88979,19 +88971,19 @@ export default { 40 ], "order_by": [ - 3172, + 3171, "[player_damages_order_by!]" ], "where": [ - 3162 + 3161 ] } ], "damage_dealt_aggregate": [ - 3154, + 3153, { "distinct_on": [ - 3174, + 3173, "[player_damages_select_column!]" ], "limit": [ @@ -89001,19 +88993,19 @@ export default { 40 ], "order_by": [ - 3172, + 3171, "[player_damages_order_by!]" ], "where": [ - 3162 + 3161 ] } ], "damage_taken": [ - 3153, + 3152, { "distinct_on": [ - 3174, + 3173, "[player_damages_select_column!]" ], "limit": [ @@ -89023,19 +89015,19 @@ export default { 40 ], "order_by": [ - 3172, + 3171, "[player_damages_order_by!]" ], "where": [ - 3162 + 3161 ] } ], "damage_taken_aggregate": [ - 3154, + 3153, { "distinct_on": [ - 3174, + 3173, "[player_damages_select_column!]" ], "limit": [ @@ -89045,11 +89037,11 @@ export default { 40 ], "order_by": [ - 3172, + 3171, "[player_damages_order_by!]" ], "where": [ - 3162 + 3161 ] } ], @@ -89057,10 +89049,10 @@ export default { 40 ], "deaths": [ - 3307, + 3306, { "distinct_on": [ - 3371, + 3370, "[player_kills_select_column!]" ], "limit": [ @@ -89070,19 +89062,19 @@ export default { 40 ], "order_by": [ - 3369, + 3368, "[player_kills_order_by!]" ], "where": [ - 3318 + 3317 ] } ], "deaths_aggregate": [ - 3308, + 3307, { "distinct_on": [ - 3371, + 3370, "[player_kills_select_column!]" ], "limit": [ @@ -89092,11 +89084,11 @@ export default { 40 ], "order_by": [ - 3369, + 3368, "[player_kills_order_by!]" ], "where": [ - 3318 + 3317 ] } ], @@ -89104,10 +89096,10 @@ export default { 80 ], "draft_game_players": [ - 419, + 418, { "distinct_on": [ - 442, + 441, "[draft_game_players_select_column!]" ], "limit": [ @@ -89117,19 +89109,19 @@ export default { 40 ], "order_by": [ - 440, + 439, "[draft_game_players_order_by!]" ], "where": [ - 430 + 429 ] } ], "draft_game_players_aggregate": [ - 420, + 419, { "distinct_on": [ - 442, + 441, "[draft_game_players_select_column!]" ], "limit": [ @@ -89139,16 +89131,16 @@ export default { 40 ], "order_by": [ - 440, + 439, "[draft_game_players_order_by!]" ], "where": [ - 430 + 429 ] } ], "elo": [ - 1823, + 1822, { "path": [ 80 @@ -89156,10 +89148,10 @@ export default { } ], "elo_history": [ - 5376, + 5375, { "distinct_on": [ - 5402, + 5401, "[v_player_elo_select_column!]" ], "limit": [ @@ -89169,19 +89161,19 @@ export default { 40 ], "order_by": [ - 5401, + 5400, "[v_player_elo_order_by!]" ], "where": [ - 5395 + 5394 ] } ], "elo_history_aggregate": [ - 5377, + 5376, { "distinct_on": [ - 5402, + 5401, "[v_player_elo_select_column!]" ], "limit": [ @@ -89191,11 +89183,11 @@ export default { 40 ], "order_by": [ - 5401, + 5400, "[v_player_elo_order_by!]" ], "where": [ - 5395 + 5394 ] } ], @@ -89209,10 +89201,10 @@ export default { 80 ], "faceit_rank_history": [ - 3221, + 3220, { "distinct_on": [ - 3242, + 3241, "[player_faceit_rank_history_select_column!]" ], "limit": [ @@ -89222,19 +89214,19 @@ export default { 40 ], "order_by": [ - 3240, + 3239, "[player_faceit_rank_history_order_by!]" ], "where": [ - 3230 + 3229 ] } ], "faceit_rank_history_aggregate": [ - 3222, + 3221, { "distinct_on": [ - 3242, + 3241, "[player_faceit_rank_history_select_column!]" ], "limit": [ @@ -89244,11 +89236,11 @@ export default { 40 ], "order_by": [ - 3240, + 3239, "[player_faceit_rank_history_order_by!]" ], "where": [ - 3230 + 3229 ] } ], @@ -89256,16 +89248,16 @@ export default { 40 ], "faceit_updated_at": [ - 4499 + 4498 ], "faceit_url": [ 80 ], "flashed_by_players": [ - 3262, + 3261, { "distinct_on": [ - 3285, + 3284, "[player_flashes_select_column!]" ], "limit": [ @@ -89275,19 +89267,19 @@ export default { 40 ], "order_by": [ - 3283, + 3282, "[player_flashes_order_by!]" ], "where": [ - 3273 + 3272 ] } ], "flashed_by_players_aggregate": [ - 3263, + 3262, { "distinct_on": [ - 3285, + 3284, "[player_flashes_select_column!]" ], "limit": [ @@ -89297,19 +89289,19 @@ export default { 40 ], "order_by": [ - 3283, + 3282, "[player_flashes_order_by!]" ], "where": [ - 3273 + 3272 ] } ], "flashed_players": [ - 3262, + 3261, { "distinct_on": [ - 3285, + 3284, "[player_flashes_select_column!]" ], "limit": [ @@ -89319,19 +89311,19 @@ export default { 40 ], "order_by": [ - 3283, + 3282, "[player_flashes_order_by!]" ], "where": [ - 3273 + 3272 ] } ], "flashed_players_aggregate": [ - 3263, + 3262, { "distinct_on": [ - 3285, + 3284, "[player_flashes_select_column!]" ], "limit": [ @@ -89341,19 +89333,19 @@ export default { 40 ], "order_by": [ - 3283, + 3282, "[player_flashes_order_by!]" ], "where": [ - 3273 + 3272 ] } ], "friends": [ - 2827, + 2826, { "distinct_on": [ - 2852, + 2851, "[my_friends_select_column!]" ], "limit": [ @@ -89363,19 +89355,19 @@ export default { 40 ], "order_by": [ - 2850, + 2849, "[my_friends_order_by!]" ], "where": [ - 2839 + 2838 ] } ], "friends_aggregate": [ - 2828, + 2827, { "distinct_on": [ - 2852, + 2851, "[my_friends_select_column!]" ], "limit": [ @@ -89385,11 +89377,11 @@ export default { 40 ], "order_by": [ - 2850, + 2849, "[my_friends_order_by!]" ], "where": [ - 2839 + 2838 ] } ], @@ -89397,10 +89389,10 @@ export default { 40 ], "invited_players": [ - 4169, + 4168, { "distinct_on": [ - 4190, + 4189, "[team_invites_select_column!]" ], "limit": [ @@ -89410,19 +89402,19 @@ export default { 40 ], "order_by": [ - 4188, + 4187, "[team_invites_order_by!]" ], "where": [ - 4178 + 4177 ] } ], "invited_players_aggregate": [ - 4170, + 4169, { "distinct_on": [ - 4190, + 4189, "[team_invites_select_column!]" ], "limit": [ @@ -89432,11 +89424,11 @@ export default { 40 ], "order_by": [ - 4188, + 4187, "[team_invites_order_by!]" ], "where": [ - 4178 + 4177 ] } ], @@ -89459,10 +89451,10 @@ export default { 5 ], "kills": [ - 3307, + 3306, { "distinct_on": [ - 3371, + 3370, "[player_kills_select_column!]" ], "limit": [ @@ -89472,19 +89464,19 @@ export default { 40 ], "order_by": [ - 3369, + 3368, "[player_kills_order_by!]" ], "where": [ - 3318 + 3317 ] } ], "kills_aggregate": [ - 3308, + 3307, { "distinct_on": [ - 3371, + 3370, "[player_kills_select_column!]" ], "limit": [ @@ -89494,19 +89486,19 @@ export default { 40 ], "order_by": [ - 3369, + 3368, "[player_kills_order_by!]" ], "where": [ - 3318 + 3317 ] } ], "kills_by_weapons": [ - 3319, + 3318, { "distinct_on": [ - 3340, + 3339, "[player_kills_by_weapon_select_column!]" ], "limit": [ @@ -89516,19 +89508,19 @@ export default { 40 ], "order_by": [ - 3338, + 3337, "[player_kills_by_weapon_order_by!]" ], "where": [ - 3328 + 3327 ] } ], "kills_by_weapons_aggregate": [ - 3320, + 3319, { "distinct_on": [ - 3340, + 3339, "[player_kills_by_weapon_select_column!]" ], "limit": [ @@ -89538,11 +89530,11 @@ export default { 40 ], "order_by": [ - 3338, + 3337, "[player_kills_by_weapon_order_by!]" ], "where": [ - 3328 + 3327 ] } ], @@ -89550,16 +89542,16 @@ export default { 80 ], "last_read_news_at": [ - 4499 + 4498 ], "last_sign_in_at": [ - 4499 + 4498 ], "lobby_players": [ - 2221, + 2220, { "distinct_on": [ - 2244, + 2243, "[lobby_players_select_column!]" ], "limit": [ @@ -89569,19 +89561,19 @@ export default { 40 ], "order_by": [ - 2242, + 2241, "[lobby_players_order_by!]" ], "where": [ - 2232 + 2231 ] } ], "lobby_players_aggregate": [ - 2222, + 2221, { "distinct_on": [ - 2244, + 2243, "[lobby_players_select_column!]" ], "limit": [ @@ -89591,11 +89583,11 @@ export default { 40 ], "order_by": [ - 2242, + 2241, "[lobby_players_order_by!]" ], "where": [ - 2232 + 2231 ] } ], @@ -89612,10 +89604,10 @@ export default { 40 ], "match_map_hltv": [ - 5481, + 5480, { "distinct_on": [ - 5499, + 5498, "[v_player_match_map_hltv_select_column!]" ], "limit": [ @@ -89625,19 +89617,19 @@ export default { 40 ], "order_by": [ - 5498, + 5497, "[v_player_match_map_hltv_order_by!]" ], "where": [ - 5490 + 5489 ] } ], "match_map_hltv_aggregate": [ - 5482, + 5481, { "distinct_on": [ - 5499, + 5498, "[v_player_match_map_hltv_select_column!]" ], "limit": [ @@ -89647,19 +89639,19 @@ export default { 40 ], "order_by": [ - 5498, + 5497, "[v_player_match_map_hltv_order_by!]" ], "where": [ - 5490 + 5489 ] } ], "match_map_stats": [ - 3416, + 3415, { "distinct_on": [ - 3437, + 3436, "[player_match_map_stats_select_column!]" ], "limit": [ @@ -89669,19 +89661,19 @@ export default { 40 ], "order_by": [ - 3435, + 3434, "[player_match_map_stats_order_by!]" ], "where": [ - 3425 + 3424 ] } ], "match_map_stats_aggregate": [ - 3417, + 3416, { "distinct_on": [ - 3437, + 3436, "[player_match_map_stats_select_column!]" ], "limit": [ @@ -89691,19 +89683,19 @@ export default { 40 ], "order_by": [ - 3435, + 3434, "[player_match_map_stats_order_by!]" ], "where": [ - 3425 + 3424 ] } ], "match_stats": [ - 3475, + 3474, { "distinct_on": [ - 3491, + 3490, "[player_match_stats_v_select_column!]" ], "limit": [ @@ -89713,19 +89705,19 @@ export default { 40 ], "order_by": [ - 3490, + 3489, "[player_match_stats_v_order_by!]" ], "where": [ - 3484 + 3483 ] } ], "match_stats_aggregate": [ - 3476, + 3475, { "distinct_on": [ - 3491, + 3490, "[player_match_stats_v_select_column!]" ], "limit": [ @@ -89735,19 +89727,19 @@ export default { 40 ], "order_by": [ - 3490, + 3489, "[player_match_stats_v_order_by!]" ], "where": [ - 3484 + 3483 ] } ], "matches": [ - 2767, + 2766, { "distinct_on": [ - 2789, + 2788, "[matches_select_column!]" ], "limit": [ @@ -89757,22 +89749,22 @@ export default { 40 ], "order_by": [ - 2787, + 2786, "[matches_order_by!]" ], "where": [ - 2776 + 2775 ] } ], "matchmaking_cooldown": [ - 4499 + 4498 ], "multi_kills": [ - 5572, + 5571, { "distinct_on": [ - 5588, + 5587, "[v_player_multi_kills_select_column!]" ], "limit": [ @@ -89782,19 +89774,19 @@ export default { 40 ], "order_by": [ - 5587, + 5586, "[v_player_multi_kills_order_by!]" ], "where": [ - 5581 + 5580 ] } ], "multi_kills_aggregate": [ - 5573, + 5572, { "distinct_on": [ - 5588, + 5587, "[v_player_multi_kills_select_column!]" ], "limit": [ @@ -89804,11 +89796,11 @@ export default { 40 ], "order_by": [ - 5587, + 5586, "[v_player_multi_kills_order_by!]" ], "where": [ - 5581 + 5580 ] } ], @@ -89819,10 +89811,10 @@ export default { 5 ], "notifications": [ - 2900, + 2899, { "distinct_on": [ - 2928, + 2927, "[notifications_select_column!]" ], "limit": [ @@ -89832,19 +89824,19 @@ export default { 40 ], "order_by": [ - 2925, + 2924, "[notifications_order_by!]" ], "where": [ - 2912 + 2911 ] } ], "notifications_aggregate": [ - 2901, + 2900, { "distinct_on": [ - 2928, + 2927, "[notifications_select_column!]" ], "limit": [ @@ -89854,19 +89846,19 @@ export default { 40 ], "order_by": [ - 2925, + 2924, "[notifications_order_by!]" ], "where": [ - 2912 + 2911 ] } ], "objectives": [ - 3508, + 3507, { "distinct_on": [ - 3529, + 3528, "[player_objectives_select_column!]" ], "limit": [ @@ -89876,19 +89868,19 @@ export default { 40 ], "order_by": [ - 3527, + 3526, "[player_objectives_order_by!]" ], "where": [ - 3517 + 3516 ] } ], "objectives_aggregate": [ - 3509, + 3508, { "distinct_on": [ - 3529, + 3528, "[player_objectives_select_column!]" ], "limit": [ @@ -89898,19 +89890,19 @@ export default { 40 ], "order_by": [ - 3527, + 3526, "[player_objectives_order_by!]" ], "where": [ - 3517 + 3516 ] } ], "owned_teams": [ - 4452, + 4451, { "distinct_on": [ - 4476, + 4475, "[teams_select_column!]" ], "limit": [ @@ -89920,19 +89912,19 @@ export default { 40 ], "order_by": [ - 4474, + 4473, "[teams_order_by!]" ], "where": [ - 4463 + 4462 ] } ], "owned_teams_aggregate": [ - 4453, + 4452, { "distinct_on": [ - 4476, + 4475, "[teams_select_column!]" ], "limit": [ @@ -89942,16 +89934,16 @@ export default { 40 ], "order_by": [ - 4474, + 4473, "[teams_order_by!]" ], "where": [ - 4463 + 4462 ] } ], "peak_elo": [ - 1823, + 1822, { "path": [ 80 @@ -89959,10 +89951,10 @@ export default { } ], "pending_match_imports": [ - 2953, + 2952, { "distinct_on": [ - 2974, + 2973, "[pending_match_import_players_select_column!]" ], "limit": [ @@ -89972,19 +89964,19 @@ export default { 40 ], "order_by": [ - 2972, + 2971, "[pending_match_import_players_order_by!]" ], "where": [ - 2962 + 2961 ] } ], "pending_match_imports_aggregate": [ - 2954, + 2953, { "distinct_on": [ - 2974, + 2973, "[pending_match_import_players_select_column!]" ], "limit": [ @@ -89994,19 +89986,19 @@ export default { 40 ], "order_by": [ - 2972, + 2971, "[pending_match_import_players_order_by!]" ], "where": [ - 2962 + 2961 ] } ], "player_lineup": [ - 2402, + 2401, { "distinct_on": [ - 2425, + 2424, "[match_lineup_players_select_column!]" ], "limit": [ @@ -90016,19 +90008,19 @@ export default { 40 ], "order_by": [ - 2423, + 2422, "[match_lineup_players_order_by!]" ], "where": [ - 2413 + 2412 ] } ], "player_lineup_aggregate": [ - 2403, + 2402, { "distinct_on": [ - 2425, + 2424, "[match_lineup_players_select_column!]" ], "limit": [ @@ -90038,19 +90030,19 @@ export default { 40 ], "order_by": [ - 2423, + 2422, "[match_lineup_players_order_by!]" ], "where": [ - 2413 + 2412 ] } ], "player_unused_utilities": [ - 3795, + 3794, { "distinct_on": [ - 3816, + 3815, "[player_unused_utility_select_column!]" ], "limit": [ @@ -90060,19 +90052,19 @@ export default { 40 ], "order_by": [ - 3814, + 3813, "[player_unused_utility_order_by!]" ], "where": [ - 3804 + 3803 ] } ], "player_unused_utilities_aggregate": [ - 3796, + 3795, { "distinct_on": [ - 3816, + 3815, "[player_unused_utility_select_column!]" ], "limit": [ @@ -90082,11 +90074,11 @@ export default { 40 ], "order_by": [ - 3814, + 3813, "[player_unused_utility_order_by!]" ], "where": [ - 3804 + 3803 ] } ], @@ -90094,10 +90086,10 @@ export default { 40 ], "premier_rank_history": [ - 3567, + 3566, { "distinct_on": [ - 3588, + 3587, "[player_premier_rank_history_select_column!]" ], "limit": [ @@ -90107,19 +90099,19 @@ export default { 40 ], "order_by": [ - 3586, + 3585, "[player_premier_rank_history_order_by!]" ], "where": [ - 3576 + 3575 ] } ], "premier_rank_history_aggregate": [ - 3568, + 3567, { "distinct_on": [ - 3588, + 3587, "[player_premier_rank_history_select_column!]" ], "limit": [ @@ -90129,31 +90121,31 @@ export default { 40 ], "order_by": [ - 3586, + 3585, "[player_premier_rank_history_order_by!]" ], "where": [ - 3576 + 3575 ] } ], "premier_rank_updated_at": [ - 4499 + 4498 ], "profile_url": [ 80 ], "role": [ - 1071 + 1070 ], "roster_image_url": [ 80 ], "sanctions": [ - 3608, + 3607, { "distinct_on": [ - 3629, + 3628, "[player_sanctions_select_column!]" ], "limit": [ @@ -90163,19 +90155,19 @@ export default { 40 ], "order_by": [ - 3627, + 3626, "[player_sanctions_order_by!]" ], "where": [ - 3617 + 3616 ] } ], "sanctions_aggregate": [ - 3609, + 3608, { "distinct_on": [ - 3629, + 3628, "[player_sanctions_select_column!]" ], "limit": [ @@ -90185,19 +90177,19 @@ export default { 40 ], "order_by": [ - 3627, + 3626, "[player_sanctions_order_by!]" ], "where": [ - 3617 + 3616 ] } ], "season_stats": [ - 3649, + 3648, { "distinct_on": [ - 3680, + 3679, "[player_season_stats_select_column!]" ], "limit": [ @@ -90207,19 +90199,19 @@ export default { 40 ], "order_by": [ - 3678, + 3677, "[player_season_stats_order_by!]" ], "where": [ - 3668 + 3667 ] } ], "season_stats_aggregate": [ - 3650, + 3649, { "distinct_on": [ - 3680, + 3679, "[player_season_stats_select_column!]" ], "limit": [ @@ -90229,11 +90221,11 @@ export default { 40 ], "order_by": [ - 3678, + 3677, "[player_season_stats_order_by!]" ], "where": [ - 3668 + 3667 ] } ], @@ -90241,19 +90233,19 @@ export default { 5 ], "stats": [ - 3708 + 3707 ], "steam_bans_checked_at": [ - 4499 + 4498 ], "steam_id": [ - 258 + 257 ], "team_invites": [ - 4169, + 4168, { "distinct_on": [ - 4190, + 4189, "[team_invites_select_column!]" ], "limit": [ @@ -90263,19 +90255,19 @@ export default { 40 ], "order_by": [ - 4188, + 4187, "[team_invites_order_by!]" ], "where": [ - 4178 + 4177 ] } ], "team_invites_aggregate": [ - 4170, + 4169, { "distinct_on": [ - 4190, + 4189, "[team_invites_select_column!]" ], "limit": [ @@ -90285,19 +90277,19 @@ export default { 40 ], "order_by": [ - 4188, + 4187, "[team_invites_order_by!]" ], "where": [ - 4178 + 4177 ] } ], "team_members": [ - 4210, + 4209, { "distinct_on": [ - 4233, + 4232, "[team_roster_select_column!]" ], "limit": [ @@ -90307,19 +90299,19 @@ export default { 40 ], "order_by": [ - 4231, + 4230, "[team_roster_order_by!]" ], "where": [ - 4221 + 4220 ] } ], "team_members_aggregate": [ - 4211, + 4210, { "distinct_on": [ - 4233, + 4232, "[team_roster_select_column!]" ], "limit": [ @@ -90329,19 +90321,19 @@ export default { 40 ], "order_by": [ - 4231, + 4230, "[team_roster_order_by!]" ], "where": [ - 4221 + 4220 ] } ], "teams": [ - 4452, + 4451, { "distinct_on": [ - 4476, + 4475, "[teams_select_column!]" ], "limit": [ @@ -90351,11 +90343,11 @@ export default { 40 ], "order_by": [ - 4474, + 4473, "[teams_order_by!]" ], "where": [ - 4463 + 4462 ] } ], @@ -90363,10 +90355,10 @@ export default { 40 ], "tournament_organizers": [ - 4637, + 4636, { "distinct_on": [ - 4658, + 4657, "[tournament_organizers_select_column!]" ], "limit": [ @@ -90376,19 +90368,19 @@ export default { 40 ], "order_by": [ - 4656, + 4655, "[tournament_organizers_order_by!]" ], "where": [ - 4646 + 4645 ] } ], "tournament_organizers_aggregate": [ - 4638, + 4637, { "distinct_on": [ - 4658, + 4657, "[tournament_organizers_select_column!]" ], "limit": [ @@ -90398,19 +90390,19 @@ export default { 40 ], "order_by": [ - 4656, + 4655, "[tournament_organizers_order_by!]" ], "where": [ - 4646 + 4645 ] } ], "tournament_rosters": [ - 4852, + 4851, { "distinct_on": [ - 4873, + 4872, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -90420,19 +90412,19 @@ export default { 40 ], "order_by": [ - 4871, + 4870, "[tournament_team_roster_order_by!]" ], "where": [ - 4861 + 4860 ] } ], "tournament_rosters_aggregate": [ - 4853, + 4852, { "distinct_on": [ - 4873, + 4872, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -90442,19 +90434,19 @@ export default { 40 ], "order_by": [ - 4871, + 4870, "[tournament_team_roster_order_by!]" ], "where": [ - 4861 + 4860 ] } ], "tournaments": [ - 4935, + 4934, { "distinct_on": [ - 4969, + 4968, "[tournaments_select_column!]" ], "limit": [ @@ -90464,19 +90456,19 @@ export default { 40 ], "order_by": [ - 4967, + 4966, "[tournaments_order_by!]" ], "where": [ - 4956 + 4955 ] } ], "tournaments_aggregate": [ - 4936, + 4935, { "distinct_on": [ - 4969, + 4968, "[tournaments_select_column!]" ], "limit": [ @@ -90486,19 +90478,19 @@ export default { 40 ], "order_by": [ - 4967, + 4966, "[tournaments_order_by!]" ], "where": [ - 4956 + 4955 ] } ], "utility_thrown": [ - 3836, + 3835, { "distinct_on": [ - 3857, + 3856, "[player_utility_select_column!]" ], "limit": [ @@ -90508,19 +90500,19 @@ export default { 40 ], "order_by": [ - 3855, + 3854, "[player_utility_order_by!]" ], "where": [ - 3845 + 3844 ] } ], "utility_thrown_aggregate": [ - 3837, + 3836, { "distinct_on": [ - 3857, + 3856, "[player_utility_select_column!]" ], "limit": [ @@ -90530,11 +90522,11 @@ export default { 40 ], "order_by": [ - 3855, + 3854, "[player_utility_order_by!]" ], "where": [ - 3845 + 3844 ] } ], @@ -90545,10 +90537,10 @@ export default { 5 ], "weapon_stats": [ - 3877, + 3876, { "distinct_on": [ - 3893, + 3892, "[player_weapon_stats_v_select_column!]" ], "limit": [ @@ -90558,19 +90550,19 @@ export default { 40 ], "order_by": [ - 3892, + 3891, "[player_weapon_stats_v_order_by!]" ], "where": [ - 3886 + 3885 ] } ], "weapon_stats_aggregate": [ - 3878, + 3877, { "distinct_on": [ - 3893, + 3892, "[player_weapon_stats_v_select_column!]" ], "limit": [ @@ -90580,11 +90572,11 @@ export default { 40 ], "order_by": [ - 3892, + 3891, "[player_weapon_stats_v_order_by!]" ], "where": [ - 3886 + 3885 ] } ], @@ -90606,10 +90598,10 @@ export default { }, "players_aggregate": { "aggregate": [ - 3912 + 3911 ], "nodes": [ - 3910 + 3909 ], "__typename": [ 80 @@ -90617,13 +90609,13 @@ export default { }, "players_aggregate_fields": { "avg": [ - 3913 + 3912 ], "count": [ 40, { "columns": [ - 3925, + 3924, "[players_select_column!]" ], "distinct": [ @@ -90632,31 +90624,31 @@ export default { } ], "max": [ - 3918 + 3917 ], "min": [ - 3919 + 3918 ], "stddev": [ - 3927 + 3926 ], "stddev_pop": [ - 3928 + 3927 ], "stddev_samp": [ - 3929 + 3928 ], "sum": [ - 3932 + 3931 ], "var_pop": [ - 3935 + 3934 ], "var_samp": [ - 3936 + 3935 ], "variance": [ - 3937 + 3936 ], "__typename": [ 80 @@ -90717,103 +90709,103 @@ export default { }, "players_bool_exp": { "_and": [ - 3914 + 3913 ], "_not": [ - 3914 + 3913 ], "_or": [ - 3914 + 3913 ], "abandoned_matches": [ - 129 + 128 ], "abandoned_matches_aggregate": [ - 122 + 121 ], "aim_weapon_stats": [ - 3058 + 3057 ], "aim_weapon_stats_aggregate": [ - 3051 + 3050 ], "assists": [ - 3101 + 3100 ], "assists_aggregate": [ - 3092 + 3091 ], "assited_by_players": [ - 3101 + 3100 ], "assited_by_players_aggregate": [ - 3092 + 3091 ], "avatar_url": [ 82 ], "awards": [ - 198 + 197 ], "awards_aggregate": [ - 191 + 190 ], "coach_lineups": [ - 2456 + 2455 ], "coach_lineups_aggregate": [ - 2449 + 2448 ], "country": [ 82 ], "created_at": [ - 4500 + 4499 ], "current_lobby_id": [ - 5001 + 5000 ], "custom_avatar_url": [ 82 ], "damage_dealt": [ - 3162 + 3161 ], "damage_dealt_aggregate": [ - 3155 + 3154 ], "damage_taken": [ - 3162 + 3161 ], "damage_taken_aggregate": [ - 3155 + 3154 ], "days_since_last_ban": [ 41 ], "deaths": [ - 3318 + 3317 ], "deaths_aggregate": [ - 3309 + 3308 ], "discord_id": [ 82 ], "draft_game_players": [ - 430 + 429 ], "draft_game_players_aggregate": [ - 421 + 420 ], "elo": [ - 1825 + 1824 ], "elo_history": [ - 5395 + 5394 ], "elo_history_aggregate": [ - 5378 + 5377 ], "faceit_elo": [ 41 @@ -90825,46 +90817,46 @@ export default { 82 ], "faceit_rank_history": [ - 3230 + 3229 ], "faceit_rank_history_aggregate": [ - 3223 + 3222 ], "faceit_skill_level": [ 41 ], "faceit_updated_at": [ - 4500 + 4499 ], "faceit_url": [ 82 ], "flashed_by_players": [ - 3273 + 3272 ], "flashed_by_players_aggregate": [ - 3264 + 3263 ], "flashed_players": [ - 3273 + 3272 ], "flashed_players_aggregate": [ - 3264 + 3263 ], "friends": [ - 2839 + 2838 ], "friends_aggregate": [ - 2829 + 2828 ], "game_ban_count": [ 41 ], "invited_players": [ - 4178 + 4177 ], "invited_players_aggregate": [ - 4171 + 4170 ], "is_banned": [ 6 @@ -90885,31 +90877,31 @@ export default { 6 ], "kills": [ - 3318 + 3317 ], "kills_aggregate": [ - 3309 + 3308 ], "kills_by_weapons": [ - 3328 + 3327 ], "kills_by_weapons_aggregate": [ - 3321 + 3320 ], "language": [ 82 ], "last_read_news_at": [ - 4500 + 4499 ], "last_sign_in_at": [ - 4500 + 4499 ], "lobby_players": [ - 2232 + 2231 ], "lobby_players_aggregate": [ - 2223 + 2222 ], "losses": [ 41 @@ -90924,34 +90916,34 @@ export default { 41 ], "match_map_hltv": [ - 5490 + 5489 ], "match_map_hltv_aggregate": [ - 5483 + 5482 ], "match_map_stats": [ - 3425 + 3424 ], "match_map_stats_aggregate": [ - 3418 + 3417 ], "match_stats": [ - 3484 + 3483 ], "match_stats_aggregate": [ - 3477 + 3476 ], "matches": [ - 2776 + 2775 ], "matchmaking_cooldown": [ - 4500 + 4499 ], "multi_kills": [ - 5581 + 5580 ], "multi_kills_aggregate": [ - 5574 + 5573 ], "name": [ 82 @@ -90960,130 +90952,130 @@ export default { 6 ], "notifications": [ - 2912 + 2911 ], "notifications_aggregate": [ - 2902 + 2901 ], "objectives": [ - 3517 + 3516 ], "objectives_aggregate": [ - 3510 + 3509 ], "owned_teams": [ - 4463 + 4462 ], "owned_teams_aggregate": [ - 4454 + 4453 ], "peak_elo": [ - 1825 + 1824 ], "pending_match_imports": [ - 2962 + 2961 ], "pending_match_imports_aggregate": [ - 2955 + 2954 ], "player_lineup": [ - 2413 + 2412 ], "player_lineup_aggregate": [ - 2404 + 2403 ], "player_unused_utilities": [ - 3804 + 3803 ], "player_unused_utilities_aggregate": [ - 3797 + 3796 ], "premier_rank": [ 41 ], "premier_rank_history": [ - 3576 + 3575 ], "premier_rank_history_aggregate": [ - 3569 + 3568 ], "premier_rank_updated_at": [ - 4500 + 4499 ], "profile_url": [ 82 ], "role": [ - 1072 + 1071 ], "roster_image_url": [ 82 ], "sanctions": [ - 3617 + 3616 ], "sanctions_aggregate": [ - 3610 + 3609 ], "season_stats": [ - 3668 + 3667 ], "season_stats_aggregate": [ - 3651 + 3650 ], "show_match_ready_modal": [ 6 ], "stats": [ - 3712 + 3711 ], "steam_bans_checked_at": [ - 4500 + 4499 ], "steam_id": [ - 260 + 259 ], "team_invites": [ - 4178 + 4177 ], "team_invites_aggregate": [ - 4171 + 4170 ], "team_members": [ - 4221 + 4220 ], "team_members_aggregate": [ - 4212 + 4211 ], "teams": [ - 4463 + 4462 ], "total_matches": [ 41 ], "tournament_organizers": [ - 4646 + 4645 ], "tournament_organizers_aggregate": [ - 4639 + 4638 ], "tournament_rosters": [ - 4861 + 4860 ], "tournament_rosters_aggregate": [ - 4854 + 4853 ], "tournaments": [ - 4956 + 4955 ], "tournaments_aggregate": [ - 4937 + 4936 ], "utility_thrown": [ - 3845 + 3844 ], "utility_thrown_aggregate": [ - 3838 + 3837 ], "vac_ban_count": [ 41 @@ -91092,10 +91084,10 @@ export default { 6 ], "weapon_stats": [ - 3886 + 3885 ], "weapon_stats_aggregate": [ - 3879 + 3878 ], "wins": [ 41 @@ -91131,7 +91123,7 @@ export default { 40 ], "steam_id": [ - 258 + 257 ], "vac_ban_count": [ 40 @@ -91142,55 +91134,55 @@ export default { }, "players_insert_input": { "abandoned_matches": [ - 126 + 125 ], "aim_weapon_stats": [ - 3055 + 3054 ], "assists": [ - 3098 + 3097 ], "assited_by_players": [ - 3098 + 3097 ], "avatar_url": [ 80 ], "awards": [ - 195 + 194 ], "coach_lineups": [ - 2453 + 2452 ], "country": [ 80 ], "created_at": [ - 4499 + 4498 ], "custom_avatar_url": [ 80 ], "damage_dealt": [ - 3159 + 3158 ], "damage_taken": [ - 3159 + 3158 ], "days_since_last_ban": [ 40 ], "deaths": [ - 3315 + 3314 ], "discord_id": [ 80 ], "draft_game_players": [ - 427 + 426 ], "elo_history": [ - 5392 + 5391 ], "faceit_elo": [ 40 @@ -91202,61 +91194,61 @@ export default { 80 ], "faceit_rank_history": [ - 3227 + 3226 ], "faceit_skill_level": [ 40 ], "faceit_updated_at": [ - 4499 + 4498 ], "faceit_url": [ 80 ], "flashed_by_players": [ - 3270 + 3269 ], "flashed_players": [ - 3270 + 3269 ], "friends": [ - 2836 + 2835 ], "game_ban_count": [ 40 ], "invited_players": [ - 4175 + 4174 ], "kills": [ - 3315 + 3314 ], "kills_by_weapons": [ - 3325 + 3324 ], "language": [ 80 ], "last_read_news_at": [ - 4499 + 4498 ], "last_sign_in_at": [ - 4499 + 4498 ], "lobby_players": [ - 2229 + 2228 ], "match_map_hltv": [ - 5487 + 5486 ], "match_map_stats": [ - 3422 + 3421 ], "match_stats": [ - 3481 + 3480 ], "multi_kills": [ - 5578 + 5577 ], "name": [ 80 @@ -91265,76 +91257,76 @@ export default { 5 ], "notifications": [ - 2909 + 2908 ], "objectives": [ - 3514 + 3513 ], "owned_teams": [ - 4460 + 4459 ], "pending_match_imports": [ - 2959 + 2958 ], "player_lineup": [ - 2410 + 2409 ], "player_unused_utilities": [ - 3801 + 3800 ], "premier_rank": [ 40 ], "premier_rank_history": [ - 3573 + 3572 ], "premier_rank_updated_at": [ - 4499 + 4498 ], "profile_url": [ 80 ], "role": [ - 1071 + 1070 ], "roster_image_url": [ 80 ], "sanctions": [ - 3614 + 3613 ], "season_stats": [ - 3665 + 3664 ], "show_match_ready_modal": [ 5 ], "stats": [ - 3719 + 3718 ], "steam_bans_checked_at": [ - 4499 + 4498 ], "steam_id": [ - 258 + 257 ], "team_invites": [ - 4175 + 4174 ], "team_members": [ - 4218 + 4217 ], "tournament_organizers": [ - 4643 + 4642 ], "tournament_rosters": [ - 4858 + 4857 ], "tournaments": [ - 4953 + 4952 ], "utility_thrown": [ - 3842 + 3841 ], "vac_ban_count": [ 40 @@ -91343,7 +91335,7 @@ export default { 5 ], "weapon_stats": [ - 3883 + 3882 ], "__typename": [ 80 @@ -91357,10 +91349,10 @@ export default { 80 ], "created_at": [ - 4499 + 4498 ], "current_lobby_id": [ - 4999 + 4998 ], "custom_avatar_url": [ 80 @@ -91384,7 +91376,7 @@ export default { 40 ], "faceit_updated_at": [ - 4499 + 4498 ], "faceit_url": [ 80 @@ -91396,10 +91388,10 @@ export default { 80 ], "last_read_news_at": [ - 4499 + 4498 ], "last_sign_in_at": [ - 4499 + 4498 ], "losses": [ 40 @@ -91414,7 +91406,7 @@ export default { 40 ], "matchmaking_cooldown": [ - 4499 + 4498 ], "name": [ 80 @@ -91423,7 +91415,7 @@ export default { 40 ], "premier_rank_updated_at": [ - 4499 + 4498 ], "profile_url": [ 80 @@ -91432,10 +91424,10 @@ export default { 80 ], "steam_bans_checked_at": [ - 4499 + 4498 ], "steam_id": [ - 258 + 257 ], "total_matches": [ 40 @@ -91467,10 +91459,10 @@ export default { 80 ], "created_at": [ - 4499 + 4498 ], "current_lobby_id": [ - 4999 + 4998 ], "custom_avatar_url": [ 80 @@ -91494,7 +91486,7 @@ export default { 40 ], "faceit_updated_at": [ - 4499 + 4498 ], "faceit_url": [ 80 @@ -91506,10 +91498,10 @@ export default { 80 ], "last_read_news_at": [ - 4499 + 4498 ], "last_sign_in_at": [ - 4499 + 4498 ], "losses": [ 40 @@ -91524,7 +91516,7 @@ export default { 40 ], "matchmaking_cooldown": [ - 4499 + 4498 ], "name": [ 80 @@ -91533,7 +91525,7 @@ export default { 40 ], "premier_rank_updated_at": [ - 4499 + 4498 ], "profile_url": [ 80 @@ -91542,10 +91534,10 @@ export default { 80 ], "steam_bans_checked_at": [ - 4499 + 4498 ], "steam_id": [ - 258 + 257 ], "total_matches": [ 40 @@ -91574,7 +91566,7 @@ export default { 40 ], "returning": [ - 3910 + 3909 ], "__typename": [ 80 @@ -91582,10 +91574,10 @@ export default { }, "players_obj_rel_insert_input": { "data": [ - 3917 + 3916 ], "on_conflict": [ - 3922 + 3921 ], "__typename": [ 80 @@ -91593,13 +91585,13 @@ export default { }, "players_on_conflict": { "constraint": [ - 3915 + 3914 ], "update_columns": [ - 3933 + 3932 ], "where": [ - 3914 + 3913 ], "__typename": [ 80 @@ -91607,271 +91599,271 @@ export default { }, "players_order_by": { "abandoned_matches_aggregate": [ - 125 + 124 ], "aim_weapon_stats_aggregate": [ - 3054 + 3053 ], "assists_aggregate": [ - 3097 + 3096 ], "assited_by_players_aggregate": [ - 3097 + 3096 ], "avatar_url": [ - 2952 + 2951 ], "awards_aggregate": [ - 194 + 193 ], "coach_lineups_aggregate": [ - 2452 + 2451 ], "country": [ - 2952 + 2951 ], "created_at": [ - 2952 + 2951 ], "current_lobby_id": [ - 2952 + 2951 ], "custom_avatar_url": [ - 2952 + 2951 ], "damage_dealt_aggregate": [ - 3158 + 3157 ], "damage_taken_aggregate": [ - 3158 + 3157 ], "days_since_last_ban": [ - 2952 + 2951 ], "deaths_aggregate": [ - 3314 + 3313 ], "discord_id": [ - 2952 + 2951 ], "draft_game_players_aggregate": [ - 426 + 425 ], "elo": [ - 2952 + 2951 ], "elo_history_aggregate": [ - 5391 + 5390 ], "faceit_elo": [ - 2952 + 2951 ], "faceit_nickname": [ - 2952 + 2951 ], "faceit_player_id": [ - 2952 + 2951 ], "faceit_rank_history_aggregate": [ - 3226 + 3225 ], "faceit_skill_level": [ - 2952 + 2951 ], "faceit_updated_at": [ - 2952 + 2951 ], "faceit_url": [ - 2952 + 2951 ], "flashed_by_players_aggregate": [ - 3269 + 3268 ], "flashed_players_aggregate": [ - 3269 + 3268 ], "friends_aggregate": [ - 2834 + 2833 ], "game_ban_count": [ - 2952 + 2951 ], "invited_players_aggregate": [ - 4174 + 4173 ], "is_banned": [ - 2952 + 2951 ], "is_gagged": [ - 2952 + 2951 ], "is_in_another_match": [ - 2952 + 2951 ], "is_in_draft": [ - 2952 + 2951 ], "is_in_lobby": [ - 2952 + 2951 ], "is_muted": [ - 2952 + 2951 ], "kills_aggregate": [ - 3314 + 3313 ], "kills_by_weapons_aggregate": [ - 3324 + 3323 ], "language": [ - 2952 + 2951 ], "last_read_news_at": [ - 2952 + 2951 ], "last_sign_in_at": [ - 2952 + 2951 ], "lobby_players_aggregate": [ - 2228 + 2227 ], "losses": [ - 2952 + 2951 ], "losses_competitive": [ - 2952 + 2951 ], "losses_duel": [ - 2952 + 2951 ], "losses_wingman": [ - 2952 + 2951 ], "match_map_hltv_aggregate": [ - 5486 + 5485 ], "match_map_stats_aggregate": [ - 3421 + 3420 ], "match_stats_aggregate": [ - 3480 + 3479 ], "matches_aggregate": [ - 2772 + 2771 ], "matchmaking_cooldown": [ - 2952 + 2951 ], "multi_kills_aggregate": [ - 5577 + 5576 ], "name": [ - 2952 + 2951 ], "name_registered": [ - 2952 + 2951 ], "notifications_aggregate": [ - 2907 + 2906 ], "objectives_aggregate": [ - 3513 + 3512 ], "owned_teams_aggregate": [ - 4459 + 4458 ], "peak_elo": [ - 2952 + 2951 ], "pending_match_imports_aggregate": [ - 2958 + 2957 ], "player_lineup_aggregate": [ - 2409 + 2408 ], "player_unused_utilities_aggregate": [ - 3800 + 3799 ], "premier_rank": [ - 2952 + 2951 ], "premier_rank_history_aggregate": [ - 3572 + 3571 ], "premier_rank_updated_at": [ - 2952 + 2951 ], "profile_url": [ - 2952 + 2951 ], "role": [ - 2952 + 2951 ], "roster_image_url": [ - 2952 + 2951 ], "sanctions_aggregate": [ - 3613 + 3612 ], "season_stats_aggregate": [ - 3664 + 3663 ], "show_match_ready_modal": [ - 2952 + 2951 ], "stats": [ - 3721 + 3720 ], "steam_bans_checked_at": [ - 2952 + 2951 ], "steam_id": [ - 2952 + 2951 ], "team_invites_aggregate": [ - 4174 + 4173 ], "team_members_aggregate": [ - 4217 + 4216 ], "teams_aggregate": [ - 4459 + 4458 ], "total_matches": [ - 2952 + 2951 ], "tournament_organizers_aggregate": [ - 4642 + 4641 ], "tournament_rosters_aggregate": [ - 4857 + 4856 ], "tournaments_aggregate": [ - 4952 + 4951 ], "utility_thrown_aggregate": [ - 3841 + 3840 ], "vac_ban_count": [ - 2952 + 2951 ], "vac_banned": [ - 2952 + 2951 ], "weapon_stats_aggregate": [ - 3882 + 3881 ], "wins": [ - 2952 + 2951 ], "wins_competitive": [ - 2952 + 2951 ], "wins_duel": [ - 2952 + 2951 ], "wins_wingman": [ - 2952 + 2951 ], "__typename": [ 80 @@ -91879,7 +91871,7 @@ export default { }, "players_pk_columns_input": { "steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -91894,7 +91886,7 @@ export default { 80 ], "created_at": [ - 4499 + 4498 ], "custom_avatar_url": [ 80 @@ -91918,7 +91910,7 @@ export default { 40 ], "faceit_updated_at": [ - 4499 + 4498 ], "faceit_url": [ 80 @@ -91930,10 +91922,10 @@ export default { 80 ], "last_read_news_at": [ - 4499 + 4498 ], "last_sign_in_at": [ - 4499 + 4498 ], "name": [ 80 @@ -91945,13 +91937,13 @@ export default { 40 ], "premier_rank_updated_at": [ - 4499 + 4498 ], "profile_url": [ 80 ], "role": [ - 1071 + 1070 ], "roster_image_url": [ 80 @@ -91960,10 +91952,10 @@ export default { 5 ], "steam_bans_checked_at": [ - 4499 + 4498 ], "steam_id": [ - 258 + 257 ], "vac_ban_count": [ 40 @@ -92136,10 +92128,10 @@ export default { }, "players_stream_cursor_input": { "initial_value": [ - 3931 + 3930 ], "ordering": [ - 314 + 313 ], "__typename": [ 80 @@ -92153,7 +92145,7 @@ export default { 80 ], "created_at": [ - 4499 + 4498 ], "custom_avatar_url": [ 80 @@ -92177,7 +92169,7 @@ export default { 40 ], "faceit_updated_at": [ - 4499 + 4498 ], "faceit_url": [ 80 @@ -92189,10 +92181,10 @@ export default { 80 ], "last_read_news_at": [ - 4499 + 4498 ], "last_sign_in_at": [ - 4499 + 4498 ], "name": [ 80 @@ -92204,13 +92196,13 @@ export default { 40 ], "premier_rank_updated_at": [ - 4499 + 4498 ], "profile_url": [ 80 ], "role": [ - 1071 + 1070 ], "roster_image_url": [ 80 @@ -92219,10 +92211,10 @@ export default { 5 ], "steam_bans_checked_at": [ - 4499 + 4498 ], "steam_id": [ - 258 + 257 ], "vac_ban_count": [ 40 @@ -92263,7 +92255,7 @@ export default { 40 ], "steam_id": [ - 258 + 257 ], "total_matches": [ 40 @@ -92290,13 +92282,13 @@ export default { "players_update_column": {}, "players_updates": { "_inc": [ - 3916 + 3915 ], "_set": [ - 3926 + 3925 ], "where": [ - 3914 + 3913 ], "__typename": [ 80 @@ -92466,10 +92458,10 @@ export default { 40 ], "published_at": [ - 4499 + 4498 ], "runtime": [ - 1091 + 1090 ], "version": [ 80 @@ -92480,10 +92472,10 @@ export default { }, "plugin_versions_aggregate": { "aggregate": [ - 3940 + 3939 ], "nodes": [ - 3938 + 3937 ], "__typename": [ 80 @@ -92491,13 +92483,13 @@ export default { }, "plugin_versions_aggregate_fields": { "avg": [ - 3941 + 3940 ], "count": [ 40, { "columns": [ - 3952, + 3951, "[plugin_versions_select_column!]" ], "distinct": [ @@ -92506,31 +92498,31 @@ export default { } ], "max": [ - 3946 + 3945 ], "min": [ - 3947 + 3946 ], "stddev": [ - 3954 + 3953 ], "stddev_pop": [ - 3955 + 3954 ], "stddev_samp": [ - 3956 + 3955 ], "sum": [ - 3959 + 3958 ], "var_pop": [ - 3962 + 3961 ], "var_samp": [ - 3963 + 3962 ], "variance": [ - 3964 + 3963 ], "__typename": [ 80 @@ -92546,22 +92538,22 @@ export default { }, "plugin_versions_bool_exp": { "_and": [ - 3942 + 3941 ], "_not": [ - 3942 + 3941 ], "_or": [ - 3942 + 3941 ], "min_game_build_id": [ 41 ], "published_at": [ - 4500 + 4499 ], "runtime": [ - 1092 + 1091 ], "version": [ 82 @@ -92584,10 +92576,10 @@ export default { 40 ], "published_at": [ - 4499 + 4498 ], "runtime": [ - 1091 + 1090 ], "version": [ 80 @@ -92601,7 +92593,7 @@ export default { 40 ], "published_at": [ - 4499 + 4498 ], "version": [ 80 @@ -92615,7 +92607,7 @@ export default { 40 ], "published_at": [ - 4499 + 4498 ], "version": [ 80 @@ -92629,7 +92621,7 @@ export default { 40 ], "returning": [ - 3938 + 3937 ], "__typename": [ 80 @@ -92637,13 +92629,13 @@ export default { }, "plugin_versions_on_conflict": { "constraint": [ - 3943 + 3942 ], "update_columns": [ - 3960 + 3959 ], "where": [ - 3942 + 3941 ], "__typename": [ 80 @@ -92651,16 +92643,16 @@ export default { }, "plugin_versions_order_by": { "min_game_build_id": [ - 2952 + 2951 ], "published_at": [ - 2952 + 2951 ], "runtime": [ - 2952 + 2951 ], "version": [ - 2952 + 2951 ], "__typename": [ 80 @@ -92668,7 +92660,7 @@ export default { }, "plugin_versions_pk_columns_input": { "runtime": [ - 1091 + 1090 ], "version": [ 80 @@ -92683,10 +92675,10 @@ export default { 40 ], "published_at": [ - 4499 + 4498 ], "runtime": [ - 1091 + 1090 ], "version": [ 80 @@ -92721,10 +92713,10 @@ export default { }, "plugin_versions_stream_cursor_input": { "initial_value": [ - 3958 + 3957 ], "ordering": [ - 314 + 313 ], "__typename": [ 80 @@ -92735,10 +92727,10 @@ export default { 40 ], "published_at": [ - 4499 + 4498 ], "runtime": [ - 1091 + 1090 ], "version": [ 80 @@ -92758,13 +92750,13 @@ export default { "plugin_versions_update_column": {}, "plugin_versions_updates": { "_inc": [ - 3944 + 3943 ], "_set": [ - 3953 + 3952 ], "where": [ - 3942 + 3941 ], "__typename": [ 80 @@ -92796,7 +92788,7 @@ export default { }, "recalculate_tournament_awards_args": { "_tournament_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -92804,7 +92796,7 @@ export default { }, "remove_league_team_from_season_args": { "_league_team_season_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -92812,7 +92804,7 @@ export default { }, "reorder_league_divisions_args": { "_division_ids": [ - 119 + 118 ], "__typename": [ 80 @@ -92820,7 +92812,7 @@ export default { }, "restart_league_season_args": { "_league_season_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -92828,10 +92820,10 @@ export default { }, "seasons": { "awards": [ - 189, + 188, { "distinct_on": [ - 210, + 209, "[award_recipients_select_column!]" ], "limit": [ @@ -92841,19 +92833,19 @@ export default { 40 ], "order_by": [ - 208, + 207, "[award_recipients_order_by!]" ], "where": [ - 198 + 197 ] } ], "awards_aggregate": [ - 190, + 189, { "distinct_on": [ - 210, + 209, "[award_recipients_select_column!]" ], "limit": [ @@ -92863,25 +92855,25 @@ export default { 40 ], "order_by": [ - 208, + 207, "[award_recipients_order_by!]" ], "where": [ - 198 + 197 ] } ], "created_at": [ - 4499 + 4498 ], "description": [ 80 ], "ends_at": [ - 4499 + 4498 ], "id": [ - 4999 + 4998 ], "needs_rebuild": [ 5 @@ -92890,10 +92882,10 @@ export default { 40 ], "player_season_stats": [ - 3649, + 3648, { "distinct_on": [ - 3680, + 3679, "[player_season_stats_select_column!]" ], "limit": [ @@ -92903,19 +92895,19 @@ export default { 40 ], "order_by": [ - 3678, + 3677, "[player_season_stats_order_by!]" ], "where": [ - 3668 + 3667 ] } ], "player_season_stats_aggregate": [ - 3650, + 3649, { "distinct_on": [ - 3680, + 3679, "[player_season_stats_select_column!]" ], "limit": [ @@ -92925,16 +92917,16 @@ export default { 40 ], "order_by": [ - 3678, + 3677, "[player_season_stats_order_by!]" ], "where": [ - 3668 + 3667 ] } ], "starts_at": [ - 4499 + 4498 ], "__typename": [ 80 @@ -92942,10 +92934,10 @@ export default { }, "seasons_aggregate": { "aggregate": [ - 3971 + 3970 ], "nodes": [ - 3969 + 3968 ], "__typename": [ 80 @@ -92953,13 +92945,13 @@ export default { }, "seasons_aggregate_fields": { "avg": [ - 3972 + 3971 ], "count": [ 40, { "columns": [ - 3984, + 3983, "[seasons_select_column!]" ], "distinct": [ @@ -92968,31 +92960,31 @@ export default { } ], "max": [ - 3977 + 3976 ], "min": [ - 3978 + 3977 ], "stddev": [ - 3986 + 3985 ], "stddev_pop": [ - 3987 + 3986 ], "stddev_samp": [ - 3988 + 3987 ], "sum": [ - 3991 + 3990 ], "var_pop": [ - 3994 + 3993 ], "var_samp": [ - 3995 + 3994 ], "variance": [ - 3996 + 3995 ], "__typename": [ 80 @@ -93008,31 +93000,31 @@ export default { }, "seasons_bool_exp": { "_and": [ - 3973 + 3972 ], "_not": [ - 3973 + 3972 ], "_or": [ - 3973 + 3972 ], "awards": [ - 198 + 197 ], "awards_aggregate": [ - 191 + 190 ], "created_at": [ - 4500 + 4499 ], "description": [ 82 ], "ends_at": [ - 4500 + 4499 ], "id": [ - 5001 + 5000 ], "needs_rebuild": [ 6 @@ -93041,13 +93033,13 @@ export default { 41 ], "player_season_stats": [ - 3668 + 3667 ], "player_season_stats_aggregate": [ - 3651 + 3650 ], "starts_at": [ - 4500 + 4499 ], "__typename": [ 80 @@ -93064,19 +93056,19 @@ export default { }, "seasons_insert_input": { "awards": [ - 195 + 194 ], "created_at": [ - 4499 + 4498 ], "description": [ 80 ], "ends_at": [ - 4499 + 4498 ], "id": [ - 4999 + 4998 ], "needs_rebuild": [ 5 @@ -93085,10 +93077,10 @@ export default { 40 ], "player_season_stats": [ - 3665 + 3664 ], "starts_at": [ - 4499 + 4498 ], "__typename": [ 80 @@ -93096,22 +93088,22 @@ export default { }, "seasons_max_fields": { "created_at": [ - 4499 + 4498 ], "description": [ 80 ], "ends_at": [ - 4499 + 4498 ], "id": [ - 4999 + 4998 ], "number": [ 40 ], "starts_at": [ - 4499 + 4498 ], "__typename": [ 80 @@ -93119,22 +93111,22 @@ export default { }, "seasons_min_fields": { "created_at": [ - 4499 + 4498 ], "description": [ 80 ], "ends_at": [ - 4499 + 4498 ], "id": [ - 4999 + 4998 ], "number": [ 40 ], "starts_at": [ - 4499 + 4498 ], "__typename": [ 80 @@ -93145,7 +93137,7 @@ export default { 40 ], "returning": [ - 3969 + 3968 ], "__typename": [ 80 @@ -93153,10 +93145,10 @@ export default { }, "seasons_obj_rel_insert_input": { "data": [ - 3976 + 3975 ], "on_conflict": [ - 3981 + 3980 ], "__typename": [ 80 @@ -93164,13 +93156,13 @@ export default { }, "seasons_on_conflict": { "constraint": [ - 3974 + 3973 ], "update_columns": [ - 3992 + 3991 ], "where": [ - 3973 + 3972 ], "__typename": [ 80 @@ -93178,31 +93170,31 @@ export default { }, "seasons_order_by": { "awards_aggregate": [ - 194 + 193 ], "created_at": [ - 2952 + 2951 ], "description": [ - 2952 + 2951 ], "ends_at": [ - 2952 + 2951 ], "id": [ - 2952 + 2951 ], "needs_rebuild": [ - 2952 + 2951 ], "number": [ - 2952 + 2951 ], "player_season_stats_aggregate": [ - 3664 + 3663 ], "starts_at": [ - 2952 + 2951 ], "__typename": [ 80 @@ -93210,7 +93202,7 @@ export default { }, "seasons_pk_columns_input": { "id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -93219,16 +93211,16 @@ export default { "seasons_select_column": {}, "seasons_set_input": { "created_at": [ - 4499 + 4498 ], "description": [ 80 ], "ends_at": [ - 4499 + 4498 ], "id": [ - 4999 + 4998 ], "needs_rebuild": [ 5 @@ -93237,7 +93229,7 @@ export default { 40 ], "starts_at": [ - 4499 + 4498 ], "__typename": [ 80 @@ -93269,10 +93261,10 @@ export default { }, "seasons_stream_cursor_input": { "initial_value": [ - 3990 + 3989 ], "ordering": [ - 314 + 313 ], "__typename": [ 80 @@ -93280,16 +93272,16 @@ export default { }, "seasons_stream_cursor_value_input": { "created_at": [ - 4499 + 4498 ], "description": [ 80 ], "ends_at": [ - 4499 + 4498 ], "id": [ - 4999 + 4998 ], "needs_rebuild": [ 5 @@ -93298,7 +93290,7 @@ export default { 40 ], "starts_at": [ - 4499 + 4498 ], "__typename": [ 80 @@ -93315,13 +93307,13 @@ export default { "seasons_update_column": {}, "seasons_updates": { "_inc": [ - 3975 + 3974 ], "_set": [ - 3985 + 3984 ], "where": [ - 3973 + 3972 ], "__typename": [ 80 @@ -93359,10 +93351,10 @@ export default { 80 ], "game_server_nodes": [ - 1699, + 1698, { "distinct_on": [ - 1728, + 1727, "[game_server_nodes_select_column!]" ], "limit": [ @@ -93372,19 +93364,19 @@ export default { 40 ], "order_by": [ - 1725, + 1724, "[game_server_nodes_order_by!]" ], "where": [ - 1711 + 1710 ] } ], "game_server_nodes_aggregate": [ - 1700, + 1699, { "distinct_on": [ - 1728, + 1727, "[game_server_nodes_select_column!]" ], "limit": [ @@ -93394,11 +93386,11 @@ export default { 40 ], "order_by": [ - 1725, + 1724, "[game_server_nodes_order_by!]" ], "where": [ - 1711 + 1710 ] } ], @@ -93426,10 +93418,10 @@ export default { }, "server_regions_aggregate": { "aggregate": [ - 3999 + 3998 ], "nodes": [ - 3997 + 3996 ], "__typename": [ 80 @@ -93437,13 +93429,13 @@ export default { }, "server_regions_aggregate_fields": { "avg": [ - 4000 + 3999 ], "count": [ 40, { "columns": [ - 4011, + 4010, "[server_regions_select_column!]" ], "distinct": [ @@ -93452,31 +93444,31 @@ export default { } ], "max": [ - 4004 + 4003 ], "min": [ - 4005 + 4004 ], "stddev": [ - 4013 + 4012 ], "stddev_pop": [ - 4014 + 4013 ], "stddev_samp": [ - 4015 + 4014 ], "sum": [ - 4018 + 4017 ], "var_pop": [ - 4021 + 4020 ], "var_samp": [ - 4022 + 4021 ], "variance": [ - 4023 + 4022 ], "__typename": [ 80 @@ -93495,13 +93487,13 @@ export default { }, "server_regions_bool_exp": { "_and": [ - 4001 + 4000 ], "_not": [ - 4001 + 4000 ], "_or": [ - 4001 + 4000 ], "available_server_count": [ 41 @@ -93510,10 +93502,10 @@ export default { 82 ], "game_server_nodes": [ - 1711 + 1710 ], "game_server_nodes_aggregate": [ - 1701 + 1700 ], "has_node": [ 6 @@ -93543,7 +93535,7 @@ export default { 80 ], "game_server_nodes": [ - 1708 + 1707 ], "is_lan": [ 5 @@ -93603,7 +93595,7 @@ export default { 40 ], "returning": [ - 3997 + 3996 ], "__typename": [ 80 @@ -93611,10 +93603,10 @@ export default { }, "server_regions_obj_rel_insert_input": { "data": [ - 4003 + 4002 ], "on_conflict": [ - 4008 + 4007 ], "__typename": [ 80 @@ -93622,13 +93614,13 @@ export default { }, "server_regions_on_conflict": { "constraint": [ - 4002 + 4001 ], "update_columns": [ - 4019 + 4018 ], "where": [ - 4001 + 4000 ], "__typename": [ 80 @@ -93636,31 +93628,31 @@ export default { }, "server_regions_order_by": { "available_server_count": [ - 2952 + 2951 ], "description": [ - 2952 + 2951 ], "game_server_nodes_aggregate": [ - 1706 + 1705 ], "has_node": [ - 2952 + 2951 ], "is_lan": [ - 2952 + 2951 ], "status": [ - 2952 + 2951 ], "steam_relay": [ - 2952 + 2951 ], "total_server_count": [ - 2952 + 2951 ], "value": [ - 2952 + 2951 ], "__typename": [ 80 @@ -93727,10 +93719,10 @@ export default { }, "server_regions_stream_cursor_input": { "initial_value": [ - 4017 + 4016 ], "ordering": [ - 314 + 313 ], "__typename": [ 80 @@ -93767,10 +93759,10 @@ export default { "server_regions_update_column": {}, "server_regions_updates": { "_set": [ - 4012 + 4011 ], "where": [ - 4001 + 4000 ], "__typename": [ 80 @@ -93811,7 +93803,7 @@ export default { }, "servers": { "api_password": [ - 4999 + 4998 ], "boot_status": [ 80 @@ -93832,7 +93824,7 @@ export default { 80 ], "current_match": [ - 2767 + 2766 ], "enabled": [ 5 @@ -93841,7 +93833,7 @@ export default { 80 ], "game_server_node": [ - 1699 + 1698 ], "game_server_node_id": [ 80 @@ -93850,7 +93842,7 @@ export default { 80 ], "id": [ - 4999 + 4998 ], "is_dedicated": [ 5 @@ -93859,10 +93851,10 @@ export default { 80 ], "matches": [ - 2767, + 2766, { "distinct_on": [ - 2789, + 2788, "[matches_select_column!]" ], "limit": [ @@ -93872,19 +93864,19 @@ export default { 40 ], "order_by": [ - 2787, + 2786, "[matches_order_by!]" ], "where": [ - 2776 + 2775 ] } ], "matches_aggregate": [ - 2768, + 2767, { "distinct_on": [ - 2789, + 2788, "[matches_select_column!]" ], "limit": [ @@ -93894,11 +93886,11 @@ export default { 40 ], "order_by": [ - 2787, + 2786, "[matches_order_by!]" ], "where": [ - 2776 + 2775 ] } ], @@ -93906,10 +93898,10 @@ export default { 40 ], "offline_at": [ - 4499 + 4498 ], "plugin_runtime": [ - 1091 + 1090 ], "plugin_version": [ 80 @@ -93918,7 +93910,7 @@ export default { 40 ], "rcon_password": [ - 261 + 260 ], "rcon_status": [ 5 @@ -93927,10 +93919,10 @@ export default { 80 ], "reserved_by_match_id": [ - 4999 + 4998 ], "server_region": [ - 3997 + 3996 ], "steam_relay": [ 80 @@ -93939,10 +93931,10 @@ export default { 40 ], "type": [ - 1172 + 1171 ], "updated_at": [ - 4499 + 4498 ], "__typename": [ 80 @@ -93950,10 +93942,10 @@ export default { }, "servers_aggregate": { "aggregate": [ - 4030 + 4029 ], "nodes": [ - 4024 + 4023 ], "__typename": [ 80 @@ -93961,13 +93953,13 @@ export default { }, "servers_aggregate_bool_exp": { "bool_and": [ - 4027 + 4026 ], "bool_or": [ - 4028 + 4027 ], "count": [ - 4029 + 4028 ], "__typename": [ 80 @@ -93975,13 +93967,13 @@ export default { }, "servers_aggregate_bool_exp_bool_and": { "arguments": [ - 4049 + 4048 ], "distinct": [ 5 ], "filter": [ - 4035 + 4034 ], "predicate": [ 6 @@ -93992,13 +93984,13 @@ export default { }, "servers_aggregate_bool_exp_bool_or": { "arguments": [ - 4050 + 4049 ], "distinct": [ 5 ], "filter": [ - 4035 + 4034 ], "predicate": [ 6 @@ -94009,13 +94001,13 @@ export default { }, "servers_aggregate_bool_exp_count": { "arguments": [ - 4048 + 4047 ], "distinct": [ 5 ], "filter": [ - 4035 + 4034 ], "predicate": [ 41 @@ -94026,13 +94018,13 @@ export default { }, "servers_aggregate_fields": { "avg": [ - 4033 + 4032 ], "count": [ 40, { "columns": [ - 4048, + 4047, "[servers_select_column!]" ], "distinct": [ @@ -94041,31 +94033,31 @@ export default { } ], "max": [ - 4039 + 4038 ], "min": [ - 4041 + 4040 ], "stddev": [ - 4052 + 4051 ], "stddev_pop": [ - 4054 + 4053 ], "stddev_samp": [ - 4056 + 4055 ], "sum": [ - 4060 + 4059 ], "var_pop": [ - 4064 + 4063 ], "var_samp": [ - 4066 + 4065 ], "variance": [ - 4068 + 4067 ], "__typename": [ 80 @@ -94073,37 +94065,37 @@ export default { }, "servers_aggregate_order_by": { "avg": [ - 4034 + 4033 ], "count": [ - 2952 + 2951 ], "max": [ - 4040 + 4039 ], "min": [ - 4042 + 4041 ], "stddev": [ - 4053 + 4052 ], "stddev_pop": [ - 4055 + 4054 ], "stddev_samp": [ - 4057 + 4056 ], "sum": [ - 4061 + 4060 ], "var_pop": [ - 4065 + 4064 ], "var_samp": [ - 4067 + 4066 ], "variance": [ - 4069 + 4068 ], "__typename": [ 80 @@ -94111,10 +94103,10 @@ export default { }, "servers_arr_rel_insert_input": { "data": [ - 4038 + 4037 ], "on_conflict": [ - 4045 + 4044 ], "__typename": [ 80 @@ -94136,13 +94128,13 @@ export default { }, "servers_avg_order_by": { "max_players": [ - 2952 + 2951 ], "port": [ - 2952 + 2951 ], "tv_port": [ - 2952 + 2951 ], "__typename": [ 80 @@ -94150,16 +94142,16 @@ export default { }, "servers_bool_exp": { "_and": [ - 4035 + 4034 ], "_not": [ - 4035 + 4034 ], "_or": [ - 4035 + 4034 ], "api_password": [ - 5001 + 5000 ], "boot_status": [ 82 @@ -94180,7 +94172,7 @@ export default { 82 ], "current_match": [ - 2776 + 2775 ], "enabled": [ 6 @@ -94189,7 +94181,7 @@ export default { 82 ], "game_server_node": [ - 1711 + 1710 ], "game_server_node_id": [ 82 @@ -94198,7 +94190,7 @@ export default { 82 ], "id": [ - 5001 + 5000 ], "is_dedicated": [ 6 @@ -94207,19 +94199,19 @@ export default { 82 ], "matches": [ - 2776 + 2775 ], "matches_aggregate": [ - 2769 + 2768 ], "max_players": [ 41 ], "offline_at": [ - 4500 + 4499 ], "plugin_runtime": [ - 1092 + 1091 ], "plugin_version": [ 82 @@ -94228,7 +94220,7 @@ export default { 41 ], "rcon_password": [ - 262 + 261 ], "rcon_status": [ 6 @@ -94237,10 +94229,10 @@ export default { 82 ], "reserved_by_match_id": [ - 5001 + 5000 ], "server_region": [ - 4001 + 4000 ], "steam_relay": [ 82 @@ -94249,10 +94241,10 @@ export default { 41 ], "type": [ - 1173 + 1172 ], "updated_at": [ - 4500 + 4499 ], "__typename": [ 80 @@ -94275,7 +94267,7 @@ export default { }, "servers_insert_input": { "api_password": [ - 4999 + 4998 ], "boot_status": [ 80 @@ -94290,7 +94282,7 @@ export default { 5 ], "current_match": [ - 2785 + 2784 ], "enabled": [ 5 @@ -94299,7 +94291,7 @@ export default { 80 ], "game_server_node": [ - 1723 + 1722 ], "game_server_node_id": [ 80 @@ -94308,7 +94300,7 @@ export default { 80 ], "id": [ - 4999 + 4998 ], "is_dedicated": [ 5 @@ -94317,16 +94309,16 @@ export default { 80 ], "matches": [ - 2773 + 2772 ], "max_players": [ 40 ], "offline_at": [ - 4499 + 4498 ], "plugin_runtime": [ - 1091 + 1090 ], "plugin_version": [ 80 @@ -94335,7 +94327,7 @@ export default { 40 ], "rcon_password": [ - 261 + 260 ], "rcon_status": [ 5 @@ -94344,10 +94336,10 @@ export default { 80 ], "reserved_by_match_id": [ - 4999 + 4998 ], "server_region": [ - 4007 + 4006 ], "steam_relay": [ 80 @@ -94356,10 +94348,10 @@ export default { 40 ], "type": [ - 1172 + 1171 ], "updated_at": [ - 4499 + 4498 ], "__typename": [ 80 @@ -94367,7 +94359,7 @@ export default { }, "servers_max_fields": { "api_password": [ - 4999 + 4998 ], "boot_status": [ 80 @@ -94394,7 +94386,7 @@ export default { 80 ], "id": [ - 4999 + 4998 ], "label": [ 80 @@ -94403,7 +94395,7 @@ export default { 40 ], "offline_at": [ - 4499 + 4498 ], "plugin_version": [ 80 @@ -94415,7 +94407,7 @@ export default { 80 ], "reserved_by_match_id": [ - 4999 + 4998 ], "steam_relay": [ 80 @@ -94424,7 +94416,7 @@ export default { 40 ], "updated_at": [ - 4499 + 4498 ], "__typename": [ 80 @@ -94432,58 +94424,58 @@ export default { }, "servers_max_order_by": { "api_password": [ - 2952 + 2951 ], "boot_status": [ - 2952 + 2951 ], "boot_status_detail": [ - 2952 + 2951 ], "connect_password": [ - 2952 + 2951 ], "game": [ - 2952 + 2951 ], "game_server_node_id": [ - 2952 + 2951 ], "host": [ - 2952 + 2951 ], "id": [ - 2952 + 2951 ], "label": [ - 2952 + 2951 ], "max_players": [ - 2952 + 2951 ], "offline_at": [ - 2952 + 2951 ], "plugin_version": [ - 2952 + 2951 ], "port": [ - 2952 + 2951 ], "region": [ - 2952 + 2951 ], "reserved_by_match_id": [ - 2952 + 2951 ], "steam_relay": [ - 2952 + 2951 ], "tv_port": [ - 2952 + 2951 ], "updated_at": [ - 2952 + 2951 ], "__typename": [ 80 @@ -94491,7 +94483,7 @@ export default { }, "servers_min_fields": { "api_password": [ - 4999 + 4998 ], "boot_status": [ 80 @@ -94518,7 +94510,7 @@ export default { 80 ], "id": [ - 4999 + 4998 ], "label": [ 80 @@ -94527,7 +94519,7 @@ export default { 40 ], "offline_at": [ - 4499 + 4498 ], "plugin_version": [ 80 @@ -94539,7 +94531,7 @@ export default { 80 ], "reserved_by_match_id": [ - 4999 + 4998 ], "steam_relay": [ 80 @@ -94548,7 +94540,7 @@ export default { 40 ], "updated_at": [ - 4499 + 4498 ], "__typename": [ 80 @@ -94556,58 +94548,58 @@ export default { }, "servers_min_order_by": { "api_password": [ - 2952 + 2951 ], "boot_status": [ - 2952 + 2951 ], "boot_status_detail": [ - 2952 + 2951 ], "connect_password": [ - 2952 + 2951 ], "game": [ - 2952 + 2951 ], "game_server_node_id": [ - 2952 + 2951 ], "host": [ - 2952 + 2951 ], "id": [ - 2952 + 2951 ], "label": [ - 2952 + 2951 ], "max_players": [ - 2952 + 2951 ], "offline_at": [ - 2952 + 2951 ], "plugin_version": [ - 2952 + 2951 ], "port": [ - 2952 + 2951 ], "region": [ - 2952 + 2951 ], "reserved_by_match_id": [ - 2952 + 2951 ], "steam_relay": [ - 2952 + 2951 ], "tv_port": [ - 2952 + 2951 ], "updated_at": [ - 2952 + 2951 ], "__typename": [ 80 @@ -94618,7 +94610,7 @@ export default { 40 ], "returning": [ - 4024 + 4023 ], "__typename": [ 80 @@ -94626,10 +94618,10 @@ export default { }, "servers_obj_rel_insert_input": { "data": [ - 4038 + 4037 ], "on_conflict": [ - 4045 + 4044 ], "__typename": [ 80 @@ -94637,13 +94629,13 @@ export default { }, "servers_on_conflict": { "constraint": [ - 4036 + 4035 ], "update_columns": [ - 4062 + 4061 ], "where": [ - 4035 + 4034 ], "__typename": [ 80 @@ -94651,97 +94643,97 @@ export default { }, "servers_order_by": { "api_password": [ - 2952 + 2951 ], "boot_status": [ - 2952 + 2951 ], "boot_status_detail": [ - 2952 + 2951 ], "connect_password": [ - 2952 + 2951 ], "connected": [ - 2952 + 2951 ], "connection_link": [ - 2952 + 2951 ], "connection_string": [ - 2952 + 2951 ], "current_match": [ - 2787 + 2786 ], "enabled": [ - 2952 + 2951 ], "game": [ - 2952 + 2951 ], "game_server_node": [ - 1725 + 1724 ], "game_server_node_id": [ - 2952 + 2951 ], "host": [ - 2952 + 2951 ], "id": [ - 2952 + 2951 ], "is_dedicated": [ - 2952 + 2951 ], "label": [ - 2952 + 2951 ], "matches_aggregate": [ - 2772 + 2771 ], "max_players": [ - 2952 + 2951 ], "offline_at": [ - 2952 + 2951 ], "plugin_runtime": [ - 2952 + 2951 ], "plugin_version": [ - 2952 + 2951 ], "port": [ - 2952 + 2951 ], "rcon_password": [ - 2952 + 2951 ], "rcon_status": [ - 2952 + 2951 ], "region": [ - 2952 + 2951 ], "reserved_by_match_id": [ - 2952 + 2951 ], "server_region": [ - 4009 + 4008 ], "steam_relay": [ - 2952 + 2951 ], "tv_port": [ - 2952 + 2951 ], "type": [ - 2952 + 2951 ], "updated_at": [ - 2952 + 2951 ], "__typename": [ 80 @@ -94749,7 +94741,7 @@ export default { }, "servers_pk_columns_input": { "id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -94760,7 +94752,7 @@ export default { "servers_select_column_servers_aggregate_bool_exp_bool_or_arguments_columns": {}, "servers_set_input": { "api_password": [ - 4999 + 4998 ], "boot_status": [ 80 @@ -94787,7 +94779,7 @@ export default { 80 ], "id": [ - 4999 + 4998 ], "is_dedicated": [ 5 @@ -94799,10 +94791,10 @@ export default { 40 ], "offline_at": [ - 4499 + 4498 ], "plugin_runtime": [ - 1091 + 1090 ], "plugin_version": [ 80 @@ -94811,7 +94803,7 @@ export default { 40 ], "rcon_password": [ - 261 + 260 ], "rcon_status": [ 5 @@ -94820,7 +94812,7 @@ export default { 80 ], "reserved_by_match_id": [ - 4999 + 4998 ], "steam_relay": [ 80 @@ -94829,10 +94821,10 @@ export default { 40 ], "type": [ - 1172 + 1171 ], "updated_at": [ - 4499 + 4498 ], "__typename": [ 80 @@ -94854,13 +94846,13 @@ export default { }, "servers_stddev_order_by": { "max_players": [ - 2952 + 2951 ], "port": [ - 2952 + 2951 ], "tv_port": [ - 2952 + 2951 ], "__typename": [ 80 @@ -94882,13 +94874,13 @@ export default { }, "servers_stddev_pop_order_by": { "max_players": [ - 2952 + 2951 ], "port": [ - 2952 + 2951 ], "tv_port": [ - 2952 + 2951 ], "__typename": [ 80 @@ -94910,13 +94902,13 @@ export default { }, "servers_stddev_samp_order_by": { "max_players": [ - 2952 + 2951 ], "port": [ - 2952 + 2951 ], "tv_port": [ - 2952 + 2951 ], "__typename": [ 80 @@ -94924,10 +94916,10 @@ export default { }, "servers_stream_cursor_input": { "initial_value": [ - 4059 + 4058 ], "ordering": [ - 314 + 313 ], "__typename": [ 80 @@ -94935,7 +94927,7 @@ export default { }, "servers_stream_cursor_value_input": { "api_password": [ - 4999 + 4998 ], "boot_status": [ 80 @@ -94962,7 +94954,7 @@ export default { 80 ], "id": [ - 4999 + 4998 ], "is_dedicated": [ 5 @@ -94974,10 +94966,10 @@ export default { 40 ], "offline_at": [ - 4499 + 4498 ], "plugin_runtime": [ - 1091 + 1090 ], "plugin_version": [ 80 @@ -94986,7 +94978,7 @@ export default { 40 ], "rcon_password": [ - 261 + 260 ], "rcon_status": [ 5 @@ -94995,7 +94987,7 @@ export default { 80 ], "reserved_by_match_id": [ - 4999 + 4998 ], "steam_relay": [ 80 @@ -95004,10 +94996,10 @@ export default { 40 ], "type": [ - 1172 + 1171 ], "updated_at": [ - 4499 + 4498 ], "__typename": [ 80 @@ -95029,13 +95021,13 @@ export default { }, "servers_sum_order_by": { "max_players": [ - 2952 + 2951 ], "port": [ - 2952 + 2951 ], "tv_port": [ - 2952 + 2951 ], "__typename": [ 80 @@ -95044,13 +95036,13 @@ export default { "servers_update_column": {}, "servers_updates": { "_inc": [ - 4037 + 4036 ], "_set": [ - 4051 + 4050 ], "where": [ - 4035 + 4034 ], "__typename": [ 80 @@ -95072,13 +95064,13 @@ export default { }, "servers_var_pop_order_by": { "max_players": [ - 2952 + 2951 ], "port": [ - 2952 + 2951 ], "tv_port": [ - 2952 + 2951 ], "__typename": [ 80 @@ -95100,13 +95092,13 @@ export default { }, "servers_var_samp_order_by": { "max_players": [ - 2952 + 2951 ], "port": [ - 2952 + 2951 ], "tv_port": [ - 2952 + 2951 ], "__typename": [ 80 @@ -95128,13 +95120,13 @@ export default { }, "servers_variance_order_by": { "max_players": [ - 2952 + 2951 ], "port": [ - 2952 + 2951 ], "tv_port": [ - 2952 + 2951 ], "__typename": [ 80 @@ -95153,10 +95145,10 @@ export default { }, "settings_aggregate": { "aggregate": [ - 4072 + 4071 ], "nodes": [ - 4070 + 4069 ], "__typename": [ 80 @@ -95167,7 +95159,7 @@ export default { 40, { "columns": [ - 4082, + 4081, "[settings_select_column!]" ], "distinct": [ @@ -95176,10 +95168,10 @@ export default { } ], "max": [ - 4076 + 4075 ], "min": [ - 4077 + 4076 ], "__typename": [ 80 @@ -95187,13 +95179,13 @@ export default { }, "settings_bool_exp": { "_and": [ - 4073 + 4072 ], "_not": [ - 4073 + 4072 ], "_or": [ - 4073 + 4072 ], "name": [ 82 @@ -95244,7 +95236,7 @@ export default { 40 ], "returning": [ - 4070 + 4069 ], "__typename": [ 80 @@ -95252,13 +95244,13 @@ export default { }, "settings_on_conflict": { "constraint": [ - 4074 + 4073 ], "update_columns": [ - 4086 + 4085 ], "where": [ - 4073 + 4072 ], "__typename": [ 80 @@ -95266,10 +95258,10 @@ export default { }, "settings_order_by": { "name": [ - 2952 + 2951 ], "value": [ - 2952 + 2951 ], "__typename": [ 80 @@ -95297,10 +95289,10 @@ export default { }, "settings_stream_cursor_input": { "initial_value": [ - 4085 + 4084 ], "ordering": [ - 314 + 313 ], "__typename": [ 80 @@ -95320,10 +95312,10 @@ export default { "settings_update_column": {}, "settings_updates": { "_set": [ - 4083 + 4082 ], "where": [ - 4073 + 4072 ], "__typename": [ 80 @@ -95332,31 +95324,31 @@ export default { "smallint": {}, "smallint_comparison_exp": { "_eq": [ - 4088 + 4087 ], "_gt": [ - 4088 + 4087 ], "_gte": [ - 4088 + 4087 ], "_in": [ - 4088 + 4087 ], "_is_null": [ 5 ], "_lt": [ - 4088 + 4087 ], "_lte": [ - 4088 + 4087 ], "_neq": [ - 4088 + 4087 ], "_nin": [ - 4088 + 4087 ], "__typename": [ 80 @@ -95364,16 +95356,16 @@ export default { }, "steam_account_claims": { "created_at": [ - 4499 + 4498 ], "id": [ - 4999 + 4998 ], "k8s_job_name": [ 80 ], "node": [ - 1699 + 1698 ], "node_id": [ 80 @@ -95382,10 +95374,10 @@ export default { 80 ], "steam_account": [ - 4114 + 4113 ], "steam_account_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -95393,10 +95385,10 @@ export default { }, "steam_account_claims_aggregate": { "aggregate": [ - 4094 + 4093 ], "nodes": [ - 4090 + 4089 ], "__typename": [ 80 @@ -95404,7 +95396,7 @@ export default { }, "steam_account_claims_aggregate_bool_exp": { "count": [ - 4093 + 4092 ], "__typename": [ 80 @@ -95412,13 +95404,13 @@ export default { }, "steam_account_claims_aggregate_bool_exp_count": { "arguments": [ - 4108 + 4107 ], "distinct": [ 5 ], "filter": [ - 4097 + 4096 ], "predicate": [ 41 @@ -95432,7 +95424,7 @@ export default { 40, { "columns": [ - 4108, + 4107, "[steam_account_claims_select_column!]" ], "distinct": [ @@ -95441,10 +95433,10 @@ export default { } ], "max": [ - 4100 + 4099 ], "min": [ - 4102 + 4101 ], "__typename": [ 80 @@ -95452,13 +95444,13 @@ export default { }, "steam_account_claims_aggregate_order_by": { "count": [ - 2952 + 2951 ], "max": [ - 4101 + 4100 ], "min": [ - 4103 + 4102 ], "__typename": [ 80 @@ -95466,10 +95458,10 @@ export default { }, "steam_account_claims_arr_rel_insert_input": { "data": [ - 4099 + 4098 ], "on_conflict": [ - 4105 + 4104 ], "__typename": [ 80 @@ -95477,25 +95469,25 @@ export default { }, "steam_account_claims_bool_exp": { "_and": [ - 4097 + 4096 ], "_not": [ - 4097 + 4096 ], "_or": [ - 4097 + 4096 ], "created_at": [ - 4500 + 4499 ], "id": [ - 5001 + 5000 ], "k8s_job_name": [ 82 ], "node": [ - 1711 + 1710 ], "node_id": [ 82 @@ -95504,10 +95496,10 @@ export default { 82 ], "steam_account": [ - 4118 + 4117 ], "steam_account_id": [ - 5001 + 5000 ], "__typename": [ 80 @@ -95516,16 +95508,16 @@ export default { "steam_account_claims_constraint": {}, "steam_account_claims_insert_input": { "created_at": [ - 4499 + 4498 ], "id": [ - 4999 + 4998 ], "k8s_job_name": [ 80 ], "node": [ - 1723 + 1722 ], "node_id": [ 80 @@ -95534,10 +95526,10 @@ export default { 80 ], "steam_account": [ - 4125 + 4124 ], "steam_account_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -95545,10 +95537,10 @@ export default { }, "steam_account_claims_max_fields": { "created_at": [ - 4499 + 4498 ], "id": [ - 4999 + 4998 ], "k8s_job_name": [ 80 @@ -95560,7 +95552,7 @@ export default { 80 ], "steam_account_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -95568,22 +95560,22 @@ export default { }, "steam_account_claims_max_order_by": { "created_at": [ - 2952 + 2951 ], "id": [ - 2952 + 2951 ], "k8s_job_name": [ - 2952 + 2951 ], "node_id": [ - 2952 + 2951 ], "purpose": [ - 2952 + 2951 ], "steam_account_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -95591,10 +95583,10 @@ export default { }, "steam_account_claims_min_fields": { "created_at": [ - 4499 + 4498 ], "id": [ - 4999 + 4998 ], "k8s_job_name": [ 80 @@ -95606,7 +95598,7 @@ export default { 80 ], "steam_account_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -95614,22 +95606,22 @@ export default { }, "steam_account_claims_min_order_by": { "created_at": [ - 2952 + 2951 ], "id": [ - 2952 + 2951 ], "k8s_job_name": [ - 2952 + 2951 ], "node_id": [ - 2952 + 2951 ], "purpose": [ - 2952 + 2951 ], "steam_account_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -95640,7 +95632,7 @@ export default { 40 ], "returning": [ - 4090 + 4089 ], "__typename": [ 80 @@ -95648,13 +95640,13 @@ export default { }, "steam_account_claims_on_conflict": { "constraint": [ - 4098 + 4097 ], "update_columns": [ - 4112 + 4111 ], "where": [ - 4097 + 4096 ], "__typename": [ 80 @@ -95662,28 +95654,28 @@ export default { }, "steam_account_claims_order_by": { "created_at": [ - 2952 + 2951 ], "id": [ - 2952 + 2951 ], "k8s_job_name": [ - 2952 + 2951 ], "node": [ - 1725 + 1724 ], "node_id": [ - 2952 + 2951 ], "purpose": [ - 2952 + 2951 ], "steam_account": [ - 4127 + 4126 ], "steam_account_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -95691,7 +95683,7 @@ export default { }, "steam_account_claims_pk_columns_input": { "id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -95700,10 +95692,10 @@ export default { "steam_account_claims_select_column": {}, "steam_account_claims_set_input": { "created_at": [ - 4499 + 4498 ], "id": [ - 4999 + 4998 ], "k8s_job_name": [ 80 @@ -95715,7 +95707,7 @@ export default { 80 ], "steam_account_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -95723,10 +95715,10 @@ export default { }, "steam_account_claims_stream_cursor_input": { "initial_value": [ - 4111 + 4110 ], "ordering": [ - 314 + 313 ], "__typename": [ 80 @@ -95734,10 +95726,10 @@ export default { }, "steam_account_claims_stream_cursor_value_input": { "created_at": [ - 4499 + 4498 ], "id": [ - 4999 + 4998 ], "k8s_job_name": [ 80 @@ -95749,7 +95741,7 @@ export default { 80 ], "steam_account_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -95758,10 +95750,10 @@ export default { "steam_account_claims_update_column": {}, "steam_account_claims_updates": { "_set": [ - 4109 + 4108 ], "where": [ - 4097 + 4096 ], "__typename": [ 80 @@ -95769,10 +95761,10 @@ export default { }, "steam_accounts": { "claims": [ - 4090, + 4089, { "distinct_on": [ - 4108, + 4107, "[steam_account_claims_select_column!]" ], "limit": [ @@ -95782,19 +95774,19 @@ export default { 40 ], "order_by": [ - 4106, + 4105, "[steam_account_claims_order_by!]" ], "where": [ - 4097 + 4096 ] } ], "claims_aggregate": [ - 4091, + 4090, { "distinct_on": [ - 4108, + 4107, "[steam_account_claims_select_column!]" ], "limit": [ @@ -95804,25 +95796,25 @@ export default { 40 ], "order_by": [ - 4106, + 4105, "[steam_account_claims_order_by!]" ], "where": [ - 4097 + 4096 ] } ], "created_at": [ - 4499 + 4498 ], "friend_capacity": [ 40 ], "id": [ - 4999 + 4998 ], "last_node": [ - 1699 + 1698 ], "last_node_id": [ 80 @@ -95837,10 +95829,10 @@ export default { 40 ], "steamid64": [ - 258 + 257 ], "updated_at": [ - 4499 + 4498 ], "username": [ 80 @@ -95851,10 +95843,10 @@ export default { }, "steam_accounts_aggregate": { "aggregate": [ - 4116 + 4115 ], "nodes": [ - 4114 + 4113 ], "__typename": [ 80 @@ -95862,13 +95854,13 @@ export default { }, "steam_accounts_aggregate_fields": { "avg": [ - 4117 + 4116 ], "count": [ 40, { "columns": [ - 4129, + 4128, "[steam_accounts_select_column!]" ], "distinct": [ @@ -95877,31 +95869,31 @@ export default { } ], "max": [ - 4122 + 4121 ], "min": [ - 4123 + 4122 ], "stddev": [ - 4131 + 4130 ], "stddev_pop": [ - 4132 + 4131 ], "stddev_samp": [ - 4133 + 4132 ], "sum": [ - 4136 + 4135 ], "var_pop": [ - 4139 + 4138 ], "var_samp": [ - 4140 + 4139 ], "variance": [ - 4141 + 4140 ], "__typename": [ 80 @@ -95923,31 +95915,31 @@ export default { }, "steam_accounts_bool_exp": { "_and": [ - 4118 + 4117 ], "_not": [ - 4118 + 4117 ], "_or": [ - 4118 + 4117 ], "claims": [ - 4097 + 4096 ], "claims_aggregate": [ - 4092 + 4091 ], "created_at": [ - 4500 + 4499 ], "friend_capacity": [ 41 ], "id": [ - 5001 + 5000 ], "last_node": [ - 1711 + 1710 ], "last_node_id": [ 82 @@ -95962,10 +95954,10 @@ export default { 41 ], "steamid64": [ - 260 + 259 ], "updated_at": [ - 4500 + 4499 ], "username": [ 82 @@ -95983,7 +95975,7 @@ export default { 40 ], "steamid64": [ - 258 + 257 ], "__typename": [ 80 @@ -95991,19 +95983,19 @@ export default { }, "steam_accounts_insert_input": { "claims": [ - 4096 + 4095 ], "created_at": [ - 4499 + 4498 ], "friend_capacity": [ 40 ], "id": [ - 4999 + 4998 ], "last_node": [ - 1723 + 1722 ], "last_node_id": [ 80 @@ -96018,10 +96010,10 @@ export default { 40 ], "steamid64": [ - 258 + 257 ], "updated_at": [ - 4499 + 4498 ], "username": [ 80 @@ -96032,13 +96024,13 @@ export default { }, "steam_accounts_max_fields": { "created_at": [ - 4499 + 4498 ], "friend_capacity": [ 40 ], "id": [ - 4999 + 4998 ], "last_node_id": [ 80 @@ -96053,10 +96045,10 @@ export default { 40 ], "steamid64": [ - 258 + 257 ], "updated_at": [ - 4499 + 4498 ], "username": [ 80 @@ -96067,13 +96059,13 @@ export default { }, "steam_accounts_min_fields": { "created_at": [ - 4499 + 4498 ], "friend_capacity": [ 40 ], "id": [ - 4999 + 4998 ], "last_node_id": [ 80 @@ -96088,10 +96080,10 @@ export default { 40 ], "steamid64": [ - 258 + 257 ], "updated_at": [ - 4499 + 4498 ], "username": [ 80 @@ -96105,7 +96097,7 @@ export default { 40 ], "returning": [ - 4114 + 4113 ], "__typename": [ 80 @@ -96113,10 +96105,10 @@ export default { }, "steam_accounts_obj_rel_insert_input": { "data": [ - 4121 + 4120 ], "on_conflict": [ - 4126 + 4125 ], "__typename": [ 80 @@ -96124,13 +96116,13 @@ export default { }, "steam_accounts_on_conflict": { "constraint": [ - 4119 + 4118 ], "update_columns": [ - 4137 + 4136 ], "where": [ - 4118 + 4117 ], "__typename": [ 80 @@ -96138,40 +96130,40 @@ export default { }, "steam_accounts_order_by": { "claims_aggregate": [ - 4095 + 4094 ], "created_at": [ - 2952 + 2951 ], "friend_capacity": [ - 2952 + 2951 ], "id": [ - 2952 + 2951 ], "last_node": [ - 1725 + 1724 ], "last_node_id": [ - 2952 + 2951 ], "password": [ - 2952 + 2951 ], "role": [ - 2952 + 2951 ], "steam_level": [ - 2952 + 2951 ], "steamid64": [ - 2952 + 2951 ], "updated_at": [ - 2952 + 2951 ], "username": [ - 2952 + 2951 ], "__typename": [ 80 @@ -96179,7 +96171,7 @@ export default { }, "steam_accounts_pk_columns_input": { "id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -96188,13 +96180,13 @@ export default { "steam_accounts_select_column": {}, "steam_accounts_set_input": { "created_at": [ - 4499 + 4498 ], "friend_capacity": [ 40 ], "id": [ - 4999 + 4998 ], "last_node_id": [ 80 @@ -96209,10 +96201,10 @@ export default { 40 ], "steamid64": [ - 258 + 257 ], "updated_at": [ - 4499 + 4498 ], "username": [ 80 @@ -96265,10 +96257,10 @@ export default { }, "steam_accounts_stream_cursor_input": { "initial_value": [ - 4135 + 4134 ], "ordering": [ - 314 + 313 ], "__typename": [ 80 @@ -96276,13 +96268,13 @@ export default { }, "steam_accounts_stream_cursor_value_input": { "created_at": [ - 4499 + 4498 ], "friend_capacity": [ 40 ], "id": [ - 4999 + 4998 ], "last_node_id": [ 80 @@ -96297,10 +96289,10 @@ export default { 40 ], "steamid64": [ - 258 + 257 ], "updated_at": [ - 4499 + 4498 ], "username": [ 80 @@ -96317,7 +96309,7 @@ export default { 40 ], "steamid64": [ - 258 + 257 ], "__typename": [ 80 @@ -96326,13 +96318,13 @@ export default { "steam_accounts_update_column": {}, "steam_accounts_updates": { "_inc": [ - 4120 + 4119 ], "_set": [ - 4130 + 4129 ], "where": [ - 4118 + 4117 ], "__typename": [ 80 @@ -96382,19 +96374,19 @@ export default { }, "system_alerts": { "created_at": [ - 4499 + 4498 ], "created_by": [ - 258 + 257 ], "dismissible": [ 5 ], "expires_at": [ - 4499 + 4498 ], "id": [ - 4999 + 4998 ], "is_active": [ 5 @@ -96406,10 +96398,10 @@ export default { 80 ], "type": [ - 1212 + 1211 ], "updated_at": [ - 4499 + 4498 ], "__typename": [ 80 @@ -96417,10 +96409,10 @@ export default { }, "system_alerts_aggregate": { "aggregate": [ - 4144 + 4143 ], "nodes": [ - 4142 + 4141 ], "__typename": [ 80 @@ -96428,13 +96420,13 @@ export default { }, "system_alerts_aggregate_fields": { "avg": [ - 4145 + 4144 ], "count": [ 40, { "columns": [ - 4156, + 4155, "[system_alerts_select_column!]" ], "distinct": [ @@ -96443,31 +96435,31 @@ export default { } ], "max": [ - 4150 + 4149 ], "min": [ - 4151 + 4150 ], "stddev": [ - 4158 + 4157 ], "stddev_pop": [ - 4159 + 4158 ], "stddev_samp": [ - 4160 + 4159 ], "sum": [ - 4163 + 4162 ], "var_pop": [ - 4166 + 4165 ], "var_samp": [ - 4167 + 4166 ], "variance": [ - 4168 + 4167 ], "__typename": [ 80 @@ -96483,28 +96475,28 @@ export default { }, "system_alerts_bool_exp": { "_and": [ - 4146 + 4145 ], "_not": [ - 4146 + 4145 ], "_or": [ - 4146 + 4145 ], "created_at": [ - 4500 + 4499 ], "created_by": [ - 260 + 259 ], "dismissible": [ 6 ], "expires_at": [ - 4500 + 4499 ], "id": [ - 5001 + 5000 ], "is_active": [ 6 @@ -96516,10 +96508,10 @@ export default { 82 ], "type": [ - 1213 + 1212 ], "updated_at": [ - 4500 + 4499 ], "__typename": [ 80 @@ -96528,7 +96520,7 @@ export default { "system_alerts_constraint": {}, "system_alerts_inc_input": { "created_by": [ - 258 + 257 ], "__typename": [ 80 @@ -96536,19 +96528,19 @@ export default { }, "system_alerts_insert_input": { "created_at": [ - 4499 + 4498 ], "created_by": [ - 258 + 257 ], "dismissible": [ 5 ], "expires_at": [ - 4499 + 4498 ], "id": [ - 4999 + 4998 ], "is_active": [ 5 @@ -96560,10 +96552,10 @@ export default { 80 ], "type": [ - 1212 + 1211 ], "updated_at": [ - 4499 + 4498 ], "__typename": [ 80 @@ -96571,16 +96563,16 @@ export default { }, "system_alerts_max_fields": { "created_at": [ - 4499 + 4498 ], "created_by": [ - 258 + 257 ], "expires_at": [ - 4499 + 4498 ], "id": [ - 4999 + 4998 ], "message": [ 80 @@ -96589,7 +96581,7 @@ export default { 80 ], "updated_at": [ - 4499 + 4498 ], "__typename": [ 80 @@ -96597,16 +96589,16 @@ export default { }, "system_alerts_min_fields": { "created_at": [ - 4499 + 4498 ], "created_by": [ - 258 + 257 ], "expires_at": [ - 4499 + 4498 ], "id": [ - 4999 + 4998 ], "message": [ 80 @@ -96615,7 +96607,7 @@ export default { 80 ], "updated_at": [ - 4499 + 4498 ], "__typename": [ 80 @@ -96626,7 +96618,7 @@ export default { 40 ], "returning": [ - 4142 + 4141 ], "__typename": [ 80 @@ -96634,13 +96626,13 @@ export default { }, "system_alerts_on_conflict": { "constraint": [ - 4147 + 4146 ], "update_columns": [ - 4164 + 4163 ], "where": [ - 4146 + 4145 ], "__typename": [ 80 @@ -96648,34 +96640,34 @@ export default { }, "system_alerts_order_by": { "created_at": [ - 2952 + 2951 ], "created_by": [ - 2952 + 2951 ], "dismissible": [ - 2952 + 2951 ], "expires_at": [ - 2952 + 2951 ], "id": [ - 2952 + 2951 ], "is_active": [ - 2952 + 2951 ], "message": [ - 2952 + 2951 ], "title": [ - 2952 + 2951 ], "type": [ - 2952 + 2951 ], "updated_at": [ - 2952 + 2951 ], "__typename": [ 80 @@ -96683,7 +96675,7 @@ export default { }, "system_alerts_pk_columns_input": { "id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -96692,19 +96684,19 @@ export default { "system_alerts_select_column": {}, "system_alerts_set_input": { "created_at": [ - 4499 + 4498 ], "created_by": [ - 258 + 257 ], "dismissible": [ 5 ], "expires_at": [ - 4499 + 4498 ], "id": [ - 4999 + 4998 ], "is_active": [ 5 @@ -96716,10 +96708,10 @@ export default { 80 ], "type": [ - 1212 + 1211 ], "updated_at": [ - 4499 + 4498 ], "__typename": [ 80 @@ -96751,10 +96743,10 @@ export default { }, "system_alerts_stream_cursor_input": { "initial_value": [ - 4162 + 4161 ], "ordering": [ - 314 + 313 ], "__typename": [ 80 @@ -96762,19 +96754,19 @@ export default { }, "system_alerts_stream_cursor_value_input": { "created_at": [ - 4499 + 4498 ], "created_by": [ - 258 + 257 ], "dismissible": [ 5 ], "expires_at": [ - 4499 + 4498 ], "id": [ - 4999 + 4998 ], "is_active": [ 5 @@ -96786,10 +96778,10 @@ export default { 80 ], "type": [ - 1212 + 1211 ], "updated_at": [ - 4499 + 4498 ], "__typename": [ 80 @@ -96797,7 +96789,7 @@ export default { }, "system_alerts_sum_fields": { "created_by": [ - 258 + 257 ], "__typename": [ 80 @@ -96806,13 +96798,13 @@ export default { "system_alerts_update_column": {}, "system_alerts_updates": { "_inc": [ - 4148 + 4147 ], "_set": [ - 4157 + 4156 ], "where": [ - 4146 + 4145 ], "__typename": [ 80 @@ -96844,28 +96836,28 @@ export default { }, "team_invites": { "created_at": [ - 4499 + 4498 ], "id": [ - 4999 + 4998 ], "invited_by": [ - 3910 + 3909 ], "invited_by_player_steam_id": [ - 258 + 257 ], "player": [ - 3910 + 3909 ], "steam_id": [ - 258 + 257 ], "team": [ - 4452 + 4451 ], "team_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -96873,10 +96865,10 @@ export default { }, "team_invites_aggregate": { "aggregate": [ - 4173 + 4172 ], "nodes": [ - 4169 + 4168 ], "__typename": [ 80 @@ -96884,7 +96876,7 @@ export default { }, "team_invites_aggregate_bool_exp": { "count": [ - 4172 + 4171 ], "__typename": [ 80 @@ -96892,13 +96884,13 @@ export default { }, "team_invites_aggregate_bool_exp_count": { "arguments": [ - 4190 + 4189 ], "distinct": [ 5 ], "filter": [ - 4178 + 4177 ], "predicate": [ 41 @@ -96909,13 +96901,13 @@ export default { }, "team_invites_aggregate_fields": { "avg": [ - 4176 + 4175 ], "count": [ 40, { "columns": [ - 4190, + 4189, "[team_invites_select_column!]" ], "distinct": [ @@ -96923,6 +96915,44 @@ export default { ] } ], + "max": [ + 4181 + ], + "min": [ + 4183 + ], + "stddev": [ + 4191 + ], + "stddev_pop": [ + 4193 + ], + "stddev_samp": [ + 4195 + ], + "sum": [ + 4199 + ], + "var_pop": [ + 4203 + ], + "var_samp": [ + 4205 + ], + "variance": [ + 4207 + ], + "__typename": [ + 80 + ] + }, + "team_invites_aggregate_order_by": { + "avg": [ + 4176 + ], + "count": [ + 2951 + ], "max": [ 4182 ], @@ -96954,50 +96984,12 @@ export default { 80 ] }, - "team_invites_aggregate_order_by": { - "avg": [ - 4177 - ], - "count": [ - 2952 - ], - "max": [ - 4183 - ], - "min": [ - 4185 - ], - "stddev": [ - 4193 - ], - "stddev_pop": [ - 4195 - ], - "stddev_samp": [ - 4197 - ], - "sum": [ - 4201 - ], - "var_pop": [ - 4205 - ], - "var_samp": [ - 4207 - ], - "variance": [ - 4209 - ], - "__typename": [ - 80 - ] - }, "team_invites_arr_rel_insert_input": { "data": [ - 4181 + 4180 ], "on_conflict": [ - 4187 + 4186 ], "__typename": [ 80 @@ -97016,10 +97008,10 @@ export default { }, "team_invites_avg_order_by": { "invited_by_player_steam_id": [ - 2952 + 2951 ], "steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -97027,37 +97019,37 @@ export default { }, "team_invites_bool_exp": { "_and": [ - 4178 + 4177 ], "_not": [ - 4178 + 4177 ], "_or": [ - 4178 + 4177 ], "created_at": [ - 4500 + 4499 ], "id": [ - 5001 + 5000 ], "invited_by": [ - 3914 + 3913 ], "invited_by_player_steam_id": [ - 260 + 259 ], "player": [ - 3914 + 3913 ], "steam_id": [ - 260 + 259 ], "team": [ - 4463 + 4462 ], "team_id": [ - 5001 + 5000 ], "__typename": [ 80 @@ -97066,10 +97058,10 @@ export default { "team_invites_constraint": {}, "team_invites_inc_input": { "invited_by_player_steam_id": [ - 258 + 257 ], "steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -97077,28 +97069,28 @@ export default { }, "team_invites_insert_input": { "created_at": [ - 4499 + 4498 ], "id": [ - 4999 + 4998 ], "invited_by": [ - 3921 + 3920 ], "invited_by_player_steam_id": [ - 258 + 257 ], "player": [ - 3921 + 3920 ], "steam_id": [ - 258 + 257 ], "team": [ - 4472 + 4471 ], "team_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -97106,19 +97098,19 @@ export default { }, "team_invites_max_fields": { "created_at": [ - 4499 + 4498 ], "id": [ - 4999 + 4998 ], "invited_by_player_steam_id": [ - 258 + 257 ], "steam_id": [ - 258 + 257 ], "team_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -97126,19 +97118,19 @@ export default { }, "team_invites_max_order_by": { "created_at": [ - 2952 + 2951 ], "id": [ - 2952 + 2951 ], "invited_by_player_steam_id": [ - 2952 + 2951 ], "steam_id": [ - 2952 + 2951 ], "team_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -97146,19 +97138,19 @@ export default { }, "team_invites_min_fields": { "created_at": [ - 4499 + 4498 ], "id": [ - 4999 + 4998 ], "invited_by_player_steam_id": [ - 258 + 257 ], "steam_id": [ - 258 + 257 ], "team_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -97166,19 +97158,19 @@ export default { }, "team_invites_min_order_by": { "created_at": [ - 2952 + 2951 ], "id": [ - 2952 + 2951 ], "invited_by_player_steam_id": [ - 2952 + 2951 ], "steam_id": [ - 2952 + 2951 ], "team_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -97189,7 +97181,7 @@ export default { 40 ], "returning": [ - 4169 + 4168 ], "__typename": [ 80 @@ -97197,13 +97189,13 @@ export default { }, "team_invites_on_conflict": { "constraint": [ - 4179 + 4178 ], "update_columns": [ - 4202 + 4201 ], "where": [ - 4178 + 4177 ], "__typename": [ 80 @@ -97211,28 +97203,28 @@ export default { }, "team_invites_order_by": { "created_at": [ - 2952 + 2951 ], "id": [ - 2952 + 2951 ], "invited_by": [ - 3923 + 3922 ], "invited_by_player_steam_id": [ - 2952 + 2951 ], "player": [ - 3923 + 3922 ], "steam_id": [ - 2952 + 2951 ], "team": [ - 4474 + 4473 ], "team_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -97240,7 +97232,7 @@ export default { }, "team_invites_pk_columns_input": { "id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -97249,19 +97241,19 @@ export default { "team_invites_select_column": {}, "team_invites_set_input": { "created_at": [ - 4499 + 4498 ], "id": [ - 4999 + 4998 ], "invited_by_player_steam_id": [ - 258 + 257 ], "steam_id": [ - 258 + 257 ], "team_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -97280,10 +97272,10 @@ export default { }, "team_invites_stddev_order_by": { "invited_by_player_steam_id": [ - 2952 + 2951 ], "steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -97302,10 +97294,10 @@ export default { }, "team_invites_stddev_pop_order_by": { "invited_by_player_steam_id": [ - 2952 + 2951 ], "steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -97324,10 +97316,10 @@ export default { }, "team_invites_stddev_samp_order_by": { "invited_by_player_steam_id": [ - 2952 + 2951 ], "steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -97335,10 +97327,10 @@ export default { }, "team_invites_stream_cursor_input": { "initial_value": [ - 4199 + 4198 ], "ordering": [ - 314 + 313 ], "__typename": [ 80 @@ -97346,19 +97338,19 @@ export default { }, "team_invites_stream_cursor_value_input": { "created_at": [ - 4499 + 4498 ], "id": [ - 4999 + 4998 ], "invited_by_player_steam_id": [ - 258 + 257 ], "steam_id": [ - 258 + 257 ], "team_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -97366,10 +97358,10 @@ export default { }, "team_invites_sum_fields": { "invited_by_player_steam_id": [ - 258 + 257 ], "steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -97377,10 +97369,10 @@ export default { }, "team_invites_sum_order_by": { "invited_by_player_steam_id": [ - 2952 + 2951 ], "steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -97389,13 +97381,13 @@ export default { "team_invites_update_column": {}, "team_invites_updates": { "_inc": [ - 4180 + 4179 ], "_set": [ - 4191 + 4190 ], "where": [ - 4178 + 4177 ], "__typename": [ 80 @@ -97414,10 +97406,10 @@ export default { }, "team_invites_var_pop_order_by": { "invited_by_player_steam_id": [ - 2952 + 2951 ], "steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -97436,10 +97428,10 @@ export default { }, "team_invites_var_samp_order_by": { "invited_by_player_steam_id": [ - 2952 + 2951 ], "steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -97458,10 +97450,10 @@ export default { }, "team_invites_variance_order_by": { "invited_by_player_steam_id": [ - 2952 + 2951 ], "steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -97472,25 +97464,25 @@ export default { 5 ], "player": [ - 3910 + 3909 ], "player_steam_id": [ - 258 + 257 ], "role": [ - 1232 + 1231 ], "roster_image_url": [ 80 ], "status": [ - 1253 + 1252 ], "team": [ - 4452 + 4451 ], "team_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -97498,10 +97490,10 @@ export default { }, "team_roster_aggregate": { "aggregate": [ - 4216 + 4215 ], "nodes": [ - 4210 + 4209 ], "__typename": [ 80 @@ -97509,13 +97501,13 @@ export default { }, "team_roster_aggregate_bool_exp": { "bool_and": [ - 4213 + 4212 ], "bool_or": [ - 4214 + 4213 ], "count": [ - 4215 + 4214 ], "__typename": [ 80 @@ -97523,13 +97515,13 @@ export default { }, "team_roster_aggregate_bool_exp_bool_and": { "arguments": [ - 4234 + 4233 ], "distinct": [ 5 ], "filter": [ - 4221 + 4220 ], "predicate": [ 6 @@ -97540,13 +97532,13 @@ export default { }, "team_roster_aggregate_bool_exp_bool_or": { "arguments": [ - 4235 + 4234 ], "distinct": [ 5 ], "filter": [ - 4221 + 4220 ], "predicate": [ 6 @@ -97557,13 +97549,13 @@ export default { }, "team_roster_aggregate_bool_exp_count": { "arguments": [ - 4233 + 4232 ], "distinct": [ 5 ], "filter": [ - 4221 + 4220 ], "predicate": [ 41 @@ -97574,13 +97566,13 @@ export default { }, "team_roster_aggregate_fields": { "avg": [ - 4219 + 4218 ], "count": [ 40, { "columns": [ - 4233, + 4232, "[team_roster_select_column!]" ], "distinct": [ @@ -97588,6 +97580,44 @@ export default { ] } ], + "max": [ + 4224 + ], + "min": [ + 4226 + ], + "stddev": [ + 4236 + ], + "stddev_pop": [ + 4238 + ], + "stddev_samp": [ + 4240 + ], + "sum": [ + 4244 + ], + "var_pop": [ + 4248 + ], + "var_samp": [ + 4250 + ], + "variance": [ + 4252 + ], + "__typename": [ + 80 + ] + }, + "team_roster_aggregate_order_by": { + "avg": [ + 4219 + ], + "count": [ + 2951 + ], "max": [ 4225 ], @@ -97619,50 +97649,12 @@ export default { 80 ] }, - "team_roster_aggregate_order_by": { - "avg": [ - 4220 - ], - "count": [ - 2952 - ], - "max": [ - 4226 - ], - "min": [ - 4228 - ], - "stddev": [ - 4238 - ], - "stddev_pop": [ - 4240 - ], - "stddev_samp": [ - 4242 - ], - "sum": [ - 4246 - ], - "var_pop": [ - 4250 - ], - "var_samp": [ - 4252 - ], - "variance": [ - 4254 - ], - "__typename": [ - 80 - ] - }, "team_roster_arr_rel_insert_input": { "data": [ - 4224 + 4223 ], "on_conflict": [ - 4230 + 4229 ], "__typename": [ 80 @@ -97678,7 +97670,7 @@ export default { }, "team_roster_avg_order_by": { "player_steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -97686,37 +97678,37 @@ export default { }, "team_roster_bool_exp": { "_and": [ - 4221 + 4220 ], "_not": [ - 4221 + 4220 ], "_or": [ - 4221 + 4220 ], "coach": [ 6 ], "player": [ - 3914 + 3913 ], "player_steam_id": [ - 260 + 259 ], "role": [ - 1233 + 1232 ], "roster_image_url": [ 82 ], "status": [ - 1254 + 1253 ], "team": [ - 4463 + 4462 ], "team_id": [ - 5001 + 5000 ], "__typename": [ 80 @@ -97725,7 +97717,7 @@ export default { "team_roster_constraint": {}, "team_roster_inc_input": { "player_steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -97736,25 +97728,25 @@ export default { 5 ], "player": [ - 3921 + 3920 ], "player_steam_id": [ - 258 + 257 ], "role": [ - 1232 + 1231 ], "roster_image_url": [ 80 ], "status": [ - 1253 + 1252 ], "team": [ - 4472 + 4471 ], "team_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -97762,13 +97754,13 @@ export default { }, "team_roster_max_fields": { "player_steam_id": [ - 258 + 257 ], "roster_image_url": [ 80 ], "team_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -97776,13 +97768,13 @@ export default { }, "team_roster_max_order_by": { "player_steam_id": [ - 2952 + 2951 ], "roster_image_url": [ - 2952 + 2951 ], "team_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -97790,13 +97782,13 @@ export default { }, "team_roster_min_fields": { "player_steam_id": [ - 258 + 257 ], "roster_image_url": [ 80 ], "team_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -97804,13 +97796,13 @@ export default { }, "team_roster_min_order_by": { "player_steam_id": [ - 2952 + 2951 ], "roster_image_url": [ - 2952 + 2951 ], "team_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -97821,7 +97813,7 @@ export default { 40 ], "returning": [ - 4210 + 4209 ], "__typename": [ 80 @@ -97829,13 +97821,13 @@ export default { }, "team_roster_on_conflict": { "constraint": [ - 4222 + 4221 ], "update_columns": [ - 4247 + 4246 ], "where": [ - 4221 + 4220 ], "__typename": [ 80 @@ -97843,28 +97835,28 @@ export default { }, "team_roster_order_by": { "coach": [ - 2952 + 2951 ], "player": [ - 3923 + 3922 ], "player_steam_id": [ - 2952 + 2951 ], "role": [ - 2952 + 2951 ], "roster_image_url": [ - 2952 + 2951 ], "status": [ - 2952 + 2951 ], "team": [ - 4474 + 4473 ], "team_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -97872,10 +97864,10 @@ export default { }, "team_roster_pk_columns_input": { "player_steam_id": [ - 258 + 257 ], "team_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -97889,19 +97881,19 @@ export default { 5 ], "player_steam_id": [ - 258 + 257 ], "role": [ - 1232 + 1231 ], "roster_image_url": [ 80 ], "status": [ - 1253 + 1252 ], "team_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -97917,7 +97909,7 @@ export default { }, "team_roster_stddev_order_by": { "player_steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -97933,7 +97925,7 @@ export default { }, "team_roster_stddev_pop_order_by": { "player_steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -97949,7 +97941,7 @@ export default { }, "team_roster_stddev_samp_order_by": { "player_steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -97957,10 +97949,10 @@ export default { }, "team_roster_stream_cursor_input": { "initial_value": [ - 4244 + 4243 ], "ordering": [ - 314 + 313 ], "__typename": [ 80 @@ -97971,19 +97963,19 @@ export default { 5 ], "player_steam_id": [ - 258 + 257 ], "role": [ - 1232 + 1231 ], "roster_image_url": [ 80 ], "status": [ - 1253 + 1252 ], "team_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -97991,7 +97983,7 @@ export default { }, "team_roster_sum_fields": { "player_steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -97999,7 +97991,7 @@ export default { }, "team_roster_sum_order_by": { "player_steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -98008,13 +98000,13 @@ export default { "team_roster_update_column": {}, "team_roster_updates": { "_inc": [ - 4223 + 4222 ], "_set": [ - 4236 + 4235 ], "where": [ - 4221 + 4220 ], "__typename": [ 80 @@ -98030,7 +98022,7 @@ export default { }, "team_roster_var_pop_order_by": { "player_steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -98046,7 +98038,7 @@ export default { }, "team_roster_var_samp_order_by": { "player_steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -98062,7 +98054,7 @@ export default { }, "team_roster_variance_order_by": { "player_steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -98070,7 +98062,7 @@ export default { }, "team_scrim_alerts": { "created_at": [ - 4499 + 4498 ], "elo_max": [ 40 @@ -98082,19 +98074,19 @@ export default { 5 ], "id": [ - 4999 + 4998 ], "last_notified_at": [ - 4499 + 4498 ], "regions": [ 80 ], "team": [ - 4452 + 4451 ], "team_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -98102,10 +98094,10 @@ export default { }, "team_scrim_alerts_aggregate": { "aggregate": [ - 4257 + 4256 ], "nodes": [ - 4255 + 4254 ], "__typename": [ 80 @@ -98113,13 +98105,13 @@ export default { }, "team_scrim_alerts_aggregate_fields": { "avg": [ - 4258 + 4257 ], "count": [ 40, { "columns": [ - 4269, + 4268, "[team_scrim_alerts_select_column!]" ], "distinct": [ @@ -98128,31 +98120,31 @@ export default { } ], "max": [ - 4263 + 4262 ], "min": [ - 4264 + 4263 ], "stddev": [ - 4271 + 4270 ], "stddev_pop": [ - 4272 + 4271 ], "stddev_samp": [ - 4273 + 4272 ], "sum": [ - 4276 + 4275 ], "var_pop": [ - 4279 + 4278 ], "var_samp": [ - 4280 + 4279 ], "variance": [ - 4281 + 4280 ], "__typename": [ 80 @@ -98171,16 +98163,16 @@ export default { }, "team_scrim_alerts_bool_exp": { "_and": [ - 4259 + 4258 ], "_not": [ - 4259 + 4258 ], "_or": [ - 4259 + 4258 ], "created_at": [ - 4500 + 4499 ], "elo_max": [ 41 @@ -98192,19 +98184,19 @@ export default { 6 ], "id": [ - 5001 + 5000 ], "last_notified_at": [ - 4500 + 4499 ], "regions": [ 81 ], "team": [ - 4463 + 4462 ], "team_id": [ - 5001 + 5000 ], "__typename": [ 80 @@ -98224,7 +98216,7 @@ export default { }, "team_scrim_alerts_insert_input": { "created_at": [ - 4499 + 4498 ], "elo_max": [ 40 @@ -98236,19 +98228,19 @@ export default { 5 ], "id": [ - 4999 + 4998 ], "last_notified_at": [ - 4499 + 4498 ], "regions": [ 80 ], "team": [ - 4472 + 4471 ], "team_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -98256,7 +98248,7 @@ export default { }, "team_scrim_alerts_max_fields": { "created_at": [ - 4499 + 4498 ], "elo_max": [ 40 @@ -98265,16 +98257,16 @@ export default { 40 ], "id": [ - 4999 + 4998 ], "last_notified_at": [ - 4499 + 4498 ], "regions": [ 80 ], "team_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -98282,7 +98274,7 @@ export default { }, "team_scrim_alerts_min_fields": { "created_at": [ - 4499 + 4498 ], "elo_max": [ 40 @@ -98291,16 +98283,16 @@ export default { 40 ], "id": [ - 4999 + 4998 ], "last_notified_at": [ - 4499 + 4498 ], "regions": [ 80 ], "team_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -98311,7 +98303,7 @@ export default { 40 ], "returning": [ - 4255 + 4254 ], "__typename": [ 80 @@ -98319,13 +98311,13 @@ export default { }, "team_scrim_alerts_on_conflict": { "constraint": [ - 4260 + 4259 ], "update_columns": [ - 4277 + 4276 ], "where": [ - 4259 + 4258 ], "__typename": [ 80 @@ -98333,31 +98325,31 @@ export default { }, "team_scrim_alerts_order_by": { "created_at": [ - 2952 + 2951 ], "elo_max": [ - 2952 + 2951 ], "elo_min": [ - 2952 + 2951 ], "enabled": [ - 2952 + 2951 ], "id": [ - 2952 + 2951 ], "last_notified_at": [ - 2952 + 2951 ], "regions": [ - 2952 + 2951 ], "team": [ - 4474 + 4473 ], "team_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -98365,7 +98357,7 @@ export default { }, "team_scrim_alerts_pk_columns_input": { "id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -98374,7 +98366,7 @@ export default { "team_scrim_alerts_select_column": {}, "team_scrim_alerts_set_input": { "created_at": [ - 4499 + 4498 ], "elo_max": [ 40 @@ -98386,16 +98378,16 @@ export default { 5 ], "id": [ - 4999 + 4998 ], "last_notified_at": [ - 4499 + 4498 ], "regions": [ 80 ], "team_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -98436,10 +98428,10 @@ export default { }, "team_scrim_alerts_stream_cursor_input": { "initial_value": [ - 4275 + 4274 ], "ordering": [ - 314 + 313 ], "__typename": [ 80 @@ -98447,7 +98439,7 @@ export default { }, "team_scrim_alerts_stream_cursor_value_input": { "created_at": [ - 4499 + 4498 ], "elo_max": [ 40 @@ -98459,16 +98451,16 @@ export default { 5 ], "id": [ - 4999 + 4998 ], "last_notified_at": [ - 4499 + 4498 ], "regions": [ 80 ], "team_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -98488,13 +98480,13 @@ export default { "team_scrim_alerts_update_column": {}, "team_scrim_alerts_updates": { "_inc": [ - 4261 + 4260 ], "_set": [ - 4270 + 4269 ], "where": [ - 4259 + 4258 ], "__typename": [ 80 @@ -98535,25 +98527,25 @@ export default { }, "team_scrim_availability": { "created_at": [ - 4499 + 4498 ], "ends_at": [ - 4499 + 4498 ], "id": [ - 4999 + 4998 ], "recurring_weekly": [ 5 ], "starts_at": [ - 4499 + 4498 ], "team": [ - 4452 + 4451 ], "team_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -98561,10 +98553,10 @@ export default { }, "team_scrim_availability_aggregate": { "aggregate": [ - 4288 + 4287 ], "nodes": [ - 4282 + 4281 ], "__typename": [ 80 @@ -98572,13 +98564,13 @@ export default { }, "team_scrim_availability_aggregate_bool_exp": { "bool_and": [ - 4285 + 4284 ], "bool_or": [ - 4286 + 4285 ], "count": [ - 4287 + 4286 ], "__typename": [ 80 @@ -98586,13 +98578,13 @@ export default { }, "team_scrim_availability_aggregate_bool_exp_bool_and": { "arguments": [ - 4303 + 4302 ], "distinct": [ 5 ], "filter": [ - 4291 + 4290 ], "predicate": [ 6 @@ -98603,13 +98595,13 @@ export default { }, "team_scrim_availability_aggregate_bool_exp_bool_or": { "arguments": [ - 4304 + 4303 ], "distinct": [ 5 ], "filter": [ - 4291 + 4290 ], "predicate": [ 6 @@ -98620,13 +98612,13 @@ export default { }, "team_scrim_availability_aggregate_bool_exp_count": { "arguments": [ - 4302 + 4301 ], "distinct": [ 5 ], "filter": [ - 4291 + 4290 ], "predicate": [ 41 @@ -98640,7 +98632,7 @@ export default { 40, { "columns": [ - 4302, + 4301, "[team_scrim_availability_select_column!]" ], "distinct": [ @@ -98649,10 +98641,10 @@ export default { } ], "max": [ - 4294 + 4293 ], "min": [ - 4296 + 4295 ], "__typename": [ 80 @@ -98660,13 +98652,13 @@ export default { }, "team_scrim_availability_aggregate_order_by": { "count": [ - 2952 + 2951 ], "max": [ - 4295 + 4294 ], "min": [ - 4297 + 4296 ], "__typename": [ 80 @@ -98674,10 +98666,10 @@ export default { }, "team_scrim_availability_arr_rel_insert_input": { "data": [ - 4293 + 4292 ], "on_conflict": [ - 4299 + 4298 ], "__typename": [ 80 @@ -98685,34 +98677,34 @@ export default { }, "team_scrim_availability_bool_exp": { "_and": [ - 4291 + 4290 ], "_not": [ - 4291 + 4290 ], "_or": [ - 4291 + 4290 ], "created_at": [ - 4500 + 4499 ], "ends_at": [ - 4500 + 4499 ], "id": [ - 5001 + 5000 ], "recurring_weekly": [ 6 ], "starts_at": [ - 4500 + 4499 ], "team": [ - 4463 + 4462 ], "team_id": [ - 5001 + 5000 ], "__typename": [ 80 @@ -98721,25 +98713,25 @@ export default { "team_scrim_availability_constraint": {}, "team_scrim_availability_insert_input": { "created_at": [ - 4499 + 4498 ], "ends_at": [ - 4499 + 4498 ], "id": [ - 4999 + 4998 ], "recurring_weekly": [ 5 ], "starts_at": [ - 4499 + 4498 ], "team": [ - 4472 + 4471 ], "team_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -98747,19 +98739,19 @@ export default { }, "team_scrim_availability_max_fields": { "created_at": [ - 4499 + 4498 ], "ends_at": [ - 4499 + 4498 ], "id": [ - 4999 + 4998 ], "starts_at": [ - 4499 + 4498 ], "team_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -98767,19 +98759,19 @@ export default { }, "team_scrim_availability_max_order_by": { "created_at": [ - 2952 + 2951 ], "ends_at": [ - 2952 + 2951 ], "id": [ - 2952 + 2951 ], "starts_at": [ - 2952 + 2951 ], "team_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -98787,19 +98779,19 @@ export default { }, "team_scrim_availability_min_fields": { "created_at": [ - 4499 + 4498 ], "ends_at": [ - 4499 + 4498 ], "id": [ - 4999 + 4998 ], "starts_at": [ - 4499 + 4498 ], "team_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -98807,19 +98799,19 @@ export default { }, "team_scrim_availability_min_order_by": { "created_at": [ - 2952 + 2951 ], "ends_at": [ - 2952 + 2951 ], "id": [ - 2952 + 2951 ], "starts_at": [ - 2952 + 2951 ], "team_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -98830,7 +98822,7 @@ export default { 40 ], "returning": [ - 4282 + 4281 ], "__typename": [ 80 @@ -98838,13 +98830,13 @@ export default { }, "team_scrim_availability_on_conflict": { "constraint": [ - 4292 + 4291 ], "update_columns": [ - 4308 + 4307 ], "where": [ - 4291 + 4290 ], "__typename": [ 80 @@ -98852,25 +98844,25 @@ export default { }, "team_scrim_availability_order_by": { "created_at": [ - 2952 + 2951 ], "ends_at": [ - 2952 + 2951 ], "id": [ - 2952 + 2951 ], "recurring_weekly": [ - 2952 + 2951 ], "starts_at": [ - 2952 + 2951 ], "team": [ - 4474 + 4473 ], "team_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -98878,7 +98870,7 @@ export default { }, "team_scrim_availability_pk_columns_input": { "id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -98889,22 +98881,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": [ - 4499 + 4498 ], "ends_at": [ - 4499 + 4498 ], "id": [ - 4999 + 4998 ], "recurring_weekly": [ 5 ], "starts_at": [ - 4499 + 4498 ], "team_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -98912,10 +98904,10 @@ export default { }, "team_scrim_availability_stream_cursor_input": { "initial_value": [ - 4307 + 4306 ], "ordering": [ - 314 + 313 ], "__typename": [ 80 @@ -98923,22 +98915,22 @@ export default { }, "team_scrim_availability_stream_cursor_value_input": { "created_at": [ - 4499 + 4498 ], "ends_at": [ - 4499 + 4498 ], "id": [ - 4999 + 4998 ], "recurring_weekly": [ 5 ], "starts_at": [ - 4499 + 4498 ], "team_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -98947,10 +98939,10 @@ export default { "team_scrim_availability_update_column": {}, "team_scrim_availability_updates": { "_set": [ - 4305 + 4304 ], "where": [ - 4291 + 4290 ], "__typename": [ 80 @@ -98958,31 +98950,31 @@ export default { }, "team_scrim_request_proposals": { "created_at": [ - 4499 + 4498 ], "id": [ - 4999 + 4998 ], "proposed_by": [ - 3910 + 3909 ], "proposed_by_steam_id": [ - 258 + 257 ], "proposed_by_team": [ - 4452 + 4451 ], "proposed_by_team_id": [ - 4999 + 4998 ], "proposed_scheduled_at": [ - 4499 + 4498 ], "request": [ - 4351 + 4350 ], "request_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -98990,10 +98982,10 @@ export default { }, "team_scrim_request_proposals_aggregate": { "aggregate": [ - 4314 + 4313 ], "nodes": [ - 4310 + 4309 ], "__typename": [ 80 @@ -99001,7 +98993,7 @@ export default { }, "team_scrim_request_proposals_aggregate_bool_exp": { "count": [ - 4313 + 4312 ], "__typename": [ 80 @@ -99009,13 +99001,13 @@ export default { }, "team_scrim_request_proposals_aggregate_bool_exp_count": { "arguments": [ - 4331 + 4330 ], "distinct": [ 5 ], "filter": [ - 4319 + 4318 ], "predicate": [ 41 @@ -99026,13 +99018,13 @@ export default { }, "team_scrim_request_proposals_aggregate_fields": { "avg": [ - 4317 + 4316 ], "count": [ 40, { "columns": [ - 4331, + 4330, "[team_scrim_request_proposals_select_column!]" ], "distinct": [ @@ -99041,31 +99033,31 @@ export default { } ], "max": [ - 4323 + 4322 ], "min": [ - 4325 + 4324 ], "stddev": [ - 4333 + 4332 ], "stddev_pop": [ - 4335 + 4334 ], "stddev_samp": [ - 4337 + 4336 ], "sum": [ - 4341 + 4340 ], "var_pop": [ - 4345 + 4344 ], "var_samp": [ - 4347 + 4346 ], "variance": [ - 4349 + 4348 ], "__typename": [ 80 @@ -99073,37 +99065,37 @@ export default { }, "team_scrim_request_proposals_aggregate_order_by": { "avg": [ - 4318 + 4317 ], "count": [ - 2952 + 2951 ], "max": [ - 4324 + 4323 ], "min": [ - 4326 + 4325 ], "stddev": [ - 4334 + 4333 ], "stddev_pop": [ - 4336 + 4335 ], "stddev_samp": [ - 4338 + 4337 ], "sum": [ - 4342 + 4341 ], "var_pop": [ - 4346 + 4345 ], "var_samp": [ - 4348 + 4347 ], "variance": [ - 4350 + 4349 ], "__typename": [ 80 @@ -99111,10 +99103,10 @@ export default { }, "team_scrim_request_proposals_arr_rel_insert_input": { "data": [ - 4322 + 4321 ], "on_conflict": [ - 4328 + 4327 ], "__typename": [ 80 @@ -99130,7 +99122,7 @@ export default { }, "team_scrim_request_proposals_avg_order_by": { "proposed_by_steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -99138,40 +99130,40 @@ export default { }, "team_scrim_request_proposals_bool_exp": { "_and": [ - 4319 + 4318 ], "_not": [ - 4319 + 4318 ], "_or": [ - 4319 + 4318 ], "created_at": [ - 4500 + 4499 ], "id": [ - 5001 + 5000 ], "proposed_by": [ - 3914 + 3913 ], "proposed_by_steam_id": [ - 260 + 259 ], "proposed_by_team": [ - 4463 + 4462 ], "proposed_by_team_id": [ - 5001 + 5000 ], "proposed_scheduled_at": [ - 4500 + 4499 ], "request": [ - 4362 + 4361 ], "request_id": [ - 5001 + 5000 ], "__typename": [ 80 @@ -99180,7 +99172,7 @@ export default { "team_scrim_request_proposals_constraint": {}, "team_scrim_request_proposals_inc_input": { "proposed_by_steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -99188,31 +99180,31 @@ export default { }, "team_scrim_request_proposals_insert_input": { "created_at": [ - 4499 + 4498 ], "id": [ - 4999 + 4998 ], "proposed_by": [ - 3921 + 3920 ], "proposed_by_steam_id": [ - 258 + 257 ], "proposed_by_team": [ - 4472 + 4471 ], "proposed_by_team_id": [ - 4999 + 4998 ], "proposed_scheduled_at": [ - 4499 + 4498 ], "request": [ - 4371 + 4370 ], "request_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -99220,22 +99212,22 @@ export default { }, "team_scrim_request_proposals_max_fields": { "created_at": [ - 4499 + 4498 ], "id": [ - 4999 + 4998 ], "proposed_by_steam_id": [ - 258 + 257 ], "proposed_by_team_id": [ - 4999 + 4998 ], "proposed_scheduled_at": [ - 4499 + 4498 ], "request_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -99243,22 +99235,22 @@ export default { }, "team_scrim_request_proposals_max_order_by": { "created_at": [ - 2952 + 2951 ], "id": [ - 2952 + 2951 ], "proposed_by_steam_id": [ - 2952 + 2951 ], "proposed_by_team_id": [ - 2952 + 2951 ], "proposed_scheduled_at": [ - 2952 + 2951 ], "request_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -99266,22 +99258,22 @@ export default { }, "team_scrim_request_proposals_min_fields": { "created_at": [ - 4499 + 4498 ], "id": [ - 4999 + 4998 ], "proposed_by_steam_id": [ - 258 + 257 ], "proposed_by_team_id": [ - 4999 + 4998 ], "proposed_scheduled_at": [ - 4499 + 4498 ], "request_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -99289,22 +99281,22 @@ export default { }, "team_scrim_request_proposals_min_order_by": { "created_at": [ - 2952 + 2951 ], "id": [ - 2952 + 2951 ], "proposed_by_steam_id": [ - 2952 + 2951 ], "proposed_by_team_id": [ - 2952 + 2951 ], "proposed_scheduled_at": [ - 2952 + 2951 ], "request_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -99315,7 +99307,7 @@ export default { 40 ], "returning": [ - 4310 + 4309 ], "__typename": [ 80 @@ -99323,13 +99315,13 @@ export default { }, "team_scrim_request_proposals_on_conflict": { "constraint": [ - 4320 + 4319 ], "update_columns": [ - 4343 + 4342 ], "where": [ - 4319 + 4318 ], "__typename": [ 80 @@ -99337,31 +99329,31 @@ export default { }, "team_scrim_request_proposals_order_by": { "created_at": [ - 2952 + 2951 ], "id": [ - 2952 + 2951 ], "proposed_by": [ - 3923 + 3922 ], "proposed_by_steam_id": [ - 2952 + 2951 ], "proposed_by_team": [ - 4474 + 4473 ], "proposed_by_team_id": [ - 2952 + 2951 ], "proposed_scheduled_at": [ - 2952 + 2951 ], "request": [ - 4373 + 4372 ], "request_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -99369,7 +99361,7 @@ export default { }, "team_scrim_request_proposals_pk_columns_input": { "id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -99378,22 +99370,22 @@ export default { "team_scrim_request_proposals_select_column": {}, "team_scrim_request_proposals_set_input": { "created_at": [ - 4499 + 4498 ], "id": [ - 4999 + 4998 ], "proposed_by_steam_id": [ - 258 + 257 ], "proposed_by_team_id": [ - 4999 + 4998 ], "proposed_scheduled_at": [ - 4499 + 4498 ], "request_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -99409,7 +99401,7 @@ export default { }, "team_scrim_request_proposals_stddev_order_by": { "proposed_by_steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -99425,7 +99417,7 @@ export default { }, "team_scrim_request_proposals_stddev_pop_order_by": { "proposed_by_steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -99441,7 +99433,7 @@ export default { }, "team_scrim_request_proposals_stddev_samp_order_by": { "proposed_by_steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -99449,10 +99441,10 @@ export default { }, "team_scrim_request_proposals_stream_cursor_input": { "initial_value": [ - 4340 + 4339 ], "ordering": [ - 314 + 313 ], "__typename": [ 80 @@ -99460,22 +99452,22 @@ export default { }, "team_scrim_request_proposals_stream_cursor_value_input": { "created_at": [ - 4499 + 4498 ], "id": [ - 4999 + 4998 ], "proposed_by_steam_id": [ - 258 + 257 ], "proposed_by_team_id": [ - 4999 + 4998 ], "proposed_scheduled_at": [ - 4499 + 4498 ], "request_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -99483,7 +99475,7 @@ export default { }, "team_scrim_request_proposals_sum_fields": { "proposed_by_steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -99491,7 +99483,7 @@ export default { }, "team_scrim_request_proposals_sum_order_by": { "proposed_by_steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -99500,13 +99492,13 @@ export default { "team_scrim_request_proposals_update_column": {}, "team_scrim_request_proposals_updates": { "_inc": [ - 4321 + 4320 ], "_set": [ - 4332 + 4331 ], "where": [ - 4319 + 4318 ], "__typename": [ 80 @@ -99522,7 +99514,7 @@ export default { }, "team_scrim_request_proposals_var_pop_order_by": { "proposed_by_steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -99538,7 +99530,7 @@ export default { }, "team_scrim_request_proposals_var_samp_order_by": { "proposed_by_steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -99554,7 +99546,7 @@ export default { }, "team_scrim_request_proposals_variance_order_by": { "proposed_by_steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -99565,55 +99557,55 @@ export default { 5 ], "awaiting_team": [ - 4452 + 4451 ], "awaiting_team_id": [ - 4999 + 4998 ], "canceled_by_team_id": [ - 4999 + 4998 ], "canceled_late": [ 5 ], "created_at": [ - 4499 + 4498 ], "expires_at": [ - 4499 + 4498 ], "from_team": [ - 4452 + 4451 ], "from_team_checked_in": [ 5 ], "from_team_id": [ - 4999 + 4998 ], "id": [ - 4999 + 4998 ], "match": [ - 2767 + 2766 ], "match_id": [ - 4999 + 4998 ], "match_options": [ - 2647 + 2646 ], "match_options_id": [ - 4999 + 4998 ], "match_outcome": [ 80 ], "proposals": [ - 4310, + 4309, { "distinct_on": [ - 4331, + 4330, "[team_scrim_request_proposals_select_column!]" ], "limit": [ @@ -99623,19 +99615,19 @@ export default { 40 ], "order_by": [ - 4329, + 4328, "[team_scrim_request_proposals_order_by!]" ], "where": [ - 4319 + 4318 ] } ], "proposals_aggregate": [ - 4311, + 4310, { "distinct_on": [ - 4331, + 4330, "[team_scrim_request_proposals_select_column!]" ], "limit": [ @@ -99645,40 +99637,40 @@ export default { 40 ], "order_by": [ - 4329, + 4328, "[team_scrim_request_proposals_order_by!]" ], "where": [ - 4319 + 4318 ] } ], "proposed_scheduled_at": [ - 4499 + 4498 ], "region": [ 80 ], "requested_by": [ - 3910 + 3909 ], "requested_by_steam_id": [ - 258 + 257 ], "responded_at": [ - 4499 + 4498 ], "status": [ - 1152 + 1151 ], "to_team": [ - 4452 + 4451 ], "to_team_checked_in": [ 5 ], "to_team_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -99686,10 +99678,10 @@ export default { }, "team_scrim_requests_aggregate": { "aggregate": [ - 4357 + 4356 ], "nodes": [ - 4351 + 4350 ], "__typename": [ 80 @@ -99697,13 +99689,13 @@ export default { }, "team_scrim_requests_aggregate_bool_exp": { "bool_and": [ - 4354 + 4353 ], "bool_or": [ - 4355 + 4354 ], "count": [ - 4356 + 4355 ], "__typename": [ 80 @@ -99711,13 +99703,13 @@ export default { }, "team_scrim_requests_aggregate_bool_exp_bool_and": { "arguments": [ - 4376 + 4375 ], "distinct": [ 5 ], "filter": [ - 4362 + 4361 ], "predicate": [ 6 @@ -99728,13 +99720,13 @@ export default { }, "team_scrim_requests_aggregate_bool_exp_bool_or": { "arguments": [ - 4377 + 4376 ], "distinct": [ 5 ], "filter": [ - 4362 + 4361 ], "predicate": [ 6 @@ -99745,13 +99737,13 @@ export default { }, "team_scrim_requests_aggregate_bool_exp_count": { "arguments": [ - 4375 + 4374 ], "distinct": [ 5 ], "filter": [ - 4362 + 4361 ], "predicate": [ 41 @@ -99762,13 +99754,13 @@ export default { }, "team_scrim_requests_aggregate_fields": { "avg": [ - 4360 + 4359 ], "count": [ 40, { "columns": [ - 4375, + 4374, "[team_scrim_requests_select_column!]" ], "distinct": [ @@ -99776,6 +99768,44 @@ export default { ] } ], + "max": [ + 4365 + ], + "min": [ + 4367 + ], + "stddev": [ + 4378 + ], + "stddev_pop": [ + 4380 + ], + "stddev_samp": [ + 4382 + ], + "sum": [ + 4386 + ], + "var_pop": [ + 4390 + ], + "var_samp": [ + 4392 + ], + "variance": [ + 4394 + ], + "__typename": [ + 80 + ] + }, + "team_scrim_requests_aggregate_order_by": { + "avg": [ + 4360 + ], + "count": [ + 2951 + ], "max": [ 4366 ], @@ -99807,50 +99837,12 @@ export default { 80 ] }, - "team_scrim_requests_aggregate_order_by": { - "avg": [ - 4361 - ], - "count": [ - 2952 - ], - "max": [ - 4367 - ], - "min": [ - 4369 - ], - "stddev": [ - 4380 - ], - "stddev_pop": [ - 4382 - ], - "stddev_samp": [ - 4384 - ], - "sum": [ - 4388 - ], - "var_pop": [ - 4392 - ], - "var_samp": [ - 4394 - ], - "variance": [ - 4396 - ], - "__typename": [ - 80 - ] - }, "team_scrim_requests_arr_rel_insert_input": { "data": [ - 4365 + 4364 ], "on_conflict": [ - 4372 + 4371 ], "__typename": [ 80 @@ -99866,7 +99858,7 @@ export default { }, "team_scrim_requests_avg_order_by": { "requested_by_steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -99874,94 +99866,94 @@ export default { }, "team_scrim_requests_bool_exp": { "_and": [ - 4362 + 4361 ], "_not": [ - 4362 + 4361 ], "_or": [ - 4362 + 4361 ], "auto_generated": [ 6 ], "awaiting_team": [ - 4463 + 4462 ], "awaiting_team_id": [ - 5001 + 5000 ], "canceled_by_team_id": [ - 5001 + 5000 ], "canceled_late": [ 6 ], "created_at": [ - 4500 + 4499 ], "expires_at": [ - 4500 + 4499 ], "from_team": [ - 4463 + 4462 ], "from_team_checked_in": [ 6 ], "from_team_id": [ - 5001 + 5000 ], "id": [ - 5001 + 5000 ], "match": [ - 2776 + 2775 ], "match_id": [ - 5001 + 5000 ], "match_options": [ - 2651 + 2650 ], "match_options_id": [ - 5001 + 5000 ], "match_outcome": [ 82 ], "proposals": [ - 4319 + 4318 ], "proposals_aggregate": [ - 4312 + 4311 ], "proposed_scheduled_at": [ - 4500 + 4499 ], "region": [ 82 ], "requested_by": [ - 3914 + 3913 ], "requested_by_steam_id": [ - 260 + 259 ], "responded_at": [ - 4500 + 4499 ], "status": [ - 1153 + 1152 ], "to_team": [ - 4463 + 4462 ], "to_team_checked_in": [ 6 ], "to_team_id": [ - 5001 + 5000 ], "__typename": [ 80 @@ -99970,7 +99962,7 @@ export default { "team_scrim_requests_constraint": {}, "team_scrim_requests_inc_input": { "requested_by_steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -99981,79 +99973,79 @@ export default { 5 ], "awaiting_team": [ - 4472 + 4471 ], "awaiting_team_id": [ - 4999 + 4998 ], "canceled_by_team_id": [ - 4999 + 4998 ], "canceled_late": [ 5 ], "created_at": [ - 4499 + 4498 ], "expires_at": [ - 4499 + 4498 ], "from_team": [ - 4472 + 4471 ], "from_team_checked_in": [ 5 ], "from_team_id": [ - 4999 + 4998 ], "id": [ - 4999 + 4998 ], "match": [ - 2785 + 2784 ], "match_id": [ - 4999 + 4998 ], "match_options": [ - 2658 + 2657 ], "match_options_id": [ - 4999 + 4998 ], "match_outcome": [ 80 ], "proposals": [ - 4316 + 4315 ], "proposed_scheduled_at": [ - 4499 + 4498 ], "region": [ 80 ], "requested_by": [ - 3921 + 3920 ], "requested_by_steam_id": [ - 258 + 257 ], "responded_at": [ - 4499 + 4498 ], "status": [ - 1152 + 1151 ], "to_team": [ - 4472 + 4471 ], "to_team_checked_in": [ 5 ], "to_team_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -100061,46 +100053,46 @@ export default { }, "team_scrim_requests_max_fields": { "awaiting_team_id": [ - 4999 + 4998 ], "canceled_by_team_id": [ - 4999 + 4998 ], "created_at": [ - 4499 + 4498 ], "expires_at": [ - 4499 + 4498 ], "from_team_id": [ - 4999 + 4998 ], "id": [ - 4999 + 4998 ], "match_id": [ - 4999 + 4998 ], "match_options_id": [ - 4999 + 4998 ], "match_outcome": [ 80 ], "proposed_scheduled_at": [ - 4499 + 4498 ], "region": [ 80 ], "requested_by_steam_id": [ - 258 + 257 ], "responded_at": [ - 4499 + 4498 ], "to_team_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -100108,46 +100100,46 @@ export default { }, "team_scrim_requests_max_order_by": { "awaiting_team_id": [ - 2952 + 2951 ], "canceled_by_team_id": [ - 2952 + 2951 ], "created_at": [ - 2952 + 2951 ], "expires_at": [ - 2952 + 2951 ], "from_team_id": [ - 2952 + 2951 ], "id": [ - 2952 + 2951 ], "match_id": [ - 2952 + 2951 ], "match_options_id": [ - 2952 + 2951 ], "match_outcome": [ - 2952 + 2951 ], "proposed_scheduled_at": [ - 2952 + 2951 ], "region": [ - 2952 + 2951 ], "requested_by_steam_id": [ - 2952 + 2951 ], "responded_at": [ - 2952 + 2951 ], "to_team_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -100155,46 +100147,46 @@ export default { }, "team_scrim_requests_min_fields": { "awaiting_team_id": [ - 4999 + 4998 ], "canceled_by_team_id": [ - 4999 + 4998 ], "created_at": [ - 4499 + 4498 ], "expires_at": [ - 4499 + 4498 ], "from_team_id": [ - 4999 + 4998 ], "id": [ - 4999 + 4998 ], "match_id": [ - 4999 + 4998 ], "match_options_id": [ - 4999 + 4998 ], "match_outcome": [ 80 ], "proposed_scheduled_at": [ - 4499 + 4498 ], "region": [ 80 ], "requested_by_steam_id": [ - 258 + 257 ], "responded_at": [ - 4499 + 4498 ], "to_team_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -100202,46 +100194,46 @@ export default { }, "team_scrim_requests_min_order_by": { "awaiting_team_id": [ - 2952 + 2951 ], "canceled_by_team_id": [ - 2952 + 2951 ], "created_at": [ - 2952 + 2951 ], "expires_at": [ - 2952 + 2951 ], "from_team_id": [ - 2952 + 2951 ], "id": [ - 2952 + 2951 ], "match_id": [ - 2952 + 2951 ], "match_options_id": [ - 2952 + 2951 ], "match_outcome": [ - 2952 + 2951 ], "proposed_scheduled_at": [ - 2952 + 2951 ], "region": [ - 2952 + 2951 ], "requested_by_steam_id": [ - 2952 + 2951 ], "responded_at": [ - 2952 + 2951 ], "to_team_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -100252,7 +100244,7 @@ export default { 40 ], "returning": [ - 4351 + 4350 ], "__typename": [ 80 @@ -100260,10 +100252,10 @@ export default { }, "team_scrim_requests_obj_rel_insert_input": { "data": [ - 4365 + 4364 ], "on_conflict": [ - 4372 + 4371 ], "__typename": [ 80 @@ -100271,13 +100263,13 @@ export default { }, "team_scrim_requests_on_conflict": { "constraint": [ - 4363 + 4362 ], "update_columns": [ - 4389 + 4388 ], "where": [ - 4362 + 4361 ], "__typename": [ 80 @@ -100285,82 +100277,82 @@ export default { }, "team_scrim_requests_order_by": { "auto_generated": [ - 2952 + 2951 ], "awaiting_team": [ - 4474 + 4473 ], "awaiting_team_id": [ - 2952 + 2951 ], "canceled_by_team_id": [ - 2952 + 2951 ], "canceled_late": [ - 2952 + 2951 ], "created_at": [ - 2952 + 2951 ], "expires_at": [ - 2952 + 2951 ], "from_team": [ - 4474 + 4473 ], "from_team_checked_in": [ - 2952 + 2951 ], "from_team_id": [ - 2952 + 2951 ], "id": [ - 2952 + 2951 ], "match": [ - 2787 + 2786 ], "match_id": [ - 2952 + 2951 ], "match_options": [ - 2660 + 2659 ], "match_options_id": [ - 2952 + 2951 ], "match_outcome": [ - 2952 + 2951 ], "proposals_aggregate": [ - 4315 + 4314 ], "proposed_scheduled_at": [ - 2952 + 2951 ], "region": [ - 2952 + 2951 ], "requested_by": [ - 3923 + 3922 ], "requested_by_steam_id": [ - 2952 + 2951 ], "responded_at": [ - 2952 + 2951 ], "status": [ - 2952 + 2951 ], "to_team": [ - 4474 + 4473 ], "to_team_checked_in": [ - 2952 + 2951 ], "to_team_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -100368,7 +100360,7 @@ export default { }, "team_scrim_requests_pk_columns_input": { "id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -100382,58 +100374,58 @@ export default { 5 ], "awaiting_team_id": [ - 4999 + 4998 ], "canceled_by_team_id": [ - 4999 + 4998 ], "canceled_late": [ 5 ], "created_at": [ - 4499 + 4498 ], "expires_at": [ - 4499 + 4498 ], "from_team_checked_in": [ 5 ], "from_team_id": [ - 4999 + 4998 ], "id": [ - 4999 + 4998 ], "match_id": [ - 4999 + 4998 ], "match_options_id": [ - 4999 + 4998 ], "match_outcome": [ 80 ], "proposed_scheduled_at": [ - 4499 + 4498 ], "region": [ 80 ], "requested_by_steam_id": [ - 258 + 257 ], "responded_at": [ - 4499 + 4498 ], "status": [ - 1152 + 1151 ], "to_team_checked_in": [ 5 ], "to_team_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -100449,7 +100441,7 @@ export default { }, "team_scrim_requests_stddev_order_by": { "requested_by_steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -100465,7 +100457,7 @@ export default { }, "team_scrim_requests_stddev_pop_order_by": { "requested_by_steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -100481,7 +100473,7 @@ export default { }, "team_scrim_requests_stddev_samp_order_by": { "requested_by_steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -100489,10 +100481,10 @@ export default { }, "team_scrim_requests_stream_cursor_input": { "initial_value": [ - 4386 + 4385 ], "ordering": [ - 314 + 313 ], "__typename": [ 80 @@ -100503,58 +100495,58 @@ export default { 5 ], "awaiting_team_id": [ - 4999 + 4998 ], "canceled_by_team_id": [ - 4999 + 4998 ], "canceled_late": [ 5 ], "created_at": [ - 4499 + 4498 ], "expires_at": [ - 4499 + 4498 ], "from_team_checked_in": [ 5 ], "from_team_id": [ - 4999 + 4998 ], "id": [ - 4999 + 4998 ], "match_id": [ - 4999 + 4998 ], "match_options_id": [ - 4999 + 4998 ], "match_outcome": [ 80 ], "proposed_scheduled_at": [ - 4499 + 4498 ], "region": [ 80 ], "requested_by_steam_id": [ - 258 + 257 ], "responded_at": [ - 4499 + 4498 ], "status": [ - 1152 + 1151 ], "to_team_checked_in": [ 5 ], "to_team_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -100562,7 +100554,7 @@ export default { }, "team_scrim_requests_sum_fields": { "requested_by_steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -100570,7 +100562,7 @@ export default { }, "team_scrim_requests_sum_order_by": { "requested_by_steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -100579,13 +100571,13 @@ export default { "team_scrim_requests_update_column": {}, "team_scrim_requests_updates": { "_inc": [ - 4364 + 4363 ], "_set": [ - 4378 + 4377 ], "where": [ - 4362 + 4361 ], "__typename": [ 80 @@ -100601,7 +100593,7 @@ export default { }, "team_scrim_requests_var_pop_order_by": { "requested_by_steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -100617,7 +100609,7 @@ export default { }, "team_scrim_requests_var_samp_order_by": { "requested_by_steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -100633,7 +100625,7 @@ export default { }, "team_scrim_requests_variance_order_by": { "requested_by_steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -100644,7 +100636,7 @@ export default { 5 ], "created_at": [ - 4499 + 4498 ], "elo_max": [ 40 @@ -100656,10 +100648,10 @@ export default { 5 ], "id": [ - 4999 + 4998 ], "map_ids": [ - 4999 + 4998 ], "notes": [ 80 @@ -100668,13 +100660,13 @@ export default { 80 ], "team": [ - 4452 + 4451 ], "team_id": [ - 4999 + 4998 ], "updated_at": [ - 4499 + 4498 ], "__typename": [ 80 @@ -100682,10 +100674,10 @@ export default { }, "team_scrim_settings_aggregate": { "aggregate": [ - 4399 + 4398 ], "nodes": [ - 4397 + 4396 ], "__typename": [ 80 @@ -100693,13 +100685,13 @@ export default { }, "team_scrim_settings_aggregate_fields": { "avg": [ - 4400 + 4399 ], "count": [ 40, { "columns": [ - 4412, + 4411, "[team_scrim_settings_select_column!]" ], "distinct": [ @@ -100708,31 +100700,31 @@ export default { } ], "max": [ - 4405 + 4404 ], "min": [ - 4406 + 4405 ], "stddev": [ - 4414 + 4413 ], "stddev_pop": [ - 4415 + 4414 ], "stddev_samp": [ - 4416 + 4415 ], "sum": [ - 4419 + 4418 ], "var_pop": [ - 4422 + 4421 ], "var_samp": [ - 4423 + 4422 ], "variance": [ - 4424 + 4423 ], "__typename": [ 80 @@ -100751,19 +100743,19 @@ export default { }, "team_scrim_settings_bool_exp": { "_and": [ - 4401 + 4400 ], "_not": [ - 4401 + 4400 ], "_or": [ - 4401 + 4400 ], "allow_outside_availability": [ 6 ], "created_at": [ - 4500 + 4499 ], "elo_max": [ 41 @@ -100775,10 +100767,10 @@ export default { 6 ], "id": [ - 5001 + 5000 ], "map_ids": [ - 5000 + 4999 ], "notes": [ 82 @@ -100787,13 +100779,13 @@ export default { 81 ], "team": [ - 4463 + 4462 ], "team_id": [ - 5001 + 5000 ], "updated_at": [ - 4500 + 4499 ], "__typename": [ 80 @@ -100816,7 +100808,7 @@ export default { 5 ], "created_at": [ - 4499 + 4498 ], "elo_max": [ 40 @@ -100828,10 +100820,10 @@ export default { 5 ], "id": [ - 4999 + 4998 ], "map_ids": [ - 4999 + 4998 ], "notes": [ 80 @@ -100840,13 +100832,13 @@ export default { 80 ], "team": [ - 4472 + 4471 ], "team_id": [ - 4999 + 4998 ], "updated_at": [ - 4499 + 4498 ], "__typename": [ 80 @@ -100854,7 +100846,7 @@ export default { }, "team_scrim_settings_max_fields": { "created_at": [ - 4499 + 4498 ], "elo_max": [ 40 @@ -100863,10 +100855,10 @@ export default { 40 ], "id": [ - 4999 + 4998 ], "map_ids": [ - 4999 + 4998 ], "notes": [ 80 @@ -100875,10 +100867,10 @@ export default { 80 ], "team_id": [ - 4999 + 4998 ], "updated_at": [ - 4499 + 4498 ], "__typename": [ 80 @@ -100886,7 +100878,7 @@ export default { }, "team_scrim_settings_min_fields": { "created_at": [ - 4499 + 4498 ], "elo_max": [ 40 @@ -100895,10 +100887,10 @@ export default { 40 ], "id": [ - 4999 + 4998 ], "map_ids": [ - 4999 + 4998 ], "notes": [ 80 @@ -100907,10 +100899,10 @@ export default { 80 ], "team_id": [ - 4999 + 4998 ], "updated_at": [ - 4499 + 4498 ], "__typename": [ 80 @@ -100921,7 +100913,7 @@ export default { 40 ], "returning": [ - 4397 + 4396 ], "__typename": [ 80 @@ -100929,10 +100921,10 @@ export default { }, "team_scrim_settings_obj_rel_insert_input": { "data": [ - 4404 + 4403 ], "on_conflict": [ - 4409 + 4408 ], "__typename": [ 80 @@ -100940,13 +100932,13 @@ export default { }, "team_scrim_settings_on_conflict": { "constraint": [ - 4402 + 4401 ], "update_columns": [ - 4420 + 4419 ], "where": [ - 4401 + 4400 ], "__typename": [ 80 @@ -100954,40 +100946,40 @@ export default { }, "team_scrim_settings_order_by": { "allow_outside_availability": [ - 2952 + 2951 ], "created_at": [ - 2952 + 2951 ], "elo_max": [ - 2952 + 2951 ], "elo_min": [ - 2952 + 2951 ], "enabled": [ - 2952 + 2951 ], "id": [ - 2952 + 2951 ], "map_ids": [ - 2952 + 2951 ], "notes": [ - 2952 + 2951 ], "regions": [ - 2952 + 2951 ], "team": [ - 4474 + 4473 ], "team_id": [ - 2952 + 2951 ], "updated_at": [ - 2952 + 2951 ], "__typename": [ 80 @@ -100995,7 +100987,7 @@ export default { }, "team_scrim_settings_pk_columns_input": { "id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -101007,7 +100999,7 @@ export default { 5 ], "created_at": [ - 4499 + 4498 ], "elo_max": [ 40 @@ -101019,10 +101011,10 @@ export default { 5 ], "id": [ - 4999 + 4998 ], "map_ids": [ - 4999 + 4998 ], "notes": [ 80 @@ -101031,10 +101023,10 @@ export default { 80 ], "team_id": [ - 4999 + 4998 ], "updated_at": [ - 4499 + 4498 ], "__typename": [ 80 @@ -101075,10 +101067,10 @@ export default { }, "team_scrim_settings_stream_cursor_input": { "initial_value": [ - 4418 + 4417 ], "ordering": [ - 314 + 313 ], "__typename": [ 80 @@ -101089,7 +101081,7 @@ export default { 5 ], "created_at": [ - 4499 + 4498 ], "elo_max": [ 40 @@ -101101,10 +101093,10 @@ export default { 5 ], "id": [ - 4999 + 4998 ], "map_ids": [ - 4999 + 4998 ], "notes": [ 80 @@ -101113,10 +101105,10 @@ export default { 80 ], "team_id": [ - 4999 + 4998 ], "updated_at": [ - 4499 + 4498 ], "__typename": [ 80 @@ -101136,13 +101128,13 @@ export default { "team_scrim_settings_update_column": {}, "team_scrim_settings_updates": { "_inc": [ - 4403 + 4402 ], "_set": [ - 4413 + 4412 ], "where": [ - 4401 + 4400 ], "__typename": [ 80 @@ -101183,19 +101175,19 @@ export default { }, "team_suggestions": { "created_at": [ - 4499 + 4498 ], "group_hash": [ 80 ], "id": [ - 4999 + 4998 ], "last_notified_at": [ - 4499 + 4498 ], "member_steam_ids": [ - 258 + 257 ], "status": [ 80 @@ -101209,10 +101201,10 @@ export default { }, "team_suggestions_aggregate": { "aggregate": [ - 4427 + 4426 ], "nodes": [ - 4425 + 4424 ], "__typename": [ 80 @@ -101220,13 +101212,13 @@ export default { }, "team_suggestions_aggregate_fields": { "avg": [ - 4428 + 4427 ], "count": [ 40, { "columns": [ - 4439, + 4438, "[team_suggestions_select_column!]" ], "distinct": [ @@ -101235,31 +101227,31 @@ export default { } ], "max": [ - 4433 + 4432 ], "min": [ - 4434 + 4433 ], "stddev": [ - 4441 + 4440 ], "stddev_pop": [ - 4442 + 4441 ], "stddev_samp": [ - 4443 + 4442 ], "sum": [ - 4446 + 4445 ], "var_pop": [ - 4449 + 4448 ], "var_samp": [ - 4450 + 4449 ], "variance": [ - 4451 + 4450 ], "__typename": [ 80 @@ -101275,28 +101267,28 @@ export default { }, "team_suggestions_bool_exp": { "_and": [ - 4429 + 4428 ], "_not": [ - 4429 + 4428 ], "_or": [ - 4429 + 4428 ], "created_at": [ - 4500 + 4499 ], "group_hash": [ 82 ], "id": [ - 5001 + 5000 ], "last_notified_at": [ - 4500 + 4499 ], "member_steam_ids": [ - 259 + 258 ], "status": [ 82 @@ -101319,19 +101311,19 @@ export default { }, "team_suggestions_insert_input": { "created_at": [ - 4499 + 4498 ], "group_hash": [ 80 ], "id": [ - 4999 + 4998 ], "last_notified_at": [ - 4499 + 4498 ], "member_steam_ids": [ - 258 + 257 ], "status": [ 80 @@ -101345,19 +101337,19 @@ export default { }, "team_suggestions_max_fields": { "created_at": [ - 4499 + 4498 ], "group_hash": [ 80 ], "id": [ - 4999 + 4998 ], "last_notified_at": [ - 4499 + 4498 ], "member_steam_ids": [ - 258 + 257 ], "status": [ 80 @@ -101371,19 +101363,19 @@ export default { }, "team_suggestions_min_fields": { "created_at": [ - 4499 + 4498 ], "group_hash": [ 80 ], "id": [ - 4999 + 4998 ], "last_notified_at": [ - 4499 + 4498 ], "member_steam_ids": [ - 258 + 257 ], "status": [ 80 @@ -101400,7 +101392,7 @@ export default { 40 ], "returning": [ - 4425 + 4424 ], "__typename": [ 80 @@ -101408,13 +101400,13 @@ export default { }, "team_suggestions_on_conflict": { "constraint": [ - 4430 + 4429 ], "update_columns": [ - 4447 + 4446 ], "where": [ - 4429 + 4428 ], "__typename": [ 80 @@ -101422,25 +101414,25 @@ export default { }, "team_suggestions_order_by": { "created_at": [ - 2952 + 2951 ], "group_hash": [ - 2952 + 2951 ], "id": [ - 2952 + 2951 ], "last_notified_at": [ - 2952 + 2951 ], "member_steam_ids": [ - 2952 + 2951 ], "status": [ - 2952 + 2951 ], "together_count": [ - 2952 + 2951 ], "__typename": [ 80 @@ -101448,7 +101440,7 @@ export default { }, "team_suggestions_pk_columns_input": { "id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -101457,19 +101449,19 @@ export default { "team_suggestions_select_column": {}, "team_suggestions_set_input": { "created_at": [ - 4499 + 4498 ], "group_hash": [ 80 ], "id": [ - 4999 + 4998 ], "last_notified_at": [ - 4499 + 4498 ], "member_steam_ids": [ - 258 + 257 ], "status": [ 80 @@ -101507,10 +101499,10 @@ export default { }, "team_suggestions_stream_cursor_input": { "initial_value": [ - 4445 + 4444 ], "ordering": [ - 314 + 313 ], "__typename": [ 80 @@ -101518,19 +101510,19 @@ export default { }, "team_suggestions_stream_cursor_value_input": { "created_at": [ - 4499 + 4498 ], "group_hash": [ 80 ], "id": [ - 4999 + 4998 ], "last_notified_at": [ - 4499 + 4498 ], "member_steam_ids": [ - 258 + 257 ], "status": [ 80 @@ -101553,13 +101545,13 @@ export default { "team_suggestions_update_column": {}, "team_suggestions_updates": { "_inc": [ - 4431 + 4430 ], "_set": [ - 4440 + 4439 ], "where": [ - 4429 + 4428 ], "__typename": [ 80 @@ -101594,10 +101586,10 @@ export default { 80 ], "awards": [ - 189, + 188, { "distinct_on": [ - 210, + 209, "[award_recipients_select_column!]" ], "limit": [ @@ -101607,19 +101599,19 @@ export default { 40 ], "order_by": [ - 208, + 207, "[award_recipients_order_by!]" ], "where": [ - 198 + 197 ] } ], "awards_aggregate": [ - 190, + 189, { "distinct_on": [ - 210, + 209, "[award_recipients_select_column!]" ], "limit": [ @@ -101629,11 +101621,11 @@ export default { 40 ], "order_by": [ - 208, + 207, "[award_recipients_order_by!]" ], "where": [ - 198 + 197 ] } ], @@ -101650,19 +101642,19 @@ export default { 5 ], "captain": [ - 3910 + 3909 ], "captain_steam_id": [ - 258 + 257 ], "id": [ - 4999 + 4998 ], "invites": [ - 4169, + 4168, { "distinct_on": [ - 4190, + 4189, "[team_invites_select_column!]" ], "limit": [ @@ -101672,19 +101664,19 @@ export default { 40 ], "order_by": [ - 4188, + 4187, "[team_invites_order_by!]" ], "where": [ - 4178 + 4177 ] } ], "invites_aggregate": [ - 4170, + 4169, { "distinct_on": [ - 4190, + 4189, "[team_invites_select_column!]" ], "limit": [ @@ -101694,11 +101686,11 @@ export default { 40 ], "order_by": [ - 4188, + 4187, "[team_invites_order_by!]" ], "where": [ - 4178 + 4177 ] } ], @@ -101706,10 +101698,10 @@ export default { 5 ], "match_lineups": [ - 2447, + 2446, { "distinct_on": [ - 2469, + 2468, "[match_lineups_select_column!]" ], "limit": [ @@ -101719,19 +101711,19 @@ export default { 40 ], "order_by": [ - 2467, + 2466, "[match_lineups_order_by!]" ], "where": [ - 2456 + 2455 ] } ], "match_lineups_aggregate": [ - 2448, + 2447, { "distinct_on": [ - 2469, + 2468, "[match_lineups_select_column!]" ], "limit": [ @@ -101741,19 +101733,19 @@ export default { 40 ], "order_by": [ - 2467, + 2466, "[match_lineups_order_by!]" ], "where": [ - 2456 + 2455 ] } ], "matches": [ - 2767, + 2766, { "distinct_on": [ - 2789, + 2788, "[matches_select_column!]" ], "limit": [ @@ -101763,11 +101755,11 @@ export default { 40 ], "order_by": [ - 2787, + 2786, "[matches_order_by!]" ], "where": [ - 2776 + 2775 ] } ], @@ -101775,25 +101767,25 @@ export default { 80 ], "owner": [ - 3910 + 3909 ], "owner_steam_id": [ - 258 + 257 ], "ranks": [ - 5683 + 5682 ], "reputation": [ - 5703 + 5702 ], "role": [ 80 ], "roster": [ - 4210, + 4209, { "distinct_on": [ - 4233, + 4232, "[team_roster_select_column!]" ], "limit": [ @@ -101803,19 +101795,19 @@ export default { 40 ], "order_by": [ - 4231, + 4230, "[team_roster_order_by!]" ], "where": [ - 4221 + 4220 ] } ], "roster_aggregate": [ - 4211, + 4210, { "distinct_on": [ - 4233, + 4232, "[team_roster_select_column!]" ], "limit": [ @@ -101825,19 +101817,19 @@ export default { 40 ], "order_by": [ - 4231, + 4230, "[team_roster_order_by!]" ], "where": [ - 4221 + 4220 ] } ], "scrim_availability": [ - 4282, + 4281, { "distinct_on": [ - 4302, + 4301, "[team_scrim_availability_select_column!]" ], "limit": [ @@ -101847,19 +101839,19 @@ export default { 40 ], "order_by": [ - 4300, + 4299, "[team_scrim_availability_order_by!]" ], "where": [ - 4291 + 4290 ] } ], "scrim_availability_aggregate": [ - 4283, + 4282, { "distinct_on": [ - 4302, + 4301, "[team_scrim_availability_select_column!]" ], "limit": [ @@ -101869,25 +101861,25 @@ export default { 40 ], "order_by": [ - 4300, + 4299, "[team_scrim_availability_order_by!]" ], "where": [ - 4291 + 4290 ] } ], "scrim_settings": [ - 4397 + 4396 ], "short_name": [ 80 ], "tournament_teams": [ - 4893, + 4892, { "distinct_on": [ - 4915, + 4914, "[tournament_teams_select_column!]" ], "limit": [ @@ -101897,19 +101889,19 @@ export default { 40 ], "order_by": [ - 4913, + 4912, "[tournament_teams_order_by!]" ], "where": [ - 4902 + 4901 ] } ], "tournament_teams_aggregate": [ - 4894, + 4893, { "distinct_on": [ - 4915, + 4914, "[tournament_teams_select_column!]" ], "limit": [ @@ -101919,11 +101911,11 @@ export default { 40 ], "order_by": [ - 4913, + 4912, "[tournament_teams_order_by!]" ], "where": [ - 4902 + 4901 ] } ], @@ -101933,10 +101925,10 @@ export default { }, "teams_aggregate": { "aggregate": [ - 4458 + 4457 ], "nodes": [ - 4452 + 4451 ], "__typename": [ 80 @@ -101944,13 +101936,13 @@ export default { }, "teams_aggregate_bool_exp": { "bool_and": [ - 4455 + 4454 ], "bool_or": [ - 4456 + 4455 ], "count": [ - 4457 + 4456 ], "__typename": [ 80 @@ -101958,13 +101950,13 @@ export default { }, "teams_aggregate_bool_exp_bool_and": { "arguments": [ - 4477 + 4476 ], "distinct": [ 5 ], "filter": [ - 4463 + 4462 ], "predicate": [ 6 @@ -101975,13 +101967,13 @@ export default { }, "teams_aggregate_bool_exp_bool_or": { "arguments": [ - 4478 + 4477 ], "distinct": [ 5 ], "filter": [ - 4463 + 4462 ], "predicate": [ 6 @@ -101992,13 +101984,13 @@ export default { }, "teams_aggregate_bool_exp_count": { "arguments": [ - 4476 + 4475 ], "distinct": [ 5 ], "filter": [ - 4463 + 4462 ], "predicate": [ 41 @@ -102009,13 +102001,13 @@ export default { }, "teams_aggregate_fields": { "avg": [ - 4461 + 4460 ], "count": [ 40, { "columns": [ - 4476, + 4475, "[teams_select_column!]" ], "distinct": [ @@ -102023,6 +102015,44 @@ export default { ] } ], + "max": [ + 4466 + ], + "min": [ + 4468 + ], + "stddev": [ + 4479 + ], + "stddev_pop": [ + 4481 + ], + "stddev_samp": [ + 4483 + ], + "sum": [ + 4487 + ], + "var_pop": [ + 4491 + ], + "var_samp": [ + 4493 + ], + "variance": [ + 4495 + ], + "__typename": [ + 80 + ] + }, + "teams_aggregate_order_by": { + "avg": [ + 4461 + ], + "count": [ + 2951 + ], "max": [ 4467 ], @@ -102054,50 +102084,12 @@ export default { 80 ] }, - "teams_aggregate_order_by": { - "avg": [ - 4462 - ], - "count": [ - 2952 - ], - "max": [ - 4468 - ], - "min": [ - 4470 - ], - "stddev": [ - 4481 - ], - "stddev_pop": [ - 4483 - ], - "stddev_samp": [ - 4485 - ], - "sum": [ - 4489 - ], - "var_pop": [ - 4493 - ], - "var_samp": [ - 4495 - ], - "variance": [ - 4497 - ], - "__typename": [ - 80 - ] - }, "teams_arr_rel_insert_input": { "data": [ - 4466 + 4465 ], "on_conflict": [ - 4473 + 4472 ], "__typename": [ 80 @@ -102116,10 +102108,10 @@ export default { }, "teams_avg_order_by": { "captain_steam_id": [ - 2952 + 2951 ], "owner_steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -102127,22 +102119,22 @@ export default { }, "teams_bool_exp": { "_and": [ - 4463 + 4462 ], "_not": [ - 4463 + 4462 ], "_or": [ - 4463 + 4462 ], "avatar_url": [ 82 ], "awards": [ - 198 + 197 ], "awards_aggregate": [ - 191 + 190 ], "can_change_role": [ 6 @@ -102157,73 +102149,73 @@ export default { 6 ], "captain": [ - 3914 + 3913 ], "captain_steam_id": [ - 260 + 259 ], "id": [ - 5001 + 5000 ], "invites": [ - 4178 + 4177 ], "invites_aggregate": [ - 4171 + 4170 ], "is_organization": [ 6 ], "match_lineups": [ - 2456 + 2455 ], "match_lineups_aggregate": [ - 2449 + 2448 ], "matches": [ - 2776 + 2775 ], "name": [ 82 ], "owner": [ - 3914 + 3913 ], "owner_steam_id": [ - 260 + 259 ], "ranks": [ - 5687 + 5686 ], "reputation": [ - 5707 + 5706 ], "role": [ 82 ], "roster": [ - 4221 + 4220 ], "roster_aggregate": [ - 4212 + 4211 ], "scrim_availability": [ - 4291 + 4290 ], "scrim_availability_aggregate": [ - 4284 + 4283 ], "scrim_settings": [ - 4401 + 4400 ], "short_name": [ 82 ], "tournament_teams": [ - 4902 + 4901 ], "tournament_teams_aggregate": [ - 4895 + 4894 ], "__typename": [ 80 @@ -102232,10 +102224,10 @@ export default { "teams_constraint": {}, "teams_inc_input": { "captain_steam_id": [ - 258 + 257 ], "owner_steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -102246,55 +102238,55 @@ export default { 80 ], "awards": [ - 195 + 194 ], "captain": [ - 3921 + 3920 ], "captain_steam_id": [ - 258 + 257 ], "id": [ - 4999 + 4998 ], "invites": [ - 4175 + 4174 ], "is_organization": [ 5 ], "match_lineups": [ - 2453 + 2452 ], "name": [ 80 ], "owner": [ - 3921 + 3920 ], "owner_steam_id": [ - 258 + 257 ], "ranks": [ - 5691 + 5690 ], "reputation": [ - 5711 + 5710 ], "roster": [ - 4218 + 4217 ], "scrim_availability": [ - 4290 + 4289 ], "scrim_settings": [ - 4408 + 4407 ], "short_name": [ 80 ], "tournament_teams": [ - 4899 + 4898 ], "__typename": [ 80 @@ -102305,16 +102297,16 @@ export default { 80 ], "captain_steam_id": [ - 258 + 257 ], "id": [ - 4999 + 4998 ], "name": [ 80 ], "owner_steam_id": [ - 258 + 257 ], "role": [ 80 @@ -102328,22 +102320,22 @@ export default { }, "teams_max_order_by": { "avatar_url": [ - 2952 + 2951 ], "captain_steam_id": [ - 2952 + 2951 ], "id": [ - 2952 + 2951 ], "name": [ - 2952 + 2951 ], "owner_steam_id": [ - 2952 + 2951 ], "short_name": [ - 2952 + 2951 ], "__typename": [ 80 @@ -102354,16 +102346,16 @@ export default { 80 ], "captain_steam_id": [ - 258 + 257 ], "id": [ - 4999 + 4998 ], "name": [ 80 ], "owner_steam_id": [ - 258 + 257 ], "role": [ 80 @@ -102377,22 +102369,22 @@ export default { }, "teams_min_order_by": { "avatar_url": [ - 2952 + 2951 ], "captain_steam_id": [ - 2952 + 2951 ], "id": [ - 2952 + 2951 ], "name": [ - 2952 + 2951 ], "owner_steam_id": [ - 2952 + 2951 ], "short_name": [ - 2952 + 2951 ], "__typename": [ 80 @@ -102403,7 +102395,7 @@ export default { 40 ], "returning": [ - 4452 + 4451 ], "__typename": [ 80 @@ -102411,10 +102403,10 @@ export default { }, "teams_obj_rel_insert_input": { "data": [ - 4466 + 4465 ], "on_conflict": [ - 4473 + 4472 ], "__typename": [ 80 @@ -102422,13 +102414,13 @@ export default { }, "teams_on_conflict": { "constraint": [ - 4464 + 4463 ], "update_columns": [ - 4490 + 4489 ], "where": [ - 4463 + 4462 ], "__typename": [ 80 @@ -102436,76 +102428,76 @@ export default { }, "teams_order_by": { "avatar_url": [ - 2952 + 2951 ], "awards_aggregate": [ - 194 + 193 ], "can_change_role": [ - 2952 + 2951 ], "can_invite": [ - 2952 + 2951 ], "can_manage_scrims": [ - 2952 + 2951 ], "can_remove": [ - 2952 + 2951 ], "captain": [ - 3923 + 3922 ], "captain_steam_id": [ - 2952 + 2951 ], "id": [ - 2952 + 2951 ], "invites_aggregate": [ - 4174 + 4173 ], "is_organization": [ - 2952 + 2951 ], "match_lineups_aggregate": [ - 2452 + 2451 ], "matches_aggregate": [ - 2772 + 2771 ], "name": [ - 2952 + 2951 ], "owner": [ - 3923 + 3922 ], "owner_steam_id": [ - 2952 + 2951 ], "ranks": [ - 5692 + 5691 ], "reputation": [ - 5712 + 5711 ], "role": [ - 2952 + 2951 ], "roster_aggregate": [ - 4217 + 4216 ], "scrim_availability_aggregate": [ - 4289 + 4288 ], "scrim_settings": [ - 4410 + 4409 ], "short_name": [ - 2952 + 2951 ], "tournament_teams_aggregate": [ - 4898 + 4897 ], "__typename": [ 80 @@ -102513,7 +102505,7 @@ export default { }, "teams_pk_columns_input": { "id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -102527,10 +102519,10 @@ export default { 80 ], "captain_steam_id": [ - 258 + 257 ], "id": [ - 4999 + 4998 ], "is_organization": [ 5 @@ -102539,7 +102531,7 @@ export default { 80 ], "owner_steam_id": [ - 258 + 257 ], "short_name": [ 80 @@ -102561,10 +102553,10 @@ export default { }, "teams_stddev_order_by": { "captain_steam_id": [ - 2952 + 2951 ], "owner_steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -102583,10 +102575,10 @@ export default { }, "teams_stddev_pop_order_by": { "captain_steam_id": [ - 2952 + 2951 ], "owner_steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -102605,10 +102597,10 @@ export default { }, "teams_stddev_samp_order_by": { "captain_steam_id": [ - 2952 + 2951 ], "owner_steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -102616,10 +102608,10 @@ export default { }, "teams_stream_cursor_input": { "initial_value": [ - 4487 + 4486 ], "ordering": [ - 314 + 313 ], "__typename": [ 80 @@ -102630,10 +102622,10 @@ export default { 80 ], "captain_steam_id": [ - 258 + 257 ], "id": [ - 4999 + 4998 ], "is_organization": [ 5 @@ -102642,7 +102634,7 @@ export default { 80 ], "owner_steam_id": [ - 258 + 257 ], "short_name": [ 80 @@ -102653,10 +102645,10 @@ export default { }, "teams_sum_fields": { "captain_steam_id": [ - 258 + 257 ], "owner_steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -102664,10 +102656,10 @@ export default { }, "teams_sum_order_by": { "captain_steam_id": [ - 2952 + 2951 ], "owner_steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -102676,13 +102668,13 @@ export default { "teams_update_column": {}, "teams_updates": { "_inc": [ - 4465 + 4464 ], "_set": [ - 4479 + 4478 ], "where": [ - 4463 + 4462 ], "__typename": [ 80 @@ -102701,10 +102693,10 @@ export default { }, "teams_var_pop_order_by": { "captain_steam_id": [ - 2952 + 2951 ], "owner_steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -102723,10 +102715,10 @@ export default { }, "teams_var_samp_order_by": { "captain_steam_id": [ - 2952 + 2951 ], "owner_steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -102745,10 +102737,10 @@ export default { }, "teams_variance_order_by": { "captain_steam_id": [ - 2952 + 2951 ], "owner_steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -102758,31 +102750,31 @@ export default { "timestamptz": {}, "timestamptz_comparison_exp": { "_eq": [ - 4499 + 4498 ], "_gt": [ - 4499 + 4498 ], "_gte": [ - 4499 + 4498 ], "_in": [ - 4499 + 4498 ], "_is_null": [ 5 ], "_lt": [ - 4499 + 4498 ], "_lte": [ - 4499 + 4498 ], "_neq": [ - 4499 + 4498 ], "_nin": [ - 4499 + 4498 ], "__typename": [ 80 @@ -102790,19 +102782,19 @@ export default { }, "tournament_awards": { "award": [ - 230 + 229 ], "award_id": [ - 4999 + 4998 ], "created_at": [ - 4499 + 4498 ], "custom_name": [ 80 ], "id": [ - 4999 + 4998 ], "image_url": [ 80 @@ -102814,13 +102806,13 @@ export default { 40 ], "tournament": [ - 4935 + 4934 ], "tournament_id": [ - 4999 + 4998 ], "updated_at": [ - 4499 + 4498 ], "__typename": [ 80 @@ -102828,10 +102820,10 @@ export default { }, "tournament_awards_aggregate": { "aggregate": [ - 4505 + 4504 ], "nodes": [ - 4501 + 4500 ], "__typename": [ 80 @@ -102839,7 +102831,7 @@ export default { }, "tournament_awards_aggregate_bool_exp": { "count": [ - 4504 + 4503 ], "__typename": [ 80 @@ -102847,13 +102839,13 @@ export default { }, "tournament_awards_aggregate_bool_exp_count": { "arguments": [ - 4523 + 4522 ], "distinct": [ 5 ], "filter": [ - 4510 + 4509 ], "predicate": [ 41 @@ -102864,13 +102856,13 @@ export default { }, "tournament_awards_aggregate_fields": { "avg": [ - 4508 + 4507 ], "count": [ 40, { "columns": [ - 4523, + 4522, "[tournament_awards_select_column!]" ], "distinct": [ @@ -102878,6 +102870,44 @@ export default { ] } ], + "max": [ + 4513 + ], + "min": [ + 4515 + ], + "stddev": [ + 4524 + ], + "stddev_pop": [ + 4526 + ], + "stddev_samp": [ + 4528 + ], + "sum": [ + 4532 + ], + "var_pop": [ + 4536 + ], + "var_samp": [ + 4538 + ], + "variance": [ + 4540 + ], + "__typename": [ + 80 + ] + }, + "tournament_awards_aggregate_order_by": { + "avg": [ + 4508 + ], + "count": [ + 2951 + ], "max": [ 4514 ], @@ -102909,50 +102939,12 @@ export default { 80 ] }, - "tournament_awards_aggregate_order_by": { - "avg": [ - 4509 - ], - "count": [ - 2952 - ], - "max": [ - 4515 - ], - "min": [ - 4517 - ], - "stddev": [ - 4526 - ], - "stddev_pop": [ - 4528 - ], - "stddev_samp": [ - 4530 - ], - "sum": [ - 4534 - ], - "var_pop": [ - 4538 - ], - "var_samp": [ - 4540 - ], - "variance": [ - 4542 - ], - "__typename": [ - 80 - ] - }, "tournament_awards_arr_rel_insert_input": { "data": [ - 4513 + 4512 ], "on_conflict": [ - 4520 + 4519 ], "__typename": [ 80 @@ -102971,10 +102963,10 @@ export default { }, "tournament_awards_avg_order_by": { "placement": [ - 2952 + 2951 ], "silhouette": [ - 2952 + 2951 ], "__typename": [ 80 @@ -102982,28 +102974,28 @@ export default { }, "tournament_awards_bool_exp": { "_and": [ - 4510 + 4509 ], "_not": [ - 4510 + 4509 ], "_or": [ - 4510 + 4509 ], "award": [ - 234 + 233 ], "award_id": [ - 5001 + 5000 ], "created_at": [ - 4500 + 4499 ], "custom_name": [ 82 ], "id": [ - 5001 + 5000 ], "image_url": [ 82 @@ -103015,13 +103007,13 @@ export default { 41 ], "tournament": [ - 4956 + 4955 ], "tournament_id": [ - 5001 + 5000 ], "updated_at": [ - 4500 + 4499 ], "__typename": [ 80 @@ -103041,19 +103033,19 @@ export default { }, "tournament_awards_insert_input": { "award": [ - 241 + 240 ], "award_id": [ - 4999 + 4998 ], "created_at": [ - 4499 + 4498 ], "custom_name": [ 80 ], "id": [ - 4999 + 4998 ], "image_url": [ 80 @@ -103065,13 +103057,13 @@ export default { 40 ], "tournament": [ - 4965 + 4964 ], "tournament_id": [ - 4999 + 4998 ], "updated_at": [ - 4499 + 4498 ], "__typename": [ 80 @@ -103079,16 +103071,16 @@ export default { }, "tournament_awards_max_fields": { "award_id": [ - 4999 + 4998 ], "created_at": [ - 4499 + 4498 ], "custom_name": [ 80 ], "id": [ - 4999 + 4998 ], "image_url": [ 80 @@ -103100,10 +103092,10 @@ export default { 40 ], "tournament_id": [ - 4999 + 4998 ], "updated_at": [ - 4499 + 4498 ], "__typename": [ 80 @@ -103111,31 +103103,31 @@ export default { }, "tournament_awards_max_order_by": { "award_id": [ - 2952 + 2951 ], "created_at": [ - 2952 + 2951 ], "custom_name": [ - 2952 + 2951 ], "id": [ - 2952 + 2951 ], "image_url": [ - 2952 + 2951 ], "placement": [ - 2952 + 2951 ], "silhouette": [ - 2952 + 2951 ], "tournament_id": [ - 2952 + 2951 ], "updated_at": [ - 2952 + 2951 ], "__typename": [ 80 @@ -103143,16 +103135,16 @@ export default { }, "tournament_awards_min_fields": { "award_id": [ - 4999 + 4998 ], "created_at": [ - 4499 + 4498 ], "custom_name": [ 80 ], "id": [ - 4999 + 4998 ], "image_url": [ 80 @@ -103164,10 +103156,10 @@ export default { 40 ], "tournament_id": [ - 4999 + 4998 ], "updated_at": [ - 4499 + 4498 ], "__typename": [ 80 @@ -103175,31 +103167,31 @@ export default { }, "tournament_awards_min_order_by": { "award_id": [ - 2952 + 2951 ], "created_at": [ - 2952 + 2951 ], "custom_name": [ - 2952 + 2951 ], "id": [ - 2952 + 2951 ], "image_url": [ - 2952 + 2951 ], "placement": [ - 2952 + 2951 ], "silhouette": [ - 2952 + 2951 ], "tournament_id": [ - 2952 + 2951 ], "updated_at": [ - 2952 + 2951 ], "__typename": [ 80 @@ -103210,7 +103202,7 @@ export default { 40 ], "returning": [ - 4501 + 4500 ], "__typename": [ 80 @@ -103218,10 +103210,10 @@ export default { }, "tournament_awards_obj_rel_insert_input": { "data": [ - 4513 + 4512 ], "on_conflict": [ - 4520 + 4519 ], "__typename": [ 80 @@ -103229,13 +103221,13 @@ export default { }, "tournament_awards_on_conflict": { "constraint": [ - 4511 + 4510 ], "update_columns": [ - 4535 + 4534 ], "where": [ - 4510 + 4509 ], "__typename": [ 80 @@ -103243,37 +103235,37 @@ export default { }, "tournament_awards_order_by": { "award": [ - 243 + 242 ], "award_id": [ - 2952 + 2951 ], "created_at": [ - 2952 + 2951 ], "custom_name": [ - 2952 + 2951 ], "id": [ - 2952 + 2951 ], "image_url": [ - 2952 + 2951 ], "placement": [ - 2952 + 2951 ], "silhouette": [ - 2952 + 2951 ], "tournament": [ - 4967 + 4966 ], "tournament_id": [ - 2952 + 2951 ], "updated_at": [ - 2952 + 2951 ], "__typename": [ 80 @@ -103281,7 +103273,7 @@ export default { }, "tournament_awards_pk_columns_input": { "id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -103290,16 +103282,16 @@ export default { "tournament_awards_select_column": {}, "tournament_awards_set_input": { "award_id": [ - 4999 + 4998 ], "created_at": [ - 4499 + 4498 ], "custom_name": [ 80 ], "id": [ - 4999 + 4998 ], "image_url": [ 80 @@ -103311,10 +103303,10 @@ export default { 40 ], "tournament_id": [ - 4999 + 4998 ], "updated_at": [ - 4499 + 4498 ], "__typename": [ 80 @@ -103333,10 +103325,10 @@ export default { }, "tournament_awards_stddev_order_by": { "placement": [ - 2952 + 2951 ], "silhouette": [ - 2952 + 2951 ], "__typename": [ 80 @@ -103355,10 +103347,10 @@ export default { }, "tournament_awards_stddev_pop_order_by": { "placement": [ - 2952 + 2951 ], "silhouette": [ - 2952 + 2951 ], "__typename": [ 80 @@ -103377,10 +103369,10 @@ export default { }, "tournament_awards_stddev_samp_order_by": { "placement": [ - 2952 + 2951 ], "silhouette": [ - 2952 + 2951 ], "__typename": [ 80 @@ -103388,10 +103380,10 @@ export default { }, "tournament_awards_stream_cursor_input": { "initial_value": [ - 4532 + 4531 ], "ordering": [ - 314 + 313 ], "__typename": [ 80 @@ -103399,16 +103391,16 @@ export default { }, "tournament_awards_stream_cursor_value_input": { "award_id": [ - 4999 + 4998 ], "created_at": [ - 4499 + 4498 ], "custom_name": [ 80 ], "id": [ - 4999 + 4998 ], "image_url": [ 80 @@ -103420,10 +103412,10 @@ export default { 40 ], "tournament_id": [ - 4999 + 4998 ], "updated_at": [ - 4499 + 4498 ], "__typename": [ 80 @@ -103442,10 +103434,10 @@ export default { }, "tournament_awards_sum_order_by": { "placement": [ - 2952 + 2951 ], "silhouette": [ - 2952 + 2951 ], "__typename": [ 80 @@ -103454,13 +103446,13 @@ export default { "tournament_awards_update_column": {}, "tournament_awards_updates": { "_inc": [ - 4512 + 4511 ], "_set": [ - 4524 + 4523 ], "where": [ - 4510 + 4509 ], "__typename": [ 80 @@ -103479,10 +103471,10 @@ export default { }, "tournament_awards_var_pop_order_by": { "placement": [ - 2952 + 2951 ], "silhouette": [ - 2952 + 2951 ], "__typename": [ 80 @@ -103501,10 +103493,10 @@ export default { }, "tournament_awards_var_samp_order_by": { "placement": [ - 2952 + 2951 ], "silhouette": [ - 2952 + 2951 ], "__typename": [ 80 @@ -103523,10 +103515,10 @@ export default { }, "tournament_awards_variance_order_by": { "placement": [ - 2952 + 2951 ], "silhouette": [ - 2952 + 2951 ], "__typename": [ 80 @@ -103537,13 +103529,13 @@ export default { 5 ], "created_at": [ - 4499 + 4498 ], "feeding_brackets": [ - 4543, + 4542, { "distinct_on": [ - 4567, + 4566, "[tournament_brackets_select_column!]" ], "limit": [ @@ -103553,11 +103545,11 @@ export default { 40 ], "order_by": [ - 4565, + 4564, "[tournament_brackets_order_by!]" ], "where": [ - 4554 + 4553 ] } ], @@ -103565,37 +103557,37 @@ export default { 5 ], "group": [ - 2950 + 2949 ], "id": [ - 4999 + 4998 ], "loser_bracket": [ - 4543 + 4542 ], "loser_parent_bracket_id": [ - 4999 + 4998 ], "match": [ - 2767 + 2766 ], "match_id": [ - 4999 + 4998 ], "match_number": [ 40 ], "match_options_id": [ - 4999 + 4998 ], "options": [ - 2647 + 2646 ], "parent_bracket": [ - 4543 + 4542 ], "parent_bracket_id": [ - 4999 + 4998 ], "path": [ 80 @@ -103604,16 +103596,16 @@ export default { 40 ], "scheduled_at": [ - 4499 + 4498 ], "scheduled_eta": [ - 4499 + 4498 ], "scheduling_proposals": [ - 1960, + 1959, { "distinct_on": [ - 1981, + 1980, "[league_scheduling_proposals_select_column!]" ], "limit": [ @@ -103623,19 +103615,19 @@ export default { 40 ], "order_by": [ - 1979, + 1978, "[league_scheduling_proposals_order_by!]" ], "where": [ - 1969 + 1968 ] } ], "scheduling_proposals_aggregate": [ - 1961, + 1960, { "distinct_on": [ - 1981, + 1980, "[league_scheduling_proposals_select_column!]" ], "limit": [ @@ -103645,37 +103637,37 @@ export default { 40 ], "order_by": [ - 1979, + 1978, "[league_scheduling_proposals_order_by!]" ], "where": [ - 1969 + 1968 ] } ], "stage": [ - 4760 + 4759 ], "team_1": [ - 4893 + 4892 ], "team_1_seed": [ 40 ], "team_2": [ - 4893 + 4892 ], "team_2_seed": [ 40 ], "tournament_stage_id": [ - 4999 + 4998 ], "tournament_team_id_1": [ - 4999 + 4998 ], "tournament_team_id_2": [ - 4999 + 4998 ], "__typename": [ 80 @@ -103683,10 +103675,10 @@ export default { }, "tournament_brackets_aggregate": { "aggregate": [ - 4549 + 4548 ], "nodes": [ - 4543 + 4542 ], "__typename": [ 80 @@ -103694,13 +103686,13 @@ export default { }, "tournament_brackets_aggregate_bool_exp": { "bool_and": [ - 4546 + 4545 ], "bool_or": [ - 4547 + 4546 ], "count": [ - 4548 + 4547 ], "__typename": [ 80 @@ -103708,13 +103700,13 @@ export default { }, "tournament_brackets_aggregate_bool_exp_bool_and": { "arguments": [ - 4568 + 4567 ], "distinct": [ 5 ], "filter": [ - 4554 + 4553 ], "predicate": [ 6 @@ -103725,13 +103717,13 @@ export default { }, "tournament_brackets_aggregate_bool_exp_bool_or": { "arguments": [ - 4569 + 4568 ], "distinct": [ 5 ], "filter": [ - 4554 + 4553 ], "predicate": [ 6 @@ -103742,13 +103734,13 @@ export default { }, "tournament_brackets_aggregate_bool_exp_count": { "arguments": [ - 4567 + 4566 ], "distinct": [ 5 ], "filter": [ - 4554 + 4553 ], "predicate": [ 41 @@ -103759,13 +103751,13 @@ export default { }, "tournament_brackets_aggregate_fields": { "avg": [ - 4552 + 4551 ], "count": [ 40, { "columns": [ - 4567, + 4566, "[tournament_brackets_select_column!]" ], "distinct": [ @@ -103773,6 +103765,44 @@ export default { ] } ], + "max": [ + 4557 + ], + "min": [ + 4559 + ], + "stddev": [ + 4570 + ], + "stddev_pop": [ + 4572 + ], + "stddev_samp": [ + 4574 + ], + "sum": [ + 4578 + ], + "var_pop": [ + 4582 + ], + "var_samp": [ + 4584 + ], + "variance": [ + 4586 + ], + "__typename": [ + 80 + ] + }, + "tournament_brackets_aggregate_order_by": { + "avg": [ + 4552 + ], + "count": [ + 2951 + ], "max": [ 4558 ], @@ -103804,50 +103834,12 @@ export default { 80 ] }, - "tournament_brackets_aggregate_order_by": { - "avg": [ - 4553 - ], - "count": [ - 2952 - ], - "max": [ - 4559 - ], - "min": [ - 4561 - ], - "stddev": [ - 4572 - ], - "stddev_pop": [ - 4574 - ], - "stddev_samp": [ - 4576 - ], - "sum": [ - 4580 - ], - "var_pop": [ - 4584 - ], - "var_samp": [ - 4586 - ], - "variance": [ - 4588 - ], - "__typename": [ - 80 - ] - }, "tournament_brackets_arr_rel_insert_input": { "data": [ - 4557 + 4556 ], "on_conflict": [ - 4564 + 4563 ], "__typename": [ 80 @@ -103875,19 +103867,19 @@ export default { }, "tournament_brackets_avg_order_by": { "group": [ - 2952 + 2951 ], "match_number": [ - 2952 + 2951 ], "round": [ - 2952 + 2951 ], "team_1_seed": [ - 2952 + 2951 ], "team_2_seed": [ - 2952 + 2951 ], "__typename": [ 80 @@ -103895,58 +103887,58 @@ export default { }, "tournament_brackets_bool_exp": { "_and": [ - 4554 + 4553 ], "_not": [ - 4554 + 4553 ], "_or": [ - 4554 + 4553 ], "bye": [ 6 ], "created_at": [ - 4500 + 4499 ], "feeding_brackets": [ - 4554 + 4553 ], "finished": [ 6 ], "group": [ - 2951 + 2950 ], "id": [ - 5001 + 5000 ], "loser_bracket": [ - 4554 + 4553 ], "loser_parent_bracket_id": [ - 5001 + 5000 ], "match": [ - 2776 + 2775 ], "match_id": [ - 5001 + 5000 ], "match_number": [ 41 ], "match_options_id": [ - 5001 + 5000 ], "options": [ - 2651 + 2650 ], "parent_bracket": [ - 4554 + 4553 ], "parent_bracket_id": [ - 5001 + 5000 ], "path": [ 82 @@ -103955,40 +103947,40 @@ export default { 41 ], "scheduled_at": [ - 4500 + 4499 ], "scheduled_eta": [ - 4500 + 4499 ], "scheduling_proposals": [ - 1969 + 1968 ], "scheduling_proposals_aggregate": [ - 1962 + 1961 ], "stage": [ - 4772 + 4771 ], "team_1": [ - 4902 + 4901 ], "team_1_seed": [ 41 ], "team_2": [ - 4902 + 4901 ], "team_2_seed": [ 41 ], "tournament_stage_id": [ - 5001 + 5000 ], "tournament_team_id_1": [ - 5001 + 5000 ], "tournament_team_id_2": [ - 5001 + 5000 ], "__typename": [ 80 @@ -103997,7 +103989,7 @@ export default { "tournament_brackets_constraint": {}, "tournament_brackets_inc_input": { "group": [ - 2950 + 2949 ], "match_number": [ 40 @@ -104020,43 +104012,43 @@ export default { 5 ], "created_at": [ - 4499 + 4498 ], "finished": [ 5 ], "group": [ - 2950 + 2949 ], "id": [ - 4999 + 4998 ], "loser_bracket": [ - 4563 + 4562 ], "loser_parent_bracket_id": [ - 4999 + 4998 ], "match": [ - 2785 + 2784 ], "match_id": [ - 4999 + 4998 ], "match_number": [ 40 ], "match_options_id": [ - 4999 + 4998 ], "options": [ - 2658 + 2657 ], "parent_bracket": [ - 4563 + 4562 ], "parent_bracket_id": [ - 4999 + 4998 ], "path": [ 80 @@ -104065,37 +104057,37 @@ export default { 40 ], "scheduled_at": [ - 4499 + 4498 ], "scheduled_eta": [ - 4499 + 4498 ], "scheduling_proposals": [ - 1966 + 1965 ], "stage": [ - 4784 + 4783 ], "team_1": [ - 4911 + 4910 ], "team_1_seed": [ 40 ], "team_2": [ - 4911 + 4910 ], "team_2_seed": [ 40 ], "tournament_stage_id": [ - 4999 + 4998 ], "tournament_team_id_1": [ - 4999 + 4998 ], "tournament_team_id_2": [ - 4999 + 4998 ], "__typename": [ 80 @@ -104103,28 +104095,28 @@ export default { }, "tournament_brackets_max_fields": { "created_at": [ - 4499 + 4498 ], "group": [ - 2950 + 2949 ], "id": [ - 4999 + 4998 ], "loser_parent_bracket_id": [ - 4999 + 4998 ], "match_id": [ - 4999 + 4998 ], "match_number": [ 40 ], "match_options_id": [ - 4999 + 4998 ], "parent_bracket_id": [ - 4999 + 4998 ], "path": [ 80 @@ -104133,10 +104125,10 @@ export default { 40 ], "scheduled_at": [ - 4499 + 4498 ], "scheduled_eta": [ - 4499 + 4498 ], "team_1_seed": [ 40 @@ -104145,13 +104137,13 @@ export default { 40 ], "tournament_stage_id": [ - 4999 + 4998 ], "tournament_team_id_1": [ - 4999 + 4998 ], "tournament_team_id_2": [ - 4999 + 4998 ], "__typename": [ 80 @@ -104159,55 +104151,55 @@ export default { }, "tournament_brackets_max_order_by": { "created_at": [ - 2952 + 2951 ], "group": [ - 2952 + 2951 ], "id": [ - 2952 + 2951 ], "loser_parent_bracket_id": [ - 2952 + 2951 ], "match_id": [ - 2952 + 2951 ], "match_number": [ - 2952 + 2951 ], "match_options_id": [ - 2952 + 2951 ], "parent_bracket_id": [ - 2952 + 2951 ], "path": [ - 2952 + 2951 ], "round": [ - 2952 + 2951 ], "scheduled_at": [ - 2952 + 2951 ], "scheduled_eta": [ - 2952 + 2951 ], "team_1_seed": [ - 2952 + 2951 ], "team_2_seed": [ - 2952 + 2951 ], "tournament_stage_id": [ - 2952 + 2951 ], "tournament_team_id_1": [ - 2952 + 2951 ], "tournament_team_id_2": [ - 2952 + 2951 ], "__typename": [ 80 @@ -104215,28 +104207,28 @@ export default { }, "tournament_brackets_min_fields": { "created_at": [ - 4499 + 4498 ], "group": [ - 2950 + 2949 ], "id": [ - 4999 + 4998 ], "loser_parent_bracket_id": [ - 4999 + 4998 ], "match_id": [ - 4999 + 4998 ], "match_number": [ 40 ], "match_options_id": [ - 4999 + 4998 ], "parent_bracket_id": [ - 4999 + 4998 ], "path": [ 80 @@ -104245,10 +104237,10 @@ export default { 40 ], "scheduled_at": [ - 4499 + 4498 ], "scheduled_eta": [ - 4499 + 4498 ], "team_1_seed": [ 40 @@ -104257,13 +104249,13 @@ export default { 40 ], "tournament_stage_id": [ - 4999 + 4998 ], "tournament_team_id_1": [ - 4999 + 4998 ], "tournament_team_id_2": [ - 4999 + 4998 ], "__typename": [ 80 @@ -104271,55 +104263,55 @@ export default { }, "tournament_brackets_min_order_by": { "created_at": [ - 2952 + 2951 ], "group": [ - 2952 + 2951 ], "id": [ - 2952 + 2951 ], "loser_parent_bracket_id": [ - 2952 + 2951 ], "match_id": [ - 2952 + 2951 ], "match_number": [ - 2952 + 2951 ], "match_options_id": [ - 2952 + 2951 ], "parent_bracket_id": [ - 2952 + 2951 ], "path": [ - 2952 + 2951 ], "round": [ - 2952 + 2951 ], "scheduled_at": [ - 2952 + 2951 ], "scheduled_eta": [ - 2952 + 2951 ], "team_1_seed": [ - 2952 + 2951 ], "team_2_seed": [ - 2952 + 2951 ], "tournament_stage_id": [ - 2952 + 2951 ], "tournament_team_id_1": [ - 2952 + 2951 ], "tournament_team_id_2": [ - 2952 + 2951 ], "__typename": [ 80 @@ -104330,7 +104322,7 @@ export default { 40 ], "returning": [ - 4543 + 4542 ], "__typename": [ 80 @@ -104338,10 +104330,10 @@ export default { }, "tournament_brackets_obj_rel_insert_input": { "data": [ - 4557 + 4556 ], "on_conflict": [ - 4564 + 4563 ], "__typename": [ 80 @@ -104349,13 +104341,13 @@ export default { }, "tournament_brackets_on_conflict": { "constraint": [ - 4555 + 4554 ], "update_columns": [ - 4581 + 4580 ], "where": [ - 4554 + 4553 ], "__typename": [ 80 @@ -104363,88 +104355,88 @@ export default { }, "tournament_brackets_order_by": { "bye": [ - 2952 + 2951 ], "created_at": [ - 2952 + 2951 ], "feeding_brackets_aggregate": [ - 4550 + 4549 ], "finished": [ - 2952 + 2951 ], "group": [ - 2952 + 2951 ], "id": [ - 2952 + 2951 ], "loser_bracket": [ - 4565 + 4564 ], "loser_parent_bracket_id": [ - 2952 + 2951 ], "match": [ - 2787 + 2786 ], "match_id": [ - 2952 + 2951 ], "match_number": [ - 2952 + 2951 ], "match_options_id": [ - 2952 + 2951 ], "options": [ - 2660 + 2659 ], "parent_bracket": [ - 4565 + 4564 ], "parent_bracket_id": [ - 2952 + 2951 ], "path": [ - 2952 + 2951 ], "round": [ - 2952 + 2951 ], "scheduled_at": [ - 2952 + 2951 ], "scheduled_eta": [ - 2952 + 2951 ], "scheduling_proposals_aggregate": [ - 1965 + 1964 ], "stage": [ - 4786 + 4785 ], "team_1": [ - 4913 + 4912 ], "team_1_seed": [ - 2952 + 2951 ], "team_2": [ - 4913 + 4912 ], "team_2_seed": [ - 2952 + 2951 ], "tournament_stage_id": [ - 2952 + 2951 ], "tournament_team_id_1": [ - 2952 + 2951 ], "tournament_team_id_2": [ - 2952 + 2951 ], "__typename": [ 80 @@ -104452,7 +104444,7 @@ export default { }, "tournament_brackets_pk_columns_input": { "id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -104466,31 +104458,31 @@ export default { 5 ], "created_at": [ - 4499 + 4498 ], "finished": [ 5 ], "group": [ - 2950 + 2949 ], "id": [ - 4999 + 4998 ], "loser_parent_bracket_id": [ - 4999 + 4998 ], "match_id": [ - 4999 + 4998 ], "match_number": [ 40 ], "match_options_id": [ - 4999 + 4998 ], "parent_bracket_id": [ - 4999 + 4998 ], "path": [ 80 @@ -104499,10 +104491,10 @@ export default { 40 ], "scheduled_at": [ - 4499 + 4498 ], "scheduled_eta": [ - 4499 + 4498 ], "team_1_seed": [ 40 @@ -104511,13 +104503,13 @@ export default { 40 ], "tournament_stage_id": [ - 4999 + 4998 ], "tournament_team_id_1": [ - 4999 + 4998 ], "tournament_team_id_2": [ - 4999 + 4998 ], "__typename": [ 80 @@ -104545,19 +104537,19 @@ export default { }, "tournament_brackets_stddev_order_by": { "group": [ - 2952 + 2951 ], "match_number": [ - 2952 + 2951 ], "round": [ - 2952 + 2951 ], "team_1_seed": [ - 2952 + 2951 ], "team_2_seed": [ - 2952 + 2951 ], "__typename": [ 80 @@ -104585,19 +104577,19 @@ export default { }, "tournament_brackets_stddev_pop_order_by": { "group": [ - 2952 + 2951 ], "match_number": [ - 2952 + 2951 ], "round": [ - 2952 + 2951 ], "team_1_seed": [ - 2952 + 2951 ], "team_2_seed": [ - 2952 + 2951 ], "__typename": [ 80 @@ -104625,19 +104617,19 @@ export default { }, "tournament_brackets_stddev_samp_order_by": { "group": [ - 2952 + 2951 ], "match_number": [ - 2952 + 2951 ], "round": [ - 2952 + 2951 ], "team_1_seed": [ - 2952 + 2951 ], "team_2_seed": [ - 2952 + 2951 ], "__typename": [ 80 @@ -104645,10 +104637,10 @@ export default { }, "tournament_brackets_stream_cursor_input": { "initial_value": [ - 4578 + 4577 ], "ordering": [ - 314 + 313 ], "__typename": [ 80 @@ -104659,31 +104651,31 @@ export default { 5 ], "created_at": [ - 4499 + 4498 ], "finished": [ 5 ], "group": [ - 2950 + 2949 ], "id": [ - 4999 + 4998 ], "loser_parent_bracket_id": [ - 4999 + 4998 ], "match_id": [ - 4999 + 4998 ], "match_number": [ 40 ], "match_options_id": [ - 4999 + 4998 ], "parent_bracket_id": [ - 4999 + 4998 ], "path": [ 80 @@ -104692,10 +104684,10 @@ export default { 40 ], "scheduled_at": [ - 4499 + 4498 ], "scheduled_eta": [ - 4499 + 4498 ], "team_1_seed": [ 40 @@ -104704,13 +104696,13 @@ export default { 40 ], "tournament_stage_id": [ - 4999 + 4998 ], "tournament_team_id_1": [ - 4999 + 4998 ], "tournament_team_id_2": [ - 4999 + 4998 ], "__typename": [ 80 @@ -104718,7 +104710,7 @@ export default { }, "tournament_brackets_sum_fields": { "group": [ - 2950 + 2949 ], "match_number": [ 40 @@ -104738,19 +104730,19 @@ export default { }, "tournament_brackets_sum_order_by": { "group": [ - 2952 + 2951 ], "match_number": [ - 2952 + 2951 ], "round": [ - 2952 + 2951 ], "team_1_seed": [ - 2952 + 2951 ], "team_2_seed": [ - 2952 + 2951 ], "__typename": [ 80 @@ -104759,13 +104751,13 @@ export default { "tournament_brackets_update_column": {}, "tournament_brackets_updates": { "_inc": [ - 4556 + 4555 ], "_set": [ - 4570 + 4569 ], "where": [ - 4554 + 4553 ], "__typename": [ 80 @@ -104793,19 +104785,19 @@ export default { }, "tournament_brackets_var_pop_order_by": { "group": [ - 2952 + 2951 ], "match_number": [ - 2952 + 2951 ], "round": [ - 2952 + 2951 ], "team_1_seed": [ - 2952 + 2951 ], "team_2_seed": [ - 2952 + 2951 ], "__typename": [ 80 @@ -104833,19 +104825,19 @@ export default { }, "tournament_brackets_var_samp_order_by": { "group": [ - 2952 + 2951 ], "match_number": [ - 2952 + 2951 ], "round": [ - 2952 + 2951 ], "team_1_seed": [ - 2952 + 2951 ], "team_2_seed": [ - 2952 + 2951 ], "__typename": [ 80 @@ -104873,19 +104865,19 @@ export default { }, "tournament_brackets_variance_order_by": { "group": [ - 2952 + 2951 ], "match_number": [ - 2952 + 2951 ], "round": [ - 2952 + 2951 ], "team_1_seed": [ - 2952 + 2951 ], "team_2_seed": [ - 2952 + 2951 ], "__typename": [ 80 @@ -104893,16 +104885,16 @@ export default { }, "tournament_categories": { "category": [ - 1293 + 1292 ], "e_tournament_category": [ - 1288 + 1287 ], "tournament": [ - 4935 + 4934 ], "tournament_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -104910,10 +104902,10 @@ export default { }, "tournament_categories_aggregate": { "aggregate": [ - 4593 + 4592 ], "nodes": [ - 4589 + 4588 ], "__typename": [ 80 @@ -104921,7 +104913,7 @@ export default { }, "tournament_categories_aggregate_bool_exp": { "count": [ - 4592 + 4591 ], "__typename": [ 80 @@ -104929,13 +104921,13 @@ export default { }, "tournament_categories_aggregate_bool_exp_count": { "arguments": [ - 4607 + 4606 ], "distinct": [ 5 ], "filter": [ - 4596 + 4595 ], "predicate": [ 41 @@ -104949,7 +104941,7 @@ export default { 40, { "columns": [ - 4607, + 4606, "[tournament_categories_select_column!]" ], "distinct": [ @@ -104958,10 +104950,10 @@ export default { } ], "max": [ - 4599 + 4598 ], "min": [ - 4601 + 4600 ], "__typename": [ 80 @@ -104969,13 +104961,13 @@ export default { }, "tournament_categories_aggregate_order_by": { "count": [ - 2952 + 2951 ], "max": [ - 4600 + 4599 ], "min": [ - 4602 + 4601 ], "__typename": [ 80 @@ -104983,10 +104975,10 @@ export default { }, "tournament_categories_arr_rel_insert_input": { "data": [ - 4598 + 4597 ], "on_conflict": [ - 4604 + 4603 ], "__typename": [ 80 @@ -104994,25 +104986,25 @@ export default { }, "tournament_categories_bool_exp": { "_and": [ - 4596 + 4595 ], "_not": [ - 4596 + 4595 ], "_or": [ - 4596 + 4595 ], "category": [ - 1294 + 1293 ], "e_tournament_category": [ - 1291 + 1290 ], "tournament": [ - 4956 + 4955 ], "tournament_id": [ - 5001 + 5000 ], "__typename": [ 80 @@ -105021,16 +105013,16 @@ export default { "tournament_categories_constraint": {}, "tournament_categories_insert_input": { "category": [ - 1293 + 1292 ], "e_tournament_category": [ - 1299 + 1298 ], "tournament": [ - 4965 + 4964 ], "tournament_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -105038,7 +105030,7 @@ export default { }, "tournament_categories_max_fields": { "tournament_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -105046,7 +105038,7 @@ export default { }, "tournament_categories_max_order_by": { "tournament_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -105054,7 +105046,7 @@ export default { }, "tournament_categories_min_fields": { "tournament_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -105062,7 +105054,7 @@ export default { }, "tournament_categories_min_order_by": { "tournament_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -105073,7 +105065,7 @@ export default { 40 ], "returning": [ - 4589 + 4588 ], "__typename": [ 80 @@ -105081,13 +105073,13 @@ export default { }, "tournament_categories_on_conflict": { "constraint": [ - 4597 + 4596 ], "update_columns": [ - 4611 + 4610 ], "where": [ - 4596 + 4595 ], "__typename": [ 80 @@ -105095,16 +105087,16 @@ export default { }, "tournament_categories_order_by": { "category": [ - 2952 + 2951 ], "e_tournament_category": [ - 1301 + 1300 ], "tournament": [ - 4967 + 4966 ], "tournament_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -105112,10 +105104,10 @@ export default { }, "tournament_categories_pk_columns_input": { "category": [ - 1293 + 1292 ], "tournament_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -105124,10 +105116,10 @@ export default { "tournament_categories_select_column": {}, "tournament_categories_set_input": { "category": [ - 1293 + 1292 ], "tournament_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -105135,10 +105127,10 @@ export default { }, "tournament_categories_stream_cursor_input": { "initial_value": [ - 4610 + 4609 ], "ordering": [ - 314 + 313 ], "__typename": [ 80 @@ -105146,10 +105138,10 @@ export default { }, "tournament_categories_stream_cursor_value_input": { "category": [ - 1293 + 1292 ], "tournament_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -105158,10 +105150,10 @@ export default { "tournament_categories_update_column": {}, "tournament_categories_updates": { "_set": [ - 4608 + 4607 ], "where": [ - 4596 + 4595 ], "__typename": [ 80 @@ -105169,19 +105161,19 @@ export default { }, "tournament_organizer_teams": { "created_at": [ - 4499 + 4498 ], "team": [ - 4452 + 4451 ], "team_id": [ - 4999 + 4998 ], "tournament": [ - 4935 + 4934 ], "tournament_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -105189,10 +105181,10 @@ export default { }, "tournament_organizer_teams_aggregate": { "aggregate": [ - 4617 + 4616 ], "nodes": [ - 4613 + 4612 ], "__typename": [ 80 @@ -105200,7 +105192,7 @@ export default { }, "tournament_organizer_teams_aggregate_bool_exp": { "count": [ - 4616 + 4615 ], "__typename": [ 80 @@ -105208,13 +105200,13 @@ export default { }, "tournament_organizer_teams_aggregate_bool_exp_count": { "arguments": [ - 4631 + 4630 ], "distinct": [ 5 ], "filter": [ - 4620 + 4619 ], "predicate": [ 41 @@ -105228,7 +105220,7 @@ export default { 40, { "columns": [ - 4631, + 4630, "[tournament_organizer_teams_select_column!]" ], "distinct": [ @@ -105237,10 +105229,10 @@ export default { } ], "max": [ - 4623 + 4622 ], "min": [ - 4625 + 4624 ], "__typename": [ 80 @@ -105248,13 +105240,13 @@ export default { }, "tournament_organizer_teams_aggregate_order_by": { "count": [ - 2952 + 2951 ], "max": [ - 4624 + 4623 ], "min": [ - 4626 + 4625 ], "__typename": [ 80 @@ -105262,10 +105254,10 @@ export default { }, "tournament_organizer_teams_arr_rel_insert_input": { "data": [ - 4622 + 4621 ], "on_conflict": [ - 4628 + 4627 ], "__typename": [ 80 @@ -105273,28 +105265,28 @@ export default { }, "tournament_organizer_teams_bool_exp": { "_and": [ - 4620 + 4619 ], "_not": [ - 4620 + 4619 ], "_or": [ - 4620 + 4619 ], "created_at": [ - 4500 + 4499 ], "team": [ - 4463 + 4462 ], "team_id": [ - 5001 + 5000 ], "tournament": [ - 4956 + 4955 ], "tournament_id": [ - 5001 + 5000 ], "__typename": [ 80 @@ -105303,19 +105295,19 @@ export default { "tournament_organizer_teams_constraint": {}, "tournament_organizer_teams_insert_input": { "created_at": [ - 4499 + 4498 ], "team": [ - 4472 + 4471 ], "team_id": [ - 4999 + 4998 ], "tournament": [ - 4965 + 4964 ], "tournament_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -105323,13 +105315,13 @@ export default { }, "tournament_organizer_teams_max_fields": { "created_at": [ - 4499 + 4498 ], "team_id": [ - 4999 + 4998 ], "tournament_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -105337,13 +105329,13 @@ export default { }, "tournament_organizer_teams_max_order_by": { "created_at": [ - 2952 + 2951 ], "team_id": [ - 2952 + 2951 ], "tournament_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -105351,13 +105343,13 @@ export default { }, "tournament_organizer_teams_min_fields": { "created_at": [ - 4499 + 4498 ], "team_id": [ - 4999 + 4998 ], "tournament_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -105365,13 +105357,13 @@ export default { }, "tournament_organizer_teams_min_order_by": { "created_at": [ - 2952 + 2951 ], "team_id": [ - 2952 + 2951 ], "tournament_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -105382,7 +105374,7 @@ export default { 40 ], "returning": [ - 4613 + 4612 ], "__typename": [ 80 @@ -105390,13 +105382,13 @@ export default { }, "tournament_organizer_teams_on_conflict": { "constraint": [ - 4621 + 4620 ], "update_columns": [ - 4635 + 4634 ], "where": [ - 4620 + 4619 ], "__typename": [ 80 @@ -105404,19 +105396,19 @@ export default { }, "tournament_organizer_teams_order_by": { "created_at": [ - 2952 + 2951 ], "team": [ - 4474 + 4473 ], "team_id": [ - 2952 + 2951 ], "tournament": [ - 4967 + 4966 ], "tournament_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -105424,10 +105416,10 @@ export default { }, "tournament_organizer_teams_pk_columns_input": { "team_id": [ - 4999 + 4998 ], "tournament_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -105436,13 +105428,13 @@ export default { "tournament_organizer_teams_select_column": {}, "tournament_organizer_teams_set_input": { "created_at": [ - 4499 + 4498 ], "team_id": [ - 4999 + 4998 ], "tournament_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -105450,10 +105442,10 @@ export default { }, "tournament_organizer_teams_stream_cursor_input": { "initial_value": [ - 4634 + 4633 ], "ordering": [ - 314 + 313 ], "__typename": [ 80 @@ -105461,13 +105453,13 @@ export default { }, "tournament_organizer_teams_stream_cursor_value_input": { "created_at": [ - 4499 + 4498 ], "team_id": [ - 4999 + 4998 ], "tournament_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -105476,10 +105468,10 @@ export default { "tournament_organizer_teams_update_column": {}, "tournament_organizer_teams_updates": { "_set": [ - 4632 + 4631 ], "where": [ - 4620 + 4619 ], "__typename": [ 80 @@ -105487,22 +105479,22 @@ export default { }, "tournament_organizers": { "organization_team": [ - 4452 + 4451 ], "organization_team_id": [ - 4999 + 4998 ], "organizer": [ - 3910 + 3909 ], "steam_id": [ - 258 + 257 ], "tournament": [ - 4935 + 4934 ], "tournament_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -105510,10 +105502,10 @@ export default { }, "tournament_organizers_aggregate": { "aggregate": [ - 4641 + 4640 ], "nodes": [ - 4637 + 4636 ], "__typename": [ 80 @@ -105521,7 +105513,7 @@ export default { }, "tournament_organizers_aggregate_bool_exp": { "count": [ - 4640 + 4639 ], "__typename": [ 80 @@ -105529,13 +105521,13 @@ export default { }, "tournament_organizers_aggregate_bool_exp_count": { "arguments": [ - 4658 + 4657 ], "distinct": [ 5 ], "filter": [ - 4646 + 4645 ], "predicate": [ 41 @@ -105546,13 +105538,13 @@ export default { }, "tournament_organizers_aggregate_fields": { "avg": [ - 4644 + 4643 ], "count": [ 40, { "columns": [ - 4658, + 4657, "[tournament_organizers_select_column!]" ], "distinct": [ @@ -105560,6 +105552,44 @@ export default { ] } ], + "max": [ + 4649 + ], + "min": [ + 4651 + ], + "stddev": [ + 4659 + ], + "stddev_pop": [ + 4661 + ], + "stddev_samp": [ + 4663 + ], + "sum": [ + 4667 + ], + "var_pop": [ + 4671 + ], + "var_samp": [ + 4673 + ], + "variance": [ + 4675 + ], + "__typename": [ + 80 + ] + }, + "tournament_organizers_aggregate_order_by": { + "avg": [ + 4644 + ], + "count": [ + 2951 + ], "max": [ 4650 ], @@ -105591,50 +105621,12 @@ export default { 80 ] }, - "tournament_organizers_aggregate_order_by": { - "avg": [ - 4645 - ], - "count": [ - 2952 - ], - "max": [ - 4651 - ], - "min": [ - 4653 - ], - "stddev": [ - 4661 - ], - "stddev_pop": [ - 4663 - ], - "stddev_samp": [ - 4665 - ], - "sum": [ - 4669 - ], - "var_pop": [ - 4673 - ], - "var_samp": [ - 4675 - ], - "variance": [ - 4677 - ], - "__typename": [ - 80 - ] - }, "tournament_organizers_arr_rel_insert_input": { "data": [ - 4649 + 4648 ], "on_conflict": [ - 4655 + 4654 ], "__typename": [ 80 @@ -105650,7 +105642,7 @@ export default { }, "tournament_organizers_avg_order_by": { "steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -105658,31 +105650,31 @@ export default { }, "tournament_organizers_bool_exp": { "_and": [ - 4646 + 4645 ], "_not": [ - 4646 + 4645 ], "_or": [ - 4646 + 4645 ], "organization_team": [ - 4463 + 4462 ], "organization_team_id": [ - 5001 + 5000 ], "organizer": [ - 3914 + 3913 ], "steam_id": [ - 260 + 259 ], "tournament": [ - 4956 + 4955 ], "tournament_id": [ - 5001 + 5000 ], "__typename": [ 80 @@ -105691,7 +105683,7 @@ export default { "tournament_organizers_constraint": {}, "tournament_organizers_inc_input": { "steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -105699,22 +105691,22 @@ export default { }, "tournament_organizers_insert_input": { "organization_team": [ - 4472 + 4471 ], "organization_team_id": [ - 4999 + 4998 ], "organizer": [ - 3921 + 3920 ], "steam_id": [ - 258 + 257 ], "tournament": [ - 4965 + 4964 ], "tournament_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -105722,13 +105714,13 @@ export default { }, "tournament_organizers_max_fields": { "organization_team_id": [ - 4999 + 4998 ], "steam_id": [ - 258 + 257 ], "tournament_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -105736,13 +105728,13 @@ export default { }, "tournament_organizers_max_order_by": { "organization_team_id": [ - 2952 + 2951 ], "steam_id": [ - 2952 + 2951 ], "tournament_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -105750,13 +105742,13 @@ export default { }, "tournament_organizers_min_fields": { "organization_team_id": [ - 4999 + 4998 ], "steam_id": [ - 258 + 257 ], "tournament_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -105764,13 +105756,13 @@ export default { }, "tournament_organizers_min_order_by": { "organization_team_id": [ - 2952 + 2951 ], "steam_id": [ - 2952 + 2951 ], "tournament_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -105781,7 +105773,7 @@ export default { 40 ], "returning": [ - 4637 + 4636 ], "__typename": [ 80 @@ -105789,13 +105781,13 @@ export default { }, "tournament_organizers_on_conflict": { "constraint": [ - 4647 + 4646 ], "update_columns": [ - 4670 + 4669 ], "where": [ - 4646 + 4645 ], "__typename": [ 80 @@ -105803,22 +105795,22 @@ export default { }, "tournament_organizers_order_by": { "organization_team": [ - 4474 + 4473 ], "organization_team_id": [ - 2952 + 2951 ], "organizer": [ - 3923 + 3922 ], "steam_id": [ - 2952 + 2951 ], "tournament": [ - 4967 + 4966 ], "tournament_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -105826,10 +105818,10 @@ export default { }, "tournament_organizers_pk_columns_input": { "steam_id": [ - 258 + 257 ], "tournament_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -105838,13 +105830,13 @@ export default { "tournament_organizers_select_column": {}, "tournament_organizers_set_input": { "organization_team_id": [ - 4999 + 4998 ], "steam_id": [ - 258 + 257 ], "tournament_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -105860,7 +105852,7 @@ export default { }, "tournament_organizers_stddev_order_by": { "steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -105876,7 +105868,7 @@ export default { }, "tournament_organizers_stddev_pop_order_by": { "steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -105892,7 +105884,7 @@ export default { }, "tournament_organizers_stddev_samp_order_by": { "steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -105900,10 +105892,10 @@ export default { }, "tournament_organizers_stream_cursor_input": { "initial_value": [ - 4667 + 4666 ], "ordering": [ - 314 + 313 ], "__typename": [ 80 @@ -105911,13 +105903,13 @@ export default { }, "tournament_organizers_stream_cursor_value_input": { "organization_team_id": [ - 4999 + 4998 ], "steam_id": [ - 258 + 257 ], "tournament_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -105925,7 +105917,7 @@ export default { }, "tournament_organizers_sum_fields": { "steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -105933,7 +105925,7 @@ export default { }, "tournament_organizers_sum_order_by": { "steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -105942,13 +105934,13 @@ export default { "tournament_organizers_update_column": {}, "tournament_organizers_updates": { "_inc": [ - 4648 + 4647 ], "_set": [ - 4659 + 4658 ], "where": [ - 4646 + 4645 ], "__typename": [ 80 @@ -105964,7 +105956,7 @@ export default { }, "tournament_organizers_var_pop_order_by": { "steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -105980,7 +105972,7 @@ export default { }, "tournament_organizers_var_samp_order_by": { "steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -105996,7 +105988,7 @@ export default { }, "tournament_organizers_variance_order_by": { "steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -106004,10 +105996,10 @@ export default { }, "tournament_prizes": { "created_at": [ - 4499 + 4498 ], "id": [ - 4999 + 4998 ], "order": [ 40 @@ -106019,10 +106011,10 @@ export default { 80 ], "tournament": [ - 4935 + 4934 ], "tournament_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -106030,10 +106022,10 @@ export default { }, "tournament_prizes_aggregate": { "aggregate": [ - 4682 + 4681 ], "nodes": [ - 4678 + 4677 ], "__typename": [ 80 @@ -106041,7 +106033,7 @@ export default { }, "tournament_prizes_aggregate_bool_exp": { "count": [ - 4681 + 4680 ], "__typename": [ 80 @@ -106049,13 +106041,13 @@ export default { }, "tournament_prizes_aggregate_bool_exp_count": { "arguments": [ - 4699 + 4698 ], "distinct": [ 5 ], "filter": [ - 4687 + 4686 ], "predicate": [ 41 @@ -106066,13 +106058,13 @@ export default { }, "tournament_prizes_aggregate_fields": { "avg": [ - 4685 + 4684 ], "count": [ 40, { "columns": [ - 4699, + 4698, "[tournament_prizes_select_column!]" ], "distinct": [ @@ -106081,31 +106073,31 @@ export default { } ], "max": [ - 4691 + 4690 ], "min": [ - 4693 + 4692 ], "stddev": [ - 4701 + 4700 ], "stddev_pop": [ - 4703 + 4702 ], "stddev_samp": [ - 4705 + 4704 ], "sum": [ - 4709 + 4708 ], "var_pop": [ - 4713 + 4712 ], "var_samp": [ - 4715 + 4714 ], "variance": [ - 4717 + 4716 ], "__typename": [ 80 @@ -106113,37 +106105,37 @@ export default { }, "tournament_prizes_aggregate_order_by": { "avg": [ - 4686 + 4685 ], "count": [ - 2952 + 2951 ], "max": [ - 4692 + 4691 ], "min": [ - 4694 + 4693 ], "stddev": [ - 4702 + 4701 ], "stddev_pop": [ - 4704 + 4703 ], "stddev_samp": [ - 4706 + 4705 ], "sum": [ - 4710 + 4709 ], "var_pop": [ - 4714 + 4713 ], "var_samp": [ - 4716 + 4715 ], "variance": [ - 4718 + 4717 ], "__typename": [ 80 @@ -106151,10 +106143,10 @@ export default { }, "tournament_prizes_arr_rel_insert_input": { "data": [ - 4690 + 4689 ], "on_conflict": [ - 4696 + 4695 ], "__typename": [ 80 @@ -106170,7 +106162,7 @@ export default { }, "tournament_prizes_avg_order_by": { "order": [ - 2952 + 2951 ], "__typename": [ 80 @@ -106178,19 +106170,19 @@ export default { }, "tournament_prizes_bool_exp": { "_and": [ - 4687 + 4686 ], "_not": [ - 4687 + 4686 ], "_or": [ - 4687 + 4686 ], "created_at": [ - 4500 + 4499 ], "id": [ - 5001 + 5000 ], "order": [ 41 @@ -106202,10 +106194,10 @@ export default { 82 ], "tournament": [ - 4956 + 4955 ], "tournament_id": [ - 5001 + 5000 ], "__typename": [ 80 @@ -106222,10 +106214,10 @@ export default { }, "tournament_prizes_insert_input": { "created_at": [ - 4499 + 4498 ], "id": [ - 4999 + 4998 ], "order": [ 40 @@ -106237,10 +106229,10 @@ export default { 80 ], "tournament": [ - 4965 + 4964 ], "tournament_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -106248,10 +106240,10 @@ export default { }, "tournament_prizes_max_fields": { "created_at": [ - 4499 + 4498 ], "id": [ - 4999 + 4998 ], "order": [ 40 @@ -106263,7 +106255,7 @@ export default { 80 ], "tournament_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -106271,22 +106263,22 @@ export default { }, "tournament_prizes_max_order_by": { "created_at": [ - 2952 + 2951 ], "id": [ - 2952 + 2951 ], "order": [ - 2952 + 2951 ], "place": [ - 2952 + 2951 ], "prize": [ - 2952 + 2951 ], "tournament_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -106294,10 +106286,10 @@ export default { }, "tournament_prizes_min_fields": { "created_at": [ - 4499 + 4498 ], "id": [ - 4999 + 4998 ], "order": [ 40 @@ -106309,7 +106301,7 @@ export default { 80 ], "tournament_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -106317,22 +106309,22 @@ export default { }, "tournament_prizes_min_order_by": { "created_at": [ - 2952 + 2951 ], "id": [ - 2952 + 2951 ], "order": [ - 2952 + 2951 ], "place": [ - 2952 + 2951 ], "prize": [ - 2952 + 2951 ], "tournament_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -106343,7 +106335,7 @@ export default { 40 ], "returning": [ - 4678 + 4677 ], "__typename": [ 80 @@ -106351,13 +106343,13 @@ export default { }, "tournament_prizes_on_conflict": { "constraint": [ - 4688 + 4687 ], "update_columns": [ - 4711 + 4710 ], "where": [ - 4687 + 4686 ], "__typename": [ 80 @@ -106365,25 +106357,25 @@ export default { }, "tournament_prizes_order_by": { "created_at": [ - 2952 + 2951 ], "id": [ - 2952 + 2951 ], "order": [ - 2952 + 2951 ], "place": [ - 2952 + 2951 ], "prize": [ - 2952 + 2951 ], "tournament": [ - 4967 + 4966 ], "tournament_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -106391,7 +106383,7 @@ export default { }, "tournament_prizes_pk_columns_input": { "id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -106400,10 +106392,10 @@ export default { "tournament_prizes_select_column": {}, "tournament_prizes_set_input": { "created_at": [ - 4499 + 4498 ], "id": [ - 4999 + 4998 ], "order": [ 40 @@ -106415,7 +106407,7 @@ export default { 80 ], "tournament_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -106431,7 +106423,7 @@ export default { }, "tournament_prizes_stddev_order_by": { "order": [ - 2952 + 2951 ], "__typename": [ 80 @@ -106447,7 +106439,7 @@ export default { }, "tournament_prizes_stddev_pop_order_by": { "order": [ - 2952 + 2951 ], "__typename": [ 80 @@ -106463,7 +106455,7 @@ export default { }, "tournament_prizes_stddev_samp_order_by": { "order": [ - 2952 + 2951 ], "__typename": [ 80 @@ -106471,10 +106463,10 @@ export default { }, "tournament_prizes_stream_cursor_input": { "initial_value": [ - 4708 + 4707 ], "ordering": [ - 314 + 313 ], "__typename": [ 80 @@ -106482,10 +106474,10 @@ export default { }, "tournament_prizes_stream_cursor_value_input": { "created_at": [ - 4499 + 4498 ], "id": [ - 4999 + 4998 ], "order": [ 40 @@ -106497,7 +106489,7 @@ export default { 80 ], "tournament_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -106513,7 +106505,7 @@ export default { }, "tournament_prizes_sum_order_by": { "order": [ - 2952 + 2951 ], "__typename": [ 80 @@ -106522,13 +106514,13 @@ export default { "tournament_prizes_update_column": {}, "tournament_prizes_updates": { "_inc": [ - 4689 + 4688 ], "_set": [ - 4700 + 4699 ], "where": [ - 4687 + 4686 ], "__typename": [ 80 @@ -106544,7 +106536,7 @@ export default { }, "tournament_prizes_var_pop_order_by": { "order": [ - 2952 + 2951 ], "__typename": [ 80 @@ -106560,7 +106552,7 @@ export default { }, "tournament_prizes_var_samp_order_by": { "order": [ - 2952 + 2951 ], "__typename": [ 80 @@ -106576,7 +106568,7 @@ export default { }, "tournament_prizes_variance_order_by": { "order": [ - 2952 + 2951 ], "__typename": [ 80 @@ -106584,28 +106576,28 @@ export default { }, "tournament_stage_windows": { "closes_at": [ - 4499 + 4498 ], "created_at": [ - 4499 + 4498 ], "default_match_at": [ - 4499 + 4498 ], "id": [ - 4999 + 4998 ], "opens_at": [ - 4499 + 4498 ], "round": [ 40 ], "stage": [ - 4760 + 4759 ], "tournament_stage_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -106613,10 +106605,10 @@ export default { }, "tournament_stage_windows_aggregate": { "aggregate": [ - 4723 + 4722 ], "nodes": [ - 4719 + 4718 ], "__typename": [ 80 @@ -106624,7 +106616,7 @@ export default { }, "tournament_stage_windows_aggregate_bool_exp": { "count": [ - 4722 + 4721 ], "__typename": [ 80 @@ -106632,13 +106624,13 @@ export default { }, "tournament_stage_windows_aggregate_bool_exp_count": { "arguments": [ - 4740 + 4739 ], "distinct": [ 5 ], "filter": [ - 4728 + 4727 ], "predicate": [ 41 @@ -106649,13 +106641,13 @@ export default { }, "tournament_stage_windows_aggregate_fields": { "avg": [ - 4726 + 4725 ], "count": [ 40, { "columns": [ - 4740, + 4739, "[tournament_stage_windows_select_column!]" ], "distinct": [ @@ -106663,6 +106655,44 @@ export default { ] } ], + "max": [ + 4731 + ], + "min": [ + 4733 + ], + "stddev": [ + 4741 + ], + "stddev_pop": [ + 4743 + ], + "stddev_samp": [ + 4745 + ], + "sum": [ + 4749 + ], + "var_pop": [ + 4753 + ], + "var_samp": [ + 4755 + ], + "variance": [ + 4757 + ], + "__typename": [ + 80 + ] + }, + "tournament_stage_windows_aggregate_order_by": { + "avg": [ + 4726 + ], + "count": [ + 2951 + ], "max": [ 4732 ], @@ -106694,50 +106724,12 @@ export default { 80 ] }, - "tournament_stage_windows_aggregate_order_by": { - "avg": [ - 4727 - ], - "count": [ - 2952 - ], - "max": [ - 4733 - ], - "min": [ - 4735 - ], - "stddev": [ - 4743 - ], - "stddev_pop": [ - 4745 - ], - "stddev_samp": [ - 4747 - ], - "sum": [ - 4751 - ], - "var_pop": [ - 4755 - ], - "var_samp": [ - 4757 - ], - "variance": [ - 4759 - ], - "__typename": [ - 80 - ] - }, "tournament_stage_windows_arr_rel_insert_input": { "data": [ - 4731 + 4730 ], "on_conflict": [ - 4737 + 4736 ], "__typename": [ 80 @@ -106753,7 +106745,7 @@ export default { }, "tournament_stage_windows_avg_order_by": { "round": [ - 2952 + 2951 ], "__typename": [ 80 @@ -106761,37 +106753,37 @@ export default { }, "tournament_stage_windows_bool_exp": { "_and": [ - 4728 + 4727 ], "_not": [ - 4728 + 4727 ], "_or": [ - 4728 + 4727 ], "closes_at": [ - 4500 + 4499 ], "created_at": [ - 4500 + 4499 ], "default_match_at": [ - 4500 + 4499 ], "id": [ - 5001 + 5000 ], "opens_at": [ - 4500 + 4499 ], "round": [ 41 ], "stage": [ - 4772 + 4771 ], "tournament_stage_id": [ - 5001 + 5000 ], "__typename": [ 80 @@ -106808,28 +106800,28 @@ export default { }, "tournament_stage_windows_insert_input": { "closes_at": [ - 4499 + 4498 ], "created_at": [ - 4499 + 4498 ], "default_match_at": [ - 4499 + 4498 ], "id": [ - 4999 + 4998 ], "opens_at": [ - 4499 + 4498 ], "round": [ 40 ], "stage": [ - 4784 + 4783 ], "tournament_stage_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -106837,25 +106829,25 @@ export default { }, "tournament_stage_windows_max_fields": { "closes_at": [ - 4499 + 4498 ], "created_at": [ - 4499 + 4498 ], "default_match_at": [ - 4499 + 4498 ], "id": [ - 4999 + 4998 ], "opens_at": [ - 4499 + 4498 ], "round": [ 40 ], "tournament_stage_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -106863,25 +106855,25 @@ export default { }, "tournament_stage_windows_max_order_by": { "closes_at": [ - 2952 + 2951 ], "created_at": [ - 2952 + 2951 ], "default_match_at": [ - 2952 + 2951 ], "id": [ - 2952 + 2951 ], "opens_at": [ - 2952 + 2951 ], "round": [ - 2952 + 2951 ], "tournament_stage_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -106889,25 +106881,25 @@ export default { }, "tournament_stage_windows_min_fields": { "closes_at": [ - 4499 + 4498 ], "created_at": [ - 4499 + 4498 ], "default_match_at": [ - 4499 + 4498 ], "id": [ - 4999 + 4998 ], "opens_at": [ - 4499 + 4498 ], "round": [ 40 ], "tournament_stage_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -106915,25 +106907,25 @@ export default { }, "tournament_stage_windows_min_order_by": { "closes_at": [ - 2952 + 2951 ], "created_at": [ - 2952 + 2951 ], "default_match_at": [ - 2952 + 2951 ], "id": [ - 2952 + 2951 ], "opens_at": [ - 2952 + 2951 ], "round": [ - 2952 + 2951 ], "tournament_stage_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -106944,7 +106936,7 @@ export default { 40 ], "returning": [ - 4719 + 4718 ], "__typename": [ 80 @@ -106952,13 +106944,13 @@ export default { }, "tournament_stage_windows_on_conflict": { "constraint": [ - 4729 + 4728 ], "update_columns": [ - 4752 + 4751 ], "where": [ - 4728 + 4727 ], "__typename": [ 80 @@ -106966,28 +106958,28 @@ export default { }, "tournament_stage_windows_order_by": { "closes_at": [ - 2952 + 2951 ], "created_at": [ - 2952 + 2951 ], "default_match_at": [ - 2952 + 2951 ], "id": [ - 2952 + 2951 ], "opens_at": [ - 2952 + 2951 ], "round": [ - 2952 + 2951 ], "stage": [ - 4786 + 4785 ], "tournament_stage_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -106995,7 +106987,7 @@ export default { }, "tournament_stage_windows_pk_columns_input": { "id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -107004,25 +106996,25 @@ export default { "tournament_stage_windows_select_column": {}, "tournament_stage_windows_set_input": { "closes_at": [ - 4499 + 4498 ], "created_at": [ - 4499 + 4498 ], "default_match_at": [ - 4499 + 4498 ], "id": [ - 4999 + 4998 ], "opens_at": [ - 4499 + 4498 ], "round": [ 40 ], "tournament_stage_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -107038,7 +107030,7 @@ export default { }, "tournament_stage_windows_stddev_order_by": { "round": [ - 2952 + 2951 ], "__typename": [ 80 @@ -107054,7 +107046,7 @@ export default { }, "tournament_stage_windows_stddev_pop_order_by": { "round": [ - 2952 + 2951 ], "__typename": [ 80 @@ -107070,7 +107062,7 @@ export default { }, "tournament_stage_windows_stddev_samp_order_by": { "round": [ - 2952 + 2951 ], "__typename": [ 80 @@ -107078,10 +107070,10 @@ export default { }, "tournament_stage_windows_stream_cursor_input": { "initial_value": [ - 4749 + 4748 ], "ordering": [ - 314 + 313 ], "__typename": [ 80 @@ -107089,25 +107081,25 @@ export default { }, "tournament_stage_windows_stream_cursor_value_input": { "closes_at": [ - 4499 + 4498 ], "created_at": [ - 4499 + 4498 ], "default_match_at": [ - 4499 + 4498 ], "id": [ - 4999 + 4998 ], "opens_at": [ - 4499 + 4498 ], "round": [ 40 ], "tournament_stage_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -107123,7 +107115,7 @@ export default { }, "tournament_stage_windows_sum_order_by": { "round": [ - 2952 + 2951 ], "__typename": [ 80 @@ -107132,13 +107124,13 @@ export default { "tournament_stage_windows_update_column": {}, "tournament_stage_windows_updates": { "_inc": [ - 4730 + 4729 ], "_set": [ - 4741 + 4740 ], "where": [ - 4728 + 4727 ], "__typename": [ 80 @@ -107154,7 +107146,7 @@ export default { }, "tournament_stage_windows_var_pop_order_by": { "round": [ - 2952 + 2951 ], "__typename": [ 80 @@ -107170,7 +107162,7 @@ export default { }, "tournament_stage_windows_var_samp_order_by": { "round": [ - 2952 + 2951 ], "__typename": [ 80 @@ -107186,7 +107178,7 @@ export default { }, "tournament_stage_windows_variance_order_by": { "round": [ - 2952 + 2951 ], "__typename": [ 80 @@ -107194,10 +107186,10 @@ export default { }, "tournament_stages": { "brackets": [ - 4543, + 4542, { "distinct_on": [ - 4567, + 4566, "[tournament_brackets_select_column!]" ], "limit": [ @@ -107207,19 +107199,19 @@ export default { 40 ], "order_by": [ - 4565, + 4564, "[tournament_brackets_order_by!]" ], "where": [ - 4554 + 4553 ] } ], "brackets_aggregate": [ - 4544, + 4543, { "distinct_on": [ - 4567, + 4566, "[tournament_brackets_select_column!]" ], "limit": [ @@ -107229,11 +107221,11 @@ export default { 40 ], "order_by": [ - 4565, + 4564, "[tournament_brackets_order_by!]" ], "where": [ - 4554 + 4553 ] } ], @@ -107244,7 +107236,7 @@ export default { 40 ], "e_tournament_stage_type": [ - 1309 + 1308 ], "final_map_advantage": [ 40 @@ -107253,10 +107245,10 @@ export default { 40 ], "id": [ - 4999 + 4998 ], "match_options_id": [ - 4999 + 4998 ], "max_rounds": [ 40 @@ -107268,16 +107260,16 @@ export default { 40 ], "options": [ - 2647 + 2646 ], "order": [ 40 ], "results": [ - 5723, + 5722, { "distinct_on": [ - 5755, + 5754, "[v_team_stage_results_select_column!]" ], "limit": [ @@ -107287,19 +107279,19 @@ export default { 40 ], "order_by": [ - 5753, + 5752, "[v_team_stage_results_order_by!]" ], "where": [ - 5742 + 5741 ] } ], "results_aggregate": [ - 5724, + 5723, { "distinct_on": [ - 5755, + 5754, "[v_team_stage_results_select_column!]" ], "limit": [ @@ -107309,16 +107301,16 @@ export default { 40 ], "order_by": [ - 5753, + 5752, "[v_team_stage_results_order_by!]" ], "where": [ - 5742 + 5741 ] } ], "settings": [ - 1823, + 1822, { "path": [ 80 @@ -107332,19 +107324,19 @@ export default { 5 ], "tournament": [ - 4935 + 4934 ], "tournament_id": [ - 4999 + 4998 ], "type": [ - 1314 + 1313 ], "windows": [ - 4719, + 4718, { "distinct_on": [ - 4740, + 4739, "[tournament_stage_windows_select_column!]" ], "limit": [ @@ -107354,19 +107346,19 @@ export default { 40 ], "order_by": [ - 4738, + 4737, "[tournament_stage_windows_order_by!]" ], "where": [ - 4728 + 4727 ] } ], "windows_aggregate": [ - 4720, + 4719, { "distinct_on": [ - 4740, + 4739, "[tournament_stage_windows_select_column!]" ], "limit": [ @@ -107376,11 +107368,11 @@ export default { 40 ], "order_by": [ - 4738, + 4737, "[tournament_stage_windows_order_by!]" ], "where": [ - 4728 + 4727 ] } ], @@ -107390,10 +107382,10 @@ export default { }, "tournament_stages_aggregate": { "aggregate": [ - 4766 + 4765 ], "nodes": [ - 4760 + 4759 ], "__typename": [ 80 @@ -107401,13 +107393,13 @@ export default { }, "tournament_stages_aggregate_bool_exp": { "bool_and": [ - 4763 + 4762 ], "bool_or": [ - 4764 + 4763 ], "count": [ - 4765 + 4764 ], "__typename": [ 80 @@ -107415,13 +107407,13 @@ export default { }, "tournament_stages_aggregate_bool_exp_bool_and": { "arguments": [ - 4790 + 4789 ], "distinct": [ 5 ], "filter": [ - 4772 + 4771 ], "predicate": [ 6 @@ -107432,13 +107424,13 @@ export default { }, "tournament_stages_aggregate_bool_exp_bool_or": { "arguments": [ - 4791 + 4790 ], "distinct": [ 5 ], "filter": [ - 4772 + 4771 ], "predicate": [ 6 @@ -107449,13 +107441,13 @@ export default { }, "tournament_stages_aggregate_bool_exp_count": { "arguments": [ - 4789 + 4788 ], "distinct": [ 5 ], "filter": [ - 4772 + 4771 ], "predicate": [ 41 @@ -107466,13 +107458,13 @@ export default { }, "tournament_stages_aggregate_fields": { "avg": [ - 4770 + 4769 ], "count": [ 40, { "columns": [ - 4789, + 4788, "[tournament_stages_select_column!]" ], "distinct": [ @@ -107480,6 +107472,44 @@ export default { ] } ], + "max": [ + 4778 + ], + "min": [ + 4780 + ], + "stddev": [ + 4792 + ], + "stddev_pop": [ + 4794 + ], + "stddev_samp": [ + 4796 + ], + "sum": [ + 4800 + ], + "var_pop": [ + 4804 + ], + "var_samp": [ + 4806 + ], + "variance": [ + 4808 + ], + "__typename": [ + 80 + ] + }, + "tournament_stages_aggregate_order_by": { + "avg": [ + 4770 + ], + "count": [ + 2951 + ], "max": [ 4779 ], @@ -107511,47 +107541,9 @@ export default { 80 ] }, - "tournament_stages_aggregate_order_by": { - "avg": [ - 4771 - ], - "count": [ - 2952 - ], - "max": [ - 4780 - ], - "min": [ - 4782 - ], - "stddev": [ - 4794 - ], - "stddev_pop": [ - 4796 - ], - "stddev_samp": [ - 4798 - ], - "sum": [ - 4802 - ], - "var_pop": [ - 4806 - ], - "var_samp": [ - 4808 - ], - "variance": [ - 4810 - ], - "__typename": [ - 80 - ] - }, "tournament_stages_append_input": { "settings": [ - 1823 + 1822 ], "__typename": [ 80 @@ -107559,10 +107551,10 @@ export default { }, "tournament_stages_arr_rel_insert_input": { "data": [ - 4778 + 4777 ], "on_conflict": [ - 4785 + 4784 ], "__typename": [ 80 @@ -107599,28 +107591,28 @@ export default { }, "tournament_stages_avg_order_by": { "decider_best_of": [ - 2952 + 2951 ], "default_best_of": [ - 2952 + 2951 ], "final_map_advantage": [ - 2952 + 2951 ], "groups": [ - 2952 + 2951 ], "max_rounds": [ - 2952 + 2951 ], "max_teams": [ - 2952 + 2951 ], "min_teams": [ - 2952 + 2951 ], "order": [ - 2952 + 2951 ], "__typename": [ 80 @@ -107628,19 +107620,19 @@ export default { }, "tournament_stages_bool_exp": { "_and": [ - 4772 + 4771 ], "_not": [ - 4772 + 4771 ], "_or": [ - 4772 + 4771 ], "brackets": [ - 4554 + 4553 ], "brackets_aggregate": [ - 4545 + 4544 ], "decider_best_of": [ 41 @@ -107649,7 +107641,7 @@ export default { 41 ], "e_tournament_stage_type": [ - 1312 + 1311 ], "final_map_advantage": [ 41 @@ -107658,10 +107650,10 @@ export default { 41 ], "id": [ - 5001 + 5000 ], "match_options_id": [ - 5001 + 5000 ], "max_rounds": [ 41 @@ -107673,19 +107665,19 @@ export default { 41 ], "options": [ - 2651 + 2650 ], "order": [ 41 ], "results": [ - 5742 + 5741 ], "results_aggregate": [ - 5725 + 5724 ], "settings": [ - 1825 + 1824 ], "swiss_no_elimination": [ 6 @@ -107694,19 +107686,19 @@ export default { 6 ], "tournament": [ - 4956 + 4955 ], "tournament_id": [ - 5001 + 5000 ], "type": [ - 1315 + 1314 ], "windows": [ - 4728 + 4727 ], "windows_aggregate": [ - 4721 + 4720 ], "__typename": [ 80 @@ -107768,7 +107760,7 @@ export default { }, "tournament_stages_insert_input": { "brackets": [ - 4551 + 4550 ], "decider_best_of": [ 40 @@ -107777,7 +107769,7 @@ export default { 40 ], "e_tournament_stage_type": [ - 1320 + 1319 ], "final_map_advantage": [ 40 @@ -107786,10 +107778,10 @@ export default { 40 ], "id": [ - 4999 + 4998 ], "match_options_id": [ - 4999 + 4998 ], "max_rounds": [ 40 @@ -107801,16 +107793,16 @@ export default { 40 ], "options": [ - 2658 + 2657 ], "order": [ 40 ], "results": [ - 5739 + 5738 ], "settings": [ - 1823 + 1822 ], "swiss_no_elimination": [ 5 @@ -107819,16 +107811,16 @@ export default { 5 ], "tournament": [ - 4965 + 4964 ], "tournament_id": [ - 4999 + 4998 ], "type": [ - 1314 + 1313 ], "windows": [ - 4725 + 4724 ], "__typename": [ 80 @@ -107848,10 +107840,10 @@ export default { 40 ], "id": [ - 4999 + 4998 ], "match_options_id": [ - 4999 + 4998 ], "max_rounds": [ 40 @@ -107866,7 +107858,7 @@ export default { 40 ], "tournament_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -107874,37 +107866,37 @@ export default { }, "tournament_stages_max_order_by": { "decider_best_of": [ - 2952 + 2951 ], "default_best_of": [ - 2952 + 2951 ], "final_map_advantage": [ - 2952 + 2951 ], "groups": [ - 2952 + 2951 ], "id": [ - 2952 + 2951 ], "match_options_id": [ - 2952 + 2951 ], "max_rounds": [ - 2952 + 2951 ], "max_teams": [ - 2952 + 2951 ], "min_teams": [ - 2952 + 2951 ], "order": [ - 2952 + 2951 ], "tournament_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -107924,10 +107916,10 @@ export default { 40 ], "id": [ - 4999 + 4998 ], "match_options_id": [ - 4999 + 4998 ], "max_rounds": [ 40 @@ -107942,7 +107934,7 @@ export default { 40 ], "tournament_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -107950,37 +107942,37 @@ export default { }, "tournament_stages_min_order_by": { "decider_best_of": [ - 2952 + 2951 ], "default_best_of": [ - 2952 + 2951 ], "final_map_advantage": [ - 2952 + 2951 ], "groups": [ - 2952 + 2951 ], "id": [ - 2952 + 2951 ], "match_options_id": [ - 2952 + 2951 ], "max_rounds": [ - 2952 + 2951 ], "max_teams": [ - 2952 + 2951 ], "min_teams": [ - 2952 + 2951 ], "order": [ - 2952 + 2951 ], "tournament_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -107991,7 +107983,7 @@ export default { 40 ], "returning": [ - 4760 + 4759 ], "__typename": [ 80 @@ -107999,10 +107991,10 @@ export default { }, "tournament_stages_obj_rel_insert_input": { "data": [ - 4778 + 4777 ], "on_conflict": [ - 4785 + 4784 ], "__typename": [ 80 @@ -108010,13 +108002,13 @@ export default { }, "tournament_stages_on_conflict": { "constraint": [ - 4773 + 4772 ], "update_columns": [ - 4803 + 4802 ], "where": [ - 4772 + 4771 ], "__typename": [ 80 @@ -108024,67 +108016,67 @@ export default { }, "tournament_stages_order_by": { "brackets_aggregate": [ - 4550 + 4549 ], "decider_best_of": [ - 2952 + 2951 ], "default_best_of": [ - 2952 + 2951 ], "e_tournament_stage_type": [ - 1322 + 1321 ], "final_map_advantage": [ - 2952 + 2951 ], "groups": [ - 2952 + 2951 ], "id": [ - 2952 + 2951 ], "match_options_id": [ - 2952 + 2951 ], "max_rounds": [ - 2952 + 2951 ], "max_teams": [ - 2952 + 2951 ], "min_teams": [ - 2952 + 2951 ], "options": [ - 2660 + 2659 ], "order": [ - 2952 + 2951 ], "results_aggregate": [ - 5738 + 5737 ], "settings": [ - 2952 + 2951 ], "swiss_no_elimination": [ - 2952 + 2951 ], "third_place_match": [ - 2952 + 2951 ], "tournament": [ - 4967 + 4966 ], "tournament_id": [ - 2952 + 2951 ], "type": [ - 2952 + 2951 ], "windows_aggregate": [ - 4724 + 4723 ], "__typename": [ 80 @@ -108092,7 +108084,7 @@ export default { }, "tournament_stages_pk_columns_input": { "id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -108100,7 +108092,7 @@ export default { }, "tournament_stages_prepend_input": { "settings": [ - 1823 + 1822 ], "__typename": [ 80 @@ -108123,10 +108115,10 @@ export default { 40 ], "id": [ - 4999 + 4998 ], "match_options_id": [ - 4999 + 4998 ], "max_rounds": [ 40 @@ -108141,7 +108133,7 @@ export default { 40 ], "settings": [ - 1823 + 1822 ], "swiss_no_elimination": [ 5 @@ -108150,10 +108142,10 @@ export default { 5 ], "tournament_id": [ - 4999 + 4998 ], "type": [ - 1314 + 1313 ], "__typename": [ 80 @@ -108190,28 +108182,28 @@ export default { }, "tournament_stages_stddev_order_by": { "decider_best_of": [ - 2952 + 2951 ], "default_best_of": [ - 2952 + 2951 ], "final_map_advantage": [ - 2952 + 2951 ], "groups": [ - 2952 + 2951 ], "max_rounds": [ - 2952 + 2951 ], "max_teams": [ - 2952 + 2951 ], "min_teams": [ - 2952 + 2951 ], "order": [ - 2952 + 2951 ], "__typename": [ 80 @@ -108248,28 +108240,28 @@ export default { }, "tournament_stages_stddev_pop_order_by": { "decider_best_of": [ - 2952 + 2951 ], "default_best_of": [ - 2952 + 2951 ], "final_map_advantage": [ - 2952 + 2951 ], "groups": [ - 2952 + 2951 ], "max_rounds": [ - 2952 + 2951 ], "max_teams": [ - 2952 + 2951 ], "min_teams": [ - 2952 + 2951 ], "order": [ - 2952 + 2951 ], "__typename": [ 80 @@ -108306,28 +108298,28 @@ export default { }, "tournament_stages_stddev_samp_order_by": { "decider_best_of": [ - 2952 + 2951 ], "default_best_of": [ - 2952 + 2951 ], "final_map_advantage": [ - 2952 + 2951 ], "groups": [ - 2952 + 2951 ], "max_rounds": [ - 2952 + 2951 ], "max_teams": [ - 2952 + 2951 ], "min_teams": [ - 2952 + 2951 ], "order": [ - 2952 + 2951 ], "__typename": [ 80 @@ -108335,10 +108327,10 @@ export default { }, "tournament_stages_stream_cursor_input": { "initial_value": [ - 4800 + 4799 ], "ordering": [ - 314 + 313 ], "__typename": [ 80 @@ -108358,10 +108350,10 @@ export default { 40 ], "id": [ - 4999 + 4998 ], "match_options_id": [ - 4999 + 4998 ], "max_rounds": [ 40 @@ -108376,7 +108368,7 @@ export default { 40 ], "settings": [ - 1823 + 1822 ], "swiss_no_elimination": [ 5 @@ -108385,10 +108377,10 @@ export default { 5 ], "tournament_id": [ - 4999 + 4998 ], "type": [ - 1314 + 1313 ], "__typename": [ 80 @@ -108425,28 +108417,28 @@ export default { }, "tournament_stages_sum_order_by": { "decider_best_of": [ - 2952 + 2951 ], "default_best_of": [ - 2952 + 2951 ], "final_map_advantage": [ - 2952 + 2951 ], "groups": [ - 2952 + 2951 ], "max_rounds": [ - 2952 + 2951 ], "max_teams": [ - 2952 + 2951 ], "min_teams": [ - 2952 + 2951 ], "order": [ - 2952 + 2951 ], "__typename": [ 80 @@ -108455,28 +108447,28 @@ export default { "tournament_stages_update_column": {}, "tournament_stages_updates": { "_append": [ - 4768 + 4767 ], "_delete_at_path": [ - 4774 + 4773 ], "_delete_elem": [ - 4775 + 4774 ], "_delete_key": [ - 4776 + 4775 ], "_inc": [ - 4777 + 4776 ], "_prepend": [ - 4788 + 4787 ], "_set": [ - 4792 + 4791 ], "where": [ - 4772 + 4771 ], "__typename": [ 80 @@ -108513,28 +108505,28 @@ export default { }, "tournament_stages_var_pop_order_by": { "decider_best_of": [ - 2952 + 2951 ], "default_best_of": [ - 2952 + 2951 ], "final_map_advantage": [ - 2952 + 2951 ], "groups": [ - 2952 + 2951 ], "max_rounds": [ - 2952 + 2951 ], "max_teams": [ - 2952 + 2951 ], "min_teams": [ - 2952 + 2951 ], "order": [ - 2952 + 2951 ], "__typename": [ 80 @@ -108571,28 +108563,28 @@ export default { }, "tournament_stages_var_samp_order_by": { "decider_best_of": [ - 2952 + 2951 ], "default_best_of": [ - 2952 + 2951 ], "final_map_advantage": [ - 2952 + 2951 ], "groups": [ - 2952 + 2951 ], "max_rounds": [ - 2952 + 2951 ], "max_teams": [ - 2952 + 2951 ], "min_teams": [ - 2952 + 2951 ], "order": [ - 2952 + 2951 ], "__typename": [ 80 @@ -108629,28 +108621,28 @@ export default { }, "tournament_stages_variance_order_by": { "decider_best_of": [ - 2952 + 2951 ], "default_best_of": [ - 2952 + 2951 ], "final_map_advantage": [ - 2952 + 2951 ], "groups": [ - 2952 + 2951 ], "max_rounds": [ - 2952 + 2951 ], "max_teams": [ - 2952 + 2951 ], "min_teams": [ - 2952 + 2951 ], "order": [ - 2952 + 2951 ], "__typename": [ 80 @@ -108658,28 +108650,28 @@ export default { }, "tournament_team_invites": { "created_at": [ - 4499 + 4498 ], "id": [ - 4999 + 4998 ], "invited_by": [ - 3910 + 3909 ], "invited_by_player_steam_id": [ - 258 + 257 ], "player": [ - 3910 + 3909 ], "steam_id": [ - 258 + 257 ], "team": [ - 4893 + 4892 ], "tournament_team_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -108687,10 +108679,10 @@ export default { }, "tournament_team_invites_aggregate": { "aggregate": [ - 4815 + 4814 ], "nodes": [ - 4811 + 4810 ], "__typename": [ 80 @@ -108698,7 +108690,7 @@ export default { }, "tournament_team_invites_aggregate_bool_exp": { "count": [ - 4814 + 4813 ], "__typename": [ 80 @@ -108706,13 +108698,13 @@ export default { }, "tournament_team_invites_aggregate_bool_exp_count": { "arguments": [ - 4832 + 4831 ], "distinct": [ 5 ], "filter": [ - 4820 + 4819 ], "predicate": [ 41 @@ -108723,13 +108715,13 @@ export default { }, "tournament_team_invites_aggregate_fields": { "avg": [ - 4818 + 4817 ], "count": [ 40, { "columns": [ - 4832, + 4831, "[tournament_team_invites_select_column!]" ], "distinct": [ @@ -108738,31 +108730,31 @@ export default { } ], "max": [ - 4824 + 4823 ], "min": [ - 4826 + 4825 ], "stddev": [ - 4834 + 4833 ], "stddev_pop": [ - 4836 + 4835 ], "stddev_samp": [ - 4838 + 4837 ], "sum": [ - 4842 + 4841 ], "var_pop": [ - 4846 + 4845 ], "var_samp": [ - 4848 + 4847 ], "variance": [ - 4850 + 4849 ], "__typename": [ 80 @@ -108770,37 +108762,37 @@ export default { }, "tournament_team_invites_aggregate_order_by": { "avg": [ - 4819 + 4818 ], "count": [ - 2952 + 2951 ], "max": [ - 4825 + 4824 ], "min": [ - 4827 + 4826 ], "stddev": [ - 4835 + 4834 ], "stddev_pop": [ - 4837 + 4836 ], "stddev_samp": [ - 4839 + 4838 ], "sum": [ - 4843 + 4842 ], "var_pop": [ - 4847 + 4846 ], "var_samp": [ - 4849 + 4848 ], "variance": [ - 4851 + 4850 ], "__typename": [ 80 @@ -108808,10 +108800,10 @@ export default { }, "tournament_team_invites_arr_rel_insert_input": { "data": [ - 4823 + 4822 ], "on_conflict": [ - 4829 + 4828 ], "__typename": [ 80 @@ -108830,10 +108822,10 @@ export default { }, "tournament_team_invites_avg_order_by": { "invited_by_player_steam_id": [ - 2952 + 2951 ], "steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -108841,37 +108833,37 @@ export default { }, "tournament_team_invites_bool_exp": { "_and": [ - 4820 + 4819 ], "_not": [ - 4820 + 4819 ], "_or": [ - 4820 + 4819 ], "created_at": [ - 4500 + 4499 ], "id": [ - 5001 + 5000 ], "invited_by": [ - 3914 + 3913 ], "invited_by_player_steam_id": [ - 260 + 259 ], "player": [ - 3914 + 3913 ], "steam_id": [ - 260 + 259 ], "team": [ - 4902 + 4901 ], "tournament_team_id": [ - 5001 + 5000 ], "__typename": [ 80 @@ -108880,10 +108872,10 @@ export default { "tournament_team_invites_constraint": {}, "tournament_team_invites_inc_input": { "invited_by_player_steam_id": [ - 258 + 257 ], "steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -108891,28 +108883,28 @@ export default { }, "tournament_team_invites_insert_input": { "created_at": [ - 4499 + 4498 ], "id": [ - 4999 + 4998 ], "invited_by": [ - 3921 + 3920 ], "invited_by_player_steam_id": [ - 258 + 257 ], "player": [ - 3921 + 3920 ], "steam_id": [ - 258 + 257 ], "team": [ - 4911 + 4910 ], "tournament_team_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -108920,19 +108912,19 @@ export default { }, "tournament_team_invites_max_fields": { "created_at": [ - 4499 + 4498 ], "id": [ - 4999 + 4998 ], "invited_by_player_steam_id": [ - 258 + 257 ], "steam_id": [ - 258 + 257 ], "tournament_team_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -108940,19 +108932,19 @@ export default { }, "tournament_team_invites_max_order_by": { "created_at": [ - 2952 + 2951 ], "id": [ - 2952 + 2951 ], "invited_by_player_steam_id": [ - 2952 + 2951 ], "steam_id": [ - 2952 + 2951 ], "tournament_team_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -108960,19 +108952,19 @@ export default { }, "tournament_team_invites_min_fields": { "created_at": [ - 4499 + 4498 ], "id": [ - 4999 + 4998 ], "invited_by_player_steam_id": [ - 258 + 257 ], "steam_id": [ - 258 + 257 ], "tournament_team_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -108980,19 +108972,19 @@ export default { }, "tournament_team_invites_min_order_by": { "created_at": [ - 2952 + 2951 ], "id": [ - 2952 + 2951 ], "invited_by_player_steam_id": [ - 2952 + 2951 ], "steam_id": [ - 2952 + 2951 ], "tournament_team_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -109003,7 +108995,7 @@ export default { 40 ], "returning": [ - 4811 + 4810 ], "__typename": [ 80 @@ -109011,13 +109003,13 @@ export default { }, "tournament_team_invites_on_conflict": { "constraint": [ - 4821 + 4820 ], "update_columns": [ - 4844 + 4843 ], "where": [ - 4820 + 4819 ], "__typename": [ 80 @@ -109025,28 +109017,28 @@ export default { }, "tournament_team_invites_order_by": { "created_at": [ - 2952 + 2951 ], "id": [ - 2952 + 2951 ], "invited_by": [ - 3923 + 3922 ], "invited_by_player_steam_id": [ - 2952 + 2951 ], "player": [ - 3923 + 3922 ], "steam_id": [ - 2952 + 2951 ], "team": [ - 4913 + 4912 ], "tournament_team_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -109054,7 +109046,7 @@ export default { }, "tournament_team_invites_pk_columns_input": { "id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -109063,19 +109055,19 @@ export default { "tournament_team_invites_select_column": {}, "tournament_team_invites_set_input": { "created_at": [ - 4499 + 4498 ], "id": [ - 4999 + 4998 ], "invited_by_player_steam_id": [ - 258 + 257 ], "steam_id": [ - 258 + 257 ], "tournament_team_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -109094,10 +109086,10 @@ export default { }, "tournament_team_invites_stddev_order_by": { "invited_by_player_steam_id": [ - 2952 + 2951 ], "steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -109116,10 +109108,10 @@ export default { }, "tournament_team_invites_stddev_pop_order_by": { "invited_by_player_steam_id": [ - 2952 + 2951 ], "steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -109138,10 +109130,10 @@ export default { }, "tournament_team_invites_stddev_samp_order_by": { "invited_by_player_steam_id": [ - 2952 + 2951 ], "steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -109149,10 +109141,10 @@ export default { }, "tournament_team_invites_stream_cursor_input": { "initial_value": [ - 4841 + 4840 ], "ordering": [ - 314 + 313 ], "__typename": [ 80 @@ -109160,19 +109152,19 @@ export default { }, "tournament_team_invites_stream_cursor_value_input": { "created_at": [ - 4499 + 4498 ], "id": [ - 4999 + 4998 ], "invited_by_player_steam_id": [ - 258 + 257 ], "steam_id": [ - 258 + 257 ], "tournament_team_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -109180,10 +109172,10 @@ export default { }, "tournament_team_invites_sum_fields": { "invited_by_player_steam_id": [ - 258 + 257 ], "steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -109191,10 +109183,10 @@ export default { }, "tournament_team_invites_sum_order_by": { "invited_by_player_steam_id": [ - 2952 + 2951 ], "steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -109203,13 +109195,13 @@ export default { "tournament_team_invites_update_column": {}, "tournament_team_invites_updates": { "_inc": [ - 4822 + 4821 ], "_set": [ - 4833 + 4832 ], "where": [ - 4820 + 4819 ], "__typename": [ 80 @@ -109228,10 +109220,10 @@ export default { }, "tournament_team_invites_var_pop_order_by": { "invited_by_player_steam_id": [ - 2952 + 2951 ], "steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -109250,10 +109242,10 @@ export default { }, "tournament_team_invites_var_samp_order_by": { "invited_by_player_steam_id": [ - 2952 + 2951 ], "steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -109272,10 +109264,10 @@ export default { }, "tournament_team_invites_variance_order_by": { "invited_by_player_steam_id": [ - 2952 + 2951 ], "steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -109283,28 +109275,28 @@ export default { }, "tournament_team_roster": { "e_team_role": [ - 1227 + 1226 ], "player": [ - 3910 + 3909 ], "player_steam_id": [ - 258 + 257 ], "role": [ - 1232 + 1231 ], "tournament": [ - 4935 + 4934 ], "tournament_id": [ - 4999 + 4998 ], "tournament_team": [ - 4893 + 4892 ], "tournament_team_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -109312,10 +109304,10 @@ export default { }, "tournament_team_roster_aggregate": { "aggregate": [ - 4856 + 4855 ], "nodes": [ - 4852 + 4851 ], "__typename": [ 80 @@ -109323,7 +109315,7 @@ export default { }, "tournament_team_roster_aggregate_bool_exp": { "count": [ - 4855 + 4854 ], "__typename": [ 80 @@ -109331,13 +109323,13 @@ export default { }, "tournament_team_roster_aggregate_bool_exp_count": { "arguments": [ - 4873 + 4872 ], "distinct": [ 5 ], "filter": [ - 4861 + 4860 ], "predicate": [ 41 @@ -109348,13 +109340,13 @@ export default { }, "tournament_team_roster_aggregate_fields": { "avg": [ - 4859 + 4858 ], "count": [ 40, { "columns": [ - 4873, + 4872, "[tournament_team_roster_select_column!]" ], "distinct": [ @@ -109362,6 +109354,44 @@ export default { ] } ], + "max": [ + 4864 + ], + "min": [ + 4866 + ], + "stddev": [ + 4874 + ], + "stddev_pop": [ + 4876 + ], + "stddev_samp": [ + 4878 + ], + "sum": [ + 4882 + ], + "var_pop": [ + 4886 + ], + "var_samp": [ + 4888 + ], + "variance": [ + 4890 + ], + "__typename": [ + 80 + ] + }, + "tournament_team_roster_aggregate_order_by": { + "avg": [ + 4859 + ], + "count": [ + 2951 + ], "max": [ 4865 ], @@ -109393,50 +109423,12 @@ export default { 80 ] }, - "tournament_team_roster_aggregate_order_by": { - "avg": [ - 4860 - ], - "count": [ - 2952 - ], - "max": [ - 4866 - ], - "min": [ - 4868 - ], - "stddev": [ - 4876 - ], - "stddev_pop": [ - 4878 - ], - "stddev_samp": [ - 4880 - ], - "sum": [ - 4884 - ], - "var_pop": [ - 4888 - ], - "var_samp": [ - 4890 - ], - "variance": [ - 4892 - ], - "__typename": [ - 80 - ] - }, "tournament_team_roster_arr_rel_insert_input": { "data": [ - 4864 + 4863 ], "on_conflict": [ - 4870 + 4869 ], "__typename": [ 80 @@ -109452,7 +109444,7 @@ export default { }, "tournament_team_roster_avg_order_by": { "player_steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -109460,37 +109452,37 @@ export default { }, "tournament_team_roster_bool_exp": { "_and": [ - 4861 + 4860 ], "_not": [ - 4861 + 4860 ], "_or": [ - 4861 + 4860 ], "e_team_role": [ - 1230 + 1229 ], "player": [ - 3914 + 3913 ], "player_steam_id": [ - 260 + 259 ], "role": [ - 1233 + 1232 ], "tournament": [ - 4956 + 4955 ], "tournament_id": [ - 5001 + 5000 ], "tournament_team": [ - 4902 + 4901 ], "tournament_team_id": [ - 5001 + 5000 ], "__typename": [ 80 @@ -109499,7 +109491,7 @@ export default { "tournament_team_roster_constraint": {}, "tournament_team_roster_inc_input": { "player_steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -109507,28 +109499,28 @@ export default { }, "tournament_team_roster_insert_input": { "e_team_role": [ - 1238 + 1237 ], "player": [ - 3921 + 3920 ], "player_steam_id": [ - 258 + 257 ], "role": [ - 1232 + 1231 ], "tournament": [ - 4965 + 4964 ], "tournament_id": [ - 4999 + 4998 ], "tournament_team": [ - 4911 + 4910 ], "tournament_team_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -109536,13 +109528,13 @@ export default { }, "tournament_team_roster_max_fields": { "player_steam_id": [ - 258 + 257 ], "tournament_id": [ - 4999 + 4998 ], "tournament_team_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -109550,13 +109542,13 @@ export default { }, "tournament_team_roster_max_order_by": { "player_steam_id": [ - 2952 + 2951 ], "tournament_id": [ - 2952 + 2951 ], "tournament_team_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -109564,13 +109556,13 @@ export default { }, "tournament_team_roster_min_fields": { "player_steam_id": [ - 258 + 257 ], "tournament_id": [ - 4999 + 4998 ], "tournament_team_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -109578,13 +109570,13 @@ export default { }, "tournament_team_roster_min_order_by": { "player_steam_id": [ - 2952 + 2951 ], "tournament_id": [ - 2952 + 2951 ], "tournament_team_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -109595,7 +109587,7 @@ export default { 40 ], "returning": [ - 4852 + 4851 ], "__typename": [ 80 @@ -109603,13 +109595,13 @@ export default { }, "tournament_team_roster_on_conflict": { "constraint": [ - 4862 + 4861 ], "update_columns": [ - 4885 + 4884 ], "where": [ - 4861 + 4860 ], "__typename": [ 80 @@ -109617,28 +109609,28 @@ export default { }, "tournament_team_roster_order_by": { "e_team_role": [ - 1240 + 1239 ], "player": [ - 3923 + 3922 ], "player_steam_id": [ - 2952 + 2951 ], "role": [ - 2952 + 2951 ], "tournament": [ - 4967 + 4966 ], "tournament_id": [ - 2952 + 2951 ], "tournament_team": [ - 4913 + 4912 ], "tournament_team_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -109646,10 +109638,10 @@ export default { }, "tournament_team_roster_pk_columns_input": { "player_steam_id": [ - 258 + 257 ], "tournament_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -109658,16 +109650,16 @@ export default { "tournament_team_roster_select_column": {}, "tournament_team_roster_set_input": { "player_steam_id": [ - 258 + 257 ], "role": [ - 1232 + 1231 ], "tournament_id": [ - 4999 + 4998 ], "tournament_team_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -109683,7 +109675,7 @@ export default { }, "tournament_team_roster_stddev_order_by": { "player_steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -109699,7 +109691,7 @@ export default { }, "tournament_team_roster_stddev_pop_order_by": { "player_steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -109715,7 +109707,7 @@ export default { }, "tournament_team_roster_stddev_samp_order_by": { "player_steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -109723,10 +109715,10 @@ export default { }, "tournament_team_roster_stream_cursor_input": { "initial_value": [ - 4882 + 4881 ], "ordering": [ - 314 + 313 ], "__typename": [ 80 @@ -109734,16 +109726,16 @@ export default { }, "tournament_team_roster_stream_cursor_value_input": { "player_steam_id": [ - 258 + 257 ], "role": [ - 1232 + 1231 ], "tournament_id": [ - 4999 + 4998 ], "tournament_team_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -109751,7 +109743,7 @@ export default { }, "tournament_team_roster_sum_fields": { "player_steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -109759,7 +109751,7 @@ export default { }, "tournament_team_roster_sum_order_by": { "player_steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -109768,13 +109760,13 @@ export default { "tournament_team_roster_update_column": {}, "tournament_team_roster_updates": { "_inc": [ - 4863 + 4862 ], "_set": [ - 4874 + 4873 ], "where": [ - 4861 + 4860 ], "__typename": [ 80 @@ -109790,7 +109782,7 @@ export default { }, "tournament_team_roster_var_pop_order_by": { "player_steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -109806,7 +109798,7 @@ export default { }, "tournament_team_roster_var_samp_order_by": { "player_steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -109822,7 +109814,7 @@ export default { }, "tournament_team_roster_variance_order_by": { "player_steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -109833,28 +109825,28 @@ export default { 5 ], "captain": [ - 3910 + 3909 ], "captain_steam_id": [ - 258 + 257 ], "created_at": [ - 4499 + 4498 ], "creator": [ - 3910 + 3909 ], "eligible_at": [ - 4499 + 4498 ], "id": [ - 4999 + 4998 ], "invites": [ - 4811, + 4810, { "distinct_on": [ - 4832, + 4831, "[tournament_team_invites_select_column!]" ], "limit": [ @@ -109864,19 +109856,19 @@ export default { 40 ], "order_by": [ - 4830, + 4829, "[tournament_team_invites_order_by!]" ], "where": [ - 4820 + 4819 ] } ], "invites_aggregate": [ - 4812, + 4811, { "distinct_on": [ - 4832, + 4831, "[tournament_team_invites_select_column!]" ], "limit": [ @@ -109886,11 +109878,11 @@ export default { 40 ], "order_by": [ - 4830, + 4829, "[tournament_team_invites_order_by!]" ], "where": [ - 4820 + 4819 ] } ], @@ -109898,16 +109890,16 @@ export default { 80 ], "owner_steam_id": [ - 258 + 257 ], "results": [ - 5723 + 5722 ], "roster": [ - 4852, + 4851, { "distinct_on": [ - 4873, + 4872, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -109917,19 +109909,19 @@ export default { 40 ], "order_by": [ - 4871, + 4870, "[tournament_team_roster_order_by!]" ], "where": [ - 4861 + 4860 ] } ], "roster_aggregate": [ - 4853, + 4852, { "distinct_on": [ - 4873, + 4872, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -109939,11 +109931,11 @@ export default { 40 ], "order_by": [ - 4871, + 4870, "[tournament_team_roster_order_by!]" ], "where": [ - 4861 + 4860 ] } ], @@ -109954,16 +109946,16 @@ export default { 80 ], "team": [ - 4452 + 4451 ], "team_id": [ - 4999 + 4998 ], "tournament": [ - 4935 + 4934 ], "tournament_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -109971,10 +109963,10 @@ export default { }, "tournament_teams_aggregate": { "aggregate": [ - 4897 + 4896 ], "nodes": [ - 4893 + 4892 ], "__typename": [ 80 @@ -109982,7 +109974,7 @@ export default { }, "tournament_teams_aggregate_bool_exp": { "count": [ - 4896 + 4895 ], "__typename": [ 80 @@ -109990,13 +109982,13 @@ export default { }, "tournament_teams_aggregate_bool_exp_count": { "arguments": [ - 4915 + 4914 ], "distinct": [ 5 ], "filter": [ - 4902 + 4901 ], "predicate": [ 41 @@ -110007,13 +109999,13 @@ export default { }, "tournament_teams_aggregate_fields": { "avg": [ - 4900 + 4899 ], "count": [ 40, { "columns": [ - 4915, + 4914, "[tournament_teams_select_column!]" ], "distinct": [ @@ -110022,31 +110014,31 @@ export default { } ], "max": [ - 4906 + 4905 ], "min": [ - 4908 + 4907 ], "stddev": [ - 4917 + 4916 ], "stddev_pop": [ - 4919 + 4918 ], "stddev_samp": [ - 4921 + 4920 ], "sum": [ - 4925 + 4924 ], "var_pop": [ - 4929 + 4928 ], "var_samp": [ - 4931 + 4930 ], "variance": [ - 4933 + 4932 ], "__typename": [ 80 @@ -110054,37 +110046,37 @@ export default { }, "tournament_teams_aggregate_order_by": { "avg": [ - 4901 + 4900 ], "count": [ - 2952 + 2951 ], "max": [ - 4907 + 4906 ], "min": [ - 4909 + 4908 ], "stddev": [ - 4918 + 4917 ], "stddev_pop": [ - 4920 + 4919 ], "stddev_samp": [ - 4922 + 4921 ], "sum": [ - 4926 + 4925 ], "var_pop": [ - 4930 + 4929 ], "var_samp": [ - 4932 + 4931 ], "variance": [ - 4934 + 4933 ], "__typename": [ 80 @@ -110092,10 +110084,10 @@ export default { }, "tournament_teams_arr_rel_insert_input": { "data": [ - 4905 + 4904 ], "on_conflict": [ - 4912 + 4911 ], "__typename": [ 80 @@ -110117,13 +110109,13 @@ export default { }, "tournament_teams_avg_order_by": { "captain_steam_id": [ - 2952 + 2951 ], "owner_steam_id": [ - 2952 + 2951 ], "seed": [ - 2952 + 2951 ], "__typename": [ 80 @@ -110131,55 +110123,55 @@ export default { }, "tournament_teams_bool_exp": { "_and": [ - 4902 + 4901 ], "_not": [ - 4902 + 4901 ], "_or": [ - 4902 + 4901 ], "can_manage": [ 6 ], "captain": [ - 3914 + 3913 ], "captain_steam_id": [ - 260 + 259 ], "created_at": [ - 4500 + 4499 ], "creator": [ - 3914 + 3913 ], "eligible_at": [ - 4500 + 4499 ], "id": [ - 5001 + 5000 ], "invites": [ - 4820 + 4819 ], "invites_aggregate": [ - 4813 + 4812 ], "name": [ 82 ], "owner_steam_id": [ - 260 + 259 ], "results": [ - 5742 + 5741 ], "roster": [ - 4861 + 4860 ], "roster_aggregate": [ - 4854 + 4853 ], "seed": [ 41 @@ -110188,16 +110180,16 @@ export default { 82 ], "team": [ - 4463 + 4462 ], "team_id": [ - 5001 + 5000 ], "tournament": [ - 4956 + 4955 ], "tournament_id": [ - 5001 + 5000 ], "__typename": [ 80 @@ -110206,10 +110198,10 @@ export default { "tournament_teams_constraint": {}, "tournament_teams_inc_input": { "captain_steam_id": [ - 258 + 257 ], "owner_steam_id": [ - 258 + 257 ], "seed": [ 40 @@ -110220,37 +110212,37 @@ export default { }, "tournament_teams_insert_input": { "captain": [ - 3921 + 3920 ], "captain_steam_id": [ - 258 + 257 ], "created_at": [ - 4499 + 4498 ], "creator": [ - 3921 + 3920 ], "eligible_at": [ - 4499 + 4498 ], "id": [ - 4999 + 4998 ], "invites": [ - 4817 + 4816 ], "name": [ 80 ], "owner_steam_id": [ - 258 + 257 ], "results": [ - 5751 + 5750 ], "roster": [ - 4858 + 4857 ], "seed": [ 40 @@ -110259,16 +110251,16 @@ export default { 80 ], "team": [ - 4472 + 4471 ], "team_id": [ - 4999 + 4998 ], "tournament": [ - 4965 + 4964 ], "tournament_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -110276,22 +110268,22 @@ export default { }, "tournament_teams_max_fields": { "captain_steam_id": [ - 258 + 257 ], "created_at": [ - 4499 + 4498 ], "eligible_at": [ - 4499 + 4498 ], "id": [ - 4999 + 4998 ], "name": [ 80 ], "owner_steam_id": [ - 258 + 257 ], "seed": [ 40 @@ -110300,10 +110292,10 @@ export default { 80 ], "team_id": [ - 4999 + 4998 ], "tournament_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -110311,34 +110303,34 @@ export default { }, "tournament_teams_max_order_by": { "captain_steam_id": [ - 2952 + 2951 ], "created_at": [ - 2952 + 2951 ], "eligible_at": [ - 2952 + 2951 ], "id": [ - 2952 + 2951 ], "name": [ - 2952 + 2951 ], "owner_steam_id": [ - 2952 + 2951 ], "seed": [ - 2952 + 2951 ], "short_name": [ - 2952 + 2951 ], "team_id": [ - 2952 + 2951 ], "tournament_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -110346,22 +110338,22 @@ export default { }, "tournament_teams_min_fields": { "captain_steam_id": [ - 258 + 257 ], "created_at": [ - 4499 + 4498 ], "eligible_at": [ - 4499 + 4498 ], "id": [ - 4999 + 4998 ], "name": [ 80 ], "owner_steam_id": [ - 258 + 257 ], "seed": [ 40 @@ -110370,10 +110362,10 @@ export default { 80 ], "team_id": [ - 4999 + 4998 ], "tournament_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -110381,34 +110373,34 @@ export default { }, "tournament_teams_min_order_by": { "captain_steam_id": [ - 2952 + 2951 ], "created_at": [ - 2952 + 2951 ], "eligible_at": [ - 2952 + 2951 ], "id": [ - 2952 + 2951 ], "name": [ - 2952 + 2951 ], "owner_steam_id": [ - 2952 + 2951 ], "seed": [ - 2952 + 2951 ], "short_name": [ - 2952 + 2951 ], "team_id": [ - 2952 + 2951 ], "tournament_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -110419,7 +110411,7 @@ export default { 40 ], "returning": [ - 4893 + 4892 ], "__typename": [ 80 @@ -110427,10 +110419,10 @@ export default { }, "tournament_teams_obj_rel_insert_input": { "data": [ - 4905 + 4904 ], "on_conflict": [ - 4912 + 4911 ], "__typename": [ 80 @@ -110438,13 +110430,13 @@ export default { }, "tournament_teams_on_conflict": { "constraint": [ - 4903 + 4902 ], "update_columns": [ - 4927 + 4926 ], "where": [ - 4902 + 4901 ], "__typename": [ 80 @@ -110452,58 +110444,58 @@ export default { }, "tournament_teams_order_by": { "can_manage": [ - 2952 + 2951 ], "captain": [ - 3923 + 3922 ], "captain_steam_id": [ - 2952 + 2951 ], "created_at": [ - 2952 + 2951 ], "creator": [ - 3923 + 3922 ], "eligible_at": [ - 2952 + 2951 ], "id": [ - 2952 + 2951 ], "invites_aggregate": [ - 4816 + 4815 ], "name": [ - 2952 + 2951 ], "owner_steam_id": [ - 2952 + 2951 ], "results": [ - 5753 + 5752 ], "roster_aggregate": [ - 4857 + 4856 ], "seed": [ - 2952 + 2951 ], "short_name": [ - 2952 + 2951 ], "team": [ - 4474 + 4473 ], "team_id": [ - 2952 + 2951 ], "tournament": [ - 4967 + 4966 ], "tournament_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -110511,7 +110503,7 @@ export default { }, "tournament_teams_pk_columns_input": { "id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -110520,22 +110512,22 @@ export default { "tournament_teams_select_column": {}, "tournament_teams_set_input": { "captain_steam_id": [ - 258 + 257 ], "created_at": [ - 4499 + 4498 ], "eligible_at": [ - 4499 + 4498 ], "id": [ - 4999 + 4998 ], "name": [ 80 ], "owner_steam_id": [ - 258 + 257 ], "seed": [ 40 @@ -110544,10 +110536,10 @@ export default { 80 ], "team_id": [ - 4999 + 4998 ], "tournament_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -110569,13 +110561,13 @@ export default { }, "tournament_teams_stddev_order_by": { "captain_steam_id": [ - 2952 + 2951 ], "owner_steam_id": [ - 2952 + 2951 ], "seed": [ - 2952 + 2951 ], "__typename": [ 80 @@ -110597,13 +110589,13 @@ export default { }, "tournament_teams_stddev_pop_order_by": { "captain_steam_id": [ - 2952 + 2951 ], "owner_steam_id": [ - 2952 + 2951 ], "seed": [ - 2952 + 2951 ], "__typename": [ 80 @@ -110625,13 +110617,13 @@ export default { }, "tournament_teams_stddev_samp_order_by": { "captain_steam_id": [ - 2952 + 2951 ], "owner_steam_id": [ - 2952 + 2951 ], "seed": [ - 2952 + 2951 ], "__typename": [ 80 @@ -110639,10 +110631,10 @@ export default { }, "tournament_teams_stream_cursor_input": { "initial_value": [ - 4924 + 4923 ], "ordering": [ - 314 + 313 ], "__typename": [ 80 @@ -110650,22 +110642,22 @@ export default { }, "tournament_teams_stream_cursor_value_input": { "captain_steam_id": [ - 258 + 257 ], "created_at": [ - 4499 + 4498 ], "eligible_at": [ - 4499 + 4498 ], "id": [ - 4999 + 4998 ], "name": [ 80 ], "owner_steam_id": [ - 258 + 257 ], "seed": [ 40 @@ -110674,10 +110666,10 @@ export default { 80 ], "team_id": [ - 4999 + 4998 ], "tournament_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -110685,10 +110677,10 @@ export default { }, "tournament_teams_sum_fields": { "captain_steam_id": [ - 258 + 257 ], "owner_steam_id": [ - 258 + 257 ], "seed": [ 40 @@ -110699,13 +110691,13 @@ export default { }, "tournament_teams_sum_order_by": { "captain_steam_id": [ - 2952 + 2951 ], "owner_steam_id": [ - 2952 + 2951 ], "seed": [ - 2952 + 2951 ], "__typename": [ 80 @@ -110714,13 +110706,13 @@ export default { "tournament_teams_update_column": {}, "tournament_teams_updates": { "_inc": [ - 4904 + 4903 ], "_set": [ - 4916 + 4915 ], "where": [ - 4902 + 4901 ], "__typename": [ 80 @@ -110742,13 +110734,13 @@ export default { }, "tournament_teams_var_pop_order_by": { "captain_steam_id": [ - 2952 + 2951 ], "owner_steam_id": [ - 2952 + 2951 ], "seed": [ - 2952 + 2951 ], "__typename": [ 80 @@ -110770,13 +110762,13 @@ export default { }, "tournament_teams_var_samp_order_by": { "captain_steam_id": [ - 2952 + 2951 ], "owner_steam_id": [ - 2952 + 2951 ], "seed": [ - 2952 + 2951 ], "__typename": [ 80 @@ -110798,13 +110790,13 @@ export default { }, "tournament_teams_variance_order_by": { "captain_steam_id": [ - 2952 + 2951 ], "owner_steam_id": [ - 2952 + 2951 ], "seed": [ - 2952 + 2951 ], "__typename": [ 80 @@ -110812,16 +110804,16 @@ export default { }, "tournaments": { "admin": [ - 3910 + 3909 ], "auto_start": [ 5 ], "award_configs": [ - 4501, + 4500, { "distinct_on": [ - 4523, + 4522, "[tournament_awards_select_column!]" ], "limit": [ @@ -110831,19 +110823,19 @@ export default { 40 ], "order_by": [ - 4521, + 4520, "[tournament_awards_order_by!]" ], "where": [ - 4510 + 4509 ] } ], "award_configs_aggregate": [ - 4502, + 4501, { "distinct_on": [ - 4523, + 4522, "[tournament_awards_select_column!]" ], "limit": [ @@ -110853,19 +110845,19 @@ export default { 40 ], "order_by": [ - 4521, + 4520, "[tournament_awards_order_by!]" ], "where": [ - 4510 + 4509 ] } ], "awards": [ - 189, + 188, { "distinct_on": [ - 210, + 209, "[award_recipients_select_column!]" ], "limit": [ @@ -110875,19 +110867,19 @@ export default { 40 ], "order_by": [ - 208, + 207, "[award_recipients_order_by!]" ], "where": [ - 198 + 197 ] } ], "awards_aggregate": [ - 190, + 189, { "distinct_on": [ - 210, + 209, "[award_recipients_select_column!]" ], "limit": [ @@ -110897,11 +110889,11 @@ export default { 40 ], "order_by": [ - 208, + 207, "[award_recipients_order_by!]" ], "where": [ - 198 + 197 ] } ], @@ -110936,10 +110928,10 @@ export default { 5 ], "categories": [ - 4589, + 4588, { "distinct_on": [ - 4607, + 4606, "[tournament_categories_select_column!]" ], "limit": [ @@ -110949,19 +110941,19 @@ export default { 40 ], "order_by": [ - 4605, + 4604, "[tournament_categories_order_by!]" ], "where": [ - 4596 + 4595 ] } ], "categories_aggregate": [ - 4590, + 4589, { "distinct_on": [ - 4607, + 4606, "[tournament_categories_select_column!]" ], "limit": [ @@ -110971,16 +110963,16 @@ export default { 40 ], "order_by": [ - 4605, + 4604, "[tournament_categories_order_by!]" ], "where": [ - 4596 + 4595 ] } ], "created_at": [ - 4499 + 4498 ], "description": [ 80 @@ -111037,7 +111029,7 @@ export default { 80 ], "e_tournament_status": [ - 1330 + 1329 ], "has_min_teams": [ 5 @@ -111046,7 +111038,7 @@ export default { 80 ], "id": [ - 4999 + 4998 ], "is_league": [ 5 @@ -111058,10 +111050,10 @@ export default { 5 ], "latitude": [ - 1670 + 1669 ], "league_season_division": [ - 2001 + 2000 ], "location": [ 80 @@ -111070,10 +111062,10 @@ export default { 80 ], "longitude": [ - 1670 + 1669 ], "match_options_id": [ - 4999 + 4998 ], "max_players_per_lineup": [ 40 @@ -111085,16 +111077,16 @@ export default { 80 ], "options": [ - 2647 + 2646 ], "organizer_steam_id": [ - 258 + 257 ], "organizer_teams": [ - 4613, + 4612, { "distinct_on": [ - 4631, + 4630, "[tournament_organizer_teams_select_column!]" ], "limit": [ @@ -111104,19 +111096,19 @@ export default { 40 ], "order_by": [ - 4629, + 4628, "[tournament_organizer_teams_order_by!]" ], "where": [ - 4620 + 4619 ] } ], "organizer_teams_aggregate": [ - 4614, + 4613, { "distinct_on": [ - 4631, + 4630, "[tournament_organizer_teams_select_column!]" ], "limit": [ @@ -111126,19 +111118,19 @@ export default { 40 ], "order_by": [ - 4629, + 4628, "[tournament_organizer_teams_order_by!]" ], "where": [ - 4620 + 4619 ] } ], "organizers": [ - 4637, + 4636, { "distinct_on": [ - 4658, + 4657, "[tournament_organizers_select_column!]" ], "limit": [ @@ -111148,19 +111140,19 @@ export default { 40 ], "order_by": [ - 4656, + 4655, "[tournament_organizers_order_by!]" ], "where": [ - 4646 + 4645 ] } ], "organizers_aggregate": [ - 4638, + 4637, { "distinct_on": [ - 4658, + 4657, "[tournament_organizers_select_column!]" ], "limit": [ @@ -111170,19 +111162,19 @@ export default { 40 ], "order_by": [ - 4656, + 4655, "[tournament_organizers_order_by!]" ], "where": [ - 4646 + 4645 ] } ], "player_stats": [ - 5834, + 5833, { "distinct_on": [ - 5860, + 5859, "[v_tournament_player_stats_select_column!]" ], "limit": [ @@ -111192,19 +111184,19 @@ export default { 40 ], "order_by": [ - 5859, + 5858, "[v_tournament_player_stats_order_by!]" ], "where": [ - 5853 + 5852 ] } ], "player_stats_aggregate": [ - 5835, + 5834, { "distinct_on": [ - 5860, + 5859, "[v_tournament_player_stats_select_column!]" ], "limit": [ @@ -111214,19 +111206,19 @@ export default { 40 ], "order_by": [ - 5859, + 5858, "[v_tournament_player_stats_order_by!]" ], "where": [ - 5853 + 5852 ] } ], "prizes": [ - 4678, + 4677, { "distinct_on": [ - 4699, + 4698, "[tournament_prizes_select_column!]" ], "limit": [ @@ -111236,19 +111228,19 @@ export default { 40 ], "order_by": [ - 4697, + 4696, "[tournament_prizes_order_by!]" ], "where": [ - 4687 + 4686 ] } ], "prizes_aggregate": [ - 4679, + 4678, { "distinct_on": [ - 4699, + 4698, "[tournament_prizes_select_column!]" ], "limit": [ @@ -111258,19 +111250,19 @@ export default { 40 ], "order_by": [ - 4697, + 4696, "[tournament_prizes_order_by!]" ], "where": [ - 4687 + 4686 ] } ], "results": [ - 5783, + 5782, { "distinct_on": [ - 5809, + 5808, "[v_team_tournament_results_select_column!]" ], "limit": [ @@ -111280,19 +111272,19 @@ export default { 40 ], "order_by": [ - 5808, + 5807, "[v_team_tournament_results_order_by!]" ], "where": [ - 5802 + 5801 ] } ], "results_aggregate": [ - 5784, + 5783, { "distinct_on": [ - 5809, + 5808, "[v_team_tournament_results_select_column!]" ], "limit": [ @@ -111302,19 +111294,19 @@ export default { 40 ], "order_by": [ - 5808, + 5807, "[v_team_tournament_results_order_by!]" ], "where": [ - 5802 + 5801 ] } ], "rosters": [ - 4852, + 4851, { "distinct_on": [ - 4873, + 4872, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -111324,19 +111316,19 @@ export default { 40 ], "order_by": [ - 4871, + 4870, "[tournament_team_roster_order_by!]" ], "where": [ - 4861 + 4860 ] } ], "rosters_aggregate": [ - 4853, + 4852, { "distinct_on": [ - 4873, + 4872, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -111346,11 +111338,11 @@ export default { 40 ], "order_by": [ - 4871, + 4870, "[tournament_team_roster_order_by!]" ], "where": [ - 4861 + 4860 ] } ], @@ -111358,10 +111350,10 @@ export default { 80 ], "stages": [ - 4760, + 4759, { "distinct_on": [ - 4789, + 4788, "[tournament_stages_select_column!]" ], "limit": [ @@ -111371,19 +111363,19 @@ export default { 40 ], "order_by": [ - 4786, + 4785, "[tournament_stages_order_by!]" ], "where": [ - 4772 + 4771 ] } ], "stages_aggregate": [ - 4761, + 4760, { "distinct_on": [ - 4789, + 4788, "[tournament_stages_select_column!]" ], "limit": [ @@ -111393,25 +111385,25 @@ export default { 40 ], "order_by": [ - 4786, + 4785, "[tournament_stages_order_by!]" ], "where": [ - 4772 + 4771 ] } ], "start": [ - 4499 + 4498 ], "status": [ - 1335 + 1334 ], "teams": [ - 4893, + 4892, { "distinct_on": [ - 4915, + 4914, "[tournament_teams_select_column!]" ], "limit": [ @@ -111421,19 +111413,19 @@ export default { 40 ], "order_by": [ - 4913, + 4912, "[tournament_teams_order_by!]" ], "where": [ - 4902 + 4901 ] } ], "teams_aggregate": [ - 4894, + 4893, { "distinct_on": [ - 4915, + 4914, "[tournament_teams_select_column!]" ], "limit": [ @@ -111443,11 +111435,11 @@ export default { 40 ], "order_by": [ - 4913, + 4912, "[tournament_teams_order_by!]" ], "where": [ - 4902 + 4901 ] } ], @@ -111457,10 +111449,10 @@ export default { }, "tournaments_aggregate": { "aggregate": [ - 4951 + 4950 ], "nodes": [ - 4935 + 4934 ], "__typename": [ 80 @@ -111468,37 +111460,37 @@ export default { }, "tournaments_aggregate_bool_exp": { "avg": [ - 4938 + 4937 ], "bool_and": [ - 4939 + 4938 ], "bool_or": [ - 4940 + 4939 ], "corr": [ - 4941 + 4940 ], "count": [ - 4943 + 4942 ], "covar_samp": [ - 4944 + 4943 ], "max": [ - 4946 + 4945 ], "min": [ - 4947 + 4946 ], "stddev_samp": [ - 4948 + 4947 ], "sum": [ - 4949 + 4948 ], "var_samp": [ - 4950 + 4949 ], "__typename": [ 80 @@ -111506,16 +111498,16 @@ export default { }, "tournaments_aggregate_bool_exp_avg": { "arguments": [ - 4970 + 4969 ], "distinct": [ 5 ], "filter": [ - 4956 + 4955 ], "predicate": [ - 1671 + 1670 ], "__typename": [ 80 @@ -111523,13 +111515,13 @@ export default { }, "tournaments_aggregate_bool_exp_bool_and": { "arguments": [ - 4971 + 4970 ], "distinct": [ 5 ], "filter": [ - 4956 + 4955 ], "predicate": [ 6 @@ -111540,13 +111532,13 @@ export default { }, "tournaments_aggregate_bool_exp_bool_or": { "arguments": [ - 4972 + 4971 ], "distinct": [ 5 ], "filter": [ - 4956 + 4955 ], "predicate": [ 6 @@ -111557,16 +111549,16 @@ export default { }, "tournaments_aggregate_bool_exp_corr": { "arguments": [ - 4942 + 4941 ], "distinct": [ 5 ], "filter": [ - 4956 + 4955 ], "predicate": [ - 1671 + 1670 ], "__typename": [ 80 @@ -111574,10 +111566,10 @@ export default { }, "tournaments_aggregate_bool_exp_corr_arguments": { "X": [ - 4973 + 4972 ], "Y": [ - 4973 + 4972 ], "__typename": [ 80 @@ -111585,13 +111577,13 @@ export default { }, "tournaments_aggregate_bool_exp_count": { "arguments": [ - 4969 + 4968 ], "distinct": [ 5 ], "filter": [ - 4956 + 4955 ], "predicate": [ 41 @@ -111602,16 +111594,16 @@ export default { }, "tournaments_aggregate_bool_exp_covar_samp": { "arguments": [ - 4945 + 4944 ], "distinct": [ 5 ], "filter": [ - 4956 + 4955 ], "predicate": [ - 1671 + 1670 ], "__typename": [ 80 @@ -111619,10 +111611,10 @@ export default { }, "tournaments_aggregate_bool_exp_covar_samp_arguments": { "X": [ - 4974 + 4973 ], "Y": [ - 4974 + 4973 ], "__typename": [ 80 @@ -111630,16 +111622,16 @@ export default { }, "tournaments_aggregate_bool_exp_max": { "arguments": [ - 4975 + 4974 ], "distinct": [ 5 ], "filter": [ - 4956 + 4955 ], "predicate": [ - 1671 + 1670 ], "__typename": [ 80 @@ -111647,16 +111639,16 @@ export default { }, "tournaments_aggregate_bool_exp_min": { "arguments": [ - 4976 + 4975 ], "distinct": [ 5 ], "filter": [ - 4956 + 4955 ], "predicate": [ - 1671 + 1670 ], "__typename": [ 80 @@ -111664,16 +111656,16 @@ export default { }, "tournaments_aggregate_bool_exp_stddev_samp": { "arguments": [ - 4977 + 4976 ], "distinct": [ 5 ], "filter": [ - 4956 + 4955 ], "predicate": [ - 1671 + 1670 ], "__typename": [ 80 @@ -111681,16 +111673,16 @@ export default { }, "tournaments_aggregate_bool_exp_sum": { "arguments": [ - 4978 + 4977 ], "distinct": [ 5 ], "filter": [ - 4956 + 4955 ], "predicate": [ - 1671 + 1670 ], "__typename": [ 80 @@ -111698,16 +111690,16 @@ export default { }, "tournaments_aggregate_bool_exp_var_samp": { "arguments": [ - 4979 + 4978 ], "distinct": [ 5 ], "filter": [ - 4956 + 4955 ], "predicate": [ - 1671 + 1670 ], "__typename": [ 80 @@ -111715,13 +111707,13 @@ export default { }, "tournaments_aggregate_fields": { "avg": [ - 4954 + 4953 ], "count": [ 40, { "columns": [ - 4969, + 4968, "[tournaments_select_column!]" ], "distinct": [ @@ -111729,6 +111721,44 @@ export default { ] } ], + "max": [ + 4959 + ], + "min": [ + 4961 + ], + "stddev": [ + 4980 + ], + "stddev_pop": [ + 4982 + ], + "stddev_samp": [ + 4984 + ], + "sum": [ + 4988 + ], + "var_pop": [ + 4992 + ], + "var_samp": [ + 4994 + ], + "variance": [ + 4996 + ], + "__typename": [ + 80 + ] + }, + "tournaments_aggregate_order_by": { + "avg": [ + 4954 + ], + "count": [ + 2951 + ], "max": [ 4960 ], @@ -111760,50 +111790,12 @@ export default { 80 ] }, - "tournaments_aggregate_order_by": { - "avg": [ - 4955 - ], - "count": [ - 2952 - ], - "max": [ - 4961 - ], - "min": [ - 4963 - ], - "stddev": [ - 4982 - ], - "stddev_pop": [ - 4984 - ], - "stddev_samp": [ - 4986 - ], - "sum": [ - 4990 - ], - "var_pop": [ - 4994 - ], - "var_samp": [ - 4996 - ], - "variance": [ - 4998 - ], - "__typename": [ - 80 - ] - }, "tournaments_arr_rel_insert_input": { "data": [ - 4959 + 4958 ], "on_conflict": [ - 4966 + 4965 ], "__typename": [ 80 @@ -111831,13 +111823,13 @@ export default { }, "tournaments_avg_order_by": { "latitude": [ - 2952 + 2951 ], "longitude": [ - 2952 + 2951 ], "organizer_steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -111845,31 +111837,31 @@ export default { }, "tournaments_bool_exp": { "_and": [ - 4956 + 4955 ], "_not": [ - 4956 + 4955 ], "_or": [ - 4956 + 4955 ], "admin": [ - 3914 + 3913 ], "auto_start": [ 6 ], "award_configs": [ - 4510 + 4509 ], "award_configs_aggregate": [ - 4503 + 4502 ], "awards": [ - 198 + 197 ], "awards_aggregate": [ - 191 + 190 ], "awards_enabled": [ 6 @@ -111902,13 +111894,13 @@ export default { 6 ], "categories": [ - 4596 + 4595 ], "categories_aggregate": [ - 4591 + 4590 ], "created_at": [ - 4500 + 4499 ], "description": [ 82 @@ -111965,7 +111957,7 @@ export default { 82 ], "e_tournament_status": [ - 1333 + 1332 ], "has_min_teams": [ 6 @@ -111974,7 +111966,7 @@ export default { 82 ], "id": [ - 5001 + 5000 ], "is_league": [ 6 @@ -111986,10 +111978,10 @@ export default { 6 ], "latitude": [ - 1671 + 1670 ], "league_season_division": [ - 2008 + 2007 ], "location": [ 82 @@ -111998,10 +111990,10 @@ export default { 82 ], "longitude": [ - 1671 + 1670 ], "match_options_id": [ - 5001 + 5000 ], "max_players_per_lineup": [ 41 @@ -112013,67 +112005,67 @@ export default { 82 ], "options": [ - 2651 + 2650 ], "organizer_steam_id": [ - 260 + 259 ], "organizer_teams": [ - 4620 + 4619 ], "organizer_teams_aggregate": [ - 4615 + 4614 ], "organizers": [ - 4646 + 4645 ], "organizers_aggregate": [ - 4639 + 4638 ], "player_stats": [ - 5853 + 5852 ], "player_stats_aggregate": [ - 5836 + 5835 ], "prizes": [ - 4687 + 4686 ], "prizes_aggregate": [ - 4680 + 4679 ], "results": [ - 5802 + 5801 ], "results_aggregate": [ - 5785 + 5784 ], "rosters": [ - 4861 + 4860 ], "rosters_aggregate": [ - 4854 + 4853 ], "scheduling_mode": [ 82 ], "stages": [ - 4772 + 4771 ], "stages_aggregate": [ - 4762 + 4761 ], "start": [ - 4500 + 4499 ], "status": [ - 1336 + 1335 ], "teams": [ - 4902 + 4901 ], "teams_aggregate": [ - 4895 + 4894 ], "__typename": [ 80 @@ -112082,13 +112074,13 @@ export default { "tournaments_constraint": {}, "tournaments_inc_input": { "latitude": [ - 1670 + 1669 ], "longitude": [ - 1670 + 1669 ], "organizer_steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -112096,16 +112088,16 @@ export default { }, "tournaments_insert_input": { "admin": [ - 3921 + 3920 ], "auto_start": [ 5 ], "award_configs": [ - 4507 + 4506 ], "awards": [ - 195 + 194 ], "awards_enabled": [ 5 @@ -112114,10 +112106,10 @@ export default { 80 ], "categories": [ - 4595 + 4594 ], "created_at": [ - 4499 + 4498 ], "description": [ 80 @@ -112174,22 +112166,22 @@ export default { 80 ], "e_tournament_status": [ - 1341 + 1340 ], "homepage": [ 80 ], "id": [ - 4999 + 4998 ], "is_league": [ 5 ], "latitude": [ - 1670 + 1669 ], "league_season_division": [ - 2016 + 2015 ], "location": [ 80 @@ -112198,52 +112190,52 @@ export default { 80 ], "longitude": [ - 1670 + 1669 ], "match_options_id": [ - 4999 + 4998 ], "name": [ 80 ], "options": [ - 2658 + 2657 ], "organizer_steam_id": [ - 258 + 257 ], "organizer_teams": [ - 4619 + 4618 ], "organizers": [ - 4643 + 4642 ], "player_stats": [ - 5850 + 5849 ], "prizes": [ - 4684 + 4683 ], "results": [ - 5799 + 5798 ], "rosters": [ - 4858 + 4857 ], "scheduling_mode": [ 80 ], "stages": [ - 4769 + 4768 ], "start": [ - 4499 + 4498 ], "status": [ - 1335 + 1334 ], "teams": [ - 4899 + 4898 ], "__typename": [ 80 @@ -112254,7 +112246,7 @@ export default { 80 ], "created_at": [ - 4499 + 4498 ], "description": [ 80 @@ -112272,10 +112264,10 @@ export default { 80 ], "id": [ - 4999 + 4998 ], "latitude": [ - 1670 + 1669 ], "location": [ 80 @@ -112284,10 +112276,10 @@ export default { 80 ], "longitude": [ - 1670 + 1669 ], "match_options_id": [ - 4999 + 4998 ], "max_players_per_lineup": [ 40 @@ -112299,13 +112291,13 @@ export default { 80 ], "organizer_steam_id": [ - 258 + 257 ], "scheduling_mode": [ 80 ], "start": [ - 4499 + 4498 ], "__typename": [ 80 @@ -112313,55 +112305,55 @@ export default { }, "tournaments_max_order_by": { "banner": [ - 2952 + 2951 ], "created_at": [ - 2952 + 2951 ], "description": [ - 2952 + 2951 ], "discord_guild_id": [ - 2952 + 2951 ], "discord_role_id": [ - 2952 + 2951 ], "discord_webhook": [ - 2952 + 2951 ], "homepage": [ - 2952 + 2951 ], "id": [ - 2952 + 2951 ], "latitude": [ - 2952 + 2951 ], "location": [ - 2952 + 2951 ], "logo": [ - 2952 + 2951 ], "longitude": [ - 2952 + 2951 ], "match_options_id": [ - 2952 + 2951 ], "name": [ - 2952 + 2951 ], "organizer_steam_id": [ - 2952 + 2951 ], "scheduling_mode": [ - 2952 + 2951 ], "start": [ - 2952 + 2951 ], "__typename": [ 80 @@ -112372,7 +112364,7 @@ export default { 80 ], "created_at": [ - 4499 + 4498 ], "description": [ 80 @@ -112390,10 +112382,10 @@ export default { 80 ], "id": [ - 4999 + 4998 ], "latitude": [ - 1670 + 1669 ], "location": [ 80 @@ -112402,10 +112394,10 @@ export default { 80 ], "longitude": [ - 1670 + 1669 ], "match_options_id": [ - 4999 + 4998 ], "max_players_per_lineup": [ 40 @@ -112417,13 +112409,13 @@ export default { 80 ], "organizer_steam_id": [ - 258 + 257 ], "scheduling_mode": [ 80 ], "start": [ - 4499 + 4498 ], "__typename": [ 80 @@ -112431,55 +112423,55 @@ export default { }, "tournaments_min_order_by": { "banner": [ - 2952 + 2951 ], "created_at": [ - 2952 + 2951 ], "description": [ - 2952 + 2951 ], "discord_guild_id": [ - 2952 + 2951 ], "discord_role_id": [ - 2952 + 2951 ], "discord_webhook": [ - 2952 + 2951 ], "homepage": [ - 2952 + 2951 ], "id": [ - 2952 + 2951 ], "latitude": [ - 2952 + 2951 ], "location": [ - 2952 + 2951 ], "logo": [ - 2952 + 2951 ], "longitude": [ - 2952 + 2951 ], "match_options_id": [ - 2952 + 2951 ], "name": [ - 2952 + 2951 ], "organizer_steam_id": [ - 2952 + 2951 ], "scheduling_mode": [ - 2952 + 2951 ], "start": [ - 2952 + 2951 ], "__typename": [ 80 @@ -112490,7 +112482,7 @@ export default { 40 ], "returning": [ - 4935 + 4934 ], "__typename": [ 80 @@ -112498,10 +112490,10 @@ export default { }, "tournaments_obj_rel_insert_input": { "data": [ - 4959 + 4958 ], "on_conflict": [ - 4966 + 4965 ], "__typename": [ 80 @@ -112509,13 +112501,13 @@ export default { }, "tournaments_on_conflict": { "constraint": [ - 4957 + 4956 ], "update_columns": [ - 4991 + 4990 ], "where": [ - 4956 + 4955 ], "__typename": [ 80 @@ -112523,193 +112515,193 @@ export default { }, "tournaments_order_by": { "admin": [ - 3923 + 3922 ], "auto_start": [ - 2952 + 2951 ], "award_configs_aggregate": [ - 4506 + 4505 ], "awards_aggregate": [ - 194 + 193 ], "awards_enabled": [ - 2952 + 2951 ], "banner": [ - 2952 + 2951 ], "can_cancel": [ - 2952 + 2951 ], "can_close_registration": [ - 2952 + 2951 ], "can_join": [ - 2952 + 2951 ], "can_open_registration": [ - 2952 + 2951 ], "can_pause": [ - 2952 + 2951 ], "can_resume": [ - 2952 + 2951 ], "can_setup": [ - 2952 + 2951 ], "can_start": [ - 2952 + 2951 ], "categories_aggregate": [ - 4594 + 4593 ], "created_at": [ - 2952 + 2951 ], "description": [ - 2952 + 2951 ], "discord_guild_id": [ - 2952 + 2951 ], "discord_notifications_enabled": [ - 2952 + 2951 ], "discord_notify_Canceled": [ - 2952 + 2951 ], "discord_notify_Finished": [ - 2952 + 2951 ], "discord_notify_Forfeit": [ - 2952 + 2951 ], "discord_notify_Live": [ - 2952 + 2951 ], "discord_notify_MapPaused": [ - 2952 + 2951 ], "discord_notify_PickingPlayers": [ - 2952 + 2951 ], "discord_notify_Scheduled": [ - 2952 + 2951 ], "discord_notify_Surrendered": [ - 2952 + 2951 ], "discord_notify_Tie": [ - 2952 + 2951 ], "discord_notify_Veto": [ - 2952 + 2951 ], "discord_notify_WaitingForCheckIn": [ - 2952 + 2951 ], "discord_notify_WaitingForServer": [ - 2952 + 2951 ], "discord_role_id": [ - 2952 + 2951 ], "discord_voice_enabled": [ - 2952 + 2951 ], "discord_webhook": [ - 2952 + 2951 ], "e_tournament_status": [ - 1343 + 1342 ], "has_min_teams": [ - 2952 + 2951 ], "homepage": [ - 2952 + 2951 ], "id": [ - 2952 + 2951 ], "is_league": [ - 2952 + 2951 ], "is_organizer": [ - 2952 + 2951 ], "joined_tournament": [ - 2952 + 2951 ], "latitude": [ - 2952 + 2951 ], "league_season_division": [ - 2018 + 2017 ], "location": [ - 2952 + 2951 ], "logo": [ - 2952 + 2951 ], "longitude": [ - 2952 + 2951 ], "match_options_id": [ - 2952 + 2951 ], "max_players_per_lineup": [ - 2952 + 2951 ], "min_players_per_lineup": [ - 2952 + 2951 ], "name": [ - 2952 + 2951 ], "options": [ - 2660 + 2659 ], "organizer_steam_id": [ - 2952 + 2951 ], "organizer_teams_aggregate": [ - 4618 + 4617 ], "organizers_aggregate": [ - 4642 + 4641 ], "player_stats_aggregate": [ - 5849 + 5848 ], "prizes_aggregate": [ - 4683 + 4682 ], "results_aggregate": [ - 5798 + 5797 ], "rosters_aggregate": [ - 4857 + 4856 ], "scheduling_mode": [ - 2952 + 2951 ], "stages_aggregate": [ - 4767 + 4766 ], "start": [ - 2952 + 2951 ], "status": [ - 2952 + 2951 ], "teams_aggregate": [ - 4898 + 4897 ], "__typename": [ 80 @@ -112717,7 +112709,7 @@ export default { }, "tournaments_pk_columns_input": { "id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -112745,7 +112737,7 @@ export default { 80 ], "created_at": [ - 4499 + 4498 ], "description": [ 80 @@ -112805,13 +112797,13 @@ export default { 80 ], "id": [ - 4999 + 4998 ], "is_league": [ 5 ], "latitude": [ - 1670 + 1669 ], "location": [ 80 @@ -112820,25 +112812,25 @@ export default { 80 ], "longitude": [ - 1670 + 1669 ], "match_options_id": [ - 4999 + 4998 ], "name": [ 80 ], "organizer_steam_id": [ - 258 + 257 ], "scheduling_mode": [ 80 ], "start": [ - 4499 + 4498 ], "status": [ - 1335 + 1334 ], "__typename": [ 80 @@ -112866,13 +112858,13 @@ export default { }, "tournaments_stddev_order_by": { "latitude": [ - 2952 + 2951 ], "longitude": [ - 2952 + 2951 ], "organizer_steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -112900,13 +112892,13 @@ export default { }, "tournaments_stddev_pop_order_by": { "latitude": [ - 2952 + 2951 ], "longitude": [ - 2952 + 2951 ], "organizer_steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -112934,13 +112926,13 @@ export default { }, "tournaments_stddev_samp_order_by": { "latitude": [ - 2952 + 2951 ], "longitude": [ - 2952 + 2951 ], "organizer_steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -112948,10 +112940,10 @@ export default { }, "tournaments_stream_cursor_input": { "initial_value": [ - 4988 + 4987 ], "ordering": [ - 314 + 313 ], "__typename": [ 80 @@ -112968,7 +112960,7 @@ export default { 80 ], "created_at": [ - 4499 + 4498 ], "description": [ 80 @@ -113028,13 +113020,13 @@ export default { 80 ], "id": [ - 4999 + 4998 ], "is_league": [ 5 ], "latitude": [ - 1670 + 1669 ], "location": [ 80 @@ -113043,25 +113035,25 @@ export default { 80 ], "longitude": [ - 1670 + 1669 ], "match_options_id": [ - 4999 + 4998 ], "name": [ 80 ], "organizer_steam_id": [ - 258 + 257 ], "scheduling_mode": [ 80 ], "start": [ - 4499 + 4498 ], "status": [ - 1335 + 1334 ], "__typename": [ 80 @@ -113069,10 +113061,10 @@ export default { }, "tournaments_sum_fields": { "latitude": [ - 1670 + 1669 ], "longitude": [ - 1670 + 1669 ], "max_players_per_lineup": [ 40 @@ -113081,7 +113073,7 @@ export default { 40 ], "organizer_steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -113089,13 +113081,13 @@ export default { }, "tournaments_sum_order_by": { "latitude": [ - 2952 + 2951 ], "longitude": [ - 2952 + 2951 ], "organizer_steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -113104,13 +113096,13 @@ export default { "tournaments_update_column": {}, "tournaments_updates": { "_inc": [ - 4958 + 4957 ], "_set": [ - 4980 + 4979 ], "where": [ - 4956 + 4955 ], "__typename": [ 80 @@ -113138,13 +113130,13 @@ export default { }, "tournaments_var_pop_order_by": { "latitude": [ - 2952 + 2951 ], "longitude": [ - 2952 + 2951 ], "organizer_steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -113172,13 +113164,13 @@ export default { }, "tournaments_var_samp_order_by": { "latitude": [ - 2952 + 2951 ], "longitude": [ - 2952 + 2951 ], "organizer_steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -113206,13 +113198,13 @@ export default { }, "tournaments_variance_order_by": { "latitude": [ - 2952 + 2951 ], "longitude": [ - 2952 + 2951 ], "organizer_steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -113221,37 +113213,37 @@ export default { "uuid": {}, "uuid_array_comparison_exp": { "_contained_in": [ - 4999 + 4998 ], "_contains": [ - 4999 + 4998 ], "_eq": [ - 4999 + 4998 ], "_gt": [ - 4999 + 4998 ], "_gte": [ - 4999 + 4998 ], "_in": [ - 4999 + 4998 ], "_is_null": [ 5 ], "_lt": [ - 4999 + 4998 ], "_lte": [ - 4999 + 4998 ], "_neq": [ - 4999 + 4998 ], "_nin": [ - 4999 + 4998 ], "__typename": [ 80 @@ -113259,31 +113251,31 @@ export default { }, "uuid_comparison_exp": { "_eq": [ - 4999 + 4998 ], "_gt": [ - 4999 + 4998 ], "_gte": [ - 4999 + 4998 ], "_in": [ - 4999 + 4998 ], "_is_null": [ 5 ], "_lt": [ - 4999 + 4998 ], "_lte": [ - 4999 + 4998 ], "_neq": [ - 4999 + 4998 ], "_nin": [ - 4999 + 4998 ], "__typename": [ 80 @@ -113297,19 +113289,19 @@ export default { 40 ], "event": [ - 1642 + 1641 ], "event_id": [ - 4999 + 4998 ], "headshot_percentage": [ - 1670 + 1669 ], "headshots": [ 40 ], "kdr": [ - 1670 + 1669 ], "kills": [ 40 @@ -113318,10 +113310,10 @@ export default { 40 ], "player": [ - 3910 + 3909 ], "player_steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -113329,10 +113321,10 @@ export default { }, "v_event_player_stats_aggregate": { "aggregate": [ - 5016 + 5015 ], "nodes": [ - 5002 + 5001 ], "__typename": [ 80 @@ -113340,31 +113332,31 @@ export default { }, "v_event_player_stats_aggregate_bool_exp": { "avg": [ - 5005 + 5004 ], "corr": [ - 5006 + 5005 ], "count": [ - 5008 + 5007 ], "covar_samp": [ - 5009 + 5008 ], "max": [ - 5011 + 5010 ], "min": [ - 5012 + 5011 ], "stddev_samp": [ - 5013 + 5012 ], "sum": [ - 5014 + 5013 ], "var_samp": [ - 5015 + 5014 ], "__typename": [ 80 @@ -113372,16 +113364,16 @@ export default { }, "v_event_player_stats_aggregate_bool_exp_avg": { "arguments": [ - 5029 + 5028 ], "distinct": [ 5 ], "filter": [ - 5021 + 5020 ], "predicate": [ - 1671 + 1670 ], "__typename": [ 80 @@ -113389,16 +113381,16 @@ export default { }, "v_event_player_stats_aggregate_bool_exp_corr": { "arguments": [ - 5007 + 5006 ], "distinct": [ 5 ], "filter": [ - 5021 + 5020 ], "predicate": [ - 1671 + 1670 ], "__typename": [ 80 @@ -113406,10 +113398,10 @@ export default { }, "v_event_player_stats_aggregate_bool_exp_corr_arguments": { "X": [ - 5030 + 5029 ], "Y": [ - 5030 + 5029 ], "__typename": [ 80 @@ -113417,13 +113409,13 @@ export default { }, "v_event_player_stats_aggregate_bool_exp_count": { "arguments": [ - 5028 + 5027 ], "distinct": [ 5 ], "filter": [ - 5021 + 5020 ], "predicate": [ 41 @@ -113434,16 +113426,16 @@ export default { }, "v_event_player_stats_aggregate_bool_exp_covar_samp": { "arguments": [ - 5010 + 5009 ], "distinct": [ 5 ], "filter": [ - 5021 + 5020 ], "predicate": [ - 1671 + 1670 ], "__typename": [ 80 @@ -113451,10 +113443,10 @@ export default { }, "v_event_player_stats_aggregate_bool_exp_covar_samp_arguments": { "X": [ - 5031 + 5030 ], "Y": [ - 5031 + 5030 ], "__typename": [ 80 @@ -113462,16 +113454,16 @@ export default { }, "v_event_player_stats_aggregate_bool_exp_max": { "arguments": [ - 5032 + 5031 ], "distinct": [ 5 ], "filter": [ - 5021 + 5020 ], "predicate": [ - 1671 + 1670 ], "__typename": [ 80 @@ -113479,16 +113471,16 @@ export default { }, "v_event_player_stats_aggregate_bool_exp_min": { "arguments": [ - 5033 + 5032 ], "distinct": [ 5 ], "filter": [ - 5021 + 5020 ], "predicate": [ - 1671 + 1670 ], "__typename": [ 80 @@ -113496,16 +113488,16 @@ export default { }, "v_event_player_stats_aggregate_bool_exp_stddev_samp": { "arguments": [ - 5034 + 5033 ], "distinct": [ 5 ], "filter": [ - 5021 + 5020 ], "predicate": [ - 1671 + 1670 ], "__typename": [ 80 @@ -113513,16 +113505,16 @@ export default { }, "v_event_player_stats_aggregate_bool_exp_sum": { "arguments": [ - 5035 + 5034 ], "distinct": [ 5 ], "filter": [ - 5021 + 5020 ], "predicate": [ - 1671 + 1670 ], "__typename": [ 80 @@ -113530,16 +113522,16 @@ export default { }, "v_event_player_stats_aggregate_bool_exp_var_samp": { "arguments": [ - 5036 + 5035 ], "distinct": [ 5 ], "filter": [ - 5021 + 5020 ], "predicate": [ - 1671 + 1670 ], "__typename": [ 80 @@ -113547,13 +113539,13 @@ export default { }, "v_event_player_stats_aggregate_fields": { "avg": [ - 5019 + 5018 ], "count": [ 40, { "columns": [ - 5028, + 5027, "[v_event_player_stats_select_column!]" ], "distinct": [ @@ -113562,31 +113554,31 @@ export default { } ], "max": [ - 5023 + 5022 ], "min": [ - 5025 + 5024 ], "stddev": [ - 5037 + 5036 ], "stddev_pop": [ - 5039 + 5038 ], "stddev_samp": [ - 5041 + 5040 ], "sum": [ - 5045 + 5044 ], "var_pop": [ - 5047 + 5046 ], "var_samp": [ - 5049 + 5048 ], "variance": [ - 5051 + 5050 ], "__typename": [ 80 @@ -113594,37 +113586,37 @@ export default { }, "v_event_player_stats_aggregate_order_by": { "avg": [ - 5020 + 5019 ], "count": [ - 2952 + 2951 ], "max": [ - 5024 + 5023 ], "min": [ - 5026 + 5025 ], "stddev": [ - 5038 + 5037 ], "stddev_pop": [ - 5040 + 5039 ], "stddev_samp": [ - 5042 + 5041 ], "sum": [ - 5046 + 5045 ], "var_pop": [ - 5048 + 5047 ], "var_samp": [ - 5050 + 5049 ], "variance": [ - 5052 + 5051 ], "__typename": [ 80 @@ -113632,7 +113624,7 @@ export default { }, "v_event_player_stats_arr_rel_insert_input": { "data": [ - 5022 + 5021 ], "__typename": [ 80 @@ -113669,28 +113661,28 @@ export default { }, "v_event_player_stats_avg_order_by": { "assists": [ - 2952 + 2951 ], "deaths": [ - 2952 + 2951 ], "headshot_percentage": [ - 2952 + 2951 ], "headshots": [ - 2952 + 2951 ], "kdr": [ - 2952 + 2951 ], "kills": [ - 2952 + 2951 ], "matches_played": [ - 2952 + 2951 ], "player_steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -113698,13 +113690,13 @@ export default { }, "v_event_player_stats_bool_exp": { "_and": [ - 5021 + 5020 ], "_not": [ - 5021 + 5020 ], "_or": [ - 5021 + 5020 ], "assists": [ 41 @@ -113713,19 +113705,19 @@ export default { 41 ], "event": [ - 1646 + 1645 ], "event_id": [ - 5001 + 5000 ], "headshot_percentage": [ - 1671 + 1670 ], "headshots": [ 41 ], "kdr": [ - 1671 + 1670 ], "kills": [ 41 @@ -113734,10 +113726,10 @@ export default { 41 ], "player": [ - 3914 + 3913 ], "player_steam_id": [ - 260 + 259 ], "__typename": [ 80 @@ -113751,19 +113743,19 @@ export default { 40 ], "event": [ - 1653 + 1652 ], "event_id": [ - 4999 + 4998 ], "headshot_percentage": [ - 1670 + 1669 ], "headshots": [ 40 ], "kdr": [ - 1670 + 1669 ], "kills": [ 40 @@ -113772,10 +113764,10 @@ export default { 40 ], "player": [ - 3921 + 3920 ], "player_steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -113789,16 +113781,16 @@ export default { 40 ], "event_id": [ - 4999 + 4998 ], "headshot_percentage": [ - 1670 + 1669 ], "headshots": [ 40 ], "kdr": [ - 1670 + 1669 ], "kills": [ 40 @@ -113807,7 +113799,7 @@ export default { 40 ], "player_steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -113815,31 +113807,31 @@ export default { }, "v_event_player_stats_max_order_by": { "assists": [ - 2952 + 2951 ], "deaths": [ - 2952 + 2951 ], "event_id": [ - 2952 + 2951 ], "headshot_percentage": [ - 2952 + 2951 ], "headshots": [ - 2952 + 2951 ], "kdr": [ - 2952 + 2951 ], "kills": [ - 2952 + 2951 ], "matches_played": [ - 2952 + 2951 ], "player_steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -113853,16 +113845,16 @@ export default { 40 ], "event_id": [ - 4999 + 4998 ], "headshot_percentage": [ - 1670 + 1669 ], "headshots": [ 40 ], "kdr": [ - 1670 + 1669 ], "kills": [ 40 @@ -113871,7 +113863,7 @@ export default { 40 ], "player_steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -113879,31 +113871,31 @@ export default { }, "v_event_player_stats_min_order_by": { "assists": [ - 2952 + 2951 ], "deaths": [ - 2952 + 2951 ], "event_id": [ - 2952 + 2951 ], "headshot_percentage": [ - 2952 + 2951 ], "headshots": [ - 2952 + 2951 ], "kdr": [ - 2952 + 2951 ], "kills": [ - 2952 + 2951 ], "matches_played": [ - 2952 + 2951 ], "player_steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -113911,37 +113903,37 @@ export default { }, "v_event_player_stats_order_by": { "assists": [ - 2952 + 2951 ], "deaths": [ - 2952 + 2951 ], "event": [ - 1655 + 1654 ], "event_id": [ - 2952 + 2951 ], "headshot_percentage": [ - 2952 + 2951 ], "headshots": [ - 2952 + 2951 ], "kdr": [ - 2952 + 2951 ], "kills": [ - 2952 + 2951 ], "matches_played": [ - 2952 + 2951 ], "player": [ - 3923 + 3922 ], "player_steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -113987,28 +113979,28 @@ export default { }, "v_event_player_stats_stddev_order_by": { "assists": [ - 2952 + 2951 ], "deaths": [ - 2952 + 2951 ], "headshot_percentage": [ - 2952 + 2951 ], "headshots": [ - 2952 + 2951 ], "kdr": [ - 2952 + 2951 ], "kills": [ - 2952 + 2951 ], "matches_played": [ - 2952 + 2951 ], "player_steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -114045,28 +114037,28 @@ export default { }, "v_event_player_stats_stddev_pop_order_by": { "assists": [ - 2952 + 2951 ], "deaths": [ - 2952 + 2951 ], "headshot_percentage": [ - 2952 + 2951 ], "headshots": [ - 2952 + 2951 ], "kdr": [ - 2952 + 2951 ], "kills": [ - 2952 + 2951 ], "matches_played": [ - 2952 + 2951 ], "player_steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -114103,28 +114095,28 @@ export default { }, "v_event_player_stats_stddev_samp_order_by": { "assists": [ - 2952 + 2951 ], "deaths": [ - 2952 + 2951 ], "headshot_percentage": [ - 2952 + 2951 ], "headshots": [ - 2952 + 2951 ], "kdr": [ - 2952 + 2951 ], "kills": [ - 2952 + 2951 ], "matches_played": [ - 2952 + 2951 ], "player_steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -114132,10 +114124,10 @@ export default { }, "v_event_player_stats_stream_cursor_input": { "initial_value": [ - 5044 + 5043 ], "ordering": [ - 314 + 313 ], "__typename": [ 80 @@ -114149,16 +114141,16 @@ export default { 40 ], "event_id": [ - 4999 + 4998 ], "headshot_percentage": [ - 1670 + 1669 ], "headshots": [ 40 ], "kdr": [ - 1670 + 1669 ], "kills": [ 40 @@ -114167,7 +114159,7 @@ export default { 40 ], "player_steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -114181,13 +114173,13 @@ export default { 40 ], "headshot_percentage": [ - 1670 + 1669 ], "headshots": [ 40 ], "kdr": [ - 1670 + 1669 ], "kills": [ 40 @@ -114196,7 +114188,7 @@ export default { 40 ], "player_steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -114204,28 +114196,28 @@ export default { }, "v_event_player_stats_sum_order_by": { "assists": [ - 2952 + 2951 ], "deaths": [ - 2952 + 2951 ], "headshot_percentage": [ - 2952 + 2951 ], "headshots": [ - 2952 + 2951 ], "kdr": [ - 2952 + 2951 ], "kills": [ - 2952 + 2951 ], "matches_played": [ - 2952 + 2951 ], "player_steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -114262,28 +114254,28 @@ export default { }, "v_event_player_stats_var_pop_order_by": { "assists": [ - 2952 + 2951 ], "deaths": [ - 2952 + 2951 ], "headshot_percentage": [ - 2952 + 2951 ], "headshots": [ - 2952 + 2951 ], "kdr": [ - 2952 + 2951 ], "kills": [ - 2952 + 2951 ], "matches_played": [ - 2952 + 2951 ], "player_steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -114320,28 +114312,28 @@ export default { }, "v_event_player_stats_var_samp_order_by": { "assists": [ - 2952 + 2951 ], "deaths": [ - 2952 + 2951 ], "headshot_percentage": [ - 2952 + 2951 ], "headshots": [ - 2952 + 2951 ], "kdr": [ - 2952 + 2951 ], "kills": [ - 2952 + 2951 ], "matches_played": [ - 2952 + 2951 ], "player_steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -114378,28 +114370,28 @@ export default { }, "v_event_player_stats_variance_order_by": { "assists": [ - 2952 + 2951 ], "deaths": [ - 2952 + 2951 ], "headshot_percentage": [ - 2952 + 2951 ], "headshots": [ - 2952 + 2951 ], "kdr": [ - 2952 + 2951 ], "kills": [ - 2952 + 2951 ], "matches_played": [ - 2952 + 2951 ], "player_steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -114454,10 +114446,10 @@ export default { }, "v_gpu_pool_status_aggregate": { "aggregate": [ - 5055 + 5054 ], "nodes": [ - 5053 + 5052 ], "__typename": [ 80 @@ -114465,13 +114457,13 @@ export default { }, "v_gpu_pool_status_aggregate_fields": { "avg": [ - 5056 + 5055 ], "count": [ 40, { "columns": [ - 5061, + 5060, "[v_gpu_pool_status_select_column!]" ], "distinct": [ @@ -114480,31 +114472,31 @@ export default { } ], "max": [ - 5058 + 5057 ], "min": [ - 5059 + 5058 ], "stddev": [ - 5062 + 5061 ], "stddev_pop": [ - 5063 + 5062 ], "stddev_samp": [ - 5064 + 5063 ], "sum": [ - 5067 + 5066 ], "var_pop": [ - 5068 + 5067 ], "var_samp": [ - 5069 + 5068 ], "variance": [ - 5070 + 5069 ], "__typename": [ 80 @@ -114547,13 +114539,13 @@ export default { }, "v_gpu_pool_status_bool_exp": { "_and": [ - 5057 + 5056 ], "_not": [ - 5057 + 5056 ], "_or": [ - 5057 + 5056 ], "demo_free_gpu_nodes": [ 41 @@ -114673,46 +114665,46 @@ export default { }, "v_gpu_pool_status_order_by": { "demo_free_gpu_nodes": [ - 2952 + 2951 ], "demo_in_progress": [ - 2952 + 2951 ], "demo_total_gpu_nodes": [ - 2952 + 2951 ], "free_gpu_nodes": [ - 2952 + 2951 ], "free_gpu_nodes_for_batch": [ - 2952 + 2951 ], "highlights_in_progress": [ - 2952 + 2951 ], "id": [ - 2952 + 2951 ], "live_in_progress": [ - 2952 + 2951 ], "registered_gpu_nodes": [ - 2952 + 2951 ], "rendering_total_gpu_nodes": [ - 2952 + 2951 ], "renders_paused_for_active_match": [ - 2952 + 2951 ], "streaming_free_gpu_nodes": [ - 2952 + 2951 ], "streaming_total_gpu_nodes": [ - 2952 + 2951 ], "total_gpu_nodes": [ - 2952 + 2951 ], "__typename": [ 80 @@ -114826,10 +114818,10 @@ export default { }, "v_gpu_pool_status_stream_cursor_input": { "initial_value": [ - 5066 + 5065 ], "ordering": [ - 314 + 313 ], "__typename": [ 80 @@ -115030,22 +115022,22 @@ export default { 40 ], "league_division_id": [ - 4999 + 4998 ], "league_season_division_id": [ - 4999 + 4998 ], "league_season_id": [ - 4999 + 4998 ], "league_team": [ - 2183 + 2182 ], "league_team_id": [ - 4999 + 4998 ], "league_team_season_id": [ - 4999 + 4998 ], "losses": [ 40 @@ -115075,13 +115067,13 @@ export default { 40 ], "season_division": [ - 2001 + 2000 ], "team_season": [ - 2141 + 2140 ], "tournament_team_id": [ - 4999 + 4998 ], "wins": [ 40 @@ -115092,10 +115084,10 @@ export default { }, "v_league_division_standings_aggregate": { "aggregate": [ - 5075 + 5074 ], "nodes": [ - 5071 + 5070 ], "__typename": [ 80 @@ -115103,7 +115095,7 @@ export default { }, "v_league_division_standings_aggregate_bool_exp": { "count": [ - 5074 + 5073 ], "__typename": [ 80 @@ -115111,13 +115103,13 @@ export default { }, "v_league_division_standings_aggregate_bool_exp_count": { "arguments": [ - 5087 + 5086 ], "distinct": [ 5 ], "filter": [ - 5080 + 5079 ], "predicate": [ 41 @@ -115128,13 +115120,13 @@ export default { }, "v_league_division_standings_aggregate_fields": { "avg": [ - 5078 + 5077 ], "count": [ 40, { "columns": [ - 5087, + 5086, "[v_league_division_standings_select_column!]" ], "distinct": [ @@ -115143,31 +115135,31 @@ export default { } ], "max": [ - 5082 + 5081 ], "min": [ - 5084 + 5083 ], "stddev": [ - 5088 + 5087 ], "stddev_pop": [ - 5090 + 5089 ], "stddev_samp": [ - 5092 + 5091 ], "sum": [ - 5096 + 5095 ], "var_pop": [ - 5098 + 5097 ], "var_samp": [ - 5100 + 5099 ], "variance": [ - 5102 + 5101 ], "__typename": [ 80 @@ -115175,37 +115167,37 @@ export default { }, "v_league_division_standings_aggregate_order_by": { "avg": [ - 5079 + 5078 ], "count": [ - 2952 + 2951 ], "max": [ - 5083 + 5082 ], "min": [ - 5085 + 5084 ], "stddev": [ - 5089 + 5088 ], "stddev_pop": [ - 5091 + 5090 ], "stddev_samp": [ - 5093 + 5092 ], "sum": [ - 5097 + 5096 ], "var_pop": [ - 5099 + 5098 ], "var_samp": [ - 5101 + 5100 ], "variance": [ - 5103 + 5102 ], "__typename": [ 80 @@ -115213,7 +115205,7 @@ export default { }, "v_league_division_standings_arr_rel_insert_input": { "data": [ - 5081 + 5080 ], "__typename": [ 80 @@ -115262,40 +115254,40 @@ export default { }, "v_league_division_standings_avg_order_by": { "head_to_head_match_wins": [ - 2952 + 2951 ], "head_to_head_rounds_won": [ - 2952 + 2951 ], "losses": [ - 2952 + 2951 ], "maps_lost": [ - 2952 + 2951 ], "maps_won": [ - 2952 + 2951 ], "matches_played": [ - 2952 + 2951 ], "matches_remaining": [ - 2952 + 2951 ], "rank": [ - 2952 + 2951 ], "round_diff": [ - 2952 + 2951 ], "rounds_lost": [ - 2952 + 2951 ], "rounds_won": [ - 2952 + 2951 ], "wins": [ - 2952 + 2951 ], "__typename": [ 80 @@ -115303,13 +115295,13 @@ export default { }, "v_league_division_standings_bool_exp": { "_and": [ - 5080 + 5079 ], "_not": [ - 5080 + 5079 ], "_or": [ - 5080 + 5079 ], "head_to_head_match_wins": [ 41 @@ -115318,22 +115310,22 @@ export default { 41 ], "league_division_id": [ - 5001 + 5000 ], "league_season_division_id": [ - 5001 + 5000 ], "league_season_id": [ - 5001 + 5000 ], "league_team": [ - 2186 + 2185 ], "league_team_id": [ - 5001 + 5000 ], "league_team_season_id": [ - 5001 + 5000 ], "losses": [ 41 @@ -115363,13 +115355,13 @@ export default { 41 ], "season_division": [ - 2008 + 2007 ], "team_season": [ - 2150 + 2149 ], "tournament_team_id": [ - 5001 + 5000 ], "wins": [ 41 @@ -115386,22 +115378,22 @@ export default { 40 ], "league_division_id": [ - 4999 + 4998 ], "league_season_division_id": [ - 4999 + 4998 ], "league_season_id": [ - 4999 + 4998 ], "league_team": [ - 2192 + 2191 ], "league_team_id": [ - 4999 + 4998 ], "league_team_season_id": [ - 4999 + 4998 ], "losses": [ 40 @@ -115431,13 +115423,13 @@ export default { 40 ], "season_division": [ - 2016 + 2015 ], "team_season": [ - 2159 + 2158 ], "tournament_team_id": [ - 4999 + 4998 ], "wins": [ 40 @@ -115454,19 +115446,19 @@ export default { 40 ], "league_division_id": [ - 4999 + 4998 ], "league_season_division_id": [ - 4999 + 4998 ], "league_season_id": [ - 4999 + 4998 ], "league_team_id": [ - 4999 + 4998 ], "league_team_season_id": [ - 4999 + 4998 ], "losses": [ 40 @@ -115496,7 +115488,7 @@ export default { 40 ], "tournament_team_id": [ - 4999 + 4998 ], "wins": [ 40 @@ -115507,58 +115499,58 @@ export default { }, "v_league_division_standings_max_order_by": { "head_to_head_match_wins": [ - 2952 + 2951 ], "head_to_head_rounds_won": [ - 2952 + 2951 ], "league_division_id": [ - 2952 + 2951 ], "league_season_division_id": [ - 2952 + 2951 ], "league_season_id": [ - 2952 + 2951 ], "league_team_id": [ - 2952 + 2951 ], "league_team_season_id": [ - 2952 + 2951 ], "losses": [ - 2952 + 2951 ], "maps_lost": [ - 2952 + 2951 ], "maps_won": [ - 2952 + 2951 ], "matches_played": [ - 2952 + 2951 ], "matches_remaining": [ - 2952 + 2951 ], "rank": [ - 2952 + 2951 ], "round_diff": [ - 2952 + 2951 ], "rounds_lost": [ - 2952 + 2951 ], "rounds_won": [ - 2952 + 2951 ], "tournament_team_id": [ - 2952 + 2951 ], "wins": [ - 2952 + 2951 ], "__typename": [ 80 @@ -115572,19 +115564,19 @@ export default { 40 ], "league_division_id": [ - 4999 + 4998 ], "league_season_division_id": [ - 4999 + 4998 ], "league_season_id": [ - 4999 + 4998 ], "league_team_id": [ - 4999 + 4998 ], "league_team_season_id": [ - 4999 + 4998 ], "losses": [ 40 @@ -115614,7 +115606,7 @@ export default { 40 ], "tournament_team_id": [ - 4999 + 4998 ], "wins": [ 40 @@ -115625,58 +115617,58 @@ export default { }, "v_league_division_standings_min_order_by": { "head_to_head_match_wins": [ - 2952 + 2951 ], "head_to_head_rounds_won": [ - 2952 + 2951 ], "league_division_id": [ - 2952 + 2951 ], "league_season_division_id": [ - 2952 + 2951 ], "league_season_id": [ - 2952 + 2951 ], "league_team_id": [ - 2952 + 2951 ], "league_team_season_id": [ - 2952 + 2951 ], "losses": [ - 2952 + 2951 ], "maps_lost": [ - 2952 + 2951 ], "maps_won": [ - 2952 + 2951 ], "matches_played": [ - 2952 + 2951 ], "matches_remaining": [ - 2952 + 2951 ], "rank": [ - 2952 + 2951 ], "round_diff": [ - 2952 + 2951 ], "rounds_lost": [ - 2952 + 2951 ], "rounds_won": [ - 2952 + 2951 ], "tournament_team_id": [ - 2952 + 2951 ], "wins": [ - 2952 + 2951 ], "__typename": [ 80 @@ -115684,67 +115676,67 @@ export default { }, "v_league_division_standings_order_by": { "head_to_head_match_wins": [ - 2952 + 2951 ], "head_to_head_rounds_won": [ - 2952 + 2951 ], "league_division_id": [ - 2952 + 2951 ], "league_season_division_id": [ - 2952 + 2951 ], "league_season_id": [ - 2952 + 2951 ], "league_team": [ - 2194 + 2193 ], "league_team_id": [ - 2952 + 2951 ], "league_team_season_id": [ - 2952 + 2951 ], "losses": [ - 2952 + 2951 ], "maps_lost": [ - 2952 + 2951 ], "maps_won": [ - 2952 + 2951 ], "matches_played": [ - 2952 + 2951 ], "matches_remaining": [ - 2952 + 2951 ], "rank": [ - 2952 + 2951 ], "round_diff": [ - 2952 + 2951 ], "rounds_lost": [ - 2952 + 2951 ], "rounds_won": [ - 2952 + 2951 ], "season_division": [ - 2018 + 2017 ], "team_season": [ - 2161 + 2160 ], "tournament_team_id": [ - 2952 + 2951 ], "wins": [ - 2952 + 2951 ], "__typename": [ 80 @@ -115794,40 +115786,40 @@ export default { }, "v_league_division_standings_stddev_order_by": { "head_to_head_match_wins": [ - 2952 + 2951 ], "head_to_head_rounds_won": [ - 2952 + 2951 ], "losses": [ - 2952 + 2951 ], "maps_lost": [ - 2952 + 2951 ], "maps_won": [ - 2952 + 2951 ], "matches_played": [ - 2952 + 2951 ], "matches_remaining": [ - 2952 + 2951 ], "rank": [ - 2952 + 2951 ], "round_diff": [ - 2952 + 2951 ], "rounds_lost": [ - 2952 + 2951 ], "rounds_won": [ - 2952 + 2951 ], "wins": [ - 2952 + 2951 ], "__typename": [ 80 @@ -115876,40 +115868,40 @@ export default { }, "v_league_division_standings_stddev_pop_order_by": { "head_to_head_match_wins": [ - 2952 + 2951 ], "head_to_head_rounds_won": [ - 2952 + 2951 ], "losses": [ - 2952 + 2951 ], "maps_lost": [ - 2952 + 2951 ], "maps_won": [ - 2952 + 2951 ], "matches_played": [ - 2952 + 2951 ], "matches_remaining": [ - 2952 + 2951 ], "rank": [ - 2952 + 2951 ], "round_diff": [ - 2952 + 2951 ], "rounds_lost": [ - 2952 + 2951 ], "rounds_won": [ - 2952 + 2951 ], "wins": [ - 2952 + 2951 ], "__typename": [ 80 @@ -115958,40 +115950,40 @@ export default { }, "v_league_division_standings_stddev_samp_order_by": { "head_to_head_match_wins": [ - 2952 + 2951 ], "head_to_head_rounds_won": [ - 2952 + 2951 ], "losses": [ - 2952 + 2951 ], "maps_lost": [ - 2952 + 2951 ], "maps_won": [ - 2952 + 2951 ], "matches_played": [ - 2952 + 2951 ], "matches_remaining": [ - 2952 + 2951 ], "rank": [ - 2952 + 2951 ], "round_diff": [ - 2952 + 2951 ], "rounds_lost": [ - 2952 + 2951 ], "rounds_won": [ - 2952 + 2951 ], "wins": [ - 2952 + 2951 ], "__typename": [ 80 @@ -115999,10 +115991,10 @@ export default { }, "v_league_division_standings_stream_cursor_input": { "initial_value": [ - 5095 + 5094 ], "ordering": [ - 314 + 313 ], "__typename": [ 80 @@ -116016,19 +116008,19 @@ export default { 40 ], "league_division_id": [ - 4999 + 4998 ], "league_season_division_id": [ - 4999 + 4998 ], "league_season_id": [ - 4999 + 4998 ], "league_team_id": [ - 4999 + 4998 ], "league_team_season_id": [ - 4999 + 4998 ], "losses": [ 40 @@ -116058,7 +116050,7 @@ export default { 40 ], "tournament_team_id": [ - 4999 + 4998 ], "wins": [ 40 @@ -116110,40 +116102,40 @@ export default { }, "v_league_division_standings_sum_order_by": { "head_to_head_match_wins": [ - 2952 + 2951 ], "head_to_head_rounds_won": [ - 2952 + 2951 ], "losses": [ - 2952 + 2951 ], "maps_lost": [ - 2952 + 2951 ], "maps_won": [ - 2952 + 2951 ], "matches_played": [ - 2952 + 2951 ], "matches_remaining": [ - 2952 + 2951 ], "rank": [ - 2952 + 2951 ], "round_diff": [ - 2952 + 2951 ], "rounds_lost": [ - 2952 + 2951 ], "rounds_won": [ - 2952 + 2951 ], "wins": [ - 2952 + 2951 ], "__typename": [ 80 @@ -116192,40 +116184,40 @@ export default { }, "v_league_division_standings_var_pop_order_by": { "head_to_head_match_wins": [ - 2952 + 2951 ], "head_to_head_rounds_won": [ - 2952 + 2951 ], "losses": [ - 2952 + 2951 ], "maps_lost": [ - 2952 + 2951 ], "maps_won": [ - 2952 + 2951 ], "matches_played": [ - 2952 + 2951 ], "matches_remaining": [ - 2952 + 2951 ], "rank": [ - 2952 + 2951 ], "round_diff": [ - 2952 + 2951 ], "rounds_lost": [ - 2952 + 2951 ], "rounds_won": [ - 2952 + 2951 ], "wins": [ - 2952 + 2951 ], "__typename": [ 80 @@ -116274,40 +116266,40 @@ export default { }, "v_league_division_standings_var_samp_order_by": { "head_to_head_match_wins": [ - 2952 + 2951 ], "head_to_head_rounds_won": [ - 2952 + 2951 ], "losses": [ - 2952 + 2951 ], "maps_lost": [ - 2952 + 2951 ], "maps_won": [ - 2952 + 2951 ], "matches_played": [ - 2952 + 2951 ], "matches_remaining": [ - 2952 + 2951 ], "rank": [ - 2952 + 2951 ], "round_diff": [ - 2952 + 2951 ], "rounds_lost": [ - 2952 + 2951 ], "rounds_won": [ - 2952 + 2951 ], "wins": [ - 2952 + 2951 ], "__typename": [ 80 @@ -116356,40 +116348,40 @@ export default { }, "v_league_division_standings_variance_order_by": { "head_to_head_match_wins": [ - 2952 + 2951 ], "head_to_head_rounds_won": [ - 2952 + 2951 ], "losses": [ - 2952 + 2951 ], "maps_lost": [ - 2952 + 2951 ], "maps_won": [ - 2952 + 2951 ], "matches_played": [ - 2952 + 2951 ], "matches_remaining": [ - 2952 + 2951 ], "rank": [ - 2952 + 2951 ], "round_diff": [ - 2952 + 2951 ], "rounds_lost": [ - 2952 + 2951 ], "rounds_won": [ - 2952 + 2951 ], "wins": [ - 2952 + 2951 ], "__typename": [ 80 @@ -116403,43 +116395,43 @@ export default { 40 ], "headshot_percentage": [ - 1670 + 1669 ], "headshots": [ 40 ], "kdr": [ - 1670 + 1669 ], "kills": [ 40 ], "league_division_id": [ - 4999 + 4998 ], "league_season_division_id": [ - 4999 + 4998 ], "league_season_id": [ - 4999 + 4998 ], "league_team": [ - 2183 + 2182 ], "league_team_id": [ - 4999 + 4998 ], "league_team_season_id": [ - 4999 + 4998 ], "matches_played": [ 40 ], "player": [ - 3910 + 3909 ], "player_steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -116447,10 +116439,10 @@ export default { }, "v_league_season_player_stats_aggregate": { "aggregate": [ - 5118 + 5117 ], "nodes": [ - 5104 + 5103 ], "__typename": [ 80 @@ -116458,31 +116450,31 @@ export default { }, "v_league_season_player_stats_aggregate_bool_exp": { "avg": [ - 5107 + 5106 ], "corr": [ - 5108 + 5107 ], "count": [ - 5110 + 5109 ], "covar_samp": [ - 5111 + 5110 ], "max": [ - 5113 + 5112 ], "min": [ - 5114 + 5113 ], "stddev_samp": [ - 5115 + 5114 ], "sum": [ - 5116 + 5115 ], "var_samp": [ - 5117 + 5116 ], "__typename": [ 80 @@ -116490,16 +116482,16 @@ export default { }, "v_league_season_player_stats_aggregate_bool_exp_avg": { "arguments": [ - 5131 + 5130 ], "distinct": [ 5 ], "filter": [ - 5123 + 5122 ], "predicate": [ - 1671 + 1670 ], "__typename": [ 80 @@ -116507,16 +116499,16 @@ export default { }, "v_league_season_player_stats_aggregate_bool_exp_corr": { "arguments": [ - 5109 + 5108 ], "distinct": [ 5 ], "filter": [ - 5123 + 5122 ], "predicate": [ - 1671 + 1670 ], "__typename": [ 80 @@ -116524,10 +116516,10 @@ export default { }, "v_league_season_player_stats_aggregate_bool_exp_corr_arguments": { "X": [ - 5132 + 5131 ], "Y": [ - 5132 + 5131 ], "__typename": [ 80 @@ -116535,13 +116527,13 @@ export default { }, "v_league_season_player_stats_aggregate_bool_exp_count": { "arguments": [ - 5130 + 5129 ], "distinct": [ 5 ], "filter": [ - 5123 + 5122 ], "predicate": [ 41 @@ -116552,16 +116544,16 @@ export default { }, "v_league_season_player_stats_aggregate_bool_exp_covar_samp": { "arguments": [ - 5112 + 5111 ], "distinct": [ 5 ], "filter": [ - 5123 + 5122 ], "predicate": [ - 1671 + 1670 ], "__typename": [ 80 @@ -116569,10 +116561,10 @@ export default { }, "v_league_season_player_stats_aggregate_bool_exp_covar_samp_arguments": { "X": [ - 5133 + 5132 ], "Y": [ - 5133 + 5132 ], "__typename": [ 80 @@ -116580,16 +116572,16 @@ export default { }, "v_league_season_player_stats_aggregate_bool_exp_max": { "arguments": [ - 5134 + 5133 ], "distinct": [ 5 ], "filter": [ - 5123 + 5122 ], "predicate": [ - 1671 + 1670 ], "__typename": [ 80 @@ -116597,16 +116589,16 @@ export default { }, "v_league_season_player_stats_aggregate_bool_exp_min": { "arguments": [ - 5135 + 5134 ], "distinct": [ 5 ], "filter": [ - 5123 + 5122 ], "predicate": [ - 1671 + 1670 ], "__typename": [ 80 @@ -116614,16 +116606,16 @@ export default { }, "v_league_season_player_stats_aggregate_bool_exp_stddev_samp": { "arguments": [ - 5136 + 5135 ], "distinct": [ 5 ], "filter": [ - 5123 + 5122 ], "predicate": [ - 1671 + 1670 ], "__typename": [ 80 @@ -116631,16 +116623,16 @@ export default { }, "v_league_season_player_stats_aggregate_bool_exp_sum": { "arguments": [ - 5137 + 5136 ], "distinct": [ 5 ], "filter": [ - 5123 + 5122 ], "predicate": [ - 1671 + 1670 ], "__typename": [ 80 @@ -116648,16 +116640,16 @@ export default { }, "v_league_season_player_stats_aggregate_bool_exp_var_samp": { "arguments": [ - 5138 + 5137 ], "distinct": [ 5 ], "filter": [ - 5123 + 5122 ], "predicate": [ - 1671 + 1670 ], "__typename": [ 80 @@ -116665,13 +116657,13 @@ export default { }, "v_league_season_player_stats_aggregate_fields": { "avg": [ - 5121 + 5120 ], "count": [ 40, { "columns": [ - 5130, + 5129, "[v_league_season_player_stats_select_column!]" ], "distinct": [ @@ -116680,31 +116672,31 @@ export default { } ], "max": [ - 5125 + 5124 ], "min": [ - 5127 + 5126 ], "stddev": [ - 5139 + 5138 ], "stddev_pop": [ - 5141 + 5140 ], "stddev_samp": [ - 5143 + 5142 ], "sum": [ - 5147 + 5146 ], "var_pop": [ - 5149 + 5148 ], "var_samp": [ - 5151 + 5150 ], "variance": [ - 5153 + 5152 ], "__typename": [ 80 @@ -116712,37 +116704,37 @@ export default { }, "v_league_season_player_stats_aggregate_order_by": { "avg": [ - 5122 + 5121 ], "count": [ - 2952 + 2951 ], "max": [ - 5126 + 5125 ], "min": [ - 5128 + 5127 ], "stddev": [ - 5140 + 5139 ], "stddev_pop": [ - 5142 + 5141 ], "stddev_samp": [ - 5144 + 5143 ], "sum": [ - 5148 + 5147 ], "var_pop": [ - 5150 + 5149 ], "var_samp": [ - 5152 + 5151 ], "variance": [ - 5154 + 5153 ], "__typename": [ 80 @@ -116750,7 +116742,7 @@ export default { }, "v_league_season_player_stats_arr_rel_insert_input": { "data": [ - 5124 + 5123 ], "__typename": [ 80 @@ -116787,28 +116779,28 @@ export default { }, "v_league_season_player_stats_avg_order_by": { "assists": [ - 2952 + 2951 ], "deaths": [ - 2952 + 2951 ], "headshot_percentage": [ - 2952 + 2951 ], "headshots": [ - 2952 + 2951 ], "kdr": [ - 2952 + 2951 ], "kills": [ - 2952 + 2951 ], "matches_played": [ - 2952 + 2951 ], "player_steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -116816,13 +116808,13 @@ export default { }, "v_league_season_player_stats_bool_exp": { "_and": [ - 5123 + 5122 ], "_not": [ - 5123 + 5122 ], "_or": [ - 5123 + 5122 ], "assists": [ 41 @@ -116831,43 +116823,43 @@ export default { 41 ], "headshot_percentage": [ - 1671 + 1670 ], "headshots": [ 41 ], "kdr": [ - 1671 + 1670 ], "kills": [ 41 ], "league_division_id": [ - 5001 + 5000 ], "league_season_division_id": [ - 5001 + 5000 ], "league_season_id": [ - 5001 + 5000 ], "league_team": [ - 2186 + 2185 ], "league_team_id": [ - 5001 + 5000 ], "league_team_season_id": [ - 5001 + 5000 ], "matches_played": [ 41 ], "player": [ - 3914 + 3913 ], "player_steam_id": [ - 260 + 259 ], "__typename": [ 80 @@ -116881,43 +116873,43 @@ export default { 40 ], "headshot_percentage": [ - 1670 + 1669 ], "headshots": [ 40 ], "kdr": [ - 1670 + 1669 ], "kills": [ 40 ], "league_division_id": [ - 4999 + 4998 ], "league_season_division_id": [ - 4999 + 4998 ], "league_season_id": [ - 4999 + 4998 ], "league_team": [ - 2192 + 2191 ], "league_team_id": [ - 4999 + 4998 ], "league_team_season_id": [ - 4999 + 4998 ], "matches_played": [ 40 ], "player": [ - 3921 + 3920 ], "player_steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -116931,37 +116923,37 @@ export default { 40 ], "headshot_percentage": [ - 1670 + 1669 ], "headshots": [ 40 ], "kdr": [ - 1670 + 1669 ], "kills": [ 40 ], "league_division_id": [ - 4999 + 4998 ], "league_season_division_id": [ - 4999 + 4998 ], "league_season_id": [ - 4999 + 4998 ], "league_team_id": [ - 4999 + 4998 ], "league_team_season_id": [ - 4999 + 4998 ], "matches_played": [ 40 ], "player_steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -116969,43 +116961,43 @@ export default { }, "v_league_season_player_stats_max_order_by": { "assists": [ - 2952 + 2951 ], "deaths": [ - 2952 + 2951 ], "headshot_percentage": [ - 2952 + 2951 ], "headshots": [ - 2952 + 2951 ], "kdr": [ - 2952 + 2951 ], "kills": [ - 2952 + 2951 ], "league_division_id": [ - 2952 + 2951 ], "league_season_division_id": [ - 2952 + 2951 ], "league_season_id": [ - 2952 + 2951 ], "league_team_id": [ - 2952 + 2951 ], "league_team_season_id": [ - 2952 + 2951 ], "matches_played": [ - 2952 + 2951 ], "player_steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -117019,37 +117011,37 @@ export default { 40 ], "headshot_percentage": [ - 1670 + 1669 ], "headshots": [ 40 ], "kdr": [ - 1670 + 1669 ], "kills": [ 40 ], "league_division_id": [ - 4999 + 4998 ], "league_season_division_id": [ - 4999 + 4998 ], "league_season_id": [ - 4999 + 4998 ], "league_team_id": [ - 4999 + 4998 ], "league_team_season_id": [ - 4999 + 4998 ], "matches_played": [ 40 ], "player_steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -117057,43 +117049,43 @@ export default { }, "v_league_season_player_stats_min_order_by": { "assists": [ - 2952 + 2951 ], "deaths": [ - 2952 + 2951 ], "headshot_percentage": [ - 2952 + 2951 ], "headshots": [ - 2952 + 2951 ], "kdr": [ - 2952 + 2951 ], "kills": [ - 2952 + 2951 ], "league_division_id": [ - 2952 + 2951 ], "league_season_division_id": [ - 2952 + 2951 ], "league_season_id": [ - 2952 + 2951 ], "league_team_id": [ - 2952 + 2951 ], "league_team_season_id": [ - 2952 + 2951 ], "matches_played": [ - 2952 + 2951 ], "player_steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -117101,49 +117093,49 @@ export default { }, "v_league_season_player_stats_order_by": { "assists": [ - 2952 + 2951 ], "deaths": [ - 2952 + 2951 ], "headshot_percentage": [ - 2952 + 2951 ], "headshots": [ - 2952 + 2951 ], "kdr": [ - 2952 + 2951 ], "kills": [ - 2952 + 2951 ], "league_division_id": [ - 2952 + 2951 ], "league_season_division_id": [ - 2952 + 2951 ], "league_season_id": [ - 2952 + 2951 ], "league_team": [ - 2194 + 2193 ], "league_team_id": [ - 2952 + 2951 ], "league_team_season_id": [ - 2952 + 2951 ], "matches_played": [ - 2952 + 2951 ], "player": [ - 3923 + 3922 ], "player_steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -117189,28 +117181,28 @@ export default { }, "v_league_season_player_stats_stddev_order_by": { "assists": [ - 2952 + 2951 ], "deaths": [ - 2952 + 2951 ], "headshot_percentage": [ - 2952 + 2951 ], "headshots": [ - 2952 + 2951 ], "kdr": [ - 2952 + 2951 ], "kills": [ - 2952 + 2951 ], "matches_played": [ - 2952 + 2951 ], "player_steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -117247,28 +117239,28 @@ export default { }, "v_league_season_player_stats_stddev_pop_order_by": { "assists": [ - 2952 + 2951 ], "deaths": [ - 2952 + 2951 ], "headshot_percentage": [ - 2952 + 2951 ], "headshots": [ - 2952 + 2951 ], "kdr": [ - 2952 + 2951 ], "kills": [ - 2952 + 2951 ], "matches_played": [ - 2952 + 2951 ], "player_steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -117305,28 +117297,28 @@ export default { }, "v_league_season_player_stats_stddev_samp_order_by": { "assists": [ - 2952 + 2951 ], "deaths": [ - 2952 + 2951 ], "headshot_percentage": [ - 2952 + 2951 ], "headshots": [ - 2952 + 2951 ], "kdr": [ - 2952 + 2951 ], "kills": [ - 2952 + 2951 ], "matches_played": [ - 2952 + 2951 ], "player_steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -117334,10 +117326,10 @@ export default { }, "v_league_season_player_stats_stream_cursor_input": { "initial_value": [ - 5146 + 5145 ], "ordering": [ - 314 + 313 ], "__typename": [ 80 @@ -117351,37 +117343,37 @@ export default { 40 ], "headshot_percentage": [ - 1670 + 1669 ], "headshots": [ 40 ], "kdr": [ - 1670 + 1669 ], "kills": [ 40 ], "league_division_id": [ - 4999 + 4998 ], "league_season_division_id": [ - 4999 + 4998 ], "league_season_id": [ - 4999 + 4998 ], "league_team_id": [ - 4999 + 4998 ], "league_team_season_id": [ - 4999 + 4998 ], "matches_played": [ 40 ], "player_steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -117395,13 +117387,13 @@ export default { 40 ], "headshot_percentage": [ - 1670 + 1669 ], "headshots": [ 40 ], "kdr": [ - 1670 + 1669 ], "kills": [ 40 @@ -117410,7 +117402,7 @@ export default { 40 ], "player_steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -117418,28 +117410,28 @@ export default { }, "v_league_season_player_stats_sum_order_by": { "assists": [ - 2952 + 2951 ], "deaths": [ - 2952 + 2951 ], "headshot_percentage": [ - 2952 + 2951 ], "headshots": [ - 2952 + 2951 ], "kdr": [ - 2952 + 2951 ], "kills": [ - 2952 + 2951 ], "matches_played": [ - 2952 + 2951 ], "player_steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -117476,28 +117468,28 @@ export default { }, "v_league_season_player_stats_var_pop_order_by": { "assists": [ - 2952 + 2951 ], "deaths": [ - 2952 + 2951 ], "headshot_percentage": [ - 2952 + 2951 ], "headshots": [ - 2952 + 2951 ], "kdr": [ - 2952 + 2951 ], "kills": [ - 2952 + 2951 ], "matches_played": [ - 2952 + 2951 ], "player_steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -117534,28 +117526,28 @@ export default { }, "v_league_season_player_stats_var_samp_order_by": { "assists": [ - 2952 + 2951 ], "deaths": [ - 2952 + 2951 ], "headshot_percentage": [ - 2952 + 2951 ], "headshots": [ - 2952 + 2951 ], "kdr": [ - 2952 + 2951 ], "kills": [ - 2952 + 2951 ], "matches_played": [ - 2952 + 2951 ], "player_steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -117592,28 +117584,28 @@ export default { }, "v_league_season_player_stats_variance_order_by": { "assists": [ - 2952 + 2951 ], "deaths": [ - 2952 + 2951 ], "headshot_percentage": [ - 2952 + 2951 ], "headshots": [ - 2952 + 2951 ], "kdr": [ - 2952 + 2951 ], "kills": [ - 2952 + 2951 ], "matches_played": [ - 2952 + 2951 ], "player_steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -117627,22 +117619,22 @@ export default { 80 ], "id": [ - 4999 + 4998 ], "lineup": [ - 2447 + 2446 ], "match_lineup_id": [ - 4999 + 4998 ], "placeholder_name": [ 80 ], "player": [ - 3910 + 3909 ], "steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -117650,10 +117642,10 @@ export default { }, "v_match_captains_aggregate": { "aggregate": [ - 5157 + 5156 ], "nodes": [ - 5155 + 5154 ], "__typename": [ 80 @@ -117661,13 +117653,13 @@ export default { }, "v_match_captains_aggregate_fields": { "avg": [ - 5158 + 5157 ], "count": [ 40, { "columns": [ - 5167, + 5166, "[v_match_captains_select_column!]" ], "distinct": [ @@ -117676,31 +117668,31 @@ export default { } ], "max": [ - 5162 + 5161 ], "min": [ - 5163 + 5162 ], "stddev": [ - 5169 + 5168 ], "stddev_pop": [ - 5170 + 5169 ], "stddev_samp": [ - 5171 + 5170 ], "sum": [ - 5174 + 5173 ], "var_pop": [ - 5176 + 5175 ], "var_samp": [ - 5177 + 5176 ], "variance": [ - 5178 + 5177 ], "__typename": [ 80 @@ -117716,13 +117708,13 @@ export default { }, "v_match_captains_bool_exp": { "_and": [ - 5159 + 5158 ], "_not": [ - 5159 + 5158 ], "_or": [ - 5159 + 5158 ], "captain": [ 6 @@ -117731,22 +117723,22 @@ export default { 82 ], "id": [ - 5001 + 5000 ], "lineup": [ - 2456 + 2455 ], "match_lineup_id": [ - 5001 + 5000 ], "placeholder_name": [ 82 ], "player": [ - 3914 + 3913 ], "steam_id": [ - 260 + 259 ], "__typename": [ 80 @@ -117754,7 +117746,7 @@ export default { }, "v_match_captains_inc_input": { "steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -117768,22 +117760,22 @@ export default { 80 ], "id": [ - 4999 + 4998 ], "lineup": [ - 2465 + 2464 ], "match_lineup_id": [ - 4999 + 4998 ], "placeholder_name": [ 80 ], "player": [ - 3921 + 3920 ], "steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -117794,16 +117786,16 @@ export default { 80 ], "id": [ - 4999 + 4998 ], "match_lineup_id": [ - 4999 + 4998 ], "placeholder_name": [ 80 ], "steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -117814,16 +117806,16 @@ export default { 80 ], "id": [ - 4999 + 4998 ], "match_lineup_id": [ - 4999 + 4998 ], "placeholder_name": [ 80 ], "steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -117834,7 +117826,7 @@ export default { 40 ], "returning": [ - 5155 + 5154 ], "__typename": [ 80 @@ -117842,7 +117834,7 @@ export default { }, "v_match_captains_obj_rel_insert_input": { "data": [ - 5161 + 5160 ], "__typename": [ 80 @@ -117850,28 +117842,28 @@ export default { }, "v_match_captains_order_by": { "captain": [ - 2952 + 2951 ], "discord_id": [ - 2952 + 2951 ], "id": [ - 2952 + 2951 ], "lineup": [ - 2467 + 2466 ], "match_lineup_id": [ - 2952 + 2951 ], "placeholder_name": [ - 2952 + 2951 ], "player": [ - 3923 + 3922 ], "steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -117886,16 +117878,16 @@ export default { 80 ], "id": [ - 4999 + 4998 ], "match_lineup_id": [ - 4999 + 4998 ], "placeholder_name": [ 80 ], "steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -117927,10 +117919,10 @@ export default { }, "v_match_captains_stream_cursor_input": { "initial_value": [ - 5173 + 5172 ], "ordering": [ - 314 + 313 ], "__typename": [ 80 @@ -117944,16 +117936,16 @@ export default { 80 ], "id": [ - 4999 + 4998 ], "match_lineup_id": [ - 4999 + 4998 ], "placeholder_name": [ 80 ], "steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -117961,7 +117953,7 @@ export default { }, "v_match_captains_sum_fields": { "steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -117969,13 +117961,13 @@ export default { }, "v_match_captains_updates": { "_inc": [ - 5160 + 5159 ], "_set": [ - 5168 + 5167 ], "where": [ - 5159 + 5158 ], "__typename": [ 80 @@ -118010,31 +118002,31 @@ export default { 40 ], "clutcher": [ - 3910 + 3909 ], "clutcher_steam_id": [ - 258 + 257 ], "kills_in_clutch": [ 40 ], "match": [ - 2767 + 2766 ], "match_id": [ - 4999 + 4998 ], "match_lineup": [ - 2447 + 2446 ], "match_lineup_id": [ - 4999 + 4998 ], "match_map": [ - 2605 + 2604 ], "match_map_id": [ - 4999 + 4998 ], "outcome": [ 80 @@ -118051,10 +118043,10 @@ export default { }, "v_match_clutches_aggregate": { "aggregate": [ - 5183 + 5182 ], "nodes": [ - 5179 + 5178 ], "__typename": [ 80 @@ -118062,7 +118054,7 @@ export default { }, "v_match_clutches_aggregate_bool_exp": { "count": [ - 5182 + 5181 ], "__typename": [ 80 @@ -118070,13 +118062,13 @@ export default { }, "v_match_clutches_aggregate_bool_exp_count": { "arguments": [ - 5195 + 5194 ], "distinct": [ 5 ], "filter": [ - 5188 + 5187 ], "predicate": [ 41 @@ -118087,13 +118079,13 @@ export default { }, "v_match_clutches_aggregate_fields": { "avg": [ - 5186 + 5185 ], "count": [ 40, { "columns": [ - 5195, + 5194, "[v_match_clutches_select_column!]" ], "distinct": [ @@ -118101,6 +118093,44 @@ export default { ] } ], + "max": [ + 5189 + ], + "min": [ + 5191 + ], + "stddev": [ + 5195 + ], + "stddev_pop": [ + 5197 + ], + "stddev_samp": [ + 5199 + ], + "sum": [ + 5203 + ], + "var_pop": [ + 5205 + ], + "var_samp": [ + 5207 + ], + "variance": [ + 5209 + ], + "__typename": [ + 80 + ] + }, + "v_match_clutches_aggregate_order_by": { + "avg": [ + 5186 + ], + "count": [ + 2951 + ], "max": [ 5190 ], @@ -118132,47 +118162,9 @@ export default { 80 ] }, - "v_match_clutches_aggregate_order_by": { - "avg": [ - 5187 - ], - "count": [ - 2952 - ], - "max": [ - 5191 - ], - "min": [ - 5193 - ], - "stddev": [ - 5197 - ], - "stddev_pop": [ - 5199 - ], - "stddev_samp": [ - 5201 - ], - "sum": [ - 5205 - ], - "var_pop": [ - 5207 - ], - "var_samp": [ - 5209 - ], - "variance": [ - 5211 - ], - "__typename": [ - 80 - ] - }, "v_match_clutches_arr_rel_insert_input": { "data": [ - 5189 + 5188 ], "__typename": [ 80 @@ -118197,16 +118189,16 @@ export default { }, "v_match_clutches_avg_order_by": { "against_count": [ - 2952 + 2951 ], "clutcher_steam_id": [ - 2952 + 2951 ], "kills_in_clutch": [ - 2952 + 2951 ], "round": [ - 2952 + 2951 ], "__typename": [ 80 @@ -118214,43 +118206,43 @@ export default { }, "v_match_clutches_bool_exp": { "_and": [ - 5188 + 5187 ], "_not": [ - 5188 + 5187 ], "_or": [ - 5188 + 5187 ], "against_count": [ 41 ], "clutcher": [ - 3914 + 3913 ], "clutcher_steam_id": [ - 260 + 259 ], "kills_in_clutch": [ 41 ], "match": [ - 2776 + 2775 ], "match_id": [ - 5001 + 5000 ], "match_lineup": [ - 2456 + 2455 ], "match_lineup_id": [ - 5001 + 5000 ], "match_map": [ - 2614 + 2613 ], "match_map_id": [ - 5001 + 5000 ], "outcome": [ 82 @@ -118270,31 +118262,31 @@ export default { 40 ], "clutcher": [ - 3921 + 3920 ], "clutcher_steam_id": [ - 258 + 257 ], "kills_in_clutch": [ 40 ], "match": [ - 2785 + 2784 ], "match_id": [ - 4999 + 4998 ], "match_lineup": [ - 2465 + 2464 ], "match_lineup_id": [ - 4999 + 4998 ], "match_map": [ - 2623 + 2622 ], "match_map_id": [ - 4999 + 4998 ], "outcome": [ 80 @@ -118314,19 +118306,19 @@ export default { 40 ], "clutcher_steam_id": [ - 258 + 257 ], "kills_in_clutch": [ 40 ], "match_id": [ - 4999 + 4998 ], "match_lineup_id": [ - 4999 + 4998 ], "match_map_id": [ - 4999 + 4998 ], "outcome": [ 80 @@ -118343,31 +118335,31 @@ export default { }, "v_match_clutches_max_order_by": { "against_count": [ - 2952 + 2951 ], "clutcher_steam_id": [ - 2952 + 2951 ], "kills_in_clutch": [ - 2952 + 2951 ], "match_id": [ - 2952 + 2951 ], "match_lineup_id": [ - 2952 + 2951 ], "match_map_id": [ - 2952 + 2951 ], "outcome": [ - 2952 + 2951 ], "round": [ - 2952 + 2951 ], "side": [ - 2952 + 2951 ], "__typename": [ 80 @@ -118378,19 +118370,19 @@ export default { 40 ], "clutcher_steam_id": [ - 258 + 257 ], "kills_in_clutch": [ 40 ], "match_id": [ - 4999 + 4998 ], "match_lineup_id": [ - 4999 + 4998 ], "match_map_id": [ - 4999 + 4998 ], "outcome": [ 80 @@ -118407,31 +118399,31 @@ export default { }, "v_match_clutches_min_order_by": { "against_count": [ - 2952 + 2951 ], "clutcher_steam_id": [ - 2952 + 2951 ], "kills_in_clutch": [ - 2952 + 2951 ], "match_id": [ - 2952 + 2951 ], "match_lineup_id": [ - 2952 + 2951 ], "match_map_id": [ - 2952 + 2951 ], "outcome": [ - 2952 + 2951 ], "round": [ - 2952 + 2951 ], "side": [ - 2952 + 2951 ], "__typename": [ 80 @@ -118439,43 +118431,43 @@ export default { }, "v_match_clutches_order_by": { "against_count": [ - 2952 + 2951 ], "clutcher": [ - 3923 + 3922 ], "clutcher_steam_id": [ - 2952 + 2951 ], "kills_in_clutch": [ - 2952 + 2951 ], "match": [ - 2787 + 2786 ], "match_id": [ - 2952 + 2951 ], "match_lineup": [ - 2467 + 2466 ], "match_lineup_id": [ - 2952 + 2951 ], "match_map": [ - 2625 + 2624 ], "match_map_id": [ - 2952 + 2951 ], "outcome": [ - 2952 + 2951 ], "round": [ - 2952 + 2951 ], "side": [ - 2952 + 2951 ], "__typename": [ 80 @@ -118501,16 +118493,16 @@ export default { }, "v_match_clutches_stddev_order_by": { "against_count": [ - 2952 + 2951 ], "clutcher_steam_id": [ - 2952 + 2951 ], "kills_in_clutch": [ - 2952 + 2951 ], "round": [ - 2952 + 2951 ], "__typename": [ 80 @@ -118535,16 +118527,16 @@ export default { }, "v_match_clutches_stddev_pop_order_by": { "against_count": [ - 2952 + 2951 ], "clutcher_steam_id": [ - 2952 + 2951 ], "kills_in_clutch": [ - 2952 + 2951 ], "round": [ - 2952 + 2951 ], "__typename": [ 80 @@ -118569,16 +118561,16 @@ export default { }, "v_match_clutches_stddev_samp_order_by": { "against_count": [ - 2952 + 2951 ], "clutcher_steam_id": [ - 2952 + 2951 ], "kills_in_clutch": [ - 2952 + 2951 ], "round": [ - 2952 + 2951 ], "__typename": [ 80 @@ -118586,10 +118578,10 @@ export default { }, "v_match_clutches_stream_cursor_input": { "initial_value": [ - 5203 + 5202 ], "ordering": [ - 314 + 313 ], "__typename": [ 80 @@ -118600,19 +118592,19 @@ export default { 40 ], "clutcher_steam_id": [ - 258 + 257 ], "kills_in_clutch": [ 40 ], "match_id": [ - 4999 + 4998 ], "match_lineup_id": [ - 4999 + 4998 ], "match_map_id": [ - 4999 + 4998 ], "outcome": [ 80 @@ -118632,7 +118624,7 @@ export default { 40 ], "clutcher_steam_id": [ - 258 + 257 ], "kills_in_clutch": [ 40 @@ -118646,16 +118638,16 @@ export default { }, "v_match_clutches_sum_order_by": { "against_count": [ - 2952 + 2951 ], "clutcher_steam_id": [ - 2952 + 2951 ], "kills_in_clutch": [ - 2952 + 2951 ], "round": [ - 2952 + 2951 ], "__typename": [ 80 @@ -118680,16 +118672,16 @@ export default { }, "v_match_clutches_var_pop_order_by": { "against_count": [ - 2952 + 2951 ], "clutcher_steam_id": [ - 2952 + 2951 ], "kills_in_clutch": [ - 2952 + 2951 ], "round": [ - 2952 + 2951 ], "__typename": [ 80 @@ -118714,16 +118706,16 @@ export default { }, "v_match_clutches_var_samp_order_by": { "against_count": [ - 2952 + 2951 ], "clutcher_steam_id": [ - 2952 + 2951 ], "kills_in_clutch": [ - 2952 + 2951 ], "round": [ - 2952 + 2951 ], "__typename": [ 80 @@ -118748,16 +118740,16 @@ export default { }, "v_match_clutches_variance_order_by": { "against_count": [ - 2952 + 2951 ], "clutcher_steam_id": [ - 2952 + 2951 ], "kills_in_clutch": [ - 2952 + 2951 ], "round": [ - 2952 + 2951 ], "__typename": [ 80 @@ -118768,28 +118760,28 @@ export default { 80 ], "killer_steam_id": [ - 258 + 257 ], "kills": [ 40 ], "match": [ - 2767 + 2766 ], "match_id": [ - 4999 + 4998 ], "match_map": [ - 2605 + 2604 ], "match_map_id": [ - 4999 + 4998 ], "victim_side": [ 80 ], "victim_steam_id": [ - 258 + 257 ], "weapon": [ 80 @@ -118800,10 +118792,10 @@ export default { }, "v_match_kill_pairs_aggregate": { "aggregate": [ - 5214 + 5213 ], "nodes": [ - 5212 + 5211 ], "__typename": [ 80 @@ -118811,13 +118803,13 @@ export default { }, "v_match_kill_pairs_aggregate_fields": { "avg": [ - 5215 + 5214 ], "count": [ 40, { "columns": [ - 5220, + 5219, "[v_match_kill_pairs_select_column!]" ], "distinct": [ @@ -118826,31 +118818,31 @@ export default { } ], "max": [ - 5217 + 5216 ], "min": [ - 5218 + 5217 ], "stddev": [ - 5221 + 5220 ], "stddev_pop": [ - 5222 + 5221 ], "stddev_samp": [ - 5223 + 5222 ], "sum": [ - 5226 + 5225 ], "var_pop": [ - 5227 + 5226 ], "var_samp": [ - 5228 + 5227 ], "variance": [ - 5229 + 5228 ], "__typename": [ 80 @@ -118872,40 +118864,40 @@ export default { }, "v_match_kill_pairs_bool_exp": { "_and": [ - 5216 + 5215 ], "_not": [ - 5216 + 5215 ], "_or": [ - 5216 + 5215 ], "killer_side": [ 82 ], "killer_steam_id": [ - 260 + 259 ], "kills": [ 41 ], "match": [ - 2776 + 2775 ], "match_id": [ - 5001 + 5000 ], "match_map": [ - 2614 + 2613 ], "match_map_id": [ - 5001 + 5000 ], "victim_side": [ 82 ], "victim_steam_id": [ - 260 + 259 ], "weapon": [ 82 @@ -118919,22 +118911,22 @@ export default { 80 ], "killer_steam_id": [ - 258 + 257 ], "kills": [ 40 ], "match_id": [ - 4999 + 4998 ], "match_map_id": [ - 4999 + 4998 ], "victim_side": [ 80 ], "victim_steam_id": [ - 258 + 257 ], "weapon": [ 80 @@ -118948,22 +118940,22 @@ export default { 80 ], "killer_steam_id": [ - 258 + 257 ], "kills": [ 40 ], "match_id": [ - 4999 + 4998 ], "match_map_id": [ - 4999 + 4998 ], "victim_side": [ 80 ], "victim_steam_id": [ - 258 + 257 ], "weapon": [ 80 @@ -118974,34 +118966,34 @@ export default { }, "v_match_kill_pairs_order_by": { "killer_side": [ - 2952 + 2951 ], "killer_steam_id": [ - 2952 + 2951 ], "kills": [ - 2952 + 2951 ], "match": [ - 2787 + 2786 ], "match_id": [ - 2952 + 2951 ], "match_map": [ - 2625 + 2624 ], "match_map_id": [ - 2952 + 2951 ], "victim_side": [ - 2952 + 2951 ], "victim_steam_id": [ - 2952 + 2951 ], "weapon": [ - 2952 + 2951 ], "__typename": [ 80 @@ -119052,10 +119044,10 @@ export default { }, "v_match_kill_pairs_stream_cursor_input": { "initial_value": [ - 5225 + 5224 ], "ordering": [ - 314 + 313 ], "__typename": [ 80 @@ -119066,22 +119058,22 @@ export default { 80 ], "killer_steam_id": [ - 258 + 257 ], "kills": [ 40 ], "match_id": [ - 4999 + 4998 ], "match_map_id": [ - 4999 + 4998 ], "victim_side": [ 80 ], "victim_steam_id": [ - 258 + 257 ], "weapon": [ 80 @@ -119092,13 +119084,13 @@ export default { }, "v_match_kill_pairs_sum_fields": { "killer_steam_id": [ - 258 + 257 ], "kills": [ 40 ], "victim_steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -119148,22 +119140,22 @@ export default { }, "v_match_lineup_buy_types": { "match": [ - 2767 + 2766 ], "match_id": [ - 4999 + 4998 ], "match_lineup": [ - 2447 + 2446 ], "match_lineup_id": [ - 4999 + 4998 ], "match_map": [ - 2605 + 2604 ], "match_map_id": [ - 4999 + 4998 ], "matchup": [ 80 @@ -119183,10 +119175,10 @@ export default { }, "v_match_lineup_buy_types_aggregate": { "aggregate": [ - 5232 + 5231 ], "nodes": [ - 5230 + 5229 ], "__typename": [ 80 @@ -119194,13 +119186,13 @@ export default { }, "v_match_lineup_buy_types_aggregate_fields": { "avg": [ - 5233 + 5232 ], "count": [ 40, { "columns": [ - 5238, + 5237, "[v_match_lineup_buy_types_select_column!]" ], "distinct": [ @@ -119209,31 +119201,31 @@ export default { } ], "max": [ - 5235 + 5234 ], "min": [ - 5236 + 5235 ], "stddev": [ - 5239 + 5238 ], "stddev_pop": [ - 5240 + 5239 ], "stddev_samp": [ - 5241 + 5240 ], "sum": [ - 5244 + 5243 ], "var_pop": [ - 5245 + 5244 ], "var_samp": [ - 5246 + 5245 ], "variance": [ - 5247 + 5246 ], "__typename": [ 80 @@ -119252,31 +119244,31 @@ export default { }, "v_match_lineup_buy_types_bool_exp": { "_and": [ - 5234 + 5233 ], "_not": [ - 5234 + 5233 ], "_or": [ - 5234 + 5233 ], "match": [ - 2776 + 2775 ], "match_id": [ - 5001 + 5000 ], "match_lineup": [ - 2456 + 2455 ], "match_lineup_id": [ - 5001 + 5000 ], "match_map": [ - 2614 + 2613 ], "match_map_id": [ - 5001 + 5000 ], "matchup": [ 82 @@ -119296,13 +119288,13 @@ export default { }, "v_match_lineup_buy_types_max_fields": { "match_id": [ - 4999 + 4998 ], "match_lineup_id": [ - 4999 + 4998 ], "match_map_id": [ - 4999 + 4998 ], "matchup": [ 80 @@ -119322,13 +119314,13 @@ export default { }, "v_match_lineup_buy_types_min_fields": { "match_id": [ - 4999 + 4998 ], "match_lineup_id": [ - 4999 + 4998 ], "match_map_id": [ - 4999 + 4998 ], "matchup": [ 80 @@ -119348,34 +119340,34 @@ export default { }, "v_match_lineup_buy_types_order_by": { "match": [ - 2787 + 2786 ], "match_id": [ - 2952 + 2951 ], "match_lineup": [ - 2467 + 2466 ], "match_lineup_id": [ - 2952 + 2951 ], "match_map": [ - 2625 + 2624 ], "match_map_id": [ - 2952 + 2951 ], "matchup": [ - 2952 + 2951 ], "rounds": [ - 2952 + 2951 ], "side": [ - 2952 + 2951 ], "wins": [ - 2952 + 2951 ], "__typename": [ 80 @@ -119417,10 +119409,10 @@ export default { }, "v_match_lineup_buy_types_stream_cursor_input": { "initial_value": [ - 5243 + 5242 ], "ordering": [ - 314 + 313 ], "__typename": [ 80 @@ -119428,13 +119420,13 @@ export default { }, "v_match_lineup_buy_types_stream_cursor_value_input": { "match_id": [ - 4999 + 4998 ], "match_lineup_id": [ - 4999 + 4998 ], "match_map_id": [ - 4999 + 4998 ], "matchup": [ 80 @@ -119510,22 +119502,22 @@ export default { 40 ], "match": [ - 2767 + 2766 ], "match_id": [ - 4999 + 4998 ], "match_lineup": [ - 2447 + 2446 ], "match_lineup_id": [ - 4999 + 4998 ], "match_map": [ - 2605 + 2604 ], "match_map_id": [ - 4999 + 4998 ], "opening_attempts": [ 40 @@ -119566,10 +119558,10 @@ export default { }, "v_match_lineup_map_stats_aggregate": { "aggregate": [ - 5250 + 5249 ], "nodes": [ - 5248 + 5247 ], "__typename": [ 80 @@ -119577,13 +119569,13 @@ export default { }, "v_match_lineup_map_stats_aggregate_fields": { "avg": [ - 5251 + 5250 ], "count": [ 40, { "columns": [ - 5256, + 5255, "[v_match_lineup_map_stats_select_column!]" ], "distinct": [ @@ -119592,31 +119584,31 @@ export default { } ], "max": [ - 5253 + 5252 ], "min": [ - 5254 + 5253 ], "stddev": [ - 5257 + 5256 ], "stddev_pop": [ - 5258 + 5257 ], "stddev_samp": [ - 5259 + 5258 ], "sum": [ - 5262 + 5261 ], "var_pop": [ - 5263 + 5262 ], "var_samp": [ - 5264 + 5263 ], "variance": [ - 5265 + 5264 ], "__typename": [ 80 @@ -119671,13 +119663,13 @@ export default { }, "v_match_lineup_map_stats_bool_exp": { "_and": [ - 5252 + 5251 ], "_not": [ - 5252 + 5251 ], "_or": [ - 5252 + 5251 ], "man_adv_rounds": [ 41 @@ -119692,22 +119684,22 @@ export default { 41 ], "match": [ - 2776 + 2775 ], "match_id": [ - 5001 + 5000 ], "match_lineup": [ - 2456 + 2455 ], "match_lineup_id": [ - 5001 + 5000 ], "match_map": [ - 2614 + 2613 ], "match_map_id": [ - 5001 + 5000 ], "opening_attempts": [ 41 @@ -119760,13 +119752,13 @@ export default { 40 ], "match_id": [ - 4999 + 4998 ], "match_lineup_id": [ - 4999 + 4998 ], "match_map_id": [ - 4999 + 4998 ], "opening_attempts": [ 40 @@ -119819,13 +119811,13 @@ export default { 40 ], "match_id": [ - 4999 + 4998 ], "match_lineup_id": [ - 4999 + 4998 ], "match_map_id": [ - 4999 + 4998 ], "opening_attempts": [ 40 @@ -119866,67 +119858,67 @@ export default { }, "v_match_lineup_map_stats_order_by": { "man_adv_rounds": [ - 2952 + 2951 ], "man_adv_wins": [ - 2952 + 2951 ], "man_dis_rounds": [ - 2952 + 2951 ], "man_dis_wins": [ - 2952 + 2951 ], "match": [ - 2787 + 2786 ], "match_id": [ - 2952 + 2951 ], "match_lineup": [ - 2467 + 2466 ], "match_lineup_id": [ - 2952 + 2951 ], "match_map": [ - 2625 + 2624 ], "match_map_id": [ - 2952 + 2951 ], "opening_attempts": [ - 2952 + 2951 ], "opening_wins": [ - 2952 + 2951 ], "pistol_rounds": [ - 2952 + 2951 ], "pistol_wins": [ - 2952 + 2951 ], "round_wins": [ - 2952 + 2951 ], "rounds": [ - 2952 + 2951 ], "side": [ - 2952 + 2951 ], "won_buy_eco": [ - 2952 + 2951 ], "won_buy_force": [ - 2952 + 2951 ], "won_buy_full": [ - 2952 + 2951 ], "won_buy_pistol": [ - 2952 + 2951 ], "__typename": [ 80 @@ -120076,10 +120068,10 @@ export default { }, "v_match_lineup_map_stats_stream_cursor_input": { "initial_value": [ - 5261 + 5260 ], "ordering": [ - 314 + 313 ], "__typename": [ 80 @@ -120099,13 +120091,13 @@ export default { 40 ], "match_id": [ - 4999 + 4998 ], "match_lineup_id": [ - 4999 + 4998 ], "match_map_id": [ - 4999 + 4998 ], "opening_attempts": [ 40 @@ -120337,7 +120329,7 @@ export default { 5 ], "match_map_id": [ - 4999 + 4998 ], "round": [ 40 @@ -120348,10 +120340,10 @@ export default { }, "v_match_map_backup_rounds_aggregate": { "aggregate": [ - 5268 + 5267 ], "nodes": [ - 5266 + 5265 ], "__typename": [ 80 @@ -120359,13 +120351,13 @@ export default { }, "v_match_map_backup_rounds_aggregate_fields": { "avg": [ - 5269 + 5268 ], "count": [ 40, { "columns": [ - 5277, + 5276, "[v_match_map_backup_rounds_select_column!]" ], "distinct": [ @@ -120374,31 +120366,31 @@ export default { } ], "max": [ - 5273 + 5272 ], "min": [ - 5274 + 5273 ], "stddev": [ - 5279 + 5278 ], "stddev_pop": [ - 5280 + 5279 ], "stddev_samp": [ - 5281 + 5280 ], "sum": [ - 5284 + 5283 ], "var_pop": [ - 5286 + 5285 ], "var_samp": [ - 5287 + 5286 ], "variance": [ - 5288 + 5287 ], "__typename": [ 80 @@ -120414,19 +120406,19 @@ export default { }, "v_match_map_backup_rounds_bool_exp": { "_and": [ - 5270 + 5269 ], "_not": [ - 5270 + 5269 ], "_or": [ - 5270 + 5269 ], "has_backup_file": [ 6 ], "match_map_id": [ - 5001 + 5000 ], "round": [ 41 @@ -120448,7 +120440,7 @@ export default { 5 ], "match_map_id": [ - 4999 + 4998 ], "round": [ 40 @@ -120459,7 +120451,7 @@ export default { }, "v_match_map_backup_rounds_max_fields": { "match_map_id": [ - 4999 + 4998 ], "round": [ 40 @@ -120470,7 +120462,7 @@ export default { }, "v_match_map_backup_rounds_min_fields": { "match_map_id": [ - 4999 + 4998 ], "round": [ 40 @@ -120484,7 +120476,7 @@ export default { 40 ], "returning": [ - 5266 + 5265 ], "__typename": [ 80 @@ -120492,13 +120484,13 @@ export default { }, "v_match_map_backup_rounds_order_by": { "has_backup_file": [ - 2952 + 2951 ], "match_map_id": [ - 2952 + 2951 ], "round": [ - 2952 + 2951 ], "__typename": [ 80 @@ -120510,7 +120502,7 @@ export default { 5 ], "match_map_id": [ - 4999 + 4998 ], "round": [ 40 @@ -120545,10 +120537,10 @@ export default { }, "v_match_map_backup_rounds_stream_cursor_input": { "initial_value": [ - 5283 + 5282 ], "ordering": [ - 314 + 313 ], "__typename": [ 80 @@ -120559,7 +120551,7 @@ export default { 5 ], "match_map_id": [ - 4999 + 4998 ], "round": [ 40 @@ -120578,13 +120570,13 @@ export default { }, "v_match_map_backup_rounds_updates": { "_inc": [ - 5271 + 5270 ], "_set": [ - 5278 + 5277 ], "where": [ - 5270 + 5269 ], "__typename": [ 80 @@ -120622,28 +120614,28 @@ export default { 40 ], "match": [ - 2767 + 2766 ], "match_id": [ - 4999 + 4998 ], "match_lineup": [ - 2447 + 2446 ], "match_lineup_id": [ - 4999 + 4998 ], "match_map": [ - 2605 + 2604 ], "match_map_id": [ - 4999 + 4998 ], "matchup": [ 80 ], "player": [ - 3910 + 3909 ], "rounds": [ 40 @@ -120652,7 +120644,7 @@ export default { 80 ], "steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -120660,10 +120652,10 @@ export default { }, "v_match_player_buy_types_aggregate": { "aggregate": [ - 5291 + 5290 ], "nodes": [ - 5289 + 5288 ], "__typename": [ 80 @@ -120671,13 +120663,13 @@ export default { }, "v_match_player_buy_types_aggregate_fields": { "avg": [ - 5292 + 5291 ], "count": [ 40, { "columns": [ - 5297, + 5296, "[v_match_player_buy_types_select_column!]" ], "distinct": [ @@ -120686,31 +120678,31 @@ export default { } ], "max": [ - 5294 + 5293 ], "min": [ - 5295 + 5294 ], "stddev": [ - 5298 + 5297 ], "stddev_pop": [ - 5299 + 5298 ], "stddev_samp": [ - 5300 + 5299 ], "sum": [ - 5303 + 5302 ], "var_pop": [ - 5304 + 5303 ], "var_samp": [ - 5305 + 5304 ], "variance": [ - 5306 + 5305 ], "__typename": [ 80 @@ -120735,13 +120727,13 @@ export default { }, "v_match_player_buy_types_bool_exp": { "_and": [ - 5293 + 5292 ], "_not": [ - 5293 + 5292 ], "_or": [ - 5293 + 5292 ], "deaths": [ 41 @@ -120750,28 +120742,28 @@ export default { 41 ], "match": [ - 2776 + 2775 ], "match_id": [ - 5001 + 5000 ], "match_lineup": [ - 2456 + 2455 ], "match_lineup_id": [ - 5001 + 5000 ], "match_map": [ - 2614 + 2613 ], "match_map_id": [ - 5001 + 5000 ], "matchup": [ 82 ], "player": [ - 3914 + 3913 ], "rounds": [ 41 @@ -120780,7 +120772,7 @@ export default { 82 ], "steam_id": [ - 260 + 259 ], "__typename": [ 80 @@ -120794,13 +120786,13 @@ export default { 40 ], "match_id": [ - 4999 + 4998 ], "match_lineup_id": [ - 4999 + 4998 ], "match_map_id": [ - 4999 + 4998 ], "matchup": [ 80 @@ -120812,7 +120804,7 @@ export default { 80 ], "steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -120826,13 +120818,13 @@ export default { 40 ], "match_id": [ - 4999 + 4998 ], "match_lineup_id": [ - 4999 + 4998 ], "match_map_id": [ - 4999 + 4998 ], "matchup": [ 80 @@ -120844,7 +120836,7 @@ export default { 80 ], "steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -120852,43 +120844,43 @@ export default { }, "v_match_player_buy_types_order_by": { "deaths": [ - 2952 + 2951 ], "kills": [ - 2952 + 2951 ], "match": [ - 2787 + 2786 ], "match_id": [ - 2952 + 2951 ], "match_lineup": [ - 2467 + 2466 ], "match_lineup_id": [ - 2952 + 2951 ], "match_map": [ - 2625 + 2624 ], "match_map_id": [ - 2952 + 2951 ], "matchup": [ - 2952 + 2951 ], "player": [ - 3923 + 3922 ], "rounds": [ - 2952 + 2951 ], "side": [ - 2952 + 2951 ], "steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -120948,10 +120940,10 @@ export default { }, "v_match_player_buy_types_stream_cursor_input": { "initial_value": [ - 5302 + 5301 ], "ordering": [ - 314 + 313 ], "__typename": [ 80 @@ -120965,13 +120957,13 @@ export default { 40 ], "match_id": [ - 4999 + 4998 ], "match_lineup_id": [ - 4999 + 4998 ], "match_map_id": [ - 4999 + 4998 ], "matchup": [ 80 @@ -120983,7 +120975,7 @@ export default { 80 ], "steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -121000,7 +120992,7 @@ export default { 40 ], "steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -121065,31 +121057,31 @@ export default { 40 ], "match": [ - 2767 + 2766 ], "match_id": [ - 4999 + 4998 ], "match_lineup": [ - 2447 + 2446 ], "match_lineup_id": [ - 4999 + 4998 ], "match_map": [ - 2605 + 2604 ], "match_map_id": [ - 4999 + 4998 ], "player": [ - 3910 + 3909 ], "side": [ 80 ], "steam_id": [ - 258 + 257 ], "traded_deaths": [ 40 @@ -121103,10 +121095,10 @@ export default { }, "v_match_player_opening_duels_aggregate": { "aggregate": [ - 5311 + 5310 ], "nodes": [ - 5307 + 5306 ], "__typename": [ 80 @@ -121114,7 +121106,7 @@ export default { }, "v_match_player_opening_duels_aggregate_bool_exp": { "count": [ - 5310 + 5309 ], "__typename": [ 80 @@ -121122,13 +121114,13 @@ export default { }, "v_match_player_opening_duels_aggregate_bool_exp_count": { "arguments": [ - 5323 + 5322 ], "distinct": [ 5 ], "filter": [ - 5316 + 5315 ], "predicate": [ 41 @@ -121139,13 +121131,13 @@ export default { }, "v_match_player_opening_duels_aggregate_fields": { "avg": [ - 5314 + 5313 ], "count": [ 40, { "columns": [ - 5323, + 5322, "[v_match_player_opening_duels_select_column!]" ], "distinct": [ @@ -121154,31 +121146,31 @@ export default { } ], "max": [ - 5318 + 5317 ], "min": [ - 5320 + 5319 ], "stddev": [ - 5324 + 5323 ], "stddev_pop": [ - 5326 + 5325 ], "stddev_samp": [ - 5328 + 5327 ], "sum": [ - 5332 + 5331 ], "var_pop": [ - 5334 + 5333 ], "var_samp": [ - 5336 + 5335 ], "variance": [ - 5338 + 5337 ], "__typename": [ 80 @@ -121186,37 +121178,37 @@ export default { }, "v_match_player_opening_duels_aggregate_order_by": { "avg": [ - 5315 + 5314 ], "count": [ - 2952 + 2951 ], "max": [ - 5319 + 5318 ], "min": [ - 5321 + 5320 ], "stddev": [ - 5325 + 5324 ], "stddev_pop": [ - 5327 + 5326 ], "stddev_samp": [ - 5329 + 5328 ], "sum": [ - 5333 + 5332 ], "var_pop": [ - 5335 + 5334 ], "var_samp": [ - 5337 + 5336 ], "variance": [ - 5339 + 5338 ], "__typename": [ 80 @@ -121224,7 +121216,7 @@ export default { }, "v_match_player_opening_duels_arr_rel_insert_input": { "data": [ - 5317 + 5316 ], "__typename": [ 80 @@ -121252,19 +121244,19 @@ export default { }, "v_match_player_opening_duels_avg_order_by": { "attempts": [ - 2952 + 2951 ], "deaths": [ - 2952 + 2951 ], "steam_id": [ - 2952 + 2951 ], "traded_deaths": [ - 2952 + 2951 ], "wins": [ - 2952 + 2951 ], "__typename": [ 80 @@ -121272,13 +121264,13 @@ export default { }, "v_match_player_opening_duels_bool_exp": { "_and": [ - 5316 + 5315 ], "_not": [ - 5316 + 5315 ], "_or": [ - 5316 + 5315 ], "attempts": [ 41 @@ -121287,31 +121279,31 @@ export default { 41 ], "match": [ - 2776 + 2775 ], "match_id": [ - 5001 + 5000 ], "match_lineup": [ - 2456 + 2455 ], "match_lineup_id": [ - 5001 + 5000 ], "match_map": [ - 2614 + 2613 ], "match_map_id": [ - 5001 + 5000 ], "player": [ - 3914 + 3913 ], "side": [ 82 ], "steam_id": [ - 260 + 259 ], "traded_deaths": [ 41 @@ -121331,31 +121323,31 @@ export default { 40 ], "match": [ - 2785 + 2784 ], "match_id": [ - 4999 + 4998 ], "match_lineup": [ - 2465 + 2464 ], "match_lineup_id": [ - 4999 + 4998 ], "match_map": [ - 2623 + 2622 ], "match_map_id": [ - 4999 + 4998 ], "player": [ - 3921 + 3920 ], "side": [ 80 ], "steam_id": [ - 258 + 257 ], "traded_deaths": [ 40 @@ -121375,19 +121367,19 @@ export default { 40 ], "match_id": [ - 4999 + 4998 ], "match_lineup_id": [ - 4999 + 4998 ], "match_map_id": [ - 4999 + 4998 ], "side": [ 80 ], "steam_id": [ - 258 + 257 ], "traded_deaths": [ 40 @@ -121401,31 +121393,31 @@ export default { }, "v_match_player_opening_duels_max_order_by": { "attempts": [ - 2952 + 2951 ], "deaths": [ - 2952 + 2951 ], "match_id": [ - 2952 + 2951 ], "match_lineup_id": [ - 2952 + 2951 ], "match_map_id": [ - 2952 + 2951 ], "side": [ - 2952 + 2951 ], "steam_id": [ - 2952 + 2951 ], "traded_deaths": [ - 2952 + 2951 ], "wins": [ - 2952 + 2951 ], "__typename": [ 80 @@ -121439,19 +121431,19 @@ export default { 40 ], "match_id": [ - 4999 + 4998 ], "match_lineup_id": [ - 4999 + 4998 ], "match_map_id": [ - 4999 + 4998 ], "side": [ 80 ], "steam_id": [ - 258 + 257 ], "traded_deaths": [ 40 @@ -121465,31 +121457,31 @@ export default { }, "v_match_player_opening_duels_min_order_by": { "attempts": [ - 2952 + 2951 ], "deaths": [ - 2952 + 2951 ], "match_id": [ - 2952 + 2951 ], "match_lineup_id": [ - 2952 + 2951 ], "match_map_id": [ - 2952 + 2951 ], "side": [ - 2952 + 2951 ], "steam_id": [ - 2952 + 2951 ], "traded_deaths": [ - 2952 + 2951 ], "wins": [ - 2952 + 2951 ], "__typename": [ 80 @@ -121497,43 +121489,43 @@ export default { }, "v_match_player_opening_duels_order_by": { "attempts": [ - 2952 + 2951 ], "deaths": [ - 2952 + 2951 ], "match": [ - 2787 + 2786 ], "match_id": [ - 2952 + 2951 ], "match_lineup": [ - 2467 + 2466 ], "match_lineup_id": [ - 2952 + 2951 ], "match_map": [ - 2625 + 2624 ], "match_map_id": [ - 2952 + 2951 ], "player": [ - 3923 + 3922 ], "side": [ - 2952 + 2951 ], "steam_id": [ - 2952 + 2951 ], "traded_deaths": [ - 2952 + 2951 ], "wins": [ - 2952 + 2951 ], "__typename": [ 80 @@ -121562,19 +121554,19 @@ export default { }, "v_match_player_opening_duels_stddev_order_by": { "attempts": [ - 2952 + 2951 ], "deaths": [ - 2952 + 2951 ], "steam_id": [ - 2952 + 2951 ], "traded_deaths": [ - 2952 + 2951 ], "wins": [ - 2952 + 2951 ], "__typename": [ 80 @@ -121602,19 +121594,19 @@ export default { }, "v_match_player_opening_duels_stddev_pop_order_by": { "attempts": [ - 2952 + 2951 ], "deaths": [ - 2952 + 2951 ], "steam_id": [ - 2952 + 2951 ], "traded_deaths": [ - 2952 + 2951 ], "wins": [ - 2952 + 2951 ], "__typename": [ 80 @@ -121642,19 +121634,19 @@ export default { }, "v_match_player_opening_duels_stddev_samp_order_by": { "attempts": [ - 2952 + 2951 ], "deaths": [ - 2952 + 2951 ], "steam_id": [ - 2952 + 2951 ], "traded_deaths": [ - 2952 + 2951 ], "wins": [ - 2952 + 2951 ], "__typename": [ 80 @@ -121662,10 +121654,10 @@ export default { }, "v_match_player_opening_duels_stream_cursor_input": { "initial_value": [ - 5331 + 5330 ], "ordering": [ - 314 + 313 ], "__typename": [ 80 @@ -121679,19 +121671,19 @@ export default { 40 ], "match_id": [ - 4999 + 4998 ], "match_lineup_id": [ - 4999 + 4998 ], "match_map_id": [ - 4999 + 4998 ], "side": [ 80 ], "steam_id": [ - 258 + 257 ], "traded_deaths": [ 40 @@ -121711,7 +121703,7 @@ export default { 40 ], "steam_id": [ - 258 + 257 ], "traded_deaths": [ 40 @@ -121725,19 +121717,19 @@ export default { }, "v_match_player_opening_duels_sum_order_by": { "attempts": [ - 2952 + 2951 ], "deaths": [ - 2952 + 2951 ], "steam_id": [ - 2952 + 2951 ], "traded_deaths": [ - 2952 + 2951 ], "wins": [ - 2952 + 2951 ], "__typename": [ 80 @@ -121765,19 +121757,19 @@ export default { }, "v_match_player_opening_duels_var_pop_order_by": { "attempts": [ - 2952 + 2951 ], "deaths": [ - 2952 + 2951 ], "steam_id": [ - 2952 + 2951 ], "traded_deaths": [ - 2952 + 2951 ], "wins": [ - 2952 + 2951 ], "__typename": [ 80 @@ -121805,19 +121797,19 @@ export default { }, "v_match_player_opening_duels_var_samp_order_by": { "attempts": [ - 2952 + 2951 ], "deaths": [ - 2952 + 2951 ], "steam_id": [ - 2952 + 2951 ], "traded_deaths": [ - 2952 + 2951 ], "wins": [ - 2952 + 2951 ], "__typename": [ 80 @@ -121845,19 +121837,19 @@ export default { }, "v_match_player_opening_duels_variance_order_by": { "attempts": [ - 2952 + 2951 ], "deaths": [ - 2952 + 2951 ], "steam_id": [ - 2952 + 2951 ], "traded_deaths": [ - 2952 + 2951 ], "wins": [ - 2952 + 2951 ], "__typename": [ 80 @@ -121865,19 +121857,19 @@ export default { }, "v_player_arch_nemesis": { "attacker_id": [ - 258 + 257 ], "kill_count": [ - 258 + 257 ], "nemsis": [ - 3910 + 3909 ], "player": [ - 3910 + 3909 ], "victim_id": [ - 258 + 257 ], "__typename": [ 80 @@ -121885,10 +121877,10 @@ export default { }, "v_player_arch_nemesis_aggregate": { "aggregate": [ - 5342 + 5341 ], "nodes": [ - 5340 + 5339 ], "__typename": [ 80 @@ -121896,13 +121888,13 @@ export default { }, "v_player_arch_nemesis_aggregate_fields": { "avg": [ - 5343 + 5342 ], "count": [ 40, { "columns": [ - 5348, + 5347, "[v_player_arch_nemesis_select_column!]" ], "distinct": [ @@ -121911,31 +121903,31 @@ export default { } ], "max": [ - 5345 + 5344 ], "min": [ - 5346 + 5345 ], "stddev": [ - 5349 + 5348 ], "stddev_pop": [ - 5350 + 5349 ], "stddev_samp": [ - 5351 + 5350 ], "sum": [ - 5354 + 5353 ], "var_pop": [ - 5355 + 5354 ], "var_samp": [ - 5356 + 5355 ], "variance": [ - 5357 + 5356 ], "__typename": [ 80 @@ -121957,28 +121949,28 @@ export default { }, "v_player_arch_nemesis_bool_exp": { "_and": [ - 5344 + 5343 ], "_not": [ - 5344 + 5343 ], "_or": [ - 5344 + 5343 ], "attacker_id": [ - 260 + 259 ], "kill_count": [ - 260 + 259 ], "nemsis": [ - 3914 + 3913 ], "player": [ - 3914 + 3913 ], "victim_id": [ - 260 + 259 ], "__typename": [ 80 @@ -121986,13 +121978,13 @@ export default { }, "v_player_arch_nemesis_max_fields": { "attacker_id": [ - 258 + 257 ], "kill_count": [ - 258 + 257 ], "victim_id": [ - 258 + 257 ], "__typename": [ 80 @@ -122000,13 +121992,13 @@ export default { }, "v_player_arch_nemesis_min_fields": { "attacker_id": [ - 258 + 257 ], "kill_count": [ - 258 + 257 ], "victim_id": [ - 258 + 257 ], "__typename": [ 80 @@ -122014,19 +122006,19 @@ export default { }, "v_player_arch_nemesis_order_by": { "attacker_id": [ - 2952 + 2951 ], "kill_count": [ - 2952 + 2951 ], "nemsis": [ - 3923 + 3922 ], "player": [ - 3923 + 3922 ], "victim_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -122077,10 +122069,10 @@ export default { }, "v_player_arch_nemesis_stream_cursor_input": { "initial_value": [ - 5353 + 5352 ], "ordering": [ - 314 + 313 ], "__typename": [ 80 @@ -122088,13 +122080,13 @@ export default { }, "v_player_arch_nemesis_stream_cursor_value_input": { "attacker_id": [ - 258 + 257 ], "kill_count": [ - 258 + 257 ], "victim_id": [ - 258 + 257 ], "__typename": [ 80 @@ -122102,13 +122094,13 @@ export default { }, "v_player_arch_nemesis_sum_fields": { "attacker_id": [ - 258 + 257 ], "kill_count": [ - 258 + 257 ], "victim_id": [ - 258 + 257 ], "__typename": [ 80 @@ -122158,19 +122150,19 @@ export default { }, "v_player_damage": { "avg_damage_per_round": [ - 258 + 257 ], "player": [ - 3910 + 3909 ], "player_steam_id": [ - 258 + 257 ], "total_damage": [ - 258 + 257 ], "total_rounds": [ - 258 + 257 ], "__typename": [ 80 @@ -122178,10 +122170,10 @@ export default { }, "v_player_damage_aggregate": { "aggregate": [ - 5360 + 5359 ], "nodes": [ - 5358 + 5357 ], "__typename": [ 80 @@ -122189,13 +122181,13 @@ export default { }, "v_player_damage_aggregate_fields": { "avg": [ - 5361 + 5360 ], "count": [ 40, { "columns": [ - 5366, + 5365, "[v_player_damage_select_column!]" ], "distinct": [ @@ -122204,31 +122196,31 @@ export default { } ], "max": [ - 5363 + 5362 ], "min": [ - 5364 + 5363 ], "stddev": [ - 5367 + 5366 ], "stddev_pop": [ - 5368 + 5367 ], "stddev_samp": [ - 5369 + 5368 ], "sum": [ - 5372 + 5371 ], "var_pop": [ - 5373 + 5372 ], "var_samp": [ - 5374 + 5373 ], "variance": [ - 5375 + 5374 ], "__typename": [ 80 @@ -122253,28 +122245,28 @@ export default { }, "v_player_damage_bool_exp": { "_and": [ - 5362 + 5361 ], "_not": [ - 5362 + 5361 ], "_or": [ - 5362 + 5361 ], "avg_damage_per_round": [ - 260 + 259 ], "player": [ - 3914 + 3913 ], "player_steam_id": [ - 260 + 259 ], "total_damage": [ - 260 + 259 ], "total_rounds": [ - 260 + 259 ], "__typename": [ 80 @@ -122282,16 +122274,16 @@ export default { }, "v_player_damage_max_fields": { "avg_damage_per_round": [ - 258 + 257 ], "player_steam_id": [ - 258 + 257 ], "total_damage": [ - 258 + 257 ], "total_rounds": [ - 258 + 257 ], "__typename": [ 80 @@ -122299,16 +122291,16 @@ export default { }, "v_player_damage_min_fields": { "avg_damage_per_round": [ - 258 + 257 ], "player_steam_id": [ - 258 + 257 ], "total_damage": [ - 258 + 257 ], "total_rounds": [ - 258 + 257 ], "__typename": [ 80 @@ -122316,19 +122308,19 @@ export default { }, "v_player_damage_order_by": { "avg_damage_per_round": [ - 2952 + 2951 ], "player": [ - 3923 + 3922 ], "player_steam_id": [ - 2952 + 2951 ], "total_damage": [ - 2952 + 2951 ], "total_rounds": [ - 2952 + 2951 ], "__typename": [ 80 @@ -122388,10 +122380,10 @@ export default { }, "v_player_damage_stream_cursor_input": { "initial_value": [ - 5371 + 5370 ], "ordering": [ - 314 + 313 ], "__typename": [ 80 @@ -122399,16 +122391,16 @@ export default { }, "v_player_damage_stream_cursor_value_input": { "avg_damage_per_round": [ - 258 + 257 ], "player_steam_id": [ - 258 + 257 ], "total_damage": [ - 258 + 257 ], "total_rounds": [ - 258 + 257 ], "__typename": [ 80 @@ -122416,16 +122408,16 @@ export default { }, "v_player_damage_sum_fields": { "avg_damage_per_round": [ - 258 + 257 ], "player_steam_id": [ - 258 + 257 ], "total_damage": [ - 258 + 257 ], "total_rounds": [ - 258 + 257 ], "__typename": [ 80 @@ -122484,7 +122476,7 @@ export default { }, "v_player_elo": { "actual_score": [ - 1670 + 1669 ], "assists": [ 40 @@ -122496,7 +122488,7 @@ export default { 40 ], "damage_percent": [ - 1670 + 1669 ], "deaths": [ 40 @@ -122505,16 +122497,16 @@ export default { 40 ], "expected_score": [ - 1670 + 1669 ], "impact": [ - 1670 + 1669 ], "k_factor": [ 40 ], "kda": [ - 1670 + 1669 ], "kills": [ 40 @@ -122526,40 +122518,40 @@ export default { 40 ], "match": [ - 2767 + 2766 ], "match_created_at": [ - 4499 + 4498 ], "match_id": [ - 4999 + 4998 ], "match_result": [ 80 ], "opponent_team_elo_avg": [ - 1670 + 1669 ], "performance_multiplier": [ - 1670 + 1669 ], "player_name": [ 80 ], "player_steam_id": [ - 258 + 257 ], "player_team_elo_avg": [ - 1670 + 1669 ], "season_id": [ - 4999 + 4998 ], "series_multiplier": [ 40 ], "team_avg_kda": [ - 1670 + 1669 ], "type": [ 80 @@ -122573,10 +122565,10 @@ export default { }, "v_player_elo_aggregate": { "aggregate": [ - 5390 + 5389 ], "nodes": [ - 5376 + 5375 ], "__typename": [ 80 @@ -122584,31 +122576,31 @@ export default { }, "v_player_elo_aggregate_bool_exp": { "avg": [ - 5379 + 5378 ], "corr": [ - 5380 + 5379 ], "count": [ - 5382 + 5381 ], "covar_samp": [ - 5383 + 5382 ], "max": [ - 5385 + 5384 ], "min": [ - 5386 + 5385 ], "stddev_samp": [ - 5387 + 5386 ], "sum": [ - 5388 + 5387 ], "var_samp": [ - 5389 + 5388 ], "__typename": [ 80 @@ -122616,16 +122608,16 @@ export default { }, "v_player_elo_aggregate_bool_exp_avg": { "arguments": [ - 5403 + 5402 ], "distinct": [ 5 ], "filter": [ - 5395 + 5394 ], "predicate": [ - 1671 + 1670 ], "__typename": [ 80 @@ -122633,16 +122625,16 @@ export default { }, "v_player_elo_aggregate_bool_exp_corr": { "arguments": [ - 5381 + 5380 ], "distinct": [ 5 ], "filter": [ - 5395 + 5394 ], "predicate": [ - 1671 + 1670 ], "__typename": [ 80 @@ -122650,10 +122642,10 @@ export default { }, "v_player_elo_aggregate_bool_exp_corr_arguments": { "X": [ - 5404 + 5403 ], "Y": [ - 5404 + 5403 ], "__typename": [ 80 @@ -122661,13 +122653,13 @@ export default { }, "v_player_elo_aggregate_bool_exp_count": { "arguments": [ - 5402 + 5401 ], "distinct": [ 5 ], "filter": [ - 5395 + 5394 ], "predicate": [ 41 @@ -122678,16 +122670,16 @@ export default { }, "v_player_elo_aggregate_bool_exp_covar_samp": { "arguments": [ - 5384 + 5383 ], "distinct": [ 5 ], "filter": [ - 5395 + 5394 ], "predicate": [ - 1671 + 1670 ], "__typename": [ 80 @@ -122695,10 +122687,10 @@ export default { }, "v_player_elo_aggregate_bool_exp_covar_samp_arguments": { "X": [ - 5405 + 5404 ], "Y": [ - 5405 + 5404 ], "__typename": [ 80 @@ -122706,16 +122698,16 @@ export default { }, "v_player_elo_aggregate_bool_exp_max": { "arguments": [ - 5406 + 5405 ], "distinct": [ 5 ], "filter": [ - 5395 + 5394 ], "predicate": [ - 1671 + 1670 ], "__typename": [ 80 @@ -122723,16 +122715,16 @@ export default { }, "v_player_elo_aggregate_bool_exp_min": { "arguments": [ - 5407 + 5406 ], "distinct": [ 5 ], "filter": [ - 5395 + 5394 ], "predicate": [ - 1671 + 1670 ], "__typename": [ 80 @@ -122740,16 +122732,16 @@ export default { }, "v_player_elo_aggregate_bool_exp_stddev_samp": { "arguments": [ - 5408 + 5407 ], "distinct": [ 5 ], "filter": [ - 5395 + 5394 ], "predicate": [ - 1671 + 1670 ], "__typename": [ 80 @@ -122757,16 +122749,16 @@ export default { }, "v_player_elo_aggregate_bool_exp_sum": { "arguments": [ - 5409 + 5408 ], "distinct": [ 5 ], "filter": [ - 5395 + 5394 ], "predicate": [ - 1671 + 1670 ], "__typename": [ 80 @@ -122774,16 +122766,16 @@ export default { }, "v_player_elo_aggregate_bool_exp_var_samp": { "arguments": [ - 5410 + 5409 ], "distinct": [ 5 ], "filter": [ - 5395 + 5394 ], "predicate": [ - 1671 + 1670 ], "__typename": [ 80 @@ -122791,13 +122783,13 @@ export default { }, "v_player_elo_aggregate_fields": { "avg": [ - 5393 + 5392 ], "count": [ 40, { "columns": [ - 5402, + 5401, "[v_player_elo_select_column!]" ], "distinct": [ @@ -122805,6 +122797,44 @@ export default { ] } ], + "max": [ + 5396 + ], + "min": [ + 5398 + ], + "stddev": [ + 5410 + ], + "stddev_pop": [ + 5412 + ], + "stddev_samp": [ + 5414 + ], + "sum": [ + 5418 + ], + "var_pop": [ + 5420 + ], + "var_samp": [ + 5422 + ], + "variance": [ + 5424 + ], + "__typename": [ + 80 + ] + }, + "v_player_elo_aggregate_order_by": { + "avg": [ + 5393 + ], + "count": [ + 2951 + ], "max": [ 5397 ], @@ -122836,47 +122866,9 @@ export default { 80 ] }, - "v_player_elo_aggregate_order_by": { - "avg": [ - 5394 - ], - "count": [ - 2952 - ], - "max": [ - 5398 - ], - "min": [ - 5400 - ], - "stddev": [ - 5412 - ], - "stddev_pop": [ - 5414 - ], - "stddev_samp": [ - 5416 - ], - "sum": [ - 5420 - ], - "var_pop": [ - 5422 - ], - "var_samp": [ - 5424 - ], - "variance": [ - 5426 - ], - "__typename": [ - 80 - ] - }, "v_player_elo_arr_rel_insert_input": { "data": [ - 5396 + 5395 ], "__typename": [ 80 @@ -122952,67 +122944,67 @@ export default { }, "v_player_elo_avg_order_by": { "actual_score": [ - 2952 + 2951 ], "assists": [ - 2952 + 2951 ], "current_elo": [ - 2952 + 2951 ], "damage": [ - 2952 + 2951 ], "damage_percent": [ - 2952 + 2951 ], "deaths": [ - 2952 + 2951 ], "elo_change": [ - 2952 + 2951 ], "expected_score": [ - 2952 + 2951 ], "impact": [ - 2952 + 2951 ], "k_factor": [ - 2952 + 2951 ], "kda": [ - 2952 + 2951 ], "kills": [ - 2952 + 2951 ], "map_losses": [ - 2952 + 2951 ], "map_wins": [ - 2952 + 2951 ], "opponent_team_elo_avg": [ - 2952 + 2951 ], "performance_multiplier": [ - 2952 + 2951 ], "player_steam_id": [ - 2952 + 2951 ], "player_team_elo_avg": [ - 2952 + 2951 ], "series_multiplier": [ - 2952 + 2951 ], "team_avg_kda": [ - 2952 + 2951 ], "updated_elo": [ - 2952 + 2951 ], "__typename": [ 80 @@ -123020,16 +123012,16 @@ export default { }, "v_player_elo_bool_exp": { "_and": [ - 5395 + 5394 ], "_not": [ - 5395 + 5394 ], "_or": [ - 5395 + 5394 ], "actual_score": [ - 1671 + 1670 ], "assists": [ 41 @@ -123041,7 +123033,7 @@ export default { 41 ], "damage_percent": [ - 1671 + 1670 ], "deaths": [ 41 @@ -123050,16 +123042,16 @@ export default { 41 ], "expected_score": [ - 1671 + 1670 ], "impact": [ - 1671 + 1670 ], "k_factor": [ 41 ], "kda": [ - 1671 + 1670 ], "kills": [ 41 @@ -123071,40 +123063,40 @@ export default { 41 ], "match": [ - 2776 + 2775 ], "match_created_at": [ - 4500 + 4499 ], "match_id": [ - 5001 + 5000 ], "match_result": [ 82 ], "opponent_team_elo_avg": [ - 1671 + 1670 ], "performance_multiplier": [ - 1671 + 1670 ], "player_name": [ 82 ], "player_steam_id": [ - 260 + 259 ], "player_team_elo_avg": [ - 1671 + 1670 ], "season_id": [ - 5001 + 5000 ], "series_multiplier": [ 41 ], "team_avg_kda": [ - 1671 + 1670 ], "type": [ 82 @@ -123118,7 +123110,7 @@ export default { }, "v_player_elo_insert_input": { "actual_score": [ - 1670 + 1669 ], "assists": [ 40 @@ -123130,7 +123122,7 @@ export default { 40 ], "damage_percent": [ - 1670 + 1669 ], "deaths": [ 40 @@ -123139,16 +123131,16 @@ export default { 40 ], "expected_score": [ - 1670 + 1669 ], "impact": [ - 1670 + 1669 ], "k_factor": [ 40 ], "kda": [ - 1670 + 1669 ], "kills": [ 40 @@ -123160,40 +123152,40 @@ export default { 40 ], "match": [ - 2785 + 2784 ], "match_created_at": [ - 4499 + 4498 ], "match_id": [ - 4999 + 4998 ], "match_result": [ 80 ], "opponent_team_elo_avg": [ - 1670 + 1669 ], "performance_multiplier": [ - 1670 + 1669 ], "player_name": [ 80 ], "player_steam_id": [ - 258 + 257 ], "player_team_elo_avg": [ - 1670 + 1669 ], "season_id": [ - 4999 + 4998 ], "series_multiplier": [ 40 ], "team_avg_kda": [ - 1670 + 1669 ], "type": [ 80 @@ -123207,7 +123199,7 @@ export default { }, "v_player_elo_max_fields": { "actual_score": [ - 1670 + 1669 ], "assists": [ 40 @@ -123219,7 +123211,7 @@ export default { 40 ], "damage_percent": [ - 1670 + 1669 ], "deaths": [ 40 @@ -123228,16 +123220,16 @@ export default { 40 ], "expected_score": [ - 1670 + 1669 ], "impact": [ - 1670 + 1669 ], "k_factor": [ 40 ], "kda": [ - 1670 + 1669 ], "kills": [ 40 @@ -123249,37 +123241,37 @@ export default { 40 ], "match_created_at": [ - 4499 + 4498 ], "match_id": [ - 4999 + 4998 ], "match_result": [ 80 ], "opponent_team_elo_avg": [ - 1670 + 1669 ], "performance_multiplier": [ - 1670 + 1669 ], "player_name": [ 80 ], "player_steam_id": [ - 258 + 257 ], "player_team_elo_avg": [ - 1670 + 1669 ], "season_id": [ - 4999 + 4998 ], "series_multiplier": [ 40 ], "team_avg_kda": [ - 1670 + 1669 ], "type": [ 80 @@ -123293,85 +123285,85 @@ export default { }, "v_player_elo_max_order_by": { "actual_score": [ - 2952 + 2951 ], "assists": [ - 2952 + 2951 ], "current_elo": [ - 2952 + 2951 ], "damage": [ - 2952 + 2951 ], "damage_percent": [ - 2952 + 2951 ], "deaths": [ - 2952 + 2951 ], "elo_change": [ - 2952 + 2951 ], "expected_score": [ - 2952 + 2951 ], "impact": [ - 2952 + 2951 ], "k_factor": [ - 2952 + 2951 ], "kda": [ - 2952 + 2951 ], "kills": [ - 2952 + 2951 ], "map_losses": [ - 2952 + 2951 ], "map_wins": [ - 2952 + 2951 ], "match_created_at": [ - 2952 + 2951 ], "match_id": [ - 2952 + 2951 ], "match_result": [ - 2952 + 2951 ], "opponent_team_elo_avg": [ - 2952 + 2951 ], "performance_multiplier": [ - 2952 + 2951 ], "player_name": [ - 2952 + 2951 ], "player_steam_id": [ - 2952 + 2951 ], "player_team_elo_avg": [ - 2952 + 2951 ], "season_id": [ - 2952 + 2951 ], "series_multiplier": [ - 2952 + 2951 ], "team_avg_kda": [ - 2952 + 2951 ], "type": [ - 2952 + 2951 ], "updated_elo": [ - 2952 + 2951 ], "__typename": [ 80 @@ -123379,7 +123371,7 @@ export default { }, "v_player_elo_min_fields": { "actual_score": [ - 1670 + 1669 ], "assists": [ 40 @@ -123391,7 +123383,7 @@ export default { 40 ], "damage_percent": [ - 1670 + 1669 ], "deaths": [ 40 @@ -123400,16 +123392,16 @@ export default { 40 ], "expected_score": [ - 1670 + 1669 ], "impact": [ - 1670 + 1669 ], "k_factor": [ 40 ], "kda": [ - 1670 + 1669 ], "kills": [ 40 @@ -123421,37 +123413,37 @@ export default { 40 ], "match_created_at": [ - 4499 + 4498 ], "match_id": [ - 4999 + 4998 ], "match_result": [ 80 ], "opponent_team_elo_avg": [ - 1670 + 1669 ], "performance_multiplier": [ - 1670 + 1669 ], "player_name": [ 80 ], "player_steam_id": [ - 258 + 257 ], "player_team_elo_avg": [ - 1670 + 1669 ], "season_id": [ - 4999 + 4998 ], "series_multiplier": [ 40 ], "team_avg_kda": [ - 1670 + 1669 ], "type": [ 80 @@ -123465,85 +123457,85 @@ export default { }, "v_player_elo_min_order_by": { "actual_score": [ - 2952 + 2951 ], "assists": [ - 2952 + 2951 ], "current_elo": [ - 2952 + 2951 ], "damage": [ - 2952 + 2951 ], "damage_percent": [ - 2952 + 2951 ], "deaths": [ - 2952 + 2951 ], "elo_change": [ - 2952 + 2951 ], "expected_score": [ - 2952 + 2951 ], "impact": [ - 2952 + 2951 ], "k_factor": [ - 2952 + 2951 ], "kda": [ - 2952 + 2951 ], "kills": [ - 2952 + 2951 ], "map_losses": [ - 2952 + 2951 ], "map_wins": [ - 2952 + 2951 ], "match_created_at": [ - 2952 + 2951 ], "match_id": [ - 2952 + 2951 ], "match_result": [ - 2952 + 2951 ], "opponent_team_elo_avg": [ - 2952 + 2951 ], "performance_multiplier": [ - 2952 + 2951 ], "player_name": [ - 2952 + 2951 ], "player_steam_id": [ - 2952 + 2951 ], "player_team_elo_avg": [ - 2952 + 2951 ], "season_id": [ - 2952 + 2951 ], "series_multiplier": [ - 2952 + 2951 ], "team_avg_kda": [ - 2952 + 2951 ], "type": [ - 2952 + 2951 ], "updated_elo": [ - 2952 + 2951 ], "__typename": [ 80 @@ -123551,88 +123543,88 @@ export default { }, "v_player_elo_order_by": { "actual_score": [ - 2952 + 2951 ], "assists": [ - 2952 + 2951 ], "current_elo": [ - 2952 + 2951 ], "damage": [ - 2952 + 2951 ], "damage_percent": [ - 2952 + 2951 ], "deaths": [ - 2952 + 2951 ], "elo_change": [ - 2952 + 2951 ], "expected_score": [ - 2952 + 2951 ], "impact": [ - 2952 + 2951 ], "k_factor": [ - 2952 + 2951 ], "kda": [ - 2952 + 2951 ], "kills": [ - 2952 + 2951 ], "map_losses": [ - 2952 + 2951 ], "map_wins": [ - 2952 + 2951 ], "match": [ - 2787 + 2786 ], "match_created_at": [ - 2952 + 2951 ], "match_id": [ - 2952 + 2951 ], "match_result": [ - 2952 + 2951 ], "opponent_team_elo_avg": [ - 2952 + 2951 ], "performance_multiplier": [ - 2952 + 2951 ], "player_name": [ - 2952 + 2951 ], "player_steam_id": [ - 2952 + 2951 ], "player_team_elo_avg": [ - 2952 + 2951 ], "season_id": [ - 2952 + 2951 ], "series_multiplier": [ - 2952 + 2951 ], "team_avg_kda": [ - 2952 + 2951 ], "type": [ - 2952 + 2951 ], "updated_elo": [ - 2952 + 2951 ], "__typename": [ 80 @@ -123717,67 +123709,67 @@ export default { }, "v_player_elo_stddev_order_by": { "actual_score": [ - 2952 + 2951 ], "assists": [ - 2952 + 2951 ], "current_elo": [ - 2952 + 2951 ], "damage": [ - 2952 + 2951 ], "damage_percent": [ - 2952 + 2951 ], "deaths": [ - 2952 + 2951 ], "elo_change": [ - 2952 + 2951 ], "expected_score": [ - 2952 + 2951 ], "impact": [ - 2952 + 2951 ], "k_factor": [ - 2952 + 2951 ], "kda": [ - 2952 + 2951 ], "kills": [ - 2952 + 2951 ], "map_losses": [ - 2952 + 2951 ], "map_wins": [ - 2952 + 2951 ], "opponent_team_elo_avg": [ - 2952 + 2951 ], "performance_multiplier": [ - 2952 + 2951 ], "player_steam_id": [ - 2952 + 2951 ], "player_team_elo_avg": [ - 2952 + 2951 ], "series_multiplier": [ - 2952 + 2951 ], "team_avg_kda": [ - 2952 + 2951 ], "updated_elo": [ - 2952 + 2951 ], "__typename": [ 80 @@ -123853,67 +123845,67 @@ export default { }, "v_player_elo_stddev_pop_order_by": { "actual_score": [ - 2952 + 2951 ], "assists": [ - 2952 + 2951 ], "current_elo": [ - 2952 + 2951 ], "damage": [ - 2952 + 2951 ], "damage_percent": [ - 2952 + 2951 ], "deaths": [ - 2952 + 2951 ], "elo_change": [ - 2952 + 2951 ], "expected_score": [ - 2952 + 2951 ], "impact": [ - 2952 + 2951 ], "k_factor": [ - 2952 + 2951 ], "kda": [ - 2952 + 2951 ], "kills": [ - 2952 + 2951 ], "map_losses": [ - 2952 + 2951 ], "map_wins": [ - 2952 + 2951 ], "opponent_team_elo_avg": [ - 2952 + 2951 ], "performance_multiplier": [ - 2952 + 2951 ], "player_steam_id": [ - 2952 + 2951 ], "player_team_elo_avg": [ - 2952 + 2951 ], "series_multiplier": [ - 2952 + 2951 ], "team_avg_kda": [ - 2952 + 2951 ], "updated_elo": [ - 2952 + 2951 ], "__typename": [ 80 @@ -123989,67 +123981,67 @@ export default { }, "v_player_elo_stddev_samp_order_by": { "actual_score": [ - 2952 + 2951 ], "assists": [ - 2952 + 2951 ], "current_elo": [ - 2952 + 2951 ], "damage": [ - 2952 + 2951 ], "damage_percent": [ - 2952 + 2951 ], "deaths": [ - 2952 + 2951 ], "elo_change": [ - 2952 + 2951 ], "expected_score": [ - 2952 + 2951 ], "impact": [ - 2952 + 2951 ], "k_factor": [ - 2952 + 2951 ], "kda": [ - 2952 + 2951 ], "kills": [ - 2952 + 2951 ], "map_losses": [ - 2952 + 2951 ], "map_wins": [ - 2952 + 2951 ], "opponent_team_elo_avg": [ - 2952 + 2951 ], "performance_multiplier": [ - 2952 + 2951 ], "player_steam_id": [ - 2952 + 2951 ], "player_team_elo_avg": [ - 2952 + 2951 ], "series_multiplier": [ - 2952 + 2951 ], "team_avg_kda": [ - 2952 + 2951 ], "updated_elo": [ - 2952 + 2951 ], "__typename": [ 80 @@ -124057,10 +124049,10 @@ export default { }, "v_player_elo_stream_cursor_input": { "initial_value": [ - 5418 + 5417 ], "ordering": [ - 314 + 313 ], "__typename": [ 80 @@ -124068,7 +124060,7 @@ export default { }, "v_player_elo_stream_cursor_value_input": { "actual_score": [ - 1670 + 1669 ], "assists": [ 40 @@ -124080,7 +124072,7 @@ export default { 40 ], "damage_percent": [ - 1670 + 1669 ], "deaths": [ 40 @@ -124089,16 +124081,16 @@ export default { 40 ], "expected_score": [ - 1670 + 1669 ], "impact": [ - 1670 + 1669 ], "k_factor": [ 40 ], "kda": [ - 1670 + 1669 ], "kills": [ 40 @@ -124110,37 +124102,37 @@ export default { 40 ], "match_created_at": [ - 4499 + 4498 ], "match_id": [ - 4999 + 4998 ], "match_result": [ 80 ], "opponent_team_elo_avg": [ - 1670 + 1669 ], "performance_multiplier": [ - 1670 + 1669 ], "player_name": [ 80 ], "player_steam_id": [ - 258 + 257 ], "player_team_elo_avg": [ - 1670 + 1669 ], "season_id": [ - 4999 + 4998 ], "series_multiplier": [ 40 ], "team_avg_kda": [ - 1670 + 1669 ], "type": [ 80 @@ -124154,7 +124146,7 @@ export default { }, "v_player_elo_sum_fields": { "actual_score": [ - 1670 + 1669 ], "assists": [ 40 @@ -124166,7 +124158,7 @@ export default { 40 ], "damage_percent": [ - 1670 + 1669 ], "deaths": [ 40 @@ -124175,16 +124167,16 @@ export default { 40 ], "expected_score": [ - 1670 + 1669 ], "impact": [ - 1670 + 1669 ], "k_factor": [ 40 ], "kda": [ - 1670 + 1669 ], "kills": [ 40 @@ -124196,22 +124188,22 @@ export default { 40 ], "opponent_team_elo_avg": [ - 1670 + 1669 ], "performance_multiplier": [ - 1670 + 1669 ], "player_steam_id": [ - 258 + 257 ], "player_team_elo_avg": [ - 1670 + 1669 ], "series_multiplier": [ 40 ], "team_avg_kda": [ - 1670 + 1669 ], "updated_elo": [ 40 @@ -124222,67 +124214,67 @@ export default { }, "v_player_elo_sum_order_by": { "actual_score": [ - 2952 + 2951 ], "assists": [ - 2952 + 2951 ], "current_elo": [ - 2952 + 2951 ], "damage": [ - 2952 + 2951 ], "damage_percent": [ - 2952 + 2951 ], "deaths": [ - 2952 + 2951 ], "elo_change": [ - 2952 + 2951 ], "expected_score": [ - 2952 + 2951 ], "impact": [ - 2952 + 2951 ], "k_factor": [ - 2952 + 2951 ], "kda": [ - 2952 + 2951 ], "kills": [ - 2952 + 2951 ], "map_losses": [ - 2952 + 2951 ], "map_wins": [ - 2952 + 2951 ], "opponent_team_elo_avg": [ - 2952 + 2951 ], "performance_multiplier": [ - 2952 + 2951 ], "player_steam_id": [ - 2952 + 2951 ], "player_team_elo_avg": [ - 2952 + 2951 ], "series_multiplier": [ - 2952 + 2951 ], "team_avg_kda": [ - 2952 + 2951 ], "updated_elo": [ - 2952 + 2951 ], "__typename": [ 80 @@ -124358,67 +124350,67 @@ export default { }, "v_player_elo_var_pop_order_by": { "actual_score": [ - 2952 + 2951 ], "assists": [ - 2952 + 2951 ], "current_elo": [ - 2952 + 2951 ], "damage": [ - 2952 + 2951 ], "damage_percent": [ - 2952 + 2951 ], "deaths": [ - 2952 + 2951 ], "elo_change": [ - 2952 + 2951 ], "expected_score": [ - 2952 + 2951 ], "impact": [ - 2952 + 2951 ], "k_factor": [ - 2952 + 2951 ], "kda": [ - 2952 + 2951 ], "kills": [ - 2952 + 2951 ], "map_losses": [ - 2952 + 2951 ], "map_wins": [ - 2952 + 2951 ], "opponent_team_elo_avg": [ - 2952 + 2951 ], "performance_multiplier": [ - 2952 + 2951 ], "player_steam_id": [ - 2952 + 2951 ], "player_team_elo_avg": [ - 2952 + 2951 ], "series_multiplier": [ - 2952 + 2951 ], "team_avg_kda": [ - 2952 + 2951 ], "updated_elo": [ - 2952 + 2951 ], "__typename": [ 80 @@ -124494,67 +124486,67 @@ export default { }, "v_player_elo_var_samp_order_by": { "actual_score": [ - 2952 + 2951 ], "assists": [ - 2952 + 2951 ], "current_elo": [ - 2952 + 2951 ], "damage": [ - 2952 + 2951 ], "damage_percent": [ - 2952 + 2951 ], "deaths": [ - 2952 + 2951 ], "elo_change": [ - 2952 + 2951 ], "expected_score": [ - 2952 + 2951 ], "impact": [ - 2952 + 2951 ], "k_factor": [ - 2952 + 2951 ], "kda": [ - 2952 + 2951 ], "kills": [ - 2952 + 2951 ], "map_losses": [ - 2952 + 2951 ], "map_wins": [ - 2952 + 2951 ], "opponent_team_elo_avg": [ - 2952 + 2951 ], "performance_multiplier": [ - 2952 + 2951 ], "player_steam_id": [ - 2952 + 2951 ], "player_team_elo_avg": [ - 2952 + 2951 ], "series_multiplier": [ - 2952 + 2951 ], "team_avg_kda": [ - 2952 + 2951 ], "updated_elo": [ - 2952 + 2951 ], "__typename": [ 80 @@ -124630,67 +124622,67 @@ export default { }, "v_player_elo_variance_order_by": { "actual_score": [ - 2952 + 2951 ], "assists": [ - 2952 + 2951 ], "current_elo": [ - 2952 + 2951 ], "damage": [ - 2952 + 2951 ], "damage_percent": [ - 2952 + 2951 ], "deaths": [ - 2952 + 2951 ], "elo_change": [ - 2952 + 2951 ], "expected_score": [ - 2952 + 2951 ], "impact": [ - 2952 + 2951 ], "k_factor": [ - 2952 + 2951 ], "kda": [ - 2952 + 2951 ], "kills": [ - 2952 + 2951 ], "map_losses": [ - 2952 + 2951 ], "map_wins": [ - 2952 + 2951 ], "opponent_team_elo_avg": [ - 2952 + 2951 ], "performance_multiplier": [ - 2952 + 2951 ], "player_steam_id": [ - 2952 + 2951 ], "player_team_elo_avg": [ - 2952 + 2951 ], "series_multiplier": [ - 2952 + 2951 ], "team_avg_kda": [ - 2952 + 2951 ], "updated_elo": [ - 2952 + 2951 ], "__typename": [ 80 @@ -124698,22 +124690,22 @@ export default { }, "v_player_map_losses": { "map": [ - 2285 + 2284 ], "map_id": [ - 4999 + 4998 ], "match": [ - 2767 + 2766 ], "match_id": [ - 4999 + 4998 ], "started_at": [ - 4499 + 4498 ], "steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -124721,10 +124713,10 @@ export default { }, "v_player_map_losses_aggregate": { "aggregate": [ - 5429 + 5428 ], "nodes": [ - 5427 + 5426 ], "__typename": [ 80 @@ -124732,13 +124724,13 @@ export default { }, "v_player_map_losses_aggregate_fields": { "avg": [ - 5430 + 5429 ], "count": [ 40, { "columns": [ - 5435, + 5434, "[v_player_map_losses_select_column!]" ], "distinct": [ @@ -124747,31 +124739,31 @@ export default { } ], "max": [ - 5432 + 5431 ], "min": [ - 5433 + 5432 ], "stddev": [ - 5436 + 5435 ], "stddev_pop": [ - 5437 + 5436 ], "stddev_samp": [ - 5438 + 5437 ], "sum": [ - 5441 + 5440 ], "var_pop": [ - 5442 + 5441 ], "var_samp": [ - 5443 + 5442 ], "variance": [ - 5444 + 5443 ], "__typename": [ 80 @@ -124787,31 +124779,31 @@ export default { }, "v_player_map_losses_bool_exp": { "_and": [ - 5431 + 5430 ], "_not": [ - 5431 + 5430 ], "_or": [ - 5431 + 5430 ], "map": [ - 2294 + 2293 ], "map_id": [ - 5001 + 5000 ], "match": [ - 2776 + 2775 ], "match_id": [ - 5001 + 5000 ], "started_at": [ - 4500 + 4499 ], "steam_id": [ - 260 + 259 ], "__typename": [ 80 @@ -124819,16 +124811,16 @@ export default { }, "v_player_map_losses_max_fields": { "map_id": [ - 4999 + 4998 ], "match_id": [ - 4999 + 4998 ], "started_at": [ - 4499 + 4498 ], "steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -124836,16 +124828,16 @@ export default { }, "v_player_map_losses_min_fields": { "map_id": [ - 4999 + 4998 ], "match_id": [ - 4999 + 4998 ], "started_at": [ - 4499 + 4498 ], "steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -124853,22 +124845,22 @@ export default { }, "v_player_map_losses_order_by": { "map": [ - 2304 + 2303 ], "map_id": [ - 2952 + 2951 ], "match": [ - 2787 + 2786 ], "match_id": [ - 2952 + 2951 ], "started_at": [ - 2952 + 2951 ], "steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -124901,10 +124893,10 @@ export default { }, "v_player_map_losses_stream_cursor_input": { "initial_value": [ - 5440 + 5439 ], "ordering": [ - 314 + 313 ], "__typename": [ 80 @@ -124912,16 +124904,16 @@ export default { }, "v_player_map_losses_stream_cursor_value_input": { "map_id": [ - 4999 + 4998 ], "match_id": [ - 4999 + 4998 ], "started_at": [ - 4499 + 4498 ], "steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -124929,7 +124921,7 @@ export default { }, "v_player_map_losses_sum_fields": { "steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -124961,22 +124953,22 @@ export default { }, "v_player_map_wins": { "map": [ - 2285 + 2284 ], "map_id": [ - 4999 + 4998 ], "match": [ - 2767 + 2766 ], "match_id": [ - 4999 + 4998 ], "started_at": [ - 4499 + 4498 ], "steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -124984,10 +124976,10 @@ export default { }, "v_player_map_wins_aggregate": { "aggregate": [ - 5447 + 5446 ], "nodes": [ - 5445 + 5444 ], "__typename": [ 80 @@ -124995,13 +124987,13 @@ export default { }, "v_player_map_wins_aggregate_fields": { "avg": [ - 5448 + 5447 ], "count": [ 40, { "columns": [ - 5453, + 5452, "[v_player_map_wins_select_column!]" ], "distinct": [ @@ -125010,31 +125002,31 @@ export default { } ], "max": [ - 5450 + 5449 ], "min": [ - 5451 + 5450 ], "stddev": [ - 5454 + 5453 ], "stddev_pop": [ - 5455 + 5454 ], "stddev_samp": [ - 5456 + 5455 ], "sum": [ - 5459 + 5458 ], "var_pop": [ - 5460 + 5459 ], "var_samp": [ - 5461 + 5460 ], "variance": [ - 5462 + 5461 ], "__typename": [ 80 @@ -125050,31 +125042,31 @@ export default { }, "v_player_map_wins_bool_exp": { "_and": [ - 5449 + 5448 ], "_not": [ - 5449 + 5448 ], "_or": [ - 5449 + 5448 ], "map": [ - 2294 + 2293 ], "map_id": [ - 5001 + 5000 ], "match": [ - 2776 + 2775 ], "match_id": [ - 5001 + 5000 ], "started_at": [ - 4500 + 4499 ], "steam_id": [ - 260 + 259 ], "__typename": [ 80 @@ -125082,16 +125074,16 @@ export default { }, "v_player_map_wins_max_fields": { "map_id": [ - 4999 + 4998 ], "match_id": [ - 4999 + 4998 ], "started_at": [ - 4499 + 4498 ], "steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -125099,16 +125091,16 @@ export default { }, "v_player_map_wins_min_fields": { "map_id": [ - 4999 + 4998 ], "match_id": [ - 4999 + 4998 ], "started_at": [ - 4499 + 4498 ], "steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -125116,22 +125108,22 @@ export default { }, "v_player_map_wins_order_by": { "map": [ - 2304 + 2303 ], "map_id": [ - 2952 + 2951 ], "match": [ - 2787 + 2786 ], "match_id": [ - 2952 + 2951 ], "started_at": [ - 2952 + 2951 ], "steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -125164,10 +125156,10 @@ export default { }, "v_player_map_wins_stream_cursor_input": { "initial_value": [ - 5458 + 5457 ], "ordering": [ - 314 + 313 ], "__typename": [ 80 @@ -125175,16 +125167,16 @@ export default { }, "v_player_map_wins_stream_cursor_value_input": { "map_id": [ - 4999 + 4998 ], "match_id": [ - 4999 + 4998 ], "started_at": [ - 4499 + 4498 ], "steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -125192,7 +125184,7 @@ export default { }, "v_player_map_wins_sum_fields": { "steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -125224,37 +125216,37 @@ export default { }, "v_player_match_head_to_head": { "attacked": [ - 3910 + 3909 ], "attacked_steam_id": [ - 258 + 257 ], "attacker": [ - 3910 + 3909 ], "attacker_steam_id": [ - 258 + 257 ], "damage_dealt": [ 40 ], "flash_count": [ - 258 + 257 ], "headshot_kills": [ - 258 + 257 ], "hits": [ - 258 + 257 ], "kills": [ - 258 + 257 ], "match": [ - 2767 + 2766 ], "match_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -125262,10 +125254,10 @@ export default { }, "v_player_match_head_to_head_aggregate": { "aggregate": [ - 5465 + 5464 ], "nodes": [ - 5463 + 5462 ], "__typename": [ 80 @@ -125273,13 +125265,13 @@ export default { }, "v_player_match_head_to_head_aggregate_fields": { "avg": [ - 5466 + 5465 ], "count": [ 40, { "columns": [ - 5471, + 5470, "[v_player_match_head_to_head_select_column!]" ], "distinct": [ @@ -125288,31 +125280,31 @@ export default { } ], "max": [ - 5468 + 5467 ], "min": [ - 5469 + 5468 ], "stddev": [ - 5472 + 5471 ], "stddev_pop": [ - 5473 + 5472 ], "stddev_samp": [ - 5474 + 5473 ], "sum": [ - 5477 + 5476 ], "var_pop": [ - 5478 + 5477 ], "var_samp": [ - 5479 + 5478 ], "variance": [ - 5480 + 5479 ], "__typename": [ 80 @@ -125346,46 +125338,46 @@ export default { }, "v_player_match_head_to_head_bool_exp": { "_and": [ - 5467 + 5466 ], "_not": [ - 5467 + 5466 ], "_or": [ - 5467 + 5466 ], "attacked": [ - 3914 + 3913 ], "attacked_steam_id": [ - 260 + 259 ], "attacker": [ - 3914 + 3913 ], "attacker_steam_id": [ - 260 + 259 ], "damage_dealt": [ 41 ], "flash_count": [ - 260 + 259 ], "headshot_kills": [ - 260 + 259 ], "hits": [ - 260 + 259 ], "kills": [ - 260 + 259 ], "match": [ - 2776 + 2775 ], "match_id": [ - 5001 + 5000 ], "__typename": [ 80 @@ -125393,28 +125385,28 @@ export default { }, "v_player_match_head_to_head_max_fields": { "attacked_steam_id": [ - 258 + 257 ], "attacker_steam_id": [ - 258 + 257 ], "damage_dealt": [ 40 ], "flash_count": [ - 258 + 257 ], "headshot_kills": [ - 258 + 257 ], "hits": [ - 258 + 257 ], "kills": [ - 258 + 257 ], "match_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -125422,28 +125414,28 @@ export default { }, "v_player_match_head_to_head_min_fields": { "attacked_steam_id": [ - 258 + 257 ], "attacker_steam_id": [ - 258 + 257 ], "damage_dealt": [ 40 ], "flash_count": [ - 258 + 257 ], "headshot_kills": [ - 258 + 257 ], "hits": [ - 258 + 257 ], "kills": [ - 258 + 257 ], "match_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -125451,37 +125443,37 @@ export default { }, "v_player_match_head_to_head_order_by": { "attacked": [ - 3923 + 3922 ], "attacked_steam_id": [ - 2952 + 2951 ], "attacker": [ - 3923 + 3922 ], "attacker_steam_id": [ - 2952 + 2951 ], "damage_dealt": [ - 2952 + 2951 ], "flash_count": [ - 2952 + 2951 ], "headshot_kills": [ - 2952 + 2951 ], "hits": [ - 2952 + 2951 ], "kills": [ - 2952 + 2951 ], "match": [ - 2787 + 2786 ], "match_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -125568,10 +125560,10 @@ export default { }, "v_player_match_head_to_head_stream_cursor_input": { "initial_value": [ - 5476 + 5475 ], "ordering": [ - 314 + 313 ], "__typename": [ 80 @@ -125579,28 +125571,28 @@ export default { }, "v_player_match_head_to_head_stream_cursor_value_input": { "attacked_steam_id": [ - 258 + 257 ], "attacker_steam_id": [ - 258 + 257 ], "damage_dealt": [ 40 ], "flash_count": [ - 258 + 257 ], "headshot_kills": [ - 258 + 257 ], "hits": [ - 258 + 257 ], "kills": [ - 258 + 257 ], "match_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -125608,25 +125600,25 @@ export default { }, "v_player_match_head_to_head_sum_fields": { "attacked_steam_id": [ - 258 + 257 ], "attacker_steam_id": [ - 258 + 257 ], "damage_dealt": [ 40 ], "flash_count": [ - 258 + 257 ], "headshot_kills": [ - 258 + 257 ], "hits": [ - 258 + 257 ], "kills": [ - 258 + 257 ], "__typename": [ 80 @@ -125712,43 +125704,43 @@ export default { }, "v_player_match_map_hltv": { "adr": [ - 2950 + 2949 ], "apr": [ - 2950 + 2949 ], "dpr": [ - 2950 + 2949 ], "hltv_rating": [ - 2950 + 2949 ], "kast_pct": [ - 2950 + 2949 ], "kpr": [ - 2950 + 2949 ], "match": [ - 2767 + 2766 ], "match_id": [ - 4999 + 4998 ], "match_map": [ - 2605 + 2604 ], "match_map_id": [ - 4999 + 4998 ], "player": [ - 3910 + 3909 ], "rounds_played": [ 40 ], "steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -125756,10 +125748,10 @@ export default { }, "v_player_match_map_hltv_aggregate": { "aggregate": [ - 5485 + 5484 ], "nodes": [ - 5481 + 5480 ], "__typename": [ 80 @@ -125767,7 +125759,7 @@ export default { }, "v_player_match_map_hltv_aggregate_bool_exp": { "count": [ - 5484 + 5483 ], "__typename": [ 80 @@ -125775,13 +125767,13 @@ export default { }, "v_player_match_map_hltv_aggregate_bool_exp_count": { "arguments": [ - 5499 + 5498 ], "distinct": [ 5 ], "filter": [ - 5490 + 5489 ], "predicate": [ 41 @@ -125792,13 +125784,13 @@ export default { }, "v_player_match_map_hltv_aggregate_fields": { "avg": [ - 5488 + 5487 ], "count": [ 40, { "columns": [ - 5499, + 5498, "[v_player_match_map_hltv_select_column!]" ], "distinct": [ @@ -125807,31 +125799,31 @@ export default { } ], "max": [ - 5493 + 5492 ], "min": [ - 5495 + 5494 ], "stddev": [ - 5501 + 5500 ], "stddev_pop": [ - 5503 + 5502 ], "stddev_samp": [ - 5505 + 5504 ], "sum": [ - 5509 + 5508 ], "var_pop": [ - 5512 + 5511 ], "var_samp": [ - 5514 + 5513 ], "variance": [ - 5516 + 5515 ], "__typename": [ 80 @@ -125839,37 +125831,37 @@ export default { }, "v_player_match_map_hltv_aggregate_order_by": { "avg": [ - 5489 + 5488 ], "count": [ - 2952 + 2951 ], "max": [ - 5494 + 5493 ], "min": [ - 5496 + 5495 ], "stddev": [ - 5502 + 5501 ], "stddev_pop": [ - 5504 + 5503 ], "stddev_samp": [ - 5506 + 5505 ], "sum": [ - 5510 + 5509 ], "var_pop": [ - 5513 + 5512 ], "var_samp": [ - 5515 + 5514 ], "variance": [ - 5517 + 5516 ], "__typename": [ 80 @@ -125877,7 +125869,7 @@ export default { }, "v_player_match_map_hltv_arr_rel_insert_input": { "data": [ - 5492 + 5491 ], "__typename": [ 80 @@ -125914,28 +125906,28 @@ export default { }, "v_player_match_map_hltv_avg_order_by": { "adr": [ - 2952 + 2951 ], "apr": [ - 2952 + 2951 ], "dpr": [ - 2952 + 2951 ], "hltv_rating": [ - 2952 + 2951 ], "kast_pct": [ - 2952 + 2951 ], "kpr": [ - 2952 + 2951 ], "rounds_played": [ - 2952 + 2951 ], "steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -125943,52 +125935,52 @@ export default { }, "v_player_match_map_hltv_bool_exp": { "_and": [ - 5490 + 5489 ], "_not": [ - 5490 + 5489 ], "_or": [ - 5490 + 5489 ], "adr": [ - 2951 + 2950 ], "apr": [ - 2951 + 2950 ], "dpr": [ - 2951 + 2950 ], "hltv_rating": [ - 2951 + 2950 ], "kast_pct": [ - 2951 + 2950 ], "kpr": [ - 2951 + 2950 ], "match": [ - 2776 + 2775 ], "match_id": [ - 5001 + 5000 ], "match_map": [ - 2614 + 2613 ], "match_map_id": [ - 5001 + 5000 ], "player": [ - 3914 + 3913 ], "rounds_played": [ 41 ], "steam_id": [ - 260 + 259 ], "__typename": [ 80 @@ -125996,28 +125988,28 @@ export default { }, "v_player_match_map_hltv_inc_input": { "adr": [ - 2950 + 2949 ], "apr": [ - 2950 + 2949 ], "dpr": [ - 2950 + 2949 ], "hltv_rating": [ - 2950 + 2949 ], "kast_pct": [ - 2950 + 2949 ], "kpr": [ - 2950 + 2949 ], "rounds_played": [ 40 ], "steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -126025,43 +126017,43 @@ export default { }, "v_player_match_map_hltv_insert_input": { "adr": [ - 2950 + 2949 ], "apr": [ - 2950 + 2949 ], "dpr": [ - 2950 + 2949 ], "hltv_rating": [ - 2950 + 2949 ], "kast_pct": [ - 2950 + 2949 ], "kpr": [ - 2950 + 2949 ], "match": [ - 2785 + 2784 ], "match_id": [ - 4999 + 4998 ], "match_map": [ - 2623 + 2622 ], "match_map_id": [ - 4999 + 4998 ], "player": [ - 3921 + 3920 ], "rounds_played": [ 40 ], "steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -126069,34 +126061,34 @@ export default { }, "v_player_match_map_hltv_max_fields": { "adr": [ - 2950 + 2949 ], "apr": [ - 2950 + 2949 ], "dpr": [ - 2950 + 2949 ], "hltv_rating": [ - 2950 + 2949 ], "kast_pct": [ - 2950 + 2949 ], "kpr": [ - 2950 + 2949 ], "match_id": [ - 4999 + 4998 ], "match_map_id": [ - 4999 + 4998 ], "rounds_played": [ 40 ], "steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -126104,34 +126096,34 @@ export default { }, "v_player_match_map_hltv_max_order_by": { "adr": [ - 2952 + 2951 ], "apr": [ - 2952 + 2951 ], "dpr": [ - 2952 + 2951 ], "hltv_rating": [ - 2952 + 2951 ], "kast_pct": [ - 2952 + 2951 ], "kpr": [ - 2952 + 2951 ], "match_id": [ - 2952 + 2951 ], "match_map_id": [ - 2952 + 2951 ], "rounds_played": [ - 2952 + 2951 ], "steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -126139,34 +126131,34 @@ export default { }, "v_player_match_map_hltv_min_fields": { "adr": [ - 2950 + 2949 ], "apr": [ - 2950 + 2949 ], "dpr": [ - 2950 + 2949 ], "hltv_rating": [ - 2950 + 2949 ], "kast_pct": [ - 2950 + 2949 ], "kpr": [ - 2950 + 2949 ], "match_id": [ - 4999 + 4998 ], "match_map_id": [ - 4999 + 4998 ], "rounds_played": [ 40 ], "steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -126174,34 +126166,34 @@ export default { }, "v_player_match_map_hltv_min_order_by": { "adr": [ - 2952 + 2951 ], "apr": [ - 2952 + 2951 ], "dpr": [ - 2952 + 2951 ], "hltv_rating": [ - 2952 + 2951 ], "kast_pct": [ - 2952 + 2951 ], "kpr": [ - 2952 + 2951 ], "match_id": [ - 2952 + 2951 ], "match_map_id": [ - 2952 + 2951 ], "rounds_played": [ - 2952 + 2951 ], "steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -126212,7 +126204,7 @@ export default { 40 ], "returning": [ - 5481 + 5480 ], "__typename": [ 80 @@ -126220,43 +126212,43 @@ export default { }, "v_player_match_map_hltv_order_by": { "adr": [ - 2952 + 2951 ], "apr": [ - 2952 + 2951 ], "dpr": [ - 2952 + 2951 ], "hltv_rating": [ - 2952 + 2951 ], "kast_pct": [ - 2952 + 2951 ], "kpr": [ - 2952 + 2951 ], "match": [ - 2787 + 2786 ], "match_id": [ - 2952 + 2951 ], "match_map": [ - 2625 + 2624 ], "match_map_id": [ - 2952 + 2951 ], "player": [ - 3923 + 3922 ], "rounds_played": [ - 2952 + 2951 ], "steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -126265,34 +126257,34 @@ export default { "v_player_match_map_hltv_select_column": {}, "v_player_match_map_hltv_set_input": { "adr": [ - 2950 + 2949 ], "apr": [ - 2950 + 2949 ], "dpr": [ - 2950 + 2949 ], "hltv_rating": [ - 2950 + 2949 ], "kast_pct": [ - 2950 + 2949 ], "kpr": [ - 2950 + 2949 ], "match_id": [ - 4999 + 4998 ], "match_map_id": [ - 4999 + 4998 ], "rounds_played": [ 40 ], "steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -126329,28 +126321,28 @@ export default { }, "v_player_match_map_hltv_stddev_order_by": { "adr": [ - 2952 + 2951 ], "apr": [ - 2952 + 2951 ], "dpr": [ - 2952 + 2951 ], "hltv_rating": [ - 2952 + 2951 ], "kast_pct": [ - 2952 + 2951 ], "kpr": [ - 2952 + 2951 ], "rounds_played": [ - 2952 + 2951 ], "steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -126387,28 +126379,28 @@ export default { }, "v_player_match_map_hltv_stddev_pop_order_by": { "adr": [ - 2952 + 2951 ], "apr": [ - 2952 + 2951 ], "dpr": [ - 2952 + 2951 ], "hltv_rating": [ - 2952 + 2951 ], "kast_pct": [ - 2952 + 2951 ], "kpr": [ - 2952 + 2951 ], "rounds_played": [ - 2952 + 2951 ], "steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -126445,28 +126437,28 @@ export default { }, "v_player_match_map_hltv_stddev_samp_order_by": { "adr": [ - 2952 + 2951 ], "apr": [ - 2952 + 2951 ], "dpr": [ - 2952 + 2951 ], "hltv_rating": [ - 2952 + 2951 ], "kast_pct": [ - 2952 + 2951 ], "kpr": [ - 2952 + 2951 ], "rounds_played": [ - 2952 + 2951 ], "steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -126474,10 +126466,10 @@ export default { }, "v_player_match_map_hltv_stream_cursor_input": { "initial_value": [ - 5508 + 5507 ], "ordering": [ - 314 + 313 ], "__typename": [ 80 @@ -126485,34 +126477,34 @@ export default { }, "v_player_match_map_hltv_stream_cursor_value_input": { "adr": [ - 2950 + 2949 ], "apr": [ - 2950 + 2949 ], "dpr": [ - 2950 + 2949 ], "hltv_rating": [ - 2950 + 2949 ], "kast_pct": [ - 2950 + 2949 ], "kpr": [ - 2950 + 2949 ], "match_id": [ - 4999 + 4998 ], "match_map_id": [ - 4999 + 4998 ], "rounds_played": [ 40 ], "steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -126520,28 +126512,28 @@ export default { }, "v_player_match_map_hltv_sum_fields": { "adr": [ - 2950 + 2949 ], "apr": [ - 2950 + 2949 ], "dpr": [ - 2950 + 2949 ], "hltv_rating": [ - 2950 + 2949 ], "kast_pct": [ - 2950 + 2949 ], "kpr": [ - 2950 + 2949 ], "rounds_played": [ 40 ], "steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -126549,28 +126541,28 @@ export default { }, "v_player_match_map_hltv_sum_order_by": { "adr": [ - 2952 + 2951 ], "apr": [ - 2952 + 2951 ], "dpr": [ - 2952 + 2951 ], "hltv_rating": [ - 2952 + 2951 ], "kast_pct": [ - 2952 + 2951 ], "kpr": [ - 2952 + 2951 ], "rounds_played": [ - 2952 + 2951 ], "steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -126578,13 +126570,13 @@ export default { }, "v_player_match_map_hltv_updates": { "_inc": [ - 5491 + 5490 ], "_set": [ - 5500 + 5499 ], "where": [ - 5490 + 5489 ], "__typename": [ 80 @@ -126621,28 +126613,28 @@ export default { }, "v_player_match_map_hltv_var_pop_order_by": { "adr": [ - 2952 + 2951 ], "apr": [ - 2952 + 2951 ], "dpr": [ - 2952 + 2951 ], "hltv_rating": [ - 2952 + 2951 ], "kast_pct": [ - 2952 + 2951 ], "kpr": [ - 2952 + 2951 ], "rounds_played": [ - 2952 + 2951 ], "steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -126679,28 +126671,28 @@ export default { }, "v_player_match_map_hltv_var_samp_order_by": { "adr": [ - 2952 + 2951 ], "apr": [ - 2952 + 2951 ], "dpr": [ - 2952 + 2951 ], "hltv_rating": [ - 2952 + 2951 ], "kast_pct": [ - 2952 + 2951 ], "kpr": [ - 2952 + 2951 ], "rounds_played": [ - 2952 + 2951 ], "steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -126737,28 +126729,28 @@ export default { }, "v_player_match_map_hltv_variance_order_by": { "adr": [ - 2952 + 2951 ], "apr": [ - 2952 + 2951 ], "dpr": [ - 2952 + 2951 ], "hltv_rating": [ - 2952 + 2951 ], "kast_pct": [ - 2952 + 2951 ], "kpr": [ - 2952 + 2951 ], "rounds_played": [ - 2952 + 2951 ], "steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -126766,52 +126758,52 @@ export default { }, "v_player_match_map_roles": { "adr": [ - 2950 + 2949 ], "awp_kills": [ 40 ], "awp_share": [ - 2950 + 2949 ], "deaths": [ 40 ], "dpr": [ - 2950 + 2949 ], "entry_rate": [ - 2950 + 2949 ], "flash_assists": [ 40 ], "hltv_rating": [ - 2950 + 2949 ], "kast_pct": [ - 2950 + 2949 ], "kills": [ 40 ], "kpr": [ - 2950 + 2949 ], "lineup_id": [ - 4999 + 4998 ], "match": [ - 2767 + 2766 ], "match_id": [ - 4999 + 4998 ], "match_map": [ - 2605 + 2604 ], "match_map_id": [ - 4999 + 4998 ], "open_deaths": [ 40 @@ -126823,7 +126815,7 @@ export default { 40 ], "player": [ - 3910 + 3909 ], "role": [ 80 @@ -126832,10 +126824,10 @@ export default { 40 ], "steam_id": [ - 258 + 257 ], "support_idx": [ - 2950 + 2949 ], "total_kills": [ 40 @@ -126855,10 +126847,10 @@ export default { }, "v_player_match_map_roles_aggregate": { "aggregate": [ - 5520 + 5519 ], "nodes": [ - 5518 + 5517 ], "__typename": [ 80 @@ -126866,13 +126858,13 @@ export default { }, "v_player_match_map_roles_aggregate_fields": { "avg": [ - 5521 + 5520 ], "count": [ 40, { "columns": [ - 5526, + 5525, "[v_player_match_map_roles_select_column!]" ], "distinct": [ @@ -126881,31 +126873,31 @@ export default { } ], "max": [ - 5523 + 5522 ], "min": [ - 5524 + 5523 ], "stddev": [ - 5527 + 5526 ], "stddev_pop": [ - 5528 + 5527 ], "stddev_samp": [ - 5529 + 5528 ], "sum": [ - 5532 + 5531 ], "var_pop": [ - 5533 + 5532 ], "var_samp": [ - 5534 + 5533 ], "variance": [ - 5535 + 5534 ], "__typename": [ 80 @@ -126981,61 +126973,61 @@ export default { }, "v_player_match_map_roles_bool_exp": { "_and": [ - 5522 + 5521 ], "_not": [ - 5522 + 5521 ], "_or": [ - 5522 + 5521 ], "adr": [ - 2951 + 2950 ], "awp_kills": [ 41 ], "awp_share": [ - 2951 + 2950 ], "deaths": [ 41 ], "dpr": [ - 2951 + 2950 ], "entry_rate": [ - 2951 + 2950 ], "flash_assists": [ 41 ], "hltv_rating": [ - 2951 + 2950 ], "kast_pct": [ - 2951 + 2950 ], "kills": [ 41 ], "kpr": [ - 2951 + 2950 ], "lineup_id": [ - 5001 + 5000 ], "match": [ - 2776 + 2775 ], "match_id": [ - 5001 + 5000 ], "match_map": [ - 2614 + 2613 ], "match_map_id": [ - 5001 + 5000 ], "open_deaths": [ 41 @@ -127047,7 +127039,7 @@ export default { 41 ], "player": [ - 3914 + 3913 ], "role": [ 82 @@ -127056,10 +127048,10 @@ export default { 41 ], "steam_id": [ - 260 + 259 ], "support_idx": [ - 2951 + 2950 ], "total_kills": [ 41 @@ -127079,46 +127071,46 @@ export default { }, "v_player_match_map_roles_max_fields": { "adr": [ - 2950 + 2949 ], "awp_kills": [ 40 ], "awp_share": [ - 2950 + 2949 ], "deaths": [ 40 ], "dpr": [ - 2950 + 2949 ], "entry_rate": [ - 2950 + 2949 ], "flash_assists": [ 40 ], "hltv_rating": [ - 2950 + 2949 ], "kast_pct": [ - 2950 + 2949 ], "kills": [ 40 ], "kpr": [ - 2950 + 2949 ], "lineup_id": [ - 4999 + 4998 ], "match_id": [ - 4999 + 4998 ], "match_map_id": [ - 4999 + 4998 ], "open_deaths": [ 40 @@ -127136,10 +127128,10 @@ export default { 40 ], "steam_id": [ - 258 + 257 ], "support_idx": [ - 2950 + 2949 ], "total_kills": [ 40 @@ -127159,46 +127151,46 @@ export default { }, "v_player_match_map_roles_min_fields": { "adr": [ - 2950 + 2949 ], "awp_kills": [ 40 ], "awp_share": [ - 2950 + 2949 ], "deaths": [ 40 ], "dpr": [ - 2950 + 2949 ], "entry_rate": [ - 2950 + 2949 ], "flash_assists": [ 40 ], "hltv_rating": [ - 2950 + 2949 ], "kast_pct": [ - 2950 + 2949 ], "kills": [ 40 ], "kpr": [ - 2950 + 2949 ], "lineup_id": [ - 4999 + 4998 ], "match_id": [ - 4999 + 4998 ], "match_map_id": [ - 4999 + 4998 ], "open_deaths": [ 40 @@ -127216,10 +127208,10 @@ export default { 40 ], "steam_id": [ - 258 + 257 ], "support_idx": [ - 2950 + 2949 ], "total_kills": [ 40 @@ -127239,88 +127231,88 @@ export default { }, "v_player_match_map_roles_order_by": { "adr": [ - 2952 + 2951 ], "awp_kills": [ - 2952 + 2951 ], "awp_share": [ - 2952 + 2951 ], "deaths": [ - 2952 + 2951 ], "dpr": [ - 2952 + 2951 ], "entry_rate": [ - 2952 + 2951 ], "flash_assists": [ - 2952 + 2951 ], "hltv_rating": [ - 2952 + 2951 ], "kast_pct": [ - 2952 + 2951 ], "kills": [ - 2952 + 2951 ], "kpr": [ - 2952 + 2951 ], "lineup_id": [ - 2952 + 2951 ], "match": [ - 2787 + 2786 ], "match_id": [ - 2952 + 2951 ], "match_map": [ - 2625 + 2624 ], "match_map_id": [ - 2952 + 2951 ], "open_deaths": [ - 2952 + 2951 ], "open_kills": [ - 2952 + 2951 ], "opening_attempts": [ - 2952 + 2951 ], "player": [ - 3923 + 3922 ], "role": [ - 2952 + 2951 ], "rounds": [ - 2952 + 2951 ], "steam_id": [ - 2952 + 2951 ], "support_idx": [ - 2952 + 2951 ], "total_kills": [ - 2952 + 2951 ], "trade_kill_successes": [ - 2952 + 2951 ], "traded_death_successes": [ - 2952 + 2951 ], "util_damage": [ - 2952 + 2951 ], "__typename": [ 80 @@ -127533,10 +127525,10 @@ export default { }, "v_player_match_map_roles_stream_cursor_input": { "initial_value": [ - 5531 + 5530 ], "ordering": [ - 314 + 313 ], "__typename": [ 80 @@ -127544,46 +127536,46 @@ export default { }, "v_player_match_map_roles_stream_cursor_value_input": { "adr": [ - 2950 + 2949 ], "awp_kills": [ 40 ], "awp_share": [ - 2950 + 2949 ], "deaths": [ 40 ], "dpr": [ - 2950 + 2949 ], "entry_rate": [ - 2950 + 2949 ], "flash_assists": [ 40 ], "hltv_rating": [ - 2950 + 2949 ], "kast_pct": [ - 2950 + 2949 ], "kills": [ 40 ], "kpr": [ - 2950 + 2949 ], "lineup_id": [ - 4999 + 4998 ], "match_id": [ - 4999 + 4998 ], "match_map_id": [ - 4999 + 4998 ], "open_deaths": [ 40 @@ -127601,10 +127593,10 @@ export default { 40 ], "steam_id": [ - 258 + 257 ], "support_idx": [ - 2950 + 2949 ], "total_kills": [ 40 @@ -127624,37 +127616,37 @@ export default { }, "v_player_match_map_roles_sum_fields": { "adr": [ - 2950 + 2949 ], "awp_kills": [ 40 ], "awp_share": [ - 2950 + 2949 ], "deaths": [ 40 ], "dpr": [ - 2950 + 2949 ], "entry_rate": [ - 2950 + 2949 ], "flash_assists": [ 40 ], "hltv_rating": [ - 2950 + 2949 ], "kast_pct": [ - 2950 + 2949 ], "kills": [ 40 ], "kpr": [ - 2950 + 2949 ], "open_deaths": [ 40 @@ -127669,10 +127661,10 @@ export default { 40 ], "steam_id": [ - 258 + 257 ], "support_idx": [ - 2950 + 2949 ], "total_kills": [ 40 @@ -127905,25 +127897,25 @@ export default { 40 ], "map": [ - 2285 + 2284 ], "map_id": [ - 4999 + 4998 ], "match": [ - 2767 + 2766 ], "match_created_at": [ - 4499 + 4498 ], "match_id": [ - 4999 + 4998 ], "match_result": [ 80 ], "player_steam_id": [ - 258 + 257 ], "source": [ 80 @@ -127937,10 +127929,10 @@ export default { }, "v_player_match_performance_aggregate": { "aggregate": [ - 5538 + 5537 ], "nodes": [ - 5536 + 5535 ], "__typename": [ 80 @@ -127948,13 +127940,13 @@ export default { }, "v_player_match_performance_aggregate_fields": { "avg": [ - 5539 + 5538 ], "count": [ 40, { "columns": [ - 5544, + 5543, "[v_player_match_performance_select_column!]" ], "distinct": [ @@ -127963,31 +127955,31 @@ export default { } ], "max": [ - 5541 + 5540 ], "min": [ - 5542 + 5541 ], "stddev": [ - 5545 + 5544 ], "stddev_pop": [ - 5546 + 5545 ], "stddev_samp": [ - 5547 + 5546 ], "sum": [ - 5550 + 5549 ], "var_pop": [ - 5551 + 5550 ], "var_samp": [ - 5552 + 5551 ], "variance": [ - 5553 + 5552 ], "__typename": [ 80 @@ -128012,13 +128004,13 @@ export default { }, "v_player_match_performance_bool_exp": { "_and": [ - 5540 + 5539 ], "_not": [ - 5540 + 5539 ], "_or": [ - 5540 + 5539 ], "assists": [ 41 @@ -128030,25 +128022,25 @@ export default { 41 ], "map": [ - 2294 + 2293 ], "map_id": [ - 5001 + 5000 ], "match": [ - 2776 + 2775 ], "match_created_at": [ - 4500 + 4499 ], "match_id": [ - 5001 + 5000 ], "match_result": [ 82 ], "player_steam_id": [ - 260 + 259 ], "source": [ 82 @@ -128071,19 +128063,19 @@ export default { 40 ], "map_id": [ - 4999 + 4998 ], "match_created_at": [ - 4499 + 4498 ], "match_id": [ - 4999 + 4998 ], "match_result": [ 80 ], "player_steam_id": [ - 258 + 257 ], "source": [ 80 @@ -128106,19 +128098,19 @@ export default { 40 ], "map_id": [ - 4999 + 4998 ], "match_created_at": [ - 4499 + 4498 ], "match_id": [ - 4999 + 4998 ], "match_result": [ 80 ], "player_steam_id": [ - 258 + 257 ], "source": [ 80 @@ -128132,40 +128124,40 @@ export default { }, "v_player_match_performance_order_by": { "assists": [ - 2952 + 2951 ], "deaths": [ - 2952 + 2951 ], "kills": [ - 2952 + 2951 ], "map": [ - 2304 + 2303 ], "map_id": [ - 2952 + 2951 ], "match": [ - 2787 + 2786 ], "match_created_at": [ - 2952 + 2951 ], "match_id": [ - 2952 + 2951 ], "match_result": [ - 2952 + 2951 ], "player_steam_id": [ - 2952 + 2951 ], "source": [ - 2952 + 2951 ], "type": [ - 2952 + 2951 ], "__typename": [ 80 @@ -128225,10 +128217,10 @@ export default { }, "v_player_match_performance_stream_cursor_input": { "initial_value": [ - 5549 + 5548 ], "ordering": [ - 314 + 313 ], "__typename": [ 80 @@ -128245,19 +128237,19 @@ export default { 40 ], "map_id": [ - 4999 + 4998 ], "match_created_at": [ - 4499 + 4498 ], "match_id": [ - 4999 + 4998 ], "match_result": [ 80 ], "player_steam_id": [ - 258 + 257 ], "source": [ 80 @@ -128280,7 +128272,7 @@ export default { 40 ], "player_steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -128339,34 +128331,34 @@ export default { }, "v_player_match_rating": { "adr": [ - 2950 + 2949 ], "dpr": [ - 2950 + 2949 ], "hltv_rating": [ - 2950 + 2949 ], "kast_pct": [ - 2950 + 2949 ], "kpr": [ - 2950 + 2949 ], "match": [ - 2767 + 2766 ], "match_id": [ - 4999 + 4998 ], "player": [ - 3910 + 3909 ], "rounds_played": [ 40 ], "steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -128374,10 +128366,10 @@ export default { }, "v_player_match_rating_aggregate": { "aggregate": [ - 5556 + 5555 ], "nodes": [ - 5554 + 5553 ], "__typename": [ 80 @@ -128385,13 +128377,13 @@ export default { }, "v_player_match_rating_aggregate_fields": { "avg": [ - 5557 + 5556 ], "count": [ 40, { "columns": [ - 5562, + 5561, "[v_player_match_rating_select_column!]" ], "distinct": [ @@ -128400,31 +128392,31 @@ export default { } ], "max": [ - 5559 + 5558 ], "min": [ - 5560 + 5559 ], "stddev": [ - 5563 + 5562 ], "stddev_pop": [ - 5564 + 5563 ], "stddev_samp": [ - 5565 + 5564 ], "sum": [ - 5568 + 5567 ], "var_pop": [ - 5569 + 5568 ], "var_samp": [ - 5570 + 5569 ], "variance": [ - 5571 + 5570 ], "__typename": [ 80 @@ -128458,43 +128450,43 @@ export default { }, "v_player_match_rating_bool_exp": { "_and": [ - 5558 + 5557 ], "_not": [ - 5558 + 5557 ], "_or": [ - 5558 + 5557 ], "adr": [ - 2951 + 2950 ], "dpr": [ - 2951 + 2950 ], "hltv_rating": [ - 2951 + 2950 ], "kast_pct": [ - 2951 + 2950 ], "kpr": [ - 2951 + 2950 ], "match": [ - 2776 + 2775 ], "match_id": [ - 5001 + 5000 ], "player": [ - 3914 + 3913 ], "rounds_played": [ 41 ], "steam_id": [ - 260 + 259 ], "__typename": [ 80 @@ -128502,28 +128494,28 @@ export default { }, "v_player_match_rating_max_fields": { "adr": [ - 2950 + 2949 ], "dpr": [ - 2950 + 2949 ], "hltv_rating": [ - 2950 + 2949 ], "kast_pct": [ - 2950 + 2949 ], "kpr": [ - 2950 + 2949 ], "match_id": [ - 4999 + 4998 ], "rounds_played": [ 40 ], "steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -128531,28 +128523,28 @@ export default { }, "v_player_match_rating_min_fields": { "adr": [ - 2950 + 2949 ], "dpr": [ - 2950 + 2949 ], "hltv_rating": [ - 2950 + 2949 ], "kast_pct": [ - 2950 + 2949 ], "kpr": [ - 2950 + 2949 ], "match_id": [ - 4999 + 4998 ], "rounds_played": [ 40 ], "steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -128560,34 +128552,34 @@ export default { }, "v_player_match_rating_order_by": { "adr": [ - 2952 + 2951 ], "dpr": [ - 2952 + 2951 ], "hltv_rating": [ - 2952 + 2951 ], "kast_pct": [ - 2952 + 2951 ], "kpr": [ - 2952 + 2951 ], "match": [ - 2787 + 2786 ], "match_id": [ - 2952 + 2951 ], "player": [ - 3923 + 3922 ], "rounds_played": [ - 2952 + 2951 ], "steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -128674,10 +128666,10 @@ export default { }, "v_player_match_rating_stream_cursor_input": { "initial_value": [ - 5567 + 5566 ], "ordering": [ - 314 + 313 ], "__typename": [ 80 @@ -128685,28 +128677,28 @@ export default { }, "v_player_match_rating_stream_cursor_value_input": { "adr": [ - 2950 + 2949 ], "dpr": [ - 2950 + 2949 ], "hltv_rating": [ - 2950 + 2949 ], "kast_pct": [ - 2950 + 2949 ], "kpr": [ - 2950 + 2949 ], "match_id": [ - 4999 + 4998 ], "rounds_played": [ 40 ], "steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -128714,25 +128706,25 @@ export default { }, "v_player_match_rating_sum_fields": { "adr": [ - 2950 + 2949 ], "dpr": [ - 2950 + 2949 ], "hltv_rating": [ - 2950 + 2949 ], "kast_pct": [ - 2950 + 2949 ], "kpr": [ - 2950 + 2949 ], "rounds_played": [ 40 ], "steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -128818,13 +128810,13 @@ export default { }, "v_player_multi_kills": { "attacker_steam_id": [ - 258 + 257 ], "kills": [ - 258 + 257 ], "match_id": [ - 4999 + 4998 ], "round": [ 40 @@ -128835,10 +128827,10 @@ export default { }, "v_player_multi_kills_aggregate": { "aggregate": [ - 5576 + 5575 ], "nodes": [ - 5572 + 5571 ], "__typename": [ 80 @@ -128846,7 +128838,7 @@ export default { }, "v_player_multi_kills_aggregate_bool_exp": { "count": [ - 5575 + 5574 ], "__typename": [ 80 @@ -128854,13 +128846,13 @@ export default { }, "v_player_multi_kills_aggregate_bool_exp_count": { "arguments": [ - 5588 + 5587 ], "distinct": [ 5 ], "filter": [ - 5581 + 5580 ], "predicate": [ 41 @@ -128871,13 +128863,13 @@ export default { }, "v_player_multi_kills_aggregate_fields": { "avg": [ - 5579 + 5578 ], "count": [ 40, { "columns": [ - 5588, + 5587, "[v_player_multi_kills_select_column!]" ], "distinct": [ @@ -128886,31 +128878,31 @@ export default { } ], "max": [ - 5583 + 5582 ], "min": [ - 5585 + 5584 ], "stddev": [ - 5589 + 5588 ], "stddev_pop": [ - 5591 + 5590 ], "stddev_samp": [ - 5593 + 5592 ], "sum": [ - 5597 + 5596 ], "var_pop": [ - 5599 + 5598 ], "var_samp": [ - 5601 + 5600 ], "variance": [ - 5603 + 5602 ], "__typename": [ 80 @@ -128918,37 +128910,37 @@ export default { }, "v_player_multi_kills_aggregate_order_by": { "avg": [ - 5580 + 5579 ], "count": [ - 2952 + 2951 ], "max": [ - 5584 + 5583 ], "min": [ - 5586 + 5585 ], "stddev": [ - 5590 + 5589 ], "stddev_pop": [ - 5592 + 5591 ], "stddev_samp": [ - 5594 + 5593 ], "sum": [ - 5598 + 5597 ], "var_pop": [ - 5600 + 5599 ], "var_samp": [ - 5602 + 5601 ], "variance": [ - 5604 + 5603 ], "__typename": [ 80 @@ -128956,7 +128948,7 @@ export default { }, "v_player_multi_kills_arr_rel_insert_input": { "data": [ - 5582 + 5581 ], "__typename": [ 80 @@ -128978,13 +128970,13 @@ export default { }, "v_player_multi_kills_avg_order_by": { "attacker_steam_id": [ - 2952 + 2951 ], "kills": [ - 2952 + 2951 ], "round": [ - 2952 + 2951 ], "__typename": [ 80 @@ -128992,22 +128984,22 @@ export default { }, "v_player_multi_kills_bool_exp": { "_and": [ - 5581 + 5580 ], "_not": [ - 5581 + 5580 ], "_or": [ - 5581 + 5580 ], "attacker_steam_id": [ - 260 + 259 ], "kills": [ - 260 + 259 ], "match_id": [ - 5001 + 5000 ], "round": [ 41 @@ -129018,13 +129010,13 @@ export default { }, "v_player_multi_kills_insert_input": { "attacker_steam_id": [ - 258 + 257 ], "kills": [ - 258 + 257 ], "match_id": [ - 4999 + 4998 ], "round": [ 40 @@ -129035,13 +129027,13 @@ export default { }, "v_player_multi_kills_max_fields": { "attacker_steam_id": [ - 258 + 257 ], "kills": [ - 258 + 257 ], "match_id": [ - 4999 + 4998 ], "round": [ 40 @@ -129052,16 +129044,16 @@ export default { }, "v_player_multi_kills_max_order_by": { "attacker_steam_id": [ - 2952 + 2951 ], "kills": [ - 2952 + 2951 ], "match_id": [ - 2952 + 2951 ], "round": [ - 2952 + 2951 ], "__typename": [ 80 @@ -129069,13 +129061,13 @@ export default { }, "v_player_multi_kills_min_fields": { "attacker_steam_id": [ - 258 + 257 ], "kills": [ - 258 + 257 ], "match_id": [ - 4999 + 4998 ], "round": [ 40 @@ -129086,16 +129078,16 @@ export default { }, "v_player_multi_kills_min_order_by": { "attacker_steam_id": [ - 2952 + 2951 ], "kills": [ - 2952 + 2951 ], "match_id": [ - 2952 + 2951 ], "round": [ - 2952 + 2951 ], "__typename": [ 80 @@ -129103,16 +129095,16 @@ export default { }, "v_player_multi_kills_order_by": { "attacker_steam_id": [ - 2952 + 2951 ], "kills": [ - 2952 + 2951 ], "match_id": [ - 2952 + 2951 ], "round": [ - 2952 + 2951 ], "__typename": [ 80 @@ -129135,13 +129127,13 @@ export default { }, "v_player_multi_kills_stddev_order_by": { "attacker_steam_id": [ - 2952 + 2951 ], "kills": [ - 2952 + 2951 ], "round": [ - 2952 + 2951 ], "__typename": [ 80 @@ -129163,13 +129155,13 @@ export default { }, "v_player_multi_kills_stddev_pop_order_by": { "attacker_steam_id": [ - 2952 + 2951 ], "kills": [ - 2952 + 2951 ], "round": [ - 2952 + 2951 ], "__typename": [ 80 @@ -129191,13 +129183,13 @@ export default { }, "v_player_multi_kills_stddev_samp_order_by": { "attacker_steam_id": [ - 2952 + 2951 ], "kills": [ - 2952 + 2951 ], "round": [ - 2952 + 2951 ], "__typename": [ 80 @@ -129205,10 +129197,10 @@ export default { }, "v_player_multi_kills_stream_cursor_input": { "initial_value": [ - 5596 + 5595 ], "ordering": [ - 314 + 313 ], "__typename": [ 80 @@ -129216,13 +129208,13 @@ export default { }, "v_player_multi_kills_stream_cursor_value_input": { "attacker_steam_id": [ - 258 + 257 ], "kills": [ - 258 + 257 ], "match_id": [ - 4999 + 4998 ], "round": [ 40 @@ -129233,10 +129225,10 @@ export default { }, "v_player_multi_kills_sum_fields": { "attacker_steam_id": [ - 258 + 257 ], "kills": [ - 258 + 257 ], "round": [ 40 @@ -129247,13 +129239,13 @@ export default { }, "v_player_multi_kills_sum_order_by": { "attacker_steam_id": [ - 2952 + 2951 ], "kills": [ - 2952 + 2951 ], "round": [ - 2952 + 2951 ], "__typename": [ 80 @@ -129275,13 +129267,13 @@ export default { }, "v_player_multi_kills_var_pop_order_by": { "attacker_steam_id": [ - 2952 + 2951 ], "kills": [ - 2952 + 2951 ], "round": [ - 2952 + 2951 ], "__typename": [ 80 @@ -129303,13 +129295,13 @@ export default { }, "v_player_multi_kills_var_samp_order_by": { "attacker_steam_id": [ - 2952 + 2951 ], "kills": [ - 2952 + 2951 ], "round": [ - 2952 + 2951 ], "__typename": [ 80 @@ -129331,13 +129323,13 @@ export default { }, "v_player_multi_kills_variance_order_by": { "attacker_steam_id": [ - 2952 + 2951 ], "kills": [ - 2952 + 2951 ], "round": [ - 2952 + 2951 ], "__typename": [ 80 @@ -129345,13 +129337,13 @@ export default { }, "v_player_weapon_damage": { "damage": [ - 258 + 257 ], "hits": [ - 258 + 257 ], "player_steam_id": [ - 258 + 257 ], "source": [ 80 @@ -129368,10 +129360,10 @@ export default { }, "v_player_weapon_damage_aggregate": { "aggregate": [ - 5607 + 5606 ], "nodes": [ - 5605 + 5604 ], "__typename": [ 80 @@ -129379,13 +129371,13 @@ export default { }, "v_player_weapon_damage_aggregate_fields": { "avg": [ - 5608 + 5607 ], "count": [ 40, { "columns": [ - 5613, + 5612, "[v_player_weapon_damage_select_column!]" ], "distinct": [ @@ -129394,31 +129386,31 @@ export default { } ], "max": [ - 5610 + 5609 ], "min": [ - 5611 + 5610 ], "stddev": [ - 5614 + 5613 ], "stddev_pop": [ - 5615 + 5614 ], "stddev_samp": [ - 5616 + 5615 ], "sum": [ - 5619 + 5618 ], "var_pop": [ - 5620 + 5619 ], "var_samp": [ - 5621 + 5620 ], "variance": [ - 5622 + 5621 ], "__typename": [ 80 @@ -129440,22 +129432,22 @@ export default { }, "v_player_weapon_damage_bool_exp": { "_and": [ - 5609 + 5608 ], "_not": [ - 5609 + 5608 ], "_or": [ - 5609 + 5608 ], "damage": [ - 260 + 259 ], "hits": [ - 260 + 259 ], "player_steam_id": [ - 260 + 259 ], "source": [ 82 @@ -129472,13 +129464,13 @@ export default { }, "v_player_weapon_damage_max_fields": { "damage": [ - 258 + 257 ], "hits": [ - 258 + 257 ], "player_steam_id": [ - 258 + 257 ], "source": [ 80 @@ -129495,13 +129487,13 @@ export default { }, "v_player_weapon_damage_min_fields": { "damage": [ - 258 + 257 ], "hits": [ - 258 + 257 ], "player_steam_id": [ - 258 + 257 ], "source": [ 80 @@ -129518,22 +129510,22 @@ export default { }, "v_player_weapon_damage_order_by": { "damage": [ - 2952 + 2951 ], "hits": [ - 2952 + 2951 ], "player_steam_id": [ - 2952 + 2951 ], "source": [ - 2952 + 2951 ], "type": [ - 2952 + 2951 ], "with": [ - 2952 + 2951 ], "__typename": [ 80 @@ -129584,10 +129576,10 @@ export default { }, "v_player_weapon_damage_stream_cursor_input": { "initial_value": [ - 5618 + 5617 ], "ordering": [ - 314 + 313 ], "__typename": [ 80 @@ -129595,13 +129587,13 @@ export default { }, "v_player_weapon_damage_stream_cursor_value_input": { "damage": [ - 258 + 257 ], "hits": [ - 258 + 257 ], "player_steam_id": [ - 258 + 257 ], "source": [ 80 @@ -129618,13 +129610,13 @@ export default { }, "v_player_weapon_damage_sum_fields": { "damage": [ - 258 + 257 ], "hits": [ - 258 + 257 ], "player_steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -129674,13 +129666,13 @@ export default { }, "v_player_weapon_kills": { "kill_count": [ - 258 + 257 ], "player_steam_id": [ - 258 + 257 ], "rounds": [ - 258 + 257 ], "source": [ 80 @@ -129697,10 +129689,10 @@ export default { }, "v_player_weapon_kills_aggregate": { "aggregate": [ - 5625 + 5624 ], "nodes": [ - 5623 + 5622 ], "__typename": [ 80 @@ -129708,13 +129700,13 @@ export default { }, "v_player_weapon_kills_aggregate_fields": { "avg": [ - 5626 + 5625 ], "count": [ 40, { "columns": [ - 5631, + 5630, "[v_player_weapon_kills_select_column!]" ], "distinct": [ @@ -129723,31 +129715,31 @@ export default { } ], "max": [ - 5628 + 5627 ], "min": [ - 5629 + 5628 ], "stddev": [ - 5632 + 5631 ], "stddev_pop": [ - 5633 + 5632 ], "stddev_samp": [ - 5634 + 5633 ], "sum": [ - 5637 + 5636 ], "var_pop": [ - 5638 + 5637 ], "var_samp": [ - 5639 + 5638 ], "variance": [ - 5640 + 5639 ], "__typename": [ 80 @@ -129769,22 +129761,22 @@ export default { }, "v_player_weapon_kills_bool_exp": { "_and": [ - 5627 + 5626 ], "_not": [ - 5627 + 5626 ], "_or": [ - 5627 + 5626 ], "kill_count": [ - 260 + 259 ], "player_steam_id": [ - 260 + 259 ], "rounds": [ - 260 + 259 ], "source": [ 82 @@ -129801,13 +129793,13 @@ export default { }, "v_player_weapon_kills_max_fields": { "kill_count": [ - 258 + 257 ], "player_steam_id": [ - 258 + 257 ], "rounds": [ - 258 + 257 ], "source": [ 80 @@ -129824,13 +129816,13 @@ export default { }, "v_player_weapon_kills_min_fields": { "kill_count": [ - 258 + 257 ], "player_steam_id": [ - 258 + 257 ], "rounds": [ - 258 + 257 ], "source": [ 80 @@ -129847,22 +129839,22 @@ export default { }, "v_player_weapon_kills_order_by": { "kill_count": [ - 2952 + 2951 ], "player_steam_id": [ - 2952 + 2951 ], "rounds": [ - 2952 + 2951 ], "source": [ - 2952 + 2951 ], "type": [ - 2952 + 2951 ], "with": [ - 2952 + 2951 ], "__typename": [ 80 @@ -129913,10 +129905,10 @@ export default { }, "v_player_weapon_kills_stream_cursor_input": { "initial_value": [ - 5636 + 5635 ], "ordering": [ - 314 + 313 ], "__typename": [ 80 @@ -129924,13 +129916,13 @@ export default { }, "v_player_weapon_kills_stream_cursor_value_input": { "kill_count": [ - 258 + 257 ], "player_steam_id": [ - 258 + 257 ], "rounds": [ - 258 + 257 ], "source": [ 80 @@ -129947,13 +129939,13 @@ export default { }, "v_player_weapon_kills_sum_fields": { "kill_count": [ - 258 + 257 ], "player_steam_id": [ - 258 + 257 ], "rounds": [ - 258 + 257 ], "__typename": [ 80 @@ -130006,16 +129998,16 @@ export default { 5 ], "id": [ - 4999 + 4998 ], "label": [ 80 ], "map_pool": [ - 2266 + 2265 ], "map_pool_id": [ - 4999 + 4998 ], "name": [ 80 @@ -130038,10 +130030,10 @@ export default { }, "v_pool_maps_aggregate": { "aggregate": [ - 5647 + 5646 ], "nodes": [ - 5641 + 5640 ], "__typename": [ 80 @@ -130049,13 +130041,13 @@ export default { }, "v_pool_maps_aggregate_bool_exp": { "bool_and": [ - 5644 + 5643 ], "bool_or": [ - 5645 + 5644 ], "count": [ - 5646 + 5645 ], "__typename": [ 80 @@ -130063,13 +130055,13 @@ export default { }, "v_pool_maps_aggregate_bool_exp_bool_and": { "arguments": [ - 5659 + 5658 ], "distinct": [ 5 ], "filter": [ - 5650 + 5649 ], "predicate": [ 6 @@ -130080,13 +130072,13 @@ export default { }, "v_pool_maps_aggregate_bool_exp_bool_or": { "arguments": [ - 5660 + 5659 ], "distinct": [ 5 ], "filter": [ - 5650 + 5649 ], "predicate": [ 6 @@ -130097,13 +130089,13 @@ export default { }, "v_pool_maps_aggregate_bool_exp_count": { "arguments": [ - 5658 + 5657 ], "distinct": [ 5 ], "filter": [ - 5650 + 5649 ], "predicate": [ 41 @@ -130117,7 +130109,7 @@ export default { 40, { "columns": [ - 5658, + 5657, "[v_pool_maps_select_column!]" ], "distinct": [ @@ -130126,10 +130118,10 @@ export default { } ], "max": [ - 5652 + 5651 ], "min": [ - 5654 + 5653 ], "__typename": [ 80 @@ -130137,13 +130129,13 @@ export default { }, "v_pool_maps_aggregate_order_by": { "count": [ - 2952 + 2951 ], "max": [ - 5653 + 5652 ], "min": [ - 5655 + 5654 ], "__typename": [ 80 @@ -130151,7 +130143,7 @@ export default { }, "v_pool_maps_arr_rel_insert_input": { "data": [ - 5651 + 5650 ], "__typename": [ 80 @@ -130159,28 +130151,28 @@ export default { }, "v_pool_maps_bool_exp": { "_and": [ - 5650 + 5649 ], "_not": [ - 5650 + 5649 ], "_or": [ - 5650 + 5649 ], "active_pool": [ 6 ], "id": [ - 5001 + 5000 ], "label": [ 82 ], "map_pool": [ - 2269 + 2268 ], "map_pool_id": [ - 5001 + 5000 ], "name": [ 82 @@ -130206,16 +130198,16 @@ export default { 5 ], "id": [ - 4999 + 4998 ], "label": [ 80 ], "map_pool": [ - 2275 + 2274 ], "map_pool_id": [ - 4999 + 4998 ], "name": [ 80 @@ -130238,13 +130230,13 @@ export default { }, "v_pool_maps_max_fields": { "id": [ - 4999 + 4998 ], "label": [ 80 ], "map_pool_id": [ - 4999 + 4998 ], "name": [ 80 @@ -130267,28 +130259,28 @@ export default { }, "v_pool_maps_max_order_by": { "id": [ - 2952 + 2951 ], "label": [ - 2952 + 2951 ], "map_pool_id": [ - 2952 + 2951 ], "name": [ - 2952 + 2951 ], "patch": [ - 2952 + 2951 ], "poster": [ - 2952 + 2951 ], "type": [ - 2952 + 2951 ], "workshop_map_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -130296,13 +130288,13 @@ export default { }, "v_pool_maps_min_fields": { "id": [ - 4999 + 4998 ], "label": [ 80 ], "map_pool_id": [ - 4999 + 4998 ], "name": [ 80 @@ -130325,28 +130317,28 @@ export default { }, "v_pool_maps_min_order_by": { "id": [ - 2952 + 2951 ], "label": [ - 2952 + 2951 ], "map_pool_id": [ - 2952 + 2951 ], "name": [ - 2952 + 2951 ], "patch": [ - 2952 + 2951 ], "poster": [ - 2952 + 2951 ], "type": [ - 2952 + 2951 ], "workshop_map_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -130357,7 +130349,7 @@ export default { 40 ], "returning": [ - 5641 + 5640 ], "__typename": [ 80 @@ -130365,34 +130357,34 @@ export default { }, "v_pool_maps_order_by": { "active_pool": [ - 2952 + 2951 ], "id": [ - 2952 + 2951 ], "label": [ - 2952 + 2951 ], "map_pool": [ - 2277 + 2276 ], "map_pool_id": [ - 2952 + 2951 ], "name": [ - 2952 + 2951 ], "patch": [ - 2952 + 2951 ], "poster": [ - 2952 + 2951 ], "type": [ - 2952 + 2951 ], "workshop_map_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -130406,13 +130398,13 @@ export default { 5 ], "id": [ - 4999 + 4998 ], "label": [ 80 ], "map_pool_id": [ - 4999 + 4998 ], "name": [ 80 @@ -130435,10 +130427,10 @@ export default { }, "v_pool_maps_stream_cursor_input": { "initial_value": [ - 5663 + 5662 ], "ordering": [ - 314 + 313 ], "__typename": [ 80 @@ -130449,13 +130441,13 @@ export default { 5 ], "id": [ - 4999 + 4998 ], "label": [ 80 ], "map_pool_id": [ - 4999 + 4998 ], "name": [ 80 @@ -130478,10 +130470,10 @@ export default { }, "v_pool_maps_updates": { "_set": [ - 5661 + 5660 ], "where": [ - 5650 + 5649 ], "__typename": [ 80 @@ -130506,10 +130498,10 @@ export default { }, "v_steam_account_pool_status_aggregate": { "aggregate": [ - 5667 + 5666 ], "nodes": [ - 5665 + 5664 ], "__typename": [ 80 @@ -130517,13 +130509,13 @@ export default { }, "v_steam_account_pool_status_aggregate_fields": { "avg": [ - 5668 + 5667 ], "count": [ 40, { "columns": [ - 5673, + 5672, "[v_steam_account_pool_status_select_column!]" ], "distinct": [ @@ -130532,31 +130524,31 @@ export default { } ], "max": [ - 5670 + 5669 ], "min": [ - 5671 + 5670 ], "stddev": [ - 5674 + 5673 ], "stddev_pop": [ - 5675 + 5674 ], "stddev_samp": [ - 5676 + 5675 ], "sum": [ - 5679 + 5678 ], "var_pop": [ - 5680 + 5679 ], "var_samp": [ - 5681 + 5680 ], "variance": [ - 5682 + 5681 ], "__typename": [ 80 @@ -130581,13 +130573,13 @@ export default { }, "v_steam_account_pool_status_bool_exp": { "_and": [ - 5669 + 5668 ], "_not": [ - 5669 + 5668 ], "_or": [ - 5669 + 5668 ], "busy_accounts": [ 41 @@ -130641,16 +130633,16 @@ export default { }, "v_steam_account_pool_status_order_by": { "busy_accounts": [ - 2952 + 2951 ], "free_accounts": [ - 2952 + 2951 ], "id": [ - 2952 + 2951 ], "total_accounts": [ - 2952 + 2951 ], "__typename": [ 80 @@ -130710,10 +130702,10 @@ export default { }, "v_steam_account_pool_status_stream_cursor_input": { "initial_value": [ - 5678 + 5677 ], "ordering": [ - 314 + 313 ], "__typename": [ 80 @@ -130812,7 +130804,7 @@ export default { 40 ], "avg_faceit_level": [ - 1670 + 1669 ], "avg_premier": [ 40 @@ -130824,13 +130816,13 @@ export default { 40 ], "roster_size": [ - 258 + 257 ], "team": [ - 4452 + 4451 ], "team_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -130838,10 +130830,10 @@ export default { }, "v_team_ranks_aggregate": { "aggregate": [ - 5685 + 5684 ], "nodes": [ - 5683 + 5682 ], "__typename": [ 80 @@ -130849,13 +130841,13 @@ export default { }, "v_team_ranks_aggregate_fields": { "avg": [ - 5686 + 5685 ], "count": [ 40, { "columns": [ - 5693, + 5692, "[v_team_ranks_select_column!]" ], "distinct": [ @@ -130864,31 +130856,31 @@ export default { } ], "max": [ - 5689 + 5688 ], "min": [ - 5690 + 5689 ], "stddev": [ - 5694 + 5693 ], "stddev_pop": [ - 5695 + 5694 ], "stddev_samp": [ - 5696 + 5695 ], "sum": [ - 5699 + 5698 ], "var_pop": [ - 5700 + 5699 ], "var_samp": [ - 5701 + 5700 ], "variance": [ - 5702 + 5701 ], "__typename": [ 80 @@ -130922,13 +130914,13 @@ export default { }, "v_team_ranks_bool_exp": { "_and": [ - 5687 + 5686 ], "_not": [ - 5687 + 5686 ], "_or": [ - 5687 + 5686 ], "avg_elo": [ 41 @@ -130937,7 +130929,7 @@ export default { 41 ], "avg_faceit_level": [ - 1671 + 1670 ], "avg_premier": [ 41 @@ -130949,13 +130941,13 @@ export default { 41 ], "roster_size": [ - 260 + 259 ], "team": [ - 4463 + 4462 ], "team_id": [ - 5001 + 5000 ], "__typename": [ 80 @@ -130969,7 +130961,7 @@ export default { 40 ], "avg_faceit_level": [ - 1670 + 1669 ], "avg_premier": [ 40 @@ -130981,13 +130973,13 @@ export default { 40 ], "roster_size": [ - 258 + 257 ], "team": [ - 4472 + 4471 ], "team_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -131001,7 +130993,7 @@ export default { 40 ], "avg_faceit_level": [ - 1670 + 1669 ], "avg_premier": [ 40 @@ -131013,10 +131005,10 @@ export default { 40 ], "roster_size": [ - 258 + 257 ], "team_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -131030,7 +131022,7 @@ export default { 40 ], "avg_faceit_level": [ - 1670 + 1669 ], "avg_premier": [ 40 @@ -131042,10 +131034,10 @@ export default { 40 ], "roster_size": [ - 258 + 257 ], "team_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -131053,7 +131045,7 @@ export default { }, "v_team_ranks_obj_rel_insert_input": { "data": [ - 5688 + 5687 ], "__typename": [ 80 @@ -131061,31 +131053,31 @@ export default { }, "v_team_ranks_order_by": { "avg_elo": [ - 2952 + 2951 ], "avg_faceit_elo": [ - 2952 + 2951 ], "avg_faceit_level": [ - 2952 + 2951 ], "avg_premier": [ - 2952 + 2951 ], "max_elo": [ - 2952 + 2951 ], "min_elo": [ - 2952 + 2951 ], "roster_size": [ - 2952 + 2951 ], "team": [ - 4474 + 4473 ], "team_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -131172,10 +131164,10 @@ export default { }, "v_team_ranks_stream_cursor_input": { "initial_value": [ - 5698 + 5697 ], "ordering": [ - 314 + 313 ], "__typename": [ 80 @@ -131189,7 +131181,7 @@ export default { 40 ], "avg_faceit_level": [ - 1670 + 1669 ], "avg_premier": [ 40 @@ -131201,10 +131193,10 @@ export default { 40 ], "roster_size": [ - 258 + 257 ], "team_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -131218,7 +131210,7 @@ export default { 40 ], "avg_faceit_level": [ - 1670 + 1669 ], "avg_premier": [ 40 @@ -131230,7 +131222,7 @@ export default { 40 ], "roster_size": [ - 258 + 257 ], "__typename": [ 80 @@ -131316,22 +131308,22 @@ export default { }, "v_team_reputation": { "late_cancels": [ - 258 + 257 ], "no_shows": [ - 258 + 257 ], "reliability_pct": [ - 2950 + 2949 ], "scrims_completed": [ - 258 + 257 ], "team": [ - 4452 + 4451 ], "team_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -131339,10 +131331,10 @@ export default { }, "v_team_reputation_aggregate": { "aggregate": [ - 5705 + 5704 ], "nodes": [ - 5703 + 5702 ], "__typename": [ 80 @@ -131350,13 +131342,13 @@ export default { }, "v_team_reputation_aggregate_fields": { "avg": [ - 5706 + 5705 ], "count": [ 40, { "columns": [ - 5713, + 5712, "[v_team_reputation_select_column!]" ], "distinct": [ @@ -131365,31 +131357,31 @@ export default { } ], "max": [ - 5709 + 5708 ], "min": [ - 5710 + 5709 ], "stddev": [ - 5714 + 5713 ], "stddev_pop": [ - 5715 + 5714 ], "stddev_samp": [ - 5716 + 5715 ], "sum": [ - 5719 + 5718 ], "var_pop": [ - 5720 + 5719 ], "var_samp": [ - 5721 + 5720 ], "variance": [ - 5722 + 5721 ], "__typename": [ 80 @@ -131414,31 +131406,31 @@ export default { }, "v_team_reputation_bool_exp": { "_and": [ - 5707 + 5706 ], "_not": [ - 5707 + 5706 ], "_or": [ - 5707 + 5706 ], "late_cancels": [ - 260 + 259 ], "no_shows": [ - 260 + 259 ], "reliability_pct": [ - 2951 + 2950 ], "scrims_completed": [ - 260 + 259 ], "team": [ - 4463 + 4462 ], "team_id": [ - 5001 + 5000 ], "__typename": [ 80 @@ -131446,22 +131438,22 @@ export default { }, "v_team_reputation_insert_input": { "late_cancels": [ - 258 + 257 ], "no_shows": [ - 258 + 257 ], "reliability_pct": [ - 2950 + 2949 ], "scrims_completed": [ - 258 + 257 ], "team": [ - 4472 + 4471 ], "team_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -131469,19 +131461,19 @@ export default { }, "v_team_reputation_max_fields": { "late_cancels": [ - 258 + 257 ], "no_shows": [ - 258 + 257 ], "reliability_pct": [ - 2950 + 2949 ], "scrims_completed": [ - 258 + 257 ], "team_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -131489,19 +131481,19 @@ export default { }, "v_team_reputation_min_fields": { "late_cancels": [ - 258 + 257 ], "no_shows": [ - 258 + 257 ], "reliability_pct": [ - 2950 + 2949 ], "scrims_completed": [ - 258 + 257 ], "team_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -131509,7 +131501,7 @@ export default { }, "v_team_reputation_obj_rel_insert_input": { "data": [ - 5708 + 5707 ], "__typename": [ 80 @@ -131517,22 +131509,22 @@ export default { }, "v_team_reputation_order_by": { "late_cancels": [ - 2952 + 2951 ], "no_shows": [ - 2952 + 2951 ], "reliability_pct": [ - 2952 + 2951 ], "scrims_completed": [ - 2952 + 2951 ], "team": [ - 4474 + 4473 ], "team_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -131592,10 +131584,10 @@ export default { }, "v_team_reputation_stream_cursor_input": { "initial_value": [ - 5718 + 5717 ], "ordering": [ - 314 + 313 ], "__typename": [ 80 @@ -131603,19 +131595,19 @@ export default { }, "v_team_reputation_stream_cursor_value_input": { "late_cancels": [ - 258 + 257 ], "no_shows": [ - 258 + 257 ], "reliability_pct": [ - 2950 + 2949 ], "scrims_completed": [ - 258 + 257 ], "team_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -131623,16 +131615,16 @@ export default { }, "v_team_reputation_sum_fields": { "late_cancels": [ - 258 + 257 ], "no_shows": [ - 258 + 257 ], "reliability_pct": [ - 2950 + 2949 ], "scrims_completed": [ - 258 + 257 ], "__typename": [ 80 @@ -131727,13 +131719,13 @@ export default { 40 ], "stage": [ - 4760 + 4759 ], "team": [ - 4893 + 4892 ], "team_kdr": [ - 1670 + 1669 ], "total_deaths": [ 40 @@ -131742,10 +131734,10 @@ export default { 40 ], "tournament_stage_id": [ - 4999 + 4998 ], "tournament_team_id": [ - 4999 + 4998 ], "wins": [ 40 @@ -131756,10 +131748,10 @@ export default { }, "v_team_stage_results_aggregate": { "aggregate": [ - 5737 + 5736 ], "nodes": [ - 5723 + 5722 ], "__typename": [ 80 @@ -131767,31 +131759,31 @@ export default { }, "v_team_stage_results_aggregate_bool_exp": { "avg": [ - 5726 + 5725 ], "corr": [ - 5727 + 5726 ], "count": [ - 5729 + 5728 ], "covar_samp": [ - 5730 + 5729 ], "max": [ - 5732 + 5731 ], "min": [ - 5733 + 5732 ], "stddev_samp": [ - 5734 + 5733 ], "sum": [ - 5735 + 5734 ], "var_samp": [ - 5736 + 5735 ], "__typename": [ 80 @@ -131799,16 +131791,16 @@ export default { }, "v_team_stage_results_aggregate_bool_exp_avg": { "arguments": [ - 5756 + 5755 ], "distinct": [ 5 ], "filter": [ - 5742 + 5741 ], "predicate": [ - 1671 + 1670 ], "__typename": [ 80 @@ -131816,16 +131808,16 @@ export default { }, "v_team_stage_results_aggregate_bool_exp_corr": { "arguments": [ - 5728 + 5727 ], "distinct": [ 5 ], "filter": [ - 5742 + 5741 ], "predicate": [ - 1671 + 1670 ], "__typename": [ 80 @@ -131833,10 +131825,10 @@ export default { }, "v_team_stage_results_aggregate_bool_exp_corr_arguments": { "X": [ - 5757 + 5756 ], "Y": [ - 5757 + 5756 ], "__typename": [ 80 @@ -131844,13 +131836,13 @@ export default { }, "v_team_stage_results_aggregate_bool_exp_count": { "arguments": [ - 5755 + 5754 ], "distinct": [ 5 ], "filter": [ - 5742 + 5741 ], "predicate": [ 41 @@ -131861,16 +131853,16 @@ export default { }, "v_team_stage_results_aggregate_bool_exp_covar_samp": { "arguments": [ - 5731 + 5730 ], "distinct": [ 5 ], "filter": [ - 5742 + 5741 ], "predicate": [ - 1671 + 1670 ], "__typename": [ 80 @@ -131878,10 +131870,10 @@ export default { }, "v_team_stage_results_aggregate_bool_exp_covar_samp_arguments": { "X": [ - 5758 + 5757 ], "Y": [ - 5758 + 5757 ], "__typename": [ 80 @@ -131889,16 +131881,16 @@ export default { }, "v_team_stage_results_aggregate_bool_exp_max": { "arguments": [ - 5759 + 5758 ], "distinct": [ 5 ], "filter": [ - 5742 + 5741 ], "predicate": [ - 1671 + 1670 ], "__typename": [ 80 @@ -131906,16 +131898,16 @@ export default { }, "v_team_stage_results_aggregate_bool_exp_min": { "arguments": [ - 5760 + 5759 ], "distinct": [ 5 ], "filter": [ - 5742 + 5741 ], "predicate": [ - 1671 + 1670 ], "__typename": [ 80 @@ -131923,16 +131915,16 @@ export default { }, "v_team_stage_results_aggregate_bool_exp_stddev_samp": { "arguments": [ - 5761 + 5760 ], "distinct": [ 5 ], "filter": [ - 5742 + 5741 ], "predicate": [ - 1671 + 1670 ], "__typename": [ 80 @@ -131940,16 +131932,16 @@ export default { }, "v_team_stage_results_aggregate_bool_exp_sum": { "arguments": [ - 5762 + 5761 ], "distinct": [ 5 ], "filter": [ - 5742 + 5741 ], "predicate": [ - 1671 + 1670 ], "__typename": [ 80 @@ -131957,16 +131949,16 @@ export default { }, "v_team_stage_results_aggregate_bool_exp_var_samp": { "arguments": [ - 5763 + 5762 ], "distinct": [ 5 ], "filter": [ - 5742 + 5741 ], "predicate": [ - 1671 + 1670 ], "__typename": [ 80 @@ -131974,13 +131966,13 @@ export default { }, "v_team_stage_results_aggregate_fields": { "avg": [ - 5740 + 5739 ], "count": [ 40, { "columns": [ - 5755, + 5754, "[v_team_stage_results_select_column!]" ], "distinct": [ @@ -131989,31 +131981,31 @@ export default { } ], "max": [ - 5746 + 5745 ], "min": [ - 5748 + 5747 ], "stddev": [ - 5765 + 5764 ], "stddev_pop": [ - 5767 + 5766 ], "stddev_samp": [ - 5769 + 5768 ], "sum": [ - 5773 + 5772 ], "var_pop": [ - 5777 + 5776 ], "var_samp": [ - 5779 + 5778 ], "variance": [ - 5781 + 5780 ], "__typename": [ 80 @@ -132021,37 +132013,37 @@ export default { }, "v_team_stage_results_aggregate_order_by": { "avg": [ - 5741 + 5740 ], "count": [ - 2952 + 2951 ], "max": [ - 5747 + 5746 ], "min": [ - 5749 + 5748 ], "stddev": [ - 5766 + 5765 ], "stddev_pop": [ - 5768 + 5767 ], "stddev_samp": [ - 5770 + 5769 ], "sum": [ - 5774 + 5773 ], "var_pop": [ - 5778 + 5777 ], "var_samp": [ - 5780 + 5779 ], "variance": [ - 5782 + 5781 ], "__typename": [ 80 @@ -132059,10 +132051,10 @@ export default { }, "v_team_stage_results_arr_rel_insert_input": { "data": [ - 5745 + 5744 ], "on_conflict": [ - 5752 + 5751 ], "__typename": [ 80 @@ -132123,52 +132115,52 @@ export default { }, "v_team_stage_results_avg_order_by": { "group_number": [ - 2952 + 2951 ], "head_to_head_match_wins": [ - 2952 + 2951 ], "head_to_head_rounds_won": [ - 2952 + 2951 ], "losses": [ - 2952 + 2951 ], "maps_lost": [ - 2952 + 2951 ], "maps_won": [ - 2952 + 2951 ], "matches_played": [ - 2952 + 2951 ], "matches_remaining": [ - 2952 + 2951 ], "placement": [ - 2952 + 2951 ], "rank": [ - 2952 + 2951 ], "rounds_lost": [ - 2952 + 2951 ], "rounds_won": [ - 2952 + 2951 ], "team_kdr": [ - 2952 + 2951 ], "total_deaths": [ - 2952 + 2951 ], "total_kills": [ - 2952 + 2951 ], "wins": [ - 2952 + 2951 ], "__typename": [ 80 @@ -132176,13 +132168,13 @@ export default { }, "v_team_stage_results_bool_exp": { "_and": [ - 5742 + 5741 ], "_not": [ - 5742 + 5741 ], "_or": [ - 5742 + 5741 ], "group_number": [ 41 @@ -132221,13 +132213,13 @@ export default { 41 ], "stage": [ - 4772 + 4771 ], "team": [ - 4902 + 4901 ], "team_kdr": [ - 1671 + 1670 ], "total_deaths": [ 41 @@ -132236,10 +132228,10 @@ export default { 41 ], "tournament_stage_id": [ - 5001 + 5000 ], "tournament_team_id": [ - 5001 + 5000 ], "wins": [ 41 @@ -132287,7 +132279,7 @@ export default { 40 ], "team_kdr": [ - 1670 + 1669 ], "total_deaths": [ 40 @@ -132340,13 +132332,13 @@ export default { 40 ], "stage": [ - 4784 + 4783 ], "team": [ - 4911 + 4910 ], "team_kdr": [ - 1670 + 1669 ], "total_deaths": [ 40 @@ -132355,10 +132347,10 @@ export default { 40 ], "tournament_stage_id": [ - 4999 + 4998 ], "tournament_team_id": [ - 4999 + 4998 ], "wins": [ 40 @@ -132405,7 +132397,7 @@ export default { 40 ], "team_kdr": [ - 1670 + 1669 ], "total_deaths": [ 40 @@ -132414,10 +132406,10 @@ export default { 40 ], "tournament_stage_id": [ - 4999 + 4998 ], "tournament_team_id": [ - 4999 + 4998 ], "wins": [ 40 @@ -132428,58 +132420,58 @@ export default { }, "v_team_stage_results_max_order_by": { "group_number": [ - 2952 + 2951 ], "head_to_head_match_wins": [ - 2952 + 2951 ], "head_to_head_rounds_won": [ - 2952 + 2951 ], "losses": [ - 2952 + 2951 ], "maps_lost": [ - 2952 + 2951 ], "maps_won": [ - 2952 + 2951 ], "matches_played": [ - 2952 + 2951 ], "matches_remaining": [ - 2952 + 2951 ], "placement": [ - 2952 + 2951 ], "rank": [ - 2952 + 2951 ], "rounds_lost": [ - 2952 + 2951 ], "rounds_won": [ - 2952 + 2951 ], "team_kdr": [ - 2952 + 2951 ], "total_deaths": [ - 2952 + 2951 ], "total_kills": [ - 2952 + 2951 ], "tournament_stage_id": [ - 2952 + 2951 ], "tournament_team_id": [ - 2952 + 2951 ], "wins": [ - 2952 + 2951 ], "__typename": [ 80 @@ -132523,7 +132515,7 @@ export default { 40 ], "team_kdr": [ - 1670 + 1669 ], "total_deaths": [ 40 @@ -132532,10 +132524,10 @@ export default { 40 ], "tournament_stage_id": [ - 4999 + 4998 ], "tournament_team_id": [ - 4999 + 4998 ], "wins": [ 40 @@ -132546,58 +132538,58 @@ export default { }, "v_team_stage_results_min_order_by": { "group_number": [ - 2952 + 2951 ], "head_to_head_match_wins": [ - 2952 + 2951 ], "head_to_head_rounds_won": [ - 2952 + 2951 ], "losses": [ - 2952 + 2951 ], "maps_lost": [ - 2952 + 2951 ], "maps_won": [ - 2952 + 2951 ], "matches_played": [ - 2952 + 2951 ], "matches_remaining": [ - 2952 + 2951 ], "placement": [ - 2952 + 2951 ], "rank": [ - 2952 + 2951 ], "rounds_lost": [ - 2952 + 2951 ], "rounds_won": [ - 2952 + 2951 ], "team_kdr": [ - 2952 + 2951 ], "total_deaths": [ - 2952 + 2951 ], "total_kills": [ - 2952 + 2951 ], "tournament_stage_id": [ - 2952 + 2951 ], "tournament_team_id": [ - 2952 + 2951 ], "wins": [ - 2952 + 2951 ], "__typename": [ 80 @@ -132608,7 +132600,7 @@ export default { 40 ], "returning": [ - 5723 + 5722 ], "__typename": [ 80 @@ -132616,10 +132608,10 @@ export default { }, "v_team_stage_results_obj_rel_insert_input": { "data": [ - 5745 + 5744 ], "on_conflict": [ - 5752 + 5751 ], "__typename": [ 80 @@ -132627,13 +132619,13 @@ export default { }, "v_team_stage_results_on_conflict": { "constraint": [ - 5743 + 5742 ], "update_columns": [ - 5775 + 5774 ], "where": [ - 5742 + 5741 ], "__typename": [ 80 @@ -132641,64 +132633,64 @@ export default { }, "v_team_stage_results_order_by": { "group_number": [ - 2952 + 2951 ], "head_to_head_match_wins": [ - 2952 + 2951 ], "head_to_head_rounds_won": [ - 2952 + 2951 ], "losses": [ - 2952 + 2951 ], "maps_lost": [ - 2952 + 2951 ], "maps_won": [ - 2952 + 2951 ], "matches_played": [ - 2952 + 2951 ], "matches_remaining": [ - 2952 + 2951 ], "placement": [ - 2952 + 2951 ], "rank": [ - 2952 + 2951 ], "rounds_lost": [ - 2952 + 2951 ], "rounds_won": [ - 2952 + 2951 ], "stage": [ - 4786 + 4785 ], "team": [ - 4913 + 4912 ], "team_kdr": [ - 2952 + 2951 ], "total_deaths": [ - 2952 + 2951 ], "total_kills": [ - 2952 + 2951 ], "tournament_stage_id": [ - 2952 + 2951 ], "tournament_team_id": [ - 2952 + 2951 ], "wins": [ - 2952 + 2951 ], "__typename": [ 80 @@ -132706,10 +132698,10 @@ export default { }, "v_team_stage_results_pk_columns_input": { "tournament_stage_id": [ - 4999 + 4998 ], "tournament_team_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -132762,7 +132754,7 @@ export default { 40 ], "team_kdr": [ - 1670 + 1669 ], "total_deaths": [ 40 @@ -132771,10 +132763,10 @@ export default { 40 ], "tournament_stage_id": [ - 4999 + 4998 ], "tournament_team_id": [ - 4999 + 4998 ], "wins": [ 40 @@ -132838,52 +132830,52 @@ export default { }, "v_team_stage_results_stddev_order_by": { "group_number": [ - 2952 + 2951 ], "head_to_head_match_wins": [ - 2952 + 2951 ], "head_to_head_rounds_won": [ - 2952 + 2951 ], "losses": [ - 2952 + 2951 ], "maps_lost": [ - 2952 + 2951 ], "maps_won": [ - 2952 + 2951 ], "matches_played": [ - 2952 + 2951 ], "matches_remaining": [ - 2952 + 2951 ], "placement": [ - 2952 + 2951 ], "rank": [ - 2952 + 2951 ], "rounds_lost": [ - 2952 + 2951 ], "rounds_won": [ - 2952 + 2951 ], "team_kdr": [ - 2952 + 2951 ], "total_deaths": [ - 2952 + 2951 ], "total_kills": [ - 2952 + 2951 ], "wins": [ - 2952 + 2951 ], "__typename": [ 80 @@ -132944,52 +132936,52 @@ export default { }, "v_team_stage_results_stddev_pop_order_by": { "group_number": [ - 2952 + 2951 ], "head_to_head_match_wins": [ - 2952 + 2951 ], "head_to_head_rounds_won": [ - 2952 + 2951 ], "losses": [ - 2952 + 2951 ], "maps_lost": [ - 2952 + 2951 ], "maps_won": [ - 2952 + 2951 ], "matches_played": [ - 2952 + 2951 ], "matches_remaining": [ - 2952 + 2951 ], "placement": [ - 2952 + 2951 ], "rank": [ - 2952 + 2951 ], "rounds_lost": [ - 2952 + 2951 ], "rounds_won": [ - 2952 + 2951 ], "team_kdr": [ - 2952 + 2951 ], "total_deaths": [ - 2952 + 2951 ], "total_kills": [ - 2952 + 2951 ], "wins": [ - 2952 + 2951 ], "__typename": [ 80 @@ -133050,52 +133042,52 @@ export default { }, "v_team_stage_results_stddev_samp_order_by": { "group_number": [ - 2952 + 2951 ], "head_to_head_match_wins": [ - 2952 + 2951 ], "head_to_head_rounds_won": [ - 2952 + 2951 ], "losses": [ - 2952 + 2951 ], "maps_lost": [ - 2952 + 2951 ], "maps_won": [ - 2952 + 2951 ], "matches_played": [ - 2952 + 2951 ], "matches_remaining": [ - 2952 + 2951 ], "placement": [ - 2952 + 2951 ], "rank": [ - 2952 + 2951 ], "rounds_lost": [ - 2952 + 2951 ], "rounds_won": [ - 2952 + 2951 ], "team_kdr": [ - 2952 + 2951 ], "total_deaths": [ - 2952 + 2951 ], "total_kills": [ - 2952 + 2951 ], "wins": [ - 2952 + 2951 ], "__typename": [ 80 @@ -133103,10 +133095,10 @@ export default { }, "v_team_stage_results_stream_cursor_input": { "initial_value": [ - 5772 + 5771 ], "ordering": [ - 314 + 313 ], "__typename": [ 80 @@ -133150,7 +133142,7 @@ export default { 40 ], "team_kdr": [ - 1670 + 1669 ], "total_deaths": [ 40 @@ -133159,10 +133151,10 @@ export default { 40 ], "tournament_stage_id": [ - 4999 + 4998 ], "tournament_team_id": [ - 4999 + 4998 ], "wins": [ 40 @@ -133209,7 +133201,7 @@ export default { 40 ], "team_kdr": [ - 1670 + 1669 ], "total_deaths": [ 40 @@ -133226,52 +133218,52 @@ export default { }, "v_team_stage_results_sum_order_by": { "group_number": [ - 2952 + 2951 ], "head_to_head_match_wins": [ - 2952 + 2951 ], "head_to_head_rounds_won": [ - 2952 + 2951 ], "losses": [ - 2952 + 2951 ], "maps_lost": [ - 2952 + 2951 ], "maps_won": [ - 2952 + 2951 ], "matches_played": [ - 2952 + 2951 ], "matches_remaining": [ - 2952 + 2951 ], "placement": [ - 2952 + 2951 ], "rank": [ - 2952 + 2951 ], "rounds_lost": [ - 2952 + 2951 ], "rounds_won": [ - 2952 + 2951 ], "team_kdr": [ - 2952 + 2951 ], "total_deaths": [ - 2952 + 2951 ], "total_kills": [ - 2952 + 2951 ], "wins": [ - 2952 + 2951 ], "__typename": [ 80 @@ -133280,13 +133272,13 @@ export default { "v_team_stage_results_update_column": {}, "v_team_stage_results_updates": { "_inc": [ - 5744 + 5743 ], "_set": [ - 5764 + 5763 ], "where": [ - 5742 + 5741 ], "__typename": [ 80 @@ -133347,52 +133339,52 @@ export default { }, "v_team_stage_results_var_pop_order_by": { "group_number": [ - 2952 + 2951 ], "head_to_head_match_wins": [ - 2952 + 2951 ], "head_to_head_rounds_won": [ - 2952 + 2951 ], "losses": [ - 2952 + 2951 ], "maps_lost": [ - 2952 + 2951 ], "maps_won": [ - 2952 + 2951 ], "matches_played": [ - 2952 + 2951 ], "matches_remaining": [ - 2952 + 2951 ], "placement": [ - 2952 + 2951 ], "rank": [ - 2952 + 2951 ], "rounds_lost": [ - 2952 + 2951 ], "rounds_won": [ - 2952 + 2951 ], "team_kdr": [ - 2952 + 2951 ], "total_deaths": [ - 2952 + 2951 ], "total_kills": [ - 2952 + 2951 ], "wins": [ - 2952 + 2951 ], "__typename": [ 80 @@ -133453,52 +133445,52 @@ export default { }, "v_team_stage_results_var_samp_order_by": { "group_number": [ - 2952 + 2951 ], "head_to_head_match_wins": [ - 2952 + 2951 ], "head_to_head_rounds_won": [ - 2952 + 2951 ], "losses": [ - 2952 + 2951 ], "maps_lost": [ - 2952 + 2951 ], "maps_won": [ - 2952 + 2951 ], "matches_played": [ - 2952 + 2951 ], "matches_remaining": [ - 2952 + 2951 ], "placement": [ - 2952 + 2951 ], "rank": [ - 2952 + 2951 ], "rounds_lost": [ - 2952 + 2951 ], "rounds_won": [ - 2952 + 2951 ], "team_kdr": [ - 2952 + 2951 ], "total_deaths": [ - 2952 + 2951 ], "total_kills": [ - 2952 + 2951 ], "wins": [ - 2952 + 2951 ], "__typename": [ 80 @@ -133559,52 +133551,52 @@ export default { }, "v_team_stage_results_variance_order_by": { "group_number": [ - 2952 + 2951 ], "head_to_head_match_wins": [ - 2952 + 2951 ], "head_to_head_rounds_won": [ - 2952 + 2951 ], "losses": [ - 2952 + 2951 ], "maps_lost": [ - 2952 + 2951 ], "maps_won": [ - 2952 + 2951 ], "matches_played": [ - 2952 + 2951 ], "matches_remaining": [ - 2952 + 2951 ], "placement": [ - 2952 + 2951 ], "rank": [ - 2952 + 2951 ], "rounds_lost": [ - 2952 + 2951 ], "rounds_won": [ - 2952 + 2951 ], "team_kdr": [ - 2952 + 2951 ], "total_deaths": [ - 2952 + 2951 ], "total_kills": [ - 2952 + 2951 ], "wins": [ - 2952 + 2951 ], "__typename": [ 80 @@ -133639,10 +133631,10 @@ export default { 40 ], "team": [ - 4893 + 4892 ], "team_kdr": [ - 1670 + 1669 ], "total_deaths": [ 40 @@ -133651,13 +133643,13 @@ export default { 40 ], "tournament": [ - 4935 + 4934 ], "tournament_id": [ - 4999 + 4998 ], "tournament_team_id": [ - 4999 + 4998 ], "wins": [ 40 @@ -133668,10 +133660,10 @@ export default { }, "v_team_tournament_results_aggregate": { "aggregate": [ - 5797 + 5796 ], "nodes": [ - 5783 + 5782 ], "__typename": [ 80 @@ -133679,31 +133671,31 @@ export default { }, "v_team_tournament_results_aggregate_bool_exp": { "avg": [ - 5786 + 5785 ], "corr": [ - 5787 + 5786 ], "count": [ - 5789 + 5788 ], "covar_samp": [ - 5790 + 5789 ], "max": [ - 5792 + 5791 ], "min": [ - 5793 + 5792 ], "stddev_samp": [ - 5794 + 5793 ], "sum": [ - 5795 + 5794 ], "var_samp": [ - 5796 + 5795 ], "__typename": [ 80 @@ -133711,16 +133703,16 @@ export default { }, "v_team_tournament_results_aggregate_bool_exp_avg": { "arguments": [ - 5810 + 5809 ], "distinct": [ 5 ], "filter": [ - 5802 + 5801 ], "predicate": [ - 1671 + 1670 ], "__typename": [ 80 @@ -133728,16 +133720,16 @@ export default { }, "v_team_tournament_results_aggregate_bool_exp_corr": { "arguments": [ - 5788 + 5787 ], "distinct": [ 5 ], "filter": [ - 5802 + 5801 ], "predicate": [ - 1671 + 1670 ], "__typename": [ 80 @@ -133745,10 +133737,10 @@ export default { }, "v_team_tournament_results_aggregate_bool_exp_corr_arguments": { "X": [ - 5811 + 5810 ], "Y": [ - 5811 + 5810 ], "__typename": [ 80 @@ -133756,13 +133748,13 @@ export default { }, "v_team_tournament_results_aggregate_bool_exp_count": { "arguments": [ - 5809 + 5808 ], "distinct": [ 5 ], "filter": [ - 5802 + 5801 ], "predicate": [ 41 @@ -133773,16 +133765,16 @@ export default { }, "v_team_tournament_results_aggregate_bool_exp_covar_samp": { "arguments": [ - 5791 + 5790 ], "distinct": [ 5 ], "filter": [ - 5802 + 5801 ], "predicate": [ - 1671 + 1670 ], "__typename": [ 80 @@ -133790,10 +133782,10 @@ export default { }, "v_team_tournament_results_aggregate_bool_exp_covar_samp_arguments": { "X": [ - 5812 + 5811 ], "Y": [ - 5812 + 5811 ], "__typename": [ 80 @@ -133801,16 +133793,16 @@ export default { }, "v_team_tournament_results_aggregate_bool_exp_max": { "arguments": [ - 5813 + 5812 ], "distinct": [ 5 ], "filter": [ - 5802 + 5801 ], "predicate": [ - 1671 + 1670 ], "__typename": [ 80 @@ -133818,16 +133810,16 @@ export default { }, "v_team_tournament_results_aggregate_bool_exp_min": { "arguments": [ - 5814 + 5813 ], "distinct": [ 5 ], "filter": [ - 5802 + 5801 ], "predicate": [ - 1671 + 1670 ], "__typename": [ 80 @@ -133835,16 +133827,16 @@ export default { }, "v_team_tournament_results_aggregate_bool_exp_stddev_samp": { "arguments": [ - 5815 + 5814 ], "distinct": [ 5 ], "filter": [ - 5802 + 5801 ], "predicate": [ - 1671 + 1670 ], "__typename": [ 80 @@ -133852,16 +133844,16 @@ export default { }, "v_team_tournament_results_aggregate_bool_exp_sum": { "arguments": [ - 5816 + 5815 ], "distinct": [ 5 ], "filter": [ - 5802 + 5801 ], "predicate": [ - 1671 + 1670 ], "__typename": [ 80 @@ -133869,16 +133861,16 @@ export default { }, "v_team_tournament_results_aggregate_bool_exp_var_samp": { "arguments": [ - 5817 + 5816 ], "distinct": [ 5 ], "filter": [ - 5802 + 5801 ], "predicate": [ - 1671 + 1670 ], "__typename": [ 80 @@ -133886,13 +133878,13 @@ export default { }, "v_team_tournament_results_aggregate_fields": { "avg": [ - 5800 + 5799 ], "count": [ 40, { "columns": [ - 5809, + 5808, "[v_team_tournament_results_select_column!]" ], "distinct": [ @@ -133900,6 +133892,44 @@ export default { ] } ], + "max": [ + 5803 + ], + "min": [ + 5805 + ], + "stddev": [ + 5817 + ], + "stddev_pop": [ + 5819 + ], + "stddev_samp": [ + 5821 + ], + "sum": [ + 5825 + ], + "var_pop": [ + 5827 + ], + "var_samp": [ + 5829 + ], + "variance": [ + 5831 + ], + "__typename": [ + 80 + ] + }, + "v_team_tournament_results_aggregate_order_by": { + "avg": [ + 5800 + ], + "count": [ + 2951 + ], "max": [ 5804 ], @@ -133931,47 +133961,9 @@ export default { 80 ] }, - "v_team_tournament_results_aggregate_order_by": { - "avg": [ - 5801 - ], - "count": [ - 2952 - ], - "max": [ - 5805 - ], - "min": [ - 5807 - ], - "stddev": [ - 5819 - ], - "stddev_pop": [ - 5821 - ], - "stddev_samp": [ - 5823 - ], - "sum": [ - 5827 - ], - "var_pop": [ - 5829 - ], - "var_samp": [ - 5831 - ], - "variance": [ - 5833 - ], - "__typename": [ - 80 - ] - }, "v_team_tournament_results_arr_rel_insert_input": { "data": [ - 5803 + 5802 ], "__typename": [ 80 @@ -134023,43 +134015,43 @@ export default { }, "v_team_tournament_results_avg_order_by": { "head_to_head_match_wins": [ - 2952 + 2951 ], "head_to_head_rounds_won": [ - 2952 + 2951 ], "losses": [ - 2952 + 2951 ], "maps_lost": [ - 2952 + 2951 ], "maps_won": [ - 2952 + 2951 ], "matches_played": [ - 2952 + 2951 ], "matches_remaining": [ - 2952 + 2951 ], "rounds_lost": [ - 2952 + 2951 ], "rounds_won": [ - 2952 + 2951 ], "team_kdr": [ - 2952 + 2951 ], "total_deaths": [ - 2952 + 2951 ], "total_kills": [ - 2952 + 2951 ], "wins": [ - 2952 + 2951 ], "__typename": [ 80 @@ -134067,13 +134059,13 @@ export default { }, "v_team_tournament_results_bool_exp": { "_and": [ - 5802 + 5801 ], "_not": [ - 5802 + 5801 ], "_or": [ - 5802 + 5801 ], "head_to_head_match_wins": [ 41 @@ -134103,10 +134095,10 @@ export default { 41 ], "team": [ - 4902 + 4901 ], "team_kdr": [ - 1671 + 1670 ], "total_deaths": [ 41 @@ -134115,13 +134107,13 @@ export default { 41 ], "tournament": [ - 4956 + 4955 ], "tournament_id": [ - 5001 + 5000 ], "tournament_team_id": [ - 5001 + 5000 ], "wins": [ 41 @@ -134159,10 +134151,10 @@ export default { 40 ], "team": [ - 4911 + 4910 ], "team_kdr": [ - 1670 + 1669 ], "total_deaths": [ 40 @@ -134171,13 +134163,13 @@ export default { 40 ], "tournament": [ - 4965 + 4964 ], "tournament_id": [ - 4999 + 4998 ], "tournament_team_id": [ - 4999 + 4998 ], "wins": [ 40 @@ -134215,7 +134207,7 @@ export default { 40 ], "team_kdr": [ - 1670 + 1669 ], "total_deaths": [ 40 @@ -134224,10 +134216,10 @@ export default { 40 ], "tournament_id": [ - 4999 + 4998 ], "tournament_team_id": [ - 4999 + 4998 ], "wins": [ 40 @@ -134238,49 +134230,49 @@ export default { }, "v_team_tournament_results_max_order_by": { "head_to_head_match_wins": [ - 2952 + 2951 ], "head_to_head_rounds_won": [ - 2952 + 2951 ], "losses": [ - 2952 + 2951 ], "maps_lost": [ - 2952 + 2951 ], "maps_won": [ - 2952 + 2951 ], "matches_played": [ - 2952 + 2951 ], "matches_remaining": [ - 2952 + 2951 ], "rounds_lost": [ - 2952 + 2951 ], "rounds_won": [ - 2952 + 2951 ], "team_kdr": [ - 2952 + 2951 ], "total_deaths": [ - 2952 + 2951 ], "total_kills": [ - 2952 + 2951 ], "tournament_id": [ - 2952 + 2951 ], "tournament_team_id": [ - 2952 + 2951 ], "wins": [ - 2952 + 2951 ], "__typename": [ 80 @@ -134315,7 +134307,7 @@ export default { 40 ], "team_kdr": [ - 1670 + 1669 ], "total_deaths": [ 40 @@ -134324,10 +134316,10 @@ export default { 40 ], "tournament_id": [ - 4999 + 4998 ], "tournament_team_id": [ - 4999 + 4998 ], "wins": [ 40 @@ -134338,49 +134330,49 @@ export default { }, "v_team_tournament_results_min_order_by": { "head_to_head_match_wins": [ - 2952 + 2951 ], "head_to_head_rounds_won": [ - 2952 + 2951 ], "losses": [ - 2952 + 2951 ], "maps_lost": [ - 2952 + 2951 ], "maps_won": [ - 2952 + 2951 ], "matches_played": [ - 2952 + 2951 ], "matches_remaining": [ - 2952 + 2951 ], "rounds_lost": [ - 2952 + 2951 ], "rounds_won": [ - 2952 + 2951 ], "team_kdr": [ - 2952 + 2951 ], "total_deaths": [ - 2952 + 2951 ], "total_kills": [ - 2952 + 2951 ], "tournament_id": [ - 2952 + 2951 ], "tournament_team_id": [ - 2952 + 2951 ], "wins": [ - 2952 + 2951 ], "__typename": [ 80 @@ -134388,55 +134380,55 @@ export default { }, "v_team_tournament_results_order_by": { "head_to_head_match_wins": [ - 2952 + 2951 ], "head_to_head_rounds_won": [ - 2952 + 2951 ], "losses": [ - 2952 + 2951 ], "maps_lost": [ - 2952 + 2951 ], "maps_won": [ - 2952 + 2951 ], "matches_played": [ - 2952 + 2951 ], "matches_remaining": [ - 2952 + 2951 ], "rounds_lost": [ - 2952 + 2951 ], "rounds_won": [ - 2952 + 2951 ], "team": [ - 4913 + 4912 ], "team_kdr": [ - 2952 + 2951 ], "total_deaths": [ - 2952 + 2951 ], "total_kills": [ - 2952 + 2951 ], "tournament": [ - 4967 + 4966 ], "tournament_id": [ - 2952 + 2951 ], "tournament_team_id": [ - 2952 + 2951 ], "wins": [ - 2952 + 2951 ], "__typename": [ 80 @@ -134497,43 +134489,43 @@ export default { }, "v_team_tournament_results_stddev_order_by": { "head_to_head_match_wins": [ - 2952 + 2951 ], "head_to_head_rounds_won": [ - 2952 + 2951 ], "losses": [ - 2952 + 2951 ], "maps_lost": [ - 2952 + 2951 ], "maps_won": [ - 2952 + 2951 ], "matches_played": [ - 2952 + 2951 ], "matches_remaining": [ - 2952 + 2951 ], "rounds_lost": [ - 2952 + 2951 ], "rounds_won": [ - 2952 + 2951 ], "team_kdr": [ - 2952 + 2951 ], "total_deaths": [ - 2952 + 2951 ], "total_kills": [ - 2952 + 2951 ], "wins": [ - 2952 + 2951 ], "__typename": [ 80 @@ -134585,43 +134577,43 @@ export default { }, "v_team_tournament_results_stddev_pop_order_by": { "head_to_head_match_wins": [ - 2952 + 2951 ], "head_to_head_rounds_won": [ - 2952 + 2951 ], "losses": [ - 2952 + 2951 ], "maps_lost": [ - 2952 + 2951 ], "maps_won": [ - 2952 + 2951 ], "matches_played": [ - 2952 + 2951 ], "matches_remaining": [ - 2952 + 2951 ], "rounds_lost": [ - 2952 + 2951 ], "rounds_won": [ - 2952 + 2951 ], "team_kdr": [ - 2952 + 2951 ], "total_deaths": [ - 2952 + 2951 ], "total_kills": [ - 2952 + 2951 ], "wins": [ - 2952 + 2951 ], "__typename": [ 80 @@ -134673,43 +134665,43 @@ export default { }, "v_team_tournament_results_stddev_samp_order_by": { "head_to_head_match_wins": [ - 2952 + 2951 ], "head_to_head_rounds_won": [ - 2952 + 2951 ], "losses": [ - 2952 + 2951 ], "maps_lost": [ - 2952 + 2951 ], "maps_won": [ - 2952 + 2951 ], "matches_played": [ - 2952 + 2951 ], "matches_remaining": [ - 2952 + 2951 ], "rounds_lost": [ - 2952 + 2951 ], "rounds_won": [ - 2952 + 2951 ], "team_kdr": [ - 2952 + 2951 ], "total_deaths": [ - 2952 + 2951 ], "total_kills": [ - 2952 + 2951 ], "wins": [ - 2952 + 2951 ], "__typename": [ 80 @@ -134717,10 +134709,10 @@ export default { }, "v_team_tournament_results_stream_cursor_input": { "initial_value": [ - 5825 + 5824 ], "ordering": [ - 314 + 313 ], "__typename": [ 80 @@ -134755,7 +134747,7 @@ export default { 40 ], "team_kdr": [ - 1670 + 1669 ], "total_deaths": [ 40 @@ -134764,10 +134756,10 @@ export default { 40 ], "tournament_id": [ - 4999 + 4998 ], "tournament_team_id": [ - 4999 + 4998 ], "wins": [ 40 @@ -134805,7 +134797,7 @@ export default { 40 ], "team_kdr": [ - 1670 + 1669 ], "total_deaths": [ 40 @@ -134822,43 +134814,43 @@ export default { }, "v_team_tournament_results_sum_order_by": { "head_to_head_match_wins": [ - 2952 + 2951 ], "head_to_head_rounds_won": [ - 2952 + 2951 ], "losses": [ - 2952 + 2951 ], "maps_lost": [ - 2952 + 2951 ], "maps_won": [ - 2952 + 2951 ], "matches_played": [ - 2952 + 2951 ], "matches_remaining": [ - 2952 + 2951 ], "rounds_lost": [ - 2952 + 2951 ], "rounds_won": [ - 2952 + 2951 ], "team_kdr": [ - 2952 + 2951 ], "total_deaths": [ - 2952 + 2951 ], "total_kills": [ - 2952 + 2951 ], "wins": [ - 2952 + 2951 ], "__typename": [ 80 @@ -134910,43 +134902,43 @@ export default { }, "v_team_tournament_results_var_pop_order_by": { "head_to_head_match_wins": [ - 2952 + 2951 ], "head_to_head_rounds_won": [ - 2952 + 2951 ], "losses": [ - 2952 + 2951 ], "maps_lost": [ - 2952 + 2951 ], "maps_won": [ - 2952 + 2951 ], "matches_played": [ - 2952 + 2951 ], "matches_remaining": [ - 2952 + 2951 ], "rounds_lost": [ - 2952 + 2951 ], "rounds_won": [ - 2952 + 2951 ], "team_kdr": [ - 2952 + 2951 ], "total_deaths": [ - 2952 + 2951 ], "total_kills": [ - 2952 + 2951 ], "wins": [ - 2952 + 2951 ], "__typename": [ 80 @@ -134998,43 +134990,43 @@ export default { }, "v_team_tournament_results_var_samp_order_by": { "head_to_head_match_wins": [ - 2952 + 2951 ], "head_to_head_rounds_won": [ - 2952 + 2951 ], "losses": [ - 2952 + 2951 ], "maps_lost": [ - 2952 + 2951 ], "maps_won": [ - 2952 + 2951 ], "matches_played": [ - 2952 + 2951 ], "matches_remaining": [ - 2952 + 2951 ], "rounds_lost": [ - 2952 + 2951 ], "rounds_won": [ - 2952 + 2951 ], "team_kdr": [ - 2952 + 2951 ], "total_deaths": [ - 2952 + 2951 ], "total_kills": [ - 2952 + 2951 ], "wins": [ - 2952 + 2951 ], "__typename": [ 80 @@ -135086,43 +135078,43 @@ export default { }, "v_team_tournament_results_variance_order_by": { "head_to_head_match_wins": [ - 2952 + 2951 ], "head_to_head_rounds_won": [ - 2952 + 2951 ], "losses": [ - 2952 + 2951 ], "maps_lost": [ - 2952 + 2951 ], "maps_won": [ - 2952 + 2951 ], "matches_played": [ - 2952 + 2951 ], "matches_remaining": [ - 2952 + 2951 ], "rounds_lost": [ - 2952 + 2951 ], "rounds_won": [ - 2952 + 2951 ], "team_kdr": [ - 2952 + 2951 ], "total_deaths": [ - 2952 + 2951 ], "total_kills": [ - 2952 + 2951 ], "wins": [ - 2952 + 2951 ], "__typename": [ 80 @@ -135136,13 +135128,13 @@ export default { 40 ], "headshot_percentage": [ - 1670 + 1669 ], "headshots": [ 40 ], "kdr": [ - 1670 + 1669 ], "kills": [ 40 @@ -135151,16 +135143,16 @@ export default { 40 ], "player": [ - 3910 + 3909 ], "player_steam_id": [ - 258 + 257 ], "tournament": [ - 4935 + 4934 ], "tournament_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -135168,10 +135160,10 @@ export default { }, "v_tournament_player_stats_aggregate": { "aggregate": [ - 5848 + 5847 ], "nodes": [ - 5834 + 5833 ], "__typename": [ 80 @@ -135179,31 +135171,31 @@ export default { }, "v_tournament_player_stats_aggregate_bool_exp": { "avg": [ - 5837 + 5836 ], "corr": [ - 5838 + 5837 ], "count": [ - 5840 + 5839 ], "covar_samp": [ - 5841 + 5840 ], "max": [ - 5843 + 5842 ], "min": [ - 5844 + 5843 ], "stddev_samp": [ - 5845 + 5844 ], "sum": [ - 5846 + 5845 ], "var_samp": [ - 5847 + 5846 ], "__typename": [ 80 @@ -135211,16 +135203,16 @@ export default { }, "v_tournament_player_stats_aggregate_bool_exp_avg": { "arguments": [ - 5861 + 5860 ], "distinct": [ 5 ], "filter": [ - 5853 + 5852 ], "predicate": [ - 1671 + 1670 ], "__typename": [ 80 @@ -135228,16 +135220,16 @@ export default { }, "v_tournament_player_stats_aggregate_bool_exp_corr": { "arguments": [ - 5839 + 5838 ], "distinct": [ 5 ], "filter": [ - 5853 + 5852 ], "predicate": [ - 1671 + 1670 ], "__typename": [ 80 @@ -135245,10 +135237,10 @@ export default { }, "v_tournament_player_stats_aggregate_bool_exp_corr_arguments": { "X": [ - 5862 + 5861 ], "Y": [ - 5862 + 5861 ], "__typename": [ 80 @@ -135256,13 +135248,13 @@ export default { }, "v_tournament_player_stats_aggregate_bool_exp_count": { "arguments": [ - 5860 + 5859 ], "distinct": [ 5 ], "filter": [ - 5853 + 5852 ], "predicate": [ 41 @@ -135273,16 +135265,16 @@ export default { }, "v_tournament_player_stats_aggregate_bool_exp_covar_samp": { "arguments": [ - 5842 + 5841 ], "distinct": [ 5 ], "filter": [ - 5853 + 5852 ], "predicate": [ - 1671 + 1670 ], "__typename": [ 80 @@ -135290,10 +135282,10 @@ export default { }, "v_tournament_player_stats_aggregate_bool_exp_covar_samp_arguments": { "X": [ - 5863 + 5862 ], "Y": [ - 5863 + 5862 ], "__typename": [ 80 @@ -135301,16 +135293,16 @@ export default { }, "v_tournament_player_stats_aggregate_bool_exp_max": { "arguments": [ - 5864 + 5863 ], "distinct": [ 5 ], "filter": [ - 5853 + 5852 ], "predicate": [ - 1671 + 1670 ], "__typename": [ 80 @@ -135318,16 +135310,16 @@ export default { }, "v_tournament_player_stats_aggregate_bool_exp_min": { "arguments": [ - 5865 + 5864 ], "distinct": [ 5 ], "filter": [ - 5853 + 5852 ], "predicate": [ - 1671 + 1670 ], "__typename": [ 80 @@ -135335,16 +135327,16 @@ export default { }, "v_tournament_player_stats_aggregate_bool_exp_stddev_samp": { "arguments": [ - 5866 + 5865 ], "distinct": [ 5 ], "filter": [ - 5853 + 5852 ], "predicate": [ - 1671 + 1670 ], "__typename": [ 80 @@ -135352,16 +135344,16 @@ export default { }, "v_tournament_player_stats_aggregate_bool_exp_sum": { "arguments": [ - 5867 + 5866 ], "distinct": [ 5 ], "filter": [ - 5853 + 5852 ], "predicate": [ - 1671 + 1670 ], "__typename": [ 80 @@ -135369,16 +135361,16 @@ export default { }, "v_tournament_player_stats_aggregate_bool_exp_var_samp": { "arguments": [ - 5868 + 5867 ], "distinct": [ 5 ], "filter": [ - 5853 + 5852 ], "predicate": [ - 1671 + 1670 ], "__typename": [ 80 @@ -135386,13 +135378,13 @@ export default { }, "v_tournament_player_stats_aggregate_fields": { "avg": [ - 5851 + 5850 ], "count": [ 40, { "columns": [ - 5860, + 5859, "[v_tournament_player_stats_select_column!]" ], "distinct": [ @@ -135401,31 +135393,31 @@ export default { } ], "max": [ - 5855 + 5854 ], "min": [ - 5857 + 5856 ], "stddev": [ - 5869 + 5868 ], "stddev_pop": [ - 5871 + 5870 ], "stddev_samp": [ - 5873 + 5872 ], "sum": [ - 5877 + 5876 ], "var_pop": [ - 5879 + 5878 ], "var_samp": [ - 5881 + 5880 ], "variance": [ - 5883 + 5882 ], "__typename": [ 80 @@ -135433,37 +135425,37 @@ export default { }, "v_tournament_player_stats_aggregate_order_by": { "avg": [ - 5852 + 5851 ], "count": [ - 2952 + 2951 ], "max": [ - 5856 + 5855 ], "min": [ - 5858 + 5857 ], "stddev": [ - 5870 + 5869 ], "stddev_pop": [ - 5872 + 5871 ], "stddev_samp": [ - 5874 + 5873 ], "sum": [ - 5878 + 5877 ], "var_pop": [ - 5880 + 5879 ], "var_samp": [ - 5882 + 5881 ], "variance": [ - 5884 + 5883 ], "__typename": [ 80 @@ -135471,7 +135463,7 @@ export default { }, "v_tournament_player_stats_arr_rel_insert_input": { "data": [ - 5854 + 5853 ], "__typename": [ 80 @@ -135508,28 +135500,28 @@ export default { }, "v_tournament_player_stats_avg_order_by": { "assists": [ - 2952 + 2951 ], "deaths": [ - 2952 + 2951 ], "headshot_percentage": [ - 2952 + 2951 ], "headshots": [ - 2952 + 2951 ], "kdr": [ - 2952 + 2951 ], "kills": [ - 2952 + 2951 ], "matches_played": [ - 2952 + 2951 ], "player_steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -135537,13 +135529,13 @@ export default { }, "v_tournament_player_stats_bool_exp": { "_and": [ - 5853 + 5852 ], "_not": [ - 5853 + 5852 ], "_or": [ - 5853 + 5852 ], "assists": [ 41 @@ -135552,13 +135544,13 @@ export default { 41 ], "headshot_percentage": [ - 1671 + 1670 ], "headshots": [ 41 ], "kdr": [ - 1671 + 1670 ], "kills": [ 41 @@ -135567,16 +135559,16 @@ export default { 41 ], "player": [ - 3914 + 3913 ], "player_steam_id": [ - 260 + 259 ], "tournament": [ - 4956 + 4955 ], "tournament_id": [ - 5001 + 5000 ], "__typename": [ 80 @@ -135590,13 +135582,13 @@ export default { 40 ], "headshot_percentage": [ - 1670 + 1669 ], "headshots": [ 40 ], "kdr": [ - 1670 + 1669 ], "kills": [ 40 @@ -135605,16 +135597,16 @@ export default { 40 ], "player": [ - 3921 + 3920 ], "player_steam_id": [ - 258 + 257 ], "tournament": [ - 4965 + 4964 ], "tournament_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -135628,13 +135620,13 @@ export default { 40 ], "headshot_percentage": [ - 1670 + 1669 ], "headshots": [ 40 ], "kdr": [ - 1670 + 1669 ], "kills": [ 40 @@ -135643,10 +135635,10 @@ export default { 40 ], "player_steam_id": [ - 258 + 257 ], "tournament_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -135654,31 +135646,31 @@ export default { }, "v_tournament_player_stats_max_order_by": { "assists": [ - 2952 + 2951 ], "deaths": [ - 2952 + 2951 ], "headshot_percentage": [ - 2952 + 2951 ], "headshots": [ - 2952 + 2951 ], "kdr": [ - 2952 + 2951 ], "kills": [ - 2952 + 2951 ], "matches_played": [ - 2952 + 2951 ], "player_steam_id": [ - 2952 + 2951 ], "tournament_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -135692,13 +135684,13 @@ export default { 40 ], "headshot_percentage": [ - 1670 + 1669 ], "headshots": [ 40 ], "kdr": [ - 1670 + 1669 ], "kills": [ 40 @@ -135707,10 +135699,10 @@ export default { 40 ], "player_steam_id": [ - 258 + 257 ], "tournament_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -135718,31 +135710,31 @@ export default { }, "v_tournament_player_stats_min_order_by": { "assists": [ - 2952 + 2951 ], "deaths": [ - 2952 + 2951 ], "headshot_percentage": [ - 2952 + 2951 ], "headshots": [ - 2952 + 2951 ], "kdr": [ - 2952 + 2951 ], "kills": [ - 2952 + 2951 ], "matches_played": [ - 2952 + 2951 ], "player_steam_id": [ - 2952 + 2951 ], "tournament_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -135750,37 +135742,37 @@ export default { }, "v_tournament_player_stats_order_by": { "assists": [ - 2952 + 2951 ], "deaths": [ - 2952 + 2951 ], "headshot_percentage": [ - 2952 + 2951 ], "headshots": [ - 2952 + 2951 ], "kdr": [ - 2952 + 2951 ], "kills": [ - 2952 + 2951 ], "matches_played": [ - 2952 + 2951 ], "player": [ - 3923 + 3922 ], "player_steam_id": [ - 2952 + 2951 ], "tournament": [ - 4967 + 4966 ], "tournament_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -135826,28 +135818,28 @@ export default { }, "v_tournament_player_stats_stddev_order_by": { "assists": [ - 2952 + 2951 ], "deaths": [ - 2952 + 2951 ], "headshot_percentage": [ - 2952 + 2951 ], "headshots": [ - 2952 + 2951 ], "kdr": [ - 2952 + 2951 ], "kills": [ - 2952 + 2951 ], "matches_played": [ - 2952 + 2951 ], "player_steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -135884,28 +135876,28 @@ export default { }, "v_tournament_player_stats_stddev_pop_order_by": { "assists": [ - 2952 + 2951 ], "deaths": [ - 2952 + 2951 ], "headshot_percentage": [ - 2952 + 2951 ], "headshots": [ - 2952 + 2951 ], "kdr": [ - 2952 + 2951 ], "kills": [ - 2952 + 2951 ], "matches_played": [ - 2952 + 2951 ], "player_steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -135942,28 +135934,28 @@ export default { }, "v_tournament_player_stats_stddev_samp_order_by": { "assists": [ - 2952 + 2951 ], "deaths": [ - 2952 + 2951 ], "headshot_percentage": [ - 2952 + 2951 ], "headshots": [ - 2952 + 2951 ], "kdr": [ - 2952 + 2951 ], "kills": [ - 2952 + 2951 ], "matches_played": [ - 2952 + 2951 ], "player_steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -135971,10 +135963,10 @@ export default { }, "v_tournament_player_stats_stream_cursor_input": { "initial_value": [ - 5876 + 5875 ], "ordering": [ - 314 + 313 ], "__typename": [ 80 @@ -135988,13 +135980,13 @@ export default { 40 ], "headshot_percentage": [ - 1670 + 1669 ], "headshots": [ 40 ], "kdr": [ - 1670 + 1669 ], "kills": [ 40 @@ -136003,10 +135995,10 @@ export default { 40 ], "player_steam_id": [ - 258 + 257 ], "tournament_id": [ - 4999 + 4998 ], "__typename": [ 80 @@ -136020,13 +136012,13 @@ export default { 40 ], "headshot_percentage": [ - 1670 + 1669 ], "headshots": [ 40 ], "kdr": [ - 1670 + 1669 ], "kills": [ 40 @@ -136035,7 +136027,7 @@ export default { 40 ], "player_steam_id": [ - 258 + 257 ], "__typename": [ 80 @@ -136043,28 +136035,28 @@ export default { }, "v_tournament_player_stats_sum_order_by": { "assists": [ - 2952 + 2951 ], "deaths": [ - 2952 + 2951 ], "headshot_percentage": [ - 2952 + 2951 ], "headshots": [ - 2952 + 2951 ], "kdr": [ - 2952 + 2951 ], "kills": [ - 2952 + 2951 ], "matches_played": [ - 2952 + 2951 ], "player_steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -136101,28 +136093,28 @@ export default { }, "v_tournament_player_stats_var_pop_order_by": { "assists": [ - 2952 + 2951 ], "deaths": [ - 2952 + 2951 ], "headshot_percentage": [ - 2952 + 2951 ], "headshots": [ - 2952 + 2951 ], "kdr": [ - 2952 + 2951 ], "kills": [ - 2952 + 2951 ], "matches_played": [ - 2952 + 2951 ], "player_steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -136159,28 +136151,28 @@ export default { }, "v_tournament_player_stats_var_samp_order_by": { "assists": [ - 2952 + 2951 ], "deaths": [ - 2952 + 2951 ], "headshot_percentage": [ - 2952 + 2951 ], "headshots": [ - 2952 + 2951 ], "kdr": [ - 2952 + 2951 ], "kills": [ - 2952 + 2951 ], "matches_played": [ - 2952 + 2951 ], "player_steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -136217,28 +136209,28 @@ export default { }, "v_tournament_player_stats_variance_order_by": { "assists": [ - 2952 + 2951 ], "deaths": [ - 2952 + 2951 ], "headshot_percentage": [ - 2952 + 2951 ], "headshots": [ - 2952 + 2951 ], "kdr": [ - 2952 + 2951 ], "kills": [ - 2952 + 2951 ], "matches_played": [ - 2952 + 2951 ], "player_steam_id": [ - 2952 + 2951 ], "__typename": [ 80 @@ -136246,10 +136238,10 @@ export default { }, "Query": { "_map_pool": [ - 101, + 100, { "distinct_on": [ - 113, + 112, "[_map_pool_select_column!]" ], "limit": [ @@ -136259,19 +136251,19 @@ export default { 40 ], "order_by": [ - 111, + 110, "[_map_pool_order_by!]" ], "where": [ - 104 + 103 ] } ], "_map_pool_aggregate": [ - 102, + 101, { "distinct_on": [ - 113, + 112, "[_map_pool_select_column!]" ], "limit": [ @@ -136281,32 +136273,32 @@ export default { 40 ], "order_by": [ - 111, + 110, "[_map_pool_order_by!]" ], "where": [ - 104 + 103 ] } ], "_map_pool_by_pk": [ - 101, + 100, { "map_id": [ - 4999, + 4998, "uuid!" ], "map_pool_id": [ - 4999, + 4998, "uuid!" ] } ], "abandoned_matches": [ - 120, + 119, { "distinct_on": [ - 141, + 140, "[abandoned_matches_select_column!]" ], "limit": [ @@ -136316,19 +136308,19 @@ export default { 40 ], "order_by": [ - 139, + 138, "[abandoned_matches_order_by!]" ], "where": [ - 129 + 128 ] } ], "abandoned_matches_aggregate": [ - 121, + 120, { "distinct_on": [ - 141, + 140, "[abandoned_matches_select_column!]" ], "limit": [ @@ -136338,28 +136330,28 @@ export default { 40 ], "order_by": [ - 139, + 138, "[abandoned_matches_order_by!]" ], "where": [ - 129 + 128 ] } ], "abandoned_matches_by_pk": [ - 120, + 119, { "id": [ - 4999, + 4998, "uuid!" ] } ], "api_keys": [ - 161, + 160, { "distinct_on": [ - 175, + 174, "[api_keys_select_column!]" ], "limit": [ @@ -136369,19 +136361,19 @@ export default { 40 ], "order_by": [ - 173, + 172, "[api_keys_order_by!]" ], "where": [ - 165 + 164 ] } ], "api_keys_aggregate": [ - 162, + 161, { "distinct_on": [ - 175, + 174, "[api_keys_select_column!]" ], "limit": [ @@ -136391,28 +136383,28 @@ export default { 40 ], "order_by": [ - 173, + 172, "[api_keys_order_by!]" ], "where": [ - 165 + 164 ] } ], "api_keys_by_pk": [ - 161, + 160, { "id": [ - 4999, + 4998, "uuid!" ] } ], "award_recipients": [ - 189, + 188, { "distinct_on": [ - 210, + 209, "[award_recipients_select_column!]" ], "limit": [ @@ -136422,19 +136414,19 @@ export default { 40 ], "order_by": [ - 208, + 207, "[award_recipients_order_by!]" ], "where": [ - 198 + 197 ] } ], "award_recipients_aggregate": [ - 190, + 189, { "distinct_on": [ - 210, + 209, "[award_recipients_select_column!]" ], "limit": [ @@ -136444,28 +136436,28 @@ export default { 40 ], "order_by": [ - 208, + 207, "[award_recipients_order_by!]" ], "where": [ - 198 + 197 ] } ], "award_recipients_by_pk": [ - 189, + 188, { "id": [ - 4999, + 4998, "uuid!" ] } ], "awards": [ - 230, + 229, { "distinct_on": [ - 245, + 244, "[awards_select_column!]" ], "limit": [ @@ -136475,19 +136467,19 @@ export default { 40 ], "order_by": [ - 243, + 242, "[awards_order_by!]" ], "where": [ - 234 + 233 ] } ], "awards_aggregate": [ - 231, + 230, { "distinct_on": [ - 245, + 244, "[awards_select_column!]" ], "limit": [ @@ -136497,28 +136489,28 @@ export default { 40 ], "order_by": [ - 243, + 242, "[awards_order_by!]" ], "where": [ - 234 + 233 ] } ], "awards_by_pk": [ - 230, + 229, { "id": [ - 4999, + 4998, "uuid!" ] } ], "clip_render_jobs": [ - 263, + 262, { "distinct_on": [ - 291, + 290, "[clip_render_jobs_select_column!]" ], "limit": [ @@ -136528,19 +136520,19 @@ export default { 40 ], "order_by": [ - 288, + 287, "[clip_render_jobs_order_by!]" ], "where": [ - 275 + 274 ] } ], "clip_render_jobs_aggregate": [ - 264, + 263, { "distinct_on": [ - 291, + 290, "[clip_render_jobs_select_column!]" ], "limit": [ @@ -136550,28 +136542,28 @@ export default { 40 ], "order_by": [ - 288, + 287, "[clip_render_jobs_order_by!]" ], "where": [ - 275 + 274 ] } ], "clip_render_jobs_by_pk": [ - 263, + 262, { "id": [ - 4999, + 4998, "uuid!" ] } ], "custom_pages": [ - 315, + 314, { "distinct_on": [ - 334, + 333, "[custom_pages_select_column!]" ], "limit": [ @@ -136581,19 +136573,19 @@ export default { 40 ], "order_by": [ - 331, + 330, "[custom_pages_order_by!]" ], "where": [ - 320 + 319 ] } ], "custom_pages_aggregate": [ - 316, + 315, { "distinct_on": [ - 334, + 333, "[custom_pages_select_column!]" ], "limit": [ @@ -136603,19 +136595,19 @@ export default { 40 ], "order_by": [ - 331, + 330, "[custom_pages_order_by!]" ], "where": [ - 320 + 319 ] } ], "custom_pages_by_pk": [ - 315, + 314, { "id": [ - 4999, + 4998, "uuid!" ] } @@ -136624,10 +136616,10 @@ export default { 19 ], "db_backups": [ - 347, + 346, { "distinct_on": [ - 361, + 360, "[db_backups_select_column!]" ], "limit": [ @@ -136637,19 +136629,19 @@ export default { 40 ], "order_by": [ - 359, + 358, "[db_backups_order_by!]" ], "where": [ - 351 + 350 ] } ], "db_backups_aggregate": [ - 348, + 347, { "distinct_on": [ - 361, + 360, "[db_backups_select_column!]" ], "limit": [ @@ -136659,28 +136651,28 @@ export default { 40 ], "order_by": [ - 359, + 358, "[db_backups_order_by!]" ], "where": [ - 351 + 350 ] } ], "db_backups_by_pk": [ - 347, + 346, { "id": [ - 4999, + 4998, "uuid!" ] } ], "draft_game_picks": [ - 374, + 373, { "distinct_on": [ - 397, + 396, "[draft_game_picks_select_column!]" ], "limit": [ @@ -136690,19 +136682,19 @@ export default { 40 ], "order_by": [ - 395, + 394, "[draft_game_picks_order_by!]" ], "where": [ - 385 + 384 ] } ], "draft_game_picks_aggregate": [ - 375, + 374, { "distinct_on": [ - 397, + 396, "[draft_game_picks_select_column!]" ], "limit": [ @@ -136712,28 +136704,28 @@ export default { 40 ], "order_by": [ - 395, + 394, "[draft_game_picks_order_by!]" ], "where": [ - 385 + 384 ] } ], "draft_game_picks_by_pk": [ - 374, + 373, { "id": [ - 4999, + 4998, "uuid!" ] } ], "draft_game_players": [ - 419, + 418, { "distinct_on": [ - 442, + 441, "[draft_game_players_select_column!]" ], "limit": [ @@ -136743,19 +136735,19 @@ export default { 40 ], "order_by": [ - 440, + 439, "[draft_game_players_order_by!]" ], "where": [ - 430 + 429 ] } ], "draft_game_players_aggregate": [ - 420, + 419, { "distinct_on": [ - 442, + 441, "[draft_game_players_select_column!]" ], "limit": [ @@ -136765,32 +136757,32 @@ export default { 40 ], "order_by": [ - 440, + 439, "[draft_game_players_order_by!]" ], "where": [ - 430 + 429 ] } ], "draft_game_players_by_pk": [ - 419, + 418, { "draft_game_id": [ - 4999, + 4998, "uuid!" ], "steam_id": [ - 258, + 257, "bigint!" ] } ], "draft_games": [ - 464, + 463, { "distinct_on": [ - 488, + 487, "[draft_games_select_column!]" ], "limit": [ @@ -136800,19 +136792,19 @@ export default { 40 ], "order_by": [ - 486, + 485, "[draft_games_order_by!]" ], "where": [ - 475 + 474 ] } ], "draft_games_aggregate": [ - 465, + 464, { "distinct_on": [ - 488, + 487, "[draft_games_select_column!]" ], "limit": [ @@ -136822,28 +136814,28 @@ export default { 40 ], "order_by": [ - 486, + 485, "[draft_games_order_by!]" ], "where": [ - 475 + 474 ] } ], "draft_games_by_pk": [ - 464, + 463, { "id": [ - 4999, + 4998, "uuid!" ] } ], "e_award_sources": [ - 510, + 509, { "distinct_on": [ - 524, + 523, "[e_award_sources_select_column!]" ], "limit": [ @@ -136853,19 +136845,19 @@ export default { 40 ], "order_by": [ - 522, + 521, "[e_award_sources_order_by!]" ], "where": [ - 513 + 512 ] } ], "e_award_sources_aggregate": [ - 511, + 510, { "distinct_on": [ - 524, + 523, "[e_award_sources_select_column!]" ], "limit": [ @@ -136875,16 +136867,16 @@ export default { 40 ], "order_by": [ - 522, + 521, "[e_award_sources_order_by!]" ], "where": [ - 513 + 512 ] } ], "e_award_sources_by_pk": [ - 510, + 509, { "value": [ 80, @@ -136893,10 +136885,10 @@ export default { } ], "e_award_tiers": [ - 530, + 529, { "distinct_on": [ - 544, + 543, "[e_award_tiers_select_column!]" ], "limit": [ @@ -136906,19 +136898,19 @@ export default { 40 ], "order_by": [ - 542, + 541, "[e_award_tiers_order_by!]" ], "where": [ - 533 + 532 ] } ], "e_award_tiers_aggregate": [ - 531, + 530, { "distinct_on": [ - 544, + 543, "[e_award_tiers_select_column!]" ], "limit": [ @@ -136928,16 +136920,16 @@ export default { 40 ], "order_by": [ - 542, + 541, "[e_award_tiers_order_by!]" ], "where": [ - 533 + 532 ] } ], "e_award_tiers_by_pk": [ - 530, + 529, { "value": [ 80, @@ -136946,10 +136938,10 @@ export default { } ], "e_check_in_settings": [ - 550, + 549, { "distinct_on": [ - 564, + 563, "[e_check_in_settings_select_column!]" ], "limit": [ @@ -136959,19 +136951,19 @@ export default { 40 ], "order_by": [ - 562, + 561, "[e_check_in_settings_order_by!]" ], "where": [ - 553 + 552 ] } ], "e_check_in_settings_aggregate": [ - 551, + 550, { "distinct_on": [ - 564, + 563, "[e_check_in_settings_select_column!]" ], "limit": [ @@ -136981,16 +136973,16 @@ export default { 40 ], "order_by": [ - 562, + 561, "[e_check_in_settings_order_by!]" ], "where": [ - 553 + 552 ] } ], "e_check_in_settings_by_pk": [ - 550, + 549, { "value": [ 80, @@ -136999,10 +136991,10 @@ export default { } ], "e_draft_game_captain_selection": [ - 570, + 569, { "distinct_on": [ - 585, + 584, "[e_draft_game_captain_selection_select_column!]" ], "limit": [ @@ -137012,19 +137004,19 @@ export default { 40 ], "order_by": [ - 583, + 582, "[e_draft_game_captain_selection_order_by!]" ], "where": [ - 573 + 572 ] } ], "e_draft_game_captain_selection_aggregate": [ - 571, + 570, { "distinct_on": [ - 585, + 584, "[e_draft_game_captain_selection_select_column!]" ], "limit": [ @@ -137034,16 +137026,16 @@ export default { 40 ], "order_by": [ - 583, + 582, "[e_draft_game_captain_selection_order_by!]" ], "where": [ - 573 + 572 ] } ], "e_draft_game_captain_selection_by_pk": [ - 570, + 569, { "value": [ 80, @@ -137052,10 +137044,10 @@ export default { } ], "e_draft_game_draft_order": [ - 591, + 590, { "distinct_on": [ - 606, + 605, "[e_draft_game_draft_order_select_column!]" ], "limit": [ @@ -137065,19 +137057,19 @@ export default { 40 ], "order_by": [ - 604, + 603, "[e_draft_game_draft_order_order_by!]" ], "where": [ - 594 + 593 ] } ], "e_draft_game_draft_order_aggregate": [ - 592, + 591, { "distinct_on": [ - 606, + 605, "[e_draft_game_draft_order_select_column!]" ], "limit": [ @@ -137087,16 +137079,16 @@ export default { 40 ], "order_by": [ - 604, + 603, "[e_draft_game_draft_order_order_by!]" ], "where": [ - 594 + 593 ] } ], "e_draft_game_draft_order_by_pk": [ - 591, + 590, { "value": [ 80, @@ -137105,10 +137097,10 @@ export default { } ], "e_draft_game_mode": [ - 612, + 611, { "distinct_on": [ - 627, + 626, "[e_draft_game_mode_select_column!]" ], "limit": [ @@ -137118,19 +137110,19 @@ export default { 40 ], "order_by": [ - 625, + 624, "[e_draft_game_mode_order_by!]" ], "where": [ - 615 + 614 ] } ], "e_draft_game_mode_aggregate": [ - 613, + 612, { "distinct_on": [ - 627, + 626, "[e_draft_game_mode_select_column!]" ], "limit": [ @@ -137140,16 +137132,16 @@ export default { 40 ], "order_by": [ - 625, + 624, "[e_draft_game_mode_order_by!]" ], "where": [ - 615 + 614 ] } ], "e_draft_game_mode_by_pk": [ - 612, + 611, { "value": [ 80, @@ -137158,10 +137150,10 @@ export default { } ], "e_draft_game_player_status": [ - 633, + 632, { "distinct_on": [ - 648, + 647, "[e_draft_game_player_status_select_column!]" ], "limit": [ @@ -137171,19 +137163,19 @@ export default { 40 ], "order_by": [ - 646, + 645, "[e_draft_game_player_status_order_by!]" ], "where": [ - 636 + 635 ] } ], "e_draft_game_player_status_aggregate": [ - 634, + 633, { "distinct_on": [ - 648, + 647, "[e_draft_game_player_status_select_column!]" ], "limit": [ @@ -137193,16 +137185,16 @@ export default { 40 ], "order_by": [ - 646, + 645, "[e_draft_game_player_status_order_by!]" ], "where": [ - 636 + 635 ] } ], "e_draft_game_player_status_by_pk": [ - 633, + 632, { "value": [ 80, @@ -137211,10 +137203,10 @@ export default { } ], "e_draft_game_status": [ - 654, + 653, { "distinct_on": [ - 669, + 668, "[e_draft_game_status_select_column!]" ], "limit": [ @@ -137224,19 +137216,19 @@ export default { 40 ], "order_by": [ - 667, + 666, "[e_draft_game_status_order_by!]" ], "where": [ - 657 + 656 ] } ], "e_draft_game_status_aggregate": [ - 655, + 654, { "distinct_on": [ - 669, + 668, "[e_draft_game_status_select_column!]" ], "limit": [ @@ -137246,16 +137238,16 @@ export default { 40 ], "order_by": [ - 667, + 666, "[e_draft_game_status_order_by!]" ], "where": [ - 657 + 656 ] } ], "e_draft_game_status_by_pk": [ - 654, + 653, { "value": [ 80, @@ -137264,10 +137256,10 @@ export default { } ], "e_event_media_access": [ - 675, + 674, { "distinct_on": [ - 689, + 688, "[e_event_media_access_select_column!]" ], "limit": [ @@ -137277,19 +137269,19 @@ export default { 40 ], "order_by": [ - 687, + 686, "[e_event_media_access_order_by!]" ], "where": [ - 678 + 677 ] } ], "e_event_media_access_aggregate": [ - 676, + 675, { "distinct_on": [ - 689, + 688, "[e_event_media_access_select_column!]" ], "limit": [ @@ -137299,16 +137291,16 @@ export default { 40 ], "order_by": [ - 687, + 686, "[e_event_media_access_order_by!]" ], "where": [ - 678 + 677 ] } ], "e_event_media_access_by_pk": [ - 675, + 674, { "value": [ 80, @@ -137317,10 +137309,10 @@ export default { } ], "e_event_visibility": [ - 695, + 694, { "distinct_on": [ - 709, + 708, "[e_event_visibility_select_column!]" ], "limit": [ @@ -137330,19 +137322,19 @@ export default { 40 ], "order_by": [ - 707, + 706, "[e_event_visibility_order_by!]" ], "where": [ - 698 + 697 ] } ], "e_event_visibility_aggregate": [ - 696, + 695, { "distinct_on": [ - 709, + 708, "[e_event_visibility_select_column!]" ], "limit": [ @@ -137352,16 +137344,16 @@ export default { 40 ], "order_by": [ - 707, + 706, "[e_event_visibility_order_by!]" ], "where": [ - 698 + 697 ] } ], "e_event_visibility_by_pk": [ - 695, + 694, { "value": [ 80, @@ -137370,10 +137362,10 @@ export default { } ], "e_friend_status": [ - 715, + 714, { "distinct_on": [ - 730, + 729, "[e_friend_status_select_column!]" ], "limit": [ @@ -137383,19 +137375,19 @@ export default { 40 ], "order_by": [ - 728, + 727, "[e_friend_status_order_by!]" ], "where": [ - 718 + 717 ] } ], "e_friend_status_aggregate": [ - 716, + 715, { "distinct_on": [ - 730, + 729, "[e_friend_status_select_column!]" ], "limit": [ @@ -137405,16 +137397,16 @@ export default { 40 ], "order_by": [ - 728, + 727, "[e_friend_status_order_by!]" ], "where": [ - 718 + 717 ] } ], "e_friend_status_by_pk": [ - 715, + 714, { "value": [ 80, @@ -137423,10 +137415,10 @@ export default { } ], "e_game_cfg_types": [ - 736, + 735, { "distinct_on": [ - 750, + 749, "[e_game_cfg_types_select_column!]" ], "limit": [ @@ -137436,19 +137428,19 @@ export default { 40 ], "order_by": [ - 748, + 747, "[e_game_cfg_types_order_by!]" ], "where": [ - 739 + 738 ] } ], "e_game_cfg_types_aggregate": [ - 737, + 736, { "distinct_on": [ - 750, + 749, "[e_game_cfg_types_select_column!]" ], "limit": [ @@ -137458,16 +137450,16 @@ export default { 40 ], "order_by": [ - 748, + 747, "[e_game_cfg_types_order_by!]" ], "where": [ - 739 + 738 ] } ], "e_game_cfg_types_by_pk": [ - 736, + 735, { "value": [ 80, @@ -137476,10 +137468,10 @@ export default { } ], "e_game_server_node_statuses": [ - 756, + 755, { "distinct_on": [ - 771, + 770, "[e_game_server_node_statuses_select_column!]" ], "limit": [ @@ -137489,19 +137481,19 @@ export default { 40 ], "order_by": [ - 769, + 768, "[e_game_server_node_statuses_order_by!]" ], "where": [ - 759 + 758 ] } ], "e_game_server_node_statuses_aggregate": [ - 757, + 756, { "distinct_on": [ - 771, + 770, "[e_game_server_node_statuses_select_column!]" ], "limit": [ @@ -137511,16 +137503,16 @@ export default { 40 ], "order_by": [ - 769, + 768, "[e_game_server_node_statuses_order_by!]" ], "where": [ - 759 + 758 ] } ], "e_game_server_node_statuses_by_pk": [ - 756, + 755, { "value": [ 80, @@ -137529,10 +137521,10 @@ export default { } ], "e_league_movement_types": [ - 777, + 776, { "distinct_on": [ - 792, + 791, "[e_league_movement_types_select_column!]" ], "limit": [ @@ -137542,19 +137534,19 @@ export default { 40 ], "order_by": [ - 790, + 789, "[e_league_movement_types_order_by!]" ], "where": [ - 780 + 779 ] } ], "e_league_movement_types_aggregate": [ - 778, + 777, { "distinct_on": [ - 792, + 791, "[e_league_movement_types_select_column!]" ], "limit": [ @@ -137564,16 +137556,16 @@ export default { 40 ], "order_by": [ - 790, + 789, "[e_league_movement_types_order_by!]" ], "where": [ - 780 + 779 ] } ], "e_league_movement_types_by_pk": [ - 777, + 776, { "value": [ 80, @@ -137582,10 +137574,10 @@ export default { } ], "e_league_proposal_statuses": [ - 798, + 797, { "distinct_on": [ - 813, + 812, "[e_league_proposal_statuses_select_column!]" ], "limit": [ @@ -137595,19 +137587,19 @@ export default { 40 ], "order_by": [ - 811, + 810, "[e_league_proposal_statuses_order_by!]" ], "where": [ - 801 + 800 ] } ], "e_league_proposal_statuses_aggregate": [ - 799, + 798, { "distinct_on": [ - 813, + 812, "[e_league_proposal_statuses_select_column!]" ], "limit": [ @@ -137617,16 +137609,16 @@ export default { 40 ], "order_by": [ - 811, + 810, "[e_league_proposal_statuses_order_by!]" ], "where": [ - 801 + 800 ] } ], "e_league_proposal_statuses_by_pk": [ - 798, + 797, { "value": [ 80, @@ -137635,10 +137627,10 @@ export default { } ], "e_league_registration_statuses": [ - 819, + 818, { "distinct_on": [ - 834, + 833, "[e_league_registration_statuses_select_column!]" ], "limit": [ @@ -137648,19 +137640,19 @@ export default { 40 ], "order_by": [ - 832, + 831, "[e_league_registration_statuses_order_by!]" ], "where": [ - 822 + 821 ] } ], "e_league_registration_statuses_aggregate": [ - 820, + 819, { "distinct_on": [ - 834, + 833, "[e_league_registration_statuses_select_column!]" ], "limit": [ @@ -137670,16 +137662,16 @@ export default { 40 ], "order_by": [ - 832, + 831, "[e_league_registration_statuses_order_by!]" ], "where": [ - 822 + 821 ] } ], "e_league_registration_statuses_by_pk": [ - 819, + 818, { "value": [ 80, @@ -137688,10 +137680,10 @@ export default { } ], "e_league_season_statuses": [ - 840, + 839, { "distinct_on": [ - 855, + 854, "[e_league_season_statuses_select_column!]" ], "limit": [ @@ -137701,19 +137693,19 @@ export default { 40 ], "order_by": [ - 853, + 852, "[e_league_season_statuses_order_by!]" ], "where": [ - 843 + 842 ] } ], "e_league_season_statuses_aggregate": [ - 841, + 840, { "distinct_on": [ - 855, + 854, "[e_league_season_statuses_select_column!]" ], "limit": [ @@ -137723,16 +137715,16 @@ export default { 40 ], "order_by": [ - 853, + 852, "[e_league_season_statuses_order_by!]" ], "where": [ - 843 + 842 ] } ], "e_league_season_statuses_by_pk": [ - 840, + 839, { "value": [ 80, @@ -137741,10 +137733,10 @@ export default { } ], "e_lobby_access": [ - 861, + 860, { "distinct_on": [ - 876, + 875, "[e_lobby_access_select_column!]" ], "limit": [ @@ -137754,19 +137746,19 @@ export default { 40 ], "order_by": [ - 874, + 873, "[e_lobby_access_order_by!]" ], "where": [ - 864 + 863 ] } ], "e_lobby_access_aggregate": [ - 862, + 861, { "distinct_on": [ - 876, + 875, "[e_lobby_access_select_column!]" ], "limit": [ @@ -137776,16 +137768,16 @@ export default { 40 ], "order_by": [ - 874, + 873, "[e_lobby_access_order_by!]" ], "where": [ - 864 + 863 ] } ], "e_lobby_access_by_pk": [ - 861, + 860, { "value": [ 80, @@ -137794,10 +137786,10 @@ export default { } ], "e_lobby_player_status": [ - 882, + 881, { "distinct_on": [ - 896, + 895, "[e_lobby_player_status_select_column!]" ], "limit": [ @@ -137807,19 +137799,19 @@ export default { 40 ], "order_by": [ - 894, + 893, "[e_lobby_player_status_order_by!]" ], "where": [ - 885 + 884 ] } ], "e_lobby_player_status_aggregate": [ - 883, + 882, { "distinct_on": [ - 896, + 895, "[e_lobby_player_status_select_column!]" ], "limit": [ @@ -137829,16 +137821,16 @@ export default { 40 ], "order_by": [ - 894, + 893, "[e_lobby_player_status_order_by!]" ], "where": [ - 885 + 884 ] } ], "e_lobby_player_status_by_pk": [ - 882, + 881, { "value": [ 80, @@ -137847,10 +137839,10 @@ export default { } ], "e_map_pool_types": [ - 902, + 901, { "distinct_on": [ - 917, + 916, "[e_map_pool_types_select_column!]" ], "limit": [ @@ -137860,19 +137852,19 @@ export default { 40 ], "order_by": [ - 915, + 914, "[e_map_pool_types_order_by!]" ], "where": [ - 905 + 904 ] } ], "e_map_pool_types_aggregate": [ - 903, + 902, { "distinct_on": [ - 917, + 916, "[e_map_pool_types_select_column!]" ], "limit": [ @@ -137882,16 +137874,16 @@ export default { 40 ], "order_by": [ - 915, + 914, "[e_map_pool_types_order_by!]" ], "where": [ - 905 + 904 ] } ], "e_map_pool_types_by_pk": [ - 902, + 901, { "value": [ 80, @@ -137900,10 +137892,10 @@ export default { } ], "e_match_clip_visibility": [ - 923, + 922, { "distinct_on": [ - 937, + 936, "[e_match_clip_visibility_select_column!]" ], "limit": [ @@ -137913,19 +137905,19 @@ export default { 40 ], "order_by": [ - 935, + 934, "[e_match_clip_visibility_order_by!]" ], "where": [ - 926 + 925 ] } ], "e_match_clip_visibility_aggregate": [ - 924, + 923, { "distinct_on": [ - 937, + 936, "[e_match_clip_visibility_select_column!]" ], "limit": [ @@ -137935,16 +137927,16 @@ export default { 40 ], "order_by": [ - 935, + 934, "[e_match_clip_visibility_order_by!]" ], "where": [ - 926 + 925 ] } ], "e_match_clip_visibility_by_pk": [ - 923, + 922, { "value": [ 80, @@ -137953,10 +137945,10 @@ export default { } ], "e_match_map_status": [ - 943, + 942, { "distinct_on": [ - 958, + 957, "[e_match_map_status_select_column!]" ], "limit": [ @@ -137966,19 +137958,19 @@ export default { 40 ], "order_by": [ - 956, + 955, "[e_match_map_status_order_by!]" ], "where": [ - 946 + 945 ] } ], "e_match_map_status_aggregate": [ - 944, + 943, { "distinct_on": [ - 958, + 957, "[e_match_map_status_select_column!]" ], "limit": [ @@ -137988,16 +137980,16 @@ export default { 40 ], "order_by": [ - 956, + 955, "[e_match_map_status_order_by!]" ], "where": [ - 946 + 945 ] } ], "e_match_map_status_by_pk": [ - 943, + 942, { "value": [ 80, @@ -138006,10 +137998,10 @@ export default { } ], "e_match_mode": [ - 964, + 963, { "distinct_on": [ - 978, + 977, "[e_match_mode_select_column!]" ], "limit": [ @@ -138019,19 +138011,19 @@ export default { 40 ], "order_by": [ - 976, + 975, "[e_match_mode_order_by!]" ], "where": [ - 967 + 966 ] } ], "e_match_mode_aggregate": [ - 965, + 964, { "distinct_on": [ - 978, + 977, "[e_match_mode_select_column!]" ], "limit": [ @@ -138041,16 +138033,16 @@ export default { 40 ], "order_by": [ - 976, + 975, "[e_match_mode_order_by!]" ], "where": [ - 967 + 966 ] } ], "e_match_mode_by_pk": [ - 964, + 963, { "value": [ 80, @@ -138059,10 +138051,10 @@ export default { } ], "e_match_status": [ - 984, + 983, { "distinct_on": [ - 999, + 998, "[e_match_status_select_column!]" ], "limit": [ @@ -138072,19 +138064,19 @@ export default { 40 ], "order_by": [ - 997, + 996, "[e_match_status_order_by!]" ], "where": [ - 987 + 986 ] } ], "e_match_status_aggregate": [ - 985, + 984, { "distinct_on": [ - 999, + 998, "[e_match_status_select_column!]" ], "limit": [ @@ -138094,16 +138086,16 @@ export default { 40 ], "order_by": [ - 997, + 996, "[e_match_status_order_by!]" ], "where": [ - 987 + 986 ] } ], "e_match_status_by_pk": [ - 984, + 983, { "value": [ 80, @@ -138112,10 +138104,10 @@ export default { } ], "e_match_types": [ - 1005, + 1004, { "distinct_on": [ - 1020, + 1019, "[e_match_types_select_column!]" ], "limit": [ @@ -138125,19 +138117,19 @@ export default { 40 ], "order_by": [ - 1018, + 1017, "[e_match_types_order_by!]" ], "where": [ - 1008 + 1007 ] } ], "e_match_types_aggregate": [ - 1006, + 1005, { "distinct_on": [ - 1020, + 1019, "[e_match_types_select_column!]" ], "limit": [ @@ -138147,16 +138139,16 @@ export default { 40 ], "order_by": [ - 1018, + 1017, "[e_match_types_order_by!]" ], "where": [ - 1008 + 1007 ] } ], "e_match_types_by_pk": [ - 1005, + 1004, { "value": [ 80, @@ -138165,10 +138157,10 @@ export default { } ], "e_notification_types": [ - 1026, + 1025, { "distinct_on": [ - 1040, + 1039, "[e_notification_types_select_column!]" ], "limit": [ @@ -138178,19 +138170,19 @@ export default { 40 ], "order_by": [ - 1038, + 1037, "[e_notification_types_order_by!]" ], "where": [ - 1029 + 1028 ] } ], "e_notification_types_aggregate": [ - 1027, + 1026, { "distinct_on": [ - 1040, + 1039, "[e_notification_types_select_column!]" ], "limit": [ @@ -138200,16 +138192,16 @@ export default { 40 ], "order_by": [ - 1038, + 1037, "[e_notification_types_order_by!]" ], "where": [ - 1029 + 1028 ] } ], "e_notification_types_by_pk": [ - 1026, + 1025, { "value": [ 80, @@ -138218,10 +138210,10 @@ export default { } ], "e_objective_types": [ - 1046, + 1045, { "distinct_on": [ - 1060, + 1059, "[e_objective_types_select_column!]" ], "limit": [ @@ -138231,19 +138223,19 @@ export default { 40 ], "order_by": [ - 1058, + 1057, "[e_objective_types_order_by!]" ], "where": [ - 1049 + 1048 ] } ], "e_objective_types_aggregate": [ - 1047, + 1046, { "distinct_on": [ - 1060, + 1059, "[e_objective_types_select_column!]" ], "limit": [ @@ -138253,16 +138245,16 @@ export default { 40 ], "order_by": [ - 1058, + 1057, "[e_objective_types_order_by!]" ], "where": [ - 1049 + 1048 ] } ], "e_objective_types_by_pk": [ - 1046, + 1045, { "value": [ 80, @@ -138271,10 +138263,10 @@ export default { } ], "e_player_roles": [ - 1066, + 1065, { "distinct_on": [ - 1080, + 1079, "[e_player_roles_select_column!]" ], "limit": [ @@ -138284,19 +138276,19 @@ export default { 40 ], "order_by": [ - 1078, + 1077, "[e_player_roles_order_by!]" ], "where": [ - 1069 + 1068 ] } ], "e_player_roles_aggregate": [ - 1067, + 1066, { "distinct_on": [ - 1080, + 1079, "[e_player_roles_select_column!]" ], "limit": [ @@ -138306,16 +138298,16 @@ export default { 40 ], "order_by": [ - 1078, + 1077, "[e_player_roles_order_by!]" ], "where": [ - 1069 + 1068 ] } ], "e_player_roles_by_pk": [ - 1066, + 1065, { "value": [ 80, @@ -138324,10 +138316,10 @@ export default { } ], "e_plugin_runtimes": [ - 1086, + 1085, { "distinct_on": [ - 1100, + 1099, "[e_plugin_runtimes_select_column!]" ], "limit": [ @@ -138337,19 +138329,19 @@ export default { 40 ], "order_by": [ - 1098, + 1097, "[e_plugin_runtimes_order_by!]" ], "where": [ - 1089 + 1088 ] } ], "e_plugin_runtimes_aggregate": [ - 1087, + 1086, { "distinct_on": [ - 1100, + 1099, "[e_plugin_runtimes_select_column!]" ], "limit": [ @@ -138359,16 +138351,16 @@ export default { 40 ], "order_by": [ - 1098, + 1097, "[e_plugin_runtimes_order_by!]" ], "where": [ - 1089 + 1088 ] } ], "e_plugin_runtimes_by_pk": [ - 1086, + 1085, { "value": [ 80, @@ -138377,10 +138369,10 @@ export default { } ], "e_ready_settings": [ - 1106, + 1105, { "distinct_on": [ - 1120, + 1119, "[e_ready_settings_select_column!]" ], "limit": [ @@ -138390,19 +138382,19 @@ export default { 40 ], "order_by": [ - 1118, + 1117, "[e_ready_settings_order_by!]" ], "where": [ - 1109 + 1108 ] } ], "e_ready_settings_aggregate": [ - 1107, + 1106, { "distinct_on": [ - 1120, + 1119, "[e_ready_settings_select_column!]" ], "limit": [ @@ -138412,16 +138404,16 @@ export default { 40 ], "order_by": [ - 1118, + 1117, "[e_ready_settings_order_by!]" ], "where": [ - 1109 + 1108 ] } ], "e_ready_settings_by_pk": [ - 1106, + 1105, { "value": [ 80, @@ -138430,10 +138422,10 @@ export default { } ], "e_sanction_types": [ - 1126, + 1125, { "distinct_on": [ - 1141, + 1140, "[e_sanction_types_select_column!]" ], "limit": [ @@ -138443,19 +138435,19 @@ export default { 40 ], "order_by": [ - 1139, + 1138, "[e_sanction_types_order_by!]" ], "where": [ - 1129 + 1128 ] } ], "e_sanction_types_aggregate": [ - 1127, + 1126, { "distinct_on": [ - 1141, + 1140, "[e_sanction_types_select_column!]" ], "limit": [ @@ -138465,16 +138457,16 @@ export default { 40 ], "order_by": [ - 1139, + 1138, "[e_sanction_types_order_by!]" ], "where": [ - 1129 + 1128 ] } ], "e_sanction_types_by_pk": [ - 1126, + 1125, { "value": [ 80, @@ -138483,10 +138475,10 @@ export default { } ], "e_scrim_request_statuses": [ - 1147, + 1146, { "distinct_on": [ - 1161, + 1160, "[e_scrim_request_statuses_select_column!]" ], "limit": [ @@ -138496,19 +138488,19 @@ export default { 40 ], "order_by": [ - 1159, + 1158, "[e_scrim_request_statuses_order_by!]" ], "where": [ - 1150 + 1149 ] } ], "e_scrim_request_statuses_aggregate": [ - 1148, + 1147, { "distinct_on": [ - 1161, + 1160, "[e_scrim_request_statuses_select_column!]" ], "limit": [ @@ -138518,16 +138510,16 @@ export default { 40 ], "order_by": [ - 1159, + 1158, "[e_scrim_request_statuses_order_by!]" ], "where": [ - 1150 + 1149 ] } ], "e_scrim_request_statuses_by_pk": [ - 1147, + 1146, { "value": [ 80, @@ -138536,10 +138528,10 @@ export default { } ], "e_server_types": [ - 1167, + 1166, { "distinct_on": [ - 1181, + 1180, "[e_server_types_select_column!]" ], "limit": [ @@ -138549,19 +138541,19 @@ export default { 40 ], "order_by": [ - 1179, + 1178, "[e_server_types_order_by!]" ], "where": [ - 1170 + 1169 ] } ], "e_server_types_aggregate": [ - 1168, + 1167, { "distinct_on": [ - 1181, + 1180, "[e_server_types_select_column!]" ], "limit": [ @@ -138571,16 +138563,16 @@ export default { 40 ], "order_by": [ - 1179, + 1178, "[e_server_types_order_by!]" ], "where": [ - 1170 + 1169 ] } ], "e_server_types_by_pk": [ - 1167, + 1166, { "value": [ 80, @@ -138589,10 +138581,10 @@ export default { } ], "e_sides": [ - 1187, + 1186, { "distinct_on": [ - 1201, + 1200, "[e_sides_select_column!]" ], "limit": [ @@ -138602,19 +138594,19 @@ export default { 40 ], "order_by": [ - 1199, + 1198, "[e_sides_order_by!]" ], "where": [ - 1190 + 1189 ] } ], "e_sides_aggregate": [ - 1188, + 1187, { "distinct_on": [ - 1201, + 1200, "[e_sides_select_column!]" ], "limit": [ @@ -138624,16 +138616,16 @@ export default { 40 ], "order_by": [ - 1199, + 1198, "[e_sides_order_by!]" ], "where": [ - 1190 + 1189 ] } ], "e_sides_by_pk": [ - 1187, + 1186, { "value": [ 80, @@ -138642,10 +138634,10 @@ export default { } ], "e_system_alert_types": [ - 1207, + 1206, { "distinct_on": [ - 1221, + 1220, "[e_system_alert_types_select_column!]" ], "limit": [ @@ -138655,19 +138647,19 @@ export default { 40 ], "order_by": [ - 1219, + 1218, "[e_system_alert_types_order_by!]" ], "where": [ - 1210 + 1209 ] } ], "e_system_alert_types_aggregate": [ - 1208, + 1207, { "distinct_on": [ - 1221, + 1220, "[e_system_alert_types_select_column!]" ], "limit": [ @@ -138677,16 +138669,16 @@ export default { 40 ], "order_by": [ - 1219, + 1218, "[e_system_alert_types_order_by!]" ], "where": [ - 1210 + 1209 ] } ], "e_system_alert_types_by_pk": [ - 1207, + 1206, { "value": [ 80, @@ -138695,10 +138687,10 @@ export default { } ], "e_team_roles": [ - 1227, + 1226, { "distinct_on": [ - 1242, + 1241, "[e_team_roles_select_column!]" ], "limit": [ @@ -138708,19 +138700,19 @@ export default { 40 ], "order_by": [ - 1240, + 1239, "[e_team_roles_order_by!]" ], "where": [ - 1230 + 1229 ] } ], "e_team_roles_aggregate": [ - 1228, + 1227, { "distinct_on": [ - 1242, + 1241, "[e_team_roles_select_column!]" ], "limit": [ @@ -138730,16 +138722,16 @@ export default { 40 ], "order_by": [ - 1240, + 1239, "[e_team_roles_order_by!]" ], "where": [ - 1230 + 1229 ] } ], "e_team_roles_by_pk": [ - 1227, + 1226, { "value": [ 80, @@ -138748,10 +138740,10 @@ export default { } ], "e_team_roster_statuses": [ - 1248, + 1247, { "distinct_on": [ - 1262, + 1261, "[e_team_roster_statuses_select_column!]" ], "limit": [ @@ -138761,19 +138753,19 @@ export default { 40 ], "order_by": [ - 1260, + 1259, "[e_team_roster_statuses_order_by!]" ], "where": [ - 1251 + 1250 ] } ], "e_team_roster_statuses_aggregate": [ - 1249, + 1248, { "distinct_on": [ - 1262, + 1261, "[e_team_roster_statuses_select_column!]" ], "limit": [ @@ -138783,16 +138775,16 @@ export default { 40 ], "order_by": [ - 1260, + 1259, "[e_team_roster_statuses_order_by!]" ], "where": [ - 1251 + 1250 ] } ], "e_team_roster_statuses_by_pk": [ - 1248, + 1247, { "value": [ 80, @@ -138801,10 +138793,10 @@ export default { } ], "e_timeout_settings": [ - 1268, + 1267, { "distinct_on": [ - 1282, + 1281, "[e_timeout_settings_select_column!]" ], "limit": [ @@ -138814,19 +138806,19 @@ export default { 40 ], "order_by": [ - 1280, + 1279, "[e_timeout_settings_order_by!]" ], "where": [ - 1271 + 1270 ] } ], "e_timeout_settings_aggregate": [ - 1269, + 1268, { "distinct_on": [ - 1282, + 1281, "[e_timeout_settings_select_column!]" ], "limit": [ @@ -138836,16 +138828,16 @@ export default { 40 ], "order_by": [ - 1280, + 1279, "[e_timeout_settings_order_by!]" ], "where": [ - 1271 + 1270 ] } ], "e_timeout_settings_by_pk": [ - 1268, + 1267, { "value": [ 80, @@ -138854,10 +138846,10 @@ export default { } ], "e_tournament_categories": [ - 1288, + 1287, { "distinct_on": [ - 1303, + 1302, "[e_tournament_categories_select_column!]" ], "limit": [ @@ -138867,19 +138859,19 @@ export default { 40 ], "order_by": [ - 1301, + 1300, "[e_tournament_categories_order_by!]" ], "where": [ - 1291 + 1290 ] } ], "e_tournament_categories_aggregate": [ - 1289, + 1288, { "distinct_on": [ - 1303, + 1302, "[e_tournament_categories_select_column!]" ], "limit": [ @@ -138889,16 +138881,16 @@ export default { 40 ], "order_by": [ - 1301, + 1300, "[e_tournament_categories_order_by!]" ], "where": [ - 1291 + 1290 ] } ], "e_tournament_categories_by_pk": [ - 1288, + 1287, { "value": [ 80, @@ -138907,10 +138899,10 @@ export default { } ], "e_tournament_stage_types": [ - 1309, + 1308, { "distinct_on": [ - 1324, + 1323, "[e_tournament_stage_types_select_column!]" ], "limit": [ @@ -138920,19 +138912,19 @@ export default { 40 ], "order_by": [ - 1322, + 1321, "[e_tournament_stage_types_order_by!]" ], "where": [ - 1312 + 1311 ] } ], "e_tournament_stage_types_aggregate": [ - 1310, + 1309, { "distinct_on": [ - 1324, + 1323, "[e_tournament_stage_types_select_column!]" ], "limit": [ @@ -138942,16 +138934,16 @@ export default { 40 ], "order_by": [ - 1322, + 1321, "[e_tournament_stage_types_order_by!]" ], "where": [ - 1312 + 1311 ] } ], "e_tournament_stage_types_by_pk": [ - 1309, + 1308, { "value": [ 80, @@ -138960,10 +138952,10 @@ export default { } ], "e_tournament_status": [ - 1330, + 1329, { "distinct_on": [ - 1345, + 1344, "[e_tournament_status_select_column!]" ], "limit": [ @@ -138973,19 +138965,19 @@ export default { 40 ], "order_by": [ - 1343, + 1342, "[e_tournament_status_order_by!]" ], "where": [ - 1333 + 1332 ] } ], "e_tournament_status_aggregate": [ - 1331, + 1330, { "distinct_on": [ - 1345, + 1344, "[e_tournament_status_select_column!]" ], "limit": [ @@ -138995,16 +138987,16 @@ export default { 40 ], "order_by": [ - 1343, + 1342, "[e_tournament_status_order_by!]" ], "where": [ - 1333 + 1332 ] } ], "e_tournament_status_by_pk": [ - 1330, + 1329, { "value": [ 80, @@ -139013,10 +139005,10 @@ export default { } ], "e_utility_types": [ - 1351, + 1350, { "distinct_on": [ - 1365, + 1364, "[e_utility_types_select_column!]" ], "limit": [ @@ -139026,19 +139018,19 @@ export default { 40 ], "order_by": [ - 1363, + 1362, "[e_utility_types_order_by!]" ], "where": [ - 1354 + 1353 ] } ], "e_utility_types_aggregate": [ - 1352, + 1351, { "distinct_on": [ - 1365, + 1364, "[e_utility_types_select_column!]" ], "limit": [ @@ -139048,16 +139040,16 @@ export default { 40 ], "order_by": [ - 1363, + 1362, "[e_utility_types_order_by!]" ], "where": [ - 1354 + 1353 ] } ], "e_utility_types_by_pk": [ - 1351, + 1350, { "value": [ 80, @@ -139066,10 +139058,10 @@ export default { } ], "e_veto_pick_types": [ - 1371, + 1370, { "distinct_on": [ - 1385, + 1384, "[e_veto_pick_types_select_column!]" ], "limit": [ @@ -139079,19 +139071,19 @@ export default { 40 ], "order_by": [ - 1383, + 1382, "[e_veto_pick_types_order_by!]" ], "where": [ - 1374 + 1373 ] } ], "e_veto_pick_types_aggregate": [ - 1372, + 1371, { "distinct_on": [ - 1385, + 1384, "[e_veto_pick_types_select_column!]" ], "limit": [ @@ -139101,16 +139093,16 @@ export default { 40 ], "order_by": [ - 1383, + 1382, "[e_veto_pick_types_order_by!]" ], "where": [ - 1374 + 1373 ] } ], "e_veto_pick_types_by_pk": [ - 1371, + 1370, { "value": [ 80, @@ -139119,10 +139111,10 @@ export default { } ], "e_winning_reasons": [ - 1391, + 1390, { "distinct_on": [ - 1405, + 1404, "[e_winning_reasons_select_column!]" ], "limit": [ @@ -139132,19 +139124,19 @@ export default { 40 ], "order_by": [ - 1403, + 1402, "[e_winning_reasons_order_by!]" ], "where": [ - 1394 + 1393 ] } ], "e_winning_reasons_aggregate": [ - 1392, + 1391, { "distinct_on": [ - 1405, + 1404, "[e_winning_reasons_select_column!]" ], "limit": [ @@ -139154,16 +139146,16 @@ export default { 40 ], "order_by": [ - 1403, + 1402, "[e_winning_reasons_order_by!]" ], "where": [ - 1394 + 1393 ] } ], "e_winning_reasons_by_pk": [ - 1391, + 1390, { "value": [ 80, @@ -139172,10 +139164,10 @@ export default { } ], "event_match_links": [ - 1411, + 1410, { "distinct_on": [ - 1423, + 1422, "[event_match_links_select_column!]" ], "limit": [ @@ -139185,19 +139177,19 @@ export default { 40 ], "order_by": [ - 1421, + 1420, "[event_match_links_order_by!]" ], "where": [ - 1414 + 1413 ] } ], "event_match_links_aggregate": [ - 1412, + 1411, { "distinct_on": [ - 1423, + 1422, "[event_match_links_select_column!]" ], "limit": [ @@ -139207,32 +139199,32 @@ export default { 40 ], "order_by": [ - 1421, + 1420, "[event_match_links_order_by!]" ], "where": [ - 1414 + 1413 ] } ], "event_match_links_by_pk": [ - 1411, + 1410, { "event_id": [ - 4999, + 4998, "uuid!" ], "match_id": [ - 4999, + 4998, "uuid!" ] } ], "event_media": [ - 1429, + 1428, { "distinct_on": [ - 1492, + 1491, "[event_media_select_column!]" ], "limit": [ @@ -139242,19 +139234,19 @@ export default { 40 ], "order_by": [ - 1449, + 1448, "[event_media_order_by!]" ], "where": [ - 1438 + 1437 ] } ], "event_media_aggregate": [ - 1430, + 1429, { "distinct_on": [ - 1492, + 1491, "[event_media_select_column!]" ], "limit": [ @@ -139264,28 +139256,28 @@ export default { 40 ], "order_by": [ - 1449, + 1448, "[event_media_order_by!]" ], "where": [ - 1438 + 1437 ] } ], "event_media_by_pk": [ - 1429, + 1428, { "id": [ - 4999, + 4998, "uuid!" ] } ], "event_media_players": [ - 1451, + 1450, { "distinct_on": [ - 1472, + 1471, "[event_media_players_select_column!]" ], "limit": [ @@ -139295,19 +139287,19 @@ export default { 40 ], "order_by": [ - 1470, + 1469, "[event_media_players_order_by!]" ], "where": [ - 1460 + 1459 ] } ], "event_media_players_aggregate": [ - 1452, + 1451, { "distinct_on": [ - 1472, + 1471, "[event_media_players_select_column!]" ], "limit": [ @@ -139317,32 +139309,32 @@ export default { 40 ], "order_by": [ - 1470, + 1469, "[event_media_players_order_by!]" ], "where": [ - 1460 + 1459 ] } ], "event_media_players_by_pk": [ - 1451, + 1450, { "media_id": [ - 4999, + 4998, "uuid!" ], "steam_id": [ - 258, + 257, "bigint!" ] } ], "event_organizers": [ - 1512, + 1511, { "distinct_on": [ - 1533, + 1532, "[event_organizers_select_column!]" ], "limit": [ @@ -139352,19 +139344,19 @@ export default { 40 ], "order_by": [ - 1531, + 1530, "[event_organizers_order_by!]" ], "where": [ - 1521 + 1520 ] } ], "event_organizers_aggregate": [ - 1513, + 1512, { "distinct_on": [ - 1533, + 1532, "[event_organizers_select_column!]" ], "limit": [ @@ -139374,32 +139366,32 @@ export default { 40 ], "order_by": [ - 1531, + 1530, "[event_organizers_order_by!]" ], "where": [ - 1521 + 1520 ] } ], "event_organizers_by_pk": [ - 1512, + 1511, { "event_id": [ - 4999, + 4998, "uuid!" ], "steam_id": [ - 258, + 257, "bigint!" ] } ], "event_players": [ - 1553, + 1552, { "distinct_on": [ - 1574, + 1573, "[event_players_select_column!]" ], "limit": [ @@ -139409,19 +139401,19 @@ export default { 40 ], "order_by": [ - 1572, + 1571, "[event_players_order_by!]" ], "where": [ - 1562 + 1561 ] } ], "event_players_aggregate": [ - 1554, + 1553, { "distinct_on": [ - 1574, + 1573, "[event_players_select_column!]" ], "limit": [ @@ -139431,32 +139423,32 @@ export default { 40 ], "order_by": [ - 1572, + 1571, "[event_players_order_by!]" ], "where": [ - 1562 + 1561 ] } ], "event_players_by_pk": [ - 1553, + 1552, { "event_id": [ - 4999, + 4998, "uuid!" ], "steam_id": [ - 258, + 257, "bigint!" ] } ], "event_teams": [ - 1594, + 1593, { "distinct_on": [ - 1612, + 1611, "[event_teams_select_column!]" ], "limit": [ @@ -139466,19 +139458,19 @@ export default { 40 ], "order_by": [ - 1610, + 1609, "[event_teams_order_by!]" ], "where": [ - 1601 + 1600 ] } ], "event_teams_aggregate": [ - 1595, + 1594, { "distinct_on": [ - 1612, + 1611, "[event_teams_select_column!]" ], "limit": [ @@ -139488,32 +139480,32 @@ export default { 40 ], "order_by": [ - 1610, + 1609, "[event_teams_order_by!]" ], "where": [ - 1601 + 1600 ] } ], "event_teams_by_pk": [ - 1594, + 1593, { "event_id": [ - 4999, + 4998, "uuid!" ], "team_id": [ - 4999, + 4998, "uuid!" ] } ], "event_tournaments": [ - 1618, + 1617, { "distinct_on": [ - 1636, + 1635, "[event_tournaments_select_column!]" ], "limit": [ @@ -139523,19 +139515,19 @@ export default { 40 ], "order_by": [ - 1634, + 1633, "[event_tournaments_order_by!]" ], "where": [ - 1625 + 1624 ] } ], "event_tournaments_aggregate": [ - 1619, + 1618, { "distinct_on": [ - 1636, + 1635, "[event_tournaments_select_column!]" ], "limit": [ @@ -139545,32 +139537,32 @@ export default { 40 ], "order_by": [ - 1634, + 1633, "[event_tournaments_order_by!]" ], "where": [ - 1625 + 1624 ] } ], "event_tournaments_by_pk": [ - 1618, + 1617, { "event_id": [ - 4999, + 4998, "uuid!" ], "tournament_id": [ - 4999, + 4998, "uuid!" ] } ], "events": [ - 1642, + 1641, { "distinct_on": [ - 1657, + 1656, "[events_select_column!]" ], "limit": [ @@ -139580,19 +139572,19 @@ export default { 40 ], "order_by": [ - 1655, + 1654, "[events_order_by!]" ], "where": [ - 1646 + 1645 ] } ], "events_aggregate": [ - 1643, + 1642, { "distinct_on": [ - 1657, + 1656, "[events_select_column!]" ], "limit": [ @@ -139602,28 +139594,28 @@ export default { 40 ], "order_by": [ - 1655, + 1654, "[events_order_by!]" ], "where": [ - 1646 + 1645 ] } ], "events_by_pk": [ - 1642, + 1641, { "id": [ - 4999, + 4998, "uuid!" ] } ], "friends": [ - 1672, + 1671, { "distinct_on": [ - 1686, + 1685, "[friends_select_column!]" ], "limit": [ @@ -139633,19 +139625,19 @@ export default { 40 ], "order_by": [ - 1684, + 1683, "[friends_order_by!]" ], "where": [ - 1676 + 1675 ] } ], "friends_aggregate": [ - 1673, + 1672, { "distinct_on": [ - 1686, + 1685, "[friends_select_column!]" ], "limit": [ @@ -139655,32 +139647,32 @@ export default { 40 ], "order_by": [ - 1684, + 1683, "[friends_order_by!]" ], "where": [ - 1676 + 1675 ] } ], "friends_by_pk": [ - 1672, + 1671, { "other_player_steam_id": [ - 258, + 257, "bigint!" ], "player_steam_id": [ - 258, + 257, "bigint!" ] } ], "game_server_nodes": [ - 1699, + 1698, { "distinct_on": [ - 1728, + 1727, "[game_server_nodes_select_column!]" ], "limit": [ @@ -139690,19 +139682,19 @@ export default { 40 ], "order_by": [ - 1725, + 1724, "[game_server_nodes_order_by!]" ], "where": [ - 1711 + 1710 ] } ], "game_server_nodes_aggregate": [ - 1700, + 1699, { "distinct_on": [ - 1728, + 1727, "[game_server_nodes_select_column!]" ], "limit": [ @@ -139712,16 +139704,16 @@ export default { 40 ], "order_by": [ - 1725, + 1724, "[game_server_nodes_order_by!]" ], "where": [ - 1711 + 1710 ] } ], "game_server_nodes_by_pk": [ - 1699, + 1698, { "id": [ 80, @@ -139730,10 +139722,10 @@ export default { } ], "game_versions": [ - 1750, + 1749, { "distinct_on": [ - 1770, + 1769, "[game_versions_select_column!]" ], "limit": [ @@ -139743,19 +139735,19 @@ export default { 40 ], "order_by": [ - 1767, + 1766, "[game_versions_order_by!]" ], "where": [ - 1755 + 1754 ] } ], "game_versions_aggregate": [ - 1751, + 1750, { "distinct_on": [ - 1770, + 1769, "[game_versions_select_column!]" ], "limit": [ @@ -139765,16 +139757,16 @@ export default { 40 ], "order_by": [ - 1767, + 1766, "[game_versions_order_by!]" ], "where": [ - 1755 + 1754 ] } ], "game_versions_by_pk": [ - 1750, + 1749, { "build_id": [ 40, @@ -139783,10 +139775,10 @@ export default { } ], "gamedata_signature_validations": [ - 1783, + 1782, { "distinct_on": [ - 1802, + 1801, "[gamedata_signature_validations_select_column!]" ], "limit": [ @@ -139796,19 +139788,19 @@ export default { 40 ], "order_by": [ - 1799, + 1798, "[gamedata_signature_validations_order_by!]" ], "where": [ - 1788 + 1787 ] } ], "gamedata_signature_validations_aggregate": [ - 1784, + 1783, { "distinct_on": [ - 1802, + 1801, "[gamedata_signature_validations_select_column!]" ], "limit": [ @@ -139818,19 +139810,19 @@ export default { 40 ], "order_by": [ - 1799, + 1798, "[gamedata_signature_validations_order_by!]" ], "where": [ - 1788 + 1787 ] } ], "gamedata_signature_validations_by_pk": [ - 1783, + 1782, { "id": [ - 4999, + 4998, "uuid!" ] } @@ -139866,7 +139858,7 @@ export default { 36, { "match_map_id": [ - 4999, + 4998, "uuid!" ], "target_steam_id": [ @@ -139948,17 +139940,17 @@ export default { } ], "getTimescaleStats": [ - 97 + 96 ], "get_event_leaderboard": [ - 1826, + 1825, { "args": [ - 1815, + 1814, "get_event_leaderboard_args!" ], "distinct_on": [ - 1837, + 1836, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -139968,23 +139960,23 @@ export default { 40 ], "order_by": [ - 1836, + 1835, "[leaderboard_entries_order_by!]" ], "where": [ - 1830 + 1829 ] } ], "get_event_leaderboard_aggregate": [ - 1827, + 1826, { "args": [ - 1815, + 1814, "get_event_leaderboard_args!" ], "distinct_on": [ - 1837, + 1836, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -139994,23 +139986,23 @@ export default { 40 ], "order_by": [ - 1836, + 1835, "[leaderboard_entries_order_by!]" ], "where": [ - 1830 + 1829 ] } ], "get_leaderboard": [ - 1826, + 1825, { "args": [ - 1816, + 1815, "get_leaderboard_args!" ], "distinct_on": [ - 1837, + 1836, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -140020,23 +140012,23 @@ export default { 40 ], "order_by": [ - 1836, + 1835, "[leaderboard_entries_order_by!]" ], "where": [ - 1830 + 1829 ] } ], "get_leaderboard_aggregate": [ - 1827, + 1826, { "args": [ - 1816, + 1815, "get_leaderboard_args!" ], "distinct_on": [ - 1837, + 1836, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -140046,23 +140038,23 @@ export default { 40 ], "order_by": [ - 1836, + 1835, "[leaderboard_entries_order_by!]" ], "where": [ - 1830 + 1829 ] } ], "get_league_season_leaderboard": [ - 1826, + 1825, { "args": [ - 1817, + 1816, "get_league_season_leaderboard_args!" ], "distinct_on": [ - 1837, + 1836, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -140072,23 +140064,23 @@ export default { 40 ], "order_by": [ - 1836, + 1835, "[leaderboard_entries_order_by!]" ], "where": [ - 1830 + 1829 ] } ], "get_league_season_leaderboard_aggregate": [ - 1827, + 1826, { "args": [ - 1817, + 1816, "get_league_season_leaderboard_args!" ], "distinct_on": [ - 1837, + 1836, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -140098,23 +140090,23 @@ export default { 40 ], "order_by": [ - 1836, + 1835, "[leaderboard_entries_order_by!]" ], "where": [ - 1830 + 1829 ] } ], "get_player_leaderboard_rank": [ - 3393, + 3392, { "args": [ - 1818, + 1817, "get_player_leaderboard_rank_args!" ], "distinct_on": [ - 3404, + 3403, "[player_leaderboard_rank_select_column!]" ], "limit": [ @@ -140124,23 +140116,23 @@ export default { 40 ], "order_by": [ - 3403, + 3402, "[player_leaderboard_rank_order_by!]" ], "where": [ - 3397 + 3396 ] } ], "get_player_leaderboard_rank_aggregate": [ - 3394, + 3393, { "args": [ - 1818, + 1817, "get_player_leaderboard_rank_args!" ], "distinct_on": [ - 3404, + 3403, "[player_leaderboard_rank_select_column!]" ], "limit": [ @@ -140150,19 +140142,19 @@ export default { 40 ], "order_by": [ - 3403, + 3402, "[player_leaderboard_rank_order_by!]" ], "where": [ - 3397 + 3396 ] } ], "leaderboard_entries": [ - 1826, + 1825, { "distinct_on": [ - 1837, + 1836, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -140172,19 +140164,19 @@ export default { 40 ], "order_by": [ - 1836, + 1835, "[leaderboard_entries_order_by!]" ], "where": [ - 1830 + 1829 ] } ], "leaderboard_entries_aggregate": [ - 1827, + 1826, { "distinct_on": [ - 1837, + 1836, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -140194,19 +140186,19 @@ export default { 40 ], "order_by": [ - 1836, + 1835, "[leaderboard_entries_order_by!]" ], "where": [ - 1830 + 1829 ] } ], "league_divisions": [ - 1850, + 1849, { "distinct_on": [ - 1865, + 1864, "[league_divisions_select_column!]" ], "limit": [ @@ -140216,19 +140208,19 @@ export default { 40 ], "order_by": [ - 1863, + 1862, "[league_divisions_order_by!]" ], "where": [ - 1854 + 1853 ] } ], "league_divisions_aggregate": [ - 1851, + 1850, { "distinct_on": [ - 1865, + 1864, "[league_divisions_select_column!]" ], "limit": [ @@ -140238,28 +140230,28 @@ export default { 40 ], "order_by": [ - 1863, + 1862, "[league_divisions_order_by!]" ], "where": [ - 1854 + 1853 ] } ], "league_divisions_by_pk": [ - 1850, + 1849, { "id": [ - 4999, + 4998, "uuid!" ] } ], "league_match_weeks": [ - 1878, + 1877, { "distinct_on": [ - 1899, + 1898, "[league_match_weeks_select_column!]" ], "limit": [ @@ -140269,19 +140261,19 @@ export default { 40 ], "order_by": [ - 1897, + 1896, "[league_match_weeks_order_by!]" ], "where": [ - 1887 + 1886 ] } ], "league_match_weeks_aggregate": [ - 1879, + 1878, { "distinct_on": [ - 1899, + 1898, "[league_match_weeks_select_column!]" ], "limit": [ @@ -140291,28 +140283,28 @@ export default { 40 ], "order_by": [ - 1897, + 1896, "[league_match_weeks_order_by!]" ], "where": [ - 1887 + 1886 ] } ], "league_match_weeks_by_pk": [ - 1878, + 1877, { "id": [ - 4999, + 4998, "uuid!" ] } ], "league_relegation_playoffs": [ - 1919, + 1918, { "distinct_on": [ - 1940, + 1939, "[league_relegation_playoffs_select_column!]" ], "limit": [ @@ -140322,19 +140314,19 @@ export default { 40 ], "order_by": [ - 1938, + 1937, "[league_relegation_playoffs_order_by!]" ], "where": [ - 1928 + 1927 ] } ], "league_relegation_playoffs_aggregate": [ - 1920, + 1919, { "distinct_on": [ - 1940, + 1939, "[league_relegation_playoffs_select_column!]" ], "limit": [ @@ -140344,28 +140336,28 @@ export default { 40 ], "order_by": [ - 1938, + 1937, "[league_relegation_playoffs_order_by!]" ], "where": [ - 1928 + 1927 ] } ], "league_relegation_playoffs_by_pk": [ - 1919, + 1918, { "id": [ - 4999, + 4998, "uuid!" ] } ], "league_scheduling_proposals": [ - 1960, + 1959, { "distinct_on": [ - 1981, + 1980, "[league_scheduling_proposals_select_column!]" ], "limit": [ @@ -140375,19 +140367,19 @@ export default { 40 ], "order_by": [ - 1979, + 1978, "[league_scheduling_proposals_order_by!]" ], "where": [ - 1969 + 1968 ] } ], "league_scheduling_proposals_aggregate": [ - 1961, + 1960, { "distinct_on": [ - 1981, + 1980, "[league_scheduling_proposals_select_column!]" ], "limit": [ @@ -140397,28 +140389,28 @@ export default { 40 ], "order_by": [ - 1979, + 1978, "[league_scheduling_proposals_order_by!]" ], "where": [ - 1969 + 1968 ] } ], "league_scheduling_proposals_by_pk": [ - 1960, + 1959, { "id": [ - 4999, + 4998, "uuid!" ] } ], "league_season_divisions": [ - 2001, + 2000, { "distinct_on": [ - 2020, + 2019, "[league_season_divisions_select_column!]" ], "limit": [ @@ -140428,19 +140420,19 @@ export default { 40 ], "order_by": [ - 2018, + 2017, "[league_season_divisions_order_by!]" ], "where": [ - 2008 + 2007 ] } ], "league_season_divisions_aggregate": [ - 2002, + 2001, { "distinct_on": [ - 2020, + 2019, "[league_season_divisions_select_column!]" ], "limit": [ @@ -140450,28 +140442,28 @@ export default { 40 ], "order_by": [ - 2018, + 2017, "[league_season_divisions_order_by!]" ], "where": [ - 2008 + 2007 ] } ], "league_season_divisions_by_pk": [ - 2001, + 2000, { "id": [ - 4999, + 4998, "uuid!" ] } ], "league_seasons": [ - 2026, + 2025, { "distinct_on": [ - 2046, + 2045, "[league_seasons_select_column!]" ], "limit": [ @@ -140481,19 +140473,19 @@ export default { 40 ], "order_by": [ - 2043, + 2042, "[league_seasons_order_by!]" ], "where": [ - 2031 + 2030 ] } ], "league_seasons_aggregate": [ - 2027, + 2026, { "distinct_on": [ - 2046, + 2045, "[league_seasons_select_column!]" ], "limit": [ @@ -140503,28 +140495,28 @@ export default { 40 ], "order_by": [ - 2043, + 2042, "[league_seasons_order_by!]" ], "where": [ - 2031 + 2030 ] } ], "league_seasons_by_pk": [ - 2026, + 2025, { "id": [ - 4999, + 4998, "uuid!" ] } ], "league_team_movements": [ - 2059, + 2058, { "distinct_on": [ - 2080, + 2079, "[league_team_movements_select_column!]" ], "limit": [ @@ -140534,19 +140526,19 @@ export default { 40 ], "order_by": [ - 2078, + 2077, "[league_team_movements_order_by!]" ], "where": [ - 2068 + 2067 ] } ], "league_team_movements_aggregate": [ - 2060, + 2059, { "distinct_on": [ - 2080, + 2079, "[league_team_movements_select_column!]" ], "limit": [ @@ -140556,28 +140548,28 @@ export default { 40 ], "order_by": [ - 2078, + 2077, "[league_team_movements_order_by!]" ], "where": [ - 2068 + 2067 ] } ], "league_team_movements_by_pk": [ - 2059, + 2058, { "id": [ - 4999, + 4998, "uuid!" ] } ], "league_team_rosters": [ - 2100, + 2099, { "distinct_on": [ - 2121, + 2120, "[league_team_rosters_select_column!]" ], "limit": [ @@ -140587,19 +140579,19 @@ export default { 40 ], "order_by": [ - 2119, + 2118, "[league_team_rosters_order_by!]" ], "where": [ - 2109 + 2108 ] } ], "league_team_rosters_aggregate": [ - 2101, + 2100, { "distinct_on": [ - 2121, + 2120, "[league_team_rosters_select_column!]" ], "limit": [ @@ -140609,32 +140601,32 @@ export default { 40 ], "order_by": [ - 2119, + 2118, "[league_team_rosters_order_by!]" ], "where": [ - 2109 + 2108 ] } ], "league_team_rosters_by_pk": [ - 2100, + 2099, { "league_team_season_id": [ - 4999, + 4998, "uuid!" ], "player_steam_id": [ - 258, + 257, "bigint!" ] } ], "league_team_seasons": [ - 2141, + 2140, { "distinct_on": [ - 2163, + 2162, "[league_team_seasons_select_column!]" ], "limit": [ @@ -140644,19 +140636,19 @@ export default { 40 ], "order_by": [ - 2161, + 2160, "[league_team_seasons_order_by!]" ], "where": [ - 2150 + 2149 ] } ], "league_team_seasons_aggregate": [ - 2142, + 2141, { "distinct_on": [ - 2163, + 2162, "[league_team_seasons_select_column!]" ], "limit": [ @@ -140666,28 +140658,28 @@ export default { 40 ], "order_by": [ - 2161, + 2160, "[league_team_seasons_order_by!]" ], "where": [ - 2150 + 2149 ] } ], "league_team_seasons_by_pk": [ - 2141, + 2140, { "id": [ - 4999, + 4998, "uuid!" ] } ], "league_teams": [ - 2183, + 2182, { "distinct_on": [ - 2196, + 2195, "[league_teams_select_column!]" ], "limit": [ @@ -140697,19 +140689,19 @@ export default { 40 ], "order_by": [ - 2194, + 2193, "[league_teams_order_by!]" ], "where": [ - 2186 + 2185 ] } ], "league_teams_aggregate": [ - 2184, + 2183, { "distinct_on": [ - 2196, + 2195, "[league_teams_select_column!]" ], "limit": [ @@ -140719,19 +140711,19 @@ export default { 40 ], "order_by": [ - 2194, + 2193, "[league_teams_order_by!]" ], "where": [ - 2186 + 2185 ] } ], "league_teams_by_pk": [ - 2183, + 2182, { "id": [ - 4999, + 4998, "uuid!" ] } @@ -140752,10 +140744,10 @@ export default { } ], "lobbies": [ - 2202, + 2201, { "distinct_on": [ - 2215, + 2214, "[lobbies_select_column!]" ], "limit": [ @@ -140765,19 +140757,19 @@ export default { 40 ], "order_by": [ - 2213, + 2212, "[lobbies_order_by!]" ], "where": [ - 2205 + 2204 ] } ], "lobbies_aggregate": [ - 2203, + 2202, { "distinct_on": [ - 2215, + 2214, "[lobbies_select_column!]" ], "limit": [ @@ -140787,28 +140779,28 @@ export default { 40 ], "order_by": [ - 2213, + 2212, "[lobbies_order_by!]" ], "where": [ - 2205 + 2204 ] } ], "lobbies_by_pk": [ - 2202, + 2201, { "id": [ - 4999, + 4998, "uuid!" ] } ], "lobby_players": [ - 2221, + 2220, { "distinct_on": [ - 2244, + 2243, "[lobby_players_select_column!]" ], "limit": [ @@ -140818,19 +140810,19 @@ export default { 40 ], "order_by": [ - 2242, + 2241, "[lobby_players_order_by!]" ], "where": [ - 2232 + 2231 ] } ], "lobby_players_aggregate": [ - 2222, + 2221, { "distinct_on": [ - 2244, + 2243, "[lobby_players_select_column!]" ], "limit": [ @@ -140840,32 +140832,32 @@ export default { 40 ], "order_by": [ - 2242, + 2241, "[lobby_players_order_by!]" ], "where": [ - 2232 + 2231 ] } ], "lobby_players_by_pk": [ - 2221, + 2220, { "lobby_id": [ - 4999, + 4998, "uuid!" ], "steam_id": [ - 258, + 257, "bigint!" ] } ], "map_pools": [ - 2266, + 2265, { "distinct_on": [ - 2279, + 2278, "[map_pools_select_column!]" ], "limit": [ @@ -140875,19 +140867,19 @@ export default { 40 ], "order_by": [ - 2277, + 2276, "[map_pools_order_by!]" ], "where": [ - 2269 + 2268 ] } ], "map_pools_aggregate": [ - 2267, + 2266, { "distinct_on": [ - 2279, + 2278, "[map_pools_select_column!]" ], "limit": [ @@ -140897,28 +140889,28 @@ export default { 40 ], "order_by": [ - 2277, + 2276, "[map_pools_order_by!]" ], "where": [ - 2269 + 2268 ] } ], "map_pools_by_pk": [ - 2266, + 2265, { "id": [ - 4999, + 4998, "uuid!" ] } ], "maps": [ - 2285, + 2284, { "distinct_on": [ - 2306, + 2305, "[maps_select_column!]" ], "limit": [ @@ -140928,19 +140920,19 @@ export default { 40 ], "order_by": [ - 2304, + 2303, "[maps_order_by!]" ], "where": [ - 2294 + 2293 ] } ], "maps_aggregate": [ - 2286, + 2285, { "distinct_on": [ - 2306, + 2305, "[maps_select_column!]" ], "limit": [ @@ -140950,28 +140942,28 @@ export default { 40 ], "order_by": [ - 2304, + 2303, "[maps_order_by!]" ], "where": [ - 2294 + 2293 ] } ], "maps_by_pk": [ - 2285, + 2284, { "id": [ - 4999, + 4998, "uuid!" ] } ], "match_clips": [ - 2314, + 2313, { "distinct_on": [ - 2336, + 2335, "[match_clips_select_column!]" ], "limit": [ @@ -140981,19 +140973,19 @@ export default { 40 ], "order_by": [ - 2334, + 2333, "[match_clips_order_by!]" ], "where": [ - 2323 + 2322 ] } ], "match_clips_aggregate": [ - 2315, + 2314, { "distinct_on": [ - 2336, + 2335, "[match_clips_select_column!]" ], "limit": [ @@ -141003,28 +140995,28 @@ export default { 40 ], "order_by": [ - 2334, + 2333, "[match_clips_order_by!]" ], "where": [ - 2323 + 2322 ] } ], "match_clips_by_pk": [ - 2314, + 2313, { "id": [ - 4999, + 4998, "uuid!" ] } ], "match_demo_sessions": [ - 2356, + 2355, { "distinct_on": [ - 2382, + 2381, "[match_demo_sessions_select_column!]" ], "limit": [ @@ -141034,19 +141026,19 @@ export default { 40 ], "order_by": [ - 2379, + 2378, "[match_demo_sessions_order_by!]" ], "where": [ - 2366 + 2365 ] } ], "match_demo_sessions_aggregate": [ - 2357, + 2356, { "distinct_on": [ - 2382, + 2381, "[match_demo_sessions_select_column!]" ], "limit": [ @@ -141056,28 +141048,28 @@ export default { 40 ], "order_by": [ - 2379, + 2378, "[match_demo_sessions_order_by!]" ], "where": [ - 2366 + 2365 ] } ], "match_demo_sessions_by_pk": [ - 2356, + 2355, { "id": [ - 4999, + 4998, "uuid!" ] } ], "match_lineup_players": [ - 2402, + 2401, { "distinct_on": [ - 2425, + 2424, "[match_lineup_players_select_column!]" ], "limit": [ @@ -141087,19 +141079,19 @@ export default { 40 ], "order_by": [ - 2423, + 2422, "[match_lineup_players_order_by!]" ], "where": [ - 2413 + 2412 ] } ], "match_lineup_players_aggregate": [ - 2403, + 2402, { "distinct_on": [ - 2425, + 2424, "[match_lineup_players_select_column!]" ], "limit": [ @@ -141109,28 +141101,28 @@ export default { 40 ], "order_by": [ - 2423, + 2422, "[match_lineup_players_order_by!]" ], "where": [ - 2413 + 2412 ] } ], "match_lineup_players_by_pk": [ - 2402, + 2401, { "id": [ - 4999, + 4998, "uuid!" ] } ], "match_lineups": [ - 2447, + 2446, { "distinct_on": [ - 2469, + 2468, "[match_lineups_select_column!]" ], "limit": [ @@ -141140,19 +141132,19 @@ export default { 40 ], "order_by": [ - 2467, + 2466, "[match_lineups_order_by!]" ], "where": [ - 2456 + 2455 ] } ], "match_lineups_aggregate": [ - 2448, + 2447, { "distinct_on": [ - 2469, + 2468, "[match_lineups_select_column!]" ], "limit": [ @@ -141162,28 +141154,28 @@ export default { 40 ], "order_by": [ - 2467, + 2466, "[match_lineups_order_by!]" ], "where": [ - 2456 + 2455 ] } ], "match_lineups_by_pk": [ - 2447, + 2446, { "id": [ - 4999, + 4998, "uuid!" ] } ], "match_map_demos": [ - 2489, + 2488, { "distinct_on": [ - 2518, + 2517, "[match_map_demos_select_column!]" ], "limit": [ @@ -141193,19 +141185,19 @@ export default { 40 ], "order_by": [ - 2515, + 2514, "[match_map_demos_order_by!]" ], "where": [ - 2501 + 2500 ] } ], "match_map_demos_aggregate": [ - 2490, + 2489, { "distinct_on": [ - 2518, + 2517, "[match_map_demos_select_column!]" ], "limit": [ @@ -141215,28 +141207,28 @@ export default { 40 ], "order_by": [ - 2515, + 2514, "[match_map_demos_order_by!]" ], "where": [ - 2501 + 2500 ] } ], "match_map_demos_by_pk": [ - 2489, + 2488, { "id": [ - 4999, + 4998, "uuid!" ] } ], "match_map_rounds": [ - 2540, + 2539, { "distinct_on": [ - 2561, + 2560, "[match_map_rounds_select_column!]" ], "limit": [ @@ -141246,19 +141238,19 @@ export default { 40 ], "order_by": [ - 2559, + 2558, "[match_map_rounds_order_by!]" ], "where": [ - 2549 + 2548 ] } ], "match_map_rounds_aggregate": [ - 2541, + 2540, { "distinct_on": [ - 2561, + 2560, "[match_map_rounds_select_column!]" ], "limit": [ @@ -141268,28 +141260,28 @@ export default { 40 ], "order_by": [ - 2559, + 2558, "[match_map_rounds_order_by!]" ], "where": [ - 2549 + 2548 ] } ], "match_map_rounds_by_pk": [ - 2540, + 2539, { "id": [ - 4999, + 4998, "uuid!" ] } ], "match_map_veto_picks": [ - 2581, + 2580, { "distinct_on": [ - 2599, + 2598, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -141299,19 +141291,19 @@ export default { 40 ], "order_by": [ - 2597, + 2596, "[match_map_veto_picks_order_by!]" ], "where": [ - 2588 + 2587 ] } ], "match_map_veto_picks_aggregate": [ - 2582, + 2581, { "distinct_on": [ - 2599, + 2598, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -141321,28 +141313,28 @@ export default { 40 ], "order_by": [ - 2597, + 2596, "[match_map_veto_picks_order_by!]" ], "where": [ - 2588 + 2587 ] } ], "match_map_veto_picks_by_pk": [ - 2581, + 2580, { "id": [ - 4999, + 4998, "uuid!" ] } ], "match_maps": [ - 2605, + 2604, { "distinct_on": [ - 2627, + 2626, "[match_maps_select_column!]" ], "limit": [ @@ -141352,19 +141344,19 @@ export default { 40 ], "order_by": [ - 2625, + 2624, "[match_maps_order_by!]" ], "where": [ - 2614 + 2613 ] } ], "match_maps_aggregate": [ - 2606, + 2605, { "distinct_on": [ - 2627, + 2626, "[match_maps_select_column!]" ], "limit": [ @@ -141374,28 +141366,28 @@ export default { 40 ], "order_by": [ - 2625, + 2624, "[match_maps_order_by!]" ], "where": [ - 2614 + 2613 ] } ], "match_maps_by_pk": [ - 2605, + 2604, { "id": [ - 4999, + 4998, "uuid!" ] } ], "match_options": [ - 2647, + 2646, { "distinct_on": [ - 2662, + 2661, "[match_options_select_column!]" ], "limit": [ @@ -141405,19 +141397,19 @@ export default { 40 ], "order_by": [ - 2660, + 2659, "[match_options_order_by!]" ], "where": [ - 2651 + 2650 ] } ], "match_options_aggregate": [ - 2648, + 2647, { "distinct_on": [ - 2662, + 2661, "[match_options_select_column!]" ], "limit": [ @@ -141427,28 +141419,28 @@ export default { 40 ], "order_by": [ - 2660, + 2659, "[match_options_order_by!]" ], "where": [ - 2651 + 2650 ] } ], "match_options_by_pk": [ - 2647, + 2646, { "id": [ - 4999, + 4998, "uuid!" ] } ], "match_region_veto_picks": [ - 2675, + 2674, { "distinct_on": [ - 2693, + 2692, "[match_region_veto_picks_select_column!]" ], "limit": [ @@ -141458,19 +141450,19 @@ export default { 40 ], "order_by": [ - 2691, + 2690, "[match_region_veto_picks_order_by!]" ], "where": [ - 2682 + 2681 ] } ], "match_region_veto_picks_aggregate": [ - 2676, + 2675, { "distinct_on": [ - 2693, + 2692, "[match_region_veto_picks_select_column!]" ], "limit": [ @@ -141480,28 +141472,28 @@ export default { 40 ], "order_by": [ - 2691, + 2690, "[match_region_veto_picks_order_by!]" ], "where": [ - 2682 + 2681 ] } ], "match_region_veto_picks_by_pk": [ - 2675, + 2674, { "id": [ - 4999, + 4998, "uuid!" ] } ], "match_streams": [ - 2699, + 2698, { "distinct_on": [ - 2727, + 2726, "[match_streams_select_column!]" ], "limit": [ @@ -141511,19 +141503,19 @@ export default { 40 ], "order_by": [ - 2724, + 2723, "[match_streams_order_by!]" ], "where": [ - 2711 + 2710 ] } ], "match_streams_aggregate": [ - 2700, + 2699, { "distinct_on": [ - 2727, + 2726, "[match_streams_select_column!]" ], "limit": [ @@ -141533,28 +141525,28 @@ export default { 40 ], "order_by": [ - 2724, + 2723, "[match_streams_order_by!]" ], "where": [ - 2711 + 2710 ] } ], "match_streams_by_pk": [ - 2699, + 2698, { "id": [ - 4999, + 4998, "uuid!" ] } ], "match_type_cfgs": [ - 2749, + 2748, { "distinct_on": [ - 2761, + 2760, "[match_type_cfgs_select_column!]" ], "limit": [ @@ -141564,19 +141556,19 @@ export default { 40 ], "order_by": [ - 2759, + 2758, "[match_type_cfgs_order_by!]" ], "where": [ - 2752 + 2751 ] } ], "match_type_cfgs_aggregate": [ - 2750, + 2749, { "distinct_on": [ - 2761, + 2760, "[match_type_cfgs_select_column!]" ], "limit": [ @@ -141586,28 +141578,28 @@ export default { 40 ], "order_by": [ - 2759, + 2758, "[match_type_cfgs_order_by!]" ], "where": [ - 2752 + 2751 ] } ], "match_type_cfgs_by_pk": [ - 2749, + 2748, { "type": [ - 741, + 740, "e_game_cfg_types_enum!" ] } ], "matches": [ - 2767, + 2766, { "distinct_on": [ - 2789, + 2788, "[matches_select_column!]" ], "limit": [ @@ -141617,19 +141609,19 @@ export default { 40 ], "order_by": [ - 2787, + 2786, "[matches_order_by!]" ], "where": [ - 2776 + 2775 ] } ], "matches_aggregate": [ - 2768, + 2767, { "distinct_on": [ - 2789, + 2788, "[matches_select_column!]" ], "limit": [ @@ -141639,19 +141631,19 @@ export default { 40 ], "order_by": [ - 2787, + 2786, "[matches_order_by!]" ], "where": [ - 2776 + 2775 ] } ], "matches_by_pk": [ - 2767, + 2766, { "id": [ - 4999, + 4998, "uuid!" ] } @@ -141660,10 +141652,10 @@ export default { 47 ], "migration_hashes_hashes": [ - 2809, + 2808, { "distinct_on": [ - 2821, + 2820, "[migration_hashes_hashes_select_column!]" ], "limit": [ @@ -141673,19 +141665,19 @@ export default { 40 ], "order_by": [ - 2819, + 2818, "[migration_hashes_hashes_order_by!]" ], "where": [ - 2812 + 2811 ] } ], "migration_hashes_hashes_aggregate": [ - 2810, + 2809, { "distinct_on": [ - 2821, + 2820, "[migration_hashes_hashes_select_column!]" ], "limit": [ @@ -141695,16 +141687,16 @@ export default { 40 ], "order_by": [ - 2819, + 2818, "[migration_hashes_hashes_order_by!]" ], "where": [ - 2812 + 2811 ] } ], "migration_hashes_hashes_by_pk": [ - 2809, + 2808, { "name": [ 80, @@ -141713,10 +141705,10 @@ export default { } ], "my_friends": [ - 2827, + 2826, { "distinct_on": [ - 2852, + 2851, "[my_friends_select_column!]" ], "limit": [ @@ -141726,19 +141718,19 @@ export default { 40 ], "order_by": [ - 2850, + 2849, "[my_friends_order_by!]" ], "where": [ - 2839 + 2838 ] } ], "my_friends_aggregate": [ - 2828, + 2827, { "distinct_on": [ - 2852, + 2851, "[my_friends_select_column!]" ], "limit": [ @@ -141748,11 +141740,11 @@ export default { 40 ], "order_by": [ - 2850, + 2849, "[my_friends_order_by!]" ], "where": [ - 2839 + 2838 ] } ], @@ -141760,7 +141752,7 @@ export default { 50, { "id": [ - 4999, + 4998, "uuid!" ] } @@ -141769,10 +141761,10 @@ export default { 50 ], "news_articles": [ - 2873, + 2872, { "distinct_on": [ - 2887, + 2886, "[news_articles_select_column!]" ], "limit": [ @@ -141782,19 +141774,19 @@ export default { 40 ], "order_by": [ - 2885, + 2884, "[news_articles_order_by!]" ], "where": [ - 2877 + 2876 ] } ], "news_articles_aggregate": [ - 2874, + 2873, { "distinct_on": [ - 2887, + 2886, "[news_articles_select_column!]" ], "limit": [ @@ -141804,28 +141796,28 @@ export default { 40 ], "order_by": [ - 2885, + 2884, "[news_articles_order_by!]" ], "where": [ - 2877 + 2876 ] } ], "news_articles_by_pk": [ - 2873, + 2872, { "id": [ - 4999, + 4998, "uuid!" ] } ], "notifications": [ - 2900, + 2899, { "distinct_on": [ - 2928, + 2927, "[notifications_select_column!]" ], "limit": [ @@ -141835,19 +141827,19 @@ export default { 40 ], "order_by": [ - 2925, + 2924, "[notifications_order_by!]" ], "where": [ - 2912 + 2911 ] } ], "notifications_aggregate": [ - 2901, + 2900, { "distinct_on": [ - 2928, + 2927, "[notifications_select_column!]" ], "limit": [ @@ -141857,28 +141849,28 @@ export default { 40 ], "order_by": [ - 2925, + 2924, "[notifications_order_by!]" ], "where": [ - 2912 + 2911 ] } ], "notifications_by_pk": [ - 2900, + 2899, { "id": [ - 4999, + 4998, "uuid!" ] } ], "pending_match_import_players": [ - 2953, + 2952, { "distinct_on": [ - 2974, + 2973, "[pending_match_import_players_select_column!]" ], "limit": [ @@ -141888,19 +141880,19 @@ export default { 40 ], "order_by": [ - 2972, + 2971, "[pending_match_import_players_order_by!]" ], "where": [ - 2962 + 2961 ] } ], "pending_match_import_players_aggregate": [ - 2954, + 2953, { "distinct_on": [ - 2974, + 2973, "[pending_match_import_players_select_column!]" ], "limit": [ @@ -141910,32 +141902,32 @@ export default { 40 ], "order_by": [ - 2972, + 2971, "[pending_match_import_players_order_by!]" ], "where": [ - 2962 + 2961 ] } ], "pending_match_import_players_by_pk": [ - 2953, + 2952, { "steam_id": [ - 258, + 257, "bigint!" ], "valve_match_id": [ - 2950, + 2949, "numeric!" ] } ], "pending_match_imports": [ - 2994, + 2993, { "distinct_on": [ - 3009, + 3008, "[pending_match_imports_select_column!]" ], "limit": [ @@ -141945,19 +141937,19 @@ export default { 40 ], "order_by": [ - 3007, + 3006, "[pending_match_imports_order_by!]" ], "where": [ - 2998 + 2997 ] } ], "pending_match_imports_aggregate": [ - 2995, + 2994, { "distinct_on": [ - 3009, + 3008, "[pending_match_imports_select_column!]" ], "limit": [ @@ -141967,28 +141959,28 @@ export default { 40 ], "order_by": [ - 3007, + 3006, "[pending_match_imports_order_by!]" ], "where": [ - 2998 + 2997 ] } ], "pending_match_imports_by_pk": [ - 2994, + 2993, { "valve_match_id": [ - 2950, + 2949, "numeric!" ] } ], "player_aim_stats_demo": [ - 3022, + 3021, { "distinct_on": [ - 3036, + 3035, "[player_aim_stats_demo_select_column!]" ], "limit": [ @@ -141998,19 +141990,19 @@ export default { 40 ], "order_by": [ - 3034, + 3033, "[player_aim_stats_demo_order_by!]" ], "where": [ - 3026 + 3025 ] } ], "player_aim_stats_demo_aggregate": [ - 3023, + 3022, { "distinct_on": [ - 3036, + 3035, "[player_aim_stats_demo_select_column!]" ], "limit": [ @@ -142020,32 +142012,32 @@ export default { 40 ], "order_by": [ - 3034, + 3033, "[player_aim_stats_demo_order_by!]" ], "where": [ - 3026 + 3025 ] } ], "player_aim_stats_demo_by_pk": [ - 3022, + 3021, { "attacker_steam_id": [ - 258, + 257, "bigint!" ], "match_map_id": [ - 4999, + 4998, "uuid!" ] } ], "player_aim_weapon_stats": [ - 3049, + 3048, { "distinct_on": [ - 3070, + 3069, "[player_aim_weapon_stats_select_column!]" ], "limit": [ @@ -142055,19 +142047,19 @@ export default { 40 ], "order_by": [ - 3068, + 3067, "[player_aim_weapon_stats_order_by!]" ], "where": [ - 3058 + 3057 ] } ], "player_aim_weapon_stats_aggregate": [ - 3050, + 3049, { "distinct_on": [ - 3070, + 3069, "[player_aim_weapon_stats_select_column!]" ], "limit": [ @@ -142077,23 +142069,23 @@ export default { 40 ], "order_by": [ - 3068, + 3067, "[player_aim_weapon_stats_order_by!]" ], "where": [ - 3058 + 3057 ] } ], "player_aim_weapon_stats_by_pk": [ - 3049, + 3048, { "match_map_id": [ - 4999, + 4998, "uuid!" ], "steam_id": [ - 258, + 257, "bigint!" ], "weapon_class": [ @@ -142103,10 +142095,10 @@ export default { } ], "player_assists": [ - 3090, + 3089, { "distinct_on": [ - 3113, + 3112, "[player_assists_select_column!]" ], "limit": [ @@ -142116,19 +142108,19 @@ export default { 40 ], "order_by": [ - 3111, + 3110, "[player_assists_order_by!]" ], "where": [ - 3101 + 3100 ] } ], "player_assists_aggregate": [ - 3091, + 3090, { "distinct_on": [ - 3113, + 3112, "[player_assists_select_column!]" ], "limit": [ @@ -142138,40 +142130,40 @@ export default { 40 ], "order_by": [ - 3111, + 3110, "[player_assists_order_by!]" ], "where": [ - 3101 + 3100 ] } ], "player_assists_by_pk": [ - 3090, + 3089, { "attacked_steam_id": [ - 258, + 257, "bigint!" ], "attacker_steam_id": [ - 258, + 257, "bigint!" ], "match_map_id": [ - 4999, + 4998, "uuid!" ], "time": [ - 4499, + 4498, "timestamptz!" ] } ], "player_career_stats_v": [ - 3135, + 3134, { "distinct_on": [ - 3143, + 3142, "[player_career_stats_v_select_column!]" ], "limit": [ @@ -142181,19 +142173,19 @@ export default { 40 ], "order_by": [ - 3142, + 3141, "[player_career_stats_v_order_by!]" ], "where": [ - 3139 + 3138 ] } ], "player_career_stats_v_aggregate": [ - 3136, + 3135, { "distinct_on": [ - 3143, + 3142, "[player_career_stats_v_select_column!]" ], "limit": [ @@ -142203,19 +142195,19 @@ export default { 40 ], "order_by": [ - 3142, + 3141, "[player_career_stats_v_order_by!]" ], "where": [ - 3139 + 3138 ] } ], "player_damages": [ - 3153, + 3152, { "distinct_on": [ - 3174, + 3173, "[player_damages_select_column!]" ], "limit": [ @@ -142225,19 +142217,19 @@ export default { 40 ], "order_by": [ - 3172, + 3171, "[player_damages_order_by!]" ], "where": [ - 3162 + 3161 ] } ], "player_damages_aggregate": [ - 3154, + 3153, { "distinct_on": [ - 3174, + 3173, "[player_damages_select_column!]" ], "limit": [ @@ -142247,36 +142239,36 @@ export default { 40 ], "order_by": [ - 3172, + 3171, "[player_damages_order_by!]" ], "where": [ - 3162 + 3161 ] } ], "player_damages_by_pk": [ - 3153, + 3152, { "id": [ - 4999, + 4998, "uuid!" ], "match_map_id": [ - 4999, + 4998, "uuid!" ], "time": [ - 4499, + 4498, "timestamptz!" ] } ], "player_elo": [ - 3194, + 3193, { "distinct_on": [ - 3208, + 3207, "[player_elo_select_column!]" ], "limit": [ @@ -142286,19 +142278,19 @@ export default { 40 ], "order_by": [ - 3206, + 3205, "[player_elo_order_by!]" ], "where": [ - 3198 + 3197 ] } ], "player_elo_aggregate": [ - 3195, + 3194, { "distinct_on": [ - 3208, + 3207, "[player_elo_select_column!]" ], "limit": [ @@ -142308,36 +142300,36 @@ export default { 40 ], "order_by": [ - 3206, + 3205, "[player_elo_order_by!]" ], "where": [ - 3198 + 3197 ] } ], "player_elo_by_pk": [ - 3194, + 3193, { "match_id": [ - 4999, + 4998, "uuid!" ], "steam_id": [ - 258, + 257, "bigint!" ], "type": [ - 1010, + 1009, "e_match_types_enum!" ] } ], "player_faceit_rank_history": [ - 3221, + 3220, { "distinct_on": [ - 3242, + 3241, "[player_faceit_rank_history_select_column!]" ], "limit": [ @@ -142347,19 +142339,19 @@ export default { 40 ], "order_by": [ - 3240, + 3239, "[player_faceit_rank_history_order_by!]" ], "where": [ - 3230 + 3229 ] } ], "player_faceit_rank_history_aggregate": [ - 3222, + 3221, { "distinct_on": [ - 3242, + 3241, "[player_faceit_rank_history_select_column!]" ], "limit": [ @@ -142369,28 +142361,28 @@ export default { 40 ], "order_by": [ - 3240, + 3239, "[player_faceit_rank_history_order_by!]" ], "where": [ - 3230 + 3229 ] } ], "player_faceit_rank_history_by_pk": [ - 3221, + 3220, { "id": [ - 4999, + 4998, "uuid!" ] } ], "player_flashes": [ - 3262, + 3261, { "distinct_on": [ - 3285, + 3284, "[player_flashes_select_column!]" ], "limit": [ @@ -142400,19 +142392,19 @@ export default { 40 ], "order_by": [ - 3283, + 3282, "[player_flashes_order_by!]" ], "where": [ - 3273 + 3272 ] } ], "player_flashes_aggregate": [ - 3263, + 3262, { "distinct_on": [ - 3285, + 3284, "[player_flashes_select_column!]" ], "limit": [ @@ -142422,40 +142414,40 @@ export default { 40 ], "order_by": [ - 3283, + 3282, "[player_flashes_order_by!]" ], "where": [ - 3273 + 3272 ] } ], "player_flashes_by_pk": [ - 3262, + 3261, { "attacked_steam_id": [ - 258, + 257, "bigint!" ], "attacker_steam_id": [ - 258, + 257, "bigint!" ], "match_map_id": [ - 4999, + 4998, "uuid!" ], "time": [ - 4499, + 4498, "timestamptz!" ] } ], "player_kills": [ - 3307, + 3306, { "distinct_on": [ - 3371, + 3370, "[player_kills_select_column!]" ], "limit": [ @@ -142465,19 +142457,19 @@ export default { 40 ], "order_by": [ - 3369, + 3368, "[player_kills_order_by!]" ], "where": [ - 3318 + 3317 ] } ], "player_kills_aggregate": [ - 3308, + 3307, { "distinct_on": [ - 3371, + 3370, "[player_kills_select_column!]" ], "limit": [ @@ -142487,40 +142479,40 @@ export default { 40 ], "order_by": [ - 3369, + 3368, "[player_kills_order_by!]" ], "where": [ - 3318 + 3317 ] } ], "player_kills_by_pk": [ - 3307, + 3306, { "attacked_steam_id": [ - 258, + 257, "bigint!" ], "attacker_steam_id": [ - 258, + 257, "bigint!" ], "match_map_id": [ - 4999, + 4998, "uuid!" ], "time": [ - 4499, + 4498, "timestamptz!" ] } ], "player_kills_by_weapon": [ - 3319, + 3318, { "distinct_on": [ - 3340, + 3339, "[player_kills_by_weapon_select_column!]" ], "limit": [ @@ -142530,19 +142522,19 @@ export default { 40 ], "order_by": [ - 3338, + 3337, "[player_kills_by_weapon_order_by!]" ], "where": [ - 3328 + 3327 ] } ], "player_kills_by_weapon_aggregate": [ - 3320, + 3319, { "distinct_on": [ - 3340, + 3339, "[player_kills_by_weapon_select_column!]" ], "limit": [ @@ -142552,19 +142544,19 @@ export default { 40 ], "order_by": [ - 3338, + 3337, "[player_kills_by_weapon_order_by!]" ], "where": [ - 3328 + 3327 ] } ], "player_kills_by_weapon_by_pk": [ - 3319, + 3318, { "player_steam_id": [ - 258, + 257, "bigint!" ], "with": [ @@ -142574,10 +142566,10 @@ export default { } ], "player_leaderboard_rank": [ - 3393, + 3392, { "distinct_on": [ - 3404, + 3403, "[player_leaderboard_rank_select_column!]" ], "limit": [ @@ -142587,19 +142579,19 @@ export default { 40 ], "order_by": [ - 3403, + 3402, "[player_leaderboard_rank_order_by!]" ], "where": [ - 3397 + 3396 ] } ], "player_leaderboard_rank_aggregate": [ - 3394, + 3393, { "distinct_on": [ - 3404, + 3403, "[player_leaderboard_rank_select_column!]" ], "limit": [ @@ -142609,19 +142601,19 @@ export default { 40 ], "order_by": [ - 3403, + 3402, "[player_leaderboard_rank_order_by!]" ], "where": [ - 3397 + 3396 ] } ], "player_match_map_stats": [ - 3416, + 3415, { "distinct_on": [ - 3437, + 3436, "[player_match_map_stats_select_column!]" ], "limit": [ @@ -142631,19 +142623,19 @@ export default { 40 ], "order_by": [ - 3435, + 3434, "[player_match_map_stats_order_by!]" ], "where": [ - 3425 + 3424 ] } ], "player_match_map_stats_aggregate": [ - 3417, + 3416, { "distinct_on": [ - 3437, + 3436, "[player_match_map_stats_select_column!]" ], "limit": [ @@ -142653,32 +142645,32 @@ export default { 40 ], "order_by": [ - 3435, + 3434, "[player_match_map_stats_order_by!]" ], "where": [ - 3425 + 3424 ] } ], "player_match_map_stats_by_pk": [ - 3416, + 3415, { "match_map_id": [ - 4999, + 4998, "uuid!" ], "steam_id": [ - 258, + 257, "bigint!" ] } ], "player_match_performance_v": [ - 3457, + 3456, { "distinct_on": [ - 3465, + 3464, "[player_match_performance_v_select_column!]" ], "limit": [ @@ -142688,19 +142680,19 @@ export default { 40 ], "order_by": [ - 3464, + 3463, "[player_match_performance_v_order_by!]" ], "where": [ - 3461 + 3460 ] } ], "player_match_performance_v_aggregate": [ - 3458, + 3457, { "distinct_on": [ - 3465, + 3464, "[player_match_performance_v_select_column!]" ], "limit": [ @@ -142710,19 +142702,19 @@ export default { 40 ], "order_by": [ - 3464, + 3463, "[player_match_performance_v_order_by!]" ], "where": [ - 3461 + 3460 ] } ], "player_match_stats_v": [ - 3475, + 3474, { "distinct_on": [ - 3491, + 3490, "[player_match_stats_v_select_column!]" ], "limit": [ @@ -142732,19 +142724,19 @@ export default { 40 ], "order_by": [ - 3490, + 3489, "[player_match_stats_v_order_by!]" ], "where": [ - 3484 + 3483 ] } ], "player_match_stats_v_aggregate": [ - 3476, + 3475, { "distinct_on": [ - 3491, + 3490, "[player_match_stats_v_select_column!]" ], "limit": [ @@ -142754,19 +142746,19 @@ export default { 40 ], "order_by": [ - 3490, + 3489, "[player_match_stats_v_order_by!]" ], "where": [ - 3484 + 3483 ] } ], "player_objectives": [ - 3508, + 3507, { "distinct_on": [ - 3529, + 3528, "[player_objectives_select_column!]" ], "limit": [ @@ -142776,19 +142768,19 @@ export default { 40 ], "order_by": [ - 3527, + 3526, "[player_objectives_order_by!]" ], "where": [ - 3517 + 3516 ] } ], "player_objectives_aggregate": [ - 3509, + 3508, { "distinct_on": [ - 3529, + 3528, "[player_objectives_select_column!]" ], "limit": [ @@ -142798,36 +142790,36 @@ export default { 40 ], "order_by": [ - 3527, + 3526, "[player_objectives_order_by!]" ], "where": [ - 3517 + 3516 ] } ], "player_objectives_by_pk": [ - 3508, + 3507, { "match_map_id": [ - 4999, + 4998, "uuid!" ], "player_steam_id": [ - 258, + 257, "bigint!" ], "time": [ - 4499, + 4498, "timestamptz!" ] } ], "player_performance_v": [ - 3549, + 3548, { "distinct_on": [ - 3557, + 3556, "[player_performance_v_select_column!]" ], "limit": [ @@ -142837,19 +142829,19 @@ export default { 40 ], "order_by": [ - 3556, + 3555, "[player_performance_v_order_by!]" ], "where": [ - 3553 + 3552 ] } ], "player_performance_v_aggregate": [ - 3550, + 3549, { "distinct_on": [ - 3557, + 3556, "[player_performance_v_select_column!]" ], "limit": [ @@ -142859,19 +142851,19 @@ export default { 40 ], "order_by": [ - 3556, + 3555, "[player_performance_v_order_by!]" ], "where": [ - 3553 + 3552 ] } ], "player_premier_rank_history": [ - 3567, + 3566, { "distinct_on": [ - 3588, + 3587, "[player_premier_rank_history_select_column!]" ], "limit": [ @@ -142881,19 +142873,19 @@ export default { 40 ], "order_by": [ - 3586, + 3585, "[player_premier_rank_history_order_by!]" ], "where": [ - 3576 + 3575 ] } ], "player_premier_rank_history_aggregate": [ - 3568, + 3567, { "distinct_on": [ - 3588, + 3587, "[player_premier_rank_history_select_column!]" ], "limit": [ @@ -142903,28 +142895,28 @@ export default { 40 ], "order_by": [ - 3586, + 3585, "[player_premier_rank_history_order_by!]" ], "where": [ - 3576 + 3575 ] } ], "player_premier_rank_history_by_pk": [ - 3567, + 3566, { "id": [ - 4999, + 4998, "uuid!" ] } ], "player_sanctions": [ - 3608, + 3607, { "distinct_on": [ - 3629, + 3628, "[player_sanctions_select_column!]" ], "limit": [ @@ -142934,19 +142926,19 @@ export default { 40 ], "order_by": [ - 3627, + 3626, "[player_sanctions_order_by!]" ], "where": [ - 3617 + 3616 ] } ], "player_sanctions_aggregate": [ - 3609, + 3608, { "distinct_on": [ - 3629, + 3628, "[player_sanctions_select_column!]" ], "limit": [ @@ -142956,32 +142948,32 @@ export default { 40 ], "order_by": [ - 3627, + 3626, "[player_sanctions_order_by!]" ], "where": [ - 3617 + 3616 ] } ], "player_sanctions_by_pk": [ - 3608, + 3607, { "created_at": [ - 4499, + 4498, "timestamptz!" ], "id": [ - 4999, + 4998, "uuid!" ] } ], "player_season_stats": [ - 3649, + 3648, { "distinct_on": [ - 3680, + 3679, "[player_season_stats_select_column!]" ], "limit": [ @@ -142991,19 +142983,19 @@ export default { 40 ], "order_by": [ - 3678, + 3677, "[player_season_stats_order_by!]" ], "where": [ - 3668 + 3667 ] } ], "player_season_stats_aggregate": [ - 3650, + 3649, { "distinct_on": [ - 3680, + 3679, "[player_season_stats_select_column!]" ], "limit": [ @@ -143013,32 +143005,32 @@ export default { 40 ], "order_by": [ - 3678, + 3677, "[player_season_stats_order_by!]" ], "where": [ - 3668 + 3667 ] } ], "player_season_stats_by_pk": [ - 3649, + 3648, { "player_steam_id": [ - 258, + 257, "bigint!" ], "season_id": [ - 4999, + 4998, "uuid!" ] } ], "player_stats": [ - 3708, + 3707, { "distinct_on": [ - 3723, + 3722, "[player_stats_select_column!]" ], "limit": [ @@ -143048,19 +143040,19 @@ export default { 40 ], "order_by": [ - 3721, + 3720, "[player_stats_order_by!]" ], "where": [ - 3712 + 3711 ] } ], "player_stats_aggregate": [ - 3709, + 3708, { "distinct_on": [ - 3723, + 3722, "[player_stats_select_column!]" ], "limit": [ @@ -143070,28 +143062,28 @@ export default { 40 ], "order_by": [ - 3721, + 3720, "[player_stats_order_by!]" ], "where": [ - 3712 + 3711 ] } ], "player_stats_by_pk": [ - 3708, + 3707, { "player_steam_id": [ - 258, + 257, "bigint!" ] } ], "player_steam_bot_friend": [ - 3736, + 3735, { "distinct_on": [ - 3755, + 3754, "[player_steam_bot_friend_select_column!]" ], "limit": [ @@ -143101,19 +143093,19 @@ export default { 40 ], "order_by": [ - 3752, + 3751, "[player_steam_bot_friend_order_by!]" ], "where": [ - 3741 + 3740 ] } ], "player_steam_bot_friend_aggregate": [ - 3737, + 3736, { "distinct_on": [ - 3755, + 3754, "[player_steam_bot_friend_select_column!]" ], "limit": [ @@ -143123,28 +143115,28 @@ export default { 40 ], "order_by": [ - 3752, + 3751, "[player_steam_bot_friend_order_by!]" ], "where": [ - 3741 + 3740 ] } ], "player_steam_bot_friend_by_pk": [ - 3736, + 3735, { "steam_id": [ - 258, + 257, "bigint!" ] } ], "player_steam_match_auth": [ - 3768, + 3767, { "distinct_on": [ - 3782, + 3781, "[player_steam_match_auth_select_column!]" ], "limit": [ @@ -143154,19 +143146,19 @@ export default { 40 ], "order_by": [ - 3780, + 3779, "[player_steam_match_auth_order_by!]" ], "where": [ - 3772 + 3771 ] } ], "player_steam_match_auth_aggregate": [ - 3769, + 3768, { "distinct_on": [ - 3782, + 3781, "[player_steam_match_auth_select_column!]" ], "limit": [ @@ -143176,28 +143168,28 @@ export default { 40 ], "order_by": [ - 3780, + 3779, "[player_steam_match_auth_order_by!]" ], "where": [ - 3772 + 3771 ] } ], "player_steam_match_auth_by_pk": [ - 3768, + 3767, { "steam_id": [ - 258, + 257, "bigint!" ] } ], "player_unused_utility": [ - 3795, + 3794, { "distinct_on": [ - 3816, + 3815, "[player_unused_utility_select_column!]" ], "limit": [ @@ -143207,19 +143199,19 @@ export default { 40 ], "order_by": [ - 3814, + 3813, "[player_unused_utility_order_by!]" ], "where": [ - 3804 + 3803 ] } ], "player_unused_utility_aggregate": [ - 3796, + 3795, { "distinct_on": [ - 3816, + 3815, "[player_unused_utility_select_column!]" ], "limit": [ @@ -143229,32 +143221,32 @@ export default { 40 ], "order_by": [ - 3814, + 3813, "[player_unused_utility_order_by!]" ], "where": [ - 3804 + 3803 ] } ], "player_unused_utility_by_pk": [ - 3795, + 3794, { "match_map_id": [ - 4999, + 4998, "uuid!" ], "player_steam_id": [ - 258, + 257, "bigint!" ] } ], "player_utility": [ - 3836, + 3835, { "distinct_on": [ - 3857, + 3856, "[player_utility_select_column!]" ], "limit": [ @@ -143264,19 +143256,19 @@ export default { 40 ], "order_by": [ - 3855, + 3854, "[player_utility_order_by!]" ], "where": [ - 3845 + 3844 ] } ], "player_utility_aggregate": [ - 3837, + 3836, { "distinct_on": [ - 3857, + 3856, "[player_utility_select_column!]" ], "limit": [ @@ -143286,36 +143278,36 @@ export default { 40 ], "order_by": [ - 3855, + 3854, "[player_utility_order_by!]" ], "where": [ - 3845 + 3844 ] } ], "player_utility_by_pk": [ - 3836, + 3835, { "attacker_steam_id": [ - 258, + 257, "bigint!" ], "match_map_id": [ - 4999, + 4998, "uuid!" ], "time": [ - 4499, + 4498, "timestamptz!" ] } ], "player_weapon_stats_v": [ - 3877, + 3876, { "distinct_on": [ - 3893, + 3892, "[player_weapon_stats_v_select_column!]" ], "limit": [ @@ -143325,19 +143317,19 @@ export default { 40 ], "order_by": [ - 3892, + 3891, "[player_weapon_stats_v_order_by!]" ], "where": [ - 3886 + 3885 ] } ], "player_weapon_stats_v_aggregate": [ - 3878, + 3877, { "distinct_on": [ - 3893, + 3892, "[player_weapon_stats_v_select_column!]" ], "limit": [ @@ -143347,19 +143339,19 @@ export default { 40 ], "order_by": [ - 3892, + 3891, "[player_weapon_stats_v_order_by!]" ], "where": [ - 3886 + 3885 ] } ], "players": [ - 3910, + 3909, { "distinct_on": [ - 3925, + 3924, "[players_select_column!]" ], "limit": [ @@ -143369,19 +143361,19 @@ export default { 40 ], "order_by": [ - 3923, + 3922, "[players_order_by!]" ], "where": [ - 3914 + 3913 ] } ], "players_aggregate": [ - 3911, + 3910, { "distinct_on": [ - 3925, + 3924, "[players_select_column!]" ], "limit": [ @@ -143391,28 +143383,28 @@ export default { 40 ], "order_by": [ - 3923, + 3922, "[players_order_by!]" ], "where": [ - 3914 + 3913 ] } ], "players_by_pk": [ - 3910, + 3909, { "steam_id": [ - 258, + 257, "bigint!" ] } ], "plugin_versions": [ - 3938, + 3937, { "distinct_on": [ - 3952, + 3951, "[plugin_versions_select_column!]" ], "limit": [ @@ -143422,19 +143414,19 @@ export default { 40 ], "order_by": [ - 3950, + 3949, "[plugin_versions_order_by!]" ], "where": [ - 3942 + 3941 ] } ], "plugin_versions_aggregate": [ - 3939, + 3938, { "distinct_on": [ - 3952, + 3951, "[plugin_versions_select_column!]" ], "limit": [ @@ -143444,19 +143436,19 @@ export default { 40 ], "order_by": [ - 3950, + 3949, "[plugin_versions_order_by!]" ], "where": [ - 3942 + 3941 ] } ], "plugin_versions_by_pk": [ - 3938, + 3937, { "runtime": [ - 1091, + 1090, "e_plugin_runtimes_enum!" ], "version": [ @@ -143482,10 +143474,10 @@ export default { } ], "seasons": [ - 3969, + 3968, { "distinct_on": [ - 3984, + 3983, "[seasons_select_column!]" ], "limit": [ @@ -143495,19 +143487,19 @@ export default { 40 ], "order_by": [ - 3982, + 3981, "[seasons_order_by!]" ], "where": [ - 3973 + 3972 ] } ], "seasons_aggregate": [ - 3970, + 3969, { "distinct_on": [ - 3984, + 3983, "[seasons_select_column!]" ], "limit": [ @@ -143517,28 +143509,28 @@ export default { 40 ], "order_by": [ - 3982, + 3981, "[seasons_order_by!]" ], "where": [ - 3973 + 3972 ] } ], "seasons_by_pk": [ - 3969, + 3968, { "id": [ - 4999, + 4998, "uuid!" ] } ], "server_regions": [ - 3997, + 3996, { "distinct_on": [ - 4011, + 4010, "[server_regions_select_column!]" ], "limit": [ @@ -143548,19 +143540,19 @@ export default { 40 ], "order_by": [ - 4009, + 4008, "[server_regions_order_by!]" ], "where": [ - 4001 + 4000 ] } ], "server_regions_aggregate": [ - 3998, + 3997, { "distinct_on": [ - 4011, + 4010, "[server_regions_select_column!]" ], "limit": [ @@ -143570,16 +143562,16 @@ export default { 40 ], "order_by": [ - 4009, + 4008, "[server_regions_order_by!]" ], "where": [ - 4001 + 4000 ] } ], "server_regions_by_pk": [ - 3997, + 3996, { "value": [ 80, @@ -143588,10 +143580,10 @@ export default { } ], "servers": [ - 4024, + 4023, { "distinct_on": [ - 4048, + 4047, "[servers_select_column!]" ], "limit": [ @@ -143601,19 +143593,19 @@ export default { 40 ], "order_by": [ - 4046, + 4045, "[servers_order_by!]" ], "where": [ - 4035 + 4034 ] } ], "servers_aggregate": [ - 4025, + 4024, { "distinct_on": [ - 4048, + 4047, "[servers_select_column!]" ], "limit": [ @@ -143623,28 +143615,28 @@ export default { 40 ], "order_by": [ - 4046, + 4045, "[servers_order_by!]" ], "where": [ - 4035 + 4034 ] } ], "servers_by_pk": [ - 4024, + 4023, { "id": [ - 4999, + 4998, "uuid!" ] } ], "settings": [ - 4070, + 4069, { "distinct_on": [ - 4082, + 4081, "[settings_select_column!]" ], "limit": [ @@ -143654,19 +143646,19 @@ export default { 40 ], "order_by": [ - 4080, + 4079, "[settings_order_by!]" ], "where": [ - 4073 + 4072 ] } ], "settings_aggregate": [ - 4071, + 4070, { "distinct_on": [ - 4082, + 4081, "[settings_select_column!]" ], "limit": [ @@ -143676,16 +143668,16 @@ export default { 40 ], "order_by": [ - 4080, + 4079, "[settings_order_by!]" ], "where": [ - 4073 + 4072 ] } ], "settings_by_pk": [ - 4070, + 4069, { "name": [ 80, @@ -143697,10 +143689,10 @@ export default { 74 ], "steam_account_claims": [ - 4090, + 4089, { "distinct_on": [ - 4108, + 4107, "[steam_account_claims_select_column!]" ], "limit": [ @@ -143710,19 +143702,19 @@ export default { 40 ], "order_by": [ - 4106, + 4105, "[steam_account_claims_order_by!]" ], "where": [ - 4097 + 4096 ] } ], "steam_account_claims_aggregate": [ - 4091, + 4090, { "distinct_on": [ - 4108, + 4107, "[steam_account_claims_select_column!]" ], "limit": [ @@ -143732,28 +143724,28 @@ export default { 40 ], "order_by": [ - 4106, + 4105, "[steam_account_claims_order_by!]" ], "where": [ - 4097 + 4096 ] } ], "steam_account_claims_by_pk": [ - 4090, + 4089, { "id": [ - 4999, + 4998, "uuid!" ] } ], "steam_accounts": [ - 4114, + 4113, { "distinct_on": [ - 4129, + 4128, "[steam_accounts_select_column!]" ], "limit": [ @@ -143763,19 +143755,19 @@ export default { 40 ], "order_by": [ - 4127, + 4126, "[steam_accounts_order_by!]" ], "where": [ - 4118 + 4117 ] } ], "steam_accounts_aggregate": [ - 4115, + 4114, { "distinct_on": [ - 4129, + 4128, "[steam_accounts_select_column!]" ], "limit": [ @@ -143785,28 +143777,28 @@ export default { 40 ], "order_by": [ - 4127, + 4126, "[steam_accounts_order_by!]" ], "where": [ - 4118 + 4117 ] } ], "steam_accounts_by_pk": [ - 4114, + 4113, { "id": [ - 4999, + 4998, "uuid!" ] } ], "system_alerts": [ - 4142, + 4141, { "distinct_on": [ - 4156, + 4155, "[system_alerts_select_column!]" ], "limit": [ @@ -143816,19 +143808,19 @@ export default { 40 ], "order_by": [ - 4154, + 4153, "[system_alerts_order_by!]" ], "where": [ - 4146 + 4145 ] } ], "system_alerts_aggregate": [ - 4143, + 4142, { "distinct_on": [ - 4156, + 4155, "[system_alerts_select_column!]" ], "limit": [ @@ -143838,19 +143830,19 @@ export default { 40 ], "order_by": [ - 4154, + 4153, "[system_alerts_order_by!]" ], "where": [ - 4146 + 4145 ] } ], "system_alerts_by_pk": [ - 4142, + 4141, { "id": [ - 4999, + 4998, "uuid!" ] } @@ -143859,16 +143851,16 @@ export default { 87, { "team_id": [ - 4999, + 4998, "uuid!" ] } ], "team_invites": [ - 4169, + 4168, { "distinct_on": [ - 4190, + 4189, "[team_invites_select_column!]" ], "limit": [ @@ -143878,19 +143870,19 @@ export default { 40 ], "order_by": [ - 4188, + 4187, "[team_invites_order_by!]" ], "where": [ - 4178 + 4177 ] } ], "team_invites_aggregate": [ - 4170, + 4169, { "distinct_on": [ - 4190, + 4189, "[team_invites_select_column!]" ], "limit": [ @@ -143900,28 +143892,28 @@ export default { 40 ], "order_by": [ - 4188, + 4187, "[team_invites_order_by!]" ], "where": [ - 4178 + 4177 ] } ], "team_invites_by_pk": [ - 4169, + 4168, { "id": [ - 4999, + 4998, "uuid!" ] } ], "team_roster": [ - 4210, + 4209, { "distinct_on": [ - 4233, + 4232, "[team_roster_select_column!]" ], "limit": [ @@ -143931,19 +143923,19 @@ export default { 40 ], "order_by": [ - 4231, + 4230, "[team_roster_order_by!]" ], "where": [ - 4221 + 4220 ] } ], "team_roster_aggregate": [ - 4211, + 4210, { "distinct_on": [ - 4233, + 4232, "[team_roster_select_column!]" ], "limit": [ @@ -143953,32 +143945,32 @@ export default { 40 ], "order_by": [ - 4231, + 4230, "[team_roster_order_by!]" ], "where": [ - 4221 + 4220 ] } ], "team_roster_by_pk": [ - 4210, + 4209, { "player_steam_id": [ - 258, + 257, "bigint!" ], "team_id": [ - 4999, + 4998, "uuid!" ] } ], "team_scrim_alerts": [ - 4255, + 4254, { "distinct_on": [ - 4269, + 4268, "[team_scrim_alerts_select_column!]" ], "limit": [ @@ -143988,19 +143980,19 @@ export default { 40 ], "order_by": [ - 4267, + 4266, "[team_scrim_alerts_order_by!]" ], "where": [ - 4259 + 4258 ] } ], "team_scrim_alerts_aggregate": [ - 4256, + 4255, { "distinct_on": [ - 4269, + 4268, "[team_scrim_alerts_select_column!]" ], "limit": [ @@ -144010,28 +144002,28 @@ export default { 40 ], "order_by": [ - 4267, + 4266, "[team_scrim_alerts_order_by!]" ], "where": [ - 4259 + 4258 ] } ], "team_scrim_alerts_by_pk": [ - 4255, + 4254, { "id": [ - 4999, + 4998, "uuid!" ] } ], "team_scrim_availability": [ - 4282, + 4281, { "distinct_on": [ - 4302, + 4301, "[team_scrim_availability_select_column!]" ], "limit": [ @@ -144041,19 +144033,19 @@ export default { 40 ], "order_by": [ - 4300, + 4299, "[team_scrim_availability_order_by!]" ], "where": [ - 4291 + 4290 ] } ], "team_scrim_availability_aggregate": [ - 4283, + 4282, { "distinct_on": [ - 4302, + 4301, "[team_scrim_availability_select_column!]" ], "limit": [ @@ -144063,28 +144055,28 @@ export default { 40 ], "order_by": [ - 4300, + 4299, "[team_scrim_availability_order_by!]" ], "where": [ - 4291 + 4290 ] } ], "team_scrim_availability_by_pk": [ - 4282, + 4281, { "id": [ - 4999, + 4998, "uuid!" ] } ], "team_scrim_request_proposals": [ - 4310, + 4309, { "distinct_on": [ - 4331, + 4330, "[team_scrim_request_proposals_select_column!]" ], "limit": [ @@ -144094,19 +144086,19 @@ export default { 40 ], "order_by": [ - 4329, + 4328, "[team_scrim_request_proposals_order_by!]" ], "where": [ - 4319 + 4318 ] } ], "team_scrim_request_proposals_aggregate": [ - 4311, + 4310, { "distinct_on": [ - 4331, + 4330, "[team_scrim_request_proposals_select_column!]" ], "limit": [ @@ -144116,28 +144108,28 @@ export default { 40 ], "order_by": [ - 4329, + 4328, "[team_scrim_request_proposals_order_by!]" ], "where": [ - 4319 + 4318 ] } ], "team_scrim_request_proposals_by_pk": [ - 4310, + 4309, { "id": [ - 4999, + 4998, "uuid!" ] } ], "team_scrim_requests": [ - 4351, + 4350, { "distinct_on": [ - 4375, + 4374, "[team_scrim_requests_select_column!]" ], "limit": [ @@ -144147,19 +144139,19 @@ export default { 40 ], "order_by": [ - 4373, + 4372, "[team_scrim_requests_order_by!]" ], "where": [ - 4362 + 4361 ] } ], "team_scrim_requests_aggregate": [ - 4352, + 4351, { "distinct_on": [ - 4375, + 4374, "[team_scrim_requests_select_column!]" ], "limit": [ @@ -144169,28 +144161,28 @@ export default { 40 ], "order_by": [ - 4373, + 4372, "[team_scrim_requests_order_by!]" ], "where": [ - 4362 + 4361 ] } ], "team_scrim_requests_by_pk": [ - 4351, + 4350, { "id": [ - 4999, + 4998, "uuid!" ] } ], "team_scrim_settings": [ - 4397, + 4396, { "distinct_on": [ - 4412, + 4411, "[team_scrim_settings_select_column!]" ], "limit": [ @@ -144200,19 +144192,19 @@ export default { 40 ], "order_by": [ - 4410, + 4409, "[team_scrim_settings_order_by!]" ], "where": [ - 4401 + 4400 ] } ], "team_scrim_settings_aggregate": [ - 4398, + 4397, { "distinct_on": [ - 4412, + 4411, "[team_scrim_settings_select_column!]" ], "limit": [ @@ -144222,28 +144214,28 @@ export default { 40 ], "order_by": [ - 4410, + 4409, "[team_scrim_settings_order_by!]" ], "where": [ - 4401 + 4400 ] } ], "team_scrim_settings_by_pk": [ - 4397, + 4396, { "id": [ - 4999, + 4998, "uuid!" ] } ], "team_suggestions": [ - 4425, + 4424, { "distinct_on": [ - 4439, + 4438, "[team_suggestions_select_column!]" ], "limit": [ @@ -144253,19 +144245,19 @@ export default { 40 ], "order_by": [ - 4437, + 4436, "[team_suggestions_order_by!]" ], "where": [ - 4429 + 4428 ] } ], "team_suggestions_aggregate": [ - 4426, + 4425, { "distinct_on": [ - 4439, + 4438, "[team_suggestions_select_column!]" ], "limit": [ @@ -144275,28 +144267,28 @@ export default { 40 ], "order_by": [ - 4437, + 4436, "[team_suggestions_order_by!]" ], "where": [ - 4429 + 4428 ] } ], "team_suggestions_by_pk": [ - 4425, + 4424, { "id": [ - 4999, + 4998, "uuid!" ] } ], "teams": [ - 4452, + 4451, { "distinct_on": [ - 4476, + 4475, "[teams_select_column!]" ], "limit": [ @@ -144306,19 +144298,19 @@ export default { 40 ], "order_by": [ - 4474, + 4473, "[teams_order_by!]" ], "where": [ - 4463 + 4462 ] } ], "teams_aggregate": [ - 4453, + 4452, { "distinct_on": [ - 4476, + 4475, "[teams_select_column!]" ], "limit": [ @@ -144328,19 +144320,19 @@ export default { 40 ], "order_by": [ - 4474, + 4473, "[teams_order_by!]" ], "where": [ - 4463 + 4462 ] } ], "teams_by_pk": [ - 4452, + 4451, { "id": [ - 4999, + 4998, "uuid!" ] } @@ -144349,10 +144341,10 @@ export default { 93 ], "tournament_awards": [ - 4501, + 4500, { "distinct_on": [ - 4523, + 4522, "[tournament_awards_select_column!]" ], "limit": [ @@ -144362,19 +144354,19 @@ export default { 40 ], "order_by": [ - 4521, + 4520, "[tournament_awards_order_by!]" ], "where": [ - 4510 + 4509 ] } ], "tournament_awards_aggregate": [ - 4502, + 4501, { "distinct_on": [ - 4523, + 4522, "[tournament_awards_select_column!]" ], "limit": [ @@ -144384,28 +144376,28 @@ export default { 40 ], "order_by": [ - 4521, + 4520, "[tournament_awards_order_by!]" ], "where": [ - 4510 + 4509 ] } ], "tournament_awards_by_pk": [ - 4501, + 4500, { "id": [ - 4999, + 4998, "uuid!" ] } ], "tournament_brackets": [ - 4543, + 4542, { "distinct_on": [ - 4567, + 4566, "[tournament_brackets_select_column!]" ], "limit": [ @@ -144415,19 +144407,19 @@ export default { 40 ], "order_by": [ - 4565, + 4564, "[tournament_brackets_order_by!]" ], "where": [ - 4554 + 4553 ] } ], "tournament_brackets_aggregate": [ - 4544, + 4543, { "distinct_on": [ - 4567, + 4566, "[tournament_brackets_select_column!]" ], "limit": [ @@ -144437,28 +144429,28 @@ export default { 40 ], "order_by": [ - 4565, + 4564, "[tournament_brackets_order_by!]" ], "where": [ - 4554 + 4553 ] } ], "tournament_brackets_by_pk": [ - 4543, + 4542, { "id": [ - 4999, + 4998, "uuid!" ] } ], "tournament_categories": [ - 4589, + 4588, { "distinct_on": [ - 4607, + 4606, "[tournament_categories_select_column!]" ], "limit": [ @@ -144468,19 +144460,19 @@ export default { 40 ], "order_by": [ - 4605, + 4604, "[tournament_categories_order_by!]" ], "where": [ - 4596 + 4595 ] } ], "tournament_categories_aggregate": [ - 4590, + 4589, { "distinct_on": [ - 4607, + 4606, "[tournament_categories_select_column!]" ], "limit": [ @@ -144490,32 +144482,32 @@ export default { 40 ], "order_by": [ - 4605, + 4604, "[tournament_categories_order_by!]" ], "where": [ - 4596 + 4595 ] } ], "tournament_categories_by_pk": [ - 4589, + 4588, { "category": [ - 1293, + 1292, "e_tournament_categories_enum!" ], "tournament_id": [ - 4999, + 4998, "uuid!" ] } ], "tournament_organizer_teams": [ - 4613, + 4612, { "distinct_on": [ - 4631, + 4630, "[tournament_organizer_teams_select_column!]" ], "limit": [ @@ -144525,19 +144517,19 @@ export default { 40 ], "order_by": [ - 4629, + 4628, "[tournament_organizer_teams_order_by!]" ], "where": [ - 4620 + 4619 ] } ], "tournament_organizer_teams_aggregate": [ - 4614, + 4613, { "distinct_on": [ - 4631, + 4630, "[tournament_organizer_teams_select_column!]" ], "limit": [ @@ -144547,32 +144539,32 @@ export default { 40 ], "order_by": [ - 4629, + 4628, "[tournament_organizer_teams_order_by!]" ], "where": [ - 4620 + 4619 ] } ], "tournament_organizer_teams_by_pk": [ - 4613, + 4612, { "team_id": [ - 4999, + 4998, "uuid!" ], "tournament_id": [ - 4999, + 4998, "uuid!" ] } ], "tournament_organizers": [ - 4637, + 4636, { "distinct_on": [ - 4658, + 4657, "[tournament_organizers_select_column!]" ], "limit": [ @@ -144582,19 +144574,19 @@ export default { 40 ], "order_by": [ - 4656, + 4655, "[tournament_organizers_order_by!]" ], "where": [ - 4646 + 4645 ] } ], "tournament_organizers_aggregate": [ - 4638, + 4637, { "distinct_on": [ - 4658, + 4657, "[tournament_organizers_select_column!]" ], "limit": [ @@ -144604,32 +144596,32 @@ export default { 40 ], "order_by": [ - 4656, + 4655, "[tournament_organizers_order_by!]" ], "where": [ - 4646 + 4645 ] } ], "tournament_organizers_by_pk": [ - 4637, + 4636, { "steam_id": [ - 258, + 257, "bigint!" ], "tournament_id": [ - 4999, + 4998, "uuid!" ] } ], "tournament_prizes": [ - 4678, + 4677, { "distinct_on": [ - 4699, + 4698, "[tournament_prizes_select_column!]" ], "limit": [ @@ -144639,19 +144631,19 @@ export default { 40 ], "order_by": [ - 4697, + 4696, "[tournament_prizes_order_by!]" ], "where": [ - 4687 + 4686 ] } ], "tournament_prizes_aggregate": [ - 4679, + 4678, { "distinct_on": [ - 4699, + 4698, "[tournament_prizes_select_column!]" ], "limit": [ @@ -144661,28 +144653,28 @@ export default { 40 ], "order_by": [ - 4697, + 4696, "[tournament_prizes_order_by!]" ], "where": [ - 4687 + 4686 ] } ], "tournament_prizes_by_pk": [ - 4678, + 4677, { "id": [ - 4999, + 4998, "uuid!" ] } ], "tournament_stage_windows": [ - 4719, + 4718, { "distinct_on": [ - 4740, + 4739, "[tournament_stage_windows_select_column!]" ], "limit": [ @@ -144692,19 +144684,19 @@ export default { 40 ], "order_by": [ - 4738, + 4737, "[tournament_stage_windows_order_by!]" ], "where": [ - 4728 + 4727 ] } ], "tournament_stage_windows_aggregate": [ - 4720, + 4719, { "distinct_on": [ - 4740, + 4739, "[tournament_stage_windows_select_column!]" ], "limit": [ @@ -144714,28 +144706,28 @@ export default { 40 ], "order_by": [ - 4738, + 4737, "[tournament_stage_windows_order_by!]" ], "where": [ - 4728 + 4727 ] } ], "tournament_stage_windows_by_pk": [ - 4719, + 4718, { "id": [ - 4999, + 4998, "uuid!" ] } ], "tournament_stages": [ - 4760, + 4759, { "distinct_on": [ - 4789, + 4788, "[tournament_stages_select_column!]" ], "limit": [ @@ -144745,19 +144737,19 @@ export default { 40 ], "order_by": [ - 4786, + 4785, "[tournament_stages_order_by!]" ], "where": [ - 4772 + 4771 ] } ], "tournament_stages_aggregate": [ - 4761, + 4760, { "distinct_on": [ - 4789, + 4788, "[tournament_stages_select_column!]" ], "limit": [ @@ -144767,28 +144759,28 @@ export default { 40 ], "order_by": [ - 4786, + 4785, "[tournament_stages_order_by!]" ], "where": [ - 4772 + 4771 ] } ], "tournament_stages_by_pk": [ - 4760, + 4759, { "id": [ - 4999, + 4998, "uuid!" ] } ], "tournament_team_invites": [ - 4811, + 4810, { "distinct_on": [ - 4832, + 4831, "[tournament_team_invites_select_column!]" ], "limit": [ @@ -144798,19 +144790,19 @@ export default { 40 ], "order_by": [ - 4830, + 4829, "[tournament_team_invites_order_by!]" ], "where": [ - 4820 + 4819 ] } ], "tournament_team_invites_aggregate": [ - 4812, + 4811, { "distinct_on": [ - 4832, + 4831, "[tournament_team_invites_select_column!]" ], "limit": [ @@ -144820,28 +144812,28 @@ export default { 40 ], "order_by": [ - 4830, + 4829, "[tournament_team_invites_order_by!]" ], "where": [ - 4820 + 4819 ] } ], "tournament_team_invites_by_pk": [ - 4811, + 4810, { "id": [ - 4999, + 4998, "uuid!" ] } ], "tournament_team_roster": [ - 4852, + 4851, { "distinct_on": [ - 4873, + 4872, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -144851,19 +144843,19 @@ export default { 40 ], "order_by": [ - 4871, + 4870, "[tournament_team_roster_order_by!]" ], "where": [ - 4861 + 4860 ] } ], "tournament_team_roster_aggregate": [ - 4853, + 4852, { "distinct_on": [ - 4873, + 4872, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -144873,32 +144865,32 @@ export default { 40 ], "order_by": [ - 4871, + 4870, "[tournament_team_roster_order_by!]" ], "where": [ - 4861 + 4860 ] } ], "tournament_team_roster_by_pk": [ - 4852, + 4851, { "player_steam_id": [ - 258, + 257, "bigint!" ], "tournament_id": [ - 4999, + 4998, "uuid!" ] } ], "tournament_teams": [ - 4893, + 4892, { "distinct_on": [ - 4915, + 4914, "[tournament_teams_select_column!]" ], "limit": [ @@ -144908,19 +144900,19 @@ export default { 40 ], "order_by": [ - 4913, + 4912, "[tournament_teams_order_by!]" ], "where": [ - 4902 + 4901 ] } ], "tournament_teams_aggregate": [ - 4894, + 4893, { "distinct_on": [ - 4915, + 4914, "[tournament_teams_select_column!]" ], "limit": [ @@ -144930,28 +144922,28 @@ export default { 40 ], "order_by": [ - 4913, + 4912, "[tournament_teams_order_by!]" ], "where": [ - 4902 + 4901 ] } ], "tournament_teams_by_pk": [ - 4893, + 4892, { "id": [ - 4999, + 4998, "uuid!" ] } ], "tournaments": [ - 4935, + 4934, { "distinct_on": [ - 4969, + 4968, "[tournaments_select_column!]" ], "limit": [ @@ -144961,19 +144953,19 @@ export default { 40 ], "order_by": [ - 4967, + 4966, "[tournaments_order_by!]" ], "where": [ - 4956 + 4955 ] } ], "tournaments_aggregate": [ - 4936, + 4935, { "distinct_on": [ - 4969, + 4968, "[tournaments_select_column!]" ], "limit": [ @@ -144983,28 +144975,28 @@ export default { 40 ], "order_by": [ - 4967, + 4966, "[tournaments_order_by!]" ], "where": [ - 4956 + 4955 ] } ], "tournaments_by_pk": [ - 4935, + 4934, { "id": [ - 4999, + 4998, "uuid!" ] } ], "v_event_player_stats": [ - 5002, + 5001, { "distinct_on": [ - 5028, + 5027, "[v_event_player_stats_select_column!]" ], "limit": [ @@ -145014,19 +145006,19 @@ export default { 40 ], "order_by": [ - 5027, + 5026, "[v_event_player_stats_order_by!]" ], "where": [ - 5021 + 5020 ] } ], "v_event_player_stats_aggregate": [ - 5003, + 5002, { "distinct_on": [ - 5028, + 5027, "[v_event_player_stats_select_column!]" ], "limit": [ @@ -145036,19 +145028,19 @@ export default { 40 ], "order_by": [ - 5027, + 5026, "[v_event_player_stats_order_by!]" ], "where": [ - 5021 + 5020 ] } ], "v_gpu_pool_status": [ - 5053, + 5052, { "distinct_on": [ - 5061, + 5060, "[v_gpu_pool_status_select_column!]" ], "limit": [ @@ -145058,19 +145050,19 @@ export default { 40 ], "order_by": [ - 5060, + 5059, "[v_gpu_pool_status_order_by!]" ], "where": [ - 5057 + 5056 ] } ], "v_gpu_pool_status_aggregate": [ - 5054, + 5053, { "distinct_on": [ - 5061, + 5060, "[v_gpu_pool_status_select_column!]" ], "limit": [ @@ -145080,19 +145072,19 @@ export default { 40 ], "order_by": [ - 5060, + 5059, "[v_gpu_pool_status_order_by!]" ], "where": [ - 5057 + 5056 ] } ], "v_league_division_standings": [ - 5071, + 5070, { "distinct_on": [ - 5087, + 5086, "[v_league_division_standings_select_column!]" ], "limit": [ @@ -145102,19 +145094,19 @@ export default { 40 ], "order_by": [ - 5086, + 5085, "[v_league_division_standings_order_by!]" ], "where": [ - 5080 + 5079 ] } ], "v_league_division_standings_aggregate": [ - 5072, + 5071, { "distinct_on": [ - 5087, + 5086, "[v_league_division_standings_select_column!]" ], "limit": [ @@ -145124,19 +145116,19 @@ export default { 40 ], "order_by": [ - 5086, + 5085, "[v_league_division_standings_order_by!]" ], "where": [ - 5080 + 5079 ] } ], "v_league_season_player_stats": [ - 5104, + 5103, { "distinct_on": [ - 5130, + 5129, "[v_league_season_player_stats_select_column!]" ], "limit": [ @@ -145146,19 +145138,19 @@ export default { 40 ], "order_by": [ - 5129, + 5128, "[v_league_season_player_stats_order_by!]" ], "where": [ - 5123 + 5122 ] } ], "v_league_season_player_stats_aggregate": [ - 5105, + 5104, { "distinct_on": [ - 5130, + 5129, "[v_league_season_player_stats_select_column!]" ], "limit": [ @@ -145168,19 +145160,19 @@ export default { 40 ], "order_by": [ - 5129, + 5128, "[v_league_season_player_stats_order_by!]" ], "where": [ - 5123 + 5122 ] } ], "v_match_captains": [ - 5155, + 5154, { "distinct_on": [ - 5167, + 5166, "[v_match_captains_select_column!]" ], "limit": [ @@ -145190,19 +145182,19 @@ export default { 40 ], "order_by": [ - 5166, + 5165, "[v_match_captains_order_by!]" ], "where": [ - 5159 + 5158 ] } ], "v_match_captains_aggregate": [ - 5156, + 5155, { "distinct_on": [ - 5167, + 5166, "[v_match_captains_select_column!]" ], "limit": [ @@ -145212,19 +145204,19 @@ export default { 40 ], "order_by": [ - 5166, + 5165, "[v_match_captains_order_by!]" ], "where": [ - 5159 + 5158 ] } ], "v_match_clutches": [ - 5179, + 5178, { "distinct_on": [ - 5195, + 5194, "[v_match_clutches_select_column!]" ], "limit": [ @@ -145234,19 +145226,19 @@ export default { 40 ], "order_by": [ - 5194, + 5193, "[v_match_clutches_order_by!]" ], "where": [ - 5188 + 5187 ] } ], "v_match_clutches_aggregate": [ - 5180, + 5179, { "distinct_on": [ - 5195, + 5194, "[v_match_clutches_select_column!]" ], "limit": [ @@ -145256,19 +145248,19 @@ export default { 40 ], "order_by": [ - 5194, + 5193, "[v_match_clutches_order_by!]" ], "where": [ - 5188 + 5187 ] } ], "v_match_kill_pairs": [ - 5212, + 5211, { "distinct_on": [ - 5220, + 5219, "[v_match_kill_pairs_select_column!]" ], "limit": [ @@ -145278,19 +145270,19 @@ export default { 40 ], "order_by": [ - 5219, + 5218, "[v_match_kill_pairs_order_by!]" ], "where": [ - 5216 + 5215 ] } ], "v_match_kill_pairs_aggregate": [ - 5213, + 5212, { "distinct_on": [ - 5220, + 5219, "[v_match_kill_pairs_select_column!]" ], "limit": [ @@ -145300,19 +145292,19 @@ export default { 40 ], "order_by": [ - 5219, + 5218, "[v_match_kill_pairs_order_by!]" ], "where": [ - 5216 + 5215 ] } ], "v_match_lineup_buy_types": [ - 5230, + 5229, { "distinct_on": [ - 5238, + 5237, "[v_match_lineup_buy_types_select_column!]" ], "limit": [ @@ -145322,19 +145314,19 @@ export default { 40 ], "order_by": [ - 5237, + 5236, "[v_match_lineup_buy_types_order_by!]" ], "where": [ - 5234 + 5233 ] } ], "v_match_lineup_buy_types_aggregate": [ - 5231, + 5230, { "distinct_on": [ - 5238, + 5237, "[v_match_lineup_buy_types_select_column!]" ], "limit": [ @@ -145344,19 +145336,19 @@ export default { 40 ], "order_by": [ - 5237, + 5236, "[v_match_lineup_buy_types_order_by!]" ], "where": [ - 5234 + 5233 ] } ], "v_match_lineup_map_stats": [ - 5248, + 5247, { "distinct_on": [ - 5256, + 5255, "[v_match_lineup_map_stats_select_column!]" ], "limit": [ @@ -145366,19 +145358,19 @@ export default { 40 ], "order_by": [ - 5255, + 5254, "[v_match_lineup_map_stats_order_by!]" ], "where": [ - 5252 + 5251 ] } ], "v_match_lineup_map_stats_aggregate": [ - 5249, + 5248, { "distinct_on": [ - 5256, + 5255, "[v_match_lineup_map_stats_select_column!]" ], "limit": [ @@ -145388,19 +145380,19 @@ export default { 40 ], "order_by": [ - 5255, + 5254, "[v_match_lineup_map_stats_order_by!]" ], "where": [ - 5252 + 5251 ] } ], "v_match_map_backup_rounds": [ - 5266, + 5265, { "distinct_on": [ - 5277, + 5276, "[v_match_map_backup_rounds_select_column!]" ], "limit": [ @@ -145410,19 +145402,19 @@ export default { 40 ], "order_by": [ - 5276, + 5275, "[v_match_map_backup_rounds_order_by!]" ], "where": [ - 5270 + 5269 ] } ], "v_match_map_backup_rounds_aggregate": [ - 5267, + 5266, { "distinct_on": [ - 5277, + 5276, "[v_match_map_backup_rounds_select_column!]" ], "limit": [ @@ -145432,19 +145424,19 @@ export default { 40 ], "order_by": [ - 5276, + 5275, "[v_match_map_backup_rounds_order_by!]" ], "where": [ - 5270 + 5269 ] } ], "v_match_player_buy_types": [ - 5289, + 5288, { "distinct_on": [ - 5297, + 5296, "[v_match_player_buy_types_select_column!]" ], "limit": [ @@ -145454,19 +145446,19 @@ export default { 40 ], "order_by": [ - 5296, + 5295, "[v_match_player_buy_types_order_by!]" ], "where": [ - 5293 + 5292 ] } ], "v_match_player_buy_types_aggregate": [ - 5290, + 5289, { "distinct_on": [ - 5297, + 5296, "[v_match_player_buy_types_select_column!]" ], "limit": [ @@ -145476,19 +145468,19 @@ export default { 40 ], "order_by": [ - 5296, + 5295, "[v_match_player_buy_types_order_by!]" ], "where": [ - 5293 + 5292 ] } ], "v_match_player_opening_duels": [ - 5307, + 5306, { "distinct_on": [ - 5323, + 5322, "[v_match_player_opening_duels_select_column!]" ], "limit": [ @@ -145498,19 +145490,19 @@ export default { 40 ], "order_by": [ - 5322, + 5321, "[v_match_player_opening_duels_order_by!]" ], "where": [ - 5316 + 5315 ] } ], "v_match_player_opening_duels_aggregate": [ - 5308, + 5307, { "distinct_on": [ - 5323, + 5322, "[v_match_player_opening_duels_select_column!]" ], "limit": [ @@ -145520,19 +145512,19 @@ export default { 40 ], "order_by": [ - 5322, + 5321, "[v_match_player_opening_duels_order_by!]" ], "where": [ - 5316 + 5315 ] } ], "v_player_arch_nemesis": [ - 5340, + 5339, { "distinct_on": [ - 5348, + 5347, "[v_player_arch_nemesis_select_column!]" ], "limit": [ @@ -145542,19 +145534,19 @@ export default { 40 ], "order_by": [ - 5347, + 5346, "[v_player_arch_nemesis_order_by!]" ], "where": [ - 5344 + 5343 ] } ], "v_player_arch_nemesis_aggregate": [ - 5341, + 5340, { "distinct_on": [ - 5348, + 5347, "[v_player_arch_nemesis_select_column!]" ], "limit": [ @@ -145564,19 +145556,19 @@ export default { 40 ], "order_by": [ - 5347, + 5346, "[v_player_arch_nemesis_order_by!]" ], "where": [ - 5344 + 5343 ] } ], "v_player_damage": [ - 5358, + 5357, { "distinct_on": [ - 5366, + 5365, "[v_player_damage_select_column!]" ], "limit": [ @@ -145586,19 +145578,19 @@ export default { 40 ], "order_by": [ - 5365, + 5364, "[v_player_damage_order_by!]" ], "where": [ - 5362 + 5361 ] } ], "v_player_damage_aggregate": [ - 5359, + 5358, { "distinct_on": [ - 5366, + 5365, "[v_player_damage_select_column!]" ], "limit": [ @@ -145608,19 +145600,19 @@ export default { 40 ], "order_by": [ - 5365, + 5364, "[v_player_damage_order_by!]" ], "where": [ - 5362 + 5361 ] } ], "v_player_elo": [ - 5376, + 5375, { "distinct_on": [ - 5402, + 5401, "[v_player_elo_select_column!]" ], "limit": [ @@ -145630,19 +145622,19 @@ export default { 40 ], "order_by": [ - 5401, + 5400, "[v_player_elo_order_by!]" ], "where": [ - 5395 + 5394 ] } ], "v_player_elo_aggregate": [ - 5377, + 5376, { "distinct_on": [ - 5402, + 5401, "[v_player_elo_select_column!]" ], "limit": [ @@ -145652,19 +145644,19 @@ export default { 40 ], "order_by": [ - 5401, + 5400, "[v_player_elo_order_by!]" ], "where": [ - 5395 + 5394 ] } ], "v_player_map_losses": [ - 5427, + 5426, { "distinct_on": [ - 5435, + 5434, "[v_player_map_losses_select_column!]" ], "limit": [ @@ -145674,19 +145666,19 @@ export default { 40 ], "order_by": [ - 5434, + 5433, "[v_player_map_losses_order_by!]" ], "where": [ - 5431 + 5430 ] } ], "v_player_map_losses_aggregate": [ - 5428, + 5427, { "distinct_on": [ - 5435, + 5434, "[v_player_map_losses_select_column!]" ], "limit": [ @@ -145696,19 +145688,19 @@ export default { 40 ], "order_by": [ - 5434, + 5433, "[v_player_map_losses_order_by!]" ], "where": [ - 5431 + 5430 ] } ], "v_player_map_wins": [ - 5445, + 5444, { "distinct_on": [ - 5453, + 5452, "[v_player_map_wins_select_column!]" ], "limit": [ @@ -145718,19 +145710,19 @@ export default { 40 ], "order_by": [ - 5452, + 5451, "[v_player_map_wins_order_by!]" ], "where": [ - 5449 + 5448 ] } ], "v_player_map_wins_aggregate": [ - 5446, + 5445, { "distinct_on": [ - 5453, + 5452, "[v_player_map_wins_select_column!]" ], "limit": [ @@ -145740,19 +145732,19 @@ export default { 40 ], "order_by": [ - 5452, + 5451, "[v_player_map_wins_order_by!]" ], "where": [ - 5449 + 5448 ] } ], "v_player_match_head_to_head": [ - 5463, + 5462, { "distinct_on": [ - 5471, + 5470, "[v_player_match_head_to_head_select_column!]" ], "limit": [ @@ -145762,19 +145754,19 @@ export default { 40 ], "order_by": [ - 5470, + 5469, "[v_player_match_head_to_head_order_by!]" ], "where": [ - 5467 + 5466 ] } ], "v_player_match_head_to_head_aggregate": [ - 5464, + 5463, { "distinct_on": [ - 5471, + 5470, "[v_player_match_head_to_head_select_column!]" ], "limit": [ @@ -145784,19 +145776,19 @@ export default { 40 ], "order_by": [ - 5470, + 5469, "[v_player_match_head_to_head_order_by!]" ], "where": [ - 5467 + 5466 ] } ], "v_player_match_map_hltv": [ - 5481, + 5480, { "distinct_on": [ - 5499, + 5498, "[v_player_match_map_hltv_select_column!]" ], "limit": [ @@ -145806,19 +145798,19 @@ export default { 40 ], "order_by": [ - 5498, + 5497, "[v_player_match_map_hltv_order_by!]" ], "where": [ - 5490 + 5489 ] } ], "v_player_match_map_hltv_aggregate": [ - 5482, + 5481, { "distinct_on": [ - 5499, + 5498, "[v_player_match_map_hltv_select_column!]" ], "limit": [ @@ -145828,19 +145820,19 @@ export default { 40 ], "order_by": [ - 5498, + 5497, "[v_player_match_map_hltv_order_by!]" ], "where": [ - 5490 + 5489 ] } ], "v_player_match_map_roles": [ - 5518, + 5517, { "distinct_on": [ - 5526, + 5525, "[v_player_match_map_roles_select_column!]" ], "limit": [ @@ -145850,19 +145842,19 @@ export default { 40 ], "order_by": [ - 5525, + 5524, "[v_player_match_map_roles_order_by!]" ], "where": [ - 5522 + 5521 ] } ], "v_player_match_map_roles_aggregate": [ - 5519, + 5518, { "distinct_on": [ - 5526, + 5525, "[v_player_match_map_roles_select_column!]" ], "limit": [ @@ -145872,19 +145864,19 @@ export default { 40 ], "order_by": [ - 5525, + 5524, "[v_player_match_map_roles_order_by!]" ], "where": [ - 5522 + 5521 ] } ], "v_player_match_performance": [ - 5536, + 5535, { "distinct_on": [ - 5544, + 5543, "[v_player_match_performance_select_column!]" ], "limit": [ @@ -145894,19 +145886,19 @@ export default { 40 ], "order_by": [ - 5543, + 5542, "[v_player_match_performance_order_by!]" ], "where": [ - 5540 + 5539 ] } ], "v_player_match_performance_aggregate": [ - 5537, + 5536, { "distinct_on": [ - 5544, + 5543, "[v_player_match_performance_select_column!]" ], "limit": [ @@ -145916,19 +145908,19 @@ export default { 40 ], "order_by": [ - 5543, + 5542, "[v_player_match_performance_order_by!]" ], "where": [ - 5540 + 5539 ] } ], "v_player_match_rating": [ - 5554, + 5553, { "distinct_on": [ - 5562, + 5561, "[v_player_match_rating_select_column!]" ], "limit": [ @@ -145938,19 +145930,19 @@ export default { 40 ], "order_by": [ - 5561, + 5560, "[v_player_match_rating_order_by!]" ], "where": [ - 5558 + 5557 ] } ], "v_player_match_rating_aggregate": [ - 5555, + 5554, { "distinct_on": [ - 5562, + 5561, "[v_player_match_rating_select_column!]" ], "limit": [ @@ -145960,19 +145952,19 @@ export default { 40 ], "order_by": [ - 5561, + 5560, "[v_player_match_rating_order_by!]" ], "where": [ - 5558 + 5557 ] } ], "v_player_multi_kills": [ - 5572, + 5571, { "distinct_on": [ - 5588, + 5587, "[v_player_multi_kills_select_column!]" ], "limit": [ @@ -145982,19 +145974,19 @@ export default { 40 ], "order_by": [ - 5587, + 5586, "[v_player_multi_kills_order_by!]" ], "where": [ - 5581 + 5580 ] } ], "v_player_multi_kills_aggregate": [ - 5573, + 5572, { "distinct_on": [ - 5588, + 5587, "[v_player_multi_kills_select_column!]" ], "limit": [ @@ -146004,19 +145996,19 @@ export default { 40 ], "order_by": [ - 5587, + 5586, "[v_player_multi_kills_order_by!]" ], "where": [ - 5581 + 5580 ] } ], "v_player_weapon_damage": [ - 5605, + 5604, { "distinct_on": [ - 5613, + 5612, "[v_player_weapon_damage_select_column!]" ], "limit": [ @@ -146026,19 +146018,19 @@ export default { 40 ], "order_by": [ - 5612, + 5611, "[v_player_weapon_damage_order_by!]" ], "where": [ - 5609 + 5608 ] } ], "v_player_weapon_damage_aggregate": [ - 5606, + 5605, { "distinct_on": [ - 5613, + 5612, "[v_player_weapon_damage_select_column!]" ], "limit": [ @@ -146048,19 +146040,19 @@ export default { 40 ], "order_by": [ - 5612, + 5611, "[v_player_weapon_damage_order_by!]" ], "where": [ - 5609 + 5608 ] } ], "v_player_weapon_kills": [ - 5623, + 5622, { "distinct_on": [ - 5631, + 5630, "[v_player_weapon_kills_select_column!]" ], "limit": [ @@ -146070,19 +146062,19 @@ export default { 40 ], "order_by": [ - 5630, + 5629, "[v_player_weapon_kills_order_by!]" ], "where": [ - 5627 + 5626 ] } ], "v_player_weapon_kills_aggregate": [ - 5624, + 5623, { "distinct_on": [ - 5631, + 5630, "[v_player_weapon_kills_select_column!]" ], "limit": [ @@ -146092,19 +146084,19 @@ export default { 40 ], "order_by": [ - 5630, + 5629, "[v_player_weapon_kills_order_by!]" ], "where": [ - 5627 + 5626 ] } ], "v_pool_maps": [ - 5641, + 5640, { "distinct_on": [ - 5658, + 5657, "[v_pool_maps_select_column!]" ], "limit": [ @@ -146114,19 +146106,19 @@ export default { 40 ], "order_by": [ - 5657, + 5656, "[v_pool_maps_order_by!]" ], "where": [ - 5650 + 5649 ] } ], "v_pool_maps_aggregate": [ - 5642, + 5641, { "distinct_on": [ - 5658, + 5657, "[v_pool_maps_select_column!]" ], "limit": [ @@ -146136,19 +146128,19 @@ export default { 40 ], "order_by": [ - 5657, + 5656, "[v_pool_maps_order_by!]" ], "where": [ - 5650 + 5649 ] } ], "v_steam_account_pool_status": [ - 5665, + 5664, { "distinct_on": [ - 5673, + 5672, "[v_steam_account_pool_status_select_column!]" ], "limit": [ @@ -146158,19 +146150,19 @@ export default { 40 ], "order_by": [ - 5672, + 5671, "[v_steam_account_pool_status_order_by!]" ], "where": [ - 5669 + 5668 ] } ], "v_steam_account_pool_status_aggregate": [ - 5666, + 5665, { "distinct_on": [ - 5673, + 5672, "[v_steam_account_pool_status_select_column!]" ], "limit": [ @@ -146180,19 +146172,19 @@ export default { 40 ], "order_by": [ - 5672, + 5671, "[v_steam_account_pool_status_order_by!]" ], "where": [ - 5669 + 5668 ] } ], "v_team_ranks": [ - 5683, + 5682, { "distinct_on": [ - 5693, + 5692, "[v_team_ranks_select_column!]" ], "limit": [ @@ -146202,19 +146194,19 @@ export default { 40 ], "order_by": [ - 5692, + 5691, "[v_team_ranks_order_by!]" ], "where": [ - 5687 + 5686 ] } ], "v_team_ranks_aggregate": [ - 5684, + 5683, { "distinct_on": [ - 5693, + 5692, "[v_team_ranks_select_column!]" ], "limit": [ @@ -146224,19 +146216,19 @@ export default { 40 ], "order_by": [ - 5692, + 5691, "[v_team_ranks_order_by!]" ], "where": [ - 5687 + 5686 ] } ], "v_team_reputation": [ - 5703, + 5702, { "distinct_on": [ - 5713, + 5712, "[v_team_reputation_select_column!]" ], "limit": [ @@ -146246,19 +146238,19 @@ export default { 40 ], "order_by": [ - 5712, + 5711, "[v_team_reputation_order_by!]" ], "where": [ - 5707 + 5706 ] } ], "v_team_reputation_aggregate": [ - 5704, + 5703, { "distinct_on": [ - 5713, + 5712, "[v_team_reputation_select_column!]" ], "limit": [ @@ -146268,19 +146260,19 @@ export default { 40 ], "order_by": [ - 5712, + 5711, "[v_team_reputation_order_by!]" ], "where": [ - 5707 + 5706 ] } ], "v_team_stage_results": [ - 5723, + 5722, { "distinct_on": [ - 5755, + 5754, "[v_team_stage_results_select_column!]" ], "limit": [ @@ -146290,19 +146282,19 @@ export default { 40 ], "order_by": [ - 5753, + 5752, "[v_team_stage_results_order_by!]" ], "where": [ - 5742 + 5741 ] } ], "v_team_stage_results_aggregate": [ - 5724, + 5723, { "distinct_on": [ - 5755, + 5754, "[v_team_stage_results_select_column!]" ], "limit": [ @@ -146312,32 +146304,32 @@ export default { 40 ], "order_by": [ - 5753, + 5752, "[v_team_stage_results_order_by!]" ], "where": [ - 5742 + 5741 ] } ], "v_team_stage_results_by_pk": [ - 5723, + 5722, { "tournament_stage_id": [ - 4999, + 4998, "uuid!" ], "tournament_team_id": [ - 4999, + 4998, "uuid!" ] } ], "v_team_tournament_results": [ - 5783, + 5782, { "distinct_on": [ - 5809, + 5808, "[v_team_tournament_results_select_column!]" ], "limit": [ @@ -146347,19 +146339,19 @@ export default { 40 ], "order_by": [ - 5808, + 5807, "[v_team_tournament_results_order_by!]" ], "where": [ - 5802 + 5801 ] } ], "v_team_tournament_results_aggregate": [ - 5784, + 5783, { "distinct_on": [ - 5809, + 5808, "[v_team_tournament_results_select_column!]" ], "limit": [ @@ -146369,19 +146361,19 @@ export default { 40 ], "order_by": [ - 5808, + 5807, "[v_team_tournament_results_order_by!]" ], "where": [ - 5802 + 5801 ] } ], "v_tournament_player_stats": [ - 5834, + 5833, { "distinct_on": [ - 5860, + 5859, "[v_tournament_player_stats_select_column!]" ], "limit": [ @@ -146391,19 +146383,19 @@ export default { 40 ], "order_by": [ - 5859, + 5858, "[v_tournament_player_stats_order_by!]" ], "where": [ - 5853 + 5852 ] } ], "v_tournament_player_stats_aggregate": [ - 5835, + 5834, { "distinct_on": [ - 5860, + 5859, "[v_tournament_player_stats_select_column!]" ], "limit": [ @@ -146413,11 +146405,11 @@ export default { 40 ], "order_by": [ - 5859, + 5858, "[v_tournament_player_stats_order_by!]" ], "where": [ - 5853 + 5852 ] } ], @@ -146430,7 +146422,7 @@ export default { 57, { "match_id": [ - 4999, + 4998, "uuid!" ] } @@ -146439,17 +146431,17 @@ export default { 83, { "match_id": [ - 4999, + 4998, "uuid!" ], "reset_status": [ 80 ], "scheduled_at": [ - 4499 + 4498 ], "winning_lineup_id": [ - 4999 + 4998 ] } ], @@ -146457,7 +146449,7 @@ export default { 83, { "invite_id": [ - 4999, + 4998, "uuid!" ], "type": [ @@ -146470,7 +146462,7 @@ export default { 83, { "draftGameId": [ - 4999, + 4998, "uuid!" ], "steamId": [ @@ -146503,20 +146495,20 @@ export default { "String!" ], "steam_id": [ - 258, + 257, "bigint!" ] } ], "approve_league_season_movements": [ - 2059, + 2058, { "args": [ - 188, + 187, "approve_league_season_movements_args!" ], "distinct_on": [ - 2080, + 2079, "[league_team_movements_select_column!]" ], "limit": [ @@ -146526,11 +146518,11 @@ export default { 40 ], "order_by": [ - 2078, + 2077, "[league_team_movements_order_by!]" ], "where": [ - 2068 + 2067 ] } ], @@ -146538,7 +146530,7 @@ export default { 76 ], "attachDemo": [ - 100 + 99 ], "backfillSeasonElo": [ 60, @@ -146556,7 +146548,7 @@ export default { 83, { "game_server_node_id": [ - 4999, + 4998, "uuid!" ] } @@ -146577,7 +146569,7 @@ export default { 83, { "game_server_node_id": [ - 4999, + 4998, "uuid!" ] } @@ -146586,7 +146578,7 @@ export default { 83, { "job_id": [ - 4999, + 4998, "uuid!" ] } @@ -146595,7 +146587,7 @@ export default { 83, { "match_map_id": [ - 4999, + 4998, "uuid!" ] } @@ -146604,7 +146596,7 @@ export default { 83, { "match_id": [ - 4999, + 4998, "uuid!" ] } @@ -146622,7 +146614,7 @@ export default { 83, { "request_id": [ - 4999, + 4998, "uuid!" ] } @@ -146631,7 +146623,7 @@ export default { 83, { "match_id": [ - 4999, + 4998, "uuid!" ] } @@ -146640,7 +146632,7 @@ export default { 83, { "match_map_id": [ - 4999, + 4998, "uuid!" ] } @@ -146658,14 +146650,14 @@ export default { } ], "clone_league_season": [ - 2026, + 2025, { "args": [ - 313, + 312, "clone_league_season_args!" ], "distinct_on": [ - 2046, + 2045, "[league_seasons_select_column!]" ], "limit": [ @@ -146675,11 +146667,11 @@ export default { 40 ], "order_by": [ - 2043, + 2042, "[league_seasons_order_by!]" ], "where": [ - 2031 + 2030 ] } ], @@ -146687,11 +146679,11 @@ export default { 83, { "proposed_scheduled_at": [ - 4499, + 4498, "timestamptz!" ], "request_id": [ - 4999, + 4998, "uuid!" ] } @@ -146712,7 +146704,7 @@ export default { 40 ], "match_map_id": [ - 4999, + 4998, "uuid!" ], "preset": [ @@ -146747,7 +146739,7 @@ export default { 83, { "match_id": [ - 4999, + 4998, "uuid!" ] } @@ -146756,7 +146748,7 @@ export default { 16, { "settings": [ - 1823, + 1822, "jsonb!" ] } @@ -146773,7 +146765,7 @@ export default { "ScheduledLineupInput!" ], "options": [ - 1823, + 1822, "jsonb!" ], "scheduled_at": [ @@ -146802,7 +146794,7 @@ export default { 83, { "id": [ - 4999, + 4998, "uuid!" ] } @@ -146811,7 +146803,7 @@ export default { 83, { "clip_id": [ - 4999, + 4998, "uuid!" ] } @@ -146829,7 +146821,7 @@ export default { 83, { "id": [ - 4999, + 4998, "uuid!" ] } @@ -146863,228 +146855,228 @@ export default { 83, { "tournament_id": [ - 4999, + 4998, "uuid!" ] } ], "delete__map_pool": [ - 109, + 108, { "where": [ - 104, + 103, "_map_pool_bool_exp!" ] } ], "delete__map_pool_by_pk": [ - 101, + 100, { "map_id": [ - 4999, + 4998, "uuid!" ], "map_pool_id": [ - 4999, + 4998, "uuid!" ] } ], "delete_abandoned_matches": [ - 137, + 136, { "where": [ - 129, + 128, "abandoned_matches_bool_exp!" ] } ], "delete_abandoned_matches_by_pk": [ - 120, + 119, { "id": [ - 4999, + 4998, "uuid!" ] } ], "delete_api_keys": [ - 171, + 170, { "where": [ - 165, + 164, "api_keys_bool_exp!" ] } ], "delete_api_keys_by_pk": [ - 161, + 160, { "id": [ - 4999, + 4998, "uuid!" ] } ], "delete_award_recipients": [ - 206, + 205, { "where": [ - 198, + 197, "award_recipients_bool_exp!" ] } ], "delete_award_recipients_by_pk": [ - 189, + 188, { "id": [ - 4999, + 4998, "uuid!" ] } ], "delete_awards": [ - 240, + 239, { "where": [ - 234, + 233, "awards_bool_exp!" ] } ], "delete_awards_by_pk": [ - 230, + 229, { "id": [ - 4999, + 4998, "uuid!" ] } ], "delete_clip_render_jobs": [ - 286, + 285, { "where": [ - 275, + 274, "clip_render_jobs_bool_exp!" ] } ], "delete_clip_render_jobs_by_pk": [ - 263, + 262, { "id": [ - 4999, + 4998, "uuid!" ] } ], "delete_custom_pages": [ - 329, + 328, { "where": [ - 320, + 319, "custom_pages_bool_exp!" ] } ], "delete_custom_pages_by_pk": [ - 315, + 314, { "id": [ - 4999, + 4998, "uuid!" ] } ], "delete_db_backups": [ - 357, + 356, { "where": [ - 351, + 350, "db_backups_bool_exp!" ] } ], "delete_db_backups_by_pk": [ - 347, + 346, { "id": [ - 4999, + 4998, "uuid!" ] } ], "delete_draft_game_picks": [ - 393, + 392, { "where": [ - 385, + 384, "draft_game_picks_bool_exp!" ] } ], "delete_draft_game_picks_by_pk": [ - 374, + 373, { "id": [ - 4999, + 4998, "uuid!" ] } ], "delete_draft_game_players": [ - 438, + 437, { "where": [ - 430, + 429, "draft_game_players_bool_exp!" ] } ], "delete_draft_game_players_by_pk": [ - 419, + 418, { "draft_game_id": [ - 4999, + 4998, "uuid!" ], "steam_id": [ - 258, + 257, "bigint!" ] } ], "delete_draft_games": [ - 483, + 482, { "where": [ - 475, + 474, "draft_games_bool_exp!" ] } ], "delete_draft_games_by_pk": [ - 464, + 463, { "id": [ - 4999, + 4998, "uuid!" ] } ], "delete_e_award_sources": [ - 520, + 519, { "where": [ - 513, + 512, "e_award_sources_bool_exp!" ] } ], "delete_e_award_sources_by_pk": [ - 510, + 509, { "value": [ 80, @@ -147093,16 +147085,16 @@ export default { } ], "delete_e_award_tiers": [ - 540, + 539, { "where": [ - 533, + 532, "e_award_tiers_bool_exp!" ] } ], "delete_e_award_tiers_by_pk": [ - 530, + 529, { "value": [ 80, @@ -147111,16 +147103,16 @@ export default { } ], "delete_e_check_in_settings": [ - 560, + 559, { "where": [ - 553, + 552, "e_check_in_settings_bool_exp!" ] } ], "delete_e_check_in_settings_by_pk": [ - 550, + 549, { "value": [ 80, @@ -147129,16 +147121,16 @@ export default { } ], "delete_e_draft_game_captain_selection": [ - 580, + 579, { "where": [ - 573, + 572, "e_draft_game_captain_selection_bool_exp!" ] } ], "delete_e_draft_game_captain_selection_by_pk": [ - 570, + 569, { "value": [ 80, @@ -147147,16 +147139,16 @@ export default { } ], "delete_e_draft_game_draft_order": [ - 601, + 600, { "where": [ - 594, + 593, "e_draft_game_draft_order_bool_exp!" ] } ], "delete_e_draft_game_draft_order_by_pk": [ - 591, + 590, { "value": [ 80, @@ -147165,16 +147157,16 @@ export default { } ], "delete_e_draft_game_mode": [ - 622, + 621, { "where": [ - 615, + 614, "e_draft_game_mode_bool_exp!" ] } ], "delete_e_draft_game_mode_by_pk": [ - 612, + 611, { "value": [ 80, @@ -147183,16 +147175,16 @@ export default { } ], "delete_e_draft_game_player_status": [ - 643, + 642, { "where": [ - 636, + 635, "e_draft_game_player_status_bool_exp!" ] } ], "delete_e_draft_game_player_status_by_pk": [ - 633, + 632, { "value": [ 80, @@ -147201,16 +147193,16 @@ export default { } ], "delete_e_draft_game_status": [ - 664, + 663, { "where": [ - 657, + 656, "e_draft_game_status_bool_exp!" ] } ], "delete_e_draft_game_status_by_pk": [ - 654, + 653, { "value": [ 80, @@ -147219,16 +147211,16 @@ export default { } ], "delete_e_event_media_access": [ - 685, + 684, { "where": [ - 678, + 677, "e_event_media_access_bool_exp!" ] } ], "delete_e_event_media_access_by_pk": [ - 675, + 674, { "value": [ 80, @@ -147237,16 +147229,16 @@ export default { } ], "delete_e_event_visibility": [ - 705, + 704, { "where": [ - 698, + 697, "e_event_visibility_bool_exp!" ] } ], "delete_e_event_visibility_by_pk": [ - 695, + 694, { "value": [ 80, @@ -147255,16 +147247,16 @@ export default { } ], "delete_e_friend_status": [ - 725, + 724, { "where": [ - 718, + 717, "e_friend_status_bool_exp!" ] } ], "delete_e_friend_status_by_pk": [ - 715, + 714, { "value": [ 80, @@ -147273,16 +147265,16 @@ export default { } ], "delete_e_game_cfg_types": [ - 746, + 745, { "where": [ - 739, + 738, "e_game_cfg_types_bool_exp!" ] } ], "delete_e_game_cfg_types_by_pk": [ - 736, + 735, { "value": [ 80, @@ -147291,16 +147283,16 @@ export default { } ], "delete_e_game_server_node_statuses": [ - 766, + 765, { "where": [ - 759, + 758, "e_game_server_node_statuses_bool_exp!" ] } ], "delete_e_game_server_node_statuses_by_pk": [ - 756, + 755, { "value": [ 80, @@ -147309,16 +147301,16 @@ export default { } ], "delete_e_league_movement_types": [ - 787, + 786, { "where": [ - 780, + 779, "e_league_movement_types_bool_exp!" ] } ], "delete_e_league_movement_types_by_pk": [ - 777, + 776, { "value": [ 80, @@ -147327,16 +147319,16 @@ export default { } ], "delete_e_league_proposal_statuses": [ - 808, + 807, { "where": [ - 801, + 800, "e_league_proposal_statuses_bool_exp!" ] } ], "delete_e_league_proposal_statuses_by_pk": [ - 798, + 797, { "value": [ 80, @@ -147345,16 +147337,16 @@ export default { } ], "delete_e_league_registration_statuses": [ - 829, + 828, { "where": [ - 822, + 821, "e_league_registration_statuses_bool_exp!" ] } ], "delete_e_league_registration_statuses_by_pk": [ - 819, + 818, { "value": [ 80, @@ -147363,16 +147355,16 @@ export default { } ], "delete_e_league_season_statuses": [ - 850, + 849, { "where": [ - 843, + 842, "e_league_season_statuses_bool_exp!" ] } ], "delete_e_league_season_statuses_by_pk": [ - 840, + 839, { "value": [ 80, @@ -147381,16 +147373,16 @@ export default { } ], "delete_e_lobby_access": [ - 871, + 870, { "where": [ - 864, + 863, "e_lobby_access_bool_exp!" ] } ], "delete_e_lobby_access_by_pk": [ - 861, + 860, { "value": [ 80, @@ -147399,16 +147391,16 @@ export default { } ], "delete_e_lobby_player_status": [ - 892, + 891, { "where": [ - 885, + 884, "e_lobby_player_status_bool_exp!" ] } ], "delete_e_lobby_player_status_by_pk": [ - 882, + 881, { "value": [ 80, @@ -147417,16 +147409,16 @@ export default { } ], "delete_e_map_pool_types": [ - 912, + 911, { "where": [ - 905, + 904, "e_map_pool_types_bool_exp!" ] } ], "delete_e_map_pool_types_by_pk": [ - 902, + 901, { "value": [ 80, @@ -147435,16 +147427,16 @@ export default { } ], "delete_e_match_clip_visibility": [ - 933, + 932, { "where": [ - 926, + 925, "e_match_clip_visibility_bool_exp!" ] } ], "delete_e_match_clip_visibility_by_pk": [ - 923, + 922, { "value": [ 80, @@ -147453,16 +147445,16 @@ export default { } ], "delete_e_match_map_status": [ - 953, + 952, { "where": [ - 946, + 945, "e_match_map_status_bool_exp!" ] } ], "delete_e_match_map_status_by_pk": [ - 943, + 942, { "value": [ 80, @@ -147471,16 +147463,16 @@ export default { } ], "delete_e_match_mode": [ - 974, + 973, { "where": [ - 967, + 966, "e_match_mode_bool_exp!" ] } ], "delete_e_match_mode_by_pk": [ - 964, + 963, { "value": [ 80, @@ -147489,16 +147481,16 @@ export default { } ], "delete_e_match_status": [ - 994, + 993, { "where": [ - 987, + 986, "e_match_status_bool_exp!" ] } ], "delete_e_match_status_by_pk": [ - 984, + 983, { "value": [ 80, @@ -147507,16 +147499,16 @@ export default { } ], "delete_e_match_types": [ - 1015, + 1014, { "where": [ - 1008, + 1007, "e_match_types_bool_exp!" ] } ], "delete_e_match_types_by_pk": [ - 1005, + 1004, { "value": [ 80, @@ -147525,16 +147517,16 @@ export default { } ], "delete_e_notification_types": [ - 1036, + 1035, { "where": [ - 1029, + 1028, "e_notification_types_bool_exp!" ] } ], "delete_e_notification_types_by_pk": [ - 1026, + 1025, { "value": [ 80, @@ -147543,16 +147535,16 @@ export default { } ], "delete_e_objective_types": [ - 1056, + 1055, { "where": [ - 1049, + 1048, "e_objective_types_bool_exp!" ] } ], "delete_e_objective_types_by_pk": [ - 1046, + 1045, { "value": [ 80, @@ -147561,16 +147553,16 @@ export default { } ], "delete_e_player_roles": [ - 1076, + 1075, { "where": [ - 1069, + 1068, "e_player_roles_bool_exp!" ] } ], "delete_e_player_roles_by_pk": [ - 1066, + 1065, { "value": [ 80, @@ -147579,16 +147571,16 @@ export default { } ], "delete_e_plugin_runtimes": [ - 1096, + 1095, { "where": [ - 1089, + 1088, "e_plugin_runtimes_bool_exp!" ] } ], "delete_e_plugin_runtimes_by_pk": [ - 1086, + 1085, { "value": [ 80, @@ -147597,16 +147589,16 @@ export default { } ], "delete_e_ready_settings": [ - 1116, + 1115, { "where": [ - 1109, + 1108, "e_ready_settings_bool_exp!" ] } ], "delete_e_ready_settings_by_pk": [ - 1106, + 1105, { "value": [ 80, @@ -147615,16 +147607,16 @@ export default { } ], "delete_e_sanction_types": [ - 1136, + 1135, { "where": [ - 1129, + 1128, "e_sanction_types_bool_exp!" ] } ], "delete_e_sanction_types_by_pk": [ - 1126, + 1125, { "value": [ 80, @@ -147633,16 +147625,16 @@ export default { } ], "delete_e_scrim_request_statuses": [ - 1157, + 1156, { "where": [ - 1150, + 1149, "e_scrim_request_statuses_bool_exp!" ] } ], "delete_e_scrim_request_statuses_by_pk": [ - 1147, + 1146, { "value": [ 80, @@ -147651,16 +147643,16 @@ export default { } ], "delete_e_server_types": [ - 1177, + 1176, { "where": [ - 1170, + 1169, "e_server_types_bool_exp!" ] } ], "delete_e_server_types_by_pk": [ - 1167, + 1166, { "value": [ 80, @@ -147669,16 +147661,16 @@ export default { } ], "delete_e_sides": [ - 1197, + 1196, { "where": [ - 1190, + 1189, "e_sides_bool_exp!" ] } ], "delete_e_sides_by_pk": [ - 1187, + 1186, { "value": [ 80, @@ -147687,16 +147679,16 @@ export default { } ], "delete_e_system_alert_types": [ - 1217, + 1216, { "where": [ - 1210, + 1209, "e_system_alert_types_bool_exp!" ] } ], "delete_e_system_alert_types_by_pk": [ - 1207, + 1206, { "value": [ 80, @@ -147705,16 +147697,16 @@ export default { } ], "delete_e_team_roles": [ - 1237, + 1236, { "where": [ - 1230, + 1229, "e_team_roles_bool_exp!" ] } ], "delete_e_team_roles_by_pk": [ - 1227, + 1226, { "value": [ 80, @@ -147723,16 +147715,16 @@ export default { } ], "delete_e_team_roster_statuses": [ - 1258, + 1257, { "where": [ - 1251, + 1250, "e_team_roster_statuses_bool_exp!" ] } ], "delete_e_team_roster_statuses_by_pk": [ - 1248, + 1247, { "value": [ 80, @@ -147741,16 +147733,16 @@ export default { } ], "delete_e_timeout_settings": [ - 1278, + 1277, { "where": [ - 1271, + 1270, "e_timeout_settings_bool_exp!" ] } ], "delete_e_timeout_settings_by_pk": [ - 1268, + 1267, { "value": [ 80, @@ -147759,16 +147751,16 @@ export default { } ], "delete_e_tournament_categories": [ - 1298, + 1297, { "where": [ - 1291, + 1290, "e_tournament_categories_bool_exp!" ] } ], "delete_e_tournament_categories_by_pk": [ - 1288, + 1287, { "value": [ 80, @@ -147777,16 +147769,16 @@ export default { } ], "delete_e_tournament_stage_types": [ - 1319, + 1318, { "where": [ - 1312, + 1311, "e_tournament_stage_types_bool_exp!" ] } ], "delete_e_tournament_stage_types_by_pk": [ - 1309, + 1308, { "value": [ 80, @@ -147795,16 +147787,16 @@ export default { } ], "delete_e_tournament_status": [ - 1340, + 1339, { "where": [ - 1333, + 1332, "e_tournament_status_bool_exp!" ] } ], "delete_e_tournament_status_by_pk": [ - 1330, + 1329, { "value": [ 80, @@ -147813,16 +147805,16 @@ export default { } ], "delete_e_utility_types": [ - 1361, + 1360, { "where": [ - 1354, + 1353, "e_utility_types_bool_exp!" ] } ], "delete_e_utility_types_by_pk": [ - 1351, + 1350, { "value": [ 80, @@ -147831,16 +147823,16 @@ export default { } ], "delete_e_veto_pick_types": [ - 1381, + 1380, { "where": [ - 1374, + 1373, "e_veto_pick_types_bool_exp!" ] } ], "delete_e_veto_pick_types_by_pk": [ - 1371, + 1370, { "value": [ 80, @@ -147849,16 +147841,16 @@ export default { } ], "delete_e_winning_reasons": [ - 1401, + 1400, { "where": [ - 1394, + 1393, "e_winning_reasons_bool_exp!" ] } ], "delete_e_winning_reasons_by_pk": [ - 1391, + 1390, { "value": [ 80, @@ -147867,206 +147859,206 @@ export default { } ], "delete_event_match_links": [ - 1419, + 1418, { "where": [ - 1414, + 1413, "event_match_links_bool_exp!" ] } ], "delete_event_match_links_by_pk": [ - 1411, + 1410, { "event_id": [ - 4999, + 4998, "uuid!" ], "match_id": [ - 4999, + 4998, "uuid!" ] } ], "delete_event_media": [ - 1446, + 1445, { "where": [ - 1438, + 1437, "event_media_bool_exp!" ] } ], "delete_event_media_by_pk": [ - 1429, + 1428, { "id": [ - 4999, + 4998, "uuid!" ] } ], "delete_event_media_players": [ - 1468, + 1467, { "where": [ - 1460, + 1459, "event_media_players_bool_exp!" ] } ], "delete_event_media_players_by_pk": [ - 1451, + 1450, { "media_id": [ - 4999, + 4998, "uuid!" ], "steam_id": [ - 258, + 257, "bigint!" ] } ], "delete_event_organizers": [ - 1529, + 1528, { "where": [ - 1521, + 1520, "event_organizers_bool_exp!" ] } ], "delete_event_organizers_by_pk": [ - 1512, + 1511, { "event_id": [ - 4999, + 4998, "uuid!" ], "steam_id": [ - 258, + 257, "bigint!" ] } ], "delete_event_players": [ - 1570, + 1569, { "where": [ - 1562, + 1561, "event_players_bool_exp!" ] } ], "delete_event_players_by_pk": [ - 1553, + 1552, { "event_id": [ - 4999, + 4998, "uuid!" ], "steam_id": [ - 258, + 257, "bigint!" ] } ], "delete_event_teams": [ - 1608, + 1607, { "where": [ - 1601, + 1600, "event_teams_bool_exp!" ] } ], "delete_event_teams_by_pk": [ - 1594, + 1593, { "event_id": [ - 4999, + 4998, "uuid!" ], "team_id": [ - 4999, + 4998, "uuid!" ] } ], "delete_event_tournaments": [ - 1632, + 1631, { "where": [ - 1625, + 1624, "event_tournaments_bool_exp!" ] } ], "delete_event_tournaments_by_pk": [ - 1618, + 1617, { "event_id": [ - 4999, + 4998, "uuid!" ], "tournament_id": [ - 4999, + 4998, "uuid!" ] } ], "delete_events": [ - 1652, + 1651, { "where": [ - 1646, + 1645, "events_bool_exp!" ] } ], "delete_events_by_pk": [ - 1642, + 1641, { "id": [ - 4999, + 4998, "uuid!" ] } ], "delete_friends": [ - 1682, + 1681, { "where": [ - 1676, + 1675, "friends_bool_exp!" ] } ], "delete_friends_by_pk": [ - 1672, + 1671, { "other_player_steam_id": [ - 258, + 257, "bigint!" ], "player_steam_id": [ - 258, + 257, "bigint!" ] } ], "delete_game_server_nodes": [ - 1722, + 1721, { "where": [ - 1711, + 1710, "game_server_nodes_bool_exp!" ] } ], "delete_game_server_nodes_by_pk": [ - 1699, + 1698, { "id": [ 80, @@ -148075,16 +148067,16 @@ export default { } ], "delete_game_versions": [ - 1764, + 1763, { "where": [ - 1755, + 1754, "game_versions_bool_exp!" ] } ], "delete_game_versions_by_pk": [ - 1750, + 1749, { "build_id": [ 40, @@ -148093,537 +148085,537 @@ export default { } ], "delete_gamedata_signature_validations": [ - 1797, + 1796, { "where": [ - 1788, + 1787, "gamedata_signature_validations_bool_exp!" ] } ], "delete_gamedata_signature_validations_by_pk": [ - 1783, + 1782, { "id": [ - 4999, + 4998, "uuid!" ] } ], "delete_leaderboard_entries": [ - 1835, + 1834, { "where": [ - 1830, + 1829, "leaderboard_entries_bool_exp!" ] } ], "delete_league_divisions": [ - 1860, + 1859, { "where": [ - 1854, + 1853, "league_divisions_bool_exp!" ] } ], "delete_league_divisions_by_pk": [ - 1850, + 1849, { "id": [ - 4999, + 4998, "uuid!" ] } ], "delete_league_match_weeks": [ - 1895, + 1894, { "where": [ - 1887, + 1886, "league_match_weeks_bool_exp!" ] } ], "delete_league_match_weeks_by_pk": [ - 1878, + 1877, { "id": [ - 4999, + 4998, "uuid!" ] } ], "delete_league_relegation_playoffs": [ - 1936, + 1935, { "where": [ - 1928, + 1927, "league_relegation_playoffs_bool_exp!" ] } ], "delete_league_relegation_playoffs_by_pk": [ - 1919, + 1918, { "id": [ - 4999, + 4998, "uuid!" ] } ], "delete_league_scheduling_proposals": [ - 1977, + 1976, { "where": [ - 1969, + 1968, "league_scheduling_proposals_bool_exp!" ] } ], "delete_league_scheduling_proposals_by_pk": [ - 1960, + 1959, { "id": [ - 4999, + 4998, "uuid!" ] } ], "delete_league_season_divisions": [ - 2015, + 2014, { "where": [ - 2008, + 2007, "league_season_divisions_bool_exp!" ] } ], "delete_league_season_divisions_by_pk": [ - 2001, + 2000, { "id": [ - 4999, + 4998, "uuid!" ] } ], "delete_league_seasons": [ - 2040, + 2039, { "where": [ - 2031, + 2030, "league_seasons_bool_exp!" ] } ], "delete_league_seasons_by_pk": [ - 2026, + 2025, { "id": [ - 4999, + 4998, "uuid!" ] } ], "delete_league_team_movements": [ - 2076, + 2075, { "where": [ - 2068, + 2067, "league_team_movements_bool_exp!" ] } ], "delete_league_team_movements_by_pk": [ - 2059, + 2058, { "id": [ - 4999, + 4998, "uuid!" ] } ], "delete_league_team_rosters": [ - 2117, + 2116, { "where": [ - 2109, + 2108, "league_team_rosters_bool_exp!" ] } ], "delete_league_team_rosters_by_pk": [ - 2100, + 2099, { "league_team_season_id": [ - 4999, + 4998, "uuid!" ], "player_steam_id": [ - 258, + 257, "bigint!" ] } ], "delete_league_team_seasons": [ - 2158, + 2157, { "where": [ - 2150, + 2149, "league_team_seasons_bool_exp!" ] } ], "delete_league_team_seasons_by_pk": [ - 2141, + 2140, { "id": [ - 4999, + 4998, "uuid!" ] } ], "delete_league_teams": [ - 2191, + 2190, { "where": [ - 2186, + 2185, "league_teams_bool_exp!" ] } ], "delete_league_teams_by_pk": [ - 2183, + 2182, { "id": [ - 4999, + 4998, "uuid!" ] } ], "delete_lobbies": [ - 2210, + 2209, { "where": [ - 2205, + 2204, "lobbies_bool_exp!" ] } ], "delete_lobbies_by_pk": [ - 2202, + 2201, { "id": [ - 4999, + 4998, "uuid!" ] } ], "delete_lobby_players": [ - 2240, + 2239, { "where": [ - 2232, + 2231, "lobby_players_bool_exp!" ] } ], "delete_lobby_players_by_pk": [ - 2221, + 2220, { "lobby_id": [ - 4999, + 4998, "uuid!" ], "steam_id": [ - 258, + 257, "bigint!" ] } ], "delete_map_pools": [ - 2274, + 2273, { "where": [ - 2269, + 2268, "map_pools_bool_exp!" ] } ], "delete_map_pools_by_pk": [ - 2266, + 2265, { "id": [ - 4999, + 4998, "uuid!" ] } ], "delete_maps": [ - 2301, + 2300, { "where": [ - 2294, + 2293, "maps_bool_exp!" ] } ], "delete_maps_by_pk": [ - 2285, + 2284, { "id": [ - 4999, + 4998, "uuid!" ] } ], "delete_match_clips": [ - 2331, + 2330, { "where": [ - 2323, + 2322, "match_clips_bool_exp!" ] } ], "delete_match_clips_by_pk": [ - 2314, + 2313, { "id": [ - 4999, + 4998, "uuid!" ] } ], "delete_match_demo_sessions": [ - 2377, + 2376, { "where": [ - 2366, + 2365, "match_demo_sessions_bool_exp!" ] } ], "delete_match_demo_sessions_by_pk": [ - 2356, + 2355, { "id": [ - 4999, + 4998, "uuid!" ] } ], "delete_match_lineup_players": [ - 2421, + 2420, { "where": [ - 2413, + 2412, "match_lineup_players_bool_exp!" ] } ], "delete_match_lineup_players_by_pk": [ - 2402, + 2401, { "id": [ - 4999, + 4998, "uuid!" ] } ], "delete_match_lineups": [ - 2464, + 2463, { "where": [ - 2456, + 2455, "match_lineups_bool_exp!" ] } ], "delete_match_lineups_by_pk": [ - 2447, + 2446, { "id": [ - 4999, + 4998, "uuid!" ] } ], "delete_match_map_demos": [ - 2512, + 2511, { "where": [ - 2501, + 2500, "match_map_demos_bool_exp!" ] } ], "delete_match_map_demos_by_pk": [ - 2489, + 2488, { "id": [ - 4999, + 4998, "uuid!" ] } ], "delete_match_map_rounds": [ - 2557, + 2556, { "where": [ - 2549, + 2548, "match_map_rounds_bool_exp!" ] } ], "delete_match_map_rounds_by_pk": [ - 2540, + 2539, { "id": [ - 4999, + 4998, "uuid!" ] } ], "delete_match_map_veto_picks": [ - 2595, + 2594, { "where": [ - 2588, + 2587, "match_map_veto_picks_bool_exp!" ] } ], "delete_match_map_veto_picks_by_pk": [ - 2581, + 2580, { "id": [ - 4999, + 4998, "uuid!" ] } ], "delete_match_maps": [ - 2622, + 2621, { "where": [ - 2614, + 2613, "match_maps_bool_exp!" ] } ], "delete_match_maps_by_pk": [ - 2605, + 2604, { "id": [ - 4999, + 4998, "uuid!" ] } ], "delete_match_options": [ - 2657, + 2656, { "where": [ - 2651, + 2650, "match_options_bool_exp!" ] } ], "delete_match_options_by_pk": [ - 2647, + 2646, { "id": [ - 4999, + 4998, "uuid!" ] } ], "delete_match_region_veto_picks": [ - 2689, + 2688, { "where": [ - 2682, + 2681, "match_region_veto_picks_bool_exp!" ] } ], "delete_match_region_veto_picks_by_pk": [ - 2675, + 2674, { "id": [ - 4999, + 4998, "uuid!" ] } ], "delete_match_streams": [ - 2722, + 2721, { "where": [ - 2711, + 2710, "match_streams_bool_exp!" ] } ], "delete_match_streams_by_pk": [ - 2699, + 2698, { "id": [ - 4999, + 4998, "uuid!" ] } ], "delete_match_type_cfgs": [ - 2757, + 2756, { "where": [ - 2752, + 2751, "match_type_cfgs_bool_exp!" ] } ], "delete_match_type_cfgs_by_pk": [ - 2749, + 2748, { "type": [ - 741, + 740, "e_game_cfg_types_enum!" ] } ], "delete_matches": [ - 2784, + 2783, { "where": [ - 2776, + 2775, "matches_bool_exp!" ] } ], "delete_matches_by_pk": [ - 2767, + 2766, { "id": [ - 4999, + 4998, "uuid!" ] } ], "delete_migration_hashes_hashes": [ - 2817, + 2816, { "where": [ - 2812, + 2811, "migration_hashes_hashes_bool_exp!" ] } ], "delete_migration_hashes_hashes_by_pk": [ - 2809, + 2808, { "name": [ 80, @@ -148632,130 +148624,130 @@ export default { } ], "delete_my_friends": [ - 2849, + 2848, { "where": [ - 2839, + 2838, "my_friends_bool_exp!" ] } ], "delete_news_articles": [ - 2883, + 2882, { "where": [ - 2877, + 2876, "news_articles_bool_exp!" ] } ], "delete_news_articles_by_pk": [ - 2873, + 2872, { "id": [ - 4999, + 4998, "uuid!" ] } ], "delete_notifications": [ - 2923, + 2922, { "where": [ - 2912, + 2911, "notifications_bool_exp!" ] } ], "delete_notifications_by_pk": [ - 2900, + 2899, { "id": [ - 4999, + 4998, "uuid!" ] } ], "delete_pending_match_import_players": [ - 2970, + 2969, { "where": [ - 2962, + 2961, "pending_match_import_players_bool_exp!" ] } ], "delete_pending_match_import_players_by_pk": [ - 2953, + 2952, { "steam_id": [ - 258, + 257, "bigint!" ], "valve_match_id": [ - 2950, + 2949, "numeric!" ] } ], "delete_pending_match_imports": [ - 3004, + 3003, { "where": [ - 2998, + 2997, "pending_match_imports_bool_exp!" ] } ], "delete_pending_match_imports_by_pk": [ - 2994, + 2993, { "valve_match_id": [ - 2950, + 2949, "numeric!" ] } ], "delete_player_aim_stats_demo": [ - 3032, + 3031, { "where": [ - 3026, + 3025, "player_aim_stats_demo_bool_exp!" ] } ], "delete_player_aim_stats_demo_by_pk": [ - 3022, + 3021, { "attacker_steam_id": [ - 258, + 257, "bigint!" ], "match_map_id": [ - 4999, + 4998, "uuid!" ] } ], "delete_player_aim_weapon_stats": [ - 3066, + 3065, { "where": [ - 3058, + 3057, "player_aim_weapon_stats_bool_exp!" ] } ], "delete_player_aim_weapon_stats_by_pk": [ - 3049, + 3048, { "match_map_id": [ - 4999, + 4998, "uuid!" ], "steam_id": [ - 258, + 257, "bigint!" ], "weapon_class": [ @@ -148765,179 +148757,179 @@ export default { } ], "delete_player_assists": [ - 3109, + 3108, { "where": [ - 3101, + 3100, "player_assists_bool_exp!" ] } ], "delete_player_assists_by_pk": [ - 3090, + 3089, { "attacked_steam_id": [ - 258, + 257, "bigint!" ], "attacker_steam_id": [ - 258, + 257, "bigint!" ], "match_map_id": [ - 4999, + 4998, "uuid!" ], "time": [ - 4499, + 4498, "timestamptz!" ] } ], "delete_player_damages": [ - 3170, + 3169, { "where": [ - 3162, + 3161, "player_damages_bool_exp!" ] } ], "delete_player_damages_by_pk": [ - 3153, + 3152, { "id": [ - 4999, + 4998, "uuid!" ], "match_map_id": [ - 4999, + 4998, "uuid!" ], "time": [ - 4499, + 4498, "timestamptz!" ] } ], "delete_player_elo": [ - 3204, + 3203, { "where": [ - 3198, + 3197, "player_elo_bool_exp!" ] } ], "delete_player_elo_by_pk": [ - 3194, + 3193, { "match_id": [ - 4999, + 4998, "uuid!" ], "steam_id": [ - 258, + 257, "bigint!" ], "type": [ - 1010, + 1009, "e_match_types_enum!" ] } ], "delete_player_faceit_rank_history": [ - 3238, + 3237, { "where": [ - 3230, + 3229, "player_faceit_rank_history_bool_exp!" ] } ], "delete_player_faceit_rank_history_by_pk": [ - 3221, + 3220, { "id": [ - 4999, + 4998, "uuid!" ] } ], "delete_player_flashes": [ - 3281, + 3280, { "where": [ - 3273, + 3272, "player_flashes_bool_exp!" ] } ], "delete_player_flashes_by_pk": [ - 3262, + 3261, { "attacked_steam_id": [ - 258, + 257, "bigint!" ], "attacker_steam_id": [ - 258, + 257, "bigint!" ], "match_map_id": [ - 4999, + 4998, "uuid!" ], "time": [ - 4499, + 4498, "timestamptz!" ] } ], "delete_player_kills": [ - 3367, + 3366, { "where": [ - 3318, + 3317, "player_kills_bool_exp!" ] } ], "delete_player_kills_by_pk": [ - 3307, + 3306, { "attacked_steam_id": [ - 258, + 257, "bigint!" ], "attacker_steam_id": [ - 258, + 257, "bigint!" ], "match_map_id": [ - 4999, + 4998, "uuid!" ], "time": [ - 4499, + 4498, "timestamptz!" ] } ], "delete_player_kills_by_weapon": [ - 3336, + 3335, { "where": [ - 3328, + 3327, "player_kills_by_weapon_bool_exp!" ] } ], "delete_player_kills_by_weapon_by_pk": [ - 3319, + 3318, { "player_steam_id": [ - 258, + 257, "bigint!" ], "with": [ @@ -148947,258 +148939,258 @@ export default { } ], "delete_player_leaderboard_rank": [ - 3402, + 3401, { "where": [ - 3397, + 3396, "player_leaderboard_rank_bool_exp!" ] } ], "delete_player_match_map_stats": [ - 3433, + 3432, { "where": [ - 3425, + 3424, "player_match_map_stats_bool_exp!" ] } ], "delete_player_match_map_stats_by_pk": [ - 3416, + 3415, { "match_map_id": [ - 4999, + 4998, "uuid!" ], "steam_id": [ - 258, + 257, "bigint!" ] } ], "delete_player_objectives": [ - 3525, + 3524, { "where": [ - 3517, + 3516, "player_objectives_bool_exp!" ] } ], "delete_player_objectives_by_pk": [ - 3508, + 3507, { "match_map_id": [ - 4999, + 4998, "uuid!" ], "player_steam_id": [ - 258, + 257, "bigint!" ], "time": [ - 4499, + 4498, "timestamptz!" ] } ], "delete_player_premier_rank_history": [ - 3584, + 3583, { "where": [ - 3576, + 3575, "player_premier_rank_history_bool_exp!" ] } ], "delete_player_premier_rank_history_by_pk": [ - 3567, + 3566, { "id": [ - 4999, + 4998, "uuid!" ] } ], "delete_player_sanctions": [ - 3625, + 3624, { "where": [ - 3617, + 3616, "player_sanctions_bool_exp!" ] } ], "delete_player_sanctions_by_pk": [ - 3608, + 3607, { "created_at": [ - 4499, + 4498, "timestamptz!" ], "id": [ - 4999, + 4998, "uuid!" ] } ], "delete_player_season_stats": [ - 3676, + 3675, { "where": [ - 3668, + 3667, "player_season_stats_bool_exp!" ] } ], "delete_player_season_stats_by_pk": [ - 3649, + 3648, { "player_steam_id": [ - 258, + 257, "bigint!" ], "season_id": [ - 4999, + 4998, "uuid!" ] } ], "delete_player_stats": [ - 3718, + 3717, { "where": [ - 3712, + 3711, "player_stats_bool_exp!" ] } ], "delete_player_stats_by_pk": [ - 3708, + 3707, { "player_steam_id": [ - 258, + 257, "bigint!" ] } ], "delete_player_steam_bot_friend": [ - 3750, + 3749, { "where": [ - 3741, + 3740, "player_steam_bot_friend_bool_exp!" ] } ], "delete_player_steam_bot_friend_by_pk": [ - 3736, + 3735, { "steam_id": [ - 258, + 257, "bigint!" ] } ], "delete_player_steam_match_auth": [ - 3778, + 3777, { "where": [ - 3772, + 3771, "player_steam_match_auth_bool_exp!" ] } ], "delete_player_steam_match_auth_by_pk": [ - 3768, + 3767, { "steam_id": [ - 258, + 257, "bigint!" ] } ], "delete_player_unused_utility": [ - 3812, + 3811, { "where": [ - 3804, + 3803, "player_unused_utility_bool_exp!" ] } ], "delete_player_unused_utility_by_pk": [ - 3795, + 3794, { "match_map_id": [ - 4999, + 4998, "uuid!" ], "player_steam_id": [ - 258, + 257, "bigint!" ] } ], "delete_player_utility": [ - 3853, + 3852, { "where": [ - 3845, + 3844, "player_utility_bool_exp!" ] } ], "delete_player_utility_by_pk": [ - 3836, + 3835, { "attacker_steam_id": [ - 258, + 257, "bigint!" ], "match_map_id": [ - 4999, + 4998, "uuid!" ], "time": [ - 4499, + 4498, "timestamptz!" ] } ], "delete_players": [ - 3920, + 3919, { "where": [ - 3914, + 3913, "players_bool_exp!" ] } ], "delete_players_by_pk": [ - 3910, + 3909, { "steam_id": [ - 258, + 257, "bigint!" ] } ], "delete_plugin_versions": [ - 3948, + 3947, { "where": [ - 3942, + 3941, "plugin_versions_bool_exp!" ] } ], "delete_plugin_versions_by_pk": [ - 3938, + 3937, { "runtime": [ - 1091, + 1090, "e_plugin_runtimes_enum!" ], "version": [ @@ -149208,34 +149200,34 @@ export default { } ], "delete_seasons": [ - 3979, + 3978, { "where": [ - 3973, + 3972, "seasons_bool_exp!" ] } ], "delete_seasons_by_pk": [ - 3969, + 3968, { "id": [ - 4999, + 4998, "uuid!" ] } ], "delete_server_regions": [ - 4006, + 4005, { "where": [ - 4001, + 4000, "server_regions_bool_exp!" ] } ], "delete_server_regions_by_pk": [ - 3997, + 3996, { "value": [ 80, @@ -149244,34 +149236,34 @@ export default { } ], "delete_servers": [ - 4043, + 4042, { "where": [ - 4035, + 4034, "servers_bool_exp!" ] } ], "delete_servers_by_pk": [ - 4024, + 4023, { "id": [ - 4999, + 4998, "uuid!" ] } ], "delete_settings": [ - 4078, + 4077, { "where": [ - 4073, + 4072, "settings_bool_exp!" ] } ], "delete_settings_by_pk": [ - 4070, + 4069, { "name": [ 80, @@ -149280,511 +149272,511 @@ export default { } ], "delete_steam_account_claims": [ - 4104, + 4103, { "where": [ - 4097, + 4096, "steam_account_claims_bool_exp!" ] } ], "delete_steam_account_claims_by_pk": [ - 4090, + 4089, { "id": [ - 4999, + 4998, "uuid!" ] } ], "delete_steam_accounts": [ - 4124, + 4123, { "where": [ - 4118, + 4117, "steam_accounts_bool_exp!" ] } ], "delete_steam_accounts_by_pk": [ - 4114, + 4113, { "id": [ - 4999, + 4998, "uuid!" ] } ], "delete_system_alerts": [ - 4152, + 4151, { "where": [ - 4146, + 4145, "system_alerts_bool_exp!" ] } ], "delete_system_alerts_by_pk": [ - 4142, + 4141, { "id": [ - 4999, + 4998, "uuid!" ] } ], "delete_team_invites": [ - 4186, + 4185, { "where": [ - 4178, + 4177, "team_invites_bool_exp!" ] } ], "delete_team_invites_by_pk": [ - 4169, + 4168, { "id": [ - 4999, + 4998, "uuid!" ] } ], "delete_team_roster": [ - 4229, + 4228, { "where": [ - 4221, + 4220, "team_roster_bool_exp!" ] } ], "delete_team_roster_by_pk": [ - 4210, + 4209, { "player_steam_id": [ - 258, + 257, "bigint!" ], "team_id": [ - 4999, + 4998, "uuid!" ] } ], "delete_team_scrim_alerts": [ - 4265, + 4264, { "where": [ - 4259, + 4258, "team_scrim_alerts_bool_exp!" ] } ], "delete_team_scrim_alerts_by_pk": [ - 4255, + 4254, { "id": [ - 4999, + 4998, "uuid!" ] } ], "delete_team_scrim_availability": [ - 4298, + 4297, { "where": [ - 4291, + 4290, "team_scrim_availability_bool_exp!" ] } ], "delete_team_scrim_availability_by_pk": [ - 4282, + 4281, { "id": [ - 4999, + 4998, "uuid!" ] } ], "delete_team_scrim_request_proposals": [ - 4327, + 4326, { "where": [ - 4319, + 4318, "team_scrim_request_proposals_bool_exp!" ] } ], "delete_team_scrim_request_proposals_by_pk": [ - 4310, + 4309, { "id": [ - 4999, + 4998, "uuid!" ] } ], "delete_team_scrim_requests": [ - 4370, + 4369, { "where": [ - 4362, + 4361, "team_scrim_requests_bool_exp!" ] } ], "delete_team_scrim_requests_by_pk": [ - 4351, + 4350, { "id": [ - 4999, + 4998, "uuid!" ] } ], "delete_team_scrim_settings": [ - 4407, + 4406, { "where": [ - 4401, + 4400, "team_scrim_settings_bool_exp!" ] } ], "delete_team_scrim_settings_by_pk": [ - 4397, + 4396, { "id": [ - 4999, + 4998, "uuid!" ] } ], "delete_team_suggestions": [ - 4435, + 4434, { "where": [ - 4429, + 4428, "team_suggestions_bool_exp!" ] } ], "delete_team_suggestions_by_pk": [ - 4425, + 4424, { "id": [ - 4999, + 4998, "uuid!" ] } ], "delete_teams": [ - 4471, + 4470, { "where": [ - 4463, + 4462, "teams_bool_exp!" ] } ], "delete_teams_by_pk": [ - 4452, + 4451, { "id": [ - 4999, + 4998, "uuid!" ] } ], "delete_tournament_awards": [ - 4518, + 4517, { "where": [ - 4510, + 4509, "tournament_awards_bool_exp!" ] } ], "delete_tournament_awards_by_pk": [ - 4501, + 4500, { "id": [ - 4999, + 4998, "uuid!" ] } ], "delete_tournament_brackets": [ - 4562, + 4561, { "where": [ - 4554, + 4553, "tournament_brackets_bool_exp!" ] } ], "delete_tournament_brackets_by_pk": [ - 4543, + 4542, { "id": [ - 4999, + 4998, "uuid!" ] } ], "delete_tournament_categories": [ - 4603, + 4602, { "where": [ - 4596, + 4595, "tournament_categories_bool_exp!" ] } ], "delete_tournament_categories_by_pk": [ - 4589, + 4588, { "category": [ - 1293, + 1292, "e_tournament_categories_enum!" ], "tournament_id": [ - 4999, + 4998, "uuid!" ] } ], "delete_tournament_organizer_teams": [ - 4627, + 4626, { "where": [ - 4620, + 4619, "tournament_organizer_teams_bool_exp!" ] } ], "delete_tournament_organizer_teams_by_pk": [ - 4613, + 4612, { "team_id": [ - 4999, + 4998, "uuid!" ], "tournament_id": [ - 4999, + 4998, "uuid!" ] } ], "delete_tournament_organizers": [ - 4654, + 4653, { "where": [ - 4646, + 4645, "tournament_organizers_bool_exp!" ] } ], "delete_tournament_organizers_by_pk": [ - 4637, + 4636, { "steam_id": [ - 258, + 257, "bigint!" ], "tournament_id": [ - 4999, + 4998, "uuid!" ] } ], "delete_tournament_prizes": [ - 4695, + 4694, { "where": [ - 4687, + 4686, "tournament_prizes_bool_exp!" ] } ], "delete_tournament_prizes_by_pk": [ - 4678, + 4677, { "id": [ - 4999, + 4998, "uuid!" ] } ], "delete_tournament_stage_windows": [ - 4736, + 4735, { "where": [ - 4728, + 4727, "tournament_stage_windows_bool_exp!" ] } ], "delete_tournament_stage_windows_by_pk": [ - 4719, + 4718, { "id": [ - 4999, + 4998, "uuid!" ] } ], "delete_tournament_stages": [ - 4783, + 4782, { "where": [ - 4772, + 4771, "tournament_stages_bool_exp!" ] } ], "delete_tournament_stages_by_pk": [ - 4760, + 4759, { "id": [ - 4999, + 4998, "uuid!" ] } ], "delete_tournament_team_invites": [ - 4828, + 4827, { "where": [ - 4820, + 4819, "tournament_team_invites_bool_exp!" ] } ], "delete_tournament_team_invites_by_pk": [ - 4811, + 4810, { "id": [ - 4999, + 4998, "uuid!" ] } ], "delete_tournament_team_roster": [ - 4869, + 4868, { "where": [ - 4861, + 4860, "tournament_team_roster_bool_exp!" ] } ], "delete_tournament_team_roster_by_pk": [ - 4852, + 4851, { "player_steam_id": [ - 258, + 257, "bigint!" ], "tournament_id": [ - 4999, + 4998, "uuid!" ] } ], "delete_tournament_teams": [ - 4910, + 4909, { "where": [ - 4902, + 4901, "tournament_teams_bool_exp!" ] } ], "delete_tournament_teams_by_pk": [ - 4893, + 4892, { "id": [ - 4999, + 4998, "uuid!" ] } ], "delete_tournaments": [ - 4964, + 4963, { "where": [ - 4956, + 4955, "tournaments_bool_exp!" ] } ], "delete_tournaments_by_pk": [ - 4935, + 4934, { "id": [ - 4999, + 4998, "uuid!" ] } ], "delete_v_match_captains": [ - 5164, + 5163, { "where": [ - 5159, + 5158, "v_match_captains_bool_exp!" ] } ], "delete_v_match_map_backup_rounds": [ - 5275, + 5274, { "where": [ - 5270, + 5269, "v_match_map_backup_rounds_bool_exp!" ] } ], "delete_v_player_match_map_hltv": [ - 5497, + 5496, { "where": [ - 5490, + 5489, "v_player_match_map_hltv_bool_exp!" ] } ], "delete_v_pool_maps": [ - 5656, + 5655, { "where": [ - 5650, + 5649, "v_pool_maps_bool_exp!" ] } ], "delete_v_team_stage_results": [ - 5750, + 5749, { "where": [ - 5742, + 5741, "v_team_stage_results_bool_exp!" ] } ], "delete_v_team_stage_results_by_pk": [ - 5723, + 5722, { "tournament_stage_id": [ - 4999, + 4998, "uuid!" ], "tournament_team_id": [ - 4999, + 4998, "uuid!" ] } @@ -149793,7 +149785,7 @@ export default { 83, { "invite_id": [ - 4999, + 4998, "uuid!" ], "type": [ @@ -149806,11 +149798,11 @@ export default { 83, { "match_id": [ - 4999, + 4998, "uuid!" ], "winning_lineup_id": [ - 4999, + 4998, "uuid!" ] } @@ -149819,7 +149811,7 @@ export default { 45, { "match_id": [ - 4999, + 4998, "uuid!" ] } @@ -149831,14 +149823,14 @@ export default { 4, { "award_id": [ - 4999, + 4998, "uuid!" ], "event_id": [ - 4999 + 4998 ], "league_season_id": [ - 4999 + 4998 ], "note": [ 80 @@ -149847,3715 +149839,3715 @@ export default { 80 ], "season_id": [ - 4999 + 4998 ], "team_id": [ - 4999 + 4998 ], "tournament_id": [ - 4999 + 4998 ] } ], "insert__map_pool": [ - 109, + 108, { "objects": [ - 106, + 105, "[_map_pool_insert_input!]!" ], "on_conflict": [ - 110 + 109 ] } ], "insert__map_pool_one": [ - 101, + 100, { "object": [ - 106, + 105, "_map_pool_insert_input!" ], "on_conflict": [ - 110 + 109 ] } ], "insert_abandoned_matches": [ - 137, + 136, { "objects": [ - 132, + 131, "[abandoned_matches_insert_input!]!" ], "on_conflict": [ - 138 + 137 ] } ], "insert_abandoned_matches_one": [ - 120, + 119, { "object": [ - 132, + 131, "abandoned_matches_insert_input!" ], "on_conflict": [ - 138 + 137 ] } ], "insert_api_keys": [ - 171, + 170, { "objects": [ - 168, + 167, "[api_keys_insert_input!]!" ], "on_conflict": [ - 172 + 171 ] } ], "insert_api_keys_one": [ - 161, + 160, { "object": [ - 168, + 167, "api_keys_insert_input!" ], "on_conflict": [ - 172 + 171 ] } ], "insert_award_recipients": [ - 206, + 205, { "objects": [ - 201, + 200, "[award_recipients_insert_input!]!" ], "on_conflict": [ - 207 + 206 ] } ], "insert_award_recipients_one": [ - 189, + 188, { "object": [ - 201, + 200, "award_recipients_insert_input!" ], "on_conflict": [ - 207 + 206 ] } ], "insert_awards": [ - 240, + 239, { "objects": [ - 237, + 236, "[awards_insert_input!]!" ], "on_conflict": [ - 242 + 241 ] } ], "insert_awards_one": [ - 230, + 229, { "object": [ - 237, + 236, "awards_insert_input!" ], "on_conflict": [ - 242 + 241 ] } ], "insert_clip_render_jobs": [ - 286, + 285, { "objects": [ - 281, + 280, "[clip_render_jobs_insert_input!]!" ], "on_conflict": [ - 287 + 286 ] } ], "insert_clip_render_jobs_one": [ - 263, + 262, { "object": [ - 281, + 280, "clip_render_jobs_insert_input!" ], "on_conflict": [ - 287 + 286 ] } ], "insert_custom_pages": [ - 329, + 328, { "objects": [ - 326, + 325, "[custom_pages_insert_input!]!" ], "on_conflict": [ - 330 + 329 ] } ], "insert_custom_pages_one": [ - 315, + 314, { "object": [ - 326, + 325, "custom_pages_insert_input!" ], "on_conflict": [ - 330 + 329 ] } ], "insert_db_backups": [ - 357, + 356, { "objects": [ - 354, + 353, "[db_backups_insert_input!]!" ], "on_conflict": [ - 358 + 357 ] } ], "insert_db_backups_one": [ - 347, + 346, { "object": [ - 354, + 353, "db_backups_insert_input!" ], "on_conflict": [ - 358 + 357 ] } ], "insert_draft_game_picks": [ - 393, + 392, { "objects": [ - 388, + 387, "[draft_game_picks_insert_input!]!" ], "on_conflict": [ - 394 + 393 ] } ], "insert_draft_game_picks_one": [ - 374, + 373, { "object": [ - 388, + 387, "draft_game_picks_insert_input!" ], "on_conflict": [ - 394 + 393 ] } ], "insert_draft_game_players": [ - 438, + 437, { "objects": [ - 433, + 432, "[draft_game_players_insert_input!]!" ], "on_conflict": [ - 439 + 438 ] } ], "insert_draft_game_players_one": [ - 419, + 418, { "object": [ - 433, + 432, "draft_game_players_insert_input!" ], "on_conflict": [ - 439 + 438 ] } ], "insert_draft_games": [ - 483, + 482, { "objects": [ - 478, + 477, "[draft_games_insert_input!]!" ], "on_conflict": [ - 485 + 484 ] } ], "insert_draft_games_one": [ - 464, + 463, { "object": [ - 478, + 477, "draft_games_insert_input!" ], "on_conflict": [ - 485 + 484 ] } ], "insert_e_award_sources": [ - 520, + 519, { "objects": [ - 517, + 516, "[e_award_sources_insert_input!]!" ], "on_conflict": [ - 521 + 520 ] } ], "insert_e_award_sources_one": [ - 510, + 509, { "object": [ - 517, + 516, "e_award_sources_insert_input!" ], "on_conflict": [ - 521 + 520 ] } ], "insert_e_award_tiers": [ - 540, + 539, { "objects": [ - 537, + 536, "[e_award_tiers_insert_input!]!" ], "on_conflict": [ - 541 + 540 ] } ], "insert_e_award_tiers_one": [ - 530, + 529, { "object": [ - 537, + 536, "e_award_tiers_insert_input!" ], "on_conflict": [ - 541 + 540 ] } ], "insert_e_check_in_settings": [ - 560, + 559, { "objects": [ - 557, + 556, "[e_check_in_settings_insert_input!]!" ], "on_conflict": [ - 561 + 560 ] } ], "insert_e_check_in_settings_one": [ - 550, + 549, { "object": [ - 557, + 556, "e_check_in_settings_insert_input!" ], "on_conflict": [ - 561 + 560 ] } ], "insert_e_draft_game_captain_selection": [ - 580, + 579, { "objects": [ - 577, + 576, "[e_draft_game_captain_selection_insert_input!]!" ], "on_conflict": [ - 582 + 581 ] } ], "insert_e_draft_game_captain_selection_one": [ - 570, + 569, { "object": [ - 577, + 576, "e_draft_game_captain_selection_insert_input!" ], "on_conflict": [ - 582 + 581 ] } ], "insert_e_draft_game_draft_order": [ - 601, + 600, { "objects": [ - 598, + 597, "[e_draft_game_draft_order_insert_input!]!" ], "on_conflict": [ - 603 + 602 ] } ], "insert_e_draft_game_draft_order_one": [ - 591, + 590, { "object": [ - 598, + 597, "e_draft_game_draft_order_insert_input!" ], "on_conflict": [ - 603 + 602 ] } ], "insert_e_draft_game_mode": [ - 622, + 621, { "objects": [ - 619, + 618, "[e_draft_game_mode_insert_input!]!" ], "on_conflict": [ - 624 + 623 ] } ], "insert_e_draft_game_mode_one": [ - 612, + 611, { "object": [ - 619, + 618, "e_draft_game_mode_insert_input!" ], "on_conflict": [ - 624 + 623 ] } ], "insert_e_draft_game_player_status": [ - 643, + 642, { "objects": [ - 640, + 639, "[e_draft_game_player_status_insert_input!]!" ], "on_conflict": [ - 645 + 644 ] } ], "insert_e_draft_game_player_status_one": [ - 633, + 632, { "object": [ - 640, + 639, "e_draft_game_player_status_insert_input!" ], "on_conflict": [ - 645 + 644 ] } ], "insert_e_draft_game_status": [ - 664, + 663, { "objects": [ - 661, + 660, "[e_draft_game_status_insert_input!]!" ], "on_conflict": [ - 666 + 665 ] } ], "insert_e_draft_game_status_one": [ - 654, + 653, { "object": [ - 661, + 660, "e_draft_game_status_insert_input!" ], "on_conflict": [ - 666 + 665 ] } ], "insert_e_event_media_access": [ - 685, + 684, { "objects": [ - 682, + 681, "[e_event_media_access_insert_input!]!" ], "on_conflict": [ - 686 + 685 ] } ], "insert_e_event_media_access_one": [ - 675, + 674, { "object": [ - 682, + 681, "e_event_media_access_insert_input!" ], "on_conflict": [ - 686 + 685 ] } ], "insert_e_event_visibility": [ - 705, + 704, { "objects": [ - 702, + 701, "[e_event_visibility_insert_input!]!" ], "on_conflict": [ - 706 + 705 ] } ], "insert_e_event_visibility_one": [ - 695, + 694, { "object": [ - 702, + 701, "e_event_visibility_insert_input!" ], "on_conflict": [ - 706 + 705 ] } ], "insert_e_friend_status": [ - 725, + 724, { "objects": [ - 722, + 721, "[e_friend_status_insert_input!]!" ], "on_conflict": [ - 727 + 726 ] } ], "insert_e_friend_status_one": [ - 715, + 714, { "object": [ - 722, + 721, "e_friend_status_insert_input!" ], "on_conflict": [ - 727 + 726 ] } ], "insert_e_game_cfg_types": [ - 746, + 745, { "objects": [ - 743, + 742, "[e_game_cfg_types_insert_input!]!" ], "on_conflict": [ - 747 + 746 ] } ], "insert_e_game_cfg_types_one": [ - 736, + 735, { "object": [ - 743, + 742, "e_game_cfg_types_insert_input!" ], "on_conflict": [ - 747 + 746 ] } ], "insert_e_game_server_node_statuses": [ - 766, + 765, { "objects": [ - 763, + 762, "[e_game_server_node_statuses_insert_input!]!" ], "on_conflict": [ - 768 + 767 ] } ], "insert_e_game_server_node_statuses_one": [ - 756, + 755, { "object": [ - 763, + 762, "e_game_server_node_statuses_insert_input!" ], "on_conflict": [ - 768 + 767 ] } ], "insert_e_league_movement_types": [ - 787, + 786, { "objects": [ - 784, + 783, "[e_league_movement_types_insert_input!]!" ], "on_conflict": [ - 789 + 788 ] } ], "insert_e_league_movement_types_one": [ - 777, + 776, { "object": [ - 784, + 783, "e_league_movement_types_insert_input!" ], "on_conflict": [ - 789 + 788 ] } ], "insert_e_league_proposal_statuses": [ - 808, + 807, { "objects": [ - 805, + 804, "[e_league_proposal_statuses_insert_input!]!" ], "on_conflict": [ - 810 + 809 ] } ], "insert_e_league_proposal_statuses_one": [ - 798, + 797, { "object": [ - 805, + 804, "e_league_proposal_statuses_insert_input!" ], "on_conflict": [ - 810 + 809 ] } ], "insert_e_league_registration_statuses": [ - 829, + 828, { "objects": [ - 826, + 825, "[e_league_registration_statuses_insert_input!]!" ], "on_conflict": [ - 831 + 830 ] } ], "insert_e_league_registration_statuses_one": [ - 819, + 818, { "object": [ - 826, + 825, "e_league_registration_statuses_insert_input!" ], "on_conflict": [ - 831 + 830 ] } ], "insert_e_league_season_statuses": [ - 850, + 849, { "objects": [ - 847, + 846, "[e_league_season_statuses_insert_input!]!" ], "on_conflict": [ - 852 + 851 ] } ], "insert_e_league_season_statuses_one": [ - 840, + 839, { "object": [ - 847, + 846, "e_league_season_statuses_insert_input!" ], "on_conflict": [ - 852 + 851 ] } ], "insert_e_lobby_access": [ - 871, + 870, { "objects": [ - 868, + 867, "[e_lobby_access_insert_input!]!" ], "on_conflict": [ - 873 + 872 ] } ], "insert_e_lobby_access_one": [ - 861, + 860, { "object": [ - 868, + 867, "e_lobby_access_insert_input!" ], "on_conflict": [ - 873 + 872 ] } ], "insert_e_lobby_player_status": [ - 892, + 891, { "objects": [ - 889, + 888, "[e_lobby_player_status_insert_input!]!" ], "on_conflict": [ - 893 + 892 ] } ], "insert_e_lobby_player_status_one": [ - 882, + 881, { "object": [ - 889, + 888, "e_lobby_player_status_insert_input!" ], "on_conflict": [ - 893 + 892 ] } ], "insert_e_map_pool_types": [ - 912, + 911, { "objects": [ - 909, + 908, "[e_map_pool_types_insert_input!]!" ], "on_conflict": [ - 914 + 913 ] } ], "insert_e_map_pool_types_one": [ - 902, + 901, { "object": [ - 909, + 908, "e_map_pool_types_insert_input!" ], "on_conflict": [ - 914 + 913 ] } ], "insert_e_match_clip_visibility": [ - 933, + 932, { "objects": [ - 930, + 929, "[e_match_clip_visibility_insert_input!]!" ], "on_conflict": [ - 934 + 933 ] } ], "insert_e_match_clip_visibility_one": [ - 923, + 922, { "object": [ - 930, + 929, "e_match_clip_visibility_insert_input!" ], "on_conflict": [ - 934 + 933 ] } ], "insert_e_match_map_status": [ - 953, + 952, { "objects": [ - 950, + 949, "[e_match_map_status_insert_input!]!" ], "on_conflict": [ - 955 + 954 ] } ], "insert_e_match_map_status_one": [ - 943, + 942, { "object": [ - 950, + 949, "e_match_map_status_insert_input!" ], "on_conflict": [ - 955 + 954 ] } ], "insert_e_match_mode": [ - 974, + 973, { "objects": [ - 971, + 970, "[e_match_mode_insert_input!]!" ], "on_conflict": [ - 975 + 974 ] } ], "insert_e_match_mode_one": [ - 964, + 963, { "object": [ - 971, + 970, "e_match_mode_insert_input!" ], "on_conflict": [ - 975 + 974 ] } ], "insert_e_match_status": [ - 994, + 993, { "objects": [ - 991, + 990, "[e_match_status_insert_input!]!" ], "on_conflict": [ - 996 + 995 ] } ], "insert_e_match_status_one": [ - 984, + 983, { "object": [ - 991, + 990, "e_match_status_insert_input!" ], "on_conflict": [ - 996 + 995 ] } ], "insert_e_match_types": [ - 1015, + 1014, { "objects": [ - 1012, + 1011, "[e_match_types_insert_input!]!" ], "on_conflict": [ - 1017 + 1016 ] } ], "insert_e_match_types_one": [ - 1005, + 1004, { "object": [ - 1012, + 1011, "e_match_types_insert_input!" ], "on_conflict": [ - 1017 + 1016 ] } ], "insert_e_notification_types": [ - 1036, + 1035, { "objects": [ - 1033, + 1032, "[e_notification_types_insert_input!]!" ], "on_conflict": [ - 1037 + 1036 ] } ], "insert_e_notification_types_one": [ - 1026, + 1025, { "object": [ - 1033, + 1032, "e_notification_types_insert_input!" ], "on_conflict": [ - 1037 + 1036 ] } ], "insert_e_objective_types": [ - 1056, + 1055, { "objects": [ - 1053, + 1052, "[e_objective_types_insert_input!]!" ], "on_conflict": [ - 1057 + 1056 ] } ], "insert_e_objective_types_one": [ - 1046, + 1045, { "object": [ - 1053, + 1052, "e_objective_types_insert_input!" ], "on_conflict": [ - 1057 + 1056 ] } ], "insert_e_player_roles": [ - 1076, + 1075, { "objects": [ - 1073, + 1072, "[e_player_roles_insert_input!]!" ], "on_conflict": [ - 1077 + 1076 ] } ], "insert_e_player_roles_one": [ - 1066, + 1065, { "object": [ - 1073, + 1072, "e_player_roles_insert_input!" ], "on_conflict": [ - 1077 + 1076 ] } ], "insert_e_plugin_runtimes": [ - 1096, + 1095, { "objects": [ - 1093, + 1092, "[e_plugin_runtimes_insert_input!]!" ], "on_conflict": [ - 1097 + 1096 ] } ], "insert_e_plugin_runtimes_one": [ - 1086, + 1085, { "object": [ - 1093, + 1092, "e_plugin_runtimes_insert_input!" ], "on_conflict": [ - 1097 + 1096 ] } ], "insert_e_ready_settings": [ - 1116, + 1115, { "objects": [ - 1113, + 1112, "[e_ready_settings_insert_input!]!" ], "on_conflict": [ - 1117 + 1116 ] } ], "insert_e_ready_settings_one": [ - 1106, + 1105, { "object": [ - 1113, + 1112, "e_ready_settings_insert_input!" ], "on_conflict": [ - 1117 + 1116 ] } ], "insert_e_sanction_types": [ - 1136, + 1135, { "objects": [ - 1133, + 1132, "[e_sanction_types_insert_input!]!" ], "on_conflict": [ - 1138 + 1137 ] } ], "insert_e_sanction_types_one": [ - 1126, + 1125, { "object": [ - 1133, + 1132, "e_sanction_types_insert_input!" ], "on_conflict": [ - 1138 + 1137 ] } ], "insert_e_scrim_request_statuses": [ - 1157, + 1156, { "objects": [ - 1154, + 1153, "[e_scrim_request_statuses_insert_input!]!" ], "on_conflict": [ - 1158 + 1157 ] } ], "insert_e_scrim_request_statuses_one": [ - 1147, + 1146, { "object": [ - 1154, + 1153, "e_scrim_request_statuses_insert_input!" ], "on_conflict": [ - 1158 + 1157 ] } ], "insert_e_server_types": [ - 1177, + 1176, { "objects": [ - 1174, + 1173, "[e_server_types_insert_input!]!" ], "on_conflict": [ - 1178 + 1177 ] } ], "insert_e_server_types_one": [ - 1167, + 1166, { "object": [ - 1174, + 1173, "e_server_types_insert_input!" ], "on_conflict": [ - 1178 + 1177 ] } ], "insert_e_sides": [ - 1197, + 1196, { "objects": [ - 1194, + 1193, "[e_sides_insert_input!]!" ], "on_conflict": [ - 1198 + 1197 ] } ], "insert_e_sides_one": [ - 1187, + 1186, { "object": [ - 1194, + 1193, "e_sides_insert_input!" ], "on_conflict": [ - 1198 + 1197 ] } ], "insert_e_system_alert_types": [ - 1217, + 1216, { "objects": [ - 1214, + 1213, "[e_system_alert_types_insert_input!]!" ], "on_conflict": [ - 1218 + 1217 ] } ], "insert_e_system_alert_types_one": [ - 1207, + 1206, { "object": [ - 1214, + 1213, "e_system_alert_types_insert_input!" ], "on_conflict": [ - 1218 + 1217 ] } ], "insert_e_team_roles": [ - 1237, + 1236, { "objects": [ - 1234, + 1233, "[e_team_roles_insert_input!]!" ], "on_conflict": [ - 1239 + 1238 ] } ], "insert_e_team_roles_one": [ - 1227, + 1226, { "object": [ - 1234, + 1233, "e_team_roles_insert_input!" ], "on_conflict": [ - 1239 + 1238 ] } ], "insert_e_team_roster_statuses": [ - 1258, + 1257, { "objects": [ - 1255, + 1254, "[e_team_roster_statuses_insert_input!]!" ], "on_conflict": [ - 1259 + 1258 ] } ], "insert_e_team_roster_statuses_one": [ - 1248, + 1247, { "object": [ - 1255, + 1254, "e_team_roster_statuses_insert_input!" ], "on_conflict": [ - 1259 + 1258 ] } ], "insert_e_timeout_settings": [ - 1278, + 1277, { "objects": [ - 1275, + 1274, "[e_timeout_settings_insert_input!]!" ], "on_conflict": [ - 1279 + 1278 ] } ], "insert_e_timeout_settings_one": [ - 1268, + 1267, { "object": [ - 1275, + 1274, "e_timeout_settings_insert_input!" ], "on_conflict": [ - 1279 + 1278 ] } ], "insert_e_tournament_categories": [ - 1298, + 1297, { "objects": [ - 1295, + 1294, "[e_tournament_categories_insert_input!]!" ], "on_conflict": [ - 1300 + 1299 ] } ], "insert_e_tournament_categories_one": [ - 1288, + 1287, { "object": [ - 1295, + 1294, "e_tournament_categories_insert_input!" ], "on_conflict": [ - 1300 + 1299 ] } ], "insert_e_tournament_stage_types": [ - 1319, + 1318, { "objects": [ - 1316, + 1315, "[e_tournament_stage_types_insert_input!]!" ], "on_conflict": [ - 1321 + 1320 ] } ], "insert_e_tournament_stage_types_one": [ - 1309, + 1308, { "object": [ - 1316, + 1315, "e_tournament_stage_types_insert_input!" ], "on_conflict": [ - 1321 + 1320 ] } ], "insert_e_tournament_status": [ - 1340, + 1339, { "objects": [ - 1337, + 1336, "[e_tournament_status_insert_input!]!" ], "on_conflict": [ - 1342 + 1341 ] } ], "insert_e_tournament_status_one": [ - 1330, + 1329, { "object": [ - 1337, + 1336, "e_tournament_status_insert_input!" ], "on_conflict": [ - 1342 + 1341 ] } ], "insert_e_utility_types": [ - 1361, + 1360, { "objects": [ - 1358, + 1357, "[e_utility_types_insert_input!]!" ], "on_conflict": [ - 1362 + 1361 ] } ], "insert_e_utility_types_one": [ - 1351, + 1350, { "object": [ - 1358, + 1357, "e_utility_types_insert_input!" ], "on_conflict": [ - 1362 + 1361 ] } ], "insert_e_veto_pick_types": [ - 1381, + 1380, { "objects": [ - 1378, + 1377, "[e_veto_pick_types_insert_input!]!" ], "on_conflict": [ - 1382 + 1381 ] } ], "insert_e_veto_pick_types_one": [ - 1371, + 1370, { "object": [ - 1378, + 1377, "e_veto_pick_types_insert_input!" ], "on_conflict": [ - 1382 + 1381 ] } ], "insert_e_winning_reasons": [ - 1401, + 1400, { "objects": [ - 1398, + 1397, "[e_winning_reasons_insert_input!]!" ], "on_conflict": [ - 1402 + 1401 ] } ], "insert_e_winning_reasons_one": [ - 1391, + 1390, { "object": [ - 1398, + 1397, "e_winning_reasons_insert_input!" ], "on_conflict": [ - 1402 + 1401 ] } ], "insert_event_match_links": [ - 1419, + 1418, { "objects": [ - 1416, + 1415, "[event_match_links_insert_input!]!" ], "on_conflict": [ - 1420 + 1419 ] } ], "insert_event_match_links_one": [ - 1411, + 1410, { "object": [ - 1416, + 1415, "event_match_links_insert_input!" ], "on_conflict": [ - 1420 + 1419 ] } ], "insert_event_media": [ - 1446, + 1445, { "objects": [ - 1441, + 1440, "[event_media_insert_input!]!" ], "on_conflict": [ - 1448 + 1447 ] } ], "insert_event_media_one": [ - 1429, + 1428, { "object": [ - 1441, + 1440, "event_media_insert_input!" ], "on_conflict": [ - 1448 + 1447 ] } ], "insert_event_media_players": [ - 1468, + 1467, { "objects": [ - 1463, + 1462, "[event_media_players_insert_input!]!" ], "on_conflict": [ - 1469 + 1468 ] } ], "insert_event_media_players_one": [ - 1451, + 1450, { "object": [ - 1463, + 1462, "event_media_players_insert_input!" ], "on_conflict": [ - 1469 + 1468 ] } ], "insert_event_organizers": [ - 1529, + 1528, { "objects": [ - 1524, + 1523, "[event_organizers_insert_input!]!" ], "on_conflict": [ - 1530 + 1529 ] } ], "insert_event_organizers_one": [ - 1512, + 1511, { "object": [ - 1524, + 1523, "event_organizers_insert_input!" ], "on_conflict": [ - 1530 + 1529 ] } ], "insert_event_players": [ - 1570, + 1569, { "objects": [ - 1565, + 1564, "[event_players_insert_input!]!" ], "on_conflict": [ - 1571 + 1570 ] } ], "insert_event_players_one": [ - 1553, + 1552, { "object": [ - 1565, + 1564, "event_players_insert_input!" ], "on_conflict": [ - 1571 + 1570 ] } ], "insert_event_teams": [ - 1608, + 1607, { "objects": [ - 1603, + 1602, "[event_teams_insert_input!]!" ], "on_conflict": [ - 1609 + 1608 ] } ], "insert_event_teams_one": [ - 1594, + 1593, { "object": [ - 1603, + 1602, "event_teams_insert_input!" ], "on_conflict": [ - 1609 + 1608 ] } ], "insert_event_tournaments": [ - 1632, + 1631, { "objects": [ - 1627, + 1626, "[event_tournaments_insert_input!]!" ], "on_conflict": [ - 1633 + 1632 ] } ], "insert_event_tournaments_one": [ - 1618, + 1617, { "object": [ - 1627, + 1626, "event_tournaments_insert_input!" ], "on_conflict": [ - 1633 + 1632 ] } ], "insert_events": [ - 1652, + 1651, { "objects": [ - 1649, + 1648, "[events_insert_input!]!" ], "on_conflict": [ - 1654 + 1653 ] } ], "insert_events_one": [ - 1642, + 1641, { "object": [ - 1649, + 1648, "events_insert_input!" ], "on_conflict": [ - 1654 + 1653 ] } ], "insert_friends": [ - 1682, + 1681, { "objects": [ - 1679, + 1678, "[friends_insert_input!]!" ], "on_conflict": [ - 1683 + 1682 ] } ], "insert_friends_one": [ - 1672, + 1671, { "object": [ - 1679, + 1678, "friends_insert_input!" ], "on_conflict": [ - 1683 + 1682 ] } ], "insert_game_server_nodes": [ - 1722, + 1721, { "objects": [ - 1717, + 1716, "[game_server_nodes_insert_input!]!" ], "on_conflict": [ - 1724 + 1723 ] } ], "insert_game_server_nodes_one": [ - 1699, + 1698, { "object": [ - 1717, + 1716, "game_server_nodes_insert_input!" ], "on_conflict": [ - 1724 + 1723 ] } ], "insert_game_versions": [ - 1764, + 1763, { "objects": [ - 1761, + 1760, "[game_versions_insert_input!]!" ], "on_conflict": [ - 1766 + 1765 ] } ], "insert_game_versions_one": [ - 1750, + 1749, { "object": [ - 1761, + 1760, "game_versions_insert_input!" ], "on_conflict": [ - 1766 + 1765 ] } ], "insert_gamedata_signature_validations": [ - 1797, + 1796, { "objects": [ - 1794, + 1793, "[gamedata_signature_validations_insert_input!]!" ], "on_conflict": [ - 1798 + 1797 ] } ], "insert_gamedata_signature_validations_one": [ - 1783, + 1782, { "object": [ - 1794, + 1793, "gamedata_signature_validations_insert_input!" ], "on_conflict": [ - 1798 + 1797 ] } ], "insert_leaderboard_entries": [ - 1835, + 1834, { "objects": [ - 1832, + 1831, "[leaderboard_entries_insert_input!]!" ] } ], "insert_leaderboard_entries_one": [ - 1826, + 1825, { "object": [ - 1832, + 1831, "leaderboard_entries_insert_input!" ] } ], "insert_league_divisions": [ - 1860, + 1859, { "objects": [ - 1857, + 1856, "[league_divisions_insert_input!]!" ], "on_conflict": [ - 1862 + 1861 ] } ], "insert_league_divisions_one": [ - 1850, + 1849, { "object": [ - 1857, + 1856, "league_divisions_insert_input!" ], "on_conflict": [ - 1862 + 1861 ] } ], "insert_league_match_weeks": [ - 1895, + 1894, { "objects": [ - 1890, + 1889, "[league_match_weeks_insert_input!]!" ], "on_conflict": [ - 1896 + 1895 ] } ], "insert_league_match_weeks_one": [ - 1878, + 1877, { "object": [ - 1890, + 1889, "league_match_weeks_insert_input!" ], "on_conflict": [ - 1896 + 1895 ] } ], "insert_league_relegation_playoffs": [ - 1936, + 1935, { "objects": [ - 1931, + 1930, "[league_relegation_playoffs_insert_input!]!" ], "on_conflict": [ - 1937 + 1936 ] } ], "insert_league_relegation_playoffs_one": [ - 1919, + 1918, { "object": [ - 1931, + 1930, "league_relegation_playoffs_insert_input!" ], "on_conflict": [ - 1937 + 1936 ] } ], "insert_league_scheduling_proposals": [ - 1977, + 1976, { "objects": [ - 1972, + 1971, "[league_scheduling_proposals_insert_input!]!" ], "on_conflict": [ - 1978 + 1977 ] } ], "insert_league_scheduling_proposals_one": [ - 1960, + 1959, { "object": [ - 1972, + 1971, "league_scheduling_proposals_insert_input!" ], "on_conflict": [ - 1978 + 1977 ] } ], "insert_league_season_divisions": [ - 2015, + 2014, { "objects": [ - 2010, + 2009, "[league_season_divisions_insert_input!]!" ], "on_conflict": [ - 2017 + 2016 ] } ], "insert_league_season_divisions_one": [ - 2001, + 2000, { "object": [ - 2010, + 2009, "league_season_divisions_insert_input!" ], "on_conflict": [ - 2017 + 2016 ] } ], "insert_league_seasons": [ - 2040, + 2039, { "objects": [ - 2037, + 2036, "[league_seasons_insert_input!]!" ], "on_conflict": [ - 2042 + 2041 ] } ], "insert_league_seasons_one": [ - 2026, + 2025, { "object": [ - 2037, + 2036, "league_seasons_insert_input!" ], "on_conflict": [ - 2042 + 2041 ] } ], "insert_league_team_movements": [ - 2076, + 2075, { "objects": [ - 2071, + 2070, "[league_team_movements_insert_input!]!" ], "on_conflict": [ - 2077 + 2076 ] } ], "insert_league_team_movements_one": [ - 2059, + 2058, { "object": [ - 2071, + 2070, "league_team_movements_insert_input!" ], "on_conflict": [ - 2077 + 2076 ] } ], "insert_league_team_rosters": [ - 2117, + 2116, { "objects": [ - 2112, + 2111, "[league_team_rosters_insert_input!]!" ], "on_conflict": [ - 2118 + 2117 ] } ], "insert_league_team_rosters_one": [ - 2100, + 2099, { "object": [ - 2112, + 2111, "league_team_rosters_insert_input!" ], "on_conflict": [ - 2118 + 2117 ] } ], "insert_league_team_seasons": [ - 2158, + 2157, { "objects": [ - 2153, + 2152, "[league_team_seasons_insert_input!]!" ], "on_conflict": [ - 2160 + 2159 ] } ], "insert_league_team_seasons_one": [ - 2141, + 2140, { "object": [ - 2153, + 2152, "league_team_seasons_insert_input!" ], "on_conflict": [ - 2160 + 2159 ] } ], "insert_league_teams": [ - 2191, + 2190, { "objects": [ - 2188, + 2187, "[league_teams_insert_input!]!" ], "on_conflict": [ - 2193 + 2192 ] } ], "insert_league_teams_one": [ - 2183, + 2182, { "object": [ - 2188, + 2187, "league_teams_insert_input!" ], "on_conflict": [ - 2193 + 2192 ] } ], "insert_lobbies": [ - 2210, + 2209, { "objects": [ - 2207, + 2206, "[lobbies_insert_input!]!" ], "on_conflict": [ - 2212 + 2211 ] } ], "insert_lobbies_one": [ - 2202, + 2201, { "object": [ - 2207, + 2206, "lobbies_insert_input!" ], "on_conflict": [ - 2212 + 2211 ] } ], "insert_lobby_players": [ - 2240, + 2239, { "objects": [ - 2235, + 2234, "[lobby_players_insert_input!]!" ], "on_conflict": [ - 2241 + 2240 ] } ], "insert_lobby_players_one": [ - 2221, + 2220, { "object": [ - 2235, + 2234, "lobby_players_insert_input!" ], "on_conflict": [ - 2241 + 2240 ] } ], "insert_map_pools": [ - 2274, + 2273, { "objects": [ - 2271, + 2270, "[map_pools_insert_input!]!" ], "on_conflict": [ - 2276 + 2275 ] } ], "insert_map_pools_one": [ - 2266, + 2265, { "object": [ - 2271, + 2270, "map_pools_insert_input!" ], "on_conflict": [ - 2276 + 2275 ] } ], "insert_maps": [ - 2301, + 2300, { "objects": [ - 2296, + 2295, "[maps_insert_input!]!" ], "on_conflict": [ - 2303 + 2302 ] } ], "insert_maps_one": [ - 2285, + 2284, { "object": [ - 2296, + 2295, "maps_insert_input!" ], "on_conflict": [ - 2303 + 2302 ] } ], "insert_match_clips": [ - 2331, + 2330, { "objects": [ - 2326, + 2325, "[match_clips_insert_input!]!" ], "on_conflict": [ - 2333 + 2332 ] } ], "insert_match_clips_one": [ - 2314, + 2313, { "object": [ - 2326, + 2325, "match_clips_insert_input!" ], "on_conflict": [ - 2333 + 2332 ] } ], "insert_match_demo_sessions": [ - 2377, + 2376, { "objects": [ - 2372, + 2371, "[match_demo_sessions_insert_input!]!" ], "on_conflict": [ - 2378 + 2377 ] } ], "insert_match_demo_sessions_one": [ - 2356, + 2355, { "object": [ - 2372, + 2371, "match_demo_sessions_insert_input!" ], "on_conflict": [ - 2378 + 2377 ] } ], "insert_match_lineup_players": [ - 2421, + 2420, { "objects": [ - 2416, + 2415, "[match_lineup_players_insert_input!]!" ], "on_conflict": [ - 2422 + 2421 ] } ], "insert_match_lineup_players_one": [ - 2402, + 2401, { "object": [ - 2416, + 2415, "match_lineup_players_insert_input!" ], "on_conflict": [ - 2422 + 2421 ] } ], "insert_match_lineups": [ - 2464, + 2463, { "objects": [ - 2459, + 2458, "[match_lineups_insert_input!]!" ], "on_conflict": [ - 2466 + 2465 ] } ], "insert_match_lineups_one": [ - 2447, + 2446, { "object": [ - 2459, + 2458, "match_lineups_insert_input!" ], "on_conflict": [ - 2466 + 2465 ] } ], "insert_match_map_demos": [ - 2512, + 2511, { "objects": [ - 2507, + 2506, "[match_map_demos_insert_input!]!" ], "on_conflict": [ - 2514 + 2513 ] } ], "insert_match_map_demos_one": [ - 2489, + 2488, { "object": [ - 2507, + 2506, "match_map_demos_insert_input!" ], "on_conflict": [ - 2514 + 2513 ] } ], "insert_match_map_rounds": [ - 2557, + 2556, { "objects": [ - 2552, + 2551, "[match_map_rounds_insert_input!]!" ], "on_conflict": [ - 2558 + 2557 ] } ], "insert_match_map_rounds_one": [ - 2540, + 2539, { "object": [ - 2552, + 2551, "match_map_rounds_insert_input!" ], "on_conflict": [ - 2558 + 2557 ] } ], "insert_match_map_veto_picks": [ - 2595, + 2594, { "objects": [ - 2590, + 2589, "[match_map_veto_picks_insert_input!]!" ], "on_conflict": [ - 2596 + 2595 ] } ], "insert_match_map_veto_picks_one": [ - 2581, + 2580, { "object": [ - 2590, + 2589, "match_map_veto_picks_insert_input!" ], "on_conflict": [ - 2596 + 2595 ] } ], "insert_match_maps": [ - 2622, + 2621, { "objects": [ - 2617, + 2616, "[match_maps_insert_input!]!" ], "on_conflict": [ - 2624 + 2623 ] } ], "insert_match_maps_one": [ - 2605, + 2604, { "object": [ - 2617, + 2616, "match_maps_insert_input!" ], "on_conflict": [ - 2624 + 2623 ] } ], "insert_match_options": [ - 2657, + 2656, { "objects": [ - 2654, + 2653, "[match_options_insert_input!]!" ], "on_conflict": [ - 2659 + 2658 ] } ], "insert_match_options_one": [ - 2647, + 2646, { "object": [ - 2654, + 2653, "match_options_insert_input!" ], "on_conflict": [ - 2659 + 2658 ] } ], "insert_match_region_veto_picks": [ - 2689, + 2688, { "objects": [ - 2684, + 2683, "[match_region_veto_picks_insert_input!]!" ], "on_conflict": [ - 2690 + 2689 ] } ], "insert_match_region_veto_picks_one": [ - 2675, + 2674, { "object": [ - 2684, + 2683, "match_region_veto_picks_insert_input!" ], "on_conflict": [ - 2690 + 2689 ] } ], "insert_match_streams": [ - 2722, + 2721, { "objects": [ - 2717, + 2716, "[match_streams_insert_input!]!" ], "on_conflict": [ - 2723 + 2722 ] } ], "insert_match_streams_one": [ - 2699, + 2698, { "object": [ - 2717, + 2716, "match_streams_insert_input!" ], "on_conflict": [ - 2723 + 2722 ] } ], "insert_match_type_cfgs": [ - 2757, + 2756, { "objects": [ - 2754, + 2753, "[match_type_cfgs_insert_input!]!" ], "on_conflict": [ - 2758 + 2757 ] } ], "insert_match_type_cfgs_one": [ - 2749, + 2748, { "object": [ - 2754, + 2753, "match_type_cfgs_insert_input!" ], "on_conflict": [ - 2758 + 2757 ] } ], "insert_matches": [ - 2784, + 2783, { "objects": [ - 2779, + 2778, "[matches_insert_input!]!" ], "on_conflict": [ - 2786 + 2785 ] } ], "insert_matches_one": [ - 2767, + 2766, { "object": [ - 2779, + 2778, "matches_insert_input!" ], "on_conflict": [ - 2786 + 2785 ] } ], "insert_migration_hashes_hashes": [ - 2817, + 2816, { "objects": [ - 2814, + 2813, "[migration_hashes_hashes_insert_input!]!" ], "on_conflict": [ - 2818 + 2817 ] } ], "insert_migration_hashes_hashes_one": [ - 2809, + 2808, { "object": [ - 2814, + 2813, "migration_hashes_hashes_insert_input!" ], "on_conflict": [ - 2818 + 2817 ] } ], "insert_my_friends": [ - 2849, + 2848, { "objects": [ - 2844, + 2843, "[my_friends_insert_input!]!" ] } ], "insert_my_friends_one": [ - 2827, + 2826, { "object": [ - 2844, + 2843, "my_friends_insert_input!" ] } ], "insert_news_articles": [ - 2883, + 2882, { "objects": [ - 2880, + 2879, "[news_articles_insert_input!]!" ], "on_conflict": [ - 2884 + 2883 ] } ], "insert_news_articles_one": [ - 2873, + 2872, { "object": [ - 2880, + 2879, "news_articles_insert_input!" ], "on_conflict": [ - 2884 + 2883 ] } ], "insert_notifications": [ - 2923, + 2922, { "objects": [ - 2918, + 2917, "[notifications_insert_input!]!" ], "on_conflict": [ - 2924 + 2923 ] } ], "insert_notifications_one": [ - 2900, + 2899, { "object": [ - 2918, + 2917, "notifications_insert_input!" ], "on_conflict": [ - 2924 + 2923 ] } ], "insert_pending_match_import_players": [ - 2970, + 2969, { "objects": [ - 2965, + 2964, "[pending_match_import_players_insert_input!]!" ], "on_conflict": [ - 2971 + 2970 ] } ], "insert_pending_match_import_players_one": [ - 2953, + 2952, { "object": [ - 2965, + 2964, "pending_match_import_players_insert_input!" ], "on_conflict": [ - 2971 + 2970 ] } ], "insert_pending_match_imports": [ - 3004, + 3003, { "objects": [ - 3001, + 3000, "[pending_match_imports_insert_input!]!" ], "on_conflict": [ - 3006 + 3005 ] } ], "insert_pending_match_imports_one": [ - 2994, + 2993, { "object": [ - 3001, + 3000, "pending_match_imports_insert_input!" ], "on_conflict": [ - 3006 + 3005 ] } ], "insert_player_aim_stats_demo": [ - 3032, + 3031, { "objects": [ - 3029, + 3028, "[player_aim_stats_demo_insert_input!]!" ], "on_conflict": [ - 3033 + 3032 ] } ], "insert_player_aim_stats_demo_one": [ - 3022, + 3021, { "object": [ - 3029, + 3028, "player_aim_stats_demo_insert_input!" ], "on_conflict": [ - 3033 + 3032 ] } ], "insert_player_aim_weapon_stats": [ - 3066, + 3065, { "objects": [ - 3061, + 3060, "[player_aim_weapon_stats_insert_input!]!" ], "on_conflict": [ - 3067 + 3066 ] } ], "insert_player_aim_weapon_stats_one": [ - 3049, + 3048, { "object": [ - 3061, + 3060, "player_aim_weapon_stats_insert_input!" ], "on_conflict": [ - 3067 + 3066 ] } ], "insert_player_assists": [ - 3109, + 3108, { "objects": [ - 3104, + 3103, "[player_assists_insert_input!]!" ], "on_conflict": [ - 3110 + 3109 ] } ], "insert_player_assists_one": [ - 3090, + 3089, { "object": [ - 3104, + 3103, "player_assists_insert_input!" ], "on_conflict": [ - 3110 + 3109 ] } ], "insert_player_damages": [ - 3170, + 3169, { "objects": [ - 3165, + 3164, "[player_damages_insert_input!]!" ], "on_conflict": [ - 3171 + 3170 ] } ], "insert_player_damages_one": [ - 3153, + 3152, { "object": [ - 3165, + 3164, "player_damages_insert_input!" ], "on_conflict": [ - 3171 + 3170 ] } ], "insert_player_elo": [ - 3204, + 3203, { "objects": [ - 3201, + 3200, "[player_elo_insert_input!]!" ], "on_conflict": [ - 3205 + 3204 ] } ], "insert_player_elo_one": [ - 3194, + 3193, { "object": [ - 3201, + 3200, "player_elo_insert_input!" ], "on_conflict": [ - 3205 + 3204 ] } ], "insert_player_faceit_rank_history": [ - 3238, + 3237, { "objects": [ - 3233, + 3232, "[player_faceit_rank_history_insert_input!]!" ], "on_conflict": [ - 3239 + 3238 ] } ], "insert_player_faceit_rank_history_one": [ - 3221, + 3220, { "object": [ - 3233, + 3232, "player_faceit_rank_history_insert_input!" ], "on_conflict": [ - 3239 + 3238 ] } ], "insert_player_flashes": [ - 3281, + 3280, { "objects": [ - 3276, + 3275, "[player_flashes_insert_input!]!" ], "on_conflict": [ - 3282 + 3281 ] } ], "insert_player_flashes_one": [ - 3262, + 3261, { "object": [ - 3276, + 3275, "player_flashes_insert_input!" ], "on_conflict": [ - 3282 + 3281 ] } ], "insert_player_kills": [ - 3367, + 3366, { "objects": [ - 3362, + 3361, "[player_kills_insert_input!]!" ], "on_conflict": [ - 3368 + 3367 ] } ], "insert_player_kills_by_weapon": [ - 3336, + 3335, { "objects": [ - 3331, + 3330, "[player_kills_by_weapon_insert_input!]!" ], "on_conflict": [ - 3337 + 3336 ] } ], "insert_player_kills_by_weapon_one": [ - 3319, + 3318, { "object": [ - 3331, + 3330, "player_kills_by_weapon_insert_input!" ], "on_conflict": [ - 3337 + 3336 ] } ], "insert_player_kills_one": [ - 3307, + 3306, { "object": [ - 3362, + 3361, "player_kills_insert_input!" ], "on_conflict": [ - 3368 + 3367 ] } ], "insert_player_leaderboard_rank": [ - 3402, + 3401, { "objects": [ - 3399, + 3398, "[player_leaderboard_rank_insert_input!]!" ] } ], "insert_player_leaderboard_rank_one": [ - 3393, + 3392, { "object": [ - 3399, + 3398, "player_leaderboard_rank_insert_input!" ] } ], "insert_player_match_map_stats": [ - 3433, + 3432, { "objects": [ - 3428, + 3427, "[player_match_map_stats_insert_input!]!" ], "on_conflict": [ - 3434 + 3433 ] } ], "insert_player_match_map_stats_one": [ - 3416, + 3415, { "object": [ - 3428, + 3427, "player_match_map_stats_insert_input!" ], "on_conflict": [ - 3434 + 3433 ] } ], "insert_player_objectives": [ - 3525, + 3524, { "objects": [ - 3520, + 3519, "[player_objectives_insert_input!]!" ], "on_conflict": [ - 3526 + 3525 ] } ], "insert_player_objectives_one": [ - 3508, + 3507, { "object": [ - 3520, + 3519, "player_objectives_insert_input!" ], "on_conflict": [ - 3526 + 3525 ] } ], "insert_player_premier_rank_history": [ - 3584, + 3583, { "objects": [ - 3579, + 3578, "[player_premier_rank_history_insert_input!]!" ], "on_conflict": [ - 3585 + 3584 ] } ], "insert_player_premier_rank_history_one": [ - 3567, + 3566, { "object": [ - 3579, + 3578, "player_premier_rank_history_insert_input!" ], "on_conflict": [ - 3585 + 3584 ] } ], "insert_player_sanctions": [ - 3625, + 3624, { "objects": [ - 3620, + 3619, "[player_sanctions_insert_input!]!" ], "on_conflict": [ - 3626 + 3625 ] } ], "insert_player_sanctions_one": [ - 3608, + 3607, { "object": [ - 3620, + 3619, "player_sanctions_insert_input!" ], "on_conflict": [ - 3626 + 3625 ] } ], "insert_player_season_stats": [ - 3676, + 3675, { "objects": [ - 3671, + 3670, "[player_season_stats_insert_input!]!" ], "on_conflict": [ - 3677 + 3676 ] } ], "insert_player_season_stats_one": [ - 3649, + 3648, { "object": [ - 3671, + 3670, "player_season_stats_insert_input!" ], "on_conflict": [ - 3677 + 3676 ] } ], "insert_player_stats": [ - 3718, + 3717, { "objects": [ - 3715, + 3714, "[player_stats_insert_input!]!" ], "on_conflict": [ - 3720 + 3719 ] } ], "insert_player_stats_one": [ - 3708, + 3707, { "object": [ - 3715, + 3714, "player_stats_insert_input!" ], "on_conflict": [ - 3720 + 3719 ] } ], "insert_player_steam_bot_friend": [ - 3750, + 3749, { "objects": [ - 3747, + 3746, "[player_steam_bot_friend_insert_input!]!" ], "on_conflict": [ - 3751 + 3750 ] } ], "insert_player_steam_bot_friend_one": [ - 3736, + 3735, { "object": [ - 3747, + 3746, "player_steam_bot_friend_insert_input!" ], "on_conflict": [ - 3751 + 3750 ] } ], "insert_player_steam_match_auth": [ - 3778, + 3777, { "objects": [ - 3775, + 3774, "[player_steam_match_auth_insert_input!]!" ], "on_conflict": [ - 3779 + 3778 ] } ], "insert_player_steam_match_auth_one": [ - 3768, + 3767, { "object": [ - 3775, + 3774, "player_steam_match_auth_insert_input!" ], "on_conflict": [ - 3779 + 3778 ] } ], "insert_player_unused_utility": [ - 3812, + 3811, { "objects": [ - 3807, + 3806, "[player_unused_utility_insert_input!]!" ], "on_conflict": [ - 3813 + 3812 ] } ], "insert_player_unused_utility_one": [ - 3795, + 3794, { "object": [ - 3807, + 3806, "player_unused_utility_insert_input!" ], "on_conflict": [ - 3813 + 3812 ] } ], "insert_player_utility": [ - 3853, + 3852, { "objects": [ - 3848, + 3847, "[player_utility_insert_input!]!" ], "on_conflict": [ - 3854 + 3853 ] } ], "insert_player_utility_one": [ - 3836, + 3835, { "object": [ - 3848, + 3847, "player_utility_insert_input!" ], "on_conflict": [ - 3854 + 3853 ] } ], "insert_players": [ - 3920, + 3919, { "objects": [ - 3917, + 3916, "[players_insert_input!]!" ], "on_conflict": [ - 3922 + 3921 ] } ], "insert_players_one": [ - 3910, + 3909, { "object": [ - 3917, + 3916, "players_insert_input!" ], "on_conflict": [ - 3922 + 3921 ] } ], "insert_plugin_versions": [ - 3948, + 3947, { "objects": [ - 3945, + 3944, "[plugin_versions_insert_input!]!" ], "on_conflict": [ - 3949 + 3948 ] } ], "insert_plugin_versions_one": [ - 3938, + 3937, { "object": [ - 3945, + 3944, "plugin_versions_insert_input!" ], "on_conflict": [ - 3949 + 3948 ] } ], "insert_seasons": [ - 3979, + 3978, { "objects": [ - 3976, + 3975, "[seasons_insert_input!]!" ], "on_conflict": [ - 3981 + 3980 ] } ], "insert_seasons_one": [ - 3969, + 3968, { "object": [ - 3976, + 3975, "seasons_insert_input!" ], "on_conflict": [ - 3981 + 3980 ] } ], "insert_server_regions": [ - 4006, + 4005, { "objects": [ - 4003, + 4002, "[server_regions_insert_input!]!" ], "on_conflict": [ - 4008 + 4007 ] } ], "insert_server_regions_one": [ - 3997, + 3996, { "object": [ - 4003, + 4002, "server_regions_insert_input!" ], "on_conflict": [ - 4008 + 4007 ] } ], "insert_servers": [ - 4043, + 4042, { "objects": [ - 4038, + 4037, "[servers_insert_input!]!" ], "on_conflict": [ - 4045 + 4044 ] } ], "insert_servers_one": [ - 4024, + 4023, { "object": [ - 4038, + 4037, "servers_insert_input!" ], "on_conflict": [ - 4045 + 4044 ] } ], "insert_settings": [ - 4078, + 4077, { "objects": [ - 4075, + 4074, "[settings_insert_input!]!" ], "on_conflict": [ - 4079 + 4078 ] } ], "insert_settings_one": [ - 4070, + 4069, { "object": [ - 4075, + 4074, "settings_insert_input!" ], "on_conflict": [ - 4079 + 4078 ] } ], "insert_steam_account_claims": [ - 4104, + 4103, { "objects": [ - 4099, + 4098, "[steam_account_claims_insert_input!]!" ], "on_conflict": [ - 4105 + 4104 ] } ], "insert_steam_account_claims_one": [ - 4090, + 4089, { "object": [ - 4099, + 4098, "steam_account_claims_insert_input!" ], "on_conflict": [ - 4105 + 4104 ] } ], "insert_steam_accounts": [ - 4124, + 4123, { "objects": [ - 4121, + 4120, "[steam_accounts_insert_input!]!" ], "on_conflict": [ - 4126 + 4125 ] } ], "insert_steam_accounts_one": [ - 4114, + 4113, { "object": [ - 4121, + 4120, "steam_accounts_insert_input!" ], "on_conflict": [ - 4126 + 4125 ] } ], "insert_system_alerts": [ - 4152, + 4151, { "objects": [ - 4149, + 4148, "[system_alerts_insert_input!]!" ], "on_conflict": [ - 4153 + 4152 ] } ], "insert_system_alerts_one": [ - 4142, + 4141, { "object": [ - 4149, + 4148, "system_alerts_insert_input!" ], "on_conflict": [ - 4153 + 4152 ] } ], "insert_team_invites": [ - 4186, + 4185, { "objects": [ - 4181, + 4180, "[team_invites_insert_input!]!" ], "on_conflict": [ - 4187 + 4186 ] } ], "insert_team_invites_one": [ - 4169, + 4168, { "object": [ - 4181, + 4180, "team_invites_insert_input!" ], "on_conflict": [ - 4187 + 4186 ] } ], "insert_team_roster": [ - 4229, + 4228, { "objects": [ - 4224, + 4223, "[team_roster_insert_input!]!" ], "on_conflict": [ - 4230 + 4229 ] } ], "insert_team_roster_one": [ - 4210, + 4209, { "object": [ - 4224, + 4223, "team_roster_insert_input!" ], "on_conflict": [ - 4230 + 4229 ] } ], "insert_team_scrim_alerts": [ - 4265, + 4264, { "objects": [ - 4262, + 4261, "[team_scrim_alerts_insert_input!]!" ], "on_conflict": [ - 4266 + 4265 ] } ], "insert_team_scrim_alerts_one": [ - 4255, + 4254, { "object": [ - 4262, + 4261, "team_scrim_alerts_insert_input!" ], "on_conflict": [ - 4266 + 4265 ] } ], "insert_team_scrim_availability": [ - 4298, + 4297, { "objects": [ - 4293, + 4292, "[team_scrim_availability_insert_input!]!" ], "on_conflict": [ - 4299 + 4298 ] } ], "insert_team_scrim_availability_one": [ - 4282, + 4281, { "object": [ - 4293, + 4292, "team_scrim_availability_insert_input!" ], "on_conflict": [ - 4299 + 4298 ] } ], "insert_team_scrim_request_proposals": [ - 4327, + 4326, { "objects": [ - 4322, + 4321, "[team_scrim_request_proposals_insert_input!]!" ], "on_conflict": [ - 4328 + 4327 ] } ], "insert_team_scrim_request_proposals_one": [ - 4310, + 4309, { "object": [ - 4322, + 4321, "team_scrim_request_proposals_insert_input!" ], "on_conflict": [ - 4328 + 4327 ] } ], "insert_team_scrim_requests": [ - 4370, + 4369, { "objects": [ - 4365, + 4364, "[team_scrim_requests_insert_input!]!" ], "on_conflict": [ - 4372 + 4371 ] } ], "insert_team_scrim_requests_one": [ - 4351, + 4350, { "object": [ - 4365, + 4364, "team_scrim_requests_insert_input!" ], "on_conflict": [ - 4372 + 4371 ] } ], "insert_team_scrim_settings": [ - 4407, + 4406, { "objects": [ - 4404, + 4403, "[team_scrim_settings_insert_input!]!" ], "on_conflict": [ - 4409 + 4408 ] } ], "insert_team_scrim_settings_one": [ - 4397, + 4396, { "object": [ - 4404, + 4403, "team_scrim_settings_insert_input!" ], "on_conflict": [ - 4409 + 4408 ] } ], "insert_team_suggestions": [ - 4435, + 4434, { "objects": [ - 4432, + 4431, "[team_suggestions_insert_input!]!" ], "on_conflict": [ - 4436 + 4435 ] } ], "insert_team_suggestions_one": [ - 4425, + 4424, { "object": [ - 4432, + 4431, "team_suggestions_insert_input!" ], "on_conflict": [ - 4436 + 4435 ] } ], "insert_teams": [ - 4471, + 4470, { "objects": [ - 4466, + 4465, "[teams_insert_input!]!" ], "on_conflict": [ - 4473 + 4472 ] } ], "insert_teams_one": [ - 4452, + 4451, { "object": [ - 4466, + 4465, "teams_insert_input!" ], "on_conflict": [ - 4473 + 4472 ] } ], "insert_tournament_awards": [ - 4518, + 4517, { "objects": [ - 4513, + 4512, "[tournament_awards_insert_input!]!" ], "on_conflict": [ - 4520 + 4519 ] } ], "insert_tournament_awards_one": [ - 4501, + 4500, { "object": [ - 4513, + 4512, "tournament_awards_insert_input!" ], "on_conflict": [ - 4520 + 4519 ] } ], "insert_tournament_brackets": [ - 4562, + 4561, { "objects": [ - 4557, + 4556, "[tournament_brackets_insert_input!]!" ], "on_conflict": [ - 4564 + 4563 ] } ], "insert_tournament_brackets_one": [ - 4543, + 4542, { "object": [ - 4557, + 4556, "tournament_brackets_insert_input!" ], "on_conflict": [ - 4564 + 4563 ] } ], "insert_tournament_categories": [ - 4603, + 4602, { "objects": [ - 4598, + 4597, "[tournament_categories_insert_input!]!" ], "on_conflict": [ - 4604 + 4603 ] } ], "insert_tournament_categories_one": [ - 4589, + 4588, { "object": [ - 4598, + 4597, "tournament_categories_insert_input!" ], "on_conflict": [ - 4604 + 4603 ] } ], "insert_tournament_organizer_teams": [ - 4627, + 4626, { "objects": [ - 4622, + 4621, "[tournament_organizer_teams_insert_input!]!" ], "on_conflict": [ - 4628 + 4627 ] } ], "insert_tournament_organizer_teams_one": [ - 4613, + 4612, { "object": [ - 4622, + 4621, "tournament_organizer_teams_insert_input!" ], "on_conflict": [ - 4628 + 4627 ] } ], "insert_tournament_organizers": [ - 4654, + 4653, { "objects": [ - 4649, + 4648, "[tournament_organizers_insert_input!]!" ], "on_conflict": [ - 4655 + 4654 ] } ], "insert_tournament_organizers_one": [ - 4637, + 4636, { "object": [ - 4649, + 4648, "tournament_organizers_insert_input!" ], "on_conflict": [ - 4655 + 4654 ] } ], "insert_tournament_prizes": [ - 4695, + 4694, { "objects": [ - 4690, + 4689, "[tournament_prizes_insert_input!]!" ], "on_conflict": [ - 4696 + 4695 ] } ], "insert_tournament_prizes_one": [ - 4678, + 4677, { "object": [ - 4690, + 4689, "tournament_prizes_insert_input!" ], "on_conflict": [ - 4696 + 4695 ] } ], "insert_tournament_stage_windows": [ - 4736, + 4735, { "objects": [ - 4731, + 4730, "[tournament_stage_windows_insert_input!]!" ], "on_conflict": [ - 4737 + 4736 ] } ], "insert_tournament_stage_windows_one": [ - 4719, + 4718, { "object": [ - 4731, + 4730, "tournament_stage_windows_insert_input!" ], "on_conflict": [ - 4737 + 4736 ] } ], "insert_tournament_stages": [ - 4783, + 4782, { "objects": [ - 4778, + 4777, "[tournament_stages_insert_input!]!" ], "on_conflict": [ - 4785 + 4784 ] } ], "insert_tournament_stages_one": [ - 4760, + 4759, { "object": [ - 4778, + 4777, "tournament_stages_insert_input!" ], "on_conflict": [ - 4785 + 4784 ] } ], "insert_tournament_team_invites": [ - 4828, + 4827, { "objects": [ - 4823, + 4822, "[tournament_team_invites_insert_input!]!" ], "on_conflict": [ - 4829 + 4828 ] } ], "insert_tournament_team_invites_one": [ - 4811, + 4810, { "object": [ - 4823, + 4822, "tournament_team_invites_insert_input!" ], "on_conflict": [ - 4829 + 4828 ] } ], "insert_tournament_team_roster": [ - 4869, + 4868, { "objects": [ - 4864, + 4863, "[tournament_team_roster_insert_input!]!" ], "on_conflict": [ - 4870 + 4869 ] } ], "insert_tournament_team_roster_one": [ - 4852, + 4851, { "object": [ - 4864, + 4863, "tournament_team_roster_insert_input!" ], "on_conflict": [ - 4870 + 4869 ] } ], "insert_tournament_teams": [ - 4910, + 4909, { "objects": [ - 4905, + 4904, "[tournament_teams_insert_input!]!" ], "on_conflict": [ - 4912 + 4911 ] } ], "insert_tournament_teams_one": [ - 4893, + 4892, { "object": [ - 4905, + 4904, "tournament_teams_insert_input!" ], "on_conflict": [ - 4912 + 4911 ] } ], "insert_tournaments": [ - 4964, + 4963, { "objects": [ - 4959, + 4958, "[tournaments_insert_input!]!" ], "on_conflict": [ - 4966 + 4965 ] } ], "insert_tournaments_one": [ - 4935, + 4934, { "object": [ - 4959, + 4958, "tournaments_insert_input!" ], "on_conflict": [ - 4966 + 4965 ] } ], "insert_v_match_captains": [ - 5164, + 5163, { "objects": [ - 5161, + 5160, "[v_match_captains_insert_input!]!" ] } ], "insert_v_match_captains_one": [ - 5155, + 5154, { "object": [ - 5161, + 5160, "v_match_captains_insert_input!" ] } ], "insert_v_match_map_backup_rounds": [ - 5275, + 5274, { "objects": [ - 5272, + 5271, "[v_match_map_backup_rounds_insert_input!]!" ] } ], "insert_v_match_map_backup_rounds_one": [ - 5266, + 5265, { "object": [ - 5272, + 5271, "v_match_map_backup_rounds_insert_input!" ] } ], "insert_v_player_match_map_hltv": [ - 5497, + 5496, { "objects": [ - 5492, + 5491, "[v_player_match_map_hltv_insert_input!]!" ] } ], "insert_v_player_match_map_hltv_one": [ - 5481, + 5480, { "object": [ - 5492, + 5491, "v_player_match_map_hltv_insert_input!" ] } ], "insert_v_pool_maps": [ - 5656, + 5655, { "objects": [ - 5651, + 5650, "[v_pool_maps_insert_input!]!" ] } ], "insert_v_pool_maps_one": [ - 5641, + 5640, { "object": [ - 5651, + 5650, "v_pool_maps_insert_input!" ] } ], "insert_v_team_stage_results": [ - 5750, + 5749, { "objects": [ - 5745, + 5744, "[v_team_stage_results_insert_input!]!" ], "on_conflict": [ - 5752 + 5751 ] } ], "insert_v_team_stage_results_one": [ - 5723, + 5722, { "object": [ - 5745, + 5744, "v_team_stage_results_insert_input!" ], "on_conflict": [ - 5752 + 5751 ] } ], @@ -153563,7 +153555,7 @@ export default { 83, { "draftGameId": [ - 4999, + 4998, "uuid!" ], "inviteCode": [ @@ -153575,7 +153567,7 @@ export default { 83, { "draftGameId": [ - 4999, + 4998, "uuid!" ], "inviteCode": [ @@ -153600,14 +153592,14 @@ export default { } ], "league_award_forfeit": [ - 2767, + 2766, { "args": [ - 1849, + 1848, "league_award_forfeit_args!" ], "distinct_on": [ - 2789, + 2788, "[matches_select_column!]" ], "limit": [ @@ -153617,11 +153609,11 @@ export default { 40 ], "order_by": [ - 2787, + 2786, "[matches_order_by!]" ], "where": [ - 2776 + 2775 ] } ], @@ -153680,7 +153672,7 @@ export default { 83, { "match_map_id": [ - 4999, + 4998, "uuid!" ] } @@ -153692,7 +153684,7 @@ export default { 24, { "draftGameId": [ - 4999, + 4998, "uuid!" ], "inviteCode": [ @@ -153707,7 +153699,7 @@ export default { 40 ], "match_map_id": [ - 4999, + 4998, "uuid!" ], "preset": [ @@ -153733,7 +153725,7 @@ export default { 83, { "match_id": [ - 4999, + 4998, "uuid!" ] } @@ -153742,20 +153734,20 @@ export default { 83, { "match_id": [ - 4999, + 4998, "uuid!" ] } ], "recalculate_tournament_awards": [ - 189, + 188, { "args": [ - 3965, + 3964, "recalculate_tournament_awards_args!" ], "distinct_on": [ - 210, + 209, "[award_recipients_select_column!]" ], "limit": [ @@ -153765,11 +153757,11 @@ export default { 40 ], "order_by": [ - 208, + 207, "[award_recipients_order_by!]" ], "where": [ - 198 + 197 ] } ], @@ -153783,7 +153775,7 @@ export default { 83, { "match_id": [ - 4999, + 4998, "uuid!" ] } @@ -153807,7 +153799,7 @@ export default { 83, { "match_id": [ - 4999, + 4998, "uuid!" ] } @@ -153834,14 +153826,14 @@ export default { } ], "remove_league_team_from_season": [ - 2141, + 2140, { "args": [ - 3966, + 3965, "remove_league_team_from_season_args!" ], "distinct_on": [ - 2163, + 2162, "[league_team_seasons_select_column!]" ], "limit": [ @@ -153851,11 +153843,11 @@ export default { 40 ], "order_by": [ - 2161, + 2160, "[league_team_seasons_order_by!]" ], "where": [ - 2150 + 2149 ] } ], @@ -153880,14 +153872,14 @@ export default { } ], "reorder_league_divisions": [ - 1850, + 1849, { "args": [ - 3967, + 3966, "reorder_league_divisions_args!" ], "distinct_on": [ - 1865, + 1864, "[league_divisions_select_column!]" ], "limit": [ @@ -153897,11 +153889,11 @@ export default { 40 ], "order_by": [ - 1863, + 1862, "[league_divisions_order_by!]" ], "where": [ - 1854 + 1853 ] } ], @@ -153915,7 +153907,7 @@ export default { 83, { "match_map_id": [ - 4999, + 4998, "uuid!" ] } @@ -153924,7 +153916,7 @@ export default { 83, { "match_id": [ - 4999, + 4998, "uuid!" ] } @@ -153937,7 +153929,7 @@ export default { "String!" ], "steam_id": [ - 258, + 257, "bigint!" ] } @@ -153946,7 +153938,7 @@ export default { 83, { "job_id": [ - 4999, + 4998, "uuid!" ] } @@ -153959,7 +153951,7 @@ export default { "Boolean!" ], "draftGameId": [ - 4999, + 4998, "uuid!" ] } @@ -153972,7 +153964,7 @@ export default { "Boolean!" ], "request_id": [ - 4999, + 4998, "uuid!" ] } @@ -153987,14 +153979,14 @@ export default { } ], "restart_league_season": [ - 2026, + 2025, { "args": [ - 3968, + 3967, "restart_league_season_args!" ], "distinct_on": [ - 2046, + 2045, "[league_seasons_select_column!]" ], "limit": [ @@ -154004,11 +153996,11 @@ export default { 40 ], "order_by": [ - 2043, + 2042, "[league_seasons_order_by!]" ], "where": [ - 2031 + 2030 ] } ], @@ -154016,7 +154008,7 @@ export default { 83, { "match_map_id": [ - 4999, + 4998, "uuid!" ] } @@ -154025,7 +154017,7 @@ export default { 83, { "match_map_id": [ - 4999, + 4998, "uuid!" ], "only_failed": [ @@ -154046,7 +154038,7 @@ export default { 83, { "id": [ - 4999, + 4998, "uuid!" ] } @@ -154083,20 +154075,20 @@ export default { 80 ], "event_id": [ - 4999 + 4998 ], "id": [ - 4999 + 4998 ], "league_season_id": [ - 4999 + 4998 ], "name": [ 80, "String!" ], "season_id": [ - 4999 + 4998 ], "silhouette": [ 40 @@ -154106,7 +154098,7 @@ export default { "String!" ], "tournament_id": [ - 4999 + 4998 ] } ], @@ -154121,7 +154113,7 @@ export default { 80 ], "id": [ - 4999 + 4998 ], "teaser": [ 80 @@ -154142,11 +154134,11 @@ export default { 83, { "match_id": [ - 4999, + 4998, "uuid!" ], "time": [ - 4499 + 4498 ] } ], @@ -154157,18 +154149,18 @@ export default { 40 ], "from_team_id": [ - 4999, + 4998, "uuid!" ], "proposed_scheduled_at": [ - 4499, + 4498, "timestamptz!" ], "region": [ 80 ], "to_team_id": [ - 4999, + 4998, "uuid!" ] } @@ -154190,7 +154182,7 @@ export default { 83, { "match_id": [ - 4999, + 4998, "uuid!" ], "mode": [ @@ -154203,15 +154195,15 @@ export default { 83, { "match_id": [ - 4999, + 4998, "uuid!" ], "match_map_id": [ - 4999, + 4998, "uuid!" ], "winning_lineup_id": [ - 4999, + 4998, "uuid!" ] } @@ -154220,11 +154212,11 @@ export default { 83, { "match_id": [ - 4999, + 4998, "uuid!" ], "winning_lineup_id": [ - 4999, + 4998, "uuid!" ] } @@ -154233,7 +154225,7 @@ export default { 50, { "id": [ - 4999, + 4998, "uuid!" ], "status": [ @@ -154243,10 +154235,10 @@ export default { } ], "setTournamentAward": [ - 98, + 97, { "award_id": [ - 4999 + 4998 ], "custom_name": [ 80 @@ -154259,7 +154251,7 @@ export default { 40 ], "tournament_id": [ - 4999, + 4998, "uuid!" ] } @@ -154271,7 +154263,7 @@ export default { 83, { "match_id": [ - 4999, + 4998, "uuid!" ] } @@ -154284,7 +154276,7 @@ export default { "Boolean!" ], "match_id": [ - 4999, + 4998, "uuid!" ] } @@ -154297,7 +154289,7 @@ export default { "String!" ], "match_id": [ - 4999, + 4998, "uuid!" ] } @@ -154306,7 +154298,7 @@ export default { 83, { "match_id": [ - 4999, + 4998, "uuid!" ], "visible": [ @@ -154319,7 +154311,7 @@ export default { 83, { "match_id": [ - 4999, + 4998, "uuid!" ] } @@ -154328,7 +154320,7 @@ export default { 83, { "match_id": [ - 4999, + 4998, "uuid!" ] } @@ -154341,7 +154333,7 @@ export default { "Int!" ], "match_id": [ - 4999, + 4998, "uuid!" ] } @@ -154350,7 +154342,7 @@ export default { 83, { "match_id": [ - 4999, + 4998, "uuid!" ], "show": [ @@ -154363,7 +154355,7 @@ export default { 83, { "match_id": [ - 4999, + 4998, "uuid!" ], "slot": [ @@ -154380,7 +154372,7 @@ export default { "Boolean!" ], "match_id": [ - 4999, + 4998, "uuid!" ] } @@ -154389,7 +154381,7 @@ export default { 83, { "match_id": [ - 4999, + 4998, "uuid!" ], "mode": [ @@ -154402,11 +154394,11 @@ export default { 83, { "match_id": [ - 4999, + 4998, "uuid!" ], "server_id": [ - 4999 + 4998 ] } ], @@ -154414,7 +154406,7 @@ export default { 83, { "game_server_node_id": [ - 4999, + 4998, "uuid!" ] } @@ -154423,7 +154415,7 @@ export default { 83, { "match_id": [ - 4999, + 4998, "uuid!" ] } @@ -154432,7 +154424,7 @@ export default { 83, { "match_map_id": [ - 4999, + 4998, "uuid!" ] } @@ -154454,7 +154446,7 @@ export default { 83, { "match_id": [ - 4999, + 4998, "uuid!" ] } @@ -154472,7 +154464,7 @@ export default { 83, { "from_match_id": [ - 4999, + 4998, "uuid!" ], "mode": [ @@ -154480,7 +154472,7 @@ export default { "String!" ], "to_match_id": [ - 4999, + 4998, "uuid!" ] } @@ -154492,7 +154484,7 @@ export default { 26 ], "testUpload": [ - 95 + 94 ], "unlinkDiscord": [ 83 @@ -154520,7 +154512,7 @@ export default { 83, { "clip_id": [ - 4999, + 4998, "uuid!" ], "target_steam_id": [ @@ -154541,7 +154533,7 @@ export default { 80 ], "game_server_node_id": [ - 4999 + 4998 ] } ], @@ -154549,11 +154541,11 @@ export default { 83, { "draftGameId": [ - 4999, + 4998, "uuid!" ], "settings": [ - 1823, + 1822, "jsonb!" ] } @@ -154562,5974 +154554,5974 @@ export default { 83 ], "update__map_pool": [ - 109, + 108, { "_set": [ - 114 + 113 ], "where": [ - 104, + 103, "_map_pool_bool_exp!" ] } ], "update__map_pool_by_pk": [ - 101, + 100, { "_set": [ - 114 + 113 ], "pk_columns": [ - 112, + 111, "_map_pool_pk_columns_input!" ] } ], "update__map_pool_many": [ - 109, + 108, { "updates": [ - 118, + 117, "[_map_pool_updates!]!" ] } ], "update_abandoned_matches": [ - 137, + 136, { "_inc": [ - 131 + 130 ], "_set": [ - 142 + 141 ], "where": [ - 129, + 128, "abandoned_matches_bool_exp!" ] } ], "update_abandoned_matches_by_pk": [ - 120, + 119, { "_inc": [ - 131 + 130 ], "_set": [ - 142 + 141 ], "pk_columns": [ - 140, + 139, "abandoned_matches_pk_columns_input!" ] } ], "update_abandoned_matches_many": [ - 137, + 136, { "updates": [ - 154, + 153, "[abandoned_matches_updates!]!" ] } ], "update_api_keys": [ - 171, + 170, { "_inc": [ - 167 + 166 ], "_set": [ - 176 + 175 ], "where": [ - 165, + 164, "api_keys_bool_exp!" ] } ], "update_api_keys_by_pk": [ - 161, + 160, { "_inc": [ - 167 + 166 ], "_set": [ - 176 + 175 ], "pk_columns": [ - 174, + 173, "api_keys_pk_columns_input!" ] } ], "update_api_keys_many": [ - 171, + 170, { "updates": [ - 184, + 183, "[api_keys_updates!]!" ] } ], "update_award_recipients": [ - 206, + 205, { "_inc": [ - 200 + 199 ], "_set": [ - 211 + 210 ], "where": [ - 198, + 197, "award_recipients_bool_exp!" ] } ], "update_award_recipients_by_pk": [ - 189, + 188, { "_inc": [ - 200 + 199 ], "_set": [ - 211 + 210 ], "pk_columns": [ - 209, + 208, "award_recipients_pk_columns_input!" ] } ], "update_award_recipients_many": [ - 206, + 205, { "updates": [ - 223, + 222, "[award_recipients_updates!]!" ] } ], "update_awards": [ - 240, + 239, { "_inc": [ - 236 + 235 ], "_set": [ - 246 + 245 ], "where": [ - 234, + 233, "awards_bool_exp!" ] } ], "update_awards_by_pk": [ - 230, + 229, { "_inc": [ - 236 + 235 ], "_set": [ - 246 + 245 ], "pk_columns": [ - 244, + 243, "awards_pk_columns_input!" ] } ], "update_awards_many": [ - 240, + 239, { "updates": [ - 254, + 253, "[awards_updates!]!" ] } ], "update_clip_render_jobs": [ - 286, + 285, { "_append": [ - 271 + 270 ], "_delete_at_path": [ - 277 + 276 ], "_delete_elem": [ - 278 + 277 ], "_delete_key": [ - 279 + 278 ], "_inc": [ - 280 + 279 ], "_prepend": [ - 290 + 289 ], "_set": [ - 294 + 293 ], "where": [ - 275, + 274, "clip_render_jobs_bool_exp!" ] } ], "update_clip_render_jobs_by_pk": [ - 263, + 262, { "_append": [ - 271 + 270 ], "_delete_at_path": [ - 277 + 276 ], "_delete_elem": [ - 278 + 277 ], "_delete_key": [ - 279 + 278 ], "_inc": [ - 280 + 279 ], "_prepend": [ - 290 + 289 ], "_set": [ - 294 + 293 ], "pk_columns": [ - 289, + 288, "clip_render_jobs_pk_columns_input!" ] } ], "update_clip_render_jobs_many": [ - 286, + 285, { "updates": [ - 306, + 305, "[clip_render_jobs_updates!]!" ] } ], "update_custom_pages": [ - 329, + 328, { "_append": [ - 318 + 317 ], "_delete_at_path": [ - 322 + 321 ], "_delete_elem": [ - 323 + 322 ], "_delete_key": [ - 324 + 323 ], "_inc": [ - 325 + 324 ], "_prepend": [ - 333 + 332 ], "_set": [ - 335 + 334 ], "where": [ - 320, + 319, "custom_pages_bool_exp!" ] } ], "update_custom_pages_by_pk": [ - 315, + 314, { "_append": [ - 318 + 317 ], "_delete_at_path": [ - 322 + 321 ], "_delete_elem": [ - 323 + 322 ], "_delete_key": [ - 324 + 323 ], "_inc": [ - 325 + 324 ], "_prepend": [ - 333 + 332 ], "_set": [ - 335 + 334 ], "pk_columns": [ - 332, + 331, "custom_pages_pk_columns_input!" ] } ], "update_custom_pages_many": [ - 329, + 328, { "updates": [ - 343, + 342, "[custom_pages_updates!]!" ] } ], "update_db_backups": [ - 357, + 356, { "_inc": [ - 353 + 352 ], "_set": [ - 362 + 361 ], "where": [ - 351, + 350, "db_backups_bool_exp!" ] } ], "update_db_backups_by_pk": [ - 347, + 346, { "_inc": [ - 353 + 352 ], "_set": [ - 362 + 361 ], "pk_columns": [ - 360, + 359, "db_backups_pk_columns_input!" ] } ], "update_db_backups_many": [ - 357, + 356, { "updates": [ - 370, + 369, "[db_backups_updates!]!" ] } ], "update_draft_game_picks": [ - 393, + 392, { "_inc": [ - 387 + 386 ], "_set": [ - 400 + 399 ], "where": [ - 385, + 384, "draft_game_picks_bool_exp!" ] } ], "update_draft_game_picks_by_pk": [ - 374, + 373, { "_inc": [ - 387 + 386 ], "_set": [ - 400 + 399 ], "pk_columns": [ - 396, + 395, "draft_game_picks_pk_columns_input!" ] } ], "update_draft_game_picks_many": [ - 393, + 392, { "updates": [ - 412, + 411, "[draft_game_picks_updates!]!" ] } ], "update_draft_game_players": [ - 438, + 437, { "_inc": [ - 432 + 431 ], "_set": [ - 445 + 444 ], "where": [ - 430, + 429, "draft_game_players_bool_exp!" ] } ], "update_draft_game_players_by_pk": [ - 419, + 418, { "_inc": [ - 432 + 431 ], "_set": [ - 445 + 444 ], "pk_columns": [ - 441, + 440, "draft_game_players_pk_columns_input!" ] } ], "update_draft_game_players_many": [ - 438, + 437, { "updates": [ - 457, + 456, "[draft_game_players_updates!]!" ] } ], "update_draft_games": [ - 483, + 482, { "_inc": [ - 477 + 476 ], "_set": [ - 491 + 490 ], "where": [ - 475, + 474, "draft_games_bool_exp!" ] } ], "update_draft_games_by_pk": [ - 464, + 463, { "_inc": [ - 477 + 476 ], "_set": [ - 491 + 490 ], "pk_columns": [ - 487, + 486, "draft_games_pk_columns_input!" ] } ], "update_draft_games_many": [ - 483, + 482, { "updates": [ - 503, + 502, "[draft_games_updates!]!" ] } ], "update_e_award_sources": [ - 520, + 519, { "_set": [ - 525 + 524 ], "where": [ - 513, + 512, "e_award_sources_bool_exp!" ] } ], "update_e_award_sources_by_pk": [ - 510, + 509, { "_set": [ - 525 + 524 ], "pk_columns": [ - 523, + 522, "e_award_sources_pk_columns_input!" ] } ], "update_e_award_sources_many": [ - 520, + 519, { "updates": [ - 529, + 528, "[e_award_sources_updates!]!" ] } ], "update_e_award_tiers": [ - 540, + 539, { "_set": [ - 545 + 544 ], "where": [ - 533, + 532, "e_award_tiers_bool_exp!" ] } ], "update_e_award_tiers_by_pk": [ - 530, + 529, { "_set": [ - 545 + 544 ], "pk_columns": [ - 543, + 542, "e_award_tiers_pk_columns_input!" ] } ], "update_e_award_tiers_many": [ - 540, + 539, { "updates": [ - 549, + 548, "[e_award_tiers_updates!]!" ] } ], "update_e_check_in_settings": [ - 560, + 559, { "_set": [ - 565 + 564 ], "where": [ - 553, + 552, "e_check_in_settings_bool_exp!" ] } ], "update_e_check_in_settings_by_pk": [ - 550, + 549, { "_set": [ - 565 + 564 ], "pk_columns": [ - 563, + 562, "e_check_in_settings_pk_columns_input!" ] } ], "update_e_check_in_settings_many": [ - 560, + 559, { "updates": [ - 569, + 568, "[e_check_in_settings_updates!]!" ] } ], "update_e_draft_game_captain_selection": [ - 580, + 579, { "_set": [ - 586 + 585 ], "where": [ - 573, + 572, "e_draft_game_captain_selection_bool_exp!" ] } ], "update_e_draft_game_captain_selection_by_pk": [ - 570, + 569, { "_set": [ - 586 + 585 ], "pk_columns": [ - 584, + 583, "e_draft_game_captain_selection_pk_columns_input!" ] } ], "update_e_draft_game_captain_selection_many": [ - 580, + 579, { "updates": [ - 590, + 589, "[e_draft_game_captain_selection_updates!]!" ] } ], "update_e_draft_game_draft_order": [ - 601, + 600, { "_set": [ - 607 + 606 ], "where": [ - 594, + 593, "e_draft_game_draft_order_bool_exp!" ] } ], "update_e_draft_game_draft_order_by_pk": [ - 591, + 590, { "_set": [ - 607 + 606 ], "pk_columns": [ - 605, + 604, "e_draft_game_draft_order_pk_columns_input!" ] } ], "update_e_draft_game_draft_order_many": [ - 601, + 600, { "updates": [ - 611, + 610, "[e_draft_game_draft_order_updates!]!" ] } ], "update_e_draft_game_mode": [ - 622, + 621, { "_set": [ - 628 + 627 ], "where": [ - 615, + 614, "e_draft_game_mode_bool_exp!" ] } ], "update_e_draft_game_mode_by_pk": [ - 612, + 611, { "_set": [ - 628 + 627 ], "pk_columns": [ - 626, + 625, "e_draft_game_mode_pk_columns_input!" ] } ], "update_e_draft_game_mode_many": [ - 622, + 621, { "updates": [ - 632, + 631, "[e_draft_game_mode_updates!]!" ] } ], "update_e_draft_game_player_status": [ - 643, + 642, { "_set": [ - 649 + 648 ], "where": [ - 636, + 635, "e_draft_game_player_status_bool_exp!" ] } ], "update_e_draft_game_player_status_by_pk": [ - 633, + 632, { "_set": [ - 649 + 648 ], "pk_columns": [ - 647, + 646, "e_draft_game_player_status_pk_columns_input!" ] } ], "update_e_draft_game_player_status_many": [ - 643, + 642, { "updates": [ - 653, + 652, "[e_draft_game_player_status_updates!]!" ] } ], "update_e_draft_game_status": [ - 664, + 663, { "_set": [ - 670 + 669 ], "where": [ - 657, + 656, "e_draft_game_status_bool_exp!" ] } ], "update_e_draft_game_status_by_pk": [ - 654, + 653, { "_set": [ - 670 + 669 ], "pk_columns": [ - 668, + 667, "e_draft_game_status_pk_columns_input!" ] } ], "update_e_draft_game_status_many": [ - 664, + 663, { "updates": [ - 674, + 673, "[e_draft_game_status_updates!]!" ] } ], "update_e_event_media_access": [ - 685, + 684, { "_set": [ - 690 + 689 ], "where": [ - 678, + 677, "e_event_media_access_bool_exp!" ] } ], "update_e_event_media_access_by_pk": [ - 675, + 674, { "_set": [ - 690 + 689 ], "pk_columns": [ - 688, + 687, "e_event_media_access_pk_columns_input!" ] } ], "update_e_event_media_access_many": [ - 685, + 684, { "updates": [ - 694, + 693, "[e_event_media_access_updates!]!" ] } ], "update_e_event_visibility": [ - 705, + 704, { "_set": [ - 710 + 709 ], "where": [ - 698, + 697, "e_event_visibility_bool_exp!" ] } ], "update_e_event_visibility_by_pk": [ - 695, + 694, { "_set": [ - 710 + 709 ], "pk_columns": [ - 708, + 707, "e_event_visibility_pk_columns_input!" ] } ], "update_e_event_visibility_many": [ - 705, + 704, { "updates": [ - 714, + 713, "[e_event_visibility_updates!]!" ] } ], "update_e_friend_status": [ - 725, + 724, { "_set": [ - 731 + 730 ], "where": [ - 718, + 717, "e_friend_status_bool_exp!" ] } ], "update_e_friend_status_by_pk": [ - 715, + 714, { "_set": [ - 731 + 730 ], "pk_columns": [ - 729, + 728, "e_friend_status_pk_columns_input!" ] } ], "update_e_friend_status_many": [ - 725, + 724, { "updates": [ - 735, + 734, "[e_friend_status_updates!]!" ] } ], "update_e_game_cfg_types": [ - 746, + 745, { "_set": [ - 751 + 750 ], "where": [ - 739, + 738, "e_game_cfg_types_bool_exp!" ] } ], "update_e_game_cfg_types_by_pk": [ - 736, + 735, { "_set": [ - 751 + 750 ], "pk_columns": [ - 749, + 748, "e_game_cfg_types_pk_columns_input!" ] } ], "update_e_game_cfg_types_many": [ - 746, + 745, { "updates": [ - 755, + 754, "[e_game_cfg_types_updates!]!" ] } ], "update_e_game_server_node_statuses": [ - 766, + 765, { "_set": [ - 772 + 771 ], "where": [ - 759, + 758, "e_game_server_node_statuses_bool_exp!" ] } ], "update_e_game_server_node_statuses_by_pk": [ - 756, + 755, { "_set": [ - 772 + 771 ], "pk_columns": [ - 770, + 769, "e_game_server_node_statuses_pk_columns_input!" ] } ], "update_e_game_server_node_statuses_many": [ - 766, + 765, { "updates": [ - 776, + 775, "[e_game_server_node_statuses_updates!]!" ] } ], "update_e_league_movement_types": [ - 787, + 786, { "_set": [ - 793 + 792 ], "where": [ - 780, + 779, "e_league_movement_types_bool_exp!" ] } ], "update_e_league_movement_types_by_pk": [ - 777, + 776, { "_set": [ - 793 + 792 ], "pk_columns": [ - 791, + 790, "e_league_movement_types_pk_columns_input!" ] } ], "update_e_league_movement_types_many": [ - 787, + 786, { "updates": [ - 797, + 796, "[e_league_movement_types_updates!]!" ] } ], "update_e_league_proposal_statuses": [ - 808, + 807, { "_set": [ - 814 + 813 ], "where": [ - 801, + 800, "e_league_proposal_statuses_bool_exp!" ] } ], "update_e_league_proposal_statuses_by_pk": [ - 798, + 797, { "_set": [ - 814 + 813 ], "pk_columns": [ - 812, + 811, "e_league_proposal_statuses_pk_columns_input!" ] } ], "update_e_league_proposal_statuses_many": [ - 808, + 807, { "updates": [ - 818, + 817, "[e_league_proposal_statuses_updates!]!" ] } ], "update_e_league_registration_statuses": [ - 829, + 828, { "_set": [ - 835 + 834 ], "where": [ - 822, + 821, "e_league_registration_statuses_bool_exp!" ] } ], "update_e_league_registration_statuses_by_pk": [ - 819, + 818, { "_set": [ - 835 + 834 ], "pk_columns": [ - 833, + 832, "e_league_registration_statuses_pk_columns_input!" ] } ], "update_e_league_registration_statuses_many": [ - 829, + 828, { "updates": [ - 839, + 838, "[e_league_registration_statuses_updates!]!" ] } ], "update_e_league_season_statuses": [ - 850, + 849, { "_set": [ - 856 + 855 ], "where": [ - 843, + 842, "e_league_season_statuses_bool_exp!" ] } ], "update_e_league_season_statuses_by_pk": [ - 840, + 839, { "_set": [ - 856 + 855 ], "pk_columns": [ - 854, + 853, "e_league_season_statuses_pk_columns_input!" ] } ], "update_e_league_season_statuses_many": [ - 850, + 849, { "updates": [ - 860, + 859, "[e_league_season_statuses_updates!]!" ] } ], "update_e_lobby_access": [ - 871, + 870, { "_set": [ - 877 + 876 ], "where": [ - 864, + 863, "e_lobby_access_bool_exp!" ] } ], "update_e_lobby_access_by_pk": [ - 861, + 860, { "_set": [ - 877 + 876 ], "pk_columns": [ - 875, + 874, "e_lobby_access_pk_columns_input!" ] } ], "update_e_lobby_access_many": [ - 871, + 870, { "updates": [ - 881, + 880, "[e_lobby_access_updates!]!" ] } ], "update_e_lobby_player_status": [ - 892, + 891, { "_set": [ - 897 + 896 ], "where": [ - 885, + 884, "e_lobby_player_status_bool_exp!" ] } ], "update_e_lobby_player_status_by_pk": [ - 882, + 881, { "_set": [ - 897 + 896 ], "pk_columns": [ - 895, + 894, "e_lobby_player_status_pk_columns_input!" ] } ], "update_e_lobby_player_status_many": [ - 892, + 891, { "updates": [ - 901, + 900, "[e_lobby_player_status_updates!]!" ] } ], "update_e_map_pool_types": [ - 912, + 911, { "_set": [ - 918 + 917 ], "where": [ - 905, + 904, "e_map_pool_types_bool_exp!" ] } ], "update_e_map_pool_types_by_pk": [ - 902, + 901, { "_set": [ - 918 + 917 ], "pk_columns": [ - 916, + 915, "e_map_pool_types_pk_columns_input!" ] } ], "update_e_map_pool_types_many": [ - 912, + 911, { "updates": [ - 922, + 921, "[e_map_pool_types_updates!]!" ] } ], "update_e_match_clip_visibility": [ - 933, + 932, { "_set": [ - 938 + 937 ], "where": [ - 926, + 925, "e_match_clip_visibility_bool_exp!" ] } ], "update_e_match_clip_visibility_by_pk": [ - 923, + 922, { "_set": [ - 938 + 937 ], "pk_columns": [ - 936, + 935, "e_match_clip_visibility_pk_columns_input!" ] } ], "update_e_match_clip_visibility_many": [ - 933, + 932, { "updates": [ - 942, + 941, "[e_match_clip_visibility_updates!]!" ] } ], "update_e_match_map_status": [ - 953, + 952, { "_set": [ - 959 + 958 ], "where": [ - 946, + 945, "e_match_map_status_bool_exp!" ] } ], "update_e_match_map_status_by_pk": [ - 943, + 942, { "_set": [ - 959 + 958 ], "pk_columns": [ - 957, + 956, "e_match_map_status_pk_columns_input!" ] } ], "update_e_match_map_status_many": [ - 953, + 952, { "updates": [ - 963, + 962, "[e_match_map_status_updates!]!" ] } ], "update_e_match_mode": [ - 974, + 973, { "_set": [ - 979 + 978 ], "where": [ - 967, + 966, "e_match_mode_bool_exp!" ] } ], "update_e_match_mode_by_pk": [ - 964, + 963, { "_set": [ - 979 + 978 ], "pk_columns": [ - 977, + 976, "e_match_mode_pk_columns_input!" ] } ], "update_e_match_mode_many": [ - 974, + 973, { "updates": [ - 983, + 982, "[e_match_mode_updates!]!" ] } ], "update_e_match_status": [ - 994, + 993, { "_set": [ - 1000 + 999 ], "where": [ - 987, + 986, "e_match_status_bool_exp!" ] } ], "update_e_match_status_by_pk": [ - 984, + 983, { "_set": [ - 1000 + 999 ], "pk_columns": [ - 998, + 997, "e_match_status_pk_columns_input!" ] } ], "update_e_match_status_many": [ - 994, + 993, { "updates": [ - 1004, + 1003, "[e_match_status_updates!]!" ] } ], "update_e_match_types": [ - 1015, + 1014, { "_set": [ - 1021 + 1020 ], "where": [ - 1008, + 1007, "e_match_types_bool_exp!" ] } ], "update_e_match_types_by_pk": [ - 1005, + 1004, { "_set": [ - 1021 + 1020 ], "pk_columns": [ - 1019, + 1018, "e_match_types_pk_columns_input!" ] } ], "update_e_match_types_many": [ - 1015, + 1014, { "updates": [ - 1025, + 1024, "[e_match_types_updates!]!" ] } ], "update_e_notification_types": [ - 1036, + 1035, { "_set": [ - 1041 + 1040 ], "where": [ - 1029, + 1028, "e_notification_types_bool_exp!" ] } ], "update_e_notification_types_by_pk": [ - 1026, + 1025, { "_set": [ - 1041 + 1040 ], "pk_columns": [ - 1039, + 1038, "e_notification_types_pk_columns_input!" ] } ], "update_e_notification_types_many": [ - 1036, + 1035, { "updates": [ - 1045, + 1044, "[e_notification_types_updates!]!" ] } ], "update_e_objective_types": [ - 1056, + 1055, { "_set": [ - 1061 + 1060 ], "where": [ - 1049, + 1048, "e_objective_types_bool_exp!" ] } ], "update_e_objective_types_by_pk": [ - 1046, + 1045, { "_set": [ - 1061 + 1060 ], "pk_columns": [ - 1059, + 1058, "e_objective_types_pk_columns_input!" ] } ], "update_e_objective_types_many": [ - 1056, + 1055, { "updates": [ - 1065, + 1064, "[e_objective_types_updates!]!" ] } ], "update_e_player_roles": [ - 1076, + 1075, { "_set": [ - 1081 + 1080 ], "where": [ - 1069, + 1068, "e_player_roles_bool_exp!" ] } ], "update_e_player_roles_by_pk": [ - 1066, + 1065, { "_set": [ - 1081 + 1080 ], "pk_columns": [ - 1079, + 1078, "e_player_roles_pk_columns_input!" ] } ], "update_e_player_roles_many": [ - 1076, + 1075, { "updates": [ - 1085, + 1084, "[e_player_roles_updates!]!" ] } ], "update_e_plugin_runtimes": [ - 1096, + 1095, { "_set": [ - 1101 + 1100 ], "where": [ - 1089, + 1088, "e_plugin_runtimes_bool_exp!" ] } ], "update_e_plugin_runtimes_by_pk": [ - 1086, + 1085, { "_set": [ - 1101 + 1100 ], "pk_columns": [ - 1099, + 1098, "e_plugin_runtimes_pk_columns_input!" ] } ], "update_e_plugin_runtimes_many": [ - 1096, + 1095, { "updates": [ - 1105, + 1104, "[e_plugin_runtimes_updates!]!" ] } ], "update_e_ready_settings": [ - 1116, + 1115, { "_set": [ - 1121 + 1120 ], "where": [ - 1109, + 1108, "e_ready_settings_bool_exp!" ] } ], "update_e_ready_settings_by_pk": [ - 1106, + 1105, { "_set": [ - 1121 + 1120 ], "pk_columns": [ - 1119, + 1118, "e_ready_settings_pk_columns_input!" ] } ], "update_e_ready_settings_many": [ - 1116, + 1115, { "updates": [ - 1125, + 1124, "[e_ready_settings_updates!]!" ] } ], "update_e_sanction_types": [ - 1136, + 1135, { "_set": [ - 1142 + 1141 ], "where": [ - 1129, + 1128, "e_sanction_types_bool_exp!" ] } ], "update_e_sanction_types_by_pk": [ - 1126, + 1125, { "_set": [ - 1142 + 1141 ], "pk_columns": [ - 1140, + 1139, "e_sanction_types_pk_columns_input!" ] } ], "update_e_sanction_types_many": [ - 1136, + 1135, { "updates": [ - 1146, + 1145, "[e_sanction_types_updates!]!" ] } ], "update_e_scrim_request_statuses": [ - 1157, + 1156, { "_set": [ - 1162 + 1161 ], "where": [ - 1150, + 1149, "e_scrim_request_statuses_bool_exp!" ] } ], "update_e_scrim_request_statuses_by_pk": [ - 1147, + 1146, { "_set": [ - 1162 + 1161 ], "pk_columns": [ - 1160, + 1159, "e_scrim_request_statuses_pk_columns_input!" ] } ], "update_e_scrim_request_statuses_many": [ - 1157, + 1156, { "updates": [ - 1166, + 1165, "[e_scrim_request_statuses_updates!]!" ] } ], "update_e_server_types": [ - 1177, + 1176, { "_set": [ - 1182 + 1181 ], "where": [ - 1170, + 1169, "e_server_types_bool_exp!" ] } ], "update_e_server_types_by_pk": [ - 1167, + 1166, { "_set": [ - 1182 + 1181 ], "pk_columns": [ - 1180, + 1179, "e_server_types_pk_columns_input!" ] } ], "update_e_server_types_many": [ - 1177, + 1176, { "updates": [ - 1186, + 1185, "[e_server_types_updates!]!" ] } ], "update_e_sides": [ - 1197, + 1196, { "_set": [ - 1202 + 1201 ], "where": [ - 1190, + 1189, "e_sides_bool_exp!" ] } ], "update_e_sides_by_pk": [ - 1187, + 1186, { "_set": [ - 1202 + 1201 ], "pk_columns": [ - 1200, + 1199, "e_sides_pk_columns_input!" ] } ], "update_e_sides_many": [ - 1197, + 1196, { "updates": [ - 1206, + 1205, "[e_sides_updates!]!" ] } ], "update_e_system_alert_types": [ - 1217, + 1216, { "_set": [ - 1222 + 1221 ], "where": [ - 1210, + 1209, "e_system_alert_types_bool_exp!" ] } ], "update_e_system_alert_types_by_pk": [ - 1207, + 1206, { "_set": [ - 1222 + 1221 ], "pk_columns": [ - 1220, + 1219, "e_system_alert_types_pk_columns_input!" ] } ], "update_e_system_alert_types_many": [ - 1217, + 1216, { "updates": [ - 1226, + 1225, "[e_system_alert_types_updates!]!" ] } ], "update_e_team_roles": [ - 1237, + 1236, { "_set": [ - 1243 + 1242 ], "where": [ - 1230, + 1229, "e_team_roles_bool_exp!" ] } ], "update_e_team_roles_by_pk": [ - 1227, + 1226, { "_set": [ - 1243 + 1242 ], "pk_columns": [ - 1241, + 1240, "e_team_roles_pk_columns_input!" ] } ], "update_e_team_roles_many": [ - 1237, + 1236, { "updates": [ - 1247, + 1246, "[e_team_roles_updates!]!" ] } ], "update_e_team_roster_statuses": [ - 1258, + 1257, { "_set": [ - 1263 + 1262 ], "where": [ - 1251, + 1250, "e_team_roster_statuses_bool_exp!" ] } ], "update_e_team_roster_statuses_by_pk": [ - 1248, + 1247, { "_set": [ - 1263 + 1262 ], "pk_columns": [ - 1261, + 1260, "e_team_roster_statuses_pk_columns_input!" ] } ], "update_e_team_roster_statuses_many": [ - 1258, + 1257, { "updates": [ - 1267, + 1266, "[e_team_roster_statuses_updates!]!" ] } ], "update_e_timeout_settings": [ - 1278, + 1277, { "_set": [ - 1283 + 1282 ], "where": [ - 1271, + 1270, "e_timeout_settings_bool_exp!" ] } ], "update_e_timeout_settings_by_pk": [ - 1268, + 1267, { "_set": [ - 1283 + 1282 ], "pk_columns": [ - 1281, + 1280, "e_timeout_settings_pk_columns_input!" ] } ], "update_e_timeout_settings_many": [ - 1278, + 1277, { "updates": [ - 1287, + 1286, "[e_timeout_settings_updates!]!" ] } ], "update_e_tournament_categories": [ - 1298, + 1297, { "_set": [ - 1304 + 1303 ], "where": [ - 1291, + 1290, "e_tournament_categories_bool_exp!" ] } ], "update_e_tournament_categories_by_pk": [ - 1288, + 1287, { "_set": [ - 1304 + 1303 ], "pk_columns": [ - 1302, + 1301, "e_tournament_categories_pk_columns_input!" ] } ], "update_e_tournament_categories_many": [ - 1298, + 1297, { "updates": [ - 1308, + 1307, "[e_tournament_categories_updates!]!" ] } ], "update_e_tournament_stage_types": [ - 1319, + 1318, { "_set": [ - 1325 + 1324 ], "where": [ - 1312, + 1311, "e_tournament_stage_types_bool_exp!" ] } ], "update_e_tournament_stage_types_by_pk": [ - 1309, + 1308, { "_set": [ - 1325 + 1324 ], "pk_columns": [ - 1323, + 1322, "e_tournament_stage_types_pk_columns_input!" ] } ], "update_e_tournament_stage_types_many": [ - 1319, + 1318, { "updates": [ - 1329, + 1328, "[e_tournament_stage_types_updates!]!" ] } ], "update_e_tournament_status": [ - 1340, + 1339, { "_set": [ - 1346 + 1345 ], "where": [ - 1333, + 1332, "e_tournament_status_bool_exp!" ] } ], "update_e_tournament_status_by_pk": [ - 1330, + 1329, { "_set": [ - 1346 + 1345 ], "pk_columns": [ - 1344, + 1343, "e_tournament_status_pk_columns_input!" ] } ], "update_e_tournament_status_many": [ - 1340, + 1339, { "updates": [ - 1350, + 1349, "[e_tournament_status_updates!]!" ] } ], "update_e_utility_types": [ - 1361, + 1360, { "_set": [ - 1366 + 1365 ], "where": [ - 1354, + 1353, "e_utility_types_bool_exp!" ] } ], "update_e_utility_types_by_pk": [ - 1351, + 1350, { "_set": [ - 1366 + 1365 ], "pk_columns": [ - 1364, + 1363, "e_utility_types_pk_columns_input!" ] } ], "update_e_utility_types_many": [ - 1361, + 1360, { "updates": [ - 1370, + 1369, "[e_utility_types_updates!]!" ] } ], "update_e_veto_pick_types": [ - 1381, + 1380, { "_set": [ - 1386 + 1385 ], "where": [ - 1374, + 1373, "e_veto_pick_types_bool_exp!" ] } ], "update_e_veto_pick_types_by_pk": [ - 1371, + 1370, { "_set": [ - 1386 + 1385 ], "pk_columns": [ - 1384, + 1383, "e_veto_pick_types_pk_columns_input!" ] } ], "update_e_veto_pick_types_many": [ - 1381, + 1380, { "updates": [ - 1390, + 1389, "[e_veto_pick_types_updates!]!" ] } ], "update_e_winning_reasons": [ - 1401, + 1400, { "_set": [ - 1406 + 1405 ], "where": [ - 1394, + 1393, "e_winning_reasons_bool_exp!" ] } ], "update_e_winning_reasons_by_pk": [ - 1391, + 1390, { "_set": [ - 1406 + 1405 ], "pk_columns": [ - 1404, + 1403, "e_winning_reasons_pk_columns_input!" ] } ], "update_e_winning_reasons_many": [ - 1401, + 1400, { "updates": [ - 1410, + 1409, "[e_winning_reasons_updates!]!" ] } ], "update_event_match_links": [ - 1419, + 1418, { "_set": [ - 1424 + 1423 ], "where": [ - 1414, + 1413, "event_match_links_bool_exp!" ] } ], "update_event_match_links_by_pk": [ - 1411, + 1410, { "_set": [ - 1424 + 1423 ], "pk_columns": [ - 1422, + 1421, "event_match_links_pk_columns_input!" ] } ], "update_event_match_links_many": [ - 1419, + 1418, { "updates": [ - 1428, + 1427, "[event_match_links_updates!]!" ] } ], "update_event_media": [ - 1446, + 1445, { "_inc": [ - 1440 + 1439 ], "_set": [ - 1493 + 1492 ], "where": [ - 1438, + 1437, "event_media_bool_exp!" ] } ], "update_event_media_by_pk": [ - 1429, + 1428, { "_inc": [ - 1440 + 1439 ], "_set": [ - 1493 + 1492 ], "pk_columns": [ - 1450, + 1449, "event_media_pk_columns_input!" ] } ], "update_event_media_many": [ - 1446, + 1445, { "updates": [ - 1505, + 1504, "[event_media_updates!]!" ] } ], "update_event_media_players": [ - 1468, + 1467, { "_inc": [ - 1462 + 1461 ], "_set": [ - 1473 + 1472 ], "where": [ - 1460, + 1459, "event_media_players_bool_exp!" ] } ], "update_event_media_players_by_pk": [ - 1451, + 1450, { "_inc": [ - 1462 + 1461 ], "_set": [ - 1473 + 1472 ], "pk_columns": [ - 1471, + 1470, "event_media_players_pk_columns_input!" ] } ], "update_event_media_players_many": [ - 1468, + 1467, { "updates": [ - 1485, + 1484, "[event_media_players_updates!]!" ] } ], "update_event_organizers": [ - 1529, + 1528, { "_inc": [ - 1523 + 1522 ], "_set": [ - 1534 + 1533 ], "where": [ - 1521, + 1520, "event_organizers_bool_exp!" ] } ], "update_event_organizers_by_pk": [ - 1512, + 1511, { "_inc": [ - 1523 + 1522 ], "_set": [ - 1534 + 1533 ], "pk_columns": [ - 1532, + 1531, "event_organizers_pk_columns_input!" ] } ], "update_event_organizers_many": [ - 1529, + 1528, { "updates": [ - 1546, + 1545, "[event_organizers_updates!]!" ] } ], "update_event_players": [ - 1570, + 1569, { "_inc": [ - 1564 + 1563 ], "_set": [ - 1575 + 1574 ], "where": [ - 1562, + 1561, "event_players_bool_exp!" ] } ], "update_event_players_by_pk": [ - 1553, + 1552, { "_inc": [ - 1564 + 1563 ], "_set": [ - 1575 + 1574 ], "pk_columns": [ - 1573, + 1572, "event_players_pk_columns_input!" ] } ], "update_event_players_many": [ - 1570, + 1569, { "updates": [ - 1587, + 1586, "[event_players_updates!]!" ] } ], "update_event_teams": [ - 1608, + 1607, { "_set": [ - 1613 + 1612 ], "where": [ - 1601, + 1600, "event_teams_bool_exp!" ] } ], "update_event_teams_by_pk": [ - 1594, + 1593, { "_set": [ - 1613 + 1612 ], "pk_columns": [ - 1611, + 1610, "event_teams_pk_columns_input!" ] } ], "update_event_teams_many": [ - 1608, + 1607, { "updates": [ - 1617, + 1616, "[event_teams_updates!]!" ] } ], "update_event_tournaments": [ - 1632, + 1631, { "_set": [ - 1637 + 1636 ], "where": [ - 1625, + 1624, "event_tournaments_bool_exp!" ] } ], "update_event_tournaments_by_pk": [ - 1618, + 1617, { "_set": [ - 1637 + 1636 ], "pk_columns": [ - 1635, + 1634, "event_tournaments_pk_columns_input!" ] } ], "update_event_tournaments_many": [ - 1632, + 1631, { "updates": [ - 1641, + 1640, "[event_tournaments_updates!]!" ] } ], "update_events": [ - 1652, + 1651, { "_inc": [ - 1648 + 1647 ], "_set": [ - 1658 + 1657 ], "where": [ - 1646, + 1645, "events_bool_exp!" ] } ], "update_events_by_pk": [ - 1642, + 1641, { "_inc": [ - 1648 + 1647 ], "_set": [ - 1658 + 1657 ], "pk_columns": [ - 1656, + 1655, "events_pk_columns_input!" ] } ], "update_events_many": [ - 1652, + 1651, { "updates": [ - 1666, + 1665, "[events_updates!]!" ] } ], "update_friends": [ - 1682, + 1681, { "_inc": [ - 1678 + 1677 ], "_set": [ - 1687 + 1686 ], "where": [ - 1676, + 1675, "friends_bool_exp!" ] } ], "update_friends_by_pk": [ - 1672, + 1671, { "_inc": [ - 1678 + 1677 ], "_set": [ - 1687 + 1686 ], "pk_columns": [ - 1685, + 1684, "friends_pk_columns_input!" ] } ], "update_friends_many": [ - 1682, + 1681, { "updates": [ - 1695, + 1694, "[friends_updates!]!" ] } ], "update_game_server_nodes": [ - 1722, + 1721, { "_append": [ - 1707 + 1706 ], "_delete_at_path": [ - 1713 + 1712 ], "_delete_elem": [ - 1714 + 1713 ], "_delete_key": [ - 1715 + 1714 ], "_inc": [ - 1716 + 1715 ], "_prepend": [ - 1727 + 1726 ], "_set": [ - 1731 + 1730 ], "where": [ - 1711, + 1710, "game_server_nodes_bool_exp!" ] } ], "update_game_server_nodes_by_pk": [ - 1699, + 1698, { "_append": [ - 1707 + 1706 ], "_delete_at_path": [ - 1713 + 1712 ], "_delete_elem": [ - 1714 + 1713 ], "_delete_key": [ - 1715 + 1714 ], "_inc": [ - 1716 + 1715 ], "_prepend": [ - 1727 + 1726 ], "_set": [ - 1731 + 1730 ], "pk_columns": [ - 1726, + 1725, "game_server_nodes_pk_columns_input!" ] } ], "update_game_server_nodes_many": [ - 1722, + 1721, { "updates": [ - 1743, + 1742, "[game_server_nodes_updates!]!" ] } ], "update_game_versions": [ - 1764, + 1763, { "_append": [ - 1753 + 1752 ], "_delete_at_path": [ - 1757 + 1756 ], "_delete_elem": [ - 1758 + 1757 ], "_delete_key": [ - 1759 + 1758 ], "_inc": [ - 1760 + 1759 ], "_prepend": [ - 1769 + 1768 ], "_set": [ - 1771 + 1770 ], "where": [ - 1755, + 1754, "game_versions_bool_exp!" ] } ], "update_game_versions_by_pk": [ - 1750, + 1749, { "_append": [ - 1753 + 1752 ], "_delete_at_path": [ - 1757 + 1756 ], "_delete_elem": [ - 1758 + 1757 ], "_delete_key": [ - 1759 + 1758 ], "_inc": [ - 1760 + 1759 ], "_prepend": [ - 1769 + 1768 ], "_set": [ - 1771 + 1770 ], "pk_columns": [ - 1768, + 1767, "game_versions_pk_columns_input!" ] } ], "update_game_versions_many": [ - 1764, + 1763, { "updates": [ - 1779, + 1778, "[game_versions_updates!]!" ] } ], "update_gamedata_signature_validations": [ - 1797, + 1796, { "_append": [ - 1786 + 1785 ], "_delete_at_path": [ - 1790 + 1789 ], "_delete_elem": [ - 1791 + 1790 ], "_delete_key": [ - 1792 + 1791 ], "_inc": [ - 1793 + 1792 ], "_prepend": [ - 1801 + 1800 ], "_set": [ - 1803 + 1802 ], "where": [ - 1788, + 1787, "gamedata_signature_validations_bool_exp!" ] } ], "update_gamedata_signature_validations_by_pk": [ - 1783, + 1782, { "_append": [ - 1786 + 1785 ], "_delete_at_path": [ - 1790 + 1789 ], "_delete_elem": [ - 1791 + 1790 ], "_delete_key": [ - 1792 + 1791 ], "_inc": [ - 1793 + 1792 ], "_prepend": [ - 1801 + 1800 ], "_set": [ - 1803 + 1802 ], "pk_columns": [ - 1800, + 1799, "gamedata_signature_validations_pk_columns_input!" ] } ], "update_gamedata_signature_validations_many": [ - 1797, + 1796, { "updates": [ - 1811, + 1810, "[gamedata_signature_validations_updates!]!" ] } ], "update_leaderboard_entries": [ - 1835, + 1834, { "_inc": [ - 1831 + 1830 ], "_set": [ - 1838 + 1837 ], "where": [ - 1830, + 1829, "leaderboard_entries_bool_exp!" ] } ], "update_leaderboard_entries_many": [ - 1835, + 1834, { "updates": [ - 1845, + 1844, "[leaderboard_entries_updates!]!" ] } ], "update_league_divisions": [ - 1860, + 1859, { "_inc": [ - 1856 + 1855 ], "_set": [ - 1866 + 1865 ], "where": [ - 1854, + 1853, "league_divisions_bool_exp!" ] } ], "update_league_divisions_by_pk": [ - 1850, + 1849, { "_inc": [ - 1856 + 1855 ], "_set": [ - 1866 + 1865 ], "pk_columns": [ - 1864, + 1863, "league_divisions_pk_columns_input!" ] } ], "update_league_divisions_many": [ - 1860, + 1859, { "updates": [ - 1874, + 1873, "[league_divisions_updates!]!" ] } ], "update_league_match_weeks": [ - 1895, + 1894, { "_inc": [ - 1889 + 1888 ], "_set": [ - 1900 + 1899 ], "where": [ - 1887, + 1886, "league_match_weeks_bool_exp!" ] } ], "update_league_match_weeks_by_pk": [ - 1878, + 1877, { "_inc": [ - 1889 + 1888 ], "_set": [ - 1900 + 1899 ], "pk_columns": [ - 1898, + 1897, "league_match_weeks_pk_columns_input!" ] } ], "update_league_match_weeks_many": [ - 1895, + 1894, { "updates": [ - 1912, + 1911, "[league_match_weeks_updates!]!" ] } ], "update_league_relegation_playoffs": [ - 1936, + 1935, { "_inc": [ - 1930 + 1929 ], "_set": [ - 1941 + 1940 ], "where": [ - 1928, + 1927, "league_relegation_playoffs_bool_exp!" ] } ], "update_league_relegation_playoffs_by_pk": [ - 1919, + 1918, { "_inc": [ - 1930 + 1929 ], "_set": [ - 1941 + 1940 ], "pk_columns": [ - 1939, + 1938, "league_relegation_playoffs_pk_columns_input!" ] } ], "update_league_relegation_playoffs_many": [ - 1936, + 1935, { "updates": [ - 1953, + 1952, "[league_relegation_playoffs_updates!]!" ] } ], "update_league_scheduling_proposals": [ - 1977, + 1976, { "_inc": [ - 1971 + 1970 ], "_set": [ - 1982 + 1981 ], "where": [ - 1969, + 1968, "league_scheduling_proposals_bool_exp!" ] } ], "update_league_scheduling_proposals_by_pk": [ - 1960, + 1959, { "_inc": [ - 1971 + 1970 ], "_set": [ - 1982 + 1981 ], "pk_columns": [ - 1980, + 1979, "league_scheduling_proposals_pk_columns_input!" ] } ], "update_league_scheduling_proposals_many": [ - 1977, + 1976, { "updates": [ - 1994, + 1993, "[league_scheduling_proposals_updates!]!" ] } ], "update_league_season_divisions": [ - 2015, + 2014, { "_set": [ - 2021 + 2020 ], "where": [ - 2008, + 2007, "league_season_divisions_bool_exp!" ] } ], "update_league_season_divisions_by_pk": [ - 2001, + 2000, { "_set": [ - 2021 + 2020 ], "pk_columns": [ - 2019, + 2018, "league_season_divisions_pk_columns_input!" ] } ], "update_league_season_divisions_many": [ - 2015, + 2014, { "updates": [ - 2025, + 2024, "[league_season_divisions_updates!]!" ] } ], "update_league_seasons": [ - 2040, + 2039, { "_append": [ - 2029 + 2028 ], "_delete_at_path": [ - 2033 + 2032 ], "_delete_elem": [ - 2034 + 2033 ], "_delete_key": [ - 2035 + 2034 ], "_inc": [ - 2036 + 2035 ], "_prepend": [ - 2045 + 2044 ], "_set": [ - 2047 + 2046 ], "where": [ - 2031, + 2030, "league_seasons_bool_exp!" ] } ], "update_league_seasons_by_pk": [ - 2026, + 2025, { "_append": [ - 2029 + 2028 ], "_delete_at_path": [ - 2033 + 2032 ], "_delete_elem": [ - 2034 + 2033 ], "_delete_key": [ - 2035 + 2034 ], "_inc": [ - 2036 + 2035 ], "_prepend": [ - 2045 + 2044 ], "_set": [ - 2047 + 2046 ], "pk_columns": [ - 2044, + 2043, "league_seasons_pk_columns_input!" ] } ], "update_league_seasons_many": [ - 2040, + 2039, { "updates": [ - 2055, + 2054, "[league_seasons_updates!]!" ] } ], "update_league_team_movements": [ - 2076, + 2075, { "_inc": [ - 2070 + 2069 ], "_set": [ - 2081 + 2080 ], "where": [ - 2068, + 2067, "league_team_movements_bool_exp!" ] } ], "update_league_team_movements_by_pk": [ - 2059, + 2058, { "_inc": [ - 2070 + 2069 ], "_set": [ - 2081 + 2080 ], "pk_columns": [ - 2079, + 2078, "league_team_movements_pk_columns_input!" ] } ], "update_league_team_movements_many": [ - 2076, + 2075, { "updates": [ - 2093, + 2092, "[league_team_movements_updates!]!" ] } ], "update_league_team_rosters": [ - 2117, + 2116, { "_inc": [ - 2111 + 2110 ], "_set": [ - 2122 + 2121 ], "where": [ - 2109, + 2108, "league_team_rosters_bool_exp!" ] } ], "update_league_team_rosters_by_pk": [ - 2100, + 2099, { "_inc": [ - 2111 + 2110 ], "_set": [ - 2122 + 2121 ], "pk_columns": [ - 2120, + 2119, "league_team_rosters_pk_columns_input!" ] } ], "update_league_team_rosters_many": [ - 2117, + 2116, { "updates": [ - 2134, + 2133, "[league_team_rosters_updates!]!" ] } ], "update_league_team_seasons": [ - 2158, + 2157, { "_inc": [ - 2152 + 2151 ], "_set": [ - 2164 + 2163 ], "where": [ - 2150, + 2149, "league_team_seasons_bool_exp!" ] } ], "update_league_team_seasons_by_pk": [ - 2141, + 2140, { "_inc": [ - 2152 + 2151 ], "_set": [ - 2164 + 2163 ], "pk_columns": [ - 2162, + 2161, "league_team_seasons_pk_columns_input!" ] } ], "update_league_team_seasons_many": [ - 2158, + 2157, { "updates": [ - 2176, + 2175, "[league_team_seasons_updates!]!" ] } ], "update_league_teams": [ - 2191, + 2190, { "_set": [ - 2197 + 2196 ], "where": [ - 2186, + 2185, "league_teams_bool_exp!" ] } ], "update_league_teams_by_pk": [ - 2183, + 2182, { "_set": [ - 2197 + 2196 ], "pk_columns": [ - 2195, + 2194, "league_teams_pk_columns_input!" ] } ], "update_league_teams_many": [ - 2191, + 2190, { "updates": [ - 2201, + 2200, "[league_teams_updates!]!" ] } ], "update_lobbies": [ - 2210, + 2209, { "_set": [ - 2216 + 2215 ], "where": [ - 2205, + 2204, "lobbies_bool_exp!" ] } ], "update_lobbies_by_pk": [ - 2202, + 2201, { "_set": [ - 2216 + 2215 ], "pk_columns": [ - 2214, + 2213, "lobbies_pk_columns_input!" ] } ], "update_lobbies_many": [ - 2210, + 2209, { "updates": [ - 2220, + 2219, "[lobbies_updates!]!" ] } ], "update_lobby_players": [ - 2240, + 2239, { "_inc": [ - 2234 + 2233 ], "_set": [ - 2247 + 2246 ], "where": [ - 2232, + 2231, "lobby_players_bool_exp!" ] } ], "update_lobby_players_by_pk": [ - 2221, + 2220, { "_inc": [ - 2234 + 2233 ], "_set": [ - 2247 + 2246 ], "pk_columns": [ - 2243, + 2242, "lobby_players_pk_columns_input!" ] } ], "update_lobby_players_many": [ - 2240, + 2239, { "updates": [ - 2259, + 2258, "[lobby_players_updates!]!" ] } ], "update_map_pools": [ - 2274, + 2273, { "_set": [ - 2280 + 2279 ], "where": [ - 2269, + 2268, "map_pools_bool_exp!" ] } ], "update_map_pools_by_pk": [ - 2266, + 2265, { "_set": [ - 2280 + 2279 ], "pk_columns": [ - 2278, + 2277, "map_pools_pk_columns_input!" ] } ], "update_map_pools_many": [ - 2274, + 2273, { "updates": [ - 2284, + 2283, "[map_pools_updates!]!" ] } ], "update_maps": [ - 2301, + 2300, { "_set": [ - 2309 + 2308 ], "where": [ - 2294, + 2293, "maps_bool_exp!" ] } ], "update_maps_by_pk": [ - 2285, + 2284, { "_set": [ - 2309 + 2308 ], "pk_columns": [ - 2305, + 2304, "maps_pk_columns_input!" ] } ], "update_maps_many": [ - 2301, + 2300, { "updates": [ - 2313, + 2312, "[maps_updates!]!" ] } ], "update_match_clips": [ - 2331, + 2330, { "_inc": [ - 2325 + 2324 ], "_set": [ - 2337 + 2336 ], "where": [ - 2323, + 2322, "match_clips_bool_exp!" ] } ], "update_match_clips_by_pk": [ - 2314, + 2313, { "_inc": [ - 2325 + 2324 ], "_set": [ - 2337 + 2336 ], "pk_columns": [ - 2335, + 2334, "match_clips_pk_columns_input!" ] } ], "update_match_clips_many": [ - 2331, + 2330, { "updates": [ - 2349, + 2348, "[match_clips_updates!]!" ] } ], "update_match_demo_sessions": [ - 2377, + 2376, { "_append": [ - 2362 + 2361 ], "_delete_at_path": [ - 2368 + 2367 ], "_delete_elem": [ - 2369 + 2368 ], "_delete_key": [ - 2370 + 2369 ], "_inc": [ - 2371 + 2370 ], "_prepend": [ - 2381 + 2380 ], "_set": [ - 2383 + 2382 ], "where": [ - 2366, + 2365, "match_demo_sessions_bool_exp!" ] } ], "update_match_demo_sessions_by_pk": [ - 2356, + 2355, { "_append": [ - 2362 + 2361 ], "_delete_at_path": [ - 2368 + 2367 ], "_delete_elem": [ - 2369 + 2368 ], "_delete_key": [ - 2370 + 2369 ], "_inc": [ - 2371 + 2370 ], "_prepend": [ - 2381 + 2380 ], "_set": [ - 2383 + 2382 ], "pk_columns": [ - 2380, + 2379, "match_demo_sessions_pk_columns_input!" ] } ], "update_match_demo_sessions_many": [ - 2377, + 2376, { "updates": [ - 2395, + 2394, "[match_demo_sessions_updates!]!" ] } ], "update_match_lineup_players": [ - 2421, + 2420, { "_inc": [ - 2415 + 2414 ], "_set": [ - 2428 + 2427 ], "where": [ - 2413, + 2412, "match_lineup_players_bool_exp!" ] } ], "update_match_lineup_players_by_pk": [ - 2402, + 2401, { "_inc": [ - 2415 + 2414 ], "_set": [ - 2428 + 2427 ], "pk_columns": [ - 2424, + 2423, "match_lineup_players_pk_columns_input!" ] } ], "update_match_lineup_players_many": [ - 2421, + 2420, { "updates": [ - 2440, + 2439, "[match_lineup_players_updates!]!" ] } ], "update_match_lineups": [ - 2464, + 2463, { "_inc": [ - 2458 + 2457 ], "_set": [ - 2470 + 2469 ], "where": [ - 2456, + 2455, "match_lineups_bool_exp!" ] } ], "update_match_lineups_by_pk": [ - 2447, + 2446, { "_inc": [ - 2458 + 2457 ], "_set": [ - 2470 + 2469 ], "pk_columns": [ - 2468, + 2467, "match_lineups_pk_columns_input!" ] } ], "update_match_lineups_many": [ - 2464, + 2463, { "updates": [ - 2482, + 2481, "[match_lineups_updates!]!" ] } ], "update_match_map_demos": [ - 2512, + 2511, { "_append": [ - 2497 + 2496 ], "_delete_at_path": [ - 2503 + 2502 ], "_delete_elem": [ - 2504 + 2503 ], "_delete_key": [ - 2505 + 2504 ], "_inc": [ - 2506 + 2505 ], "_prepend": [ - 2517 + 2516 ], "_set": [ - 2521 + 2520 ], "where": [ - 2501, + 2500, "match_map_demos_bool_exp!" ] } ], "update_match_map_demos_by_pk": [ - 2489, + 2488, { "_append": [ - 2497 + 2496 ], "_delete_at_path": [ - 2503 + 2502 ], "_delete_elem": [ - 2504 + 2503 ], "_delete_key": [ - 2505 + 2504 ], "_inc": [ - 2506 + 2505 ], "_prepend": [ - 2517 + 2516 ], "_set": [ - 2521 + 2520 ], "pk_columns": [ - 2516, + 2515, "match_map_demos_pk_columns_input!" ] } ], "update_match_map_demos_many": [ - 2512, + 2511, { "updates": [ - 2533, + 2532, "[match_map_demos_updates!]!" ] } ], "update_match_map_rounds": [ - 2557, + 2556, { "_inc": [ - 2551 + 2550 ], "_set": [ - 2562 + 2561 ], "where": [ - 2549, + 2548, "match_map_rounds_bool_exp!" ] } ], "update_match_map_rounds_by_pk": [ - 2540, + 2539, { "_inc": [ - 2551 + 2550 ], "_set": [ - 2562 + 2561 ], "pk_columns": [ - 2560, + 2559, "match_map_rounds_pk_columns_input!" ] } ], "update_match_map_rounds_many": [ - 2557, + 2556, { "updates": [ - 2574, + 2573, "[match_map_rounds_updates!]!" ] } ], "update_match_map_veto_picks": [ - 2595, + 2594, { "_set": [ - 2600 + 2599 ], "where": [ - 2588, + 2587, "match_map_veto_picks_bool_exp!" ] } ], "update_match_map_veto_picks_by_pk": [ - 2581, + 2580, { "_set": [ - 2600 + 2599 ], "pk_columns": [ - 2598, + 2597, "match_map_veto_picks_pk_columns_input!" ] } ], "update_match_map_veto_picks_many": [ - 2595, + 2594, { "updates": [ - 2604, + 2603, "[match_map_veto_picks_updates!]!" ] } ], "update_match_maps": [ - 2622, + 2621, { "_inc": [ - 2616 + 2615 ], "_set": [ - 2628 + 2627 ], "where": [ - 2614, + 2613, "match_maps_bool_exp!" ] } ], "update_match_maps_by_pk": [ - 2605, + 2604, { "_inc": [ - 2616 + 2615 ], "_set": [ - 2628 + 2627 ], "pk_columns": [ - 2626, + 2625, "match_maps_pk_columns_input!" ] } ], "update_match_maps_many": [ - 2622, + 2621, { "updates": [ - 2640, + 2639, "[match_maps_updates!]!" ] } ], "update_match_options": [ - 2657, + 2656, { "_inc": [ - 2653 + 2652 ], "_set": [ - 2663 + 2662 ], "where": [ - 2651, + 2650, "match_options_bool_exp!" ] } ], "update_match_options_by_pk": [ - 2647, + 2646, { "_inc": [ - 2653 + 2652 ], "_set": [ - 2663 + 2662 ], "pk_columns": [ - 2661, + 2660, "match_options_pk_columns_input!" ] } ], "update_match_options_many": [ - 2657, + 2656, { "updates": [ - 2671, + 2670, "[match_options_updates!]!" ] } ], "update_match_region_veto_picks": [ - 2689, + 2688, { "_set": [ - 2694 + 2693 ], "where": [ - 2682, + 2681, "match_region_veto_picks_bool_exp!" ] } ], "update_match_region_veto_picks_by_pk": [ - 2675, + 2674, { "_set": [ - 2694 + 2693 ], "pk_columns": [ - 2692, + 2691, "match_region_veto_picks_pk_columns_input!" ] } ], "update_match_region_veto_picks_many": [ - 2689, + 2688, { "updates": [ - 2698, + 2697, "[match_region_veto_picks_updates!]!" ] } ], "update_match_streams": [ - 2722, + 2721, { "_append": [ - 2707 + 2706 ], "_delete_at_path": [ - 2713 + 2712 ], "_delete_elem": [ - 2714 + 2713 ], "_delete_key": [ - 2715 + 2714 ], "_inc": [ - 2716 + 2715 ], "_prepend": [ - 2726 + 2725 ], "_set": [ - 2730 + 2729 ], "where": [ - 2711, + 2710, "match_streams_bool_exp!" ] } ], "update_match_streams_by_pk": [ - 2699, + 2698, { "_append": [ - 2707 + 2706 ], "_delete_at_path": [ - 2713 + 2712 ], "_delete_elem": [ - 2714 + 2713 ], "_delete_key": [ - 2715 + 2714 ], "_inc": [ - 2716 + 2715 ], "_prepend": [ - 2726 + 2725 ], "_set": [ - 2730 + 2729 ], "pk_columns": [ - 2725, + 2724, "match_streams_pk_columns_input!" ] } ], "update_match_streams_many": [ - 2722, + 2721, { "updates": [ - 2742, + 2741, "[match_streams_updates!]!" ] } ], "update_match_type_cfgs": [ - 2757, + 2756, { "_set": [ - 2762 + 2761 ], "where": [ - 2752, + 2751, "match_type_cfgs_bool_exp!" ] } ], "update_match_type_cfgs_by_pk": [ - 2749, + 2748, { "_set": [ - 2762 + 2761 ], "pk_columns": [ - 2760, + 2759, "match_type_cfgs_pk_columns_input!" ] } ], "update_match_type_cfgs_many": [ - 2757, + 2756, { "updates": [ - 2766, + 2765, "[match_type_cfgs_updates!]!" ] } ], "update_matches": [ - 2784, + 2783, { "_inc": [ - 2778 + 2777 ], "_set": [ - 2790 + 2789 ], "where": [ - 2776, + 2775, "matches_bool_exp!" ] } ], "update_matches_by_pk": [ - 2767, + 2766, { "_inc": [ - 2778 + 2777 ], "_set": [ - 2790 + 2789 ], "pk_columns": [ - 2788, + 2787, "matches_pk_columns_input!" ] } ], "update_matches_many": [ - 2784, + 2783, { "updates": [ - 2802, + 2801, "[matches_updates!]!" ] } ], "update_migration_hashes_hashes": [ - 2817, + 2816, { "_set": [ - 2822 + 2821 ], "where": [ - 2812, + 2811, "migration_hashes_hashes_bool_exp!" ] } ], "update_migration_hashes_hashes_by_pk": [ - 2809, + 2808, { "_set": [ - 2822 + 2821 ], "pk_columns": [ - 2820, + 2819, "migration_hashes_hashes_pk_columns_input!" ] } ], "update_migration_hashes_hashes_many": [ - 2817, + 2816, { "updates": [ - 2826, + 2825, "[migration_hashes_hashes_updates!]!" ] } ], "update_my_friends": [ - 2849, + 2848, { "_append": [ - 2835 + 2834 ], "_delete_at_path": [ - 2840 + 2839 ], "_delete_elem": [ - 2841 + 2840 ], "_delete_key": [ - 2842 + 2841 ], "_inc": [ - 2843 + 2842 ], "_prepend": [ - 2851 + 2850 ], "_set": [ - 2855 + 2854 ], "where": [ - 2839, + 2838, "my_friends_bool_exp!" ] } ], "update_my_friends_many": [ - 2849, + 2848, { "updates": [ - 2866, + 2865, "[my_friends_updates!]!" ] } ], "update_news_articles": [ - 2883, + 2882, { "_inc": [ - 2879 + 2878 ], "_set": [ - 2888 + 2887 ], "where": [ - 2877, + 2876, "news_articles_bool_exp!" ] } ], "update_news_articles_by_pk": [ - 2873, + 2872, { "_inc": [ - 2879 + 2878 ], "_set": [ - 2888 + 2887 ], "pk_columns": [ - 2886, + 2885, "news_articles_pk_columns_input!" ] } ], "update_news_articles_many": [ - 2883, + 2882, { "updates": [ - 2896, + 2895, "[news_articles_updates!]!" ] } ], "update_notifications": [ - 2923, + 2922, { "_append": [ - 2908 + 2907 ], "_delete_at_path": [ - 2914 + 2913 ], "_delete_elem": [ - 2915 + 2914 ], "_delete_key": [ - 2916 + 2915 ], "_inc": [ - 2917 + 2916 ], "_prepend": [ - 2927 + 2926 ], "_set": [ - 2931 + 2930 ], "where": [ - 2912, + 2911, "notifications_bool_exp!" ] } ], "update_notifications_by_pk": [ - 2900, + 2899, { "_append": [ - 2908 + 2907 ], "_delete_at_path": [ - 2914 + 2913 ], "_delete_elem": [ - 2915 + 2914 ], "_delete_key": [ - 2916 + 2915 ], "_inc": [ - 2917 + 2916 ], "_prepend": [ - 2927 + 2926 ], "_set": [ - 2931 + 2930 ], "pk_columns": [ - 2926, + 2925, "notifications_pk_columns_input!" ] } ], "update_notifications_many": [ - 2923, + 2922, { "updates": [ - 2943, + 2942, "[notifications_updates!]!" ] } ], "update_pending_match_import_players": [ - 2970, + 2969, { "_inc": [ - 2964 + 2963 ], "_set": [ - 2975 + 2974 ], "where": [ - 2962, + 2961, "pending_match_import_players_bool_exp!" ] } ], "update_pending_match_import_players_by_pk": [ - 2953, + 2952, { "_inc": [ - 2964 + 2963 ], "_set": [ - 2975 + 2974 ], "pk_columns": [ - 2973, + 2972, "pending_match_import_players_pk_columns_input!" ] } ], "update_pending_match_import_players_many": [ - 2970, + 2969, { "updates": [ - 2987, + 2986, "[pending_match_import_players_updates!]!" ] } ], "update_pending_match_imports": [ - 3004, + 3003, { "_inc": [ - 3000 + 2999 ], "_set": [ - 3010 + 3009 ], "where": [ - 2998, + 2997, "pending_match_imports_bool_exp!" ] } ], "update_pending_match_imports_by_pk": [ - 2994, + 2993, { "_inc": [ - 3000 + 2999 ], "_set": [ - 3010 + 3009 ], "pk_columns": [ - 3008, + 3007, "pending_match_imports_pk_columns_input!" ] } ], "update_pending_match_imports_many": [ - 3004, + 3003, { "updates": [ - 3018, + 3017, "[pending_match_imports_updates!]!" ] } ], "update_player_aim_stats_demo": [ - 3032, + 3031, { "_inc": [ - 3028 + 3027 ], "_set": [ - 3037 + 3036 ], "where": [ - 3026, + 3025, "player_aim_stats_demo_bool_exp!" ] } ], "update_player_aim_stats_demo_by_pk": [ - 3022, + 3021, { "_inc": [ - 3028 + 3027 ], "_set": [ - 3037 + 3036 ], "pk_columns": [ - 3035, + 3034, "player_aim_stats_demo_pk_columns_input!" ] } ], "update_player_aim_stats_demo_many": [ - 3032, + 3031, { "updates": [ - 3045, + 3044, "[player_aim_stats_demo_updates!]!" ] } ], "update_player_aim_weapon_stats": [ - 3066, + 3065, { "_inc": [ - 3060 + 3059 ], "_set": [ - 3071 + 3070 ], "where": [ - 3058, + 3057, "player_aim_weapon_stats_bool_exp!" ] } ], "update_player_aim_weapon_stats_by_pk": [ - 3049, + 3048, { "_inc": [ - 3060 + 3059 ], "_set": [ - 3071 + 3070 ], "pk_columns": [ - 3069, + 3068, "player_aim_weapon_stats_pk_columns_input!" ] } ], "update_player_aim_weapon_stats_many": [ - 3066, + 3065, { "updates": [ - 3083, + 3082, "[player_aim_weapon_stats_updates!]!" ] } ], "update_player_assists": [ - 3109, + 3108, { "_inc": [ - 3103 + 3102 ], "_set": [ - 3116 + 3115 ], "where": [ - 3101, + 3100, "player_assists_bool_exp!" ] } ], "update_player_assists_by_pk": [ - 3090, + 3089, { "_inc": [ - 3103 + 3102 ], "_set": [ - 3116 + 3115 ], "pk_columns": [ - 3112, + 3111, "player_assists_pk_columns_input!" ] } ], "update_player_assists_many": [ - 3109, + 3108, { "updates": [ - 3128, + 3127, "[player_assists_updates!]!" ] } ], "update_player_damages": [ - 3170, + 3169, { "_inc": [ - 3164 + 3163 ], "_set": [ - 3175 + 3174 ], "where": [ - 3162, + 3161, "player_damages_bool_exp!" ] } ], "update_player_damages_by_pk": [ - 3153, + 3152, { "_inc": [ - 3164 + 3163 ], "_set": [ - 3175 + 3174 ], "pk_columns": [ - 3173, + 3172, "player_damages_pk_columns_input!" ] } ], "update_player_damages_many": [ - 3170, + 3169, { "updates": [ - 3187, + 3186, "[player_damages_updates!]!" ] } ], "update_player_elo": [ - 3204, + 3203, { "_inc": [ - 3200 + 3199 ], "_set": [ - 3209 + 3208 ], "where": [ - 3198, + 3197, "player_elo_bool_exp!" ] } ], "update_player_elo_by_pk": [ - 3194, + 3193, { "_inc": [ - 3200 + 3199 ], "_set": [ - 3209 + 3208 ], "pk_columns": [ - 3207, + 3206, "player_elo_pk_columns_input!" ] } ], "update_player_elo_many": [ - 3204, + 3203, { "updates": [ - 3217, + 3216, "[player_elo_updates!]!" ] } ], "update_player_faceit_rank_history": [ - 3238, + 3237, { "_inc": [ - 3232 + 3231 ], "_set": [ - 3243 + 3242 ], "where": [ - 3230, + 3229, "player_faceit_rank_history_bool_exp!" ] } ], "update_player_faceit_rank_history_by_pk": [ - 3221, + 3220, { "_inc": [ - 3232 + 3231 ], "_set": [ - 3243 + 3242 ], "pk_columns": [ - 3241, + 3240, "player_faceit_rank_history_pk_columns_input!" ] } ], "update_player_faceit_rank_history_many": [ - 3238, + 3237, { "updates": [ - 3255, + 3254, "[player_faceit_rank_history_updates!]!" ] } ], "update_player_flashes": [ - 3281, + 3280, { "_inc": [ - 3275 + 3274 ], "_set": [ - 3288 + 3287 ], "where": [ - 3273, + 3272, "player_flashes_bool_exp!" ] } ], "update_player_flashes_by_pk": [ - 3262, + 3261, { "_inc": [ - 3275 + 3274 ], "_set": [ - 3288 + 3287 ], "pk_columns": [ - 3284, + 3283, "player_flashes_pk_columns_input!" ] } ], "update_player_flashes_many": [ - 3281, + 3280, { "updates": [ - 3300, + 3299, "[player_flashes_updates!]!" ] } ], "update_player_kills": [ - 3367, + 3366, { "_inc": [ - 3361 + 3360 ], "_set": [ - 3374 + 3373 ], "where": [ - 3318, + 3317, "player_kills_bool_exp!" ] } ], "update_player_kills_by_pk": [ - 3307, + 3306, { "_inc": [ - 3361 + 3360 ], "_set": [ - 3374 + 3373 ], "pk_columns": [ - 3370, + 3369, "player_kills_pk_columns_input!" ] } ], "update_player_kills_by_weapon": [ - 3336, + 3335, { "_inc": [ - 3330 + 3329 ], "_set": [ - 3341 + 3340 ], "where": [ - 3328, + 3327, "player_kills_by_weapon_bool_exp!" ] } ], "update_player_kills_by_weapon_by_pk": [ - 3319, + 3318, { "_inc": [ - 3330 + 3329 ], "_set": [ - 3341 + 3340 ], "pk_columns": [ - 3339, + 3338, "player_kills_by_weapon_pk_columns_input!" ] } ], "update_player_kills_by_weapon_many": [ - 3336, + 3335, { "updates": [ - 3353, + 3352, "[player_kills_by_weapon_updates!]!" ] } ], "update_player_kills_many": [ - 3367, + 3366, { "updates": [ - 3386, + 3385, "[player_kills_updates!]!" ] } ], "update_player_leaderboard_rank": [ - 3402, + 3401, { "_inc": [ - 3398 + 3397 ], "_set": [ - 3405 + 3404 ], "where": [ - 3397, + 3396, "player_leaderboard_rank_bool_exp!" ] } ], "update_player_leaderboard_rank_many": [ - 3402, + 3401, { "updates": [ - 3412, + 3411, "[player_leaderboard_rank_updates!]!" ] } ], "update_player_match_map_stats": [ - 3433, + 3432, { "_inc": [ - 3427 + 3426 ], "_set": [ - 3438 + 3437 ], "where": [ - 3425, + 3424, "player_match_map_stats_bool_exp!" ] } ], "update_player_match_map_stats_by_pk": [ - 3416, + 3415, { "_inc": [ - 3427 + 3426 ], "_set": [ - 3438 + 3437 ], "pk_columns": [ - 3436, + 3435, "player_match_map_stats_pk_columns_input!" ] } ], "update_player_match_map_stats_many": [ - 3433, + 3432, { "updates": [ - 3450, + 3449, "[player_match_map_stats_updates!]!" ] } ], "update_player_objectives": [ - 3525, + 3524, { "_inc": [ - 3519 + 3518 ], "_set": [ - 3530 + 3529 ], "where": [ - 3517, + 3516, "player_objectives_bool_exp!" ] } ], "update_player_objectives_by_pk": [ - 3508, + 3507, { "_inc": [ - 3519 + 3518 ], "_set": [ - 3530 + 3529 ], "pk_columns": [ - 3528, + 3527, "player_objectives_pk_columns_input!" ] } ], "update_player_objectives_many": [ - 3525, + 3524, { "updates": [ - 3542, + 3541, "[player_objectives_updates!]!" ] } ], "update_player_premier_rank_history": [ - 3584, + 3583, { "_inc": [ - 3578 + 3577 ], "_set": [ - 3589 + 3588 ], "where": [ - 3576, + 3575, "player_premier_rank_history_bool_exp!" ] } ], "update_player_premier_rank_history_by_pk": [ - 3567, + 3566, { "_inc": [ - 3578 + 3577 ], "_set": [ - 3589 + 3588 ], "pk_columns": [ - 3587, + 3586, "player_premier_rank_history_pk_columns_input!" ] } ], "update_player_premier_rank_history_many": [ - 3584, + 3583, { "updates": [ - 3601, + 3600, "[player_premier_rank_history_updates!]!" ] } ], "update_player_sanctions": [ - 3625, + 3624, { "_inc": [ - 3619 + 3618 ], "_set": [ - 3630 + 3629 ], "where": [ - 3617, + 3616, "player_sanctions_bool_exp!" ] } ], "update_player_sanctions_by_pk": [ - 3608, + 3607, { "_inc": [ - 3619 + 3618 ], "_set": [ - 3630 + 3629 ], "pk_columns": [ - 3628, + 3627, "player_sanctions_pk_columns_input!" ] } ], "update_player_sanctions_many": [ - 3625, + 3624, { "updates": [ - 3642, + 3641, "[player_sanctions_updates!]!" ] } ], "update_player_season_stats": [ - 3676, + 3675, { "_inc": [ - 3670 + 3669 ], "_set": [ - 3689 + 3688 ], "where": [ - 3668, + 3667, "player_season_stats_bool_exp!" ] } ], "update_player_season_stats_by_pk": [ - 3649, + 3648, { "_inc": [ - 3670 + 3669 ], "_set": [ - 3689 + 3688 ], "pk_columns": [ - 3679, + 3678, "player_season_stats_pk_columns_input!" ] } ], "update_player_season_stats_many": [ - 3676, + 3675, { "updates": [ - 3701, + 3700, "[player_season_stats_updates!]!" ] } ], "update_player_stats": [ - 3718, + 3717, { "_inc": [ - 3714 + 3713 ], "_set": [ - 3724 + 3723 ], "where": [ - 3712, + 3711, "player_stats_bool_exp!" ] } ], "update_player_stats_by_pk": [ - 3708, + 3707, { "_inc": [ - 3714 + 3713 ], "_set": [ - 3724 + 3723 ], "pk_columns": [ - 3722, + 3721, "player_stats_pk_columns_input!" ] } ], "update_player_stats_many": [ - 3718, + 3717, { "updates": [ - 3732, + 3731, "[player_stats_updates!]!" ] } ], "update_player_steam_bot_friend": [ - 3750, + 3749, { "_append": [ - 3739 + 3738 ], "_delete_at_path": [ - 3743 + 3742 ], "_delete_elem": [ - 3744 + 3743 ], "_delete_key": [ - 3745 + 3744 ], "_inc": [ - 3746 + 3745 ], "_prepend": [ - 3754 + 3753 ], "_set": [ - 3756 + 3755 ], "where": [ - 3741, + 3740, "player_steam_bot_friend_bool_exp!" ] } ], "update_player_steam_bot_friend_by_pk": [ - 3736, + 3735, { "_append": [ - 3739 + 3738 ], "_delete_at_path": [ - 3743 + 3742 ], "_delete_elem": [ - 3744 + 3743 ], "_delete_key": [ - 3745 + 3744 ], "_inc": [ - 3746 + 3745 ], "_prepend": [ - 3754 + 3753 ], "_set": [ - 3756 + 3755 ], "pk_columns": [ - 3753, + 3752, "player_steam_bot_friend_pk_columns_input!" ] } ], "update_player_steam_bot_friend_many": [ - 3750, + 3749, { "updates": [ - 3764, + 3763, "[player_steam_bot_friend_updates!]!" ] } ], "update_player_steam_match_auth": [ - 3778, + 3777, { "_inc": [ - 3774 + 3773 ], "_set": [ - 3783 + 3782 ], "where": [ - 3772, + 3771, "player_steam_match_auth_bool_exp!" ] } ], "update_player_steam_match_auth_by_pk": [ - 3768, + 3767, { "_inc": [ - 3774 + 3773 ], "_set": [ - 3783 + 3782 ], "pk_columns": [ - 3781, + 3780, "player_steam_match_auth_pk_columns_input!" ] } ], "update_player_steam_match_auth_many": [ - 3778, + 3777, { "updates": [ - 3791, + 3790, "[player_steam_match_auth_updates!]!" ] } ], "update_player_unused_utility": [ - 3812, + 3811, { "_inc": [ - 3806 + 3805 ], "_set": [ - 3817 + 3816 ], "where": [ - 3804, + 3803, "player_unused_utility_bool_exp!" ] } ], "update_player_unused_utility_by_pk": [ - 3795, + 3794, { "_inc": [ - 3806 + 3805 ], "_set": [ - 3817 + 3816 ], "pk_columns": [ - 3815, + 3814, "player_unused_utility_pk_columns_input!" ] } ], "update_player_unused_utility_many": [ - 3812, + 3811, { "updates": [ - 3829, + 3828, "[player_unused_utility_updates!]!" ] } ], "update_player_utility": [ - 3853, + 3852, { "_inc": [ - 3847 + 3846 ], "_set": [ - 3858 + 3857 ], "where": [ - 3845, + 3844, "player_utility_bool_exp!" ] } ], "update_player_utility_by_pk": [ - 3836, + 3835, { "_inc": [ - 3847 + 3846 ], "_set": [ - 3858 + 3857 ], "pk_columns": [ - 3856, + 3855, "player_utility_pk_columns_input!" ] } ], "update_player_utility_many": [ - 3853, + 3852, { "updates": [ - 3870, + 3869, "[player_utility_updates!]!" ] } ], "update_players": [ - 3920, + 3919, { "_inc": [ - 3916 + 3915 ], "_set": [ - 3926 + 3925 ], "where": [ - 3914, + 3913, "players_bool_exp!" ] } ], "update_players_by_pk": [ - 3910, + 3909, { "_inc": [ - 3916 + 3915 ], "_set": [ - 3926 + 3925 ], "pk_columns": [ - 3924, + 3923, "players_pk_columns_input!" ] } ], "update_players_many": [ - 3920, + 3919, { "updates": [ - 3934, + 3933, "[players_updates!]!" ] } ], "update_plugin_versions": [ - 3948, + 3947, { "_inc": [ - 3944 + 3943 ], "_set": [ - 3953 + 3952 ], "where": [ - 3942, + 3941, "plugin_versions_bool_exp!" ] } ], "update_plugin_versions_by_pk": [ - 3938, + 3937, { "_inc": [ - 3944 + 3943 ], "_set": [ - 3953 + 3952 ], "pk_columns": [ - 3951, + 3950, "plugin_versions_pk_columns_input!" ] } ], "update_plugin_versions_many": [ - 3948, + 3947, { "updates": [ - 3961, + 3960, "[plugin_versions_updates!]!" ] } ], "update_seasons": [ - 3979, + 3978, { "_inc": [ - 3975 + 3974 ], "_set": [ - 3985 + 3984 ], "where": [ - 3973, + 3972, "seasons_bool_exp!" ] } ], "update_seasons_by_pk": [ - 3969, + 3968, { "_inc": [ - 3975 + 3974 ], "_set": [ - 3985 + 3984 ], "pk_columns": [ - 3983, + 3982, "seasons_pk_columns_input!" ] } ], "update_seasons_many": [ - 3979, + 3978, { "updates": [ - 3993, + 3992, "[seasons_updates!]!" ] } ], "update_server_regions": [ - 4006, + 4005, { "_set": [ - 4012 + 4011 ], "where": [ - 4001, + 4000, "server_regions_bool_exp!" ] } ], "update_server_regions_by_pk": [ - 3997, + 3996, { "_set": [ - 4012 + 4011 ], "pk_columns": [ - 4010, + 4009, "server_regions_pk_columns_input!" ] } ], "update_server_regions_many": [ - 4006, + 4005, { "updates": [ - 4020, + 4019, "[server_regions_updates!]!" ] } ], "update_servers": [ - 4043, + 4042, { "_inc": [ - 4037 + 4036 ], "_set": [ - 4051 + 4050 ], "where": [ - 4035, + 4034, "servers_bool_exp!" ] } ], "update_servers_by_pk": [ - 4024, + 4023, { "_inc": [ - 4037 + 4036 ], "_set": [ - 4051 + 4050 ], "pk_columns": [ - 4047, + 4046, "servers_pk_columns_input!" ] } ], "update_servers_many": [ - 4043, + 4042, { "updates": [ - 4063, + 4062, "[servers_updates!]!" ] } ], "update_settings": [ - 4078, + 4077, { "_set": [ - 4083 + 4082 ], "where": [ - 4073, + 4072, "settings_bool_exp!" ] } ], "update_settings_by_pk": [ - 4070, + 4069, { "_set": [ - 4083 + 4082 ], "pk_columns": [ - 4081, + 4080, "settings_pk_columns_input!" ] } ], "update_settings_many": [ - 4078, + 4077, { "updates": [ - 4087, + 4086, "[settings_updates!]!" ] } ], "update_steam_account_claims": [ - 4104, + 4103, { "_set": [ - 4109 + 4108 ], "where": [ - 4097, + 4096, "steam_account_claims_bool_exp!" ] } ], "update_steam_account_claims_by_pk": [ - 4090, + 4089, { "_set": [ - 4109 + 4108 ], "pk_columns": [ - 4107, + 4106, "steam_account_claims_pk_columns_input!" ] } ], "update_steam_account_claims_many": [ - 4104, + 4103, { "updates": [ - 4113, + 4112, "[steam_account_claims_updates!]!" ] } ], "update_steam_accounts": [ - 4124, + 4123, { "_inc": [ - 4120 + 4119 ], "_set": [ - 4130 + 4129 ], "where": [ - 4118, + 4117, "steam_accounts_bool_exp!" ] } ], "update_steam_accounts_by_pk": [ - 4114, + 4113, { "_inc": [ - 4120 + 4119 ], "_set": [ - 4130 + 4129 ], "pk_columns": [ - 4128, + 4127, "steam_accounts_pk_columns_input!" ] } ], "update_steam_accounts_many": [ - 4124, + 4123, { "updates": [ - 4138, + 4137, "[steam_accounts_updates!]!" ] } ], "update_system_alerts": [ - 4152, + 4151, { "_inc": [ - 4148 + 4147 ], "_set": [ - 4157 + 4156 ], "where": [ - 4146, + 4145, "system_alerts_bool_exp!" ] } ], "update_system_alerts_by_pk": [ - 4142, + 4141, { "_inc": [ - 4148 + 4147 ], "_set": [ - 4157 + 4156 ], "pk_columns": [ - 4155, + 4154, "system_alerts_pk_columns_input!" ] } ], "update_system_alerts_many": [ - 4152, + 4151, { "updates": [ - 4165, + 4164, "[system_alerts_updates!]!" ] } ], "update_team_invites": [ - 4186, + 4185, { "_inc": [ - 4180 + 4179 ], "_set": [ - 4191 + 4190 ], "where": [ - 4178, + 4177, "team_invites_bool_exp!" ] } ], "update_team_invites_by_pk": [ - 4169, + 4168, { "_inc": [ - 4180 + 4179 ], "_set": [ - 4191 + 4190 ], "pk_columns": [ - 4189, + 4188, "team_invites_pk_columns_input!" ] } ], "update_team_invites_many": [ - 4186, + 4185, { "updates": [ - 4203, + 4202, "[team_invites_updates!]!" ] } ], "update_team_roster": [ - 4229, + 4228, { "_inc": [ - 4223 + 4222 ], "_set": [ - 4236 + 4235 ], "where": [ - 4221, + 4220, "team_roster_bool_exp!" ] } ], "update_team_roster_by_pk": [ - 4210, + 4209, { "_inc": [ - 4223 + 4222 ], "_set": [ - 4236 + 4235 ], "pk_columns": [ - 4232, + 4231, "team_roster_pk_columns_input!" ] } ], "update_team_roster_many": [ - 4229, + 4228, { "updates": [ - 4248, + 4247, "[team_roster_updates!]!" ] } ], "update_team_scrim_alerts": [ - 4265, + 4264, { "_inc": [ - 4261 + 4260 ], "_set": [ - 4270 + 4269 ], "where": [ - 4259, + 4258, "team_scrim_alerts_bool_exp!" ] } ], "update_team_scrim_alerts_by_pk": [ - 4255, + 4254, { "_inc": [ - 4261 + 4260 ], "_set": [ - 4270 + 4269 ], "pk_columns": [ - 4268, + 4267, "team_scrim_alerts_pk_columns_input!" ] } ], "update_team_scrim_alerts_many": [ - 4265, + 4264, { "updates": [ - 4278, + 4277, "[team_scrim_alerts_updates!]!" ] } ], "update_team_scrim_availability": [ - 4298, + 4297, { "_set": [ - 4305 + 4304 ], "where": [ - 4291, + 4290, "team_scrim_availability_bool_exp!" ] } ], "update_team_scrim_availability_by_pk": [ - 4282, + 4281, { "_set": [ - 4305 + 4304 ], "pk_columns": [ - 4301, + 4300, "team_scrim_availability_pk_columns_input!" ] } ], "update_team_scrim_availability_many": [ - 4298, + 4297, { "updates": [ - 4309, + 4308, "[team_scrim_availability_updates!]!" ] } ], "update_team_scrim_request_proposals": [ - 4327, + 4326, { "_inc": [ - 4321 + 4320 ], "_set": [ - 4332 + 4331 ], "where": [ - 4319, + 4318, "team_scrim_request_proposals_bool_exp!" ] } ], "update_team_scrim_request_proposals_by_pk": [ - 4310, + 4309, { "_inc": [ - 4321 + 4320 ], "_set": [ - 4332 + 4331 ], "pk_columns": [ - 4330, + 4329, "team_scrim_request_proposals_pk_columns_input!" ] } ], "update_team_scrim_request_proposals_many": [ - 4327, + 4326, { "updates": [ - 4344, + 4343, "[team_scrim_request_proposals_updates!]!" ] } ], "update_team_scrim_requests": [ - 4370, + 4369, { "_inc": [ - 4364 + 4363 ], "_set": [ - 4378 + 4377 ], "where": [ - 4362, + 4361, "team_scrim_requests_bool_exp!" ] } ], "update_team_scrim_requests_by_pk": [ - 4351, + 4350, { "_inc": [ - 4364 + 4363 ], "_set": [ - 4378 + 4377 ], "pk_columns": [ - 4374, + 4373, "team_scrim_requests_pk_columns_input!" ] } ], "update_team_scrim_requests_many": [ - 4370, + 4369, { "updates": [ - 4390, + 4389, "[team_scrim_requests_updates!]!" ] } ], "update_team_scrim_settings": [ - 4407, + 4406, { "_inc": [ - 4403 + 4402 ], "_set": [ - 4413 + 4412 ], "where": [ - 4401, + 4400, "team_scrim_settings_bool_exp!" ] } ], "update_team_scrim_settings_by_pk": [ - 4397, + 4396, { "_inc": [ - 4403 + 4402 ], "_set": [ - 4413 + 4412 ], "pk_columns": [ - 4411, + 4410, "team_scrim_settings_pk_columns_input!" ] } ], "update_team_scrim_settings_many": [ - 4407, + 4406, { "updates": [ - 4421, + 4420, "[team_scrim_settings_updates!]!" ] } ], "update_team_suggestions": [ - 4435, + 4434, { "_inc": [ - 4431 + 4430 ], "_set": [ - 4440 + 4439 ], "where": [ - 4429, + 4428, "team_suggestions_bool_exp!" ] } ], "update_team_suggestions_by_pk": [ - 4425, + 4424, { "_inc": [ - 4431 + 4430 ], "_set": [ - 4440 + 4439 ], "pk_columns": [ - 4438, + 4437, "team_suggestions_pk_columns_input!" ] } ], "update_team_suggestions_many": [ - 4435, + 4434, { "updates": [ - 4448, + 4447, "[team_suggestions_updates!]!" ] } ], "update_teams": [ - 4471, + 4470, { "_inc": [ - 4465 + 4464 ], "_set": [ - 4479 + 4478 ], "where": [ - 4463, + 4462, "teams_bool_exp!" ] } ], "update_teams_by_pk": [ - 4452, + 4451, { "_inc": [ - 4465 + 4464 ], "_set": [ - 4479 + 4478 ], "pk_columns": [ - 4475, + 4474, "teams_pk_columns_input!" ] } ], "update_teams_many": [ - 4471, + 4470, { "updates": [ - 4491, + 4490, "[teams_updates!]!" ] } ], "update_tournament_awards": [ - 4518, + 4517, { "_inc": [ - 4512 + 4511 ], "_set": [ - 4524 + 4523 ], "where": [ - 4510, + 4509, "tournament_awards_bool_exp!" ] } ], "update_tournament_awards_by_pk": [ - 4501, + 4500, { "_inc": [ - 4512 + 4511 ], "_set": [ - 4524 + 4523 ], "pk_columns": [ - 4522, + 4521, "tournament_awards_pk_columns_input!" ] } ], "update_tournament_awards_many": [ - 4518, + 4517, { "updates": [ - 4536, + 4535, "[tournament_awards_updates!]!" ] } ], "update_tournament_brackets": [ - 4562, + 4561, { "_inc": [ - 4556 + 4555 ], "_set": [ - 4570 + 4569 ], "where": [ - 4554, + 4553, "tournament_brackets_bool_exp!" ] } ], "update_tournament_brackets_by_pk": [ - 4543, + 4542, { "_inc": [ - 4556 + 4555 ], "_set": [ - 4570 + 4569 ], "pk_columns": [ - 4566, + 4565, "tournament_brackets_pk_columns_input!" ] } ], "update_tournament_brackets_many": [ - 4562, + 4561, { "updates": [ - 4582, + 4581, "[tournament_brackets_updates!]!" ] } ], "update_tournament_categories": [ - 4603, + 4602, { "_set": [ - 4608 + 4607 ], "where": [ - 4596, + 4595, "tournament_categories_bool_exp!" ] } ], "update_tournament_categories_by_pk": [ - 4589, + 4588, { "_set": [ - 4608 + 4607 ], "pk_columns": [ - 4606, + 4605, "tournament_categories_pk_columns_input!" ] } ], "update_tournament_categories_many": [ - 4603, + 4602, { "updates": [ - 4612, + 4611, "[tournament_categories_updates!]!" ] } ], "update_tournament_organizer_teams": [ - 4627, + 4626, { "_set": [ - 4632 + 4631 ], "where": [ - 4620, + 4619, "tournament_organizer_teams_bool_exp!" ] } ], "update_tournament_organizer_teams_by_pk": [ - 4613, + 4612, { "_set": [ - 4632 + 4631 ], "pk_columns": [ - 4630, + 4629, "tournament_organizer_teams_pk_columns_input!" ] } ], "update_tournament_organizer_teams_many": [ - 4627, + 4626, { "updates": [ - 4636, + 4635, "[tournament_organizer_teams_updates!]!" ] } ], "update_tournament_organizers": [ - 4654, + 4653, { "_inc": [ - 4648 + 4647 ], "_set": [ - 4659 + 4658 ], "where": [ - 4646, + 4645, "tournament_organizers_bool_exp!" ] } ], "update_tournament_organizers_by_pk": [ - 4637, + 4636, { "_inc": [ - 4648 + 4647 ], "_set": [ - 4659 + 4658 ], "pk_columns": [ - 4657, + 4656, "tournament_organizers_pk_columns_input!" ] } ], "update_tournament_organizers_many": [ - 4654, + 4653, { "updates": [ - 4671, + 4670, "[tournament_organizers_updates!]!" ] } ], "update_tournament_prizes": [ - 4695, + 4694, { "_inc": [ - 4689 + 4688 ], "_set": [ - 4700 + 4699 ], "where": [ - 4687, + 4686, "tournament_prizes_bool_exp!" ] } ], "update_tournament_prizes_by_pk": [ - 4678, + 4677, { "_inc": [ - 4689 + 4688 ], "_set": [ - 4700 + 4699 ], "pk_columns": [ - 4698, + 4697, "tournament_prizes_pk_columns_input!" ] } ], "update_tournament_prizes_many": [ - 4695, + 4694, { "updates": [ - 4712, + 4711, "[tournament_prizes_updates!]!" ] } ], "update_tournament_stage_windows": [ - 4736, + 4735, { "_inc": [ - 4730 + 4729 ], "_set": [ - 4741 + 4740 ], "where": [ - 4728, + 4727, "tournament_stage_windows_bool_exp!" ] } ], "update_tournament_stage_windows_by_pk": [ - 4719, + 4718, { "_inc": [ - 4730 + 4729 ], "_set": [ - 4741 + 4740 ], "pk_columns": [ - 4739, + 4738, "tournament_stage_windows_pk_columns_input!" ] } ], "update_tournament_stage_windows_many": [ - 4736, + 4735, { "updates": [ - 4753, + 4752, "[tournament_stage_windows_updates!]!" ] } ], "update_tournament_stages": [ - 4783, + 4782, { "_append": [ - 4768 + 4767 ], "_delete_at_path": [ - 4774 + 4773 ], "_delete_elem": [ - 4775 + 4774 ], "_delete_key": [ - 4776 + 4775 ], "_inc": [ - 4777 + 4776 ], "_prepend": [ - 4788 + 4787 ], "_set": [ - 4792 + 4791 ], "where": [ - 4772, + 4771, "tournament_stages_bool_exp!" ] } ], "update_tournament_stages_by_pk": [ - 4760, + 4759, { "_append": [ - 4768 + 4767 ], "_delete_at_path": [ - 4774 + 4773 ], "_delete_elem": [ - 4775 + 4774 ], "_delete_key": [ - 4776 + 4775 ], "_inc": [ - 4777 + 4776 ], "_prepend": [ - 4788 + 4787 ], "_set": [ - 4792 + 4791 ], "pk_columns": [ - 4787, + 4786, "tournament_stages_pk_columns_input!" ] } ], "update_tournament_stages_many": [ - 4783, + 4782, { "updates": [ - 4804, + 4803, "[tournament_stages_updates!]!" ] } ], "update_tournament_team_invites": [ - 4828, + 4827, { "_inc": [ - 4822 + 4821 ], "_set": [ - 4833 + 4832 ], "where": [ - 4820, + 4819, "tournament_team_invites_bool_exp!" ] } ], "update_tournament_team_invites_by_pk": [ - 4811, + 4810, { "_inc": [ - 4822 + 4821 ], "_set": [ - 4833 + 4832 ], "pk_columns": [ - 4831, + 4830, "tournament_team_invites_pk_columns_input!" ] } ], "update_tournament_team_invites_many": [ - 4828, + 4827, { "updates": [ - 4845, + 4844, "[tournament_team_invites_updates!]!" ] } ], "update_tournament_team_roster": [ - 4869, + 4868, { "_inc": [ - 4863 + 4862 ], "_set": [ - 4874 + 4873 ], "where": [ - 4861, + 4860, "tournament_team_roster_bool_exp!" ] } ], "update_tournament_team_roster_by_pk": [ - 4852, + 4851, { "_inc": [ - 4863 + 4862 ], "_set": [ - 4874 + 4873 ], "pk_columns": [ - 4872, + 4871, "tournament_team_roster_pk_columns_input!" ] } ], "update_tournament_team_roster_many": [ - 4869, + 4868, { "updates": [ - 4886, + 4885, "[tournament_team_roster_updates!]!" ] } ], "update_tournament_teams": [ - 4910, + 4909, { "_inc": [ - 4904 + 4903 ], "_set": [ - 4916 + 4915 ], "where": [ - 4902, + 4901, "tournament_teams_bool_exp!" ] } ], "update_tournament_teams_by_pk": [ - 4893, + 4892, { "_inc": [ - 4904 + 4903 ], "_set": [ - 4916 + 4915 ], "pk_columns": [ - 4914, + 4913, "tournament_teams_pk_columns_input!" ] } ], "update_tournament_teams_many": [ - 4910, + 4909, { "updates": [ - 4928, + 4927, "[tournament_teams_updates!]!" ] } ], "update_tournaments": [ - 4964, + 4963, { "_inc": [ - 4958 + 4957 ], "_set": [ - 4980 + 4979 ], "where": [ - 4956, + 4955, "tournaments_bool_exp!" ] } ], "update_tournaments_by_pk": [ - 4935, + 4934, { "_inc": [ - 4958 + 4957 ], "_set": [ - 4980 + 4979 ], "pk_columns": [ - 4968, + 4967, "tournaments_pk_columns_input!" ] } ], "update_tournaments_many": [ - 4964, + 4963, { "updates": [ - 4992, + 4991, "[tournaments_updates!]!" ] } ], "update_v_match_captains": [ - 5164, + 5163, { "_inc": [ - 5160 + 5159 ], "_set": [ - 5168 + 5167 ], "where": [ - 5159, + 5158, "v_match_captains_bool_exp!" ] } ], "update_v_match_captains_many": [ - 5164, + 5163, { "updates": [ - 5175, + 5174, "[v_match_captains_updates!]!" ] } ], "update_v_match_map_backup_rounds": [ - 5275, + 5274, { "_inc": [ - 5271 + 5270 ], "_set": [ - 5278 + 5277 ], "where": [ - 5270, + 5269, "v_match_map_backup_rounds_bool_exp!" ] } ], "update_v_match_map_backup_rounds_many": [ - 5275, + 5274, { "updates": [ - 5285, + 5284, "[v_match_map_backup_rounds_updates!]!" ] } ], "update_v_player_match_map_hltv": [ - 5497, + 5496, { "_inc": [ - 5491 + 5490 ], "_set": [ - 5500 + 5499 ], "where": [ - 5490, + 5489, "v_player_match_map_hltv_bool_exp!" ] } ], "update_v_player_match_map_hltv_many": [ - 5497, + 5496, { "updates": [ - 5511, + 5510, "[v_player_match_map_hltv_updates!]!" ] } ], "update_v_pool_maps": [ - 5656, + 5655, { "_set": [ - 5661 + 5660 ], "where": [ - 5650, + 5649, "v_pool_maps_bool_exp!" ] } ], "update_v_pool_maps_many": [ - 5656, + 5655, { "updates": [ - 5664, + 5663, "[v_pool_maps_updates!]!" ] } ], "update_v_team_stage_results": [ - 5750, + 5749, { "_inc": [ - 5744 + 5743 ], "_set": [ - 5764 + 5763 ], "where": [ - 5742, + 5741, "v_team_stage_results_bool_exp!" ] } ], "update_v_team_stage_results_by_pk": [ - 5723, + 5722, { "_inc": [ - 5744 + 5743 ], "_set": [ - 5764 + 5763 ], "pk_columns": [ - 5754, + 5753, "v_team_stage_results_pk_columns_input!" ] } ], "update_v_team_stage_results_many": [ - 5750, + 5749, { "updates": [ - 5776, + 5775, "[v_team_stage_results_updates!]!" ] } @@ -160538,19 +160530,19 @@ export default { 83, { "game_server_node_id": [ - 4999, + 4998, "uuid!" ] } ], "watchDemo": [ - 100, + 99, { "match_map_demo_id": [ - 4999 + 4998 ], "match_map_id": [ - 4999, + 4998, "uuid!" ] } @@ -160581,10 +160573,10 @@ export default { }, "Subscription": { "_map_pool": [ - 101, + 100, { "distinct_on": [ - 113, + 112, "[_map_pool_select_column!]" ], "limit": [ @@ -160594,19 +160586,19 @@ export default { 40 ], "order_by": [ - 111, + 110, "[_map_pool_order_by!]" ], "where": [ - 104 + 103 ] } ], "_map_pool_aggregate": [ - 102, + 101, { "distinct_on": [ - 113, + 112, "[_map_pool_select_column!]" ], "limit": [ @@ -160616,48 +160608,48 @@ export default { 40 ], "order_by": [ - 111, + 110, "[_map_pool_order_by!]" ], "where": [ - 104 + 103 ] } ], "_map_pool_by_pk": [ - 101, + 100, { "map_id": [ - 4999, + 4998, "uuid!" ], "map_pool_id": [ - 4999, + 4998, "uuid!" ] } ], "_map_pool_stream": [ - 101, + 100, { "batch_size": [ 40, "Int!" ], "cursor": [ - 115, + 114, "[_map_pool_stream_cursor_input]!" ], "where": [ - 104 + 103 ] } ], "abandoned_matches": [ - 120, + 119, { "distinct_on": [ - 141, + 140, "[abandoned_matches_select_column!]" ], "limit": [ @@ -160667,19 +160659,19 @@ export default { 40 ], "order_by": [ - 139, + 138, "[abandoned_matches_order_by!]" ], "where": [ - 129 + 128 ] } ], "abandoned_matches_aggregate": [ - 121, + 120, { "distinct_on": [ - 141, + 140, "[abandoned_matches_select_column!]" ], "limit": [ @@ -160689,44 +160681,44 @@ export default { 40 ], "order_by": [ - 139, + 138, "[abandoned_matches_order_by!]" ], "where": [ - 129 + 128 ] } ], "abandoned_matches_by_pk": [ - 120, + 119, { "id": [ - 4999, + 4998, "uuid!" ] } ], "abandoned_matches_stream": [ - 120, + 119, { "batch_size": [ 40, "Int!" ], "cursor": [ - 149, + 148, "[abandoned_matches_stream_cursor_input]!" ], "where": [ - 129 + 128 ] } ], "api_keys": [ - 161, + 160, { "distinct_on": [ - 175, + 174, "[api_keys_select_column!]" ], "limit": [ @@ -160736,19 +160728,19 @@ export default { 40 ], "order_by": [ - 173, + 172, "[api_keys_order_by!]" ], "where": [ - 165 + 164 ] } ], "api_keys_aggregate": [ - 162, + 161, { "distinct_on": [ - 175, + 174, "[api_keys_select_column!]" ], "limit": [ @@ -160758,44 +160750,44 @@ export default { 40 ], "order_by": [ - 173, + 172, "[api_keys_order_by!]" ], "where": [ - 165 + 164 ] } ], "api_keys_by_pk": [ - 161, + 160, { "id": [ - 4999, + 4998, "uuid!" ] } ], "api_keys_stream": [ - 161, + 160, { "batch_size": [ 40, "Int!" ], "cursor": [ - 180, + 179, "[api_keys_stream_cursor_input]!" ], "where": [ - 165 + 164 ] } ], "award_recipients": [ - 189, + 188, { "distinct_on": [ - 210, + 209, "[award_recipients_select_column!]" ], "limit": [ @@ -160805,19 +160797,19 @@ export default { 40 ], "order_by": [ - 208, + 207, "[award_recipients_order_by!]" ], "where": [ - 198 + 197 ] } ], "award_recipients_aggregate": [ - 190, + 189, { "distinct_on": [ - 210, + 209, "[award_recipients_select_column!]" ], "limit": [ @@ -160827,44 +160819,44 @@ export default { 40 ], "order_by": [ - 208, + 207, "[award_recipients_order_by!]" ], "where": [ - 198 + 197 ] } ], "award_recipients_by_pk": [ - 189, + 188, { "id": [ - 4999, + 4998, "uuid!" ] } ], "award_recipients_stream": [ - 189, + 188, { "batch_size": [ 40, "Int!" ], "cursor": [ - 218, + 217, "[award_recipients_stream_cursor_input]!" ], "where": [ - 198 + 197 ] } ], "awards": [ - 230, + 229, { "distinct_on": [ - 245, + 244, "[awards_select_column!]" ], "limit": [ @@ -160874,19 +160866,19 @@ export default { 40 ], "order_by": [ - 243, + 242, "[awards_order_by!]" ], "where": [ - 234 + 233 ] } ], "awards_aggregate": [ - 231, + 230, { "distinct_on": [ - 245, + 244, "[awards_select_column!]" ], "limit": [ @@ -160896,44 +160888,44 @@ export default { 40 ], "order_by": [ - 243, + 242, "[awards_order_by!]" ], "where": [ - 234 + 233 ] } ], "awards_by_pk": [ - 230, + 229, { "id": [ - 4999, + 4998, "uuid!" ] } ], "awards_stream": [ - 230, + 229, { "batch_size": [ 40, "Int!" ], "cursor": [ - 250, + 249, "[awards_stream_cursor_input]!" ], "where": [ - 234 + 233 ] } ], "clip_render_jobs": [ - 263, + 262, { "distinct_on": [ - 291, + 290, "[clip_render_jobs_select_column!]" ], "limit": [ @@ -160943,19 +160935,19 @@ export default { 40 ], "order_by": [ - 288, + 287, "[clip_render_jobs_order_by!]" ], "where": [ - 275 + 274 ] } ], "clip_render_jobs_aggregate": [ - 264, + 263, { "distinct_on": [ - 291, + 290, "[clip_render_jobs_select_column!]" ], "limit": [ @@ -160965,44 +160957,44 @@ export default { 40 ], "order_by": [ - 288, + 287, "[clip_render_jobs_order_by!]" ], "where": [ - 275 + 274 ] } ], "clip_render_jobs_by_pk": [ - 263, + 262, { "id": [ - 4999, + 4998, "uuid!" ] } ], "clip_render_jobs_stream": [ - 263, + 262, { "batch_size": [ 40, "Int!" ], "cursor": [ - 301, + 300, "[clip_render_jobs_stream_cursor_input]!" ], "where": [ - 275 + 274 ] } ], "custom_pages": [ - 315, + 314, { "distinct_on": [ - 334, + 333, "[custom_pages_select_column!]" ], "limit": [ @@ -161012,19 +161004,19 @@ export default { 40 ], "order_by": [ - 331, + 330, "[custom_pages_order_by!]" ], "where": [ - 320 + 319 ] } ], "custom_pages_aggregate": [ - 316, + 315, { "distinct_on": [ - 334, + 333, "[custom_pages_select_column!]" ], "limit": [ @@ -161034,44 +161026,44 @@ export default { 40 ], "order_by": [ - 331, + 330, "[custom_pages_order_by!]" ], "where": [ - 320 + 319 ] } ], "custom_pages_by_pk": [ - 315, + 314, { "id": [ - 4999, + 4998, "uuid!" ] } ], "custom_pages_stream": [ - 315, + 314, { "batch_size": [ 40, "Int!" ], "cursor": [ - 339, + 338, "[custom_pages_stream_cursor_input]!" ], "where": [ - 320 + 319 ] } ], "db_backups": [ - 347, + 346, { "distinct_on": [ - 361, + 360, "[db_backups_select_column!]" ], "limit": [ @@ -161081,19 +161073,19 @@ export default { 40 ], "order_by": [ - 359, + 358, "[db_backups_order_by!]" ], "where": [ - 351 + 350 ] } ], "db_backups_aggregate": [ - 348, + 347, { "distinct_on": [ - 361, + 360, "[db_backups_select_column!]" ], "limit": [ @@ -161103,44 +161095,44 @@ export default { 40 ], "order_by": [ - 359, + 358, "[db_backups_order_by!]" ], "where": [ - 351 + 350 ] } ], "db_backups_by_pk": [ - 347, + 346, { "id": [ - 4999, + 4998, "uuid!" ] } ], "db_backups_stream": [ - 347, + 346, { "batch_size": [ 40, "Int!" ], "cursor": [ - 366, + 365, "[db_backups_stream_cursor_input]!" ], "where": [ - 351 + 350 ] } ], "draft_game_picks": [ - 374, + 373, { "distinct_on": [ - 397, + 396, "[draft_game_picks_select_column!]" ], "limit": [ @@ -161150,19 +161142,19 @@ export default { 40 ], "order_by": [ - 395, + 394, "[draft_game_picks_order_by!]" ], "where": [ - 385 + 384 ] } ], "draft_game_picks_aggregate": [ - 375, + 374, { "distinct_on": [ - 397, + 396, "[draft_game_picks_select_column!]" ], "limit": [ @@ -161172,44 +161164,44 @@ export default { 40 ], "order_by": [ - 395, + 394, "[draft_game_picks_order_by!]" ], "where": [ - 385 + 384 ] } ], "draft_game_picks_by_pk": [ - 374, + 373, { "id": [ - 4999, + 4998, "uuid!" ] } ], "draft_game_picks_stream": [ - 374, + 373, { "batch_size": [ 40, "Int!" ], "cursor": [ - 407, + 406, "[draft_game_picks_stream_cursor_input]!" ], "where": [ - 385 + 384 ] } ], "draft_game_players": [ - 419, + 418, { "distinct_on": [ - 442, + 441, "[draft_game_players_select_column!]" ], "limit": [ @@ -161219,19 +161211,19 @@ export default { 40 ], "order_by": [ - 440, + 439, "[draft_game_players_order_by!]" ], "where": [ - 430 + 429 ] } ], "draft_game_players_aggregate": [ - 420, + 419, { "distinct_on": [ - 442, + 441, "[draft_game_players_select_column!]" ], "limit": [ @@ -161241,48 +161233,48 @@ export default { 40 ], "order_by": [ - 440, + 439, "[draft_game_players_order_by!]" ], "where": [ - 430 + 429 ] } ], "draft_game_players_by_pk": [ - 419, + 418, { "draft_game_id": [ - 4999, + 4998, "uuid!" ], "steam_id": [ - 258, + 257, "bigint!" ] } ], "draft_game_players_stream": [ - 419, + 418, { "batch_size": [ 40, "Int!" ], "cursor": [ - 452, + 451, "[draft_game_players_stream_cursor_input]!" ], "where": [ - 430 + 429 ] } ], "draft_games": [ - 464, + 463, { "distinct_on": [ - 488, + 487, "[draft_games_select_column!]" ], "limit": [ @@ -161292,19 +161284,19 @@ export default { 40 ], "order_by": [ - 486, + 485, "[draft_games_order_by!]" ], "where": [ - 475 + 474 ] } ], "draft_games_aggregate": [ - 465, + 464, { "distinct_on": [ - 488, + 487, "[draft_games_select_column!]" ], "limit": [ @@ -161314,44 +161306,44 @@ export default { 40 ], "order_by": [ - 486, + 485, "[draft_games_order_by!]" ], "where": [ - 475 + 474 ] } ], "draft_games_by_pk": [ - 464, + 463, { "id": [ - 4999, + 4998, "uuid!" ] } ], "draft_games_stream": [ - 464, + 463, { "batch_size": [ 40, "Int!" ], "cursor": [ - 498, + 497, "[draft_games_stream_cursor_input]!" ], "where": [ - 475 + 474 ] } ], "e_award_sources": [ - 510, + 509, { "distinct_on": [ - 524, + 523, "[e_award_sources_select_column!]" ], "limit": [ @@ -161361,19 +161353,19 @@ export default { 40 ], "order_by": [ - 522, + 521, "[e_award_sources_order_by!]" ], "where": [ - 513 + 512 ] } ], "e_award_sources_aggregate": [ - 511, + 510, { "distinct_on": [ - 524, + 523, "[e_award_sources_select_column!]" ], "limit": [ @@ -161383,16 +161375,16 @@ export default { 40 ], "order_by": [ - 522, + 521, "[e_award_sources_order_by!]" ], "where": [ - 513 + 512 ] } ], "e_award_sources_by_pk": [ - 510, + 509, { "value": [ 80, @@ -161401,26 +161393,26 @@ export default { } ], "e_award_sources_stream": [ - 510, + 509, { "batch_size": [ 40, "Int!" ], "cursor": [ - 526, + 525, "[e_award_sources_stream_cursor_input]!" ], "where": [ - 513 + 512 ] } ], "e_award_tiers": [ - 530, + 529, { "distinct_on": [ - 544, + 543, "[e_award_tiers_select_column!]" ], "limit": [ @@ -161430,19 +161422,19 @@ export default { 40 ], "order_by": [ - 542, + 541, "[e_award_tiers_order_by!]" ], "where": [ - 533 + 532 ] } ], "e_award_tiers_aggregate": [ - 531, + 530, { "distinct_on": [ - 544, + 543, "[e_award_tiers_select_column!]" ], "limit": [ @@ -161452,16 +161444,16 @@ export default { 40 ], "order_by": [ - 542, + 541, "[e_award_tiers_order_by!]" ], "where": [ - 533 + 532 ] } ], "e_award_tiers_by_pk": [ - 530, + 529, { "value": [ 80, @@ -161470,26 +161462,26 @@ export default { } ], "e_award_tiers_stream": [ - 530, + 529, { "batch_size": [ 40, "Int!" ], "cursor": [ - 546, + 545, "[e_award_tiers_stream_cursor_input]!" ], "where": [ - 533 + 532 ] } ], "e_check_in_settings": [ - 550, + 549, { "distinct_on": [ - 564, + 563, "[e_check_in_settings_select_column!]" ], "limit": [ @@ -161499,19 +161491,19 @@ export default { 40 ], "order_by": [ - 562, + 561, "[e_check_in_settings_order_by!]" ], "where": [ - 553 + 552 ] } ], "e_check_in_settings_aggregate": [ - 551, + 550, { "distinct_on": [ - 564, + 563, "[e_check_in_settings_select_column!]" ], "limit": [ @@ -161521,16 +161513,16 @@ export default { 40 ], "order_by": [ - 562, + 561, "[e_check_in_settings_order_by!]" ], "where": [ - 553 + 552 ] } ], "e_check_in_settings_by_pk": [ - 550, + 549, { "value": [ 80, @@ -161539,26 +161531,26 @@ export default { } ], "e_check_in_settings_stream": [ - 550, + 549, { "batch_size": [ 40, "Int!" ], "cursor": [ - 566, + 565, "[e_check_in_settings_stream_cursor_input]!" ], "where": [ - 553 + 552 ] } ], "e_draft_game_captain_selection": [ - 570, + 569, { "distinct_on": [ - 585, + 584, "[e_draft_game_captain_selection_select_column!]" ], "limit": [ @@ -161568,19 +161560,19 @@ export default { 40 ], "order_by": [ - 583, + 582, "[e_draft_game_captain_selection_order_by!]" ], "where": [ - 573 + 572 ] } ], "e_draft_game_captain_selection_aggregate": [ - 571, + 570, { "distinct_on": [ - 585, + 584, "[e_draft_game_captain_selection_select_column!]" ], "limit": [ @@ -161590,16 +161582,16 @@ export default { 40 ], "order_by": [ - 583, + 582, "[e_draft_game_captain_selection_order_by!]" ], "where": [ - 573 + 572 ] } ], "e_draft_game_captain_selection_by_pk": [ - 570, + 569, { "value": [ 80, @@ -161608,26 +161600,26 @@ export default { } ], "e_draft_game_captain_selection_stream": [ - 570, + 569, { "batch_size": [ 40, "Int!" ], "cursor": [ - 587, + 586, "[e_draft_game_captain_selection_stream_cursor_input]!" ], "where": [ - 573 + 572 ] } ], "e_draft_game_draft_order": [ - 591, + 590, { "distinct_on": [ - 606, + 605, "[e_draft_game_draft_order_select_column!]" ], "limit": [ @@ -161637,19 +161629,19 @@ export default { 40 ], "order_by": [ - 604, + 603, "[e_draft_game_draft_order_order_by!]" ], "where": [ - 594 + 593 ] } ], "e_draft_game_draft_order_aggregate": [ - 592, + 591, { "distinct_on": [ - 606, + 605, "[e_draft_game_draft_order_select_column!]" ], "limit": [ @@ -161659,16 +161651,16 @@ export default { 40 ], "order_by": [ - 604, + 603, "[e_draft_game_draft_order_order_by!]" ], "where": [ - 594 + 593 ] } ], "e_draft_game_draft_order_by_pk": [ - 591, + 590, { "value": [ 80, @@ -161677,26 +161669,26 @@ export default { } ], "e_draft_game_draft_order_stream": [ - 591, + 590, { "batch_size": [ 40, "Int!" ], "cursor": [ - 608, + 607, "[e_draft_game_draft_order_stream_cursor_input]!" ], "where": [ - 594 + 593 ] } ], "e_draft_game_mode": [ - 612, + 611, { "distinct_on": [ - 627, + 626, "[e_draft_game_mode_select_column!]" ], "limit": [ @@ -161706,19 +161698,19 @@ export default { 40 ], "order_by": [ - 625, + 624, "[e_draft_game_mode_order_by!]" ], "where": [ - 615 + 614 ] } ], "e_draft_game_mode_aggregate": [ - 613, + 612, { "distinct_on": [ - 627, + 626, "[e_draft_game_mode_select_column!]" ], "limit": [ @@ -161728,16 +161720,16 @@ export default { 40 ], "order_by": [ - 625, + 624, "[e_draft_game_mode_order_by!]" ], "where": [ - 615 + 614 ] } ], "e_draft_game_mode_by_pk": [ - 612, + 611, { "value": [ 80, @@ -161746,26 +161738,26 @@ export default { } ], "e_draft_game_mode_stream": [ - 612, + 611, { "batch_size": [ 40, "Int!" ], "cursor": [ - 629, + 628, "[e_draft_game_mode_stream_cursor_input]!" ], "where": [ - 615 + 614 ] } ], "e_draft_game_player_status": [ - 633, + 632, { "distinct_on": [ - 648, + 647, "[e_draft_game_player_status_select_column!]" ], "limit": [ @@ -161775,19 +161767,19 @@ export default { 40 ], "order_by": [ - 646, + 645, "[e_draft_game_player_status_order_by!]" ], "where": [ - 636 + 635 ] } ], "e_draft_game_player_status_aggregate": [ - 634, + 633, { "distinct_on": [ - 648, + 647, "[e_draft_game_player_status_select_column!]" ], "limit": [ @@ -161797,16 +161789,16 @@ export default { 40 ], "order_by": [ - 646, + 645, "[e_draft_game_player_status_order_by!]" ], "where": [ - 636 + 635 ] } ], "e_draft_game_player_status_by_pk": [ - 633, + 632, { "value": [ 80, @@ -161815,26 +161807,26 @@ export default { } ], "e_draft_game_player_status_stream": [ - 633, + 632, { "batch_size": [ 40, "Int!" ], "cursor": [ - 650, + 649, "[e_draft_game_player_status_stream_cursor_input]!" ], "where": [ - 636 + 635 ] } ], "e_draft_game_status": [ - 654, + 653, { "distinct_on": [ - 669, + 668, "[e_draft_game_status_select_column!]" ], "limit": [ @@ -161844,19 +161836,19 @@ export default { 40 ], "order_by": [ - 667, + 666, "[e_draft_game_status_order_by!]" ], "where": [ - 657 + 656 ] } ], "e_draft_game_status_aggregate": [ - 655, + 654, { "distinct_on": [ - 669, + 668, "[e_draft_game_status_select_column!]" ], "limit": [ @@ -161866,16 +161858,16 @@ export default { 40 ], "order_by": [ - 667, + 666, "[e_draft_game_status_order_by!]" ], "where": [ - 657 + 656 ] } ], "e_draft_game_status_by_pk": [ - 654, + 653, { "value": [ 80, @@ -161884,26 +161876,26 @@ export default { } ], "e_draft_game_status_stream": [ - 654, + 653, { "batch_size": [ 40, "Int!" ], "cursor": [ - 671, + 670, "[e_draft_game_status_stream_cursor_input]!" ], "where": [ - 657 + 656 ] } ], "e_event_media_access": [ - 675, + 674, { "distinct_on": [ - 689, + 688, "[e_event_media_access_select_column!]" ], "limit": [ @@ -161913,19 +161905,19 @@ export default { 40 ], "order_by": [ - 687, + 686, "[e_event_media_access_order_by!]" ], "where": [ - 678 + 677 ] } ], "e_event_media_access_aggregate": [ - 676, + 675, { "distinct_on": [ - 689, + 688, "[e_event_media_access_select_column!]" ], "limit": [ @@ -161935,16 +161927,16 @@ export default { 40 ], "order_by": [ - 687, + 686, "[e_event_media_access_order_by!]" ], "where": [ - 678 + 677 ] } ], "e_event_media_access_by_pk": [ - 675, + 674, { "value": [ 80, @@ -161953,26 +161945,26 @@ export default { } ], "e_event_media_access_stream": [ - 675, + 674, { "batch_size": [ 40, "Int!" ], "cursor": [ - 691, + 690, "[e_event_media_access_stream_cursor_input]!" ], "where": [ - 678 + 677 ] } ], "e_event_visibility": [ - 695, + 694, { "distinct_on": [ - 709, + 708, "[e_event_visibility_select_column!]" ], "limit": [ @@ -161982,19 +161974,19 @@ export default { 40 ], "order_by": [ - 707, + 706, "[e_event_visibility_order_by!]" ], "where": [ - 698 + 697 ] } ], "e_event_visibility_aggregate": [ - 696, + 695, { "distinct_on": [ - 709, + 708, "[e_event_visibility_select_column!]" ], "limit": [ @@ -162004,16 +161996,16 @@ export default { 40 ], "order_by": [ - 707, + 706, "[e_event_visibility_order_by!]" ], "where": [ - 698 + 697 ] } ], "e_event_visibility_by_pk": [ - 695, + 694, { "value": [ 80, @@ -162022,26 +162014,26 @@ export default { } ], "e_event_visibility_stream": [ - 695, + 694, { "batch_size": [ 40, "Int!" ], "cursor": [ - 711, + 710, "[e_event_visibility_stream_cursor_input]!" ], "where": [ - 698 + 697 ] } ], "e_friend_status": [ - 715, + 714, { "distinct_on": [ - 730, + 729, "[e_friend_status_select_column!]" ], "limit": [ @@ -162051,19 +162043,19 @@ export default { 40 ], "order_by": [ - 728, + 727, "[e_friend_status_order_by!]" ], "where": [ - 718 + 717 ] } ], "e_friend_status_aggregate": [ - 716, + 715, { "distinct_on": [ - 730, + 729, "[e_friend_status_select_column!]" ], "limit": [ @@ -162073,16 +162065,16 @@ export default { 40 ], "order_by": [ - 728, + 727, "[e_friend_status_order_by!]" ], "where": [ - 718 + 717 ] } ], "e_friend_status_by_pk": [ - 715, + 714, { "value": [ 80, @@ -162091,26 +162083,26 @@ export default { } ], "e_friend_status_stream": [ - 715, + 714, { "batch_size": [ 40, "Int!" ], "cursor": [ - 732, + 731, "[e_friend_status_stream_cursor_input]!" ], "where": [ - 718 + 717 ] } ], "e_game_cfg_types": [ - 736, + 735, { "distinct_on": [ - 750, + 749, "[e_game_cfg_types_select_column!]" ], "limit": [ @@ -162120,19 +162112,19 @@ export default { 40 ], "order_by": [ - 748, + 747, "[e_game_cfg_types_order_by!]" ], "where": [ - 739 + 738 ] } ], "e_game_cfg_types_aggregate": [ - 737, + 736, { "distinct_on": [ - 750, + 749, "[e_game_cfg_types_select_column!]" ], "limit": [ @@ -162142,16 +162134,16 @@ export default { 40 ], "order_by": [ - 748, + 747, "[e_game_cfg_types_order_by!]" ], "where": [ - 739 + 738 ] } ], "e_game_cfg_types_by_pk": [ - 736, + 735, { "value": [ 80, @@ -162160,26 +162152,26 @@ export default { } ], "e_game_cfg_types_stream": [ - 736, + 735, { "batch_size": [ 40, "Int!" ], "cursor": [ - 752, + 751, "[e_game_cfg_types_stream_cursor_input]!" ], "where": [ - 739 + 738 ] } ], "e_game_server_node_statuses": [ - 756, + 755, { "distinct_on": [ - 771, + 770, "[e_game_server_node_statuses_select_column!]" ], "limit": [ @@ -162189,19 +162181,19 @@ export default { 40 ], "order_by": [ - 769, + 768, "[e_game_server_node_statuses_order_by!]" ], "where": [ - 759 + 758 ] } ], "e_game_server_node_statuses_aggregate": [ - 757, + 756, { "distinct_on": [ - 771, + 770, "[e_game_server_node_statuses_select_column!]" ], "limit": [ @@ -162211,16 +162203,16 @@ export default { 40 ], "order_by": [ - 769, + 768, "[e_game_server_node_statuses_order_by!]" ], "where": [ - 759 + 758 ] } ], "e_game_server_node_statuses_by_pk": [ - 756, + 755, { "value": [ 80, @@ -162229,26 +162221,26 @@ export default { } ], "e_game_server_node_statuses_stream": [ - 756, + 755, { "batch_size": [ 40, "Int!" ], "cursor": [ - 773, + 772, "[e_game_server_node_statuses_stream_cursor_input]!" ], "where": [ - 759 + 758 ] } ], "e_league_movement_types": [ - 777, + 776, { "distinct_on": [ - 792, + 791, "[e_league_movement_types_select_column!]" ], "limit": [ @@ -162258,19 +162250,19 @@ export default { 40 ], "order_by": [ - 790, + 789, "[e_league_movement_types_order_by!]" ], "where": [ - 780 + 779 ] } ], "e_league_movement_types_aggregate": [ - 778, + 777, { "distinct_on": [ - 792, + 791, "[e_league_movement_types_select_column!]" ], "limit": [ @@ -162280,16 +162272,16 @@ export default { 40 ], "order_by": [ - 790, + 789, "[e_league_movement_types_order_by!]" ], "where": [ - 780 + 779 ] } ], "e_league_movement_types_by_pk": [ - 777, + 776, { "value": [ 80, @@ -162298,26 +162290,26 @@ export default { } ], "e_league_movement_types_stream": [ - 777, + 776, { "batch_size": [ 40, "Int!" ], "cursor": [ - 794, + 793, "[e_league_movement_types_stream_cursor_input]!" ], "where": [ - 780 + 779 ] } ], "e_league_proposal_statuses": [ - 798, + 797, { "distinct_on": [ - 813, + 812, "[e_league_proposal_statuses_select_column!]" ], "limit": [ @@ -162327,19 +162319,19 @@ export default { 40 ], "order_by": [ - 811, + 810, "[e_league_proposal_statuses_order_by!]" ], "where": [ - 801 + 800 ] } ], "e_league_proposal_statuses_aggregate": [ - 799, + 798, { "distinct_on": [ - 813, + 812, "[e_league_proposal_statuses_select_column!]" ], "limit": [ @@ -162349,16 +162341,16 @@ export default { 40 ], "order_by": [ - 811, + 810, "[e_league_proposal_statuses_order_by!]" ], "where": [ - 801 + 800 ] } ], "e_league_proposal_statuses_by_pk": [ - 798, + 797, { "value": [ 80, @@ -162367,26 +162359,26 @@ export default { } ], "e_league_proposal_statuses_stream": [ - 798, + 797, { "batch_size": [ 40, "Int!" ], "cursor": [ - 815, + 814, "[e_league_proposal_statuses_stream_cursor_input]!" ], "where": [ - 801 + 800 ] } ], "e_league_registration_statuses": [ - 819, + 818, { "distinct_on": [ - 834, + 833, "[e_league_registration_statuses_select_column!]" ], "limit": [ @@ -162396,19 +162388,19 @@ export default { 40 ], "order_by": [ - 832, + 831, "[e_league_registration_statuses_order_by!]" ], "where": [ - 822 + 821 ] } ], "e_league_registration_statuses_aggregate": [ - 820, + 819, { "distinct_on": [ - 834, + 833, "[e_league_registration_statuses_select_column!]" ], "limit": [ @@ -162418,16 +162410,16 @@ export default { 40 ], "order_by": [ - 832, + 831, "[e_league_registration_statuses_order_by!]" ], "where": [ - 822 + 821 ] } ], "e_league_registration_statuses_by_pk": [ - 819, + 818, { "value": [ 80, @@ -162436,26 +162428,26 @@ export default { } ], "e_league_registration_statuses_stream": [ - 819, + 818, { "batch_size": [ 40, "Int!" ], "cursor": [ - 836, + 835, "[e_league_registration_statuses_stream_cursor_input]!" ], "where": [ - 822 + 821 ] } ], "e_league_season_statuses": [ - 840, + 839, { "distinct_on": [ - 855, + 854, "[e_league_season_statuses_select_column!]" ], "limit": [ @@ -162465,19 +162457,19 @@ export default { 40 ], "order_by": [ - 853, + 852, "[e_league_season_statuses_order_by!]" ], "where": [ - 843 + 842 ] } ], "e_league_season_statuses_aggregate": [ - 841, + 840, { "distinct_on": [ - 855, + 854, "[e_league_season_statuses_select_column!]" ], "limit": [ @@ -162487,16 +162479,16 @@ export default { 40 ], "order_by": [ - 853, + 852, "[e_league_season_statuses_order_by!]" ], "where": [ - 843 + 842 ] } ], "e_league_season_statuses_by_pk": [ - 840, + 839, { "value": [ 80, @@ -162505,26 +162497,26 @@ export default { } ], "e_league_season_statuses_stream": [ - 840, + 839, { "batch_size": [ 40, "Int!" ], "cursor": [ - 857, + 856, "[e_league_season_statuses_stream_cursor_input]!" ], "where": [ - 843 + 842 ] } ], "e_lobby_access": [ - 861, + 860, { "distinct_on": [ - 876, + 875, "[e_lobby_access_select_column!]" ], "limit": [ @@ -162534,19 +162526,19 @@ export default { 40 ], "order_by": [ - 874, + 873, "[e_lobby_access_order_by!]" ], "where": [ - 864 + 863 ] } ], "e_lobby_access_aggregate": [ - 862, + 861, { "distinct_on": [ - 876, + 875, "[e_lobby_access_select_column!]" ], "limit": [ @@ -162556,16 +162548,16 @@ export default { 40 ], "order_by": [ - 874, + 873, "[e_lobby_access_order_by!]" ], "where": [ - 864 + 863 ] } ], "e_lobby_access_by_pk": [ - 861, + 860, { "value": [ 80, @@ -162574,26 +162566,26 @@ export default { } ], "e_lobby_access_stream": [ - 861, + 860, { "batch_size": [ 40, "Int!" ], "cursor": [ - 878, + 877, "[e_lobby_access_stream_cursor_input]!" ], "where": [ - 864 + 863 ] } ], "e_lobby_player_status": [ - 882, + 881, { "distinct_on": [ - 896, + 895, "[e_lobby_player_status_select_column!]" ], "limit": [ @@ -162603,19 +162595,19 @@ export default { 40 ], "order_by": [ - 894, + 893, "[e_lobby_player_status_order_by!]" ], "where": [ - 885 + 884 ] } ], "e_lobby_player_status_aggregate": [ - 883, + 882, { "distinct_on": [ - 896, + 895, "[e_lobby_player_status_select_column!]" ], "limit": [ @@ -162625,16 +162617,16 @@ export default { 40 ], "order_by": [ - 894, + 893, "[e_lobby_player_status_order_by!]" ], "where": [ - 885 + 884 ] } ], "e_lobby_player_status_by_pk": [ - 882, + 881, { "value": [ 80, @@ -162643,26 +162635,26 @@ export default { } ], "e_lobby_player_status_stream": [ - 882, + 881, { "batch_size": [ 40, "Int!" ], "cursor": [ - 898, + 897, "[e_lobby_player_status_stream_cursor_input]!" ], "where": [ - 885 + 884 ] } ], "e_map_pool_types": [ - 902, + 901, { "distinct_on": [ - 917, + 916, "[e_map_pool_types_select_column!]" ], "limit": [ @@ -162672,19 +162664,19 @@ export default { 40 ], "order_by": [ - 915, + 914, "[e_map_pool_types_order_by!]" ], "where": [ - 905 + 904 ] } ], "e_map_pool_types_aggregate": [ - 903, + 902, { "distinct_on": [ - 917, + 916, "[e_map_pool_types_select_column!]" ], "limit": [ @@ -162694,16 +162686,16 @@ export default { 40 ], "order_by": [ - 915, + 914, "[e_map_pool_types_order_by!]" ], "where": [ - 905 + 904 ] } ], "e_map_pool_types_by_pk": [ - 902, + 901, { "value": [ 80, @@ -162712,26 +162704,26 @@ export default { } ], "e_map_pool_types_stream": [ - 902, + 901, { "batch_size": [ 40, "Int!" ], "cursor": [ - 919, + 918, "[e_map_pool_types_stream_cursor_input]!" ], "where": [ - 905 + 904 ] } ], "e_match_clip_visibility": [ - 923, + 922, { "distinct_on": [ - 937, + 936, "[e_match_clip_visibility_select_column!]" ], "limit": [ @@ -162741,19 +162733,19 @@ export default { 40 ], "order_by": [ - 935, + 934, "[e_match_clip_visibility_order_by!]" ], "where": [ - 926 + 925 ] } ], "e_match_clip_visibility_aggregate": [ - 924, + 923, { "distinct_on": [ - 937, + 936, "[e_match_clip_visibility_select_column!]" ], "limit": [ @@ -162763,16 +162755,16 @@ export default { 40 ], "order_by": [ - 935, + 934, "[e_match_clip_visibility_order_by!]" ], "where": [ - 926 + 925 ] } ], "e_match_clip_visibility_by_pk": [ - 923, + 922, { "value": [ 80, @@ -162781,26 +162773,26 @@ export default { } ], "e_match_clip_visibility_stream": [ - 923, + 922, { "batch_size": [ 40, "Int!" ], "cursor": [ - 939, + 938, "[e_match_clip_visibility_stream_cursor_input]!" ], "where": [ - 926 + 925 ] } ], "e_match_map_status": [ - 943, + 942, { "distinct_on": [ - 958, + 957, "[e_match_map_status_select_column!]" ], "limit": [ @@ -162810,19 +162802,19 @@ export default { 40 ], "order_by": [ - 956, + 955, "[e_match_map_status_order_by!]" ], "where": [ - 946 + 945 ] } ], "e_match_map_status_aggregate": [ - 944, + 943, { "distinct_on": [ - 958, + 957, "[e_match_map_status_select_column!]" ], "limit": [ @@ -162832,16 +162824,16 @@ export default { 40 ], "order_by": [ - 956, + 955, "[e_match_map_status_order_by!]" ], "where": [ - 946 + 945 ] } ], "e_match_map_status_by_pk": [ - 943, + 942, { "value": [ 80, @@ -162850,26 +162842,26 @@ export default { } ], "e_match_map_status_stream": [ - 943, + 942, { "batch_size": [ 40, "Int!" ], "cursor": [ - 960, + 959, "[e_match_map_status_stream_cursor_input]!" ], "where": [ - 946 + 945 ] } ], "e_match_mode": [ - 964, + 963, { "distinct_on": [ - 978, + 977, "[e_match_mode_select_column!]" ], "limit": [ @@ -162879,19 +162871,19 @@ export default { 40 ], "order_by": [ - 976, + 975, "[e_match_mode_order_by!]" ], "where": [ - 967 + 966 ] } ], "e_match_mode_aggregate": [ - 965, + 964, { "distinct_on": [ - 978, + 977, "[e_match_mode_select_column!]" ], "limit": [ @@ -162901,16 +162893,16 @@ export default { 40 ], "order_by": [ - 976, + 975, "[e_match_mode_order_by!]" ], "where": [ - 967 + 966 ] } ], "e_match_mode_by_pk": [ - 964, + 963, { "value": [ 80, @@ -162919,26 +162911,26 @@ export default { } ], "e_match_mode_stream": [ - 964, + 963, { "batch_size": [ 40, "Int!" ], "cursor": [ - 980, + 979, "[e_match_mode_stream_cursor_input]!" ], "where": [ - 967 + 966 ] } ], "e_match_status": [ - 984, + 983, { "distinct_on": [ - 999, + 998, "[e_match_status_select_column!]" ], "limit": [ @@ -162948,19 +162940,19 @@ export default { 40 ], "order_by": [ - 997, + 996, "[e_match_status_order_by!]" ], "where": [ - 987 + 986 ] } ], "e_match_status_aggregate": [ - 985, + 984, { "distinct_on": [ - 999, + 998, "[e_match_status_select_column!]" ], "limit": [ @@ -162970,16 +162962,16 @@ export default { 40 ], "order_by": [ - 997, + 996, "[e_match_status_order_by!]" ], "where": [ - 987 + 986 ] } ], "e_match_status_by_pk": [ - 984, + 983, { "value": [ 80, @@ -162988,26 +162980,26 @@ export default { } ], "e_match_status_stream": [ - 984, + 983, { "batch_size": [ 40, "Int!" ], "cursor": [ - 1001, + 1000, "[e_match_status_stream_cursor_input]!" ], "where": [ - 987 + 986 ] } ], "e_match_types": [ - 1005, + 1004, { "distinct_on": [ - 1020, + 1019, "[e_match_types_select_column!]" ], "limit": [ @@ -163017,19 +163009,19 @@ export default { 40 ], "order_by": [ - 1018, + 1017, "[e_match_types_order_by!]" ], "where": [ - 1008 + 1007 ] } ], "e_match_types_aggregate": [ - 1006, + 1005, { "distinct_on": [ - 1020, + 1019, "[e_match_types_select_column!]" ], "limit": [ @@ -163039,16 +163031,16 @@ export default { 40 ], "order_by": [ - 1018, + 1017, "[e_match_types_order_by!]" ], "where": [ - 1008 + 1007 ] } ], "e_match_types_by_pk": [ - 1005, + 1004, { "value": [ 80, @@ -163057,26 +163049,26 @@ export default { } ], "e_match_types_stream": [ - 1005, + 1004, { "batch_size": [ 40, "Int!" ], "cursor": [ - 1022, + 1021, "[e_match_types_stream_cursor_input]!" ], "where": [ - 1008 + 1007 ] } ], "e_notification_types": [ - 1026, + 1025, { "distinct_on": [ - 1040, + 1039, "[e_notification_types_select_column!]" ], "limit": [ @@ -163086,19 +163078,19 @@ export default { 40 ], "order_by": [ - 1038, + 1037, "[e_notification_types_order_by!]" ], "where": [ - 1029 + 1028 ] } ], "e_notification_types_aggregate": [ - 1027, + 1026, { "distinct_on": [ - 1040, + 1039, "[e_notification_types_select_column!]" ], "limit": [ @@ -163108,16 +163100,16 @@ export default { 40 ], "order_by": [ - 1038, + 1037, "[e_notification_types_order_by!]" ], "where": [ - 1029 + 1028 ] } ], "e_notification_types_by_pk": [ - 1026, + 1025, { "value": [ 80, @@ -163126,26 +163118,26 @@ export default { } ], "e_notification_types_stream": [ - 1026, + 1025, { "batch_size": [ 40, "Int!" ], "cursor": [ - 1042, + 1041, "[e_notification_types_stream_cursor_input]!" ], "where": [ - 1029 + 1028 ] } ], "e_objective_types": [ - 1046, + 1045, { "distinct_on": [ - 1060, + 1059, "[e_objective_types_select_column!]" ], "limit": [ @@ -163155,19 +163147,19 @@ export default { 40 ], "order_by": [ - 1058, + 1057, "[e_objective_types_order_by!]" ], "where": [ - 1049 + 1048 ] } ], "e_objective_types_aggregate": [ - 1047, + 1046, { "distinct_on": [ - 1060, + 1059, "[e_objective_types_select_column!]" ], "limit": [ @@ -163177,16 +163169,16 @@ export default { 40 ], "order_by": [ - 1058, + 1057, "[e_objective_types_order_by!]" ], "where": [ - 1049 + 1048 ] } ], "e_objective_types_by_pk": [ - 1046, + 1045, { "value": [ 80, @@ -163195,26 +163187,26 @@ export default { } ], "e_objective_types_stream": [ - 1046, + 1045, { "batch_size": [ 40, "Int!" ], "cursor": [ - 1062, + 1061, "[e_objective_types_stream_cursor_input]!" ], "where": [ - 1049 + 1048 ] } ], "e_player_roles": [ - 1066, + 1065, { "distinct_on": [ - 1080, + 1079, "[e_player_roles_select_column!]" ], "limit": [ @@ -163224,19 +163216,19 @@ export default { 40 ], "order_by": [ - 1078, + 1077, "[e_player_roles_order_by!]" ], "where": [ - 1069 + 1068 ] } ], "e_player_roles_aggregate": [ - 1067, + 1066, { "distinct_on": [ - 1080, + 1079, "[e_player_roles_select_column!]" ], "limit": [ @@ -163246,16 +163238,16 @@ export default { 40 ], "order_by": [ - 1078, + 1077, "[e_player_roles_order_by!]" ], "where": [ - 1069 + 1068 ] } ], "e_player_roles_by_pk": [ - 1066, + 1065, { "value": [ 80, @@ -163264,26 +163256,26 @@ export default { } ], "e_player_roles_stream": [ - 1066, + 1065, { "batch_size": [ 40, "Int!" ], "cursor": [ - 1082, + 1081, "[e_player_roles_stream_cursor_input]!" ], "where": [ - 1069 + 1068 ] } ], "e_plugin_runtimes": [ - 1086, + 1085, { "distinct_on": [ - 1100, + 1099, "[e_plugin_runtimes_select_column!]" ], "limit": [ @@ -163293,19 +163285,19 @@ export default { 40 ], "order_by": [ - 1098, + 1097, "[e_plugin_runtimes_order_by!]" ], "where": [ - 1089 + 1088 ] } ], "e_plugin_runtimes_aggregate": [ - 1087, + 1086, { "distinct_on": [ - 1100, + 1099, "[e_plugin_runtimes_select_column!]" ], "limit": [ @@ -163315,16 +163307,16 @@ export default { 40 ], "order_by": [ - 1098, + 1097, "[e_plugin_runtimes_order_by!]" ], "where": [ - 1089 + 1088 ] } ], "e_plugin_runtimes_by_pk": [ - 1086, + 1085, { "value": [ 80, @@ -163333,26 +163325,26 @@ export default { } ], "e_plugin_runtimes_stream": [ - 1086, + 1085, { "batch_size": [ 40, "Int!" ], "cursor": [ - 1102, + 1101, "[e_plugin_runtimes_stream_cursor_input]!" ], "where": [ - 1089 + 1088 ] } ], "e_ready_settings": [ - 1106, + 1105, { "distinct_on": [ - 1120, + 1119, "[e_ready_settings_select_column!]" ], "limit": [ @@ -163362,19 +163354,19 @@ export default { 40 ], "order_by": [ - 1118, + 1117, "[e_ready_settings_order_by!]" ], "where": [ - 1109 + 1108 ] } ], "e_ready_settings_aggregate": [ - 1107, + 1106, { "distinct_on": [ - 1120, + 1119, "[e_ready_settings_select_column!]" ], "limit": [ @@ -163384,16 +163376,16 @@ export default { 40 ], "order_by": [ - 1118, + 1117, "[e_ready_settings_order_by!]" ], "where": [ - 1109 + 1108 ] } ], "e_ready_settings_by_pk": [ - 1106, + 1105, { "value": [ 80, @@ -163402,26 +163394,26 @@ export default { } ], "e_ready_settings_stream": [ - 1106, + 1105, { "batch_size": [ 40, "Int!" ], "cursor": [ - 1122, + 1121, "[e_ready_settings_stream_cursor_input]!" ], "where": [ - 1109 + 1108 ] } ], "e_sanction_types": [ - 1126, + 1125, { "distinct_on": [ - 1141, + 1140, "[e_sanction_types_select_column!]" ], "limit": [ @@ -163431,19 +163423,19 @@ export default { 40 ], "order_by": [ - 1139, + 1138, "[e_sanction_types_order_by!]" ], "where": [ - 1129 + 1128 ] } ], "e_sanction_types_aggregate": [ - 1127, + 1126, { "distinct_on": [ - 1141, + 1140, "[e_sanction_types_select_column!]" ], "limit": [ @@ -163453,16 +163445,16 @@ export default { 40 ], "order_by": [ - 1139, + 1138, "[e_sanction_types_order_by!]" ], "where": [ - 1129 + 1128 ] } ], "e_sanction_types_by_pk": [ - 1126, + 1125, { "value": [ 80, @@ -163471,26 +163463,26 @@ export default { } ], "e_sanction_types_stream": [ - 1126, + 1125, { "batch_size": [ 40, "Int!" ], "cursor": [ - 1143, + 1142, "[e_sanction_types_stream_cursor_input]!" ], "where": [ - 1129 + 1128 ] } ], "e_scrim_request_statuses": [ - 1147, + 1146, { "distinct_on": [ - 1161, + 1160, "[e_scrim_request_statuses_select_column!]" ], "limit": [ @@ -163500,19 +163492,19 @@ export default { 40 ], "order_by": [ - 1159, + 1158, "[e_scrim_request_statuses_order_by!]" ], "where": [ - 1150 + 1149 ] } ], "e_scrim_request_statuses_aggregate": [ - 1148, + 1147, { "distinct_on": [ - 1161, + 1160, "[e_scrim_request_statuses_select_column!]" ], "limit": [ @@ -163522,16 +163514,16 @@ export default { 40 ], "order_by": [ - 1159, + 1158, "[e_scrim_request_statuses_order_by!]" ], "where": [ - 1150 + 1149 ] } ], "e_scrim_request_statuses_by_pk": [ - 1147, + 1146, { "value": [ 80, @@ -163540,26 +163532,26 @@ export default { } ], "e_scrim_request_statuses_stream": [ - 1147, + 1146, { "batch_size": [ 40, "Int!" ], "cursor": [ - 1163, + 1162, "[e_scrim_request_statuses_stream_cursor_input]!" ], "where": [ - 1150 + 1149 ] } ], "e_server_types": [ - 1167, + 1166, { "distinct_on": [ - 1181, + 1180, "[e_server_types_select_column!]" ], "limit": [ @@ -163569,19 +163561,19 @@ export default { 40 ], "order_by": [ - 1179, + 1178, "[e_server_types_order_by!]" ], "where": [ - 1170 + 1169 ] } ], "e_server_types_aggregate": [ - 1168, + 1167, { "distinct_on": [ - 1181, + 1180, "[e_server_types_select_column!]" ], "limit": [ @@ -163591,16 +163583,16 @@ export default { 40 ], "order_by": [ - 1179, + 1178, "[e_server_types_order_by!]" ], "where": [ - 1170 + 1169 ] } ], "e_server_types_by_pk": [ - 1167, + 1166, { "value": [ 80, @@ -163609,26 +163601,26 @@ export default { } ], "e_server_types_stream": [ - 1167, + 1166, { "batch_size": [ 40, "Int!" ], "cursor": [ - 1183, + 1182, "[e_server_types_stream_cursor_input]!" ], "where": [ - 1170 + 1169 ] } ], "e_sides": [ - 1187, + 1186, { "distinct_on": [ - 1201, + 1200, "[e_sides_select_column!]" ], "limit": [ @@ -163638,19 +163630,19 @@ export default { 40 ], "order_by": [ - 1199, + 1198, "[e_sides_order_by!]" ], "where": [ - 1190 + 1189 ] } ], "e_sides_aggregate": [ - 1188, + 1187, { "distinct_on": [ - 1201, + 1200, "[e_sides_select_column!]" ], "limit": [ @@ -163660,16 +163652,16 @@ export default { 40 ], "order_by": [ - 1199, + 1198, "[e_sides_order_by!]" ], "where": [ - 1190 + 1189 ] } ], "e_sides_by_pk": [ - 1187, + 1186, { "value": [ 80, @@ -163678,26 +163670,26 @@ export default { } ], "e_sides_stream": [ - 1187, + 1186, { "batch_size": [ 40, "Int!" ], "cursor": [ - 1203, + 1202, "[e_sides_stream_cursor_input]!" ], "where": [ - 1190 + 1189 ] } ], "e_system_alert_types": [ - 1207, + 1206, { "distinct_on": [ - 1221, + 1220, "[e_system_alert_types_select_column!]" ], "limit": [ @@ -163707,19 +163699,19 @@ export default { 40 ], "order_by": [ - 1219, + 1218, "[e_system_alert_types_order_by!]" ], "where": [ - 1210 + 1209 ] } ], "e_system_alert_types_aggregate": [ - 1208, + 1207, { "distinct_on": [ - 1221, + 1220, "[e_system_alert_types_select_column!]" ], "limit": [ @@ -163729,16 +163721,16 @@ export default { 40 ], "order_by": [ - 1219, + 1218, "[e_system_alert_types_order_by!]" ], "where": [ - 1210 + 1209 ] } ], "e_system_alert_types_by_pk": [ - 1207, + 1206, { "value": [ 80, @@ -163747,26 +163739,26 @@ export default { } ], "e_system_alert_types_stream": [ - 1207, + 1206, { "batch_size": [ 40, "Int!" ], "cursor": [ - 1223, + 1222, "[e_system_alert_types_stream_cursor_input]!" ], "where": [ - 1210 + 1209 ] } ], "e_team_roles": [ - 1227, + 1226, { "distinct_on": [ - 1242, + 1241, "[e_team_roles_select_column!]" ], "limit": [ @@ -163776,19 +163768,19 @@ export default { 40 ], "order_by": [ - 1240, + 1239, "[e_team_roles_order_by!]" ], "where": [ - 1230 + 1229 ] } ], "e_team_roles_aggregate": [ - 1228, + 1227, { "distinct_on": [ - 1242, + 1241, "[e_team_roles_select_column!]" ], "limit": [ @@ -163798,16 +163790,16 @@ export default { 40 ], "order_by": [ - 1240, + 1239, "[e_team_roles_order_by!]" ], "where": [ - 1230 + 1229 ] } ], "e_team_roles_by_pk": [ - 1227, + 1226, { "value": [ 80, @@ -163816,26 +163808,26 @@ export default { } ], "e_team_roles_stream": [ - 1227, + 1226, { "batch_size": [ 40, "Int!" ], "cursor": [ - 1244, + 1243, "[e_team_roles_stream_cursor_input]!" ], "where": [ - 1230 + 1229 ] } ], "e_team_roster_statuses": [ - 1248, + 1247, { "distinct_on": [ - 1262, + 1261, "[e_team_roster_statuses_select_column!]" ], "limit": [ @@ -163845,19 +163837,19 @@ export default { 40 ], "order_by": [ - 1260, + 1259, "[e_team_roster_statuses_order_by!]" ], "where": [ - 1251 + 1250 ] } ], "e_team_roster_statuses_aggregate": [ - 1249, + 1248, { "distinct_on": [ - 1262, + 1261, "[e_team_roster_statuses_select_column!]" ], "limit": [ @@ -163867,16 +163859,16 @@ export default { 40 ], "order_by": [ - 1260, + 1259, "[e_team_roster_statuses_order_by!]" ], "where": [ - 1251 + 1250 ] } ], "e_team_roster_statuses_by_pk": [ - 1248, + 1247, { "value": [ 80, @@ -163885,26 +163877,26 @@ export default { } ], "e_team_roster_statuses_stream": [ - 1248, + 1247, { "batch_size": [ 40, "Int!" ], "cursor": [ - 1264, + 1263, "[e_team_roster_statuses_stream_cursor_input]!" ], "where": [ - 1251 + 1250 ] } ], "e_timeout_settings": [ - 1268, + 1267, { "distinct_on": [ - 1282, + 1281, "[e_timeout_settings_select_column!]" ], "limit": [ @@ -163914,19 +163906,19 @@ export default { 40 ], "order_by": [ - 1280, + 1279, "[e_timeout_settings_order_by!]" ], "where": [ - 1271 + 1270 ] } ], "e_timeout_settings_aggregate": [ - 1269, + 1268, { "distinct_on": [ - 1282, + 1281, "[e_timeout_settings_select_column!]" ], "limit": [ @@ -163936,16 +163928,16 @@ export default { 40 ], "order_by": [ - 1280, + 1279, "[e_timeout_settings_order_by!]" ], "where": [ - 1271 + 1270 ] } ], "e_timeout_settings_by_pk": [ - 1268, + 1267, { "value": [ 80, @@ -163954,26 +163946,26 @@ export default { } ], "e_timeout_settings_stream": [ - 1268, + 1267, { "batch_size": [ 40, "Int!" ], "cursor": [ - 1284, + 1283, "[e_timeout_settings_stream_cursor_input]!" ], "where": [ - 1271 + 1270 ] } ], "e_tournament_categories": [ - 1288, + 1287, { "distinct_on": [ - 1303, + 1302, "[e_tournament_categories_select_column!]" ], "limit": [ @@ -163983,19 +163975,19 @@ export default { 40 ], "order_by": [ - 1301, + 1300, "[e_tournament_categories_order_by!]" ], "where": [ - 1291 + 1290 ] } ], "e_tournament_categories_aggregate": [ - 1289, + 1288, { "distinct_on": [ - 1303, + 1302, "[e_tournament_categories_select_column!]" ], "limit": [ @@ -164005,16 +163997,16 @@ export default { 40 ], "order_by": [ - 1301, + 1300, "[e_tournament_categories_order_by!]" ], "where": [ - 1291 + 1290 ] } ], "e_tournament_categories_by_pk": [ - 1288, + 1287, { "value": [ 80, @@ -164023,26 +164015,26 @@ export default { } ], "e_tournament_categories_stream": [ - 1288, + 1287, { "batch_size": [ 40, "Int!" ], "cursor": [ - 1305, + 1304, "[e_tournament_categories_stream_cursor_input]!" ], "where": [ - 1291 + 1290 ] } ], "e_tournament_stage_types": [ - 1309, + 1308, { "distinct_on": [ - 1324, + 1323, "[e_tournament_stage_types_select_column!]" ], "limit": [ @@ -164052,19 +164044,19 @@ export default { 40 ], "order_by": [ - 1322, + 1321, "[e_tournament_stage_types_order_by!]" ], "where": [ - 1312 + 1311 ] } ], "e_tournament_stage_types_aggregate": [ - 1310, + 1309, { "distinct_on": [ - 1324, + 1323, "[e_tournament_stage_types_select_column!]" ], "limit": [ @@ -164074,16 +164066,16 @@ export default { 40 ], "order_by": [ - 1322, + 1321, "[e_tournament_stage_types_order_by!]" ], "where": [ - 1312 + 1311 ] } ], "e_tournament_stage_types_by_pk": [ - 1309, + 1308, { "value": [ 80, @@ -164092,26 +164084,26 @@ export default { } ], "e_tournament_stage_types_stream": [ - 1309, + 1308, { "batch_size": [ 40, "Int!" ], "cursor": [ - 1326, + 1325, "[e_tournament_stage_types_stream_cursor_input]!" ], "where": [ - 1312 + 1311 ] } ], "e_tournament_status": [ - 1330, + 1329, { "distinct_on": [ - 1345, + 1344, "[e_tournament_status_select_column!]" ], "limit": [ @@ -164121,19 +164113,19 @@ export default { 40 ], "order_by": [ - 1343, + 1342, "[e_tournament_status_order_by!]" ], "where": [ - 1333 + 1332 ] } ], "e_tournament_status_aggregate": [ - 1331, + 1330, { "distinct_on": [ - 1345, + 1344, "[e_tournament_status_select_column!]" ], "limit": [ @@ -164143,16 +164135,16 @@ export default { 40 ], "order_by": [ - 1343, + 1342, "[e_tournament_status_order_by!]" ], "where": [ - 1333 + 1332 ] } ], "e_tournament_status_by_pk": [ - 1330, + 1329, { "value": [ 80, @@ -164161,26 +164153,26 @@ export default { } ], "e_tournament_status_stream": [ - 1330, + 1329, { "batch_size": [ 40, "Int!" ], "cursor": [ - 1347, + 1346, "[e_tournament_status_stream_cursor_input]!" ], "where": [ - 1333 + 1332 ] } ], "e_utility_types": [ - 1351, + 1350, { "distinct_on": [ - 1365, + 1364, "[e_utility_types_select_column!]" ], "limit": [ @@ -164190,19 +164182,19 @@ export default { 40 ], "order_by": [ - 1363, + 1362, "[e_utility_types_order_by!]" ], "where": [ - 1354 + 1353 ] } ], "e_utility_types_aggregate": [ - 1352, + 1351, { "distinct_on": [ - 1365, + 1364, "[e_utility_types_select_column!]" ], "limit": [ @@ -164212,16 +164204,16 @@ export default { 40 ], "order_by": [ - 1363, + 1362, "[e_utility_types_order_by!]" ], "where": [ - 1354 + 1353 ] } ], "e_utility_types_by_pk": [ - 1351, + 1350, { "value": [ 80, @@ -164230,26 +164222,26 @@ export default { } ], "e_utility_types_stream": [ - 1351, + 1350, { "batch_size": [ 40, "Int!" ], "cursor": [ - 1367, + 1366, "[e_utility_types_stream_cursor_input]!" ], "where": [ - 1354 + 1353 ] } ], "e_veto_pick_types": [ - 1371, + 1370, { "distinct_on": [ - 1385, + 1384, "[e_veto_pick_types_select_column!]" ], "limit": [ @@ -164259,19 +164251,19 @@ export default { 40 ], "order_by": [ - 1383, + 1382, "[e_veto_pick_types_order_by!]" ], "where": [ - 1374 + 1373 ] } ], "e_veto_pick_types_aggregate": [ - 1372, + 1371, { "distinct_on": [ - 1385, + 1384, "[e_veto_pick_types_select_column!]" ], "limit": [ @@ -164281,16 +164273,16 @@ export default { 40 ], "order_by": [ - 1383, + 1382, "[e_veto_pick_types_order_by!]" ], "where": [ - 1374 + 1373 ] } ], "e_veto_pick_types_by_pk": [ - 1371, + 1370, { "value": [ 80, @@ -164299,26 +164291,26 @@ export default { } ], "e_veto_pick_types_stream": [ - 1371, + 1370, { "batch_size": [ 40, "Int!" ], "cursor": [ - 1387, + 1386, "[e_veto_pick_types_stream_cursor_input]!" ], "where": [ - 1374 + 1373 ] } ], "e_winning_reasons": [ - 1391, + 1390, { "distinct_on": [ - 1405, + 1404, "[e_winning_reasons_select_column!]" ], "limit": [ @@ -164328,19 +164320,19 @@ export default { 40 ], "order_by": [ - 1403, + 1402, "[e_winning_reasons_order_by!]" ], "where": [ - 1394 + 1393 ] } ], "e_winning_reasons_aggregate": [ - 1392, + 1391, { "distinct_on": [ - 1405, + 1404, "[e_winning_reasons_select_column!]" ], "limit": [ @@ -164350,16 +164342,16 @@ export default { 40 ], "order_by": [ - 1403, + 1402, "[e_winning_reasons_order_by!]" ], "where": [ - 1394 + 1393 ] } ], "e_winning_reasons_by_pk": [ - 1391, + 1390, { "value": [ 80, @@ -164368,26 +164360,26 @@ export default { } ], "e_winning_reasons_stream": [ - 1391, + 1390, { "batch_size": [ 40, "Int!" ], "cursor": [ - 1407, + 1406, "[e_winning_reasons_stream_cursor_input]!" ], "where": [ - 1394 + 1393 ] } ], "event_match_links": [ - 1411, + 1410, { "distinct_on": [ - 1423, + 1422, "[event_match_links_select_column!]" ], "limit": [ @@ -164397,19 +164389,19 @@ export default { 40 ], "order_by": [ - 1421, + 1420, "[event_match_links_order_by!]" ], "where": [ - 1414 + 1413 ] } ], "event_match_links_aggregate": [ - 1412, + 1411, { "distinct_on": [ - 1423, + 1422, "[event_match_links_select_column!]" ], "limit": [ @@ -164419,48 +164411,48 @@ export default { 40 ], "order_by": [ - 1421, + 1420, "[event_match_links_order_by!]" ], "where": [ - 1414 + 1413 ] } ], "event_match_links_by_pk": [ - 1411, + 1410, { "event_id": [ - 4999, + 4998, "uuid!" ], "match_id": [ - 4999, + 4998, "uuid!" ] } ], "event_match_links_stream": [ - 1411, + 1410, { "batch_size": [ 40, "Int!" ], "cursor": [ - 1425, + 1424, "[event_match_links_stream_cursor_input]!" ], "where": [ - 1414 + 1413 ] } ], "event_media": [ - 1429, + 1428, { "distinct_on": [ - 1492, + 1491, "[event_media_select_column!]" ], "limit": [ @@ -164470,19 +164462,19 @@ export default { 40 ], "order_by": [ - 1449, + 1448, "[event_media_order_by!]" ], "where": [ - 1438 + 1437 ] } ], "event_media_aggregate": [ - 1430, + 1429, { "distinct_on": [ - 1492, + 1491, "[event_media_select_column!]" ], "limit": [ @@ -164492,28 +164484,28 @@ export default { 40 ], "order_by": [ - 1449, + 1448, "[event_media_order_by!]" ], "where": [ - 1438 + 1437 ] } ], "event_media_by_pk": [ - 1429, + 1428, { "id": [ - 4999, + 4998, "uuid!" ] } ], "event_media_players": [ - 1451, + 1450, { "distinct_on": [ - 1472, + 1471, "[event_media_players_select_column!]" ], "limit": [ @@ -164523,19 +164515,19 @@ export default { 40 ], "order_by": [ - 1470, + 1469, "[event_media_players_order_by!]" ], "where": [ - 1460 + 1459 ] } ], "event_media_players_aggregate": [ - 1452, + 1451, { "distinct_on": [ - 1472, + 1471, "[event_media_players_select_column!]" ], "limit": [ @@ -164545,64 +164537,64 @@ export default { 40 ], "order_by": [ - 1470, + 1469, "[event_media_players_order_by!]" ], "where": [ - 1460 + 1459 ] } ], "event_media_players_by_pk": [ - 1451, + 1450, { "media_id": [ - 4999, + 4998, "uuid!" ], "steam_id": [ - 258, + 257, "bigint!" ] } ], "event_media_players_stream": [ - 1451, + 1450, { "batch_size": [ 40, "Int!" ], "cursor": [ - 1480, + 1479, "[event_media_players_stream_cursor_input]!" ], "where": [ - 1460 + 1459 ] } ], "event_media_stream": [ - 1429, + 1428, { "batch_size": [ 40, "Int!" ], "cursor": [ - 1500, + 1499, "[event_media_stream_cursor_input]!" ], "where": [ - 1438 + 1437 ] } ], "event_organizers": [ - 1512, + 1511, { "distinct_on": [ - 1533, + 1532, "[event_organizers_select_column!]" ], "limit": [ @@ -164612,19 +164604,19 @@ export default { 40 ], "order_by": [ - 1531, + 1530, "[event_organizers_order_by!]" ], "where": [ - 1521 + 1520 ] } ], "event_organizers_aggregate": [ - 1513, + 1512, { "distinct_on": [ - 1533, + 1532, "[event_organizers_select_column!]" ], "limit": [ @@ -164634,48 +164626,48 @@ export default { 40 ], "order_by": [ - 1531, + 1530, "[event_organizers_order_by!]" ], "where": [ - 1521 + 1520 ] } ], "event_organizers_by_pk": [ - 1512, + 1511, { "event_id": [ - 4999, + 4998, "uuid!" ], "steam_id": [ - 258, + 257, "bigint!" ] } ], "event_organizers_stream": [ - 1512, + 1511, { "batch_size": [ 40, "Int!" ], "cursor": [ - 1541, + 1540, "[event_organizers_stream_cursor_input]!" ], "where": [ - 1521 + 1520 ] } ], "event_players": [ - 1553, + 1552, { "distinct_on": [ - 1574, + 1573, "[event_players_select_column!]" ], "limit": [ @@ -164685,19 +164677,19 @@ export default { 40 ], "order_by": [ - 1572, + 1571, "[event_players_order_by!]" ], "where": [ - 1562 + 1561 ] } ], "event_players_aggregate": [ - 1554, + 1553, { "distinct_on": [ - 1574, + 1573, "[event_players_select_column!]" ], "limit": [ @@ -164707,48 +164699,48 @@ export default { 40 ], "order_by": [ - 1572, + 1571, "[event_players_order_by!]" ], "where": [ - 1562 + 1561 ] } ], "event_players_by_pk": [ - 1553, + 1552, { "event_id": [ - 4999, + 4998, "uuid!" ], "steam_id": [ - 258, + 257, "bigint!" ] } ], "event_players_stream": [ - 1553, + 1552, { "batch_size": [ 40, "Int!" ], "cursor": [ - 1582, + 1581, "[event_players_stream_cursor_input]!" ], "where": [ - 1562 + 1561 ] } ], "event_teams": [ - 1594, + 1593, { "distinct_on": [ - 1612, + 1611, "[event_teams_select_column!]" ], "limit": [ @@ -164758,19 +164750,19 @@ export default { 40 ], "order_by": [ - 1610, + 1609, "[event_teams_order_by!]" ], "where": [ - 1601 + 1600 ] } ], "event_teams_aggregate": [ - 1595, + 1594, { "distinct_on": [ - 1612, + 1611, "[event_teams_select_column!]" ], "limit": [ @@ -164780,48 +164772,48 @@ export default { 40 ], "order_by": [ - 1610, + 1609, "[event_teams_order_by!]" ], "where": [ - 1601 + 1600 ] } ], "event_teams_by_pk": [ - 1594, + 1593, { "event_id": [ - 4999, + 4998, "uuid!" ], "team_id": [ - 4999, + 4998, "uuid!" ] } ], "event_teams_stream": [ - 1594, + 1593, { "batch_size": [ 40, "Int!" ], "cursor": [ - 1614, + 1613, "[event_teams_stream_cursor_input]!" ], "where": [ - 1601 + 1600 ] } ], "event_tournaments": [ - 1618, + 1617, { "distinct_on": [ - 1636, + 1635, "[event_tournaments_select_column!]" ], "limit": [ @@ -164831,19 +164823,19 @@ export default { 40 ], "order_by": [ - 1634, + 1633, "[event_tournaments_order_by!]" ], "where": [ - 1625 + 1624 ] } ], "event_tournaments_aggregate": [ - 1619, + 1618, { "distinct_on": [ - 1636, + 1635, "[event_tournaments_select_column!]" ], "limit": [ @@ -164853,48 +164845,48 @@ export default { 40 ], "order_by": [ - 1634, + 1633, "[event_tournaments_order_by!]" ], "where": [ - 1625 + 1624 ] } ], "event_tournaments_by_pk": [ - 1618, + 1617, { "event_id": [ - 4999, + 4998, "uuid!" ], "tournament_id": [ - 4999, + 4998, "uuid!" ] } ], "event_tournaments_stream": [ - 1618, + 1617, { "batch_size": [ 40, "Int!" ], "cursor": [ - 1638, + 1637, "[event_tournaments_stream_cursor_input]!" ], "where": [ - 1625 + 1624 ] } ], "events": [ - 1642, + 1641, { "distinct_on": [ - 1657, + 1656, "[events_select_column!]" ], "limit": [ @@ -164904,19 +164896,19 @@ export default { 40 ], "order_by": [ - 1655, + 1654, "[events_order_by!]" ], "where": [ - 1646 + 1645 ] } ], "events_aggregate": [ - 1643, + 1642, { "distinct_on": [ - 1657, + 1656, "[events_select_column!]" ], "limit": [ @@ -164926,44 +164918,44 @@ export default { 40 ], "order_by": [ - 1655, + 1654, "[events_order_by!]" ], "where": [ - 1646 + 1645 ] } ], "events_by_pk": [ - 1642, + 1641, { "id": [ - 4999, + 4998, "uuid!" ] } ], "events_stream": [ - 1642, + 1641, { "batch_size": [ 40, "Int!" ], "cursor": [ - 1662, + 1661, "[events_stream_cursor_input]!" ], "where": [ - 1646 + 1645 ] } ], "friends": [ - 1672, + 1671, { "distinct_on": [ - 1686, + 1685, "[friends_select_column!]" ], "limit": [ @@ -164973,19 +164965,19 @@ export default { 40 ], "order_by": [ - 1684, + 1683, "[friends_order_by!]" ], "where": [ - 1676 + 1675 ] } ], "friends_aggregate": [ - 1673, + 1672, { "distinct_on": [ - 1686, + 1685, "[friends_select_column!]" ], "limit": [ @@ -164995,48 +164987,48 @@ export default { 40 ], "order_by": [ - 1684, + 1683, "[friends_order_by!]" ], "where": [ - 1676 + 1675 ] } ], "friends_by_pk": [ - 1672, + 1671, { "other_player_steam_id": [ - 258, + 257, "bigint!" ], "player_steam_id": [ - 258, + 257, "bigint!" ] } ], "friends_stream": [ - 1672, + 1671, { "batch_size": [ 40, "Int!" ], "cursor": [ - 1691, + 1690, "[friends_stream_cursor_input]!" ], "where": [ - 1676 + 1675 ] } ], "game_server_nodes": [ - 1699, + 1698, { "distinct_on": [ - 1728, + 1727, "[game_server_nodes_select_column!]" ], "limit": [ @@ -165046,19 +165038,19 @@ export default { 40 ], "order_by": [ - 1725, + 1724, "[game_server_nodes_order_by!]" ], "where": [ - 1711 + 1710 ] } ], "game_server_nodes_aggregate": [ - 1700, + 1699, { "distinct_on": [ - 1728, + 1727, "[game_server_nodes_select_column!]" ], "limit": [ @@ -165068,16 +165060,16 @@ export default { 40 ], "order_by": [ - 1725, + 1724, "[game_server_nodes_order_by!]" ], "where": [ - 1711 + 1710 ] } ], "game_server_nodes_by_pk": [ - 1699, + 1698, { "id": [ 80, @@ -165086,26 +165078,26 @@ export default { } ], "game_server_nodes_stream": [ - 1699, + 1698, { "batch_size": [ 40, "Int!" ], "cursor": [ - 1738, + 1737, "[game_server_nodes_stream_cursor_input]!" ], "where": [ - 1711 + 1710 ] } ], "game_versions": [ - 1750, + 1749, { "distinct_on": [ - 1770, + 1769, "[game_versions_select_column!]" ], "limit": [ @@ -165115,19 +165107,19 @@ export default { 40 ], "order_by": [ - 1767, + 1766, "[game_versions_order_by!]" ], "where": [ - 1755 + 1754 ] } ], "game_versions_aggregate": [ - 1751, + 1750, { "distinct_on": [ - 1770, + 1769, "[game_versions_select_column!]" ], "limit": [ @@ -165137,16 +165129,16 @@ export default { 40 ], "order_by": [ - 1767, + 1766, "[game_versions_order_by!]" ], "where": [ - 1755 + 1754 ] } ], "game_versions_by_pk": [ - 1750, + 1749, { "build_id": [ 40, @@ -165155,26 +165147,26 @@ export default { } ], "game_versions_stream": [ - 1750, + 1749, { "batch_size": [ 40, "Int!" ], "cursor": [ - 1775, + 1774, "[game_versions_stream_cursor_input]!" ], "where": [ - 1755 + 1754 ] } ], "gamedata_signature_validations": [ - 1783, + 1782, { "distinct_on": [ - 1802, + 1801, "[gamedata_signature_validations_select_column!]" ], "limit": [ @@ -165184,19 +165176,19 @@ export default { 40 ], "order_by": [ - 1799, + 1798, "[gamedata_signature_validations_order_by!]" ], "where": [ - 1788 + 1787 ] } ], "gamedata_signature_validations_aggregate": [ - 1784, + 1783, { "distinct_on": [ - 1802, + 1801, "[gamedata_signature_validations_select_column!]" ], "limit": [ @@ -165206,48 +165198,48 @@ export default { 40 ], "order_by": [ - 1799, + 1798, "[gamedata_signature_validations_order_by!]" ], "where": [ - 1788 + 1787 ] } ], "gamedata_signature_validations_by_pk": [ - 1783, + 1782, { "id": [ - 4999, + 4998, "uuid!" ] } ], "gamedata_signature_validations_stream": [ - 1783, + 1782, { "batch_size": [ 40, "Int!" ], "cursor": [ - 1807, + 1806, "[gamedata_signature_validations_stream_cursor_input]!" ], "where": [ - 1788 + 1787 ] } ], "get_event_leaderboard": [ - 1826, + 1825, { "args": [ - 1815, + 1814, "get_event_leaderboard_args!" ], "distinct_on": [ - 1837, + 1836, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -165257,23 +165249,23 @@ export default { 40 ], "order_by": [ - 1836, + 1835, "[leaderboard_entries_order_by!]" ], "where": [ - 1830 + 1829 ] } ], "get_event_leaderboard_aggregate": [ - 1827, + 1826, { "args": [ - 1815, + 1814, "get_event_leaderboard_args!" ], "distinct_on": [ - 1837, + 1836, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -165283,23 +165275,23 @@ export default { 40 ], "order_by": [ - 1836, + 1835, "[leaderboard_entries_order_by!]" ], "where": [ - 1830 + 1829 ] } ], "get_leaderboard": [ - 1826, + 1825, { "args": [ - 1816, + 1815, "get_leaderboard_args!" ], "distinct_on": [ - 1837, + 1836, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -165309,23 +165301,23 @@ export default { 40 ], "order_by": [ - 1836, + 1835, "[leaderboard_entries_order_by!]" ], "where": [ - 1830 + 1829 ] } ], "get_leaderboard_aggregate": [ - 1827, + 1826, { "args": [ - 1816, + 1815, "get_leaderboard_args!" ], "distinct_on": [ - 1837, + 1836, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -165335,23 +165327,23 @@ export default { 40 ], "order_by": [ - 1836, + 1835, "[leaderboard_entries_order_by!]" ], "where": [ - 1830 + 1829 ] } ], "get_league_season_leaderboard": [ - 1826, + 1825, { "args": [ - 1817, + 1816, "get_league_season_leaderboard_args!" ], "distinct_on": [ - 1837, + 1836, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -165361,23 +165353,23 @@ export default { 40 ], "order_by": [ - 1836, + 1835, "[leaderboard_entries_order_by!]" ], "where": [ - 1830 + 1829 ] } ], "get_league_season_leaderboard_aggregate": [ - 1827, + 1826, { "args": [ - 1817, + 1816, "get_league_season_leaderboard_args!" ], "distinct_on": [ - 1837, + 1836, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -165387,23 +165379,23 @@ export default { 40 ], "order_by": [ - 1836, + 1835, "[leaderboard_entries_order_by!]" ], "where": [ - 1830 + 1829 ] } ], "get_player_leaderboard_rank": [ - 3393, + 3392, { "args": [ - 1818, + 1817, "get_player_leaderboard_rank_args!" ], "distinct_on": [ - 3404, + 3403, "[player_leaderboard_rank_select_column!]" ], "limit": [ @@ -165413,23 +165405,23 @@ export default { 40 ], "order_by": [ - 3403, + 3402, "[player_leaderboard_rank_order_by!]" ], "where": [ - 3397 + 3396 ] } ], "get_player_leaderboard_rank_aggregate": [ - 3394, + 3393, { "args": [ - 1818, + 1817, "get_player_leaderboard_rank_args!" ], "distinct_on": [ - 3404, + 3403, "[player_leaderboard_rank_select_column!]" ], "limit": [ @@ -165439,19 +165431,19 @@ export default { 40 ], "order_by": [ - 3403, + 3402, "[player_leaderboard_rank_order_by!]" ], "where": [ - 3397 + 3396 ] } ], "leaderboard_entries": [ - 1826, + 1825, { "distinct_on": [ - 1837, + 1836, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -165461,19 +165453,19 @@ export default { 40 ], "order_by": [ - 1836, + 1835, "[leaderboard_entries_order_by!]" ], "where": [ - 1830 + 1829 ] } ], "leaderboard_entries_aggregate": [ - 1827, + 1826, { "distinct_on": [ - 1837, + 1836, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -165483,35 +165475,35 @@ export default { 40 ], "order_by": [ - 1836, + 1835, "[leaderboard_entries_order_by!]" ], "where": [ - 1830 + 1829 ] } ], "leaderboard_entries_stream": [ - 1826, + 1825, { "batch_size": [ 40, "Int!" ], "cursor": [ - 1842, + 1841, "[leaderboard_entries_stream_cursor_input]!" ], "where": [ - 1830 + 1829 ] } ], "league_divisions": [ - 1850, + 1849, { "distinct_on": [ - 1865, + 1864, "[league_divisions_select_column!]" ], "limit": [ @@ -165521,19 +165513,19 @@ export default { 40 ], "order_by": [ - 1863, + 1862, "[league_divisions_order_by!]" ], "where": [ - 1854 + 1853 ] } ], "league_divisions_aggregate": [ - 1851, + 1850, { "distinct_on": [ - 1865, + 1864, "[league_divisions_select_column!]" ], "limit": [ @@ -165543,44 +165535,44 @@ export default { 40 ], "order_by": [ - 1863, + 1862, "[league_divisions_order_by!]" ], "where": [ - 1854 + 1853 ] } ], "league_divisions_by_pk": [ - 1850, + 1849, { "id": [ - 4999, + 4998, "uuid!" ] } ], "league_divisions_stream": [ - 1850, + 1849, { "batch_size": [ 40, "Int!" ], "cursor": [ - 1870, + 1869, "[league_divisions_stream_cursor_input]!" ], "where": [ - 1854 + 1853 ] } ], "league_match_weeks": [ - 1878, + 1877, { "distinct_on": [ - 1899, + 1898, "[league_match_weeks_select_column!]" ], "limit": [ @@ -165590,19 +165582,19 @@ export default { 40 ], "order_by": [ - 1897, + 1896, "[league_match_weeks_order_by!]" ], "where": [ - 1887 + 1886 ] } ], "league_match_weeks_aggregate": [ - 1879, + 1878, { "distinct_on": [ - 1899, + 1898, "[league_match_weeks_select_column!]" ], "limit": [ @@ -165612,44 +165604,44 @@ export default { 40 ], "order_by": [ - 1897, + 1896, "[league_match_weeks_order_by!]" ], "where": [ - 1887 + 1886 ] } ], "league_match_weeks_by_pk": [ - 1878, + 1877, { "id": [ - 4999, + 4998, "uuid!" ] } ], "league_match_weeks_stream": [ - 1878, + 1877, { "batch_size": [ 40, "Int!" ], "cursor": [ - 1907, + 1906, "[league_match_weeks_stream_cursor_input]!" ], "where": [ - 1887 + 1886 ] } ], "league_relegation_playoffs": [ - 1919, + 1918, { "distinct_on": [ - 1940, + 1939, "[league_relegation_playoffs_select_column!]" ], "limit": [ @@ -165659,19 +165651,19 @@ export default { 40 ], "order_by": [ - 1938, + 1937, "[league_relegation_playoffs_order_by!]" ], "where": [ - 1928 + 1927 ] } ], "league_relegation_playoffs_aggregate": [ - 1920, + 1919, { "distinct_on": [ - 1940, + 1939, "[league_relegation_playoffs_select_column!]" ], "limit": [ @@ -165681,44 +165673,44 @@ export default { 40 ], "order_by": [ - 1938, + 1937, "[league_relegation_playoffs_order_by!]" ], "where": [ - 1928 + 1927 ] } ], "league_relegation_playoffs_by_pk": [ - 1919, + 1918, { "id": [ - 4999, + 4998, "uuid!" ] } ], "league_relegation_playoffs_stream": [ - 1919, + 1918, { "batch_size": [ 40, "Int!" ], "cursor": [ - 1948, + 1947, "[league_relegation_playoffs_stream_cursor_input]!" ], "where": [ - 1928 + 1927 ] } ], "league_scheduling_proposals": [ - 1960, + 1959, { "distinct_on": [ - 1981, + 1980, "[league_scheduling_proposals_select_column!]" ], "limit": [ @@ -165728,19 +165720,19 @@ export default { 40 ], "order_by": [ - 1979, + 1978, "[league_scheduling_proposals_order_by!]" ], "where": [ - 1969 + 1968 ] } ], "league_scheduling_proposals_aggregate": [ - 1961, + 1960, { "distinct_on": [ - 1981, + 1980, "[league_scheduling_proposals_select_column!]" ], "limit": [ @@ -165750,44 +165742,44 @@ export default { 40 ], "order_by": [ - 1979, + 1978, "[league_scheduling_proposals_order_by!]" ], "where": [ - 1969 + 1968 ] } ], "league_scheduling_proposals_by_pk": [ - 1960, + 1959, { "id": [ - 4999, + 4998, "uuid!" ] } ], "league_scheduling_proposals_stream": [ - 1960, + 1959, { "batch_size": [ 40, "Int!" ], "cursor": [ - 1989, + 1988, "[league_scheduling_proposals_stream_cursor_input]!" ], "where": [ - 1969 + 1968 ] } ], "league_season_divisions": [ - 2001, + 2000, { "distinct_on": [ - 2020, + 2019, "[league_season_divisions_select_column!]" ], "limit": [ @@ -165797,19 +165789,19 @@ export default { 40 ], "order_by": [ - 2018, + 2017, "[league_season_divisions_order_by!]" ], "where": [ - 2008 + 2007 ] } ], "league_season_divisions_aggregate": [ - 2002, + 2001, { "distinct_on": [ - 2020, + 2019, "[league_season_divisions_select_column!]" ], "limit": [ @@ -165819,44 +165811,44 @@ export default { 40 ], "order_by": [ - 2018, + 2017, "[league_season_divisions_order_by!]" ], "where": [ - 2008 + 2007 ] } ], "league_season_divisions_by_pk": [ - 2001, + 2000, { "id": [ - 4999, + 4998, "uuid!" ] } ], "league_season_divisions_stream": [ - 2001, + 2000, { "batch_size": [ 40, "Int!" ], "cursor": [ - 2022, + 2021, "[league_season_divisions_stream_cursor_input]!" ], "where": [ - 2008 + 2007 ] } ], "league_seasons": [ - 2026, + 2025, { "distinct_on": [ - 2046, + 2045, "[league_seasons_select_column!]" ], "limit": [ @@ -165866,19 +165858,19 @@ export default { 40 ], "order_by": [ - 2043, + 2042, "[league_seasons_order_by!]" ], "where": [ - 2031 + 2030 ] } ], "league_seasons_aggregate": [ - 2027, + 2026, { "distinct_on": [ - 2046, + 2045, "[league_seasons_select_column!]" ], "limit": [ @@ -165888,44 +165880,44 @@ export default { 40 ], "order_by": [ - 2043, + 2042, "[league_seasons_order_by!]" ], "where": [ - 2031 + 2030 ] } ], "league_seasons_by_pk": [ - 2026, + 2025, { "id": [ - 4999, + 4998, "uuid!" ] } ], "league_seasons_stream": [ - 2026, + 2025, { "batch_size": [ 40, "Int!" ], "cursor": [ - 2051, + 2050, "[league_seasons_stream_cursor_input]!" ], "where": [ - 2031 + 2030 ] } ], "league_team_movements": [ - 2059, + 2058, { "distinct_on": [ - 2080, + 2079, "[league_team_movements_select_column!]" ], "limit": [ @@ -165935,19 +165927,19 @@ export default { 40 ], "order_by": [ - 2078, + 2077, "[league_team_movements_order_by!]" ], "where": [ - 2068 + 2067 ] } ], "league_team_movements_aggregate": [ - 2060, + 2059, { "distinct_on": [ - 2080, + 2079, "[league_team_movements_select_column!]" ], "limit": [ @@ -165957,44 +165949,44 @@ export default { 40 ], "order_by": [ - 2078, + 2077, "[league_team_movements_order_by!]" ], "where": [ - 2068 + 2067 ] } ], "league_team_movements_by_pk": [ - 2059, + 2058, { "id": [ - 4999, + 4998, "uuid!" ] } ], "league_team_movements_stream": [ - 2059, + 2058, { "batch_size": [ 40, "Int!" ], "cursor": [ - 2088, + 2087, "[league_team_movements_stream_cursor_input]!" ], "where": [ - 2068 + 2067 ] } ], "league_team_rosters": [ - 2100, + 2099, { "distinct_on": [ - 2121, + 2120, "[league_team_rosters_select_column!]" ], "limit": [ @@ -166004,19 +165996,19 @@ export default { 40 ], "order_by": [ - 2119, + 2118, "[league_team_rosters_order_by!]" ], "where": [ - 2109 + 2108 ] } ], "league_team_rosters_aggregate": [ - 2101, + 2100, { "distinct_on": [ - 2121, + 2120, "[league_team_rosters_select_column!]" ], "limit": [ @@ -166026,48 +166018,48 @@ export default { 40 ], "order_by": [ - 2119, + 2118, "[league_team_rosters_order_by!]" ], "where": [ - 2109 + 2108 ] } ], "league_team_rosters_by_pk": [ - 2100, + 2099, { "league_team_season_id": [ - 4999, + 4998, "uuid!" ], "player_steam_id": [ - 258, + 257, "bigint!" ] } ], "league_team_rosters_stream": [ - 2100, + 2099, { "batch_size": [ 40, "Int!" ], "cursor": [ - 2129, + 2128, "[league_team_rosters_stream_cursor_input]!" ], "where": [ - 2109 + 2108 ] } ], "league_team_seasons": [ - 2141, + 2140, { "distinct_on": [ - 2163, + 2162, "[league_team_seasons_select_column!]" ], "limit": [ @@ -166077,19 +166069,19 @@ export default { 40 ], "order_by": [ - 2161, + 2160, "[league_team_seasons_order_by!]" ], "where": [ - 2150 + 2149 ] } ], "league_team_seasons_aggregate": [ - 2142, + 2141, { "distinct_on": [ - 2163, + 2162, "[league_team_seasons_select_column!]" ], "limit": [ @@ -166099,44 +166091,44 @@ export default { 40 ], "order_by": [ - 2161, + 2160, "[league_team_seasons_order_by!]" ], "where": [ - 2150 + 2149 ] } ], "league_team_seasons_by_pk": [ - 2141, + 2140, { "id": [ - 4999, + 4998, "uuid!" ] } ], "league_team_seasons_stream": [ - 2141, + 2140, { "batch_size": [ 40, "Int!" ], "cursor": [ - 2171, + 2170, "[league_team_seasons_stream_cursor_input]!" ], "where": [ - 2150 + 2149 ] } ], "league_teams": [ - 2183, + 2182, { "distinct_on": [ - 2196, + 2195, "[league_teams_select_column!]" ], "limit": [ @@ -166146,19 +166138,19 @@ export default { 40 ], "order_by": [ - 2194, + 2193, "[league_teams_order_by!]" ], "where": [ - 2186 + 2185 ] } ], "league_teams_aggregate": [ - 2184, + 2183, { "distinct_on": [ - 2196, + 2195, "[league_teams_select_column!]" ], "limit": [ @@ -166168,44 +166160,44 @@ export default { 40 ], "order_by": [ - 2194, + 2193, "[league_teams_order_by!]" ], "where": [ - 2186 + 2185 ] } ], "league_teams_by_pk": [ - 2183, + 2182, { "id": [ - 4999, + 4998, "uuid!" ] } ], "league_teams_stream": [ - 2183, + 2182, { "batch_size": [ 40, "Int!" ], "cursor": [ - 2198, + 2197, "[league_teams_stream_cursor_input]!" ], "where": [ - 2186 + 2185 ] } ], "lobbies": [ - 2202, + 2201, { "distinct_on": [ - 2215, + 2214, "[lobbies_select_column!]" ], "limit": [ @@ -166215,19 +166207,19 @@ export default { 40 ], "order_by": [ - 2213, + 2212, "[lobbies_order_by!]" ], "where": [ - 2205 + 2204 ] } ], "lobbies_aggregate": [ - 2203, + 2202, { "distinct_on": [ - 2215, + 2214, "[lobbies_select_column!]" ], "limit": [ @@ -166237,44 +166229,44 @@ export default { 40 ], "order_by": [ - 2213, + 2212, "[lobbies_order_by!]" ], "where": [ - 2205 + 2204 ] } ], "lobbies_by_pk": [ - 2202, + 2201, { "id": [ - 4999, + 4998, "uuid!" ] } ], "lobbies_stream": [ - 2202, + 2201, { "batch_size": [ 40, "Int!" ], "cursor": [ - 2217, + 2216, "[lobbies_stream_cursor_input]!" ], "where": [ - 2205 + 2204 ] } ], "lobby_players": [ - 2221, + 2220, { "distinct_on": [ - 2244, + 2243, "[lobby_players_select_column!]" ], "limit": [ @@ -166284,19 +166276,19 @@ export default { 40 ], "order_by": [ - 2242, + 2241, "[lobby_players_order_by!]" ], "where": [ - 2232 + 2231 ] } ], "lobby_players_aggregate": [ - 2222, + 2221, { "distinct_on": [ - 2244, + 2243, "[lobby_players_select_column!]" ], "limit": [ @@ -166306,48 +166298,48 @@ export default { 40 ], "order_by": [ - 2242, + 2241, "[lobby_players_order_by!]" ], "where": [ - 2232 + 2231 ] } ], "lobby_players_by_pk": [ - 2221, + 2220, { "lobby_id": [ - 4999, + 4998, "uuid!" ], "steam_id": [ - 258, + 257, "bigint!" ] } ], "lobby_players_stream": [ - 2221, + 2220, { "batch_size": [ 40, "Int!" ], "cursor": [ - 2254, + 2253, "[lobby_players_stream_cursor_input]!" ], "where": [ - 2232 + 2231 ] } ], "map_pools": [ - 2266, + 2265, { "distinct_on": [ - 2279, + 2278, "[map_pools_select_column!]" ], "limit": [ @@ -166357,19 +166349,19 @@ export default { 40 ], "order_by": [ - 2277, + 2276, "[map_pools_order_by!]" ], "where": [ - 2269 + 2268 ] } ], "map_pools_aggregate": [ - 2267, + 2266, { "distinct_on": [ - 2279, + 2278, "[map_pools_select_column!]" ], "limit": [ @@ -166379,44 +166371,44 @@ export default { 40 ], "order_by": [ - 2277, + 2276, "[map_pools_order_by!]" ], "where": [ - 2269 + 2268 ] } ], "map_pools_by_pk": [ - 2266, + 2265, { "id": [ - 4999, + 4998, "uuid!" ] } ], "map_pools_stream": [ - 2266, + 2265, { "batch_size": [ 40, "Int!" ], "cursor": [ - 2281, + 2280, "[map_pools_stream_cursor_input]!" ], "where": [ - 2269 + 2268 ] } ], "maps": [ - 2285, + 2284, { "distinct_on": [ - 2306, + 2305, "[maps_select_column!]" ], "limit": [ @@ -166426,19 +166418,19 @@ export default { 40 ], "order_by": [ - 2304, + 2303, "[maps_order_by!]" ], "where": [ - 2294 + 2293 ] } ], "maps_aggregate": [ - 2286, + 2285, { "distinct_on": [ - 2306, + 2305, "[maps_select_column!]" ], "limit": [ @@ -166448,44 +166440,44 @@ export default { 40 ], "order_by": [ - 2304, + 2303, "[maps_order_by!]" ], "where": [ - 2294 + 2293 ] } ], "maps_by_pk": [ - 2285, + 2284, { "id": [ - 4999, + 4998, "uuid!" ] } ], "maps_stream": [ - 2285, + 2284, { "batch_size": [ 40, "Int!" ], "cursor": [ - 2310, + 2309, "[maps_stream_cursor_input]!" ], "where": [ - 2294 + 2293 ] } ], "match_clips": [ - 2314, + 2313, { "distinct_on": [ - 2336, + 2335, "[match_clips_select_column!]" ], "limit": [ @@ -166495,19 +166487,19 @@ export default { 40 ], "order_by": [ - 2334, + 2333, "[match_clips_order_by!]" ], "where": [ - 2323 + 2322 ] } ], "match_clips_aggregate": [ - 2315, + 2314, { "distinct_on": [ - 2336, + 2335, "[match_clips_select_column!]" ], "limit": [ @@ -166517,44 +166509,44 @@ export default { 40 ], "order_by": [ - 2334, + 2333, "[match_clips_order_by!]" ], "where": [ - 2323 + 2322 ] } ], "match_clips_by_pk": [ - 2314, + 2313, { "id": [ - 4999, + 4998, "uuid!" ] } ], "match_clips_stream": [ - 2314, + 2313, { "batch_size": [ 40, "Int!" ], "cursor": [ - 2344, + 2343, "[match_clips_stream_cursor_input]!" ], "where": [ - 2323 + 2322 ] } ], "match_demo_sessions": [ - 2356, + 2355, { "distinct_on": [ - 2382, + 2381, "[match_demo_sessions_select_column!]" ], "limit": [ @@ -166564,19 +166556,19 @@ export default { 40 ], "order_by": [ - 2379, + 2378, "[match_demo_sessions_order_by!]" ], "where": [ - 2366 + 2365 ] } ], "match_demo_sessions_aggregate": [ - 2357, + 2356, { "distinct_on": [ - 2382, + 2381, "[match_demo_sessions_select_column!]" ], "limit": [ @@ -166586,44 +166578,44 @@ export default { 40 ], "order_by": [ - 2379, + 2378, "[match_demo_sessions_order_by!]" ], "where": [ - 2366 + 2365 ] } ], "match_demo_sessions_by_pk": [ - 2356, + 2355, { "id": [ - 4999, + 4998, "uuid!" ] } ], "match_demo_sessions_stream": [ - 2356, + 2355, { "batch_size": [ 40, "Int!" ], "cursor": [ - 2390, + 2389, "[match_demo_sessions_stream_cursor_input]!" ], "where": [ - 2366 + 2365 ] } ], "match_lineup_players": [ - 2402, + 2401, { "distinct_on": [ - 2425, + 2424, "[match_lineup_players_select_column!]" ], "limit": [ @@ -166633,19 +166625,19 @@ export default { 40 ], "order_by": [ - 2423, + 2422, "[match_lineup_players_order_by!]" ], "where": [ - 2413 + 2412 ] } ], "match_lineup_players_aggregate": [ - 2403, + 2402, { "distinct_on": [ - 2425, + 2424, "[match_lineup_players_select_column!]" ], "limit": [ @@ -166655,44 +166647,44 @@ export default { 40 ], "order_by": [ - 2423, + 2422, "[match_lineup_players_order_by!]" ], "where": [ - 2413 + 2412 ] } ], "match_lineup_players_by_pk": [ - 2402, + 2401, { "id": [ - 4999, + 4998, "uuid!" ] } ], "match_lineup_players_stream": [ - 2402, + 2401, { "batch_size": [ 40, "Int!" ], "cursor": [ - 2435, + 2434, "[match_lineup_players_stream_cursor_input]!" ], "where": [ - 2413 + 2412 ] } ], "match_lineups": [ - 2447, + 2446, { "distinct_on": [ - 2469, + 2468, "[match_lineups_select_column!]" ], "limit": [ @@ -166702,19 +166694,19 @@ export default { 40 ], "order_by": [ - 2467, + 2466, "[match_lineups_order_by!]" ], "where": [ - 2456 + 2455 ] } ], "match_lineups_aggregate": [ - 2448, + 2447, { "distinct_on": [ - 2469, + 2468, "[match_lineups_select_column!]" ], "limit": [ @@ -166724,44 +166716,44 @@ export default { 40 ], "order_by": [ - 2467, + 2466, "[match_lineups_order_by!]" ], "where": [ - 2456 + 2455 ] } ], "match_lineups_by_pk": [ - 2447, + 2446, { "id": [ - 4999, + 4998, "uuid!" ] } ], "match_lineups_stream": [ - 2447, + 2446, { "batch_size": [ 40, "Int!" ], "cursor": [ - 2477, + 2476, "[match_lineups_stream_cursor_input]!" ], "where": [ - 2456 + 2455 ] } ], "match_map_demos": [ - 2489, + 2488, { "distinct_on": [ - 2518, + 2517, "[match_map_demos_select_column!]" ], "limit": [ @@ -166771,19 +166763,19 @@ export default { 40 ], "order_by": [ - 2515, + 2514, "[match_map_demos_order_by!]" ], "where": [ - 2501 + 2500 ] } ], "match_map_demos_aggregate": [ - 2490, + 2489, { "distinct_on": [ - 2518, + 2517, "[match_map_demos_select_column!]" ], "limit": [ @@ -166793,44 +166785,44 @@ export default { 40 ], "order_by": [ - 2515, + 2514, "[match_map_demos_order_by!]" ], "where": [ - 2501 + 2500 ] } ], "match_map_demos_by_pk": [ - 2489, + 2488, { "id": [ - 4999, + 4998, "uuid!" ] } ], "match_map_demos_stream": [ - 2489, + 2488, { "batch_size": [ 40, "Int!" ], "cursor": [ - 2528, + 2527, "[match_map_demos_stream_cursor_input]!" ], "where": [ - 2501 + 2500 ] } ], "match_map_rounds": [ - 2540, + 2539, { "distinct_on": [ - 2561, + 2560, "[match_map_rounds_select_column!]" ], "limit": [ @@ -166840,19 +166832,19 @@ export default { 40 ], "order_by": [ - 2559, + 2558, "[match_map_rounds_order_by!]" ], "where": [ - 2549 + 2548 ] } ], "match_map_rounds_aggregate": [ - 2541, + 2540, { "distinct_on": [ - 2561, + 2560, "[match_map_rounds_select_column!]" ], "limit": [ @@ -166862,44 +166854,44 @@ export default { 40 ], "order_by": [ - 2559, + 2558, "[match_map_rounds_order_by!]" ], "where": [ - 2549 + 2548 ] } ], "match_map_rounds_by_pk": [ - 2540, + 2539, { "id": [ - 4999, + 4998, "uuid!" ] } ], "match_map_rounds_stream": [ - 2540, + 2539, { "batch_size": [ 40, "Int!" ], "cursor": [ - 2569, + 2568, "[match_map_rounds_stream_cursor_input]!" ], "where": [ - 2549 + 2548 ] } ], "match_map_veto_picks": [ - 2581, + 2580, { "distinct_on": [ - 2599, + 2598, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -166909,19 +166901,19 @@ export default { 40 ], "order_by": [ - 2597, + 2596, "[match_map_veto_picks_order_by!]" ], "where": [ - 2588 + 2587 ] } ], "match_map_veto_picks_aggregate": [ - 2582, + 2581, { "distinct_on": [ - 2599, + 2598, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -166931,44 +166923,44 @@ export default { 40 ], "order_by": [ - 2597, + 2596, "[match_map_veto_picks_order_by!]" ], "where": [ - 2588 + 2587 ] } ], "match_map_veto_picks_by_pk": [ - 2581, + 2580, { "id": [ - 4999, + 4998, "uuid!" ] } ], "match_map_veto_picks_stream": [ - 2581, + 2580, { "batch_size": [ 40, "Int!" ], "cursor": [ - 2601, + 2600, "[match_map_veto_picks_stream_cursor_input]!" ], "where": [ - 2588 + 2587 ] } ], "match_maps": [ - 2605, + 2604, { "distinct_on": [ - 2627, + 2626, "[match_maps_select_column!]" ], "limit": [ @@ -166978,19 +166970,19 @@ export default { 40 ], "order_by": [ - 2625, + 2624, "[match_maps_order_by!]" ], "where": [ - 2614 + 2613 ] } ], "match_maps_aggregate": [ - 2606, + 2605, { "distinct_on": [ - 2627, + 2626, "[match_maps_select_column!]" ], "limit": [ @@ -167000,44 +166992,44 @@ export default { 40 ], "order_by": [ - 2625, + 2624, "[match_maps_order_by!]" ], "where": [ - 2614 + 2613 ] } ], "match_maps_by_pk": [ - 2605, + 2604, { "id": [ - 4999, + 4998, "uuid!" ] } ], "match_maps_stream": [ - 2605, + 2604, { "batch_size": [ 40, "Int!" ], "cursor": [ - 2635, + 2634, "[match_maps_stream_cursor_input]!" ], "where": [ - 2614 + 2613 ] } ], "match_options": [ - 2647, + 2646, { "distinct_on": [ - 2662, + 2661, "[match_options_select_column!]" ], "limit": [ @@ -167047,19 +167039,19 @@ export default { 40 ], "order_by": [ - 2660, + 2659, "[match_options_order_by!]" ], "where": [ - 2651 + 2650 ] } ], "match_options_aggregate": [ - 2648, + 2647, { "distinct_on": [ - 2662, + 2661, "[match_options_select_column!]" ], "limit": [ @@ -167069,44 +167061,44 @@ export default { 40 ], "order_by": [ - 2660, + 2659, "[match_options_order_by!]" ], "where": [ - 2651 + 2650 ] } ], "match_options_by_pk": [ - 2647, + 2646, { "id": [ - 4999, + 4998, "uuid!" ] } ], "match_options_stream": [ - 2647, + 2646, { "batch_size": [ 40, "Int!" ], "cursor": [ - 2667, + 2666, "[match_options_stream_cursor_input]!" ], "where": [ - 2651 + 2650 ] } ], "match_region_veto_picks": [ - 2675, + 2674, { "distinct_on": [ - 2693, + 2692, "[match_region_veto_picks_select_column!]" ], "limit": [ @@ -167116,19 +167108,19 @@ export default { 40 ], "order_by": [ - 2691, + 2690, "[match_region_veto_picks_order_by!]" ], "where": [ - 2682 + 2681 ] } ], "match_region_veto_picks_aggregate": [ - 2676, + 2675, { "distinct_on": [ - 2693, + 2692, "[match_region_veto_picks_select_column!]" ], "limit": [ @@ -167138,44 +167130,44 @@ export default { 40 ], "order_by": [ - 2691, + 2690, "[match_region_veto_picks_order_by!]" ], "where": [ - 2682 + 2681 ] } ], "match_region_veto_picks_by_pk": [ - 2675, + 2674, { "id": [ - 4999, + 4998, "uuid!" ] } ], "match_region_veto_picks_stream": [ - 2675, + 2674, { "batch_size": [ 40, "Int!" ], "cursor": [ - 2695, + 2694, "[match_region_veto_picks_stream_cursor_input]!" ], "where": [ - 2682 + 2681 ] } ], "match_streams": [ - 2699, + 2698, { "distinct_on": [ - 2727, + 2726, "[match_streams_select_column!]" ], "limit": [ @@ -167185,19 +167177,19 @@ export default { 40 ], "order_by": [ - 2724, + 2723, "[match_streams_order_by!]" ], "where": [ - 2711 + 2710 ] } ], "match_streams_aggregate": [ - 2700, + 2699, { "distinct_on": [ - 2727, + 2726, "[match_streams_select_column!]" ], "limit": [ @@ -167207,44 +167199,44 @@ export default { 40 ], "order_by": [ - 2724, + 2723, "[match_streams_order_by!]" ], "where": [ - 2711 + 2710 ] } ], "match_streams_by_pk": [ - 2699, + 2698, { "id": [ - 4999, + 4998, "uuid!" ] } ], "match_streams_stream": [ - 2699, + 2698, { "batch_size": [ 40, "Int!" ], "cursor": [ - 2737, + 2736, "[match_streams_stream_cursor_input]!" ], "where": [ - 2711 + 2710 ] } ], "match_type_cfgs": [ - 2749, + 2748, { "distinct_on": [ - 2761, + 2760, "[match_type_cfgs_select_column!]" ], "limit": [ @@ -167254,19 +167246,19 @@ export default { 40 ], "order_by": [ - 2759, + 2758, "[match_type_cfgs_order_by!]" ], "where": [ - 2752 + 2751 ] } ], "match_type_cfgs_aggregate": [ - 2750, + 2749, { "distinct_on": [ - 2761, + 2760, "[match_type_cfgs_select_column!]" ], "limit": [ @@ -167276,44 +167268,44 @@ export default { 40 ], "order_by": [ - 2759, + 2758, "[match_type_cfgs_order_by!]" ], "where": [ - 2752 + 2751 ] } ], "match_type_cfgs_by_pk": [ - 2749, + 2748, { "type": [ - 741, + 740, "e_game_cfg_types_enum!" ] } ], "match_type_cfgs_stream": [ - 2749, + 2748, { "batch_size": [ 40, "Int!" ], "cursor": [ - 2763, + 2762, "[match_type_cfgs_stream_cursor_input]!" ], "where": [ - 2752 + 2751 ] } ], "matches": [ - 2767, + 2766, { "distinct_on": [ - 2789, + 2788, "[matches_select_column!]" ], "limit": [ @@ -167323,19 +167315,19 @@ export default { 40 ], "order_by": [ - 2787, + 2786, "[matches_order_by!]" ], "where": [ - 2776 + 2775 ] } ], "matches_aggregate": [ - 2768, + 2767, { "distinct_on": [ - 2789, + 2788, "[matches_select_column!]" ], "limit": [ @@ -167345,44 +167337,44 @@ export default { 40 ], "order_by": [ - 2787, + 2786, "[matches_order_by!]" ], "where": [ - 2776 + 2775 ] } ], "matches_by_pk": [ - 2767, + 2766, { "id": [ - 4999, + 4998, "uuid!" ] } ], "matches_stream": [ - 2767, + 2766, { "batch_size": [ 40, "Int!" ], "cursor": [ - 2797, + 2796, "[matches_stream_cursor_input]!" ], "where": [ - 2776 + 2775 ] } ], "migration_hashes_hashes": [ - 2809, + 2808, { "distinct_on": [ - 2821, + 2820, "[migration_hashes_hashes_select_column!]" ], "limit": [ @@ -167392,19 +167384,19 @@ export default { 40 ], "order_by": [ - 2819, + 2818, "[migration_hashes_hashes_order_by!]" ], "where": [ - 2812 + 2811 ] } ], "migration_hashes_hashes_aggregate": [ - 2810, + 2809, { "distinct_on": [ - 2821, + 2820, "[migration_hashes_hashes_select_column!]" ], "limit": [ @@ -167414,16 +167406,16 @@ export default { 40 ], "order_by": [ - 2819, + 2818, "[migration_hashes_hashes_order_by!]" ], "where": [ - 2812 + 2811 ] } ], "migration_hashes_hashes_by_pk": [ - 2809, + 2808, { "name": [ 80, @@ -167432,26 +167424,26 @@ export default { } ], "migration_hashes_hashes_stream": [ - 2809, + 2808, { "batch_size": [ 40, "Int!" ], "cursor": [ - 2823, + 2822, "[migration_hashes_hashes_stream_cursor_input]!" ], "where": [ - 2812 + 2811 ] } ], "my_friends": [ - 2827, + 2826, { "distinct_on": [ - 2852, + 2851, "[my_friends_select_column!]" ], "limit": [ @@ -167461,19 +167453,19 @@ export default { 40 ], "order_by": [ - 2850, + 2849, "[my_friends_order_by!]" ], "where": [ - 2839 + 2838 ] } ], "my_friends_aggregate": [ - 2828, + 2827, { "distinct_on": [ - 2852, + 2851, "[my_friends_select_column!]" ], "limit": [ @@ -167483,35 +167475,35 @@ export default { 40 ], "order_by": [ - 2850, + 2849, "[my_friends_order_by!]" ], "where": [ - 2839 + 2838 ] } ], "my_friends_stream": [ - 2827, + 2826, { "batch_size": [ 40, "Int!" ], "cursor": [ - 2862, + 2861, "[my_friends_stream_cursor_input]!" ], "where": [ - 2839 + 2838 ] } ], "news_articles": [ - 2873, + 2872, { "distinct_on": [ - 2887, + 2886, "[news_articles_select_column!]" ], "limit": [ @@ -167521,19 +167513,19 @@ export default { 40 ], "order_by": [ - 2885, + 2884, "[news_articles_order_by!]" ], "where": [ - 2877 + 2876 ] } ], "news_articles_aggregate": [ - 2874, + 2873, { "distinct_on": [ - 2887, + 2886, "[news_articles_select_column!]" ], "limit": [ @@ -167543,44 +167535,44 @@ export default { 40 ], "order_by": [ - 2885, + 2884, "[news_articles_order_by!]" ], "where": [ - 2877 + 2876 ] } ], "news_articles_by_pk": [ - 2873, + 2872, { "id": [ - 4999, + 4998, "uuid!" ] } ], "news_articles_stream": [ - 2873, + 2872, { "batch_size": [ 40, "Int!" ], "cursor": [ - 2892, + 2891, "[news_articles_stream_cursor_input]!" ], "where": [ - 2877 + 2876 ] } ], "notifications": [ - 2900, + 2899, { "distinct_on": [ - 2928, + 2927, "[notifications_select_column!]" ], "limit": [ @@ -167590,19 +167582,19 @@ export default { 40 ], "order_by": [ - 2925, + 2924, "[notifications_order_by!]" ], "where": [ - 2912 + 2911 ] } ], "notifications_aggregate": [ - 2901, + 2900, { "distinct_on": [ - 2928, + 2927, "[notifications_select_column!]" ], "limit": [ @@ -167612,44 +167604,44 @@ export default { 40 ], "order_by": [ - 2925, + 2924, "[notifications_order_by!]" ], "where": [ - 2912 + 2911 ] } ], "notifications_by_pk": [ - 2900, + 2899, { "id": [ - 4999, + 4998, "uuid!" ] } ], "notifications_stream": [ - 2900, + 2899, { "batch_size": [ 40, "Int!" ], "cursor": [ - 2938, + 2937, "[notifications_stream_cursor_input]!" ], "where": [ - 2912 + 2911 ] } ], "pending_match_import_players": [ - 2953, + 2952, { "distinct_on": [ - 2974, + 2973, "[pending_match_import_players_select_column!]" ], "limit": [ @@ -167659,19 +167651,19 @@ export default { 40 ], "order_by": [ - 2972, + 2971, "[pending_match_import_players_order_by!]" ], "where": [ - 2962 + 2961 ] } ], "pending_match_import_players_aggregate": [ - 2954, + 2953, { "distinct_on": [ - 2974, + 2973, "[pending_match_import_players_select_column!]" ], "limit": [ @@ -167681,48 +167673,48 @@ export default { 40 ], "order_by": [ - 2972, + 2971, "[pending_match_import_players_order_by!]" ], "where": [ - 2962 + 2961 ] } ], "pending_match_import_players_by_pk": [ - 2953, + 2952, { "steam_id": [ - 258, + 257, "bigint!" ], "valve_match_id": [ - 2950, + 2949, "numeric!" ] } ], "pending_match_import_players_stream": [ - 2953, + 2952, { "batch_size": [ 40, "Int!" ], "cursor": [ - 2982, + 2981, "[pending_match_import_players_stream_cursor_input]!" ], "where": [ - 2962 + 2961 ] } ], "pending_match_imports": [ - 2994, + 2993, { "distinct_on": [ - 3009, + 3008, "[pending_match_imports_select_column!]" ], "limit": [ @@ -167732,19 +167724,19 @@ export default { 40 ], "order_by": [ - 3007, + 3006, "[pending_match_imports_order_by!]" ], "where": [ - 2998 + 2997 ] } ], "pending_match_imports_aggregate": [ - 2995, + 2994, { "distinct_on": [ - 3009, + 3008, "[pending_match_imports_select_column!]" ], "limit": [ @@ -167754,44 +167746,44 @@ export default { 40 ], "order_by": [ - 3007, + 3006, "[pending_match_imports_order_by!]" ], "where": [ - 2998 + 2997 ] } ], "pending_match_imports_by_pk": [ - 2994, + 2993, { "valve_match_id": [ - 2950, + 2949, "numeric!" ] } ], "pending_match_imports_stream": [ - 2994, + 2993, { "batch_size": [ 40, "Int!" ], "cursor": [ - 3014, + 3013, "[pending_match_imports_stream_cursor_input]!" ], "where": [ - 2998 + 2997 ] } ], "player_aim_stats_demo": [ - 3022, + 3021, { "distinct_on": [ - 3036, + 3035, "[player_aim_stats_demo_select_column!]" ], "limit": [ @@ -167801,19 +167793,19 @@ export default { 40 ], "order_by": [ - 3034, + 3033, "[player_aim_stats_demo_order_by!]" ], "where": [ - 3026 + 3025 ] } ], "player_aim_stats_demo_aggregate": [ - 3023, + 3022, { "distinct_on": [ - 3036, + 3035, "[player_aim_stats_demo_select_column!]" ], "limit": [ @@ -167823,48 +167815,48 @@ export default { 40 ], "order_by": [ - 3034, + 3033, "[player_aim_stats_demo_order_by!]" ], "where": [ - 3026 + 3025 ] } ], "player_aim_stats_demo_by_pk": [ - 3022, + 3021, { "attacker_steam_id": [ - 258, + 257, "bigint!" ], "match_map_id": [ - 4999, + 4998, "uuid!" ] } ], "player_aim_stats_demo_stream": [ - 3022, + 3021, { "batch_size": [ 40, "Int!" ], "cursor": [ - 3041, + 3040, "[player_aim_stats_demo_stream_cursor_input]!" ], "where": [ - 3026 + 3025 ] } ], "player_aim_weapon_stats": [ - 3049, + 3048, { "distinct_on": [ - 3070, + 3069, "[player_aim_weapon_stats_select_column!]" ], "limit": [ @@ -167874,19 +167866,19 @@ export default { 40 ], "order_by": [ - 3068, + 3067, "[player_aim_weapon_stats_order_by!]" ], "where": [ - 3058 + 3057 ] } ], "player_aim_weapon_stats_aggregate": [ - 3050, + 3049, { "distinct_on": [ - 3070, + 3069, "[player_aim_weapon_stats_select_column!]" ], "limit": [ @@ -167896,23 +167888,23 @@ export default { 40 ], "order_by": [ - 3068, + 3067, "[player_aim_weapon_stats_order_by!]" ], "where": [ - 3058 + 3057 ] } ], "player_aim_weapon_stats_by_pk": [ - 3049, + 3048, { "match_map_id": [ - 4999, + 4998, "uuid!" ], "steam_id": [ - 258, + 257, "bigint!" ], "weapon_class": [ @@ -167922,26 +167914,26 @@ export default { } ], "player_aim_weapon_stats_stream": [ - 3049, + 3048, { "batch_size": [ 40, "Int!" ], "cursor": [ - 3078, + 3077, "[player_aim_weapon_stats_stream_cursor_input]!" ], "where": [ - 3058 + 3057 ] } ], "player_assists": [ - 3090, + 3089, { "distinct_on": [ - 3113, + 3112, "[player_assists_select_column!]" ], "limit": [ @@ -167951,19 +167943,19 @@ export default { 40 ], "order_by": [ - 3111, + 3110, "[player_assists_order_by!]" ], "where": [ - 3101 + 3100 ] } ], "player_assists_aggregate": [ - 3091, + 3090, { "distinct_on": [ - 3113, + 3112, "[player_assists_select_column!]" ], "limit": [ @@ -167973,56 +167965,56 @@ export default { 40 ], "order_by": [ - 3111, + 3110, "[player_assists_order_by!]" ], "where": [ - 3101 + 3100 ] } ], "player_assists_by_pk": [ - 3090, + 3089, { "attacked_steam_id": [ - 258, + 257, "bigint!" ], "attacker_steam_id": [ - 258, + 257, "bigint!" ], "match_map_id": [ - 4999, + 4998, "uuid!" ], "time": [ - 4499, + 4498, "timestamptz!" ] } ], "player_assists_stream": [ - 3090, + 3089, { "batch_size": [ 40, "Int!" ], "cursor": [ - 3123, + 3122, "[player_assists_stream_cursor_input]!" ], "where": [ - 3101 + 3100 ] } ], "player_career_stats_v": [ - 3135, + 3134, { "distinct_on": [ - 3143, + 3142, "[player_career_stats_v_select_column!]" ], "limit": [ @@ -168032,19 +168024,19 @@ export default { 40 ], "order_by": [ - 3142, + 3141, "[player_career_stats_v_order_by!]" ], "where": [ - 3139 + 3138 ] } ], "player_career_stats_v_aggregate": [ - 3136, + 3135, { "distinct_on": [ - 3143, + 3142, "[player_career_stats_v_select_column!]" ], "limit": [ @@ -168054,35 +168046,35 @@ export default { 40 ], "order_by": [ - 3142, + 3141, "[player_career_stats_v_order_by!]" ], "where": [ - 3139 + 3138 ] } ], "player_career_stats_v_stream": [ - 3135, + 3134, { "batch_size": [ 40, "Int!" ], "cursor": [ - 3147, + 3146, "[player_career_stats_v_stream_cursor_input]!" ], "where": [ - 3139 + 3138 ] } ], "player_damages": [ - 3153, + 3152, { "distinct_on": [ - 3174, + 3173, "[player_damages_select_column!]" ], "limit": [ @@ -168092,19 +168084,19 @@ export default { 40 ], "order_by": [ - 3172, + 3171, "[player_damages_order_by!]" ], "where": [ - 3162 + 3161 ] } ], "player_damages_aggregate": [ - 3154, + 3153, { "distinct_on": [ - 3174, + 3173, "[player_damages_select_column!]" ], "limit": [ @@ -168114,52 +168106,52 @@ export default { 40 ], "order_by": [ - 3172, + 3171, "[player_damages_order_by!]" ], "where": [ - 3162 + 3161 ] } ], "player_damages_by_pk": [ - 3153, + 3152, { "id": [ - 4999, + 4998, "uuid!" ], "match_map_id": [ - 4999, + 4998, "uuid!" ], "time": [ - 4499, + 4498, "timestamptz!" ] } ], "player_damages_stream": [ - 3153, + 3152, { "batch_size": [ 40, "Int!" ], "cursor": [ - 3182, + 3181, "[player_damages_stream_cursor_input]!" ], "where": [ - 3162 + 3161 ] } ], "player_elo": [ - 3194, + 3193, { "distinct_on": [ - 3208, + 3207, "[player_elo_select_column!]" ], "limit": [ @@ -168169,19 +168161,19 @@ export default { 40 ], "order_by": [ - 3206, + 3205, "[player_elo_order_by!]" ], "where": [ - 3198 + 3197 ] } ], "player_elo_aggregate": [ - 3195, + 3194, { "distinct_on": [ - 3208, + 3207, "[player_elo_select_column!]" ], "limit": [ @@ -168191,52 +168183,52 @@ export default { 40 ], "order_by": [ - 3206, + 3205, "[player_elo_order_by!]" ], "where": [ - 3198 + 3197 ] } ], "player_elo_by_pk": [ - 3194, + 3193, { "match_id": [ - 4999, + 4998, "uuid!" ], "steam_id": [ - 258, + 257, "bigint!" ], "type": [ - 1010, + 1009, "e_match_types_enum!" ] } ], "player_elo_stream": [ - 3194, + 3193, { "batch_size": [ 40, "Int!" ], "cursor": [ - 3213, + 3212, "[player_elo_stream_cursor_input]!" ], "where": [ - 3198 + 3197 ] } ], "player_faceit_rank_history": [ - 3221, + 3220, { "distinct_on": [ - 3242, + 3241, "[player_faceit_rank_history_select_column!]" ], "limit": [ @@ -168246,19 +168238,19 @@ export default { 40 ], "order_by": [ - 3240, + 3239, "[player_faceit_rank_history_order_by!]" ], "where": [ - 3230 + 3229 ] } ], "player_faceit_rank_history_aggregate": [ - 3222, + 3221, { "distinct_on": [ - 3242, + 3241, "[player_faceit_rank_history_select_column!]" ], "limit": [ @@ -168268,44 +168260,44 @@ export default { 40 ], "order_by": [ - 3240, + 3239, "[player_faceit_rank_history_order_by!]" ], "where": [ - 3230 + 3229 ] } ], "player_faceit_rank_history_by_pk": [ - 3221, + 3220, { "id": [ - 4999, + 4998, "uuid!" ] } ], "player_faceit_rank_history_stream": [ - 3221, + 3220, { "batch_size": [ 40, "Int!" ], "cursor": [ - 3250, + 3249, "[player_faceit_rank_history_stream_cursor_input]!" ], "where": [ - 3230 + 3229 ] } ], "player_flashes": [ - 3262, + 3261, { "distinct_on": [ - 3285, + 3284, "[player_flashes_select_column!]" ], "limit": [ @@ -168315,19 +168307,19 @@ export default { 40 ], "order_by": [ - 3283, + 3282, "[player_flashes_order_by!]" ], "where": [ - 3273 + 3272 ] } ], "player_flashes_aggregate": [ - 3263, + 3262, { "distinct_on": [ - 3285, + 3284, "[player_flashes_select_column!]" ], "limit": [ @@ -168337,56 +168329,56 @@ export default { 40 ], "order_by": [ - 3283, + 3282, "[player_flashes_order_by!]" ], "where": [ - 3273 + 3272 ] } ], "player_flashes_by_pk": [ - 3262, + 3261, { "attacked_steam_id": [ - 258, + 257, "bigint!" ], "attacker_steam_id": [ - 258, + 257, "bigint!" ], "match_map_id": [ - 4999, + 4998, "uuid!" ], "time": [ - 4499, + 4498, "timestamptz!" ] } ], "player_flashes_stream": [ - 3262, + 3261, { "batch_size": [ 40, "Int!" ], "cursor": [ - 3295, + 3294, "[player_flashes_stream_cursor_input]!" ], "where": [ - 3273 + 3272 ] } ], "player_kills": [ - 3307, + 3306, { "distinct_on": [ - 3371, + 3370, "[player_kills_select_column!]" ], "limit": [ @@ -168396,19 +168388,19 @@ export default { 40 ], "order_by": [ - 3369, + 3368, "[player_kills_order_by!]" ], "where": [ - 3318 + 3317 ] } ], "player_kills_aggregate": [ - 3308, + 3307, { "distinct_on": [ - 3371, + 3370, "[player_kills_select_column!]" ], "limit": [ @@ -168418,40 +168410,40 @@ export default { 40 ], "order_by": [ - 3369, + 3368, "[player_kills_order_by!]" ], "where": [ - 3318 + 3317 ] } ], "player_kills_by_pk": [ - 3307, + 3306, { "attacked_steam_id": [ - 258, + 257, "bigint!" ], "attacker_steam_id": [ - 258, + 257, "bigint!" ], "match_map_id": [ - 4999, + 4998, "uuid!" ], "time": [ - 4499, + 4498, "timestamptz!" ] } ], "player_kills_by_weapon": [ - 3319, + 3318, { "distinct_on": [ - 3340, + 3339, "[player_kills_by_weapon_select_column!]" ], "limit": [ @@ -168461,19 +168453,19 @@ export default { 40 ], "order_by": [ - 3338, + 3337, "[player_kills_by_weapon_order_by!]" ], "where": [ - 3328 + 3327 ] } ], "player_kills_by_weapon_aggregate": [ - 3320, + 3319, { "distinct_on": [ - 3340, + 3339, "[player_kills_by_weapon_select_column!]" ], "limit": [ @@ -168483,19 +168475,19 @@ export default { 40 ], "order_by": [ - 3338, + 3337, "[player_kills_by_weapon_order_by!]" ], "where": [ - 3328 + 3327 ] } ], "player_kills_by_weapon_by_pk": [ - 3319, + 3318, { "player_steam_id": [ - 258, + 257, "bigint!" ], "with": [ @@ -168505,42 +168497,42 @@ export default { } ], "player_kills_by_weapon_stream": [ - 3319, + 3318, { "batch_size": [ 40, "Int!" ], "cursor": [ - 3348, + 3347, "[player_kills_by_weapon_stream_cursor_input]!" ], "where": [ - 3328 + 3327 ] } ], "player_kills_stream": [ - 3307, + 3306, { "batch_size": [ 40, "Int!" ], "cursor": [ - 3381, + 3380, "[player_kills_stream_cursor_input]!" ], "where": [ - 3318 + 3317 ] } ], "player_leaderboard_rank": [ - 3393, + 3392, { "distinct_on": [ - 3404, + 3403, "[player_leaderboard_rank_select_column!]" ], "limit": [ @@ -168550,19 +168542,19 @@ export default { 40 ], "order_by": [ - 3403, + 3402, "[player_leaderboard_rank_order_by!]" ], "where": [ - 3397 + 3396 ] } ], "player_leaderboard_rank_aggregate": [ - 3394, + 3393, { "distinct_on": [ - 3404, + 3403, "[player_leaderboard_rank_select_column!]" ], "limit": [ @@ -168572,35 +168564,35 @@ export default { 40 ], "order_by": [ - 3403, + 3402, "[player_leaderboard_rank_order_by!]" ], "where": [ - 3397 + 3396 ] } ], "player_leaderboard_rank_stream": [ - 3393, + 3392, { "batch_size": [ 40, "Int!" ], "cursor": [ - 3409, + 3408, "[player_leaderboard_rank_stream_cursor_input]!" ], "where": [ - 3397 + 3396 ] } ], "player_match_map_stats": [ - 3416, + 3415, { "distinct_on": [ - 3437, + 3436, "[player_match_map_stats_select_column!]" ], "limit": [ @@ -168610,19 +168602,19 @@ export default { 40 ], "order_by": [ - 3435, + 3434, "[player_match_map_stats_order_by!]" ], "where": [ - 3425 + 3424 ] } ], "player_match_map_stats_aggregate": [ - 3417, + 3416, { "distinct_on": [ - 3437, + 3436, "[player_match_map_stats_select_column!]" ], "limit": [ @@ -168632,48 +168624,48 @@ export default { 40 ], "order_by": [ - 3435, + 3434, "[player_match_map_stats_order_by!]" ], "where": [ - 3425 + 3424 ] } ], "player_match_map_stats_by_pk": [ - 3416, + 3415, { "match_map_id": [ - 4999, + 4998, "uuid!" ], "steam_id": [ - 258, + 257, "bigint!" ] } ], "player_match_map_stats_stream": [ - 3416, + 3415, { "batch_size": [ 40, "Int!" ], "cursor": [ - 3445, + 3444, "[player_match_map_stats_stream_cursor_input]!" ], "where": [ - 3425 + 3424 ] } ], "player_match_performance_v": [ - 3457, + 3456, { "distinct_on": [ - 3465, + 3464, "[player_match_performance_v_select_column!]" ], "limit": [ @@ -168683,19 +168675,19 @@ export default { 40 ], "order_by": [ - 3464, + 3463, "[player_match_performance_v_order_by!]" ], "where": [ - 3461 + 3460 ] } ], "player_match_performance_v_aggregate": [ - 3458, + 3457, { "distinct_on": [ - 3465, + 3464, "[player_match_performance_v_select_column!]" ], "limit": [ @@ -168705,35 +168697,35 @@ export default { 40 ], "order_by": [ - 3464, + 3463, "[player_match_performance_v_order_by!]" ], "where": [ - 3461 + 3460 ] } ], "player_match_performance_v_stream": [ - 3457, + 3456, { "batch_size": [ 40, "Int!" ], "cursor": [ - 3469, + 3468, "[player_match_performance_v_stream_cursor_input]!" ], "where": [ - 3461 + 3460 ] } ], "player_match_stats_v": [ - 3475, + 3474, { "distinct_on": [ - 3491, + 3490, "[player_match_stats_v_select_column!]" ], "limit": [ @@ -168743,19 +168735,19 @@ export default { 40 ], "order_by": [ - 3490, + 3489, "[player_match_stats_v_order_by!]" ], "where": [ - 3484 + 3483 ] } ], "player_match_stats_v_aggregate": [ - 3476, + 3475, { "distinct_on": [ - 3491, + 3490, "[player_match_stats_v_select_column!]" ], "limit": [ @@ -168765,35 +168757,35 @@ export default { 40 ], "order_by": [ - 3490, + 3489, "[player_match_stats_v_order_by!]" ], "where": [ - 3484 + 3483 ] } ], "player_match_stats_v_stream": [ - 3475, + 3474, { "batch_size": [ 40, "Int!" ], "cursor": [ - 3498, + 3497, "[player_match_stats_v_stream_cursor_input]!" ], "where": [ - 3484 + 3483 ] } ], "player_objectives": [ - 3508, + 3507, { "distinct_on": [ - 3529, + 3528, "[player_objectives_select_column!]" ], "limit": [ @@ -168803,19 +168795,19 @@ export default { 40 ], "order_by": [ - 3527, + 3526, "[player_objectives_order_by!]" ], "where": [ - 3517 + 3516 ] } ], "player_objectives_aggregate": [ - 3509, + 3508, { "distinct_on": [ - 3529, + 3528, "[player_objectives_select_column!]" ], "limit": [ @@ -168825,52 +168817,52 @@ export default { 40 ], "order_by": [ - 3527, + 3526, "[player_objectives_order_by!]" ], "where": [ - 3517 + 3516 ] } ], "player_objectives_by_pk": [ - 3508, + 3507, { "match_map_id": [ - 4999, + 4998, "uuid!" ], "player_steam_id": [ - 258, + 257, "bigint!" ], "time": [ - 4499, + 4498, "timestamptz!" ] } ], "player_objectives_stream": [ - 3508, + 3507, { "batch_size": [ 40, "Int!" ], "cursor": [ - 3537, + 3536, "[player_objectives_stream_cursor_input]!" ], "where": [ - 3517 + 3516 ] } ], "player_performance_v": [ - 3549, + 3548, { "distinct_on": [ - 3557, + 3556, "[player_performance_v_select_column!]" ], "limit": [ @@ -168880,19 +168872,19 @@ export default { 40 ], "order_by": [ - 3556, + 3555, "[player_performance_v_order_by!]" ], "where": [ - 3553 + 3552 ] } ], "player_performance_v_aggregate": [ - 3550, + 3549, { "distinct_on": [ - 3557, + 3556, "[player_performance_v_select_column!]" ], "limit": [ @@ -168902,35 +168894,35 @@ export default { 40 ], "order_by": [ - 3556, + 3555, "[player_performance_v_order_by!]" ], "where": [ - 3553 + 3552 ] } ], "player_performance_v_stream": [ - 3549, + 3548, { "batch_size": [ 40, "Int!" ], "cursor": [ - 3561, + 3560, "[player_performance_v_stream_cursor_input]!" ], "where": [ - 3553 + 3552 ] } ], "player_premier_rank_history": [ - 3567, + 3566, { "distinct_on": [ - 3588, + 3587, "[player_premier_rank_history_select_column!]" ], "limit": [ @@ -168940,19 +168932,19 @@ export default { 40 ], "order_by": [ - 3586, + 3585, "[player_premier_rank_history_order_by!]" ], "where": [ - 3576 + 3575 ] } ], "player_premier_rank_history_aggregate": [ - 3568, + 3567, { "distinct_on": [ - 3588, + 3587, "[player_premier_rank_history_select_column!]" ], "limit": [ @@ -168962,44 +168954,44 @@ export default { 40 ], "order_by": [ - 3586, + 3585, "[player_premier_rank_history_order_by!]" ], "where": [ - 3576 + 3575 ] } ], "player_premier_rank_history_by_pk": [ - 3567, + 3566, { "id": [ - 4999, + 4998, "uuid!" ] } ], "player_premier_rank_history_stream": [ - 3567, + 3566, { "batch_size": [ 40, "Int!" ], "cursor": [ - 3596, + 3595, "[player_premier_rank_history_stream_cursor_input]!" ], "where": [ - 3576 + 3575 ] } ], "player_sanctions": [ - 3608, + 3607, { "distinct_on": [ - 3629, + 3628, "[player_sanctions_select_column!]" ], "limit": [ @@ -169009,19 +169001,19 @@ export default { 40 ], "order_by": [ - 3627, + 3626, "[player_sanctions_order_by!]" ], "where": [ - 3617 + 3616 ] } ], "player_sanctions_aggregate": [ - 3609, + 3608, { "distinct_on": [ - 3629, + 3628, "[player_sanctions_select_column!]" ], "limit": [ @@ -169031,48 +169023,48 @@ export default { 40 ], "order_by": [ - 3627, + 3626, "[player_sanctions_order_by!]" ], "where": [ - 3617 + 3616 ] } ], "player_sanctions_by_pk": [ - 3608, + 3607, { "created_at": [ - 4499, + 4498, "timestamptz!" ], "id": [ - 4999, + 4998, "uuid!" ] } ], "player_sanctions_stream": [ - 3608, + 3607, { "batch_size": [ 40, "Int!" ], "cursor": [ - 3637, + 3636, "[player_sanctions_stream_cursor_input]!" ], "where": [ - 3617 + 3616 ] } ], "player_season_stats": [ - 3649, + 3648, { "distinct_on": [ - 3680, + 3679, "[player_season_stats_select_column!]" ], "limit": [ @@ -169082,19 +169074,19 @@ export default { 40 ], "order_by": [ - 3678, + 3677, "[player_season_stats_order_by!]" ], "where": [ - 3668 + 3667 ] } ], "player_season_stats_aggregate": [ - 3650, + 3649, { "distinct_on": [ - 3680, + 3679, "[player_season_stats_select_column!]" ], "limit": [ @@ -169104,48 +169096,48 @@ export default { 40 ], "order_by": [ - 3678, + 3677, "[player_season_stats_order_by!]" ], "where": [ - 3668 + 3667 ] } ], "player_season_stats_by_pk": [ - 3649, + 3648, { "player_steam_id": [ - 258, + 257, "bigint!" ], "season_id": [ - 4999, + 4998, "uuid!" ] } ], "player_season_stats_stream": [ - 3649, + 3648, { "batch_size": [ 40, "Int!" ], "cursor": [ - 3696, + 3695, "[player_season_stats_stream_cursor_input]!" ], "where": [ - 3668 + 3667 ] } ], "player_stats": [ - 3708, + 3707, { "distinct_on": [ - 3723, + 3722, "[player_stats_select_column!]" ], "limit": [ @@ -169155,19 +169147,19 @@ export default { 40 ], "order_by": [ - 3721, + 3720, "[player_stats_order_by!]" ], "where": [ - 3712 + 3711 ] } ], "player_stats_aggregate": [ - 3709, + 3708, { "distinct_on": [ - 3723, + 3722, "[player_stats_select_column!]" ], "limit": [ @@ -169177,44 +169169,44 @@ export default { 40 ], "order_by": [ - 3721, + 3720, "[player_stats_order_by!]" ], "where": [ - 3712 + 3711 ] } ], "player_stats_by_pk": [ - 3708, + 3707, { "player_steam_id": [ - 258, + 257, "bigint!" ] } ], "player_stats_stream": [ - 3708, + 3707, { "batch_size": [ 40, "Int!" ], "cursor": [ - 3728, + 3727, "[player_stats_stream_cursor_input]!" ], "where": [ - 3712 + 3711 ] } ], "player_steam_bot_friend": [ - 3736, + 3735, { "distinct_on": [ - 3755, + 3754, "[player_steam_bot_friend_select_column!]" ], "limit": [ @@ -169224,19 +169216,19 @@ export default { 40 ], "order_by": [ - 3752, + 3751, "[player_steam_bot_friend_order_by!]" ], "where": [ - 3741 + 3740 ] } ], "player_steam_bot_friend_aggregate": [ - 3737, + 3736, { "distinct_on": [ - 3755, + 3754, "[player_steam_bot_friend_select_column!]" ], "limit": [ @@ -169246,44 +169238,44 @@ export default { 40 ], "order_by": [ - 3752, + 3751, "[player_steam_bot_friend_order_by!]" ], "where": [ - 3741 + 3740 ] } ], "player_steam_bot_friend_by_pk": [ - 3736, + 3735, { "steam_id": [ - 258, + 257, "bigint!" ] } ], "player_steam_bot_friend_stream": [ - 3736, + 3735, { "batch_size": [ 40, "Int!" ], "cursor": [ - 3760, + 3759, "[player_steam_bot_friend_stream_cursor_input]!" ], "where": [ - 3741 + 3740 ] } ], "player_steam_match_auth": [ - 3768, + 3767, { "distinct_on": [ - 3782, + 3781, "[player_steam_match_auth_select_column!]" ], "limit": [ @@ -169293,19 +169285,19 @@ export default { 40 ], "order_by": [ - 3780, + 3779, "[player_steam_match_auth_order_by!]" ], "where": [ - 3772 + 3771 ] } ], "player_steam_match_auth_aggregate": [ - 3769, + 3768, { "distinct_on": [ - 3782, + 3781, "[player_steam_match_auth_select_column!]" ], "limit": [ @@ -169315,44 +169307,44 @@ export default { 40 ], "order_by": [ - 3780, + 3779, "[player_steam_match_auth_order_by!]" ], "where": [ - 3772 + 3771 ] } ], "player_steam_match_auth_by_pk": [ - 3768, + 3767, { "steam_id": [ - 258, + 257, "bigint!" ] } ], "player_steam_match_auth_stream": [ - 3768, + 3767, { "batch_size": [ 40, "Int!" ], "cursor": [ - 3787, + 3786, "[player_steam_match_auth_stream_cursor_input]!" ], "where": [ - 3772 + 3771 ] } ], "player_unused_utility": [ - 3795, + 3794, { "distinct_on": [ - 3816, + 3815, "[player_unused_utility_select_column!]" ], "limit": [ @@ -169362,19 +169354,19 @@ export default { 40 ], "order_by": [ - 3814, + 3813, "[player_unused_utility_order_by!]" ], "where": [ - 3804 + 3803 ] } ], "player_unused_utility_aggregate": [ - 3796, + 3795, { "distinct_on": [ - 3816, + 3815, "[player_unused_utility_select_column!]" ], "limit": [ @@ -169384,48 +169376,48 @@ export default { 40 ], "order_by": [ - 3814, + 3813, "[player_unused_utility_order_by!]" ], "where": [ - 3804 + 3803 ] } ], "player_unused_utility_by_pk": [ - 3795, + 3794, { "match_map_id": [ - 4999, + 4998, "uuid!" ], "player_steam_id": [ - 258, + 257, "bigint!" ] } ], "player_unused_utility_stream": [ - 3795, + 3794, { "batch_size": [ 40, "Int!" ], "cursor": [ - 3824, + 3823, "[player_unused_utility_stream_cursor_input]!" ], "where": [ - 3804 + 3803 ] } ], "player_utility": [ - 3836, + 3835, { "distinct_on": [ - 3857, + 3856, "[player_utility_select_column!]" ], "limit": [ @@ -169435,19 +169427,19 @@ export default { 40 ], "order_by": [ - 3855, + 3854, "[player_utility_order_by!]" ], "where": [ - 3845 + 3844 ] } ], "player_utility_aggregate": [ - 3837, + 3836, { "distinct_on": [ - 3857, + 3856, "[player_utility_select_column!]" ], "limit": [ @@ -169457,52 +169449,52 @@ export default { 40 ], "order_by": [ - 3855, + 3854, "[player_utility_order_by!]" ], "where": [ - 3845 + 3844 ] } ], "player_utility_by_pk": [ - 3836, + 3835, { "attacker_steam_id": [ - 258, + 257, "bigint!" ], "match_map_id": [ - 4999, + 4998, "uuid!" ], "time": [ - 4499, + 4498, "timestamptz!" ] } ], "player_utility_stream": [ - 3836, + 3835, { "batch_size": [ 40, "Int!" ], "cursor": [ - 3865, + 3864, "[player_utility_stream_cursor_input]!" ], "where": [ - 3845 + 3844 ] } ], "player_weapon_stats_v": [ - 3877, + 3876, { "distinct_on": [ - 3893, + 3892, "[player_weapon_stats_v_select_column!]" ], "limit": [ @@ -169512,19 +169504,19 @@ export default { 40 ], "order_by": [ - 3892, + 3891, "[player_weapon_stats_v_order_by!]" ], "where": [ - 3886 + 3885 ] } ], "player_weapon_stats_v_aggregate": [ - 3878, + 3877, { "distinct_on": [ - 3893, + 3892, "[player_weapon_stats_v_select_column!]" ], "limit": [ @@ -169534,35 +169526,35 @@ export default { 40 ], "order_by": [ - 3892, + 3891, "[player_weapon_stats_v_order_by!]" ], "where": [ - 3886 + 3885 ] } ], "player_weapon_stats_v_stream": [ - 3877, + 3876, { "batch_size": [ 40, "Int!" ], "cursor": [ - 3900, + 3899, "[player_weapon_stats_v_stream_cursor_input]!" ], "where": [ - 3886 + 3885 ] } ], "players": [ - 3910, + 3909, { "distinct_on": [ - 3925, + 3924, "[players_select_column!]" ], "limit": [ @@ -169572,19 +169564,19 @@ export default { 40 ], "order_by": [ - 3923, + 3922, "[players_order_by!]" ], "where": [ - 3914 + 3913 ] } ], "players_aggregate": [ - 3911, + 3910, { "distinct_on": [ - 3925, + 3924, "[players_select_column!]" ], "limit": [ @@ -169594,44 +169586,44 @@ export default { 40 ], "order_by": [ - 3923, + 3922, "[players_order_by!]" ], "where": [ - 3914 + 3913 ] } ], "players_by_pk": [ - 3910, + 3909, { "steam_id": [ - 258, + 257, "bigint!" ] } ], "players_stream": [ - 3910, + 3909, { "batch_size": [ 40, "Int!" ], "cursor": [ - 3930, + 3929, "[players_stream_cursor_input]!" ], "where": [ - 3914 + 3913 ] } ], "plugin_versions": [ - 3938, + 3937, { "distinct_on": [ - 3952, + 3951, "[plugin_versions_select_column!]" ], "limit": [ @@ -169641,19 +169633,19 @@ export default { 40 ], "order_by": [ - 3950, + 3949, "[plugin_versions_order_by!]" ], "where": [ - 3942 + 3941 ] } ], "plugin_versions_aggregate": [ - 3939, + 3938, { "distinct_on": [ - 3952, + 3951, "[plugin_versions_select_column!]" ], "limit": [ @@ -169663,19 +169655,19 @@ export default { 40 ], "order_by": [ - 3950, + 3949, "[plugin_versions_order_by!]" ], "where": [ - 3942 + 3941 ] } ], "plugin_versions_by_pk": [ - 3938, + 3937, { "runtime": [ - 1091, + 1090, "e_plugin_runtimes_enum!" ], "version": [ @@ -169685,26 +169677,26 @@ export default { } ], "plugin_versions_stream": [ - 3938, + 3937, { "batch_size": [ 40, "Int!" ], "cursor": [ - 3957, + 3956, "[plugin_versions_stream_cursor_input]!" ], "where": [ - 3942 + 3941 ] } ], "seasons": [ - 3969, + 3968, { "distinct_on": [ - 3984, + 3983, "[seasons_select_column!]" ], "limit": [ @@ -169714,19 +169706,19 @@ export default { 40 ], "order_by": [ - 3982, + 3981, "[seasons_order_by!]" ], "where": [ - 3973 + 3972 ] } ], "seasons_aggregate": [ - 3970, + 3969, { "distinct_on": [ - 3984, + 3983, "[seasons_select_column!]" ], "limit": [ @@ -169736,44 +169728,44 @@ export default { 40 ], "order_by": [ - 3982, + 3981, "[seasons_order_by!]" ], "where": [ - 3973 + 3972 ] } ], "seasons_by_pk": [ - 3969, + 3968, { "id": [ - 4999, + 4998, "uuid!" ] } ], "seasons_stream": [ - 3969, + 3968, { "batch_size": [ 40, "Int!" ], "cursor": [ - 3989, + 3988, "[seasons_stream_cursor_input]!" ], "where": [ - 3973 + 3972 ] } ], "server_regions": [ - 3997, + 3996, { "distinct_on": [ - 4011, + 4010, "[server_regions_select_column!]" ], "limit": [ @@ -169783,19 +169775,19 @@ export default { 40 ], "order_by": [ - 4009, + 4008, "[server_regions_order_by!]" ], "where": [ - 4001 + 4000 ] } ], "server_regions_aggregate": [ - 3998, + 3997, { "distinct_on": [ - 4011, + 4010, "[server_regions_select_column!]" ], "limit": [ @@ -169805,16 +169797,16 @@ export default { 40 ], "order_by": [ - 4009, + 4008, "[server_regions_order_by!]" ], "where": [ - 4001 + 4000 ] } ], "server_regions_by_pk": [ - 3997, + 3996, { "value": [ 80, @@ -169823,26 +169815,26 @@ export default { } ], "server_regions_stream": [ - 3997, + 3996, { "batch_size": [ 40, "Int!" ], "cursor": [ - 4016, + 4015, "[server_regions_stream_cursor_input]!" ], "where": [ - 4001 + 4000 ] } ], "servers": [ - 4024, + 4023, { "distinct_on": [ - 4048, + 4047, "[servers_select_column!]" ], "limit": [ @@ -169852,19 +169844,19 @@ export default { 40 ], "order_by": [ - 4046, + 4045, "[servers_order_by!]" ], "where": [ - 4035 + 4034 ] } ], "servers_aggregate": [ - 4025, + 4024, { "distinct_on": [ - 4048, + 4047, "[servers_select_column!]" ], "limit": [ @@ -169874,44 +169866,44 @@ export default { 40 ], "order_by": [ - 4046, + 4045, "[servers_order_by!]" ], "where": [ - 4035 + 4034 ] } ], "servers_by_pk": [ - 4024, + 4023, { "id": [ - 4999, + 4998, "uuid!" ] } ], "servers_stream": [ - 4024, + 4023, { "batch_size": [ 40, "Int!" ], "cursor": [ - 4058, + 4057, "[servers_stream_cursor_input]!" ], "where": [ - 4035 + 4034 ] } ], "settings": [ - 4070, + 4069, { "distinct_on": [ - 4082, + 4081, "[settings_select_column!]" ], "limit": [ @@ -169921,19 +169913,19 @@ export default { 40 ], "order_by": [ - 4080, + 4079, "[settings_order_by!]" ], "where": [ - 4073 + 4072 ] } ], "settings_aggregate": [ - 4071, + 4070, { "distinct_on": [ - 4082, + 4081, "[settings_select_column!]" ], "limit": [ @@ -169943,16 +169935,16 @@ export default { 40 ], "order_by": [ - 4080, + 4079, "[settings_order_by!]" ], "where": [ - 4073 + 4072 ] } ], "settings_by_pk": [ - 4070, + 4069, { "name": [ 80, @@ -169961,26 +169953,26 @@ export default { } ], "settings_stream": [ - 4070, + 4069, { "batch_size": [ 40, "Int!" ], "cursor": [ - 4084, + 4083, "[settings_stream_cursor_input]!" ], "where": [ - 4073 + 4072 ] } ], "steam_account_claims": [ - 4090, + 4089, { "distinct_on": [ - 4108, + 4107, "[steam_account_claims_select_column!]" ], "limit": [ @@ -169990,19 +169982,19 @@ export default { 40 ], "order_by": [ - 4106, + 4105, "[steam_account_claims_order_by!]" ], "where": [ - 4097 + 4096 ] } ], "steam_account_claims_aggregate": [ - 4091, + 4090, { "distinct_on": [ - 4108, + 4107, "[steam_account_claims_select_column!]" ], "limit": [ @@ -170012,44 +170004,44 @@ export default { 40 ], "order_by": [ - 4106, + 4105, "[steam_account_claims_order_by!]" ], "where": [ - 4097 + 4096 ] } ], "steam_account_claims_by_pk": [ - 4090, + 4089, { "id": [ - 4999, + 4998, "uuid!" ] } ], "steam_account_claims_stream": [ - 4090, + 4089, { "batch_size": [ 40, "Int!" ], "cursor": [ - 4110, + 4109, "[steam_account_claims_stream_cursor_input]!" ], "where": [ - 4097 + 4096 ] } ], "steam_accounts": [ - 4114, + 4113, { "distinct_on": [ - 4129, + 4128, "[steam_accounts_select_column!]" ], "limit": [ @@ -170059,19 +170051,19 @@ export default { 40 ], "order_by": [ - 4127, + 4126, "[steam_accounts_order_by!]" ], "where": [ - 4118 + 4117 ] } ], "steam_accounts_aggregate": [ - 4115, + 4114, { "distinct_on": [ - 4129, + 4128, "[steam_accounts_select_column!]" ], "limit": [ @@ -170081,44 +170073,44 @@ export default { 40 ], "order_by": [ - 4127, + 4126, "[steam_accounts_order_by!]" ], "where": [ - 4118 + 4117 ] } ], "steam_accounts_by_pk": [ - 4114, + 4113, { "id": [ - 4999, + 4998, "uuid!" ] } ], "steam_accounts_stream": [ - 4114, + 4113, { "batch_size": [ 40, "Int!" ], "cursor": [ - 4134, + 4133, "[steam_accounts_stream_cursor_input]!" ], "where": [ - 4118 + 4117 ] } ], "system_alerts": [ - 4142, + 4141, { "distinct_on": [ - 4156, + 4155, "[system_alerts_select_column!]" ], "limit": [ @@ -170128,19 +170120,19 @@ export default { 40 ], "order_by": [ - 4154, + 4153, "[system_alerts_order_by!]" ], "where": [ - 4146 + 4145 ] } ], "system_alerts_aggregate": [ - 4143, + 4142, { "distinct_on": [ - 4156, + 4155, "[system_alerts_select_column!]" ], "limit": [ @@ -170150,44 +170142,44 @@ export default { 40 ], "order_by": [ - 4154, + 4153, "[system_alerts_order_by!]" ], "where": [ - 4146 + 4145 ] } ], "system_alerts_by_pk": [ - 4142, + 4141, { "id": [ - 4999, + 4998, "uuid!" ] } ], "system_alerts_stream": [ - 4142, + 4141, { "batch_size": [ 40, "Int!" ], "cursor": [ - 4161, + 4160, "[system_alerts_stream_cursor_input]!" ], "where": [ - 4146 + 4145 ] } ], "team_invites": [ - 4169, + 4168, { "distinct_on": [ - 4190, + 4189, "[team_invites_select_column!]" ], "limit": [ @@ -170197,19 +170189,19 @@ export default { 40 ], "order_by": [ - 4188, + 4187, "[team_invites_order_by!]" ], "where": [ - 4178 + 4177 ] } ], "team_invites_aggregate": [ - 4170, + 4169, { "distinct_on": [ - 4190, + 4189, "[team_invites_select_column!]" ], "limit": [ @@ -170219,44 +170211,44 @@ export default { 40 ], "order_by": [ - 4188, + 4187, "[team_invites_order_by!]" ], "where": [ - 4178 + 4177 ] } ], "team_invites_by_pk": [ - 4169, + 4168, { "id": [ - 4999, + 4998, "uuid!" ] } ], "team_invites_stream": [ - 4169, + 4168, { "batch_size": [ 40, "Int!" ], "cursor": [ - 4198, + 4197, "[team_invites_stream_cursor_input]!" ], "where": [ - 4178 + 4177 ] } ], "team_roster": [ - 4210, + 4209, { "distinct_on": [ - 4233, + 4232, "[team_roster_select_column!]" ], "limit": [ @@ -170266,19 +170258,19 @@ export default { 40 ], "order_by": [ - 4231, + 4230, "[team_roster_order_by!]" ], "where": [ - 4221 + 4220 ] } ], "team_roster_aggregate": [ - 4211, + 4210, { "distinct_on": [ - 4233, + 4232, "[team_roster_select_column!]" ], "limit": [ @@ -170288,48 +170280,48 @@ export default { 40 ], "order_by": [ - 4231, + 4230, "[team_roster_order_by!]" ], "where": [ - 4221 + 4220 ] } ], "team_roster_by_pk": [ - 4210, + 4209, { "player_steam_id": [ - 258, + 257, "bigint!" ], "team_id": [ - 4999, + 4998, "uuid!" ] } ], "team_roster_stream": [ - 4210, + 4209, { "batch_size": [ 40, "Int!" ], "cursor": [ - 4243, + 4242, "[team_roster_stream_cursor_input]!" ], "where": [ - 4221 + 4220 ] } ], "team_scrim_alerts": [ - 4255, + 4254, { "distinct_on": [ - 4269, + 4268, "[team_scrim_alerts_select_column!]" ], "limit": [ @@ -170339,19 +170331,19 @@ export default { 40 ], "order_by": [ - 4267, + 4266, "[team_scrim_alerts_order_by!]" ], "where": [ - 4259 + 4258 ] } ], "team_scrim_alerts_aggregate": [ - 4256, + 4255, { "distinct_on": [ - 4269, + 4268, "[team_scrim_alerts_select_column!]" ], "limit": [ @@ -170361,44 +170353,44 @@ export default { 40 ], "order_by": [ - 4267, + 4266, "[team_scrim_alerts_order_by!]" ], "where": [ - 4259 + 4258 ] } ], "team_scrim_alerts_by_pk": [ - 4255, + 4254, { "id": [ - 4999, + 4998, "uuid!" ] } ], "team_scrim_alerts_stream": [ - 4255, + 4254, { "batch_size": [ 40, "Int!" ], "cursor": [ - 4274, + 4273, "[team_scrim_alerts_stream_cursor_input]!" ], "where": [ - 4259 + 4258 ] } ], "team_scrim_availability": [ - 4282, + 4281, { "distinct_on": [ - 4302, + 4301, "[team_scrim_availability_select_column!]" ], "limit": [ @@ -170408,19 +170400,19 @@ export default { 40 ], "order_by": [ - 4300, + 4299, "[team_scrim_availability_order_by!]" ], "where": [ - 4291 + 4290 ] } ], "team_scrim_availability_aggregate": [ - 4283, + 4282, { "distinct_on": [ - 4302, + 4301, "[team_scrim_availability_select_column!]" ], "limit": [ @@ -170430,44 +170422,44 @@ export default { 40 ], "order_by": [ - 4300, + 4299, "[team_scrim_availability_order_by!]" ], "where": [ - 4291 + 4290 ] } ], "team_scrim_availability_by_pk": [ - 4282, + 4281, { "id": [ - 4999, + 4998, "uuid!" ] } ], "team_scrim_availability_stream": [ - 4282, + 4281, { "batch_size": [ 40, "Int!" ], "cursor": [ - 4306, + 4305, "[team_scrim_availability_stream_cursor_input]!" ], "where": [ - 4291 + 4290 ] } ], "team_scrim_request_proposals": [ - 4310, + 4309, { "distinct_on": [ - 4331, + 4330, "[team_scrim_request_proposals_select_column!]" ], "limit": [ @@ -170477,19 +170469,19 @@ export default { 40 ], "order_by": [ - 4329, + 4328, "[team_scrim_request_proposals_order_by!]" ], "where": [ - 4319 + 4318 ] } ], "team_scrim_request_proposals_aggregate": [ - 4311, + 4310, { "distinct_on": [ - 4331, + 4330, "[team_scrim_request_proposals_select_column!]" ], "limit": [ @@ -170499,44 +170491,44 @@ export default { 40 ], "order_by": [ - 4329, + 4328, "[team_scrim_request_proposals_order_by!]" ], "where": [ - 4319 + 4318 ] } ], "team_scrim_request_proposals_by_pk": [ - 4310, + 4309, { "id": [ - 4999, + 4998, "uuid!" ] } ], "team_scrim_request_proposals_stream": [ - 4310, + 4309, { "batch_size": [ 40, "Int!" ], "cursor": [ - 4339, + 4338, "[team_scrim_request_proposals_stream_cursor_input]!" ], "where": [ - 4319 + 4318 ] } ], "team_scrim_requests": [ - 4351, + 4350, { "distinct_on": [ - 4375, + 4374, "[team_scrim_requests_select_column!]" ], "limit": [ @@ -170546,19 +170538,19 @@ export default { 40 ], "order_by": [ - 4373, + 4372, "[team_scrim_requests_order_by!]" ], "where": [ - 4362 + 4361 ] } ], "team_scrim_requests_aggregate": [ - 4352, + 4351, { "distinct_on": [ - 4375, + 4374, "[team_scrim_requests_select_column!]" ], "limit": [ @@ -170568,44 +170560,44 @@ export default { 40 ], "order_by": [ - 4373, + 4372, "[team_scrim_requests_order_by!]" ], "where": [ - 4362 + 4361 ] } ], "team_scrim_requests_by_pk": [ - 4351, + 4350, { "id": [ - 4999, + 4998, "uuid!" ] } ], "team_scrim_requests_stream": [ - 4351, + 4350, { "batch_size": [ 40, "Int!" ], "cursor": [ - 4385, + 4384, "[team_scrim_requests_stream_cursor_input]!" ], "where": [ - 4362 + 4361 ] } ], "team_scrim_settings": [ - 4397, + 4396, { "distinct_on": [ - 4412, + 4411, "[team_scrim_settings_select_column!]" ], "limit": [ @@ -170615,19 +170607,19 @@ export default { 40 ], "order_by": [ - 4410, + 4409, "[team_scrim_settings_order_by!]" ], "where": [ - 4401 + 4400 ] } ], "team_scrim_settings_aggregate": [ - 4398, + 4397, { "distinct_on": [ - 4412, + 4411, "[team_scrim_settings_select_column!]" ], "limit": [ @@ -170637,44 +170629,44 @@ export default { 40 ], "order_by": [ - 4410, + 4409, "[team_scrim_settings_order_by!]" ], "where": [ - 4401 + 4400 ] } ], "team_scrim_settings_by_pk": [ - 4397, + 4396, { "id": [ - 4999, + 4998, "uuid!" ] } ], "team_scrim_settings_stream": [ - 4397, + 4396, { "batch_size": [ 40, "Int!" ], "cursor": [ - 4417, + 4416, "[team_scrim_settings_stream_cursor_input]!" ], "where": [ - 4401 + 4400 ] } ], "team_suggestions": [ - 4425, + 4424, { "distinct_on": [ - 4439, + 4438, "[team_suggestions_select_column!]" ], "limit": [ @@ -170684,19 +170676,19 @@ export default { 40 ], "order_by": [ - 4437, + 4436, "[team_suggestions_order_by!]" ], "where": [ - 4429 + 4428 ] } ], "team_suggestions_aggregate": [ - 4426, + 4425, { "distinct_on": [ - 4439, + 4438, "[team_suggestions_select_column!]" ], "limit": [ @@ -170706,44 +170698,44 @@ export default { 40 ], "order_by": [ - 4437, + 4436, "[team_suggestions_order_by!]" ], "where": [ - 4429 + 4428 ] } ], "team_suggestions_by_pk": [ - 4425, + 4424, { "id": [ - 4999, + 4998, "uuid!" ] } ], "team_suggestions_stream": [ - 4425, + 4424, { "batch_size": [ 40, "Int!" ], "cursor": [ - 4444, + 4443, "[team_suggestions_stream_cursor_input]!" ], "where": [ - 4429 + 4428 ] } ], "teams": [ - 4452, + 4451, { "distinct_on": [ - 4476, + 4475, "[teams_select_column!]" ], "limit": [ @@ -170753,19 +170745,19 @@ export default { 40 ], "order_by": [ - 4474, + 4473, "[teams_order_by!]" ], "where": [ - 4463 + 4462 ] } ], "teams_aggregate": [ - 4453, + 4452, { "distinct_on": [ - 4476, + 4475, "[teams_select_column!]" ], "limit": [ @@ -170775,44 +170767,44 @@ export default { 40 ], "order_by": [ - 4474, + 4473, "[teams_order_by!]" ], "where": [ - 4463 + 4462 ] } ], "teams_by_pk": [ - 4452, + 4451, { "id": [ - 4999, + 4998, "uuid!" ] } ], "teams_stream": [ - 4452, + 4451, { "batch_size": [ 40, "Int!" ], "cursor": [ - 4486, + 4485, "[teams_stream_cursor_input]!" ], "where": [ - 4463 + 4462 ] } ], "tournament_awards": [ - 4501, + 4500, { "distinct_on": [ - 4523, + 4522, "[tournament_awards_select_column!]" ], "limit": [ @@ -170822,19 +170814,19 @@ export default { 40 ], "order_by": [ - 4521, + 4520, "[tournament_awards_order_by!]" ], "where": [ - 4510 + 4509 ] } ], "tournament_awards_aggregate": [ - 4502, + 4501, { "distinct_on": [ - 4523, + 4522, "[tournament_awards_select_column!]" ], "limit": [ @@ -170844,44 +170836,44 @@ export default { 40 ], "order_by": [ - 4521, + 4520, "[tournament_awards_order_by!]" ], "where": [ - 4510 + 4509 ] } ], "tournament_awards_by_pk": [ - 4501, + 4500, { "id": [ - 4999, + 4998, "uuid!" ] } ], "tournament_awards_stream": [ - 4501, + 4500, { "batch_size": [ 40, "Int!" ], "cursor": [ - 4531, + 4530, "[tournament_awards_stream_cursor_input]!" ], "where": [ - 4510 + 4509 ] } ], "tournament_brackets": [ - 4543, + 4542, { "distinct_on": [ - 4567, + 4566, "[tournament_brackets_select_column!]" ], "limit": [ @@ -170891,19 +170883,19 @@ export default { 40 ], "order_by": [ - 4565, + 4564, "[tournament_brackets_order_by!]" ], "where": [ - 4554 + 4553 ] } ], "tournament_brackets_aggregate": [ - 4544, + 4543, { "distinct_on": [ - 4567, + 4566, "[tournament_brackets_select_column!]" ], "limit": [ @@ -170913,44 +170905,44 @@ export default { 40 ], "order_by": [ - 4565, + 4564, "[tournament_brackets_order_by!]" ], "where": [ - 4554 + 4553 ] } ], "tournament_brackets_by_pk": [ - 4543, + 4542, { "id": [ - 4999, + 4998, "uuid!" ] } ], "tournament_brackets_stream": [ - 4543, + 4542, { "batch_size": [ 40, "Int!" ], "cursor": [ - 4577, + 4576, "[tournament_brackets_stream_cursor_input]!" ], "where": [ - 4554 + 4553 ] } ], "tournament_categories": [ - 4589, + 4588, { "distinct_on": [ - 4607, + 4606, "[tournament_categories_select_column!]" ], "limit": [ @@ -170960,19 +170952,19 @@ export default { 40 ], "order_by": [ - 4605, + 4604, "[tournament_categories_order_by!]" ], "where": [ - 4596 + 4595 ] } ], "tournament_categories_aggregate": [ - 4590, + 4589, { "distinct_on": [ - 4607, + 4606, "[tournament_categories_select_column!]" ], "limit": [ @@ -170982,48 +170974,48 @@ export default { 40 ], "order_by": [ - 4605, + 4604, "[tournament_categories_order_by!]" ], "where": [ - 4596 + 4595 ] } ], "tournament_categories_by_pk": [ - 4589, + 4588, { "category": [ - 1293, + 1292, "e_tournament_categories_enum!" ], "tournament_id": [ - 4999, + 4998, "uuid!" ] } ], "tournament_categories_stream": [ - 4589, + 4588, { "batch_size": [ 40, "Int!" ], "cursor": [ - 4609, + 4608, "[tournament_categories_stream_cursor_input]!" ], "where": [ - 4596 + 4595 ] } ], "tournament_organizer_teams": [ - 4613, + 4612, { "distinct_on": [ - 4631, + 4630, "[tournament_organizer_teams_select_column!]" ], "limit": [ @@ -171033,19 +171025,19 @@ export default { 40 ], "order_by": [ - 4629, + 4628, "[tournament_organizer_teams_order_by!]" ], "where": [ - 4620 + 4619 ] } ], "tournament_organizer_teams_aggregate": [ - 4614, + 4613, { "distinct_on": [ - 4631, + 4630, "[tournament_organizer_teams_select_column!]" ], "limit": [ @@ -171055,48 +171047,48 @@ export default { 40 ], "order_by": [ - 4629, + 4628, "[tournament_organizer_teams_order_by!]" ], "where": [ - 4620 + 4619 ] } ], "tournament_organizer_teams_by_pk": [ - 4613, + 4612, { "team_id": [ - 4999, + 4998, "uuid!" ], "tournament_id": [ - 4999, + 4998, "uuid!" ] } ], "tournament_organizer_teams_stream": [ - 4613, + 4612, { "batch_size": [ 40, "Int!" ], "cursor": [ - 4633, + 4632, "[tournament_organizer_teams_stream_cursor_input]!" ], "where": [ - 4620 + 4619 ] } ], "tournament_organizers": [ - 4637, + 4636, { "distinct_on": [ - 4658, + 4657, "[tournament_organizers_select_column!]" ], "limit": [ @@ -171106,19 +171098,19 @@ export default { 40 ], "order_by": [ - 4656, + 4655, "[tournament_organizers_order_by!]" ], "where": [ - 4646 + 4645 ] } ], "tournament_organizers_aggregate": [ - 4638, + 4637, { "distinct_on": [ - 4658, + 4657, "[tournament_organizers_select_column!]" ], "limit": [ @@ -171128,48 +171120,48 @@ export default { 40 ], "order_by": [ - 4656, + 4655, "[tournament_organizers_order_by!]" ], "where": [ - 4646 + 4645 ] } ], "tournament_organizers_by_pk": [ - 4637, + 4636, { "steam_id": [ - 258, + 257, "bigint!" ], "tournament_id": [ - 4999, + 4998, "uuid!" ] } ], "tournament_organizers_stream": [ - 4637, + 4636, { "batch_size": [ 40, "Int!" ], "cursor": [ - 4666, + 4665, "[tournament_organizers_stream_cursor_input]!" ], "where": [ - 4646 + 4645 ] } ], "tournament_prizes": [ - 4678, + 4677, { "distinct_on": [ - 4699, + 4698, "[tournament_prizes_select_column!]" ], "limit": [ @@ -171179,19 +171171,19 @@ export default { 40 ], "order_by": [ - 4697, + 4696, "[tournament_prizes_order_by!]" ], "where": [ - 4687 + 4686 ] } ], "tournament_prizes_aggregate": [ - 4679, + 4678, { "distinct_on": [ - 4699, + 4698, "[tournament_prizes_select_column!]" ], "limit": [ @@ -171201,44 +171193,44 @@ export default { 40 ], "order_by": [ - 4697, + 4696, "[tournament_prizes_order_by!]" ], "where": [ - 4687 + 4686 ] } ], "tournament_prizes_by_pk": [ - 4678, + 4677, { "id": [ - 4999, + 4998, "uuid!" ] } ], "tournament_prizes_stream": [ - 4678, + 4677, { "batch_size": [ 40, "Int!" ], "cursor": [ - 4707, + 4706, "[tournament_prizes_stream_cursor_input]!" ], "where": [ - 4687 + 4686 ] } ], "tournament_stage_windows": [ - 4719, + 4718, { "distinct_on": [ - 4740, + 4739, "[tournament_stage_windows_select_column!]" ], "limit": [ @@ -171248,19 +171240,19 @@ export default { 40 ], "order_by": [ - 4738, + 4737, "[tournament_stage_windows_order_by!]" ], "where": [ - 4728 + 4727 ] } ], "tournament_stage_windows_aggregate": [ - 4720, + 4719, { "distinct_on": [ - 4740, + 4739, "[tournament_stage_windows_select_column!]" ], "limit": [ @@ -171270,44 +171262,44 @@ export default { 40 ], "order_by": [ - 4738, + 4737, "[tournament_stage_windows_order_by!]" ], "where": [ - 4728 + 4727 ] } ], "tournament_stage_windows_by_pk": [ - 4719, + 4718, { "id": [ - 4999, + 4998, "uuid!" ] } ], "tournament_stage_windows_stream": [ - 4719, + 4718, { "batch_size": [ 40, "Int!" ], "cursor": [ - 4748, + 4747, "[tournament_stage_windows_stream_cursor_input]!" ], "where": [ - 4728 + 4727 ] } ], "tournament_stages": [ - 4760, + 4759, { "distinct_on": [ - 4789, + 4788, "[tournament_stages_select_column!]" ], "limit": [ @@ -171317,19 +171309,19 @@ export default { 40 ], "order_by": [ - 4786, + 4785, "[tournament_stages_order_by!]" ], "where": [ - 4772 + 4771 ] } ], "tournament_stages_aggregate": [ - 4761, + 4760, { "distinct_on": [ - 4789, + 4788, "[tournament_stages_select_column!]" ], "limit": [ @@ -171339,44 +171331,44 @@ export default { 40 ], "order_by": [ - 4786, + 4785, "[tournament_stages_order_by!]" ], "where": [ - 4772 + 4771 ] } ], "tournament_stages_by_pk": [ - 4760, + 4759, { "id": [ - 4999, + 4998, "uuid!" ] } ], "tournament_stages_stream": [ - 4760, + 4759, { "batch_size": [ 40, "Int!" ], "cursor": [ - 4799, + 4798, "[tournament_stages_stream_cursor_input]!" ], "where": [ - 4772 + 4771 ] } ], "tournament_team_invites": [ - 4811, + 4810, { "distinct_on": [ - 4832, + 4831, "[tournament_team_invites_select_column!]" ], "limit": [ @@ -171386,19 +171378,19 @@ export default { 40 ], "order_by": [ - 4830, + 4829, "[tournament_team_invites_order_by!]" ], "where": [ - 4820 + 4819 ] } ], "tournament_team_invites_aggregate": [ - 4812, + 4811, { "distinct_on": [ - 4832, + 4831, "[tournament_team_invites_select_column!]" ], "limit": [ @@ -171408,44 +171400,44 @@ export default { 40 ], "order_by": [ - 4830, + 4829, "[tournament_team_invites_order_by!]" ], "where": [ - 4820 + 4819 ] } ], "tournament_team_invites_by_pk": [ - 4811, + 4810, { "id": [ - 4999, + 4998, "uuid!" ] } ], "tournament_team_invites_stream": [ - 4811, + 4810, { "batch_size": [ 40, "Int!" ], "cursor": [ - 4840, + 4839, "[tournament_team_invites_stream_cursor_input]!" ], "where": [ - 4820 + 4819 ] } ], "tournament_team_roster": [ - 4852, + 4851, { "distinct_on": [ - 4873, + 4872, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -171455,19 +171447,19 @@ export default { 40 ], "order_by": [ - 4871, + 4870, "[tournament_team_roster_order_by!]" ], "where": [ - 4861 + 4860 ] } ], "tournament_team_roster_aggregate": [ - 4853, + 4852, { "distinct_on": [ - 4873, + 4872, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -171477,48 +171469,48 @@ export default { 40 ], "order_by": [ - 4871, + 4870, "[tournament_team_roster_order_by!]" ], "where": [ - 4861 + 4860 ] } ], "tournament_team_roster_by_pk": [ - 4852, + 4851, { "player_steam_id": [ - 258, + 257, "bigint!" ], "tournament_id": [ - 4999, + 4998, "uuid!" ] } ], "tournament_team_roster_stream": [ - 4852, + 4851, { "batch_size": [ 40, "Int!" ], "cursor": [ - 4881, + 4880, "[tournament_team_roster_stream_cursor_input]!" ], "where": [ - 4861 + 4860 ] } ], "tournament_teams": [ - 4893, + 4892, { "distinct_on": [ - 4915, + 4914, "[tournament_teams_select_column!]" ], "limit": [ @@ -171528,19 +171520,19 @@ export default { 40 ], "order_by": [ - 4913, + 4912, "[tournament_teams_order_by!]" ], "where": [ - 4902 + 4901 ] } ], "tournament_teams_aggregate": [ - 4894, + 4893, { "distinct_on": [ - 4915, + 4914, "[tournament_teams_select_column!]" ], "limit": [ @@ -171550,44 +171542,44 @@ export default { 40 ], "order_by": [ - 4913, + 4912, "[tournament_teams_order_by!]" ], "where": [ - 4902 + 4901 ] } ], "tournament_teams_by_pk": [ - 4893, + 4892, { "id": [ - 4999, + 4998, "uuid!" ] } ], "tournament_teams_stream": [ - 4893, + 4892, { "batch_size": [ 40, "Int!" ], "cursor": [ - 4923, + 4922, "[tournament_teams_stream_cursor_input]!" ], "where": [ - 4902 + 4901 ] } ], "tournaments": [ - 4935, + 4934, { "distinct_on": [ - 4969, + 4968, "[tournaments_select_column!]" ], "limit": [ @@ -171597,19 +171589,19 @@ export default { 40 ], "order_by": [ - 4967, + 4966, "[tournaments_order_by!]" ], "where": [ - 4956 + 4955 ] } ], "tournaments_aggregate": [ - 4936, + 4935, { "distinct_on": [ - 4969, + 4968, "[tournaments_select_column!]" ], "limit": [ @@ -171619,44 +171611,44 @@ export default { 40 ], "order_by": [ - 4967, + 4966, "[tournaments_order_by!]" ], "where": [ - 4956 + 4955 ] } ], "tournaments_by_pk": [ - 4935, + 4934, { "id": [ - 4999, + 4998, "uuid!" ] } ], "tournaments_stream": [ - 4935, + 4934, { "batch_size": [ 40, "Int!" ], "cursor": [ - 4987, + 4986, "[tournaments_stream_cursor_input]!" ], "where": [ - 4956 + 4955 ] } ], "v_event_player_stats": [ - 5002, + 5001, { "distinct_on": [ - 5028, + 5027, "[v_event_player_stats_select_column!]" ], "limit": [ @@ -171666,19 +171658,19 @@ export default { 40 ], "order_by": [ - 5027, + 5026, "[v_event_player_stats_order_by!]" ], "where": [ - 5021 + 5020 ] } ], "v_event_player_stats_aggregate": [ - 5003, + 5002, { "distinct_on": [ - 5028, + 5027, "[v_event_player_stats_select_column!]" ], "limit": [ @@ -171688,35 +171680,35 @@ export default { 40 ], "order_by": [ - 5027, + 5026, "[v_event_player_stats_order_by!]" ], "where": [ - 5021 + 5020 ] } ], "v_event_player_stats_stream": [ - 5002, + 5001, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5043, + 5042, "[v_event_player_stats_stream_cursor_input]!" ], "where": [ - 5021 + 5020 ] } ], "v_gpu_pool_status": [ - 5053, + 5052, { "distinct_on": [ - 5061, + 5060, "[v_gpu_pool_status_select_column!]" ], "limit": [ @@ -171726,19 +171718,19 @@ export default { 40 ], "order_by": [ - 5060, + 5059, "[v_gpu_pool_status_order_by!]" ], "where": [ - 5057 + 5056 ] } ], "v_gpu_pool_status_aggregate": [ - 5054, + 5053, { "distinct_on": [ - 5061, + 5060, "[v_gpu_pool_status_select_column!]" ], "limit": [ @@ -171748,35 +171740,35 @@ export default { 40 ], "order_by": [ - 5060, + 5059, "[v_gpu_pool_status_order_by!]" ], "where": [ - 5057 + 5056 ] } ], "v_gpu_pool_status_stream": [ - 5053, + 5052, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5065, + 5064, "[v_gpu_pool_status_stream_cursor_input]!" ], "where": [ - 5057 + 5056 ] } ], "v_league_division_standings": [ - 5071, + 5070, { "distinct_on": [ - 5087, + 5086, "[v_league_division_standings_select_column!]" ], "limit": [ @@ -171786,19 +171778,19 @@ export default { 40 ], "order_by": [ - 5086, + 5085, "[v_league_division_standings_order_by!]" ], "where": [ - 5080 + 5079 ] } ], "v_league_division_standings_aggregate": [ - 5072, + 5071, { "distinct_on": [ - 5087, + 5086, "[v_league_division_standings_select_column!]" ], "limit": [ @@ -171808,35 +171800,35 @@ export default { 40 ], "order_by": [ - 5086, + 5085, "[v_league_division_standings_order_by!]" ], "where": [ - 5080 + 5079 ] } ], "v_league_division_standings_stream": [ - 5071, + 5070, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5094, + 5093, "[v_league_division_standings_stream_cursor_input]!" ], "where": [ - 5080 + 5079 ] } ], "v_league_season_player_stats": [ - 5104, + 5103, { "distinct_on": [ - 5130, + 5129, "[v_league_season_player_stats_select_column!]" ], "limit": [ @@ -171846,19 +171838,19 @@ export default { 40 ], "order_by": [ - 5129, + 5128, "[v_league_season_player_stats_order_by!]" ], "where": [ - 5123 + 5122 ] } ], "v_league_season_player_stats_aggregate": [ - 5105, + 5104, { "distinct_on": [ - 5130, + 5129, "[v_league_season_player_stats_select_column!]" ], "limit": [ @@ -171868,35 +171860,35 @@ export default { 40 ], "order_by": [ - 5129, + 5128, "[v_league_season_player_stats_order_by!]" ], "where": [ - 5123 + 5122 ] } ], "v_league_season_player_stats_stream": [ - 5104, + 5103, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5145, + 5144, "[v_league_season_player_stats_stream_cursor_input]!" ], "where": [ - 5123 + 5122 ] } ], "v_match_captains": [ - 5155, + 5154, { "distinct_on": [ - 5167, + 5166, "[v_match_captains_select_column!]" ], "limit": [ @@ -171906,19 +171898,19 @@ export default { 40 ], "order_by": [ - 5166, + 5165, "[v_match_captains_order_by!]" ], "where": [ - 5159 + 5158 ] } ], "v_match_captains_aggregate": [ - 5156, + 5155, { "distinct_on": [ - 5167, + 5166, "[v_match_captains_select_column!]" ], "limit": [ @@ -171928,35 +171920,35 @@ export default { 40 ], "order_by": [ - 5166, + 5165, "[v_match_captains_order_by!]" ], "where": [ - 5159 + 5158 ] } ], "v_match_captains_stream": [ - 5155, + 5154, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5172, + 5171, "[v_match_captains_stream_cursor_input]!" ], "where": [ - 5159 + 5158 ] } ], "v_match_clutches": [ - 5179, + 5178, { "distinct_on": [ - 5195, + 5194, "[v_match_clutches_select_column!]" ], "limit": [ @@ -171966,19 +171958,19 @@ export default { 40 ], "order_by": [ - 5194, + 5193, "[v_match_clutches_order_by!]" ], "where": [ - 5188 + 5187 ] } ], "v_match_clutches_aggregate": [ - 5180, + 5179, { "distinct_on": [ - 5195, + 5194, "[v_match_clutches_select_column!]" ], "limit": [ @@ -171988,35 +171980,35 @@ export default { 40 ], "order_by": [ - 5194, + 5193, "[v_match_clutches_order_by!]" ], "where": [ - 5188 + 5187 ] } ], "v_match_clutches_stream": [ - 5179, + 5178, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5202, + 5201, "[v_match_clutches_stream_cursor_input]!" ], "where": [ - 5188 + 5187 ] } ], "v_match_kill_pairs": [ - 5212, + 5211, { "distinct_on": [ - 5220, + 5219, "[v_match_kill_pairs_select_column!]" ], "limit": [ @@ -172026,19 +172018,19 @@ export default { 40 ], "order_by": [ - 5219, + 5218, "[v_match_kill_pairs_order_by!]" ], "where": [ - 5216 + 5215 ] } ], "v_match_kill_pairs_aggregate": [ - 5213, + 5212, { "distinct_on": [ - 5220, + 5219, "[v_match_kill_pairs_select_column!]" ], "limit": [ @@ -172048,35 +172040,35 @@ export default { 40 ], "order_by": [ - 5219, + 5218, "[v_match_kill_pairs_order_by!]" ], "where": [ - 5216 + 5215 ] } ], "v_match_kill_pairs_stream": [ - 5212, + 5211, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5224, + 5223, "[v_match_kill_pairs_stream_cursor_input]!" ], "where": [ - 5216 + 5215 ] } ], "v_match_lineup_buy_types": [ - 5230, + 5229, { "distinct_on": [ - 5238, + 5237, "[v_match_lineup_buy_types_select_column!]" ], "limit": [ @@ -172086,19 +172078,19 @@ export default { 40 ], "order_by": [ - 5237, + 5236, "[v_match_lineup_buy_types_order_by!]" ], "where": [ - 5234 + 5233 ] } ], "v_match_lineup_buy_types_aggregate": [ - 5231, + 5230, { "distinct_on": [ - 5238, + 5237, "[v_match_lineup_buy_types_select_column!]" ], "limit": [ @@ -172108,35 +172100,35 @@ export default { 40 ], "order_by": [ - 5237, + 5236, "[v_match_lineup_buy_types_order_by!]" ], "where": [ - 5234 + 5233 ] } ], "v_match_lineup_buy_types_stream": [ - 5230, + 5229, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5242, + 5241, "[v_match_lineup_buy_types_stream_cursor_input]!" ], "where": [ - 5234 + 5233 ] } ], "v_match_lineup_map_stats": [ - 5248, + 5247, { "distinct_on": [ - 5256, + 5255, "[v_match_lineup_map_stats_select_column!]" ], "limit": [ @@ -172146,19 +172138,19 @@ export default { 40 ], "order_by": [ - 5255, + 5254, "[v_match_lineup_map_stats_order_by!]" ], "where": [ - 5252 + 5251 ] } ], "v_match_lineup_map_stats_aggregate": [ - 5249, + 5248, { "distinct_on": [ - 5256, + 5255, "[v_match_lineup_map_stats_select_column!]" ], "limit": [ @@ -172168,35 +172160,35 @@ export default { 40 ], "order_by": [ - 5255, + 5254, "[v_match_lineup_map_stats_order_by!]" ], "where": [ - 5252 + 5251 ] } ], "v_match_lineup_map_stats_stream": [ - 5248, + 5247, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5260, + 5259, "[v_match_lineup_map_stats_stream_cursor_input]!" ], "where": [ - 5252 + 5251 ] } ], "v_match_map_backup_rounds": [ - 5266, + 5265, { "distinct_on": [ - 5277, + 5276, "[v_match_map_backup_rounds_select_column!]" ], "limit": [ @@ -172206,19 +172198,19 @@ export default { 40 ], "order_by": [ - 5276, + 5275, "[v_match_map_backup_rounds_order_by!]" ], "where": [ - 5270 + 5269 ] } ], "v_match_map_backup_rounds_aggregate": [ - 5267, + 5266, { "distinct_on": [ - 5277, + 5276, "[v_match_map_backup_rounds_select_column!]" ], "limit": [ @@ -172228,35 +172220,35 @@ export default { 40 ], "order_by": [ - 5276, + 5275, "[v_match_map_backup_rounds_order_by!]" ], "where": [ - 5270 + 5269 ] } ], "v_match_map_backup_rounds_stream": [ - 5266, + 5265, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5282, + 5281, "[v_match_map_backup_rounds_stream_cursor_input]!" ], "where": [ - 5270 + 5269 ] } ], "v_match_player_buy_types": [ - 5289, + 5288, { "distinct_on": [ - 5297, + 5296, "[v_match_player_buy_types_select_column!]" ], "limit": [ @@ -172266,19 +172258,19 @@ export default { 40 ], "order_by": [ - 5296, + 5295, "[v_match_player_buy_types_order_by!]" ], "where": [ - 5293 + 5292 ] } ], "v_match_player_buy_types_aggregate": [ - 5290, + 5289, { "distinct_on": [ - 5297, + 5296, "[v_match_player_buy_types_select_column!]" ], "limit": [ @@ -172288,35 +172280,35 @@ export default { 40 ], "order_by": [ - 5296, + 5295, "[v_match_player_buy_types_order_by!]" ], "where": [ - 5293 + 5292 ] } ], "v_match_player_buy_types_stream": [ - 5289, + 5288, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5301, + 5300, "[v_match_player_buy_types_stream_cursor_input]!" ], "where": [ - 5293 + 5292 ] } ], "v_match_player_opening_duels": [ - 5307, + 5306, { "distinct_on": [ - 5323, + 5322, "[v_match_player_opening_duels_select_column!]" ], "limit": [ @@ -172326,19 +172318,19 @@ export default { 40 ], "order_by": [ - 5322, + 5321, "[v_match_player_opening_duels_order_by!]" ], "where": [ - 5316 + 5315 ] } ], "v_match_player_opening_duels_aggregate": [ - 5308, + 5307, { "distinct_on": [ - 5323, + 5322, "[v_match_player_opening_duels_select_column!]" ], "limit": [ @@ -172348,35 +172340,35 @@ export default { 40 ], "order_by": [ - 5322, + 5321, "[v_match_player_opening_duels_order_by!]" ], "where": [ - 5316 + 5315 ] } ], "v_match_player_opening_duels_stream": [ - 5307, + 5306, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5330, + 5329, "[v_match_player_opening_duels_stream_cursor_input]!" ], "where": [ - 5316 + 5315 ] } ], "v_player_arch_nemesis": [ - 5340, + 5339, { "distinct_on": [ - 5348, + 5347, "[v_player_arch_nemesis_select_column!]" ], "limit": [ @@ -172386,19 +172378,19 @@ export default { 40 ], "order_by": [ - 5347, + 5346, "[v_player_arch_nemesis_order_by!]" ], "where": [ - 5344 + 5343 ] } ], "v_player_arch_nemesis_aggregate": [ - 5341, + 5340, { "distinct_on": [ - 5348, + 5347, "[v_player_arch_nemesis_select_column!]" ], "limit": [ @@ -172408,35 +172400,35 @@ export default { 40 ], "order_by": [ - 5347, + 5346, "[v_player_arch_nemesis_order_by!]" ], "where": [ - 5344 + 5343 ] } ], "v_player_arch_nemesis_stream": [ - 5340, + 5339, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5352, + 5351, "[v_player_arch_nemesis_stream_cursor_input]!" ], "where": [ - 5344 + 5343 ] } ], "v_player_damage": [ - 5358, + 5357, { "distinct_on": [ - 5366, + 5365, "[v_player_damage_select_column!]" ], "limit": [ @@ -172446,19 +172438,19 @@ export default { 40 ], "order_by": [ - 5365, + 5364, "[v_player_damage_order_by!]" ], "where": [ - 5362 + 5361 ] } ], "v_player_damage_aggregate": [ - 5359, + 5358, { "distinct_on": [ - 5366, + 5365, "[v_player_damage_select_column!]" ], "limit": [ @@ -172468,35 +172460,35 @@ export default { 40 ], "order_by": [ - 5365, + 5364, "[v_player_damage_order_by!]" ], "where": [ - 5362 + 5361 ] } ], "v_player_damage_stream": [ - 5358, + 5357, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5370, + 5369, "[v_player_damage_stream_cursor_input]!" ], "where": [ - 5362 + 5361 ] } ], "v_player_elo": [ - 5376, + 5375, { "distinct_on": [ - 5402, + 5401, "[v_player_elo_select_column!]" ], "limit": [ @@ -172506,19 +172498,19 @@ export default { 40 ], "order_by": [ - 5401, + 5400, "[v_player_elo_order_by!]" ], "where": [ - 5395 + 5394 ] } ], "v_player_elo_aggregate": [ - 5377, + 5376, { "distinct_on": [ - 5402, + 5401, "[v_player_elo_select_column!]" ], "limit": [ @@ -172528,35 +172520,35 @@ export default { 40 ], "order_by": [ - 5401, + 5400, "[v_player_elo_order_by!]" ], "where": [ - 5395 + 5394 ] } ], "v_player_elo_stream": [ - 5376, + 5375, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5417, + 5416, "[v_player_elo_stream_cursor_input]!" ], "where": [ - 5395 + 5394 ] } ], "v_player_map_losses": [ - 5427, + 5426, { "distinct_on": [ - 5435, + 5434, "[v_player_map_losses_select_column!]" ], "limit": [ @@ -172566,19 +172558,19 @@ export default { 40 ], "order_by": [ - 5434, + 5433, "[v_player_map_losses_order_by!]" ], "where": [ - 5431 + 5430 ] } ], "v_player_map_losses_aggregate": [ - 5428, + 5427, { "distinct_on": [ - 5435, + 5434, "[v_player_map_losses_select_column!]" ], "limit": [ @@ -172588,35 +172580,35 @@ export default { 40 ], "order_by": [ - 5434, + 5433, "[v_player_map_losses_order_by!]" ], "where": [ - 5431 + 5430 ] } ], "v_player_map_losses_stream": [ - 5427, + 5426, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5439, + 5438, "[v_player_map_losses_stream_cursor_input]!" ], "where": [ - 5431 + 5430 ] } ], "v_player_map_wins": [ - 5445, + 5444, { "distinct_on": [ - 5453, + 5452, "[v_player_map_wins_select_column!]" ], "limit": [ @@ -172626,19 +172618,19 @@ export default { 40 ], "order_by": [ - 5452, + 5451, "[v_player_map_wins_order_by!]" ], "where": [ - 5449 + 5448 ] } ], "v_player_map_wins_aggregate": [ - 5446, + 5445, { "distinct_on": [ - 5453, + 5452, "[v_player_map_wins_select_column!]" ], "limit": [ @@ -172648,35 +172640,35 @@ export default { 40 ], "order_by": [ - 5452, + 5451, "[v_player_map_wins_order_by!]" ], "where": [ - 5449 + 5448 ] } ], "v_player_map_wins_stream": [ - 5445, + 5444, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5457, + 5456, "[v_player_map_wins_stream_cursor_input]!" ], "where": [ - 5449 + 5448 ] } ], "v_player_match_head_to_head": [ - 5463, + 5462, { "distinct_on": [ - 5471, + 5470, "[v_player_match_head_to_head_select_column!]" ], "limit": [ @@ -172686,19 +172678,19 @@ export default { 40 ], "order_by": [ - 5470, + 5469, "[v_player_match_head_to_head_order_by!]" ], "where": [ - 5467 + 5466 ] } ], "v_player_match_head_to_head_aggregate": [ - 5464, + 5463, { "distinct_on": [ - 5471, + 5470, "[v_player_match_head_to_head_select_column!]" ], "limit": [ @@ -172708,35 +172700,35 @@ export default { 40 ], "order_by": [ - 5470, + 5469, "[v_player_match_head_to_head_order_by!]" ], "where": [ - 5467 + 5466 ] } ], "v_player_match_head_to_head_stream": [ - 5463, + 5462, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5475, + 5474, "[v_player_match_head_to_head_stream_cursor_input]!" ], "where": [ - 5467 + 5466 ] } ], "v_player_match_map_hltv": [ - 5481, + 5480, { "distinct_on": [ - 5499, + 5498, "[v_player_match_map_hltv_select_column!]" ], "limit": [ @@ -172746,19 +172738,19 @@ export default { 40 ], "order_by": [ - 5498, + 5497, "[v_player_match_map_hltv_order_by!]" ], "where": [ - 5490 + 5489 ] } ], "v_player_match_map_hltv_aggregate": [ - 5482, + 5481, { "distinct_on": [ - 5499, + 5498, "[v_player_match_map_hltv_select_column!]" ], "limit": [ @@ -172768,35 +172760,35 @@ export default { 40 ], "order_by": [ - 5498, + 5497, "[v_player_match_map_hltv_order_by!]" ], "where": [ - 5490 + 5489 ] } ], "v_player_match_map_hltv_stream": [ - 5481, + 5480, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5507, + 5506, "[v_player_match_map_hltv_stream_cursor_input]!" ], "where": [ - 5490 + 5489 ] } ], "v_player_match_map_roles": [ - 5518, + 5517, { "distinct_on": [ - 5526, + 5525, "[v_player_match_map_roles_select_column!]" ], "limit": [ @@ -172806,19 +172798,19 @@ export default { 40 ], "order_by": [ - 5525, + 5524, "[v_player_match_map_roles_order_by!]" ], "where": [ - 5522 + 5521 ] } ], "v_player_match_map_roles_aggregate": [ - 5519, + 5518, { "distinct_on": [ - 5526, + 5525, "[v_player_match_map_roles_select_column!]" ], "limit": [ @@ -172828,35 +172820,35 @@ export default { 40 ], "order_by": [ - 5525, + 5524, "[v_player_match_map_roles_order_by!]" ], "where": [ - 5522 + 5521 ] } ], "v_player_match_map_roles_stream": [ - 5518, + 5517, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5530, + 5529, "[v_player_match_map_roles_stream_cursor_input]!" ], "where": [ - 5522 + 5521 ] } ], "v_player_match_performance": [ - 5536, + 5535, { "distinct_on": [ - 5544, + 5543, "[v_player_match_performance_select_column!]" ], "limit": [ @@ -172866,19 +172858,19 @@ export default { 40 ], "order_by": [ - 5543, + 5542, "[v_player_match_performance_order_by!]" ], "where": [ - 5540 + 5539 ] } ], "v_player_match_performance_aggregate": [ - 5537, + 5536, { "distinct_on": [ - 5544, + 5543, "[v_player_match_performance_select_column!]" ], "limit": [ @@ -172888,35 +172880,35 @@ export default { 40 ], "order_by": [ - 5543, + 5542, "[v_player_match_performance_order_by!]" ], "where": [ - 5540 + 5539 ] } ], "v_player_match_performance_stream": [ - 5536, + 5535, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5548, + 5547, "[v_player_match_performance_stream_cursor_input]!" ], "where": [ - 5540 + 5539 ] } ], "v_player_match_rating": [ - 5554, + 5553, { "distinct_on": [ - 5562, + 5561, "[v_player_match_rating_select_column!]" ], "limit": [ @@ -172926,19 +172918,19 @@ export default { 40 ], "order_by": [ - 5561, + 5560, "[v_player_match_rating_order_by!]" ], "where": [ - 5558 + 5557 ] } ], "v_player_match_rating_aggregate": [ - 5555, + 5554, { "distinct_on": [ - 5562, + 5561, "[v_player_match_rating_select_column!]" ], "limit": [ @@ -172948,35 +172940,35 @@ export default { 40 ], "order_by": [ - 5561, + 5560, "[v_player_match_rating_order_by!]" ], "where": [ - 5558 + 5557 ] } ], "v_player_match_rating_stream": [ - 5554, + 5553, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5566, + 5565, "[v_player_match_rating_stream_cursor_input]!" ], "where": [ - 5558 + 5557 ] } ], "v_player_multi_kills": [ - 5572, + 5571, { "distinct_on": [ - 5588, + 5587, "[v_player_multi_kills_select_column!]" ], "limit": [ @@ -172986,19 +172978,19 @@ export default { 40 ], "order_by": [ - 5587, + 5586, "[v_player_multi_kills_order_by!]" ], "where": [ - 5581 + 5580 ] } ], "v_player_multi_kills_aggregate": [ - 5573, + 5572, { "distinct_on": [ - 5588, + 5587, "[v_player_multi_kills_select_column!]" ], "limit": [ @@ -173008,35 +173000,35 @@ export default { 40 ], "order_by": [ - 5587, + 5586, "[v_player_multi_kills_order_by!]" ], "where": [ - 5581 + 5580 ] } ], "v_player_multi_kills_stream": [ - 5572, + 5571, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5595, + 5594, "[v_player_multi_kills_stream_cursor_input]!" ], "where": [ - 5581 + 5580 ] } ], "v_player_weapon_damage": [ - 5605, + 5604, { "distinct_on": [ - 5613, + 5612, "[v_player_weapon_damage_select_column!]" ], "limit": [ @@ -173046,19 +173038,19 @@ export default { 40 ], "order_by": [ - 5612, + 5611, "[v_player_weapon_damage_order_by!]" ], "where": [ - 5609 + 5608 ] } ], "v_player_weapon_damage_aggregate": [ - 5606, + 5605, { "distinct_on": [ - 5613, + 5612, "[v_player_weapon_damage_select_column!]" ], "limit": [ @@ -173068,35 +173060,35 @@ export default { 40 ], "order_by": [ - 5612, + 5611, "[v_player_weapon_damage_order_by!]" ], "where": [ - 5609 + 5608 ] } ], "v_player_weapon_damage_stream": [ - 5605, + 5604, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5617, + 5616, "[v_player_weapon_damage_stream_cursor_input]!" ], "where": [ - 5609 + 5608 ] } ], "v_player_weapon_kills": [ - 5623, + 5622, { "distinct_on": [ - 5631, + 5630, "[v_player_weapon_kills_select_column!]" ], "limit": [ @@ -173106,19 +173098,19 @@ export default { 40 ], "order_by": [ - 5630, + 5629, "[v_player_weapon_kills_order_by!]" ], "where": [ - 5627 + 5626 ] } ], "v_player_weapon_kills_aggregate": [ - 5624, + 5623, { "distinct_on": [ - 5631, + 5630, "[v_player_weapon_kills_select_column!]" ], "limit": [ @@ -173128,35 +173120,35 @@ export default { 40 ], "order_by": [ - 5630, + 5629, "[v_player_weapon_kills_order_by!]" ], "where": [ - 5627 + 5626 ] } ], "v_player_weapon_kills_stream": [ - 5623, + 5622, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5635, + 5634, "[v_player_weapon_kills_stream_cursor_input]!" ], "where": [ - 5627 + 5626 ] } ], "v_pool_maps": [ - 5641, + 5640, { "distinct_on": [ - 5658, + 5657, "[v_pool_maps_select_column!]" ], "limit": [ @@ -173166,19 +173158,19 @@ export default { 40 ], "order_by": [ - 5657, + 5656, "[v_pool_maps_order_by!]" ], "where": [ - 5650 + 5649 ] } ], "v_pool_maps_aggregate": [ - 5642, + 5641, { "distinct_on": [ - 5658, + 5657, "[v_pool_maps_select_column!]" ], "limit": [ @@ -173188,35 +173180,35 @@ export default { 40 ], "order_by": [ - 5657, + 5656, "[v_pool_maps_order_by!]" ], "where": [ - 5650 + 5649 ] } ], "v_pool_maps_stream": [ - 5641, + 5640, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5662, + 5661, "[v_pool_maps_stream_cursor_input]!" ], "where": [ - 5650 + 5649 ] } ], "v_steam_account_pool_status": [ - 5665, + 5664, { "distinct_on": [ - 5673, + 5672, "[v_steam_account_pool_status_select_column!]" ], "limit": [ @@ -173226,19 +173218,19 @@ export default { 40 ], "order_by": [ - 5672, + 5671, "[v_steam_account_pool_status_order_by!]" ], "where": [ - 5669 + 5668 ] } ], "v_steam_account_pool_status_aggregate": [ - 5666, + 5665, { "distinct_on": [ - 5673, + 5672, "[v_steam_account_pool_status_select_column!]" ], "limit": [ @@ -173248,35 +173240,35 @@ export default { 40 ], "order_by": [ - 5672, + 5671, "[v_steam_account_pool_status_order_by!]" ], "where": [ - 5669 + 5668 ] } ], "v_steam_account_pool_status_stream": [ - 5665, + 5664, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5677, + 5676, "[v_steam_account_pool_status_stream_cursor_input]!" ], "where": [ - 5669 + 5668 ] } ], "v_team_ranks": [ - 5683, + 5682, { "distinct_on": [ - 5693, + 5692, "[v_team_ranks_select_column!]" ], "limit": [ @@ -173286,19 +173278,19 @@ export default { 40 ], "order_by": [ - 5692, + 5691, "[v_team_ranks_order_by!]" ], "where": [ - 5687 + 5686 ] } ], "v_team_ranks_aggregate": [ - 5684, + 5683, { "distinct_on": [ - 5693, + 5692, "[v_team_ranks_select_column!]" ], "limit": [ @@ -173308,35 +173300,35 @@ export default { 40 ], "order_by": [ - 5692, + 5691, "[v_team_ranks_order_by!]" ], "where": [ - 5687 + 5686 ] } ], "v_team_ranks_stream": [ - 5683, + 5682, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5697, + 5696, "[v_team_ranks_stream_cursor_input]!" ], "where": [ - 5687 + 5686 ] } ], "v_team_reputation": [ - 5703, + 5702, { "distinct_on": [ - 5713, + 5712, "[v_team_reputation_select_column!]" ], "limit": [ @@ -173346,19 +173338,19 @@ export default { 40 ], "order_by": [ - 5712, + 5711, "[v_team_reputation_order_by!]" ], "where": [ - 5707 + 5706 ] } ], "v_team_reputation_aggregate": [ - 5704, + 5703, { "distinct_on": [ - 5713, + 5712, "[v_team_reputation_select_column!]" ], "limit": [ @@ -173368,35 +173360,35 @@ export default { 40 ], "order_by": [ - 5712, + 5711, "[v_team_reputation_order_by!]" ], "where": [ - 5707 + 5706 ] } ], "v_team_reputation_stream": [ - 5703, + 5702, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5717, + 5716, "[v_team_reputation_stream_cursor_input]!" ], "where": [ - 5707 + 5706 ] } ], "v_team_stage_results": [ - 5723, + 5722, { "distinct_on": [ - 5755, + 5754, "[v_team_stage_results_select_column!]" ], "limit": [ @@ -173406,19 +173398,19 @@ export default { 40 ], "order_by": [ - 5753, + 5752, "[v_team_stage_results_order_by!]" ], "where": [ - 5742 + 5741 ] } ], "v_team_stage_results_aggregate": [ - 5724, + 5723, { "distinct_on": [ - 5755, + 5754, "[v_team_stage_results_select_column!]" ], "limit": [ @@ -173428,48 +173420,48 @@ export default { 40 ], "order_by": [ - 5753, + 5752, "[v_team_stage_results_order_by!]" ], "where": [ - 5742 + 5741 ] } ], "v_team_stage_results_by_pk": [ - 5723, + 5722, { "tournament_stage_id": [ - 4999, + 4998, "uuid!" ], "tournament_team_id": [ - 4999, + 4998, "uuid!" ] } ], "v_team_stage_results_stream": [ - 5723, + 5722, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5771, + 5770, "[v_team_stage_results_stream_cursor_input]!" ], "where": [ - 5742 + 5741 ] } ], "v_team_tournament_results": [ - 5783, + 5782, { "distinct_on": [ - 5809, + 5808, "[v_team_tournament_results_select_column!]" ], "limit": [ @@ -173479,19 +173471,19 @@ export default { 40 ], "order_by": [ - 5808, + 5807, "[v_team_tournament_results_order_by!]" ], "where": [ - 5802 + 5801 ] } ], "v_team_tournament_results_aggregate": [ - 5784, + 5783, { "distinct_on": [ - 5809, + 5808, "[v_team_tournament_results_select_column!]" ], "limit": [ @@ -173501,35 +173493,35 @@ export default { 40 ], "order_by": [ - 5808, + 5807, "[v_team_tournament_results_order_by!]" ], "where": [ - 5802 + 5801 ] } ], "v_team_tournament_results_stream": [ - 5783, + 5782, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5824, + 5823, "[v_team_tournament_results_stream_cursor_input]!" ], "where": [ - 5802 + 5801 ] } ], "v_tournament_player_stats": [ - 5834, + 5833, { "distinct_on": [ - 5860, + 5859, "[v_tournament_player_stats_select_column!]" ], "limit": [ @@ -173539,19 +173531,19 @@ export default { 40 ], "order_by": [ - 5859, + 5858, "[v_tournament_player_stats_order_by!]" ], "where": [ - 5853 + 5852 ] } ], "v_tournament_player_stats_aggregate": [ - 5835, + 5834, { "distinct_on": [ - 5860, + 5859, "[v_tournament_player_stats_select_column!]" ], "limit": [ @@ -173561,27 +173553,27 @@ export default { 40 ], "order_by": [ - 5859, + 5858, "[v_tournament_player_stats_order_by!]" ], "where": [ - 5853 + 5852 ] } ], "v_tournament_player_stats_stream": [ - 5834, + 5833, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5875, + 5874, "[v_tournament_player_stats_stream_cursor_input]!" ], "where": [ - 5853 + 5852 ] } ], diff --git a/hasura/metadata/actions.graphql b/hasura/metadata/actions.graphql index 50cde4f4..4875bfac 100644 --- a/hasura/metadata/actions.graphql +++ b/hasura/metadata/actions.graphql @@ -1189,6 +1189,8 @@ type TelemetryFleetTotals { matchesWeek: Int! matchesMonth: Int! matchesYear: Int! + matchesImported: Int! + matchesImportedMonth: Int! mapsPlayed: Int! playersRegistered: Int! playersActive30d: Int! @@ -1203,11 +1205,6 @@ type TelemetryFeatureAdoption { total: Int! } -type TelemetryVersionSpread { - version: String! - installs: Int! -} - type TelemetryGrowthPoint { month: String! installs: Int! @@ -1224,7 +1221,6 @@ type TelemetryStats { installs: TelemetryInstallCounts! totals: TelemetryFleetTotals! features: [TelemetryFeatureAdoption!]! - versions: [TelemetryVersionSpread!]! growth: [TelemetryGrowthPoint!]! activity: [TelemetryActivityPoint!]! } diff --git a/hasura/metadata/actions.yaml b/hasura/metadata/actions.yaml index 302f59b6..e962abf8 100644 --- a/hasura/metadata/actions.yaml +++ b/hasura/metadata/actions.yaml @@ -1327,7 +1327,6 @@ custom_types: - name: TelemetryInstallCounts - name: TelemetryFleetTotals - name: TelemetryFeatureAdoption - - name: TelemetryVersionSpread - name: TelemetryGrowthPoint - name: TelemetryActivityPoint - name: TelemetryStats diff --git a/src/telemetry/telemetry.service.ts b/src/telemetry/telemetry.service.ts index fc956610..f4bbcc9e 100644 --- a/src/telemetry/telemetry.service.ts +++ b/src/telemetry/telemetry.service.ts @@ -310,6 +310,8 @@ export class TelemetryService { coalesce(sum((payload->'matches'->>'week')::numeric), 0) AS "matchesWeek", coalesce(sum((payload->'matches'->>'month')::numeric), 0) AS "matchesMonth", coalesce(sum((payload->'matches'->>'year')::numeric), 0) AS "matchesYear", + coalesce(sum((payload->'matches'->'external'->>'total')::numeric), 0) AS "matchesImported", + coalesce(sum((payload->'matches'->'external'->>'month')::numeric), 0) AS "matchesImportedMonth", coalesce(sum((payload->'matches'->>'maps_played')::numeric), 0) AS "mapsPlayed", coalesce(sum((payload->'players'->>'registered')::numeric), 0) AS "playersRegistered", coalesce(sum((payload->'players'->>'active_30d')::numeric), 0) AS "playersActive30d", @@ -329,6 +331,8 @@ export class TelemetryService { "matchesWeek", "matchesMonth", "matchesYear", + "matchesImported", + "matchesImportedMonth", "mapsPlayed", "playersRegistered", "playersActive30d", @@ -530,6 +534,12 @@ export class TelemetryService { tournament: int(matches.tournament), league: int(matches.league), scrim: int(matches.scrim), + external: { + total: int(section(matches.external).total), + week: int(section(matches.external).week), + month: int(section(matches.external).month), + year: int(section(matches.external).year), + }, }, players: { registered: int(players.registered), diff --git a/test/telemetry-perf.spec.ts b/test/telemetry-perf.spec.ts new file mode 100644 index 00000000..f2c50384 --- /dev/null +++ b/test/telemetry-perf.spec.ts @@ -0,0 +1,154 @@ +import { Logger } from "@nestjs/common"; +import { PostgresService } from "./../src/postgres/postgres.service"; +import { bootMigratedDb, SqlTestDb } from "./utils/sql-test-db"; +import { TelemetryService } from "./../src/telemetry/telemetry.service"; + +// TEMPORARY benchmark — not a committed guard. +describe("telemetry perf", () => { + let db: SqlTestDb; + let postgres: PostgresService; + let service: TelemetryService; + + beforeAll(async () => { + db = await bootMigratedDb("TelemetryPerfTest"); + postgres = db.postgres; + + service = new TelemetryService( + new Logger("Perf"), + { + getConnection: () => ({ + setex: async () => "OK", + scan: async () => ["0", []], + }), + } as never, + null as never, + { get: () => ({ webDomain: "https://panel.test" }) } as never, + postgres, + { getPanelVersion: async () => "abc" } as never, + { + remember: async (_k: string, cb: () => Promise) => await cb(), + } as never, + ); + + await postgres.query( + `INSERT INTO server_regions (value, is_lan) VALUES ('PerfRegion', false) + ON CONFLICT (value) DO NOTHING`, + ); + await postgres.query( + `INSERT INTO servers (host, label, rcon_password, port, enabled, region, type, is_dedicated) + VALUES ('127.0.0.1', 'perf-server', '\\x00'::bytea, 27915, true, 'PerfRegion', 'Ranked', true)`, + ); + + const MATCHES = 20000; + + console.log(`seeding ${MATCHES} matches...`); + const started = Date.now(); + + await postgres.query( + `INSERT INTO match_lineups (id) + SELECT gen_random_uuid() FROM generate_series(1, ${MATCHES * 2})`, + ); + + await postgres.query( + `WITH numbered AS ( + SELECT id, row_number() OVER () AS rn FROM match_lineups + ), + pairs AS ( + SELECT a.id AS l1, b.id AS l2, a.rn + FROM numbered a + JOIN numbered b ON b.rn = a.rn + ${MATCHES} + WHERE a.rn <= ${MATCHES} + ) + INSERT INTO matches (lineup_1_id, lineup_2_id, source, started_at, ended_at, created_at) + SELECT l1, l2, + CASE WHEN rn % 5 = 0 THEN 'faceit' ELSE '5stack' END, + now() - (rn || ' hours')::interval, + now() - (rn || ' hours')::interval, + now() - (rn || ' hours')::interval + FROM pairs`, + ); + + await postgres.query( + `INSERT INTO players (steam_id, name) + SELECT 76561190000000000 + g, 'p' || g FROM generate_series(1, 5000) g`, + ); + + // 10 players per match — the table the active-player join has to walk. + await postgres.query( + `INSERT INTO match_lineup_players (match_lineup_id, steam_id) + SELECT l.id, 76561190000000000 + ((row_number() OVER ()) % 5000) + 1 + FROM match_lineups l, generate_series(1, 5) s`, + ); + + await postgres.query( + `INSERT INTO match_maps (match_id, map_id, "order", status) + SELECT m.id, (SELECT id FROM maps ORDER BY name LIMIT 1), 1, 'Finished' + FROM matches m`, + ); + + console.log(`seeded in ${Date.now() - started}ms`); + + const counts = await postgres.query>>( + `SELECT + (SELECT count(*) FROM matches) AS matches, + (SELECT count(*) FROM match_lineup_players) AS lineup_players, + (SELECT count(*) FROM match_maps) AS maps`, + ); + console.log("row counts:", counts[0]); + + await postgres.query("ANALYZE"); + }, 900_000); + + afterAll(async () => { + await db?.stop(); + }); + + it("times the whole collect()", async () => { + for (let i = 0; i < 3; i++) { + const started = Date.now(); + await service.collect(); + console.log(`collect() run ${i + 1}: ${Date.now() - started}ms`); + } + }, 300_000); + + it("times the active-player join on its own", async () => { + const sql = `SELECT count(DISTINCT p.steam_id) + FROM public.match_lineup_players p + JOIN public.matches m + ON m.lineup_1_id = p.match_lineup_id OR m.lineup_2_id = p.match_lineup_id + WHERE p.steam_id IS NOT NULL + AND m.started_at IS NOT NULL + AND m.effective_at >= now() - interval '30 days'`; + + const started = Date.now(); + await postgres.query(sql); + console.log(`OR-join active players: ${Date.now() - started}ms`); + + const plan = await postgres.query>>( + `EXPLAIN (ANALYZE, BUFFERS) ${sql}`, + ); + console.log(plan.map((r) => r["QUERY PLAN"]).join("\n")); + }, 300_000); + + it("times an IN-rewrite of the same thing", async () => { + const sql = `SELECT count(DISTINCT p.steam_id) + FROM public.match_lineup_players p + WHERE p.steam_id IS NOT NULL + AND p.match_lineup_id IN ( + SELECT lineup_1_id FROM public.matches + WHERE started_at IS NOT NULL AND effective_at >= now() - interval '30 days' + UNION + SELECT lineup_2_id FROM public.matches + WHERE started_at IS NOT NULL AND effective_at >= now() - interval '30 days' + )`; + + const started = Date.now(); + await postgres.query(sql); + console.log(`IN-rewrite active players: ${Date.now() - started}ms`); + + const plan = await postgres.query>>( + `EXPLAIN (ANALYZE, BUFFERS) ${sql}`, + ); + console.log(plan.map((r) => r["QUERY PLAN"]).join("\n")); + }, 300_000); +}); diff --git a/test/telemetry.spec.ts b/test/telemetry.spec.ts index f189ec0d..db7d0ff6 100644 --- a/test/telemetry.spec.ts +++ b/test/telemetry.spec.ts @@ -65,6 +65,23 @@ describe("telemetry (SQL-driven)", () => { // Never started: must land in `created` but not in `total` or the windows. await fx.bareMatch(); + // An imported FACEIT demo. The importer stamps a started_at, so without + // the source split this reads as a match the panel hosted. + const imported = await fx.bareMatch(new Date().toISOString()); + await postgres.query( + `UPDATE matches SET started_at = now(), source = 'faceit', external_id = $2 + WHERE id = $1`, + [imported.matchId, "faceit-1"], + ); + + // A demo played on a 5stack server and imported back in keeps + // source = '5stack'; external_id is the only thing separating it. + const reimported = await fx.bareMatch(new Date().toISOString()); + await postgres.query( + "UPDATE matches SET started_at = now(), external_id = $2 WHERE id = $1", + [reimported.matchId, "5stack-1"], + ); + payload = await service.collect(); }, 600_000); @@ -77,13 +94,22 @@ describe("telemetry (SQL-driven)", () => { }); it("counts only started matches as ran, and every row as created", () => { - expect(payload.matches.created).toBe(2); + expect(payload.matches.created).toBe(4); expect(payload.matches.total).toBe(1); expect(payload.matches.week).toBe(1); expect(payload.matches.month).toBe(1); expect(payload.matches.year).toBe(1); }); + it("keeps imported matches out of the matches the panel ran", () => { + expect(payload.matches.external.total).toBe(2); + expect(payload.matches.external.week).toBe(2); + expect(payload.matches.external.year).toBe(2); + + // by_source stays whole-fleet so the origin mix is still visible. + expect(payload.matches.by_source.faceit).toBe(1); + }); + it("reports the servers seeded by the region fixture", () => { expect(payload.servers.total).toBeGreaterThanOrEqual(1); expect(payload.servers.dedicated).toBeGreaterThanOrEqual(1); @@ -159,6 +185,7 @@ describe("telemetry (SQL-driven)", () => { tournament: 60, league: 10, scrim: 25, + external: { total: 30, week: 1, month: 3, year: 12 }, }, players: { registered: 300, active_7d: 40, active_30d: 90, teams: 22 }, features: { @@ -298,6 +325,7 @@ describe("telemetry (SQL-driven)", () => { tournament: 1, league: 0, scrim: 2, + external: { total: matches / 10, week: 0, month: 2, year: 5 }, }, players: { registered: 50, active_7d: 5, active_30d: 12, teams: 3 }, features: { @@ -320,6 +348,9 @@ describe("telemetry (SQL-driven)", () => { expect(stats.totals.servers).toBe(10); expect(stats.totals.serverCapacity).toBe(100); expect(stats.totals.mapsPlayed).toBe(700); + // Imported matches are summed apart from the ones the panels hosted. + expect(stats.totals.matchesImported).toBe(35); + expect(stats.totals.matchesImportedMonth).toBe(4); }); it("reports feature adoption across installs", async () => { @@ -337,10 +368,9 @@ describe("telemetry (SQL-driven)", () => { expect(highlights.total).toBe(20); }); - it("groups installs by panel version and first-seen month", async () => { + it("groups installs by first-seen month", async () => { const stats = await service.getFleetStats(); - expect(stats.versions).toEqual([{ version: "cafebabe", installs: 2 }]); expect(stats.growth).toHaveLength(1); expect(stats.growth[0].installs).toBe(2); }); From 939a54481b05d0a97017a2fc72e7c9404622f217 Mon Sep 17 00:00:00 2001 From: Luke Policinski Date: Sun, 26 Jul 2026 14:48:13 -0400 Subject: [PATCH 7/8] wip --- .../functions/leaderboard/get_leaderboard.sql | 11 ++---- .../seasons/calculate_season_awards.sql | 9 ----- hasura/metadata/actions.graphql | 1 + .../1873000000400_telemetry_reports/up.sql | 4 -- .../default/1873000000600_awards/down.sql | 4 -- .../default/1873000000600_awards/up.sql | 38 +------------------ hasura/triggers/award_recipients.sql | 13 ++----- hasura/triggers/awards.sql | 7 +--- hasura/triggers/seasons_awards.sql | 2 - src/telemetry/telemetry.service.ts | 4 ++ test/telemetry-perf.spec.ts | 7 +++- 11 files changed, 22 insertions(+), 78 deletions(-) diff --git a/hasura/functions/leaderboard/get_leaderboard.sql b/hasura/functions/leaderboard/get_leaderboard.sql index 6f9f94c7..f20e3faa 100644 --- a/hasura/functions/leaderboard/get_leaderboard.sql +++ b/hasura/functions/leaderboard/get_leaderboard.sql @@ -546,10 +546,8 @@ BEGIN SUM(CASE WHEN ar.placement = 3 THEN 1 ELSE 0 END)::int as bronze, COUNT(*)::int as total FROM award_recipients ar - -- Tournament placements carry a match type and a start date, so they honour - -- the window and type filters. Season placements are ranked from the season - -- itself: they have no match_options, so they only apply when no type filter - -- is set, and their date is the season's end. + -- Season placements have no match_options, so a match-type filter has to + -- exclude them rather than drop them for a missing join. LEFT JOIN tournaments t ON t.id = ar.tournament_id LEFT JOIN match_options mo ON mo.id = t.match_options_id LEFT JOIN seasons s ON s.id = ar.season_id @@ -568,9 +566,8 @@ BEGIN OR ( _match_type IS NULL AND ( - -- A season's own medals are handed out at its close, which is the - -- exclusive end of its window, so match the season directly rather - -- than by date when the board is already scoped to one. + -- A season's medals land exactly on the exclusive end of its own + -- window, so a date compare would drop them. (_season_id IS NOT NULL AND ar.season_id = _season_id) OR ( _season_id IS NULL diff --git a/hasura/functions/seasons/calculate_season_awards.sql b/hasura/functions/seasons/calculate_season_awards.sql index 687da1e1..f6488b5c 100644 --- a/hasura/functions/seasons/calculate_season_awards.sql +++ b/hasura/functions/seasons/calculate_season_awards.sql @@ -1,6 +1,3 @@ --- Season placements, mirroring calculate_tournament_awards: the ladder decides --- gold/silver/bronze and a performance metric decides MVP, so the two are not --- always the same player. CREATE OR REPLACE FUNCTION public.calculate_season_awards(_season_id uuid) RETURNS void LANGUAGE plpgsql @@ -8,8 +5,6 @@ AS $$ DECLARE _mvp_steam_id bigint; BEGIN - -- Always clear prior calculated rows so a recalculation lands in a known - -- state. Hand-granted season awards are the organizer's and survive. DELETE FROM public.award_recipients WHERE season_id = _season_id AND source = 'season'; @@ -17,8 +12,6 @@ BEGIN RETURN; END IF; - -- Ranking reuses the ELO leaderboard rather than re-deriving it, so the - -- award always agrees with what the leaderboard shows for the season. INSERT INTO public.award_recipients (award_id, season_id, player_steam_id, placement, source) SELECT @@ -45,8 +38,6 @@ BEGIN WHERE ranked.rank <= 3 ON CONFLICT DO NOTHING; - -- MVP: highest average in-match impact over the season, the same metric a - -- tournament MVP uses. SELECT pe.steam_id INTO _mvp_steam_id FROM public.player_elo pe diff --git a/hasura/metadata/actions.graphql b/hasura/metadata/actions.graphql index 4875bfac..743b83a7 100644 --- a/hasura/metadata/actions.graphql +++ b/hasura/metadata/actions.graphql @@ -1200,6 +1200,7 @@ type TelemetryFleetTotals { type TelemetryFeatureAdoption { key: String! enabled: Int! + flagged: Int! reporting: Int! installsUsing: Int! total: Int! diff --git a/hasura/migrations/default/1873000000400_telemetry_reports/up.sql b/hasura/migrations/default/1873000000400_telemetry_reports/up.sql index 1bc50010..8bb762ef 100644 --- a/hasura/migrations/default/1873000000400_telemetry_reports/up.sql +++ b/hasura/migrations/default/1873000000400_telemetry_reports/up.sql @@ -1,7 +1,3 @@ --- Only the 5stack.gg panel ever writes these: every other install POSTs its --- hourly heartbeat here. Panels are self-hosted and unauthenticated, so nothing --- in these tables is trustworthy on its own — the receiver clamps and validates --- before inserting, and aggregates should still be read as self-reported. CREATE TABLE IF NOT EXISTS public.telemetry_installs ( install_id uuid PRIMARY KEY, first_seen_at timestamptz NOT NULL DEFAULT now(), diff --git a/hasura/migrations/default/1873000000600_awards/down.sql b/hasura/migrations/default/1873000000600_awards/down.sql index 4447d78b..534b43b5 100644 --- a/hasura/migrations/default/1873000000600_awards/down.sql +++ b/hasura/migrations/default/1873000000600_awards/down.sql @@ -1,4 +1,3 @@ --- ── from 1873000000500_season_awards ───────────────────────────────────────── DROP TRIGGER IF EXISTS tau_seasons_awards ON public.seasons; DROP FUNCTION IF EXISTS public.tau_seasons_awards(); DROP FUNCTION IF EXISTS public.calculate_season_awards(uuid); @@ -34,7 +33,6 @@ ALTER TABLE public.award_recipients DELETE FROM public.e_award_sources WHERE value = 'season'; --- ── from 1873000000300_award_scopes ───────────────────────────────────────── ALTER TABLE public.awards DROP CONSTRAINT IF EXISTS awards_single_scope_check; @@ -60,7 +58,6 @@ BEGIN END IF; END $$; --- ── from 1873000000200_award_tournament_owner ───────────────────────────────────────── ALTER TABLE public.awards DROP CONSTRAINT IF EXISTS awards_system_award_is_shared_check; @@ -69,7 +66,6 @@ DROP INDEX IF EXISTS public.idx_awards_tournament; ALTER TABLE public.awards DROP COLUMN IF EXISTS tournament_id; --- ── from 1873000000100_awards ───────────────────────────────────────── -- These are created in later boot phases (hasura/functions, hasura/triggers) -- and are not reverted by re-running migrations, so they must be dropped here -- before the tables they depend on. diff --git a/hasura/migrations/default/1873000000600_awards/up.sql b/hasura/migrations/default/1873000000600_awards/up.sql index ef9b86f5..52a65231 100644 --- a/hasura/migrations/default/1873000000600_awards/up.sql +++ b/hasura/migrations/default/1873000000600_awards/up.sql @@ -1,15 +1,3 @@ --- Awards: catalog + recipients, scopes, and season placements. --- Squashed from the original award migrations; every statement is --- idempotent so it applies to a fresh database and to one that already --- ran the earlier split versions. - --- ── from 1873000000100_awards ───────────────────────────────────────── --- Awards: promote tournament trophies into a first-class awards system. --- --- tournament_trophies fused two ideas: what the award IS (name / artwork) and --- WHO holds it. Splitting them lets awards be authored on their own and handed --- out outside a tournament, while tournament placements stay automated. - CREATE TABLE IF NOT EXISTS public.e_award_tiers ( value text NOT NULL PRIMARY KEY, description text NOT NULL @@ -41,8 +29,6 @@ CREATE TABLE IF NOT EXISTS public.awards ( REFERENCES public.e_award_tiers(value), silhouette int CHECK (silhouette IS NULL OR (silhouette >= 0 AND silhouette <= 4)), image_url text, - -- Set only on the seeded awards the tournament automation falls back to. - -- These cannot be deleted; everything else in the catalog can. system_key text UNIQUE, allow_multiple boolean NOT NULL DEFAULT false, created_by_steam_id bigint REFERENCES public.players(steam_id) ON DELETE SET NULL, @@ -140,7 +126,6 @@ ALTER TABLE public.award_recipients ALTER COLUMN tournament_team_id DROP NOT NULL, ALTER COLUMN placement DROP NOT NULL; --- A tournament team only means anything alongside its tournament. DO $$ BEGIN IF NOT EXISTS ( @@ -209,22 +194,16 @@ CREATE INDEX IF NOT EXISTS idx_award_recipients_award CREATE INDEX IF NOT EXISTS idx_award_recipients_source ON public.award_recipients(tournament_id, source); --- ── from 1873000000200_award_tournament_owner ───────────────────────────────────────── --- Awards authored from inside a tournament remember where they came from, so --- the catalog can group them and other tournaments' pickers can hide them. --- Nullable: catalog awards created from the awards page stay shared, and the --- seeded system awards are never owned by anyone. ALTER TABLE public.awards ADD COLUMN IF NOT EXISTS tournament_id uuid REFERENCES public.tournaments(id) ON DELETE SET NULL; --- Deleting the tournament must not take the award (and every grant hanging off --- it) with it, hence SET NULL above: the award simply becomes unaffiliated. +-- SET NULL, not CASCADE: deleting a tournament must not take the award and +-- every grant hanging off it with it. CREATE INDEX IF NOT EXISTS idx_awards_tournament ON public.awards(tournament_id) WHERE tournament_id IS NOT NULL; --- A built-in is shared by definition. DO $$ BEGIN IF NOT EXISTS ( @@ -238,11 +217,6 @@ BEGIN END IF; END $$; --- ── from 1873000000300_award_scopes ───────────────────────────────────────── --- Awards can be scoped to whatever they were created for. Separate nullable --- FKs rather than a (scope_type, scope_id) pair so Postgres still enforces --- referential integrity and Hasura can expose a real relationship per scope. --- -- There is no `leagues` table (the platform runs one global league), so the -- league-shaped scope hangs off league_seasons. ALTER TABLE public.awards @@ -283,10 +257,6 @@ BEGIN END IF; END $$; --- ── from 1873000000500_season_awards ───────────────────────────────────────── --- Season placements are calculated the same way tournament placements are, so --- the recipient row needs to record which season it came from. Without this a --- shared system award could not say which season it was won in. ALTER TABLE public.award_recipients ADD COLUMN IF NOT EXISTS season_id uuid REFERENCES public.seasons(id) ON DELETE CASCADE; @@ -295,13 +265,10 @@ CREATE INDEX IF NOT EXISTS idx_award_recipients_season ON public.award_recipients(season_id, source) WHERE season_id IS NOT NULL; --- Keeps a recalculation idempotent, mirroring the tournament recipient keys. CREATE UNIQUE INDEX IF NOT EXISTS award_recipients_season_player_key ON public.award_recipients(season_id, player_steam_id, placement) WHERE season_id IS NOT NULL AND player_steam_id IS NOT NULL; --- Recipients can be scoped to every context `awards` can, otherwise a grant made --- from an event or league season page loses what it was given for. ALTER TABLE public.award_recipients ADD COLUMN IF NOT EXISTS event_id uuid REFERENCES public.events(id) ON DELETE CASCADE, @@ -314,7 +281,6 @@ CREATE INDEX IF NOT EXISTS idx_award_recipients_league_season ON public.award_recipients(league_season_id, source) WHERE league_season_id IS NOT NULL; --- A grant belongs to one context, mirroring awards_single_scope_check. DO $$ BEGIN IF NOT EXISTS ( diff --git a/hasura/triggers/award_recipients.sql b/hasura/triggers/award_recipients.sql index 8f927e37..b10da9ec 100644 --- a/hasura/triggers/award_recipients.sql +++ b/hasura/triggers/award_recipients.sql @@ -1,12 +1,7 @@ --- Duplicate protection for hand-granted awards. This cannot be a partial --- unique index: whether repeats are allowed lives on awards.allow_multiple. --- --- The partial unique keys on (tournament_id, tournament_team_id, recipient, --- placement) only bind when every column is present, so they do not cover a --- hand-granted row — those carry a NULL placement, and a NULL --- tournament_team_id whenever the recipient never appeared on a roster. NULLs --- are distinct in a unique index, so without this trigger the same award could --- be granted to the same recipient repeatedly. +-- Duplicate protection for hand-granted awards. This cannot be a unique index: +-- whether repeats are allowed lives on awards.allow_multiple, and a hand-granted +-- row carries NULLs (placement, often tournament_team_id) which a unique index +-- treats as distinct. CREATE OR REPLACE FUNCTION public.tbi_award_recipients() RETURNS TRIGGER LANGUAGE plpgsql AS $$ diff --git a/hasura/triggers/awards.sql b/hasura/triggers/awards.sql index 52cc660d..8b79c48d 100644 --- a/hasura/triggers/awards.sql +++ b/hasura/triggers/awards.sql @@ -1,8 +1,5 @@ --- The system_key awards are what resolve_tournament_award falls back to when a --- placement has no override. Delete one and calculate_tournament_awards starts --- inserting a NULL award_id, so finishing a tournament fails outright. The --- delete action already refuses, but guard the table too: a raw SQL delete or a --- future code path must not be able to break tournament completion. +-- Deleting a system_key award makes calculate_tournament_awards insert a NULL +-- award_id, so finishing a tournament fails outright. CREATE OR REPLACE FUNCTION public.tbd_awards() RETURNS TRIGGER LANGUAGE plpgsql AS $$ diff --git a/hasura/triggers/seasons_awards.sql b/hasura/triggers/seasons_awards.sql index 41758c5e..38df892a 100644 --- a/hasura/triggers/seasons_awards.sql +++ b/hasura/triggers/seasons_awards.sql @@ -1,6 +1,4 @@ -- A season has no status column, so "ended" is ends_at moving into the past. --- Reopening a season (clearing ends_at or pushing it forward) drops the --- calculated rows so they can be reseated when it ends again. CREATE OR REPLACE FUNCTION public.tau_seasons_awards() RETURNS TRIGGER LANGUAGE plpgsql AS $$ diff --git a/src/telemetry/telemetry.service.ts b/src/telemetry/telemetry.service.ts index f4bbcc9e..5362406c 100644 --- a/src/telemetry/telemetry.service.ts +++ b/src/telemetry/telemetry.service.ts @@ -345,6 +345,9 @@ export class TelemetryService { `SELECT f.key AS key, count(*) FILTER (WHERE f.value->>'enabled' = 'true') AS enabled, + -- Separates "no panel turned it on" from "this feature has no switch": + -- a flagless feature reports a JSON null, which ->> yields as SQL NULL. + count(*) FILTER (WHERE f.value->>'enabled' IS NOT NULL) AS flagged, count(*) AS reporting, count(*) FILTER (WHERE (f.value->>'count')::numeric > 0) AS "installsUsing", coalesce(sum((f.value->>'count')::numeric), 0) AS total @@ -359,6 +362,7 @@ export class TelemetryService { key: row.key, ...TelemetryService.toIntegers(row, [ "enabled", + "flagged", "reporting", "installsUsing", "total", diff --git a/test/telemetry-perf.spec.ts b/test/telemetry-perf.spec.ts index f2c50384..fbfe06bd 100644 --- a/test/telemetry-perf.spec.ts +++ b/test/telemetry-perf.spec.ts @@ -68,15 +68,18 @@ describe("telemetry perf", () => { FROM pairs`, ); + // One player per lineup slot so no match ever gets the same steam id twice + // (a trigger rejects that), which keeps the join row counts realistic. await postgres.query( `INSERT INTO players (steam_id, name) - SELECT 76561190000000000 + g, 'p' || g FROM generate_series(1, 5000) g`, + SELECT 76561190000000000 + g, 'p' || g + FROM generate_series(1, ${MATCHES * 10}) g`, ); // 10 players per match — the table the active-player join has to walk. await postgres.query( `INSERT INTO match_lineup_players (match_lineup_id, steam_id) - SELECT l.id, 76561190000000000 + ((row_number() OVER ()) % 5000) + 1 + SELECT l.id, 76561190000000000 + (row_number() OVER ()) FROM match_lineups l, generate_series(1, 5) s`, ); From 3aff9638baa17bdb16cb56d2b7fb9d562ef9f26a Mon Sep 17 00:00:00 2001 From: Luke Policinski Date: Sun, 26 Jul 2026 15:14:55 -0400 Subject: [PATCH 8/8] wip --- .github/workflows/tests.yml | 6 + test/telemetry-perf.spec.ts | 25 +++- test/utils/jest-global-setup.ts | 2 +- test/utils/jest-global-teardown.ts | 7 +- test/utils/sql-test-db.ts | 229 ++++++++++++++++++++++++----- 5 files changed, 222 insertions(+), 47 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 4183d3d7..6ffbcea6 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -33,6 +33,12 @@ jobs: # template database and exercise the triggers/functions in parallel. # Docker is available on GitHub-hosted runners. runs-on: ubuntu-24.04 + env: + # Locally the container is reused between runs to skip the boot and the + # migration pipeline. A CI runner starts empty so there is nothing to + # reuse, and on a shared runner a second job could rebuild the template + # while this one is cloning it — so take the throwaway path. + SQL_TEST_FRESH: "1" steps: - name: Check out the repo uses: actions/checkout@v4 diff --git a/test/telemetry-perf.spec.ts b/test/telemetry-perf.spec.ts index fbfe06bd..f02b5710 100644 --- a/test/telemetry-perf.spec.ts +++ b/test/telemetry-perf.spec.ts @@ -3,8 +3,11 @@ import { PostgresService } from "./../src/postgres/postgres.service"; import { bootMigratedDb, SqlTestDb } from "./utils/sql-test-db"; import { TelemetryService } from "./../src/telemetry/telemetry.service"; -// TEMPORARY benchmark — not a committed guard. -describe("telemetry perf", () => { +// Benchmark, not a guard: it seeds 20k matches and only prints timings, so a +// normal `yarn test:sql` skips it. Run it with PERF=1. +const benchmark = process.env.PERF === "1" ? describe : describe.skip; + +benchmark("telemetry perf", () => { let db: SqlTestDb; let postgres: PostgresService; let service: TelemetryService; @@ -18,7 +21,7 @@ describe("telemetry perf", () => { { getConnection: () => ({ setex: async () => "OK", - scan: async () => ["0", []], + scan: async (): Promise<[string, Array]> => ["0", []], }), } as never, null as never, @@ -76,11 +79,21 @@ describe("telemetry perf", () => { FROM generate_series(1, ${MATCHES * 10}) g`, ); - // 10 players per match — the table the active-player join has to walk. + // check_match_lineup_players re-scans the whole table per row, so inserting + // 10 players a match this way is quadratic — minutes of seeding for a + // benchmark that measures a read. The rows are unique by construction + // (5 consecutive ids per lineup ordinal), so the check has nothing to catch. + await postgres.query( + "ALTER TABLE match_lineup_players DISABLE TRIGGER USER", + ); await postgres.query( `INSERT INTO match_lineup_players (match_lineup_id, steam_id) - SELECT l.id, 76561190000000000 + (row_number() OVER ()) - FROM match_lineups l, generate_series(1, 5) s`, + SELECT l.id, 76561190000000000 + ((l.rn - 1) * 5 + s) + FROM (SELECT id, row_number() OVER (ORDER BY id) AS rn FROM match_lineups) l, + generate_series(1, 5) s`, + ); + await postgres.query( + "ALTER TABLE match_lineup_players ENABLE TRIGGER USER", ); await postgres.query( diff --git a/test/utils/jest-global-setup.ts b/test/utils/jest-global-setup.ts index c1befd33..9c5ab160 100644 --- a/test/utils/jest-global-setup.ts +++ b/test/utils/jest-global-setup.ts @@ -2,7 +2,6 @@ import type { StartedPostgreSqlContainer } from "@testcontainers/postgresql"; import { bootContainerAndMigrate, endPool } from "./sql-test-db"; declare global { - var __SQL_TEST_CONTAINER__: StartedPostgreSqlContainer | undefined; } @@ -13,6 +12,7 @@ declare global { export default async function globalSetup(): Promise { const { container, postgres } = await bootContainerAndMigrate( "SqlTestTemplate", + { reuse: process.env.SQL_TEST_FRESH !== "1" }, ); // The template must have zero connections when suites clone from it. diff --git a/test/utils/jest-global-teardown.ts b/test/utils/jest-global-teardown.ts index bd7c3677..0f503b94 100644 --- a/test/utils/jest-global-teardown.ts +++ b/test/utils/jest-global-teardown.ts @@ -1,3 +1,8 @@ +// A reused container is deliberately left running so the next run skips the +// boot and the migration pipeline. `docker rm -f` it, or run with +// SQL_TEST_FRESH=1, to start over. export default async function globalTeardown(): Promise { - await globalThis.__SQL_TEST_CONTAINER__?.stop(); + if (process.env.SQL_TEST_FRESH === "1") { + await globalThis.__SQL_TEST_CONTAINER__?.stop(); + } } diff --git a/test/utils/sql-test-db.ts b/test/utils/sql-test-db.ts index 0475f2fb..52eb49c9 100644 --- a/test/utils/sql-test-db.ts +++ b/test/utils/sql-test-db.ts @@ -1,4 +1,6 @@ -import { randomBytes } from "crypto"; +import { createHash, randomBytes } from "crypto"; +import { readdirSync, readFileSync, statSync } from "fs"; +import { join } from "path"; import { Logger } from "@nestjs/common"; import { ConfigService } from "@nestjs/config"; import { Client } from "pg"; @@ -20,6 +22,66 @@ const TEMPLATE_DB = "hasura"; // template must have no concurrent access while it's being copied. const CLONE_LOCK_ID = 421337; +// Where the fingerprint of the migrated template is kept. It lives in the +// maintenance database so it survives dropping and rebuilding the template. +const FINGERPRINT_TABLE = "public._sql_test_template"; + +type Connection = { + host: string; + port: number; + user: string; + password: string; +}; + +function connectionFromEnv(): Connection { + return { + host: process.env.SQL_TEST_HOST!, + port: Number(process.env.SQL_TEST_PORT), + user: process.env.SQL_TEST_USER!, + password: process.env.SQL_TEST_PASSWORD!, + }; +} + +async function withAdmin( + connection: Connection, + fn: (admin: Client) => Promise, +): Promise { + // CREATE/DROP DATABASE cannot run inside a pool or a transaction; they need a + // raw client on the maintenance database. + const admin = new Client({ ...connection, database: "postgres" }); + await admin.connect(); + try { + return await fn(admin); + } finally { + await admin.end(); + } +} + +// Digest of every migration file. Migrations in this repo get edited in place +// (squashed, renumbered), and an already-recorded version never re-runs, so a +// reused template cannot be patched forward — any change means rebuild. Boot +// phases are deliberately excluded: setup() hashes those files itself and +// re-applies just the ones that changed, which costs nothing. +function migrationsFingerprint(): string { + const root = join(process.cwd(), "hasura", "migrations"); + const digest = createHash("sha1"); + + const walk = (dir: string) => { + for (const entry of readdirSync(dir).sort()) { + const path = join(dir, entry); + if (statSync(path).isDirectory()) { + walk(path); + continue; + } + digest.update(path.slice(root.length)); + digest.update(readFileSync(path)); + } + }; + + walk(root); + return digest.digest("hex"); +} + export interface SqlTestDb { container?: StartedPostgreSqlContainer; postgres: PostgresService; @@ -27,13 +89,16 @@ export interface SqlTestDb { stop(): Promise; } -function makeServices(connection: { - host: string; - port: number; - user: string; - password: string; - database: string; -}, loggerName: string): { postgres: PostgresService; hasura: HasuraService } { +function makeServices( + connection: { + host: string; + port: number; + user: string; + password: string; + database: string; + }, + loggerName: string, +): { postgres: PostgresService; hasura: HasuraService } { const configService = new ConfigService({ postgres: { connections: { default: { ...connection, max: 5 } } }, app: { demosDomain: "demos.test", relayDomain: "relay.test" }, @@ -63,10 +128,15 @@ export async function endPool(postgres: PostgresService): Promise { // Boots a throwaway Postgres and drives the real HasuraService.setup() through // the full migration -> enums -> functions -> views -> triggers pipeline, so // trigger/function behavior under test matches a fresh install exactly. +// +// `reuse` keeps the container alive between `yarn test:sql` runs and skips the +// migration pipeline when nothing under hasura/migrations changed, which is the +// difference between paying the boot cost once and paying it every invocation. export async function bootContainerAndMigrate( loggerName: string, + { reuse = false }: { reuse?: boolean } = {}, ): Promise { - const container = await new PostgreSqlContainer(IMAGE) + const builder = new PostgreSqlContainer(IMAGE) .withDatabase(TEMPLATE_DB) .withUsername("hasura") .withPassword("hasura") @@ -98,58 +168,135 @@ export async function bootContainerAndMigrate( "timescaledb.max_background_workers=0", "-c", "timescaledb.telemetry_level=off", - ]) - .start(); + ]); + + const container = await (reuse ? builder.withReuse() : builder).start(); + + const connection = { + host: container.getHost(), + port: container.getPort(), + user: container.getUsername(), + password: container.getPassword(), + }; + + const stale = reuse ? await templateIsStale(connection) : true; + + if (stale && reuse) { + await withAdmin(connection, async (admin) => { + await admin.query( + `DROP DATABASE IF EXISTS "${TEMPLATE_DB}" WITH (FORCE)`, + ); + await admin.query(`CREATE DATABASE "${TEMPLATE_DB}"`); + }); + } - // The prod image provisions the timescaledb extension outside the migrations; - // do the same so create_hypertable migrations resolve. const { postgres, hasura } = makeServices( - { - host: container.getHost(), - port: container.getPort(), - user: container.getUsername(), - password: container.getPassword(), - database: container.getDatabase(), - }, + { ...connection, database: TEMPLATE_DB }, loggerName, ); - await postgres.query("CREATE EXTENSION IF NOT EXISTS timescaledb CASCADE"); + if (stale) { + // The prod image provisions the timescaledb extension outside the + // migrations; do the same so create_hypertable migrations resolve. + await postgres.query("CREATE EXTENSION IF NOT EXISTS timescaledb CASCADE"); + } + + // Runs even against an up-to-date template: setup() re-applies the boot-phase + // files whose digest changed, which is how an edited trigger or view reaches + // a reused container. With nothing to do it applies zero migrations. await hasura.setup(); + if (reuse) { + await recordTemplateFingerprint(connection); + } + + if (reuse) { + await sweepAbandonedClones(connection); + } + return { container, postgres, hasura, stop: async () => { await endPool(postgres); - await container?.stop(); + if (!reuse) { + await container?.stop(); + } }, }; } +async function templateIsStale(connection: Connection): Promise { + return await withAdmin(connection, async (admin) => { + await admin.query( + `CREATE TABLE IF NOT EXISTS ${FINGERPRINT_TABLE} (fingerprint text NOT NULL)`, + ); + const { rows } = await admin.query<{ fingerprint: string }>( + `SELECT fingerprint FROM ${FINGERPRINT_TABLE} LIMIT 1`, + ); + const [template] = ( + await admin.query<{ exists: boolean }>( + `SELECT to_regclass('pg_database') IS NOT NULL + AND EXISTS (SELECT 1 FROM pg_database WHERE datname = $1) AS exists`, + [TEMPLATE_DB], + ) + ).rows; + + return ( + !template?.exists || rows[0]?.fingerprint !== migrationsFingerprint() + ); + }); +} + +async function recordTemplateFingerprint( + connection: Connection, +): Promise { + await withAdmin(connection, async (admin) => { + await admin.query(`DELETE FROM ${FINGERPRINT_TABLE}`); + await admin.query(`INSERT INTO ${FINGERPRINT_TABLE} VALUES ($1)`, [ + migrationsFingerprint(), + ]); + }); +} + +// Clones from crashed runs would otherwise pile up in a container that now +// outlives the run. Skipped entirely while any clone still has a connection, so +// a second test run against the same container never has its databases pulled +// out from under it. +async function sweepAbandonedClones(connection: Connection): Promise { + await withAdmin(connection, async (admin) => { + const { rows: busy } = await admin.query<{ count: string }>( + `SELECT count(*) AS count FROM pg_stat_activity WHERE datname LIKE 'test\\_%'`, + ); + if (Number(busy[0].count) > 0) { + return; + } + + const { rows } = await admin.query<{ datname: string }>( + `SELECT datname FROM pg_database WHERE datname LIKE 'test\\_%'`, + ); + for (const row of rows) { + await admin.query( + `DROP DATABASE IF EXISTS "${row.datname}" WITH (FORCE)`, + ); + } + }); +} + // Fast path used under test/jest-sql.config.js: the global setup already // booted one container and migrated the template database, so a suite only // needs its own copy — CREATE DATABASE ... TEMPLATE is a file-level clone // that takes a fraction of a second instead of a container boot plus the // full migration pipeline. async function cloneFromTemplate(loggerName: string): Promise { - const connection = { - host: process.env.SQL_TEST_HOST!, - port: Number(process.env.SQL_TEST_PORT), - user: process.env.SQL_TEST_USER!, - password: process.env.SQL_TEST_PASSWORD!, - }; + const connection = connectionFromEnv(); const database = `test_${loggerName .toLowerCase() .replace(/[^a-z0-9]+/g, "_")}_${randomBytes(4).toString("hex")}`; - // CREATE DATABASE cannot run inside a pool/transaction; use a raw client - // against the maintenance database. - const admin = new Client({ ...connection, database: "postgres" }); - await admin.connect(); - try { + await withAdmin(connection, async (admin) => { await admin.query("SELECT pg_advisory_lock($1)", [CLONE_LOCK_ID]); try { await admin.query( @@ -158,9 +305,7 @@ async function cloneFromTemplate(loggerName: string): Promise { } finally { await admin.query("SELECT pg_advisory_unlock($1)", [CLONE_LOCK_ID]); } - } finally { - await admin.end(); - } + }); const { postgres, hasura } = makeServices( { ...connection, database }, @@ -171,10 +316,16 @@ async function cloneFromTemplate(loggerName: string): Promise { postgres, hasura, stop: async () => { - // The shared container outlives the suite (global teardown stops it); - // clones are cheap and die with it, so dropping them isn't worth a - // maintenance connection here. await endPool(postgres); + // The container now outlives the run, so a clone that is not dropped here + // stays on disk forever. A failure to drop must not fail the suite. + try { + await withAdmin(connection, (admin) => + admin.query(`DROP DATABASE IF EXISTS "${database}" WITH (FORCE)`), + ); + } catch { + // The sweep on the next run picks it up. + } }, }; }